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: http://laptopparts.ca

  1. <!doctype html>
  2. <html class="no-js no-touch" lang="en">
  3.  <head>
  4.    <!-- Google tag (gtag.js) -->
  5.    <script async src="https://www.googletagmanager.com/gtag/js?id=AW-977549716"></script>
  6.    <script>
  7.      window.dataLayer = window.dataLayer || [];
  8.      function gtag(){dataLayer.push(arguments);}
  9.      gtag('js', new Date());
  10.  
  11.      gtag('config', 'AW-977549716');
  12.    </script>
  13.    <!-- Google Tag Manager -->
  14.    <script>
  15.      (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  16.      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  17.      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  18.      'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  19.      })(window,document,'script','dataLayer','GTM-WDHHF23');
  20.    </script>
  21.    <!-- End Google Tag Manager -->
  22.    <script>  
  23.  /**
  24.  * Author: shipon islam
  25.  * Version: 1.1.0
  26.  * Last Update: 17 Sep 2023
  27.  */
  28.  
  29.  (function() {
  30.      class GTM_DataLayer {
  31.        constructor() {
  32.          window.dataLayer = window.dataLayer || [];
  33.          this.formattedItemId = true;
  34.  
  35.          this.miniCartButtonSelector = [
  36.            // 'a[href="/cart"]',
  37.          ];
  38.  
  39.          this.beginCheckoutbuttons = [
  40.            'button[name="checkout"]',
  41.            '.additional-checkout-buttons',
  42.          ];
  43.  
  44.          this.shopifyDeirectPaymentButtonLink = [
  45.            '.shopify-payment-button'
  46.          ]
  47.  
  48.          this.isAjaxCartIncrementDecrement = true;
  49.  
  50.          this.addToWishListSelectors = {
  51.            'addWishListIcon': '',
  52.            'gridItemSelector': '',
  53.            'productLinkSelector': ''
  54.          }
  55.  
  56.          this.quickViewSelector = {
  57.            'quickViewElement': '',
  58.            'gridItemSelector': '',
  59.            'productLinkSelector': ''
  60.          }
  61.          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}
  62.          this.countryCode = "CA";
  63.          this.collectData();          
  64.        }
  65.  
  66.        updateCart() {
  67.          fetch("/cart.js")
  68.          .then((response) => response.json())
  69.          .then((data) => {
  70.            this.cart = data;
  71.          });
  72.        }
  73.  
  74.        collectData() {
  75.            this.customerData();
  76.            this.ajaxRequestData();
  77.            this.miniCartData();
  78.            this.beginCheckoutData();
  79.  
  80.            
  81.  
  82.            
  83.  
  84.            
  85.            
  86.            this.addToWishListData();
  87.            this.quickViewData();
  88.            this.newsletterSignupData();
  89.        }
  90.  
  91.        //logged in customer data
  92.        customerData() {
  93.            const currentUser = {};
  94.            
  95.  
  96.            window.dataLayer = window.dataLayer || [];
  97.            dataLayer.push({
  98.              customer: currentUser
  99.            })
  100.        }
  101.  
  102.        // shipon_add_to_cart, shipon_remove_from_cart
  103.        ajaxRequestData() {
  104.          const self = this;
  105.          let originalFetch = window.fetch;
  106.          
  107.          window.fetch = function () {
  108.            return originalFetch.apply(this, arguments).then((response) => {
  109.              if (response.ok) {
  110.                let cloneResponse = response.clone();
  111.                // add to cart
  112.                if (arguments[0].includes("/cart/add.js") || arguments[0].includes("/cart/add")) {
  113.                  cloneResponse.text().then((text) => {
  114.                    let item = JSON.parse(text);
  115.                    self.singleCartItemDataLayer('shipon_add_to_cart', item);
  116.                    self.updateCart();
  117.                  });
  118.                }else if(arguments[0].includes("/cart/change")) {
  119.                   cloneResponse.text().then((text) => {
  120.                    let newCart = JSON.parse(text);
  121.                    let newCartItems = newCart.items;
  122.                    let oldCartItems = self.cart.items;
  123.  
  124.                    for(let i = 0; i < oldCartItems.length; i++) {
  125.                      let item = oldCartItems[i];
  126.                      let newItem = newCartItems.find(newItems => newItems.id === item.id);
  127.  
  128.  
  129.                      if(newItem) {
  130.  
  131.                        if(newItem.quantity > item.quantity) {
  132.                          // cart item increment
  133.                          let quantity = (newItem.quantity - item.quantity);
  134.                          let updatedItem = {...item, quantity}
  135.                          self.singleCartItemDataLayer('shipon_add_to_cart', updatedItem);
  136.                          self.updateCart();
  137.  
  138.                        }else if(newItem.quantity < item.quantity) {
  139.                          // cart item decrement
  140.                          let quantity = (item.quantity - newItem.quantity);
  141.                          let updatedItem = {...item, quantity}
  142.                          self.singleCartItemDataLayer('shipon_remove_from_cart', updatedItem);
  143.                          self.updateCart();
  144.                        }
  145.                        
  146.  
  147.                      }else {
  148.                        self.singleCartItemDataLayer('shipon_remove_from_cart', item);
  149.                        self.updateCart();
  150.                      }
  151.                    }
  152.                  });
  153.                }
  154.              }
  155.              return response;
  156.            });
  157.          }
  158.        }
  159.  
  160.        // shipon_view_cart
  161.        miniCartData() {
  162.          if(this.miniCartButtonSelector.length) {
  163.            let self = this;
  164.            this.miniCartButtonSelector.forEach((selector) => {
  165.              let miniCartButton = document.querySelector(selector);
  166.              if(miniCartButton) {
  167.                miniCartButton.addEventListener('click', () => {
  168.                  self.cartItemsDataLayer('shipon_view_cart', self.cart);
  169.                });
  170.              }
  171.            });
  172.          }
  173.        }
  174.  
  175.        // shipon_begin_checkout
  176.        beginCheckoutData() {
  177.          let self = this;
  178.          document.addEventListener('click', () => {
  179.            let targetElement = event.target.closest(self.beginCheckoutbuttons.join(', '));
  180.            if(targetElement) {
  181.              self.cartItemsDataLayer('shipon_begin_checkout', self.cart);
  182.            }
  183.          });
  184.        }
  185.  
  186.        // shipon_view_cart, shipon_add_to_cart, shipon_remove_from_cart
  187.        viewCartPageData() {
  188.          
  189.          this.cartItemsDataLayer('shipon_view_cart', this.cart);
  190.  
  191.          //if cart quantity chagne reload page
  192.          if(!this.isAjaxCartIncrementDecrement) {
  193.            const self = this;
  194.            document.addEventListener('pointerdown', (event) => {
  195.              const target = event.target.closest('a[href*="/cart/change?"]');
  196.              if(target) {
  197.                const linkUrl = target.getAttribute('href');
  198.                const queryString = linkUrl.split("?")[1];
  199.                const urlParams = new URLSearchParams(queryString);
  200.                const newQuantity = urlParams.get("quantity");
  201.                const line = urlParams.get("line");
  202.                const cart_id = urlParams.get("id");
  203.        
  204.                
  205.                if(newQuantity && (line || cart_id)) {
  206.                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
  207.        
  208.                  let event = 'shipon_add_to_cart';
  209.                  if(newQuantity < item.quantity) {
  210.                    event = 'shipon_remove_from_cart';
  211.                  }
  212.        
  213.                  let quantity = Math.abs(newQuantity - item.quantity);
  214.                  item['quantity'] = quantity;
  215.        
  216.                  self.singleCartItemDataLayer(event, item);
  217.                }
  218.              }
  219.            });
  220.          }
  221.        }
  222.  
  223.        productSinglePage() {
  224.        
  225.        }
  226.  
  227.        collectionsPageData() {
  228.          var ecommerce = {
  229.            'items': [
  230.              
  231.              ]
  232.          };
  233.  
  234.          ecommerce['item_list_id'] = null
  235.          ecommerce['item_list_name'] = null
  236.  
  237.          this.cartItemsDataLayer('shipon_view_item_list', ecommerce);
  238.        }
  239.        
  240.        
  241.        // add to wishlist
  242.        addToWishListData() {
  243.          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
  244.            const self = this;
  245.            document.addEventListener('pointerdown', (event) => {
  246.              let target = event.target;
  247.              
  248.              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
  249.                let pageULR = window.location.href.replace(/\?.+/, '');
  250.                let requestURL = undefined;
  251.          
  252.                if(/\/products\/[^/]+$/.test(pageULR)) {
  253.                  requestURL = pageULR;
  254.                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
  255.                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
  256.                  if(itemElement) {
  257.                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
  258.                    if(linkElement) {
  259.                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  260.                      if(link && /\/products\/[^/]+$/.test(link)) {
  261.                        requestURL = link;
  262.                      }
  263.                    }
  264.                  }
  265.                }
  266.  
  267.                if(requestURL) {
  268.                  fetch(requestURL + '.json')
  269.                    .then(res => res.json())
  270.                    .then(result => {
  271.                      let data = result.product;                    
  272.                      if(data) {
  273.                        let dataLayerData = {
  274.                         product_id: data.id,
  275.                            variant_id: data.variants[0].id,
  276.                            product_title: data.title,
  277.                         quantity: 1,
  278.                         final_price: parseFloat(data.variants[0].price) * 100,
  279.                         total_discount: 0,
  280.                         product_type: data.product_type,
  281.                         vendor: data.vendor,
  282.                         variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  283.                         sku: data.variants[0].sku,
  284.                        }
  285.  
  286.                        self.singleCartItemDataLayer('shipon_add_to_wishlist', dataLayerData);
  287.                      }
  288.                    });
  289.                }
  290.              }
  291.            });
  292.          }
  293.        }
  294.  
  295.        quickViewData() {
  296.          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
  297.            const self = this;
  298.            document.addEventListener('pointerdown', (event) => {
  299.              let target = event.target;
  300.              if(target.closest(self.quickViewSelector.quickViewElement)) {
  301.                let requestURL = undefined;
  302.                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
  303.                
  304.                if(itemElement) {
  305.                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
  306.                  if(linkElement) {
  307.                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  308.                    if(link && /\/products\/[^/]+$/.test(link)) {
  309.                      requestURL = link;
  310.                    }
  311.                  }
  312.                }  
  313.                
  314.                if(requestURL) {
  315.                    fetch(requestURL + '.json')
  316.                      .then(res => res.json())
  317.                      .then(result => {
  318.                        let data = result.product;                    
  319.                        if(data) {
  320.                          let dataLayerData = {
  321.                           product_id: data.id,
  322.                            variant_id: data.variants[0].id,
  323.                            product_title: data.title,
  324.                           quantity: 1,
  325.                           final_price: parseFloat(data.variants[0].price) * 100,
  326.                           total_discount: 0,
  327.                           product_type: data.product_type,
  328.                           vendor: data.vendor,
  329.                           variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  330.                           sku: data.variants[0].sku,
  331.                          }
  332.  
  333.                          self.singleCartItemDataLayer('shipon_view_item', dataLayerData);
  334.                          self.quickViewVariants = data.variants;
  335.                          self.quickViewedItem = dataLayerData;
  336.                        }
  337.                      });
  338.                  }
  339.              }
  340.            });
  341.  
  342.            
  343.              if(this.shopifyDeirectPaymentButtonLink.length) {
  344.                let self = this;
  345.                document.addEventListener('pointerdown', (event) => {
  346.                  let target = event.target;
  347.                  let checkoutButton = event.target.closest(this.shopifyDeirectPaymentButtonLink.join(', '));
  348.                  
  349.                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
  350.  
  351.                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
  352.                    if(checkoutForm) {
  353.                        let quantity = 1;
  354.                        let varientInput = checkoutForm.querySelector('input[name="id"]');
  355.                        let quantitySelector = checkoutForm.getAttribute('id');
  356.  
  357.                        if(quantitySelector) {
  358.                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
  359.                          if(quentityInput) {
  360.                              quantity = +quentityInput.value;
  361.                          }
  362.                        }
  363.  
  364.                        if(varientInput) {
  365.                            let variant_id = parseInt(varientInput.value);
  366.  
  367.                            if(variant_id) {
  368.                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
  369.                                if(variant && self.quickViewedItem) {
  370.                                    self.quickViewedItem['variant_id'] = variant_id;
  371.                                    self.quickViewedItem['variant_title'] = variant.title;
  372.                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
  373.                                    self.quickViewedItem['quantity'] = quantity;
  374.    
  375.                                    self.singleCartItemDataLayer('shipon_add_to_cart', self.quickViewedItem);
  376.                                    self.singleCartItemDataLayer('shipon_begin_checkout', self.quickViewedItem);
  377.                                }
  378.                            }
  379.                        }
  380.                    }
  381.  
  382.                  }
  383.                });
  384.            }
  385.            
  386.          }
  387.        }
  388.  
  389.        // single item add in dataLyaer
  390.        singleCartItemDataLayer(event, item) {
  391.          dataLayer.push({ "ecommerce": null });
  392.          const dataLayerData = {
  393.            "event": event,
  394.            "ecommerce": {
  395.              "currency": this.cart.currency,
  396.              "value": +(((item.final_price / 100) * item.quantity).toFixed(2)),
  397.              "items": [{
  398.                  "item_id": this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id,
  399.                  "variant_id": item.variant_id.toString(),
  400.                  "item_name": item.product_title,
  401.                  "quantity": item.quantity,
  402.                  "price": +((item.final_price / 100).toFixed(2)),
  403.                  "discount": item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  404.              }]
  405.            }
  406.          }
  407.  
  408.          if(item.product_type) {
  409.            dataLayerData.ecommerce['items'][0]['item_category'] = item.product_type;
  410.          }
  411.  
  412.          if(item.vendor) {
  413.            dataLayerData.ecommerce['items'][0]['item_brand'] = item.vendor;
  414.          }
  415.  
  416.          if(item.variant_title && item.variant_title !== 'Default Title') {
  417.            dataLayerData.ecommerce['items'][0]['item_variant'] = item.variant_title;
  418.          }
  419.  
  420.          if(item.sku) {
  421.            dataLayerData.ecommerce['items'][0]['sku'] = item.sku;
  422.          }
  423.  
  424.          if(item.item_list_id) {
  425.            dataLayerData.ecommerce['items'][0]['item_list_id'] = item.item_list_id;
  426.          }
  427.          
  428.          if(item.item_list_name) {
  429.            dataLayerData.ecommerce['items'][0]['item_list_name'] = item.item_list_name;
  430.          }
  431.          
  432.          dataLayer.push(dataLayerData);
  433.        };
  434.  
  435.        // multiple items add in dataLayer
  436.        cartItemsDataLayer(event, cart) {
  437.          dataLayer.push({ 'ecommerce': null });
  438.          const dataLayerData = {
  439.            'event': event,
  440.            'ecommerce': {
  441.               'currency': this.cart.currency,
  442.               'items': cart.items.map((item, index) => {
  443.                 const itemDataLayerData = {
  444.                    'index': index,
  445.                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
  446.                    'variant_id': item.variant_id.toString(),
  447.                    'item_name': item.product_title,
  448.                    'quantity': item.quantity,
  449.                    'price': +((item.final_price / 100).toFixed(2)),
  450.                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  451.                }
  452.  
  453.                if(item.product_type) {
  454.                  itemDataLayerData['item_category'] = item.product_type;
  455.                }
  456.                
  457.                 if(item.vendor) {
  458.                  itemDataLayerData['item_brand'] = item.vendor;
  459.                }
  460.  
  461.                                
  462.                if(item.variant_title && item.variant_title !== 'Default Title') {
  463.                  itemDataLayerData['item_variant'] = item.variant_title;
  464.                }
  465.              
  466.                if(item.sku) {
  467.                  itemDataLayerData['sku'] = item.sku;
  468.                }
  469.  
  470.                if(item.item_list_name) {
  471.                  itemDataLayerData['item_list_name'] = item.item_list_name;
  472.                }
  473.  
  474.                if(item.item_list_id) {
  475.                  itemDataLayerData['item_list_id'] = item.item_list_id;
  476.                }
  477.  
  478.                return itemDataLayerData;
  479.              })
  480.            }
  481.          }
  482.  
  483.          if(cart.total_price) {
  484.            dataLayerData['ecommerce']['value'] = +((cart.total_price / 100).toFixed(2))
  485.          }
  486.          
  487.          if(cart.item_list_id) {
  488.            dataLayerData['ecommerce']['item_list_id'] = cart.item_list_id;
  489.          }
  490.          
  491.          if(cart.item_list_name) {
  492.            dataLayerData['ecommerce']['item_list_name'] = cart.item_list_name;
  493.          }
  494.          
  495.          dataLayer.push(dataLayerData);
  496.        }
  497.  
  498.        
  499.        // newsletters signup
  500.        newsletterSignupData() {
  501.        document.addEventListener('click', function(event) {
  502.          let target = event.target.closest('form[action^="/contact"] button[type="submit"]');
  503.          let targetForm = event.target.closest('form[action^="/contact"]');
  504.          if(target && targetForm) {
  505.            let email = targetForm.querySelector('input[type="email"]').value;
  506.            let formType = targetForm.querySelector('input[name="contact[tags]"]');
  507.            if(formType && formType.value === 'newsletter') {
  508.              let form_location = window.location.href;
  509.              let form_id = targetForm.getAttribute('id');
  510.              let form_classes = targetForm.getAttribute('class');
  511.        
  512.              dataLayer.push({
  513.                event: 'newsletter_signup',
  514.                email: email,
  515.                form_location,
  516.                form_id,
  517.                form_classes
  518.              });
  519.            }
  520.          }
  521.        });
  522.      }
  523.      }
  524.      
  525.  
  526.      document.addEventListener('DOMContentLoaded', function() {
  527.        try{
  528.          new GTM_DataLayer();
  529.        }catch(error) {
  530.          console.log(error);
  531.        }
  532.      });
  533.    
  534.  })();
  535. </script>
  536.  
  537.  
  538.  
  539.    <script>
  540.      window.Store = window.Store || {};
  541.      window.Store.id = 11386172;
  542.    </script>
  543.    <meta charset="utf-8">
  544.    <meta http-equiv="x-ua-compatible" content="IE=edge">
  545.  
  546.    <link rel="preconnect" href="https://cdn.shopify.com">
  547.    <link rel="preconnect" href="https://fonts.shopifycdn.com">
  548.    <link rel="preconnect" href="https://v.shopify.com">
  549.    <link rel="preconnect" href="https://cdn.shopifycloud.com">
  550.  
  551.    <title>Original Laptop &amp; Tablet Parts in Canada — LaptopParts.ca</title>
  552.  
  553.    
  554.      <meta name="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!">
  555.    
  556.  
  557.    
  558.  <link rel="shortcut icon" href="//laptopparts.ca/cdn/shop/files/favicon_32x32.png?v=1635931652" type="image/png">
  559.  
  560.  
  561.    
  562.      <link rel="canonical" href="https://laptopparts.ca/">
  563.    
  564.  
  565.    <meta name="viewport" content="width=device-width">
  566.  
  567.    
  568.    
  569.  
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584. <meta property="og:site_name" content="LaptopParts.ca">
  585. <meta property="og:url" content="https://laptopparts.ca/">
  586. <meta property="og:title" content="Original Laptop &amp; Tablet Parts in Canada">
  587. <meta property="og:type" content="website">
  588. <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!">
  589.  
  590.  
  591.  
  592.  
  593.    
  594.    
  595.    
  596.  
  597.    
  598.    
  599.    <meta
  600.      property="og:image"
  601.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  602.    />
  603.    <meta
  604.      property="og:image:secure_url"
  605.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  606.    />
  607.    <meta property="og:image:width" content="2540" />
  608.    <meta property="og:image:height" content="630" />
  609.    
  610.    
  611.    <meta property="og:image:alt" content="Social media image" />
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  <meta name="twitter:site" content="@i/flow/login?redirect_after_login=%2FLaptopParts_ca">
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631. <meta name="twitter:title" content="Original Laptop &amp; Tablet Parts in Canada">
  632. <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!">
  633.  
  634.  
  635.    
  636.    
  637.    
  638.      
  639.      
  640.      <meta name="twitter:card" content="summary_large_image">
  641.    
  642.    
  643.    <meta
  644.      property="twitter:image"
  645.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_1200x600_crop_center.png?v=1696410523"
  646.    />
  647.    <meta property="twitter:image:width" content="1200" />
  648.    <meta property="twitter:image:height" content="600" />
  649.    
  650.    
  651.    <meta property="twitter:image:alt" content="Social media image" />
  652.  
  653. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/preconnect_resources.js" type="text/javascript"></script>
  654. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/globo_checkout.js" type="text/javascript"></script>
  655.  
  656.  
  657.  
  658.    <link rel="preload" href="//laptopparts.ca/cdn/fonts/nunito_sans/nunitosans_n7.5bd4fb9346d13afb61b3d78f8a1e9f31b128b3d9.woff2?h1=bGFwdG9wcGFydHMuY2E&h2=bGFwdG9wcGFydHNhdHAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=2ae13feb1dfd0d8ba6bfd71029ee92ac78d286ff7b755b57291941f31f1674e4" as="font" crossorigin="anonymous">
  659.    <link rel="preload" as="style" href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022">
  660.  
  661.    <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">
  662. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/11386172/digital_wallets/dialog">
  663. <meta name="shopify-checkout-api-token" content="d20210e10f5cfcb163289d215c1a7239">
  664. <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">
  665. <script async="async" src="/checkouts/internal/preloads.js?locale=en-CA&version=checkout-renderer"></script>
  666. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  667. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-CA&version=checkout-renderer&shop_id=11386172" crossorigin="anonymous"></script>
  668. <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>
  669. <script id="shopify-features" type="application/json">{"accessToken":"d20210e10f5cfcb163289d215c1a7239","betas":["rich-media-storefront-analytics"],"domain":"laptopparts.ca","predictiveSearch":true,"shopId":11386172,"locale":"en"}</script>
  670. <script>var Shopify = Shopify || {};
  671. Shopify.shop = "laptoppartsatp.myshopify.com";
  672. Shopify.locale = "en";
  673. Shopify.currency = {"active":"CAD","rate":"1.0"};
  674. Shopify.country = "CA";
  675. Shopify.theme = {"name":"LaptopParts.ca |- Optimized","id":126947917911,"schema_name":"Empire","schema_version":"9.1.1","theme_store_id":838,"role":"main"};
  676. Shopify.theme.handle = "null";
  677. Shopify.theme.style = {"id":null,"handle":null};
  678. Shopify.cdnHost = "laptopparts.ca/cdn";
  679. Shopify.routes = Shopify.routes || {};
  680. Shopify.routes.root = "/";</script>
  681. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  682. <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>
  683. <script>window.ShopifyPay = window.ShopifyPay || {};
  684. window.ShopifyPay.apiHost = "shop.app\/pay";</script>
  685. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  686. <script>
  687.  window.Shopify = window.Shopify || {};
  688.  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  689.  window.Shopify.featureAssets['shop-js'] = {"shop-cart-sync":["modules/v2/client.shop-cart-sync_D7-dt4yQ.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"shop-button":["modules/v2/client.shop-button_Dk3C-nrc.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"init-fed-cm":["modules/v2/client.init-fed-cm_BJTzcthb.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"init-shop-cart-sync":["modules/v2/client.init-shop-cart-sync_D4LP0mdf.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_BIiDGR_9.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"init-windoid":["modules/v2/client.init-windoid_Cggc9BHJ.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_BIqXeISy.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"pay-button":["modules/v2/client.pay-button_4B9uZD6V.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_BN4amUeE.en.esm.js","modules/v2/client.shop-login-button_DKiCFHAf.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_DKiCFHAf.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_DdQVK1uj.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_CKOixL28.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_kjqkEy5G.en.esm.js","modules/v2/client.shop-login-button_DKiCFHAf.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_CIgZ6QOF.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_D0GKEBXn.en.esm.js","modules/v2/client.shop-login-button_DKiCFHAf.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"lead-capture":["modules/v2/client.lead-capture_B1OqQ3Ju.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"],"payment-terms":["modules/v2/client.payment-terms_B3uZ3S0s.en.esm.js","modules/v2/chunk.common_C1D4c1nb.esm.js","modules/v2/chunk.modal_CENDd7R_.esm.js"]};
  690. </script>
  691. <script>(function() {
  692.  function asyncLoad() {
  693.    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"];
  694.    for (var i = 0; i < urls.length; i++) {
  695.      var s = document.createElement('script');
  696.      s.type = 'text/javascript';
  697.      s.async = true;
  698.      s.src = urls[i];
  699.      var x = document.getElementsByTagName('script')[0];
  700.      x.parentNode.insertBefore(s, x);
  701.    }
  702.  };
  703.  if(window.attachEvent) {
  704.    window.attachEvent('onload', asyncLoad);
  705.  } else {
  706.    window.addEventListener('load', asyncLoad, false);
  707.  }
  708. })();</script>
  709. <script id="__st">var __st={"a":11386172,"offset":-14400,"reqid":"3b564991-ad24-4780-8f71-1b5ec9a20fe8-1751740602","pageurl":"laptopparts.ca\/","u":"d3d484a6a4c7","p":"home"};</script>
  710. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  711. <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>
  712. <script integrity="sha256-DTN/DDRLW4ijBM7GedgYZhatFOf+PYQ7/WEM4Q6kiFw=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/shopify/assets/storefront/load_feature-0d337f0c344b5b88a304cec679d8186616ad14e7fe3d843bfd610ce10ea4885c.js" crossorigin="anonymous"></script>
  713. <script crossorigin="anonymous" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-9846a8162782d0b340b9256e1835a4bf4ccf7ab521e1221004c475e86df911f4.js?v=20220906"></script>
  714. <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)}};
  715. </script>
  716. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  717.  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);
  718. </script>
  719. <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})}}));
  720. </script>
  721.  
  722. <link rel="stylesheet" media="screen" href="https://laptopparts.ca/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
  723.  
  724. <style id="shopify-accelerated-checkout-cart">
  725.        #shopify-buyer-consent {
  726.  margin-top: 1em;
  727.  display: inline-block;
  728.  width: 100%;
  729. }
  730.  
  731. #shopify-buyer-consent.hidden {
  732.  display: none;
  733. }
  734.  
  735. #shopify-subscription-policy-button {
  736.  background: none;
  737.  border: none;
  738.  padding: 0;
  739.  text-decoration: underline;
  740.  font-size: inherit;
  741.  cursor: pointer;
  742. }
  743.  
  744. #shopify-subscription-policy-button::before {
  745.  box-shadow: none;
  746. }
  747.  
  748.      </style>
  749. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  750.  
  751.    <link href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022" rel="stylesheet" type="text/css" media="all" />
  752.  
  753.    
  754.    <script>
  755.      window.Theme = window.Theme || {};
  756.      window.Theme.version = '9.1.1';
  757.      window.Theme.name = 'Empire';
  758.      window.Theme.routes = {
  759.        "root_url": "/",
  760.        "account_url": "/account",
  761.        "account_login_url": "/account/login",
  762.        "account_logout_url": "/account/logout",
  763.        "account_register_url": "/account/register",
  764.        "account_addresses_url": "/account/addresses",
  765.        "collections_url": "/collections",
  766.        "all_products_collection_url": "/collections/all",
  767.        "search_url": "/search",
  768.        "predictive_search_url": "/search/suggest",
  769.        "cart_url": "/cart",
  770.        "cart_add_url": "/cart/add",
  771.        "cart_change_url": "/cart/change",
  772.        "cart_clear_url": "/cart/clear",
  773.        "product_recommendations_url": "/recommendations/products",
  774.      };
  775.    </script>
  776.    
  777.  
  778.    
  779.  
  780.    
  781.    
  782.    
  783.    
  784.      ></script>
  785. <script id='merchantWidgetScript' src="https://www.gstatic.com/shopping/merchant/merchantwidget.js" defer></script>
  786. <script type="text/javascript">
  787.  merchantWidgetScript.addEventListener('load', function () {
  788.    merchantwidget.start({
  789.      position: 'LEFT_BOTTOM',
  790.      sideMargin: 21,
  791.      bottomMargin: 33,
  792.      mobileSideMargin: 11,
  793.      mobileBottomMargin: 19
  794.    });
  795.  });
  796. </script>    
  797.     <!-- BEGIN app block: shopify://apps/okas-live-search-filter/blocks/app-block/77de2d4b-51b0-46d6-9fa5-dbe675e819d8 --><script>
  798.  
  799.    
  800.      
  801.            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"        }      }        
  802.    
  803.  
  804.  
  805.  if ("undefined" == typeof _ls_loaded) {
  806.    _ls_loaded = !0;
  807.    var e = document.createElement("script");
  808.    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)    
  809.  }  
  810. </script>
  811.  
  812.  
  813.  
  814. <!-- END app block --><script src="https://cdn.shopify.com/extensions/c51c58c4-45be-47b3-8d53-688df0ba5496/pushowl-brevo-email-push-sms-118/assets/pushowl-shopify.js" type="text/javascript" defer="defer"></script>
  815. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  816. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {var session_token = document.cookie.match(/_shopify_s=([^;]*)/);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: session_token && session_token.length === 2 ? session_token[1] : "",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>
  817. <script id="web-pixels-manager-setup">(function e(e,d,r,n,o,i){if(void 0===i&&(i={}),!Boolean(null===(t=null===(a=window.Shopify)||void 0===a?void 0:a.analytics)||void 0===t?void 0:t.replayQueue)){var a,t;window.Shopify=window.Shopify||{};var s=window.Shopify;s.analytics=s.analytics||{};var l=s.analytics;l.replayQueue=[],l.publish=function(e,d,r){return l.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var u=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"}(),c="modern"===u?"modern":"legacy",f=(null!=o?o:{modern:"",legacy:""})[c],m=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:r,hashVersion:n,buildTarget:c}),p=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:n,bundleTarget:u,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{i.browserTarget=u,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:m,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 r=window.webPixelsManager.init(e)||void 0;if(r){d(r);var n=window.Shopify.analytics;n.replayQueue.forEach((function(e){var d=e[0],n=e[1],o=e[2];r.publishCustomEvent(d,n,o)})),n.replayQueue=[],n.publish=r.publishCustomEvent,n.visitor=r.visitor,n.initialized=!0}}},onerror:function(){return p.emit({status:"failed",errorMsg:"".concat(m," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(f)?f:"",scriptDataAttributes:i}),p.emit({status:"loading"})}catch(e){p.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":"4b1503cefaacd403b3b8fbb6a9344c9b","type":"APP","apiClientId":1615517,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"392691799","configuration":"{\"config\":\"{\\\"pixel_id\\\":\\\"G-R766FMP28N\\\",\\\"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":"26a08df6fb732969dd50810ae4fdc2c1","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":"0420","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0420","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,effectiveTopLevelDomain: "ca",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},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://laptopparts.ca/cdn","77a16e2cw347ec732p8c6f28ebme63a2aae",{"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":"77a16e2cw347ec732p8c6f28ebme63a2aae"});</script><script>
  818.  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  819.  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  820.  window.ShopifyAnalytics.meta.currency = 'CAD';
  821.  var meta = {"page":{"pageType":"home"}};
  822.  for (var attr in meta) {
  823.    window.ShopifyAnalytics.meta[attr] = meta[attr];
  824.  }
  825. </script>
  826. <script class="analytics">
  827.  (function () {
  828.    var customDocumentWrite = function(content) {
  829.      var jquery = null;
  830.  
  831.      if (window.jQuery) {
  832.        jquery = window.jQuery;
  833.      } else if (window.Checkout && window.Checkout.$) {
  834.        jquery = window.Checkout.$;
  835.      }
  836.  
  837.      if (jquery) {
  838.        jquery('body').append(content);
  839.      }
  840.    };
  841.  
  842.    var hasLoggedConversion = function(token) {
  843.      if (token) {
  844.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  845.      }
  846.      return false;
  847.    }
  848.  
  849.    var setCookieIfConversion = function(token) {
  850.      if (token) {
  851.        var twoMonthsFromNow = new Date(Date.now());
  852.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  853.  
  854.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  855.      }
  856.    }
  857.  
  858.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  859.    if (trekkie.integrations) {
  860.      return;
  861.    }
  862.    trekkie.methods = [
  863.      'identify',
  864.      'page',
  865.      'ready',
  866.      'track',
  867.      'trackForm',
  868.      'trackLink'
  869.    ];
  870.    trekkie.factory = function(method) {
  871.      return function() {
  872.        var args = Array.prototype.slice.call(arguments);
  873.        args.unshift(method);
  874.        trekkie.push(args);
  875.        return trekkie;
  876.      };
  877.    };
  878.    for (var i = 0; i < trekkie.methods.length; i++) {
  879.      var key = trekkie.methods[i];
  880.      trekkie[key] = trekkie.factory(key);
  881.    }
  882.    trekkie.load = function(config) {
  883.      trekkie.config = config || {};
  884.      trekkie.config.initialDocumentCookie = document.cookie;
  885.      var first = document.getElementsByTagName('script')[0];
  886.      var script = document.createElement('script');
  887.      script.type = 'text/javascript';
  888.      script.onerror = function(e) {
  889.        var scriptFallback = document.createElement('script');
  890.        scriptFallback.type = 'text/javascript';
  891.        scriptFallback.onerror = function(error) {
  892.                var Monorail = {
  893.      produce: function produce(monorailDomain, schemaId, payload) {
  894.        var currentMs = new Date().getTime();
  895.        var event = {
  896.          schema_id: schemaId,
  897.          payload: payload,
  898.          metadata: {
  899.            event_created_at_ms: currentMs,
  900.            event_sent_at_ms: currentMs
  901.          }
  902.        };
  903.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  904.      },
  905.      sendRequest: function sendRequest(endpointUrl, payload) {
  906.        // Try the sendBeacon API
  907.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  908.          var blobData = new window.Blob([payload], {
  909.            type: 'text/plain'
  910.          });
  911.  
  912.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  913.            return true;
  914.          } // sendBeacon was not successful
  915.  
  916.        } // XHR beacon
  917.  
  918.        var xhr = new XMLHttpRequest();
  919.  
  920.        try {
  921.          xhr.open('POST', endpointUrl);
  922.          xhr.setRequestHeader('Content-Type', 'text/plain');
  923.          xhr.send(payload);
  924.        } catch (e) {
  925.          console.log(e);
  926.        }
  927.  
  928.        return false;
  929.      },
  930.      isIos12: function isIos12() {
  931.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  932.      }
  933.    };
  934.    Monorail.produce('monorail-edge.shopifysvc.com',
  935.      'trekkie_storefront_load_errors/1.1',
  936.      {shop_id: 11386172,
  937.      theme_id: 126947917911,
  938.      app_name: "storefront",
  939.      context_url: window.location.href,
  940.      source_url: "//laptopparts.ca/cdn/s/trekkie.storefront.e4b7dfbfa4ea6cc68d87e97829a12478d9c16c4b.min.js"});
  941.  
  942.        };
  943.        scriptFallback.async = true;
  944.        scriptFallback.src = '//laptopparts.ca/cdn/s/trekkie.storefront.e4b7dfbfa4ea6cc68d87e97829a12478d9c16c4b.min.js';
  945.        first.parentNode.insertBefore(scriptFallback, first);
  946.      };
  947.      script.async = true;
  948.      script.src = '//laptopparts.ca/cdn/s/trekkie.storefront.e4b7dfbfa4ea6cc68d87e97829a12478d9c16c4b.min.js';
  949.      first.parentNode.insertBefore(script, first);
  950.    };
  951.    trekkie.load(
  952.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":11386172,"isMerchantRequest":null,"themeId":126947917911,"themeCityHash":"16933963375368459860","contentLanguage":"en","currency":"CAD","eventMetadataId":"4da9f860-c8a3-4bd3-9eac-919045c4bde7"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  953.    );
  954.  
  955.    var loaded = false;
  956.    trekkie.ready(function() {
  957.      if (loaded) return;
  958.      loaded = true;
  959.  
  960.      window.ShopifyAnalytics.lib = window.trekkie;
  961.  
  962.      var originalDocumentWrite = document.write;
  963.      document.write = customDocumentWrite;
  964.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  965.      document.write = originalDocumentWrite;
  966.  
  967.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  968.  
  969.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  970.      var token = match? match[1]: undefined;
  971.      if (!hasLoggedConversion(token)) {
  972.        setCookieIfConversion(token);
  973.        
  974.      }
  975.    });
  976.  
  977.  
  978.        var eventsListenerScript = document.createElement('script');
  979.        eventsListenerScript.async = true;
  980.        eventsListenerScript.src = "//laptopparts.ca/cdn/shopifycloud/shopify/assets/shop_events_listener-1d89eace2351930ad947448cd92e0cd236cb81ecc8f6bbf9ce2331557cb884b2.js";
  981.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  982.  
  983. })();</script>
  984. <script
  985.  defer
  986.  src="https://laptopparts.ca/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.6.6.min.js"
  987.  data-application="storefront-renderer"
  988.  data-shop-id="11386172"
  989.  data-render-region="gcp-us-east1"
  990.  data-page-type="index"
  991.  data-theme-instance-id="126947917911"
  992.  data-theme-name="Empire"
  993.  data-theme-version="9.1.1"
  994.  data-monorail-region="shop_domain"
  995.  data-resource-timing-sampling-rate="10"
  996.  data-shs="true"
  997. ></script>
  998. </head>
  999.  
  1000.  <body
  1001.    class="template-index"
  1002.    data-instant-allow-query-string
  1003.    
  1004.  >
  1005.    <script>
  1006.      document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
  1007.      if(window.Shopify&&window.Shopify.designMode)document.documentElement.className+=' in-theme-editor';
  1008.      if(('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch)document.documentElement.className=document.documentElement.className.replace(/\bno-touch\b/,'has-touch');
  1009.    </script>
  1010.  
  1011.    <!-- Google Tag Manager (noscript) -->
  1012.    <noscript
  1013.      ><iframe
  1014.        loading="lazy"
  1015.        src="https://www.googletagmanager.com/ns.html?id=GTM-WDHHF23"
  1016.        height="0"
  1017.        width="0"
  1018.        style="display:none;visibility:hidden"
  1019.      ></iframe
  1020.    ></noscript>
  1021.    <!-- End Google Tag Manager (noscript) -->
  1022.  
  1023.    
  1024.    <svg
  1025.      class="icon-star-reference"
  1026.      aria-hidden="true"
  1027.      focusable="false"
  1028.      role="presentation"
  1029.      xmlns="http://www.w3.org/2000/svg"
  1030.      width="20"
  1031.      height="20"
  1032.      viewBox="3 3 17 17"
  1033.      fill="none"
  1034.    >
  1035.      <symbol id="icon-star">
  1036.        <rect class="icon-star-background" width="20" height="20" fill="currentColor"/>
  1037.        <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"/>
  1038.      </symbol>
  1039.      <clipPath id="icon-star-clip">
  1040.        <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"/>
  1041.      </clipPath>
  1042.    </svg>
  1043.    
  1044.  
  1045.    <a class="skip-to-main" href="#site-main">Skip to content</a>
  1046.  
  1047.    <!-- BEGIN sections: header-group -->
  1048. <div id="shopify-section-sections--15492291133527__announcement-bar" class="shopify-section shopify-section-group-header-group site-announcement"><script
  1049.  type="application/json"
  1050.  data-section-id="sections--15492291133527__announcement-bar"
  1051.  data-section-type="static-announcement">
  1052. </script>
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063.    <div
  1064.      class="
  1065.        announcement-bar
  1066.        
  1067.      "
  1068.      style="
  1069.        color: #ffffff;
  1070.        background: #fe0000;
  1071.      "
  1072.      data-announcement-bar
  1073.    >
  1074.      
  1075.  
  1076.      
  1077.        <div class="announcement-bar-text">
  1078.          📞 <b>Text us at 613-704-4708</b>
  1079.  
  1080. <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>
  1081.        </div>
  1082.      
  1083.  
  1084.      <div class="announcement-bar-text-mobile">
  1085.        
  1086.          📞 <b>Text us at 613-704-4708</b>
  1087.  
  1088. <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>
  1089.        
  1090.      </div>
  1091.    </div>
  1092.  
  1093.  
  1094.  
  1095. </div><div id="shopify-section-sections--15492291133527__header" class="shopify-section shopify-section-group-header-group site-header-wrapper">
  1096.  
  1097.  
  1098. <script
  1099.  type="application/json"
  1100.  data-section-id="sections--15492291133527__header"
  1101.  data-section-type="static-header"
  1102.  data-section-data>
  1103.  {
  1104.    "settings": {
  1105.      "sticky_header": false,
  1106.      "has_box_shadow": false,
  1107.      "live_search": {
  1108.        "enable": false,
  1109.        "money_format": "${{amount}}",
  1110.        "show_mobile_search_bar": false
  1111.      }
  1112.    }
  1113.  }
  1114. </script>
  1115.  
  1116.  
  1117.  
  1118.  
  1119.  
  1120. <style data-shopify>
  1121.  .site-logo {
  1122.    max-width: 250px;
  1123.  }
  1124.  
  1125.  .site-logo-image {
  1126.    max-height: 100px;
  1127.  }
  1128. </style>
  1129.  
  1130. <header
  1131.  class="site-header site-header-nav--open"
  1132.  role="banner"
  1133.  data-site-header
  1134. >
  1135.  <div
  1136.    class="
  1137.      site-header-main
  1138.      
  1139.        site-header--full-width
  1140.      
  1141.    "
  1142.    data-site-header-main
  1143.    
  1144.    
  1145.      data-site-header-mobile-search-button
  1146.    
  1147.  >
  1148.    <button class="site-header-menu-toggle" data-menu-toggle>
  1149.      <div class="site-header-menu-toggle--button" tabindex="-1">
  1150.        <span class="toggle-icon--bar toggle-icon--bar-top"></span>
  1151.        <span class="toggle-icon--bar toggle-icon--bar-middle"></span>
  1152.        <span class="toggle-icon--bar toggle-icon--bar-bottom"></span>
  1153.        <span class="visually-hidden">Menu</span>
  1154.      </div>
  1155.    </button>
  1156.  
  1157.    
  1158.      
  1159.      
  1160.        <a
  1161.          class="site-header-mobile-search-button"
  1162.          href="/search"
  1163.        >
  1164.          
  1165.        <div class="site-header-mobile-search-button--button" tabindex="-1">
  1166.          <svg
  1167.  aria-hidden="true"
  1168.  focusable="false"
  1169.  role="presentation"
  1170.  xmlns="http://www.w3.org/2000/svg"
  1171.  width="23"
  1172.  height="24"
  1173.  fill="none"
  1174.  viewBox="0 0 23 24"
  1175. >
  1176.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1177.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1178. </svg>
  1179.  
  1180.        </div>
  1181.      
  1182.        </a>
  1183.      
  1184.    
  1185.  
  1186.    <div
  1187.      class="
  1188.        site-header-main-content
  1189.        
  1190.      "
  1191.    >
  1192.      <div class="site-header-logo">
  1193.        <a
  1194.          class="site-logo"
  1195.          href="/">
  1196.          
  1197.            
  1198.            
  1199.  
  1200.            
  1201.  
  1202.  
  1203.  
  1204.  <img loading="lazy"
  1205.    
  1206.      src="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523"
  1207.    
  1208.    alt=""
  1209.  
  1210.    
  1211.      data-rimg
  1212.      srcset="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523 1x"
  1213.    
  1214.  
  1215.    class="site-logo-image"
  1216.    style="
  1217.        object-fit:cover;object-position:50.0% 50.0%;
  1218.      
  1219. "
  1220.    
  1221.  >
  1222.  
  1223.  
  1224.  
  1225.  
  1226.          
  1227.        </a>
  1228.      </div>
  1229.  
  1230.      
  1231.  
  1232.  
  1233.  
  1234.  
  1235.  
  1236. <div class="live-search" data-live-search><form
  1237.    class="
  1238.      live-search-form
  1239.      form-fields-inline
  1240.      
  1241.    "
  1242.    action="/search"
  1243.    method="get"
  1244.    role="search"
  1245.    aria-label="Product"
  1246.    data-live-search-form
  1247.  >
  1248.    <div class="form-field no-label"><span class="form-field-select-wrapper live-search-filter-wrapper">
  1249.          <select class="live-search-filter" data-live-search-filter data-filter-all="All categories">
  1250.            
  1251.            <option value="" selected>All categories</option>
  1252.            <option value="" disabled>------</option>
  1253.            
  1254.              
  1255.  
  1256. <option value="product_type:AC Adapters">AC Adapters</option>
  1257. <option value="product_type:Accessories">Accessories</option>
  1258. <option value="product_type:Adapter Card">Adapter Card</option>
  1259. <option value="product_type:Antennas">Antennas</option>
  1260. <option value="product_type:Appliances &gt; Fans">Appliances > Fans</option>
  1261. <option value="product_type:Batteries">Batteries</option>
  1262. <option value="product_type:Bezels Cases &amp; Covers">Bezels Cases & Covers</option>
  1263. <option value="product_type:Boards">Boards</option>
  1264. <option value="product_type:Cables">Cables</option>
  1265. <option value="product_type:Cases Covers &amp; Bezels">Cases Covers & Bezels</option>
  1266. <option value="product_type:Connectors">Connectors</option>
  1267. <option value="product_type:DC Jack Cables">DC Jack Cables</option>
  1268. <option value="product_type:Docking Station">Docking Station</option>
  1269. <option value="product_type:Drives">Drives</option>
  1270. <option value="product_type:Fans">Fans</option>
  1271. <option value="product_type:Hard Drive Brackets">Hard Drive Brackets</option>
  1272. <option value="product_type:Hard Drive Disk Caddy">Hard Drive Disk Caddy</option>
  1273. <option value="product_type:Hard Drives">Hard Drives</option>
  1274. <option value="product_type:Hinges">Hinges</option>
  1275. <option value="product_type:Keyboards">Keyboards</option>
  1276. <option value="product_type:Memory">Memory</option>
  1277. <option value="product_type:Misc">Misc</option>
  1278. <option value="product_type:Motherboards">Motherboards</option>
  1279. <option value="product_type:Network Cards">Network Cards</option>
  1280. <option value="product_type:Optical Cables">Optical Cables</option>
  1281. <option value="product_type:Optical Drives">Optical Drives</option>
  1282. <option value="product_type:Palmrests">Palmrests</option>
  1283. <option value="product_type:Parts">Parts</option>
  1284. <option value="product_type:Phone Parts">Phone Parts</option>
  1285. <option value="product_type:Power Supplies">Power Supplies</option>
  1286. <option value="product_type:POWER SUPPLY">POWER SUPPLY</option>
  1287. <option value="product_type:Printer Parts">Printer Parts</option>
  1288. <option value="product_type:Screens">Screens</option>
  1289. <option value="product_type:Screens - Touch Digitizers">Screens - Touch Digitizers</option>
  1290. <option value="product_type:Screws">Screws</option>
  1291. <option value="product_type:Server Parts">Server Parts</option>
  1292. <option value="product_type:Short Low Profile Bracket">Short Low Profile Bracket</option>
  1293. <option value="product_type:Speakers">Speakers</option>
  1294. <option value="product_type:Tablet Parts">Tablet Parts</option>
  1295. <option value="product_type:Touchpads">Touchpads</option>
  1296. <option value="product_type:UpCart - Shipping Protection">UpCart - Shipping Protection</option>
  1297. <option value="product_type:Wireless Mouse Receiver">Wireless Mouse Receiver</option>
  1298.            
  1299.          </select>
  1300.          <label class="live-search-filter-label form-field-select" data-live-search-filter-label>All categories
  1301. </label>
  1302.          <svg
  1303.  aria-hidden="true"
  1304.  focusable="false"
  1305.  role="presentation"
  1306.  width="8"
  1307.  height="6"
  1308.  viewBox="0 0 8 6"
  1309.  fill="none"
  1310.  xmlns="http://www.w3.org/2000/svg"
  1311.  class="icon-chevron-down"
  1312. >
  1313. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1314. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1315. </svg>
  1316.  
  1317.        </span><input
  1318.        class="form-field-input live-search-form-field"
  1319.        type="text"
  1320.        name="q"
  1321.        aria-label="Search"
  1322.        placeholder="What are you looking for?"
  1323.        
  1324.        autocomplete="off"
  1325.        data-live-search-input
  1326.      >
  1327.      <button
  1328.        class="live-search-takeover-cancel"
  1329.        type="button"
  1330.        data-live-search-takeover-cancel>
  1331.        Cancel
  1332.      </button>
  1333.  
  1334.      <button
  1335.        class="live-search-button"
  1336.        type="submit"
  1337.        aria-label="Search"
  1338.        data-live-search-submit
  1339.      >
  1340.        <span class="search-icon search-icon--inactive">
  1341.          <svg
  1342.  aria-hidden="true"
  1343.  focusable="false"
  1344.  role="presentation"
  1345.  xmlns="http://www.w3.org/2000/svg"
  1346.  width="23"
  1347.  height="24"
  1348.  fill="none"
  1349.  viewBox="0 0 23 24"
  1350. >
  1351.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1352.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1353. </svg>
  1354.  
  1355.        </span>
  1356.        <span class="search-icon search-icon--active">
  1357.          <svg
  1358.  aria-hidden="true"
  1359.  focusable="false"
  1360.  role="presentation"
  1361.  width="26"
  1362.  height="26"
  1363.  viewBox="0 0 26 26"
  1364.  xmlns="http://www.w3.org/2000/svg"
  1365. >
  1366.  <g fill-rule="nonzero" fill="currentColor">
  1367.    <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"/>
  1368.  </g>
  1369. </svg>
  1370.        </span>
  1371.      </button>
  1372.    </div>
  1373.  
  1374.    <div class="search-flydown" data-live-search-flydown>
  1375.      <div class="search-flydown--placeholder" data-live-search-placeholder>
  1376.        <div class="search-flydown--product-items">
  1377.          
  1378.            <a class="search-flydown--product search-flydown--product" href="#">
  1379.              
  1380.  
  1381.              <div class="search-flydown--product-text">
  1382.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1383.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1384.              </div>
  1385.            </a>
  1386.          
  1387.            <a class="search-flydown--product search-flydown--product" href="#">
  1388.              
  1389.  
  1390.              <div class="search-flydown--product-text">
  1391.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1392.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1393.              </div>
  1394.            </a>
  1395.          
  1396.            <a class="search-flydown--product search-flydown--product" href="#">
  1397.              
  1398.  
  1399.              <div class="search-flydown--product-text">
  1400.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1401.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1402.              </div>
  1403.            </a>
  1404.          
  1405.        </div>
  1406.      </div>
  1407.  
  1408.      <div
  1409.        class="
  1410.          search-flydown--results
  1411.          search-flydown--results--no-images
  1412.        "
  1413.        data-live-search-results
  1414.      ></div>
  1415.  
  1416.      
  1417.    </div>
  1418.  </form>
  1419. </div>
  1420.  
  1421.  
  1422.      
  1423.    </div>
  1424.  
  1425.    <div class="site-header-right">
  1426.      <ul class="site-header-actions" data-header-actions>
  1427.  
  1428.    
  1429.      <li class="site-header-actions__account-link">
  1430.        <a
  1431.          class="site-header_account-link-anchor"
  1432.          href="/account/login"
  1433.        >
  1434.          <span class="site-header__account-icon">
  1435.            
  1436.  
  1437.  
  1438.    <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>                                                                                                                
  1439.  
  1440.          </span>
  1441.          
  1442.          <span class="site-header_account-link-text">
  1443.            Login
  1444.          </span>
  1445.        </a>
  1446.      </li>
  1447.    
  1448.  
  1449. </ul>
  1450.  
  1451.  
  1452.      <div class="site-header-cart">
  1453.        <a class="site-header-cart--button" href="/cart">
  1454.          <span
  1455.            class="site-header-cart--count "
  1456.            data-header-cart-count="">
  1457.          </span>
  1458.          <span class="site-header-cart-icon site-header-cart-icon--svg">
  1459.            
  1460.              
  1461.  
  1462.  
  1463.            <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>                                                                                                        
  1464.  
  1465.            
  1466.          </span>
  1467.          <span class="visually-hidden">View cart</span>
  1468.        </a>
  1469.      </div>
  1470.    </div>
  1471.  </div>
  1472.  
  1473.  <div
  1474.    class="
  1475.      site-navigation-wrapper
  1476.      
  1477.        site-navigation--has-actions
  1478.      
  1479.      
  1480.        site-header--full-width
  1481.      
  1482.    "
  1483.    data-site-navigation
  1484.    id="site-header-nav"
  1485.  >
  1486.    <nav
  1487.      class="site-navigation"
  1488.      aria-label="Main"
  1489.    >
  1490.      
  1491.  
  1492.  
  1493.  
  1494.  
  1495. <ul
  1496.  class="navmenu navmenu-depth-1"
  1497.  data-navmenu
  1498.  aria-label="Main Menu 02"
  1499. >
  1500.  
  1501.    
  1502.    
  1503.  
  1504.    
  1505.    
  1506.    
  1507.    
  1508. <li
  1509.      class="navmenu-item              navmenu-basic__item                  navmenu-id-home"
  1510.      
  1511.      
  1512.      
  1513.    >
  1514.      
  1515.        <a
  1516.      
  1517.        class="
  1518.          navmenu-link
  1519.          navmenu-link-depth-1
  1520.          
  1521.          navmenu-link-active
  1522.        "
  1523.        
  1524.          href="/"
  1525.        
  1526.      >
  1527.        Home
  1528.        
  1529.      
  1530.        </a>
  1531.      
  1532.  
  1533.      
  1534.      </details>
  1535.    </li>
  1536.  
  1537.    
  1538.    
  1539.  
  1540.    
  1541.    
  1542.    
  1543.    
  1544. <li
  1545.      class="navmenu-item                    navmenu-item-parent                  navmenu-meganav__item-parent                    navmenu-id-shop"
  1546.      
  1547.        data-navmenu-meganav-trigger
  1548.        data-navmenu-meganav-type="multi-column-menu"
  1549.      
  1550.      data-navmenu-parent
  1551.      
  1552.    >
  1553.      
  1554.        <details data-navmenu-details>
  1555.        <summary
  1556.      
  1557.        class="
  1558.          navmenu-link
  1559.          navmenu-link-depth-1
  1560.          navmenu-link-parent
  1561.          
  1562.        "
  1563.        
  1564.          aria-haspopup="true"
  1565.          aria-expanded="false"
  1566.          data-href="/collections/all"
  1567.        
  1568.      >
  1569.        Shop
  1570.        
  1571.          <span
  1572.            class="navmenu-icon navmenu-icon-depth-1"
  1573.            data-navmenu-trigger
  1574.          >
  1575.            <svg
  1576.  aria-hidden="true"
  1577.  focusable="false"
  1578.  role="presentation"
  1579.  width="8"
  1580.  height="6"
  1581.  viewBox="0 0 8 6"
  1582.  fill="none"
  1583.  xmlns="http://www.w3.org/2000/svg"
  1584.  class="icon-chevron-down"
  1585. >
  1586. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1587. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1588. </svg>
  1589.  
  1590.          </span>
  1591.        
  1592.      
  1593.        </summary>
  1594.      
  1595.  
  1596.      
  1597.        
  1598.            
  1599.  
  1600.  
  1601.  
  1602.  
  1603.  
  1604.  
  1605.  
  1606. <div
  1607.  class="navmenu-submenu  navmenu-meganav  navmenu-meganav--desktop"
  1608.  data-navmenu-submenu
  1609.  data-meganav-menu
  1610.  data-meganav-id="3b13d0a4-b646-40a2-af69-91c68056aced"
  1611. >
  1612.  <div class="navmenu-meganav-wrapper navmenu-multi-column-items">
  1613.    <ul class="navmenu navmenu-depth-2 multi-column-count-5">
  1614.      
  1615.        
  1616.          <li class="navmenu-item">
  1617.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1618.              Laptop Components
  1619.            </a>
  1620.            <ul>
  1621.            
  1622.              <li class="navmenu-item">
  1623.                <a href="/collections/ac-adapters" class="navmenu-link">
  1624.                  AC Adapters
  1625.                </a>
  1626.              </li>
  1627.            
  1628.              <li class="navmenu-item">
  1629.                <a href="/collections/batteries" class="navmenu-link">
  1630.                  Batteries
  1631.                </a>
  1632.              </li>
  1633.            
  1634.              <li class="navmenu-item">
  1635.                <a href="/collections/cases-covers-bezels" class="navmenu-link">
  1636.                  Bezels Cases & Covers
  1637.                </a>
  1638.              </li>
  1639.            
  1640.              <li class="navmenu-item">
  1641.                <a href="/collections/boards" class="navmenu-link">
  1642.                  Boards
  1643.                </a>
  1644.              </li>
  1645.            
  1646.              <li class="navmenu-item">
  1647.                <a href="/collections/cables" class="navmenu-link">
  1648.                  Cables
  1649.                </a>
  1650.              </li>
  1651.            
  1652.              <li class="navmenu-item">
  1653.                <a href="/collections/dc-jack-cables" class="navmenu-link">
  1654.                  DC Jack Cables
  1655.                </a>
  1656.              </li>
  1657.            
  1658.              <li class="navmenu-item">
  1659.                <a href="/collections/fans" class="navmenu-link">
  1660.                  Fans
  1661.                </a>
  1662.              </li>
  1663.            
  1664.              <li class="navmenu-item">
  1665.                <a href="/collections/hard-drive-brackets" class="navmenu-link">
  1666.                  Hard Drive Brackets
  1667.                </a>
  1668.              </li>
  1669.            
  1670.              <li class="navmenu-item">
  1671.                <a href="/collections/laptop-hard-drive" class="navmenu-link">
  1672.                  Hard Drives
  1673.                </a>
  1674.              </li>
  1675.            
  1676.              <li class="navmenu-item">
  1677.                <a href="/collections/laptop-case-parts" class="navmenu-link">
  1678.                  - Laptop Case Parts
  1679.                </a>
  1680.              </li>
  1681.            
  1682.              <li class="navmenu-item">
  1683.                <a href="/collections/hinges" class="navmenu-link">
  1684.                  Hinges
  1685.                </a>
  1686.              </li>
  1687.            
  1688.              <li class="navmenu-item">
  1689.                <a href="/collections/laptop-case" class="navmenu-link">
  1690.                  Laptop Case
  1691.                </a>
  1692.              </li>
  1693.            
  1694.              <li class="navmenu-item">
  1695.                <a href="/collections/laptop-cover" class="navmenu-link">
  1696.                  Laptop Cover
  1697.                </a>
  1698.              </li>
  1699.            
  1700.              <li class="navmenu-item">
  1701.                <a href="/collections/thermal-printer" class="navmenu-link">
  1702.                  Thermal Printer
  1703.                </a>
  1704.              </li>
  1705.            
  1706.            </ul>
  1707.          </li>
  1708.        
  1709.      
  1710.        
  1711.          <li class="navmenu-item">
  1712.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1713.              .....
  1714.            </a>
  1715.            <ul>
  1716.            
  1717.              <li class="navmenu-item">
  1718.                <a href="/collections/keyboards-1" class="navmenu-link">
  1719.                  Keyboards
  1720.                </a>
  1721.              </li>
  1722.            
  1723.              <li class="navmenu-item">
  1724.                <a href="/collections/acer-keyboard" class="navmenu-link">
  1725.                  - Acer keyboard
  1726.                </a>
  1727.              </li>
  1728.            
  1729.              <li class="navmenu-item">
  1730.                <a href="/collections/asus-keyboard" class="navmenu-link">
  1731.                  - Asus keyboards
  1732.                </a>
  1733.              </li>
  1734.            
  1735.              <li class="navmenu-item">
  1736.                <a href="/collections/dell-keyboard" class="navmenu-link">
  1737.                  - Dell keyboard
  1738.                </a>
  1739.              </li>
  1740.            
  1741.              <li class="navmenu-item">
  1742.                <a href="/collections/lenovo-keyboard" class="navmenu-link">
  1743.                  - Lenovo keyboard
  1744.                </a>
  1745.              </li>
  1746.            
  1747.              <li class="navmenu-item">
  1748.                <a href="/collections/hp-keyboard" class="navmenu-link">
  1749.                  - Hp Keyboard
  1750.                </a>
  1751.              </li>
  1752.            
  1753.              <li class="navmenu-item">
  1754.                <a href="/collections/backlit-keyboard" class="navmenu-link">
  1755.                  - Backlit Keyboards
  1756.                </a>
  1757.              </li>
  1758.            
  1759.              <li class="navmenu-item">
  1760.                <a href="/collections/memory" class="navmenu-link">
  1761.                  Memory
  1762.                </a>
  1763.              </li>
  1764.            
  1765.              <li class="navmenu-item">
  1766.                <a href="/collections/motherboards" class="navmenu-link">
  1767.                  Motherboards
  1768.                </a>
  1769.              </li>
  1770.            
  1771.              <li class="navmenu-item">
  1772.                <a href="/collections/optical-drives" class="navmenu-link">
  1773.                  Optical Drives
  1774.                </a>
  1775.              </li>
  1776.            
  1777.              <li class="navmenu-item">
  1778.                <a href="/collections/power-supplies" class="navmenu-link">
  1779.                  Power Supplies
  1780.                </a>
  1781.              </li>
  1782.            
  1783.              <li class="navmenu-item">
  1784.                <a href="/collections/screens" class="navmenu-link">
  1785.                  Screens
  1786.                </a>
  1787.              </li>
  1788.            
  1789.              <li class="navmenu-item">
  1790.                <a href="/collections/touch-screen-laptop" class="navmenu-link">
  1791.                  - Touch Screen Laptop
  1792.                </a>
  1793.              </li>
  1794.            
  1795.              <li class="navmenu-item">
  1796.                <a href="/collections/screens-touch-digitizers" class="navmenu-link">
  1797.                  Screens - Touch Digitizers
  1798.                </a>
  1799.              </li>
  1800.            
  1801.              <li class="navmenu-item">
  1802.                <a href="/collections/speakers" class="navmenu-link">
  1803.                  Speakers
  1804.                </a>
  1805.              </li>
  1806.            
  1807.              <li class="navmenu-item">
  1808.                <a href="/collections/touchpads" class="navmenu-link">
  1809.                  Touchpads
  1810.                </a>
  1811.              </li>
  1812.            
  1813.            </ul>
  1814.          </li>
  1815.        
  1816.      
  1817.        
  1818.          <li class="navmenu-item">
  1819.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1820.              Other Components
  1821.            </a>
  1822.            <ul>
  1823.            
  1824.              <li class="navmenu-item">
  1825.                <a href="/collections/accessories" class="navmenu-link">
  1826.                  Accessories
  1827.                </a>
  1828.              </li>
  1829.            
  1830.              <li class="navmenu-item">
  1831.                <a href="/collections/phone-parts" class="navmenu-link">
  1832.                  Phone Parts
  1833.                </a>
  1834.              </li>
  1835.            
  1836.              <li class="navmenu-item">
  1837.                <a href="/collections/printer-parts" class="navmenu-link">
  1838.                  Printer Parts
  1839.                </a>
  1840.              </li>
  1841.            
  1842.              <li class="navmenu-item">
  1843.                <a href="/collections/server-parts" class="navmenu-link">
  1844.                  Server Parts
  1845.                </a>
  1846.              </li>
  1847.            
  1848.              <li class="navmenu-item">
  1849.                <a href="/collections/tablet-parts" class="navmenu-link">
  1850.                  Tablet Parts
  1851.                </a>
  1852.              </li>
  1853.            
  1854.            </ul>
  1855.          </li>
  1856.        
  1857.      
  1858.    </ul>
  1859.  </div>
  1860. </div>
  1861.  
  1862.          
  1863.      
  1864.      </details>
  1865.    </li>
  1866.  
  1867.    
  1868.    
  1869.  
  1870.    
  1871.    
  1872.    
  1873.    
  1874. <li
  1875.      class="navmenu-item              navmenu-basic__item                  navmenu-id-about-us"
  1876.      
  1877.      
  1878.      
  1879.    >
  1880.      
  1881.        <a
  1882.      
  1883.        class="
  1884.          navmenu-link
  1885.          navmenu-link-depth-1
  1886.          
  1887.          
  1888.        "
  1889.        
  1890.          href="/pages/about-us"
  1891.        
  1892.      >
  1893.        About Us
  1894.        
  1895.      
  1896.        </a>
  1897.      
  1898.  
  1899.      
  1900.      </details>
  1901.    </li>
  1902.  
  1903.    
  1904.    
  1905.  
  1906.    
  1907.    
  1908.    
  1909.    
  1910. <li
  1911.      class="navmenu-item              navmenu-basic__item                  navmenu-id-repair-centers"
  1912.      
  1913.      
  1914.      
  1915.    >
  1916.      
  1917.        <a
  1918.      
  1919.        class="
  1920.          navmenu-link
  1921.          navmenu-link-depth-1
  1922.          
  1923.          
  1924.        "
  1925.        
  1926.          href="/pages/store-locator"
  1927.        
  1928.      >
  1929.        Repair Centers
  1930.        
  1931.      
  1932.        </a>
  1933.      
  1934.  
  1935.      
  1936.      </details>
  1937.    </li>
  1938.  
  1939.    
  1940.    
  1941.  
  1942.    
  1943.    
  1944.    
  1945.    
  1946. <li
  1947.      class="navmenu-item              navmenu-basic__item                  navmenu-id-parts-request"
  1948.      
  1949.      
  1950.      
  1951.    >
  1952.      
  1953.        <a
  1954.      
  1955.        class="
  1956.          navmenu-link
  1957.          navmenu-link-depth-1
  1958.          
  1959.          
  1960.        "
  1961.        
  1962.          href="/pages/part-request"
  1963.        
  1964.      >
  1965.        Parts Request
  1966.        
  1967.      
  1968.        </a>
  1969.      
  1970.  
  1971.      
  1972.      </details>
  1973.    </li>
  1974.  
  1975.    
  1976.    
  1977.  
  1978.    
  1979.    
  1980.    
  1981.    
  1982. <li
  1983.      class="navmenu-item              navmenu-basic__item                  navmenu-id-shipping"
  1984.      
  1985.      
  1986.      
  1987.    >
  1988.      
  1989.        <a
  1990.      
  1991.        class="
  1992.          navmenu-link
  1993.          navmenu-link-depth-1
  1994.          
  1995.          
  1996.        "
  1997.        
  1998.          href="/pages/shipping"
  1999.        
  2000.      >
  2001.        Shipping
  2002.        
  2003.      
  2004.        </a>
  2005.      
  2006.  
  2007.      
  2008.      </details>
  2009.    </li>
  2010.  
  2011.    
  2012.    
  2013.  
  2014.    
  2015.    
  2016.    
  2017.    
  2018. <li
  2019.      class="navmenu-item              navmenu-basic__item                  navmenu-id-francais"
  2020.      
  2021.      
  2022.      
  2023.    >
  2024.      
  2025.        <a
  2026.      
  2027.        class="
  2028.          navmenu-link
  2029.          navmenu-link-depth-1
  2030.          
  2031.          
  2032.        "
  2033.        
  2034.          href="/pages/francais"
  2035.        
  2036.      >
  2037.        Français
  2038.        
  2039.      
  2040.        </a>
  2041.      
  2042.  
  2043.      
  2044.      </details>
  2045.    </li>
  2046.  
  2047. </ul>
  2048.  
  2049.  
  2050.      
  2051.    </nav>
  2052.  </div>
  2053.  
  2054.  <div class="site-mobile-nav" id="site-mobile-nav" data-mobile-nav tabindex="0">
  2055.  <div class="mobile-nav-panel" data-mobile-nav-panel>
  2056.  
  2057.    <ul class="site-header-actions" data-header-actions>
  2058.  
  2059.    
  2060.      <li class="site-header-actions__account-link">
  2061.        <a
  2062.          class="site-header_account-link-anchor"
  2063.          href="/account/login"
  2064.        >
  2065.          <span class="site-header__account-icon">
  2066.            
  2067.  
  2068.  
  2069.    <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>                                                                                                                
  2070.  
  2071.          </span>
  2072.          
  2073.          <span class="site-header_account-link-text">
  2074.            Login
  2075.          </span>
  2076.        </a>
  2077.      </li>
  2078.    
  2079.  
  2080. </ul>
  2081.  
  2082.  
  2083.    <a
  2084.      class="mobile-nav-close"
  2085.      href="#site-header-nav"
  2086.      data-mobile-nav-close>
  2087.      <svg
  2088.  aria-hidden="true"
  2089.  focusable="false"
  2090.  role="presentation"
  2091.  xmlns="http://www.w3.org/2000/svg"
  2092.  width="13"
  2093.  height="13"
  2094.  viewBox="0 0 13 13"
  2095. >
  2096.  <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"/>
  2097. </svg>
  2098.      <span class="visually-hidden">Close</span>
  2099.    </a>
  2100.  
  2101.    <div class="mobile-nav-content" data-mobile-nav-content>
  2102.      
  2103.  
  2104.  
  2105.  
  2106.  
  2107. <ul
  2108.  class="navmenu navmenu-depth-1"
  2109.  data-navmenu
  2110.  aria-label="Main Menu 02"
  2111. >
  2112.  
  2113.    
  2114.    
  2115.  
  2116.    
  2117.    
  2118.    
  2119. <li
  2120.      class="navmenu-item            navmenu-id-home"
  2121.      
  2122.    >
  2123.      <a
  2124.        class="navmenu-link  navmenu-link-active"
  2125.        href="/"
  2126.        
  2127.      >
  2128.        Home
  2129.      </a>
  2130.  
  2131.      
  2132.  
  2133.      
  2134.      
  2135.  
  2136.      
  2137.  
  2138.      
  2139.    </li>
  2140.  
  2141.    
  2142.    
  2143.  
  2144.    
  2145.    
  2146.    
  2147. <li
  2148.      class="navmenu-item      navmenu-item-parent      navmenu-id-shop"
  2149.      data-navmenu-parent
  2150.    >
  2151.      <a
  2152.        class="navmenu-link navmenu-link-parent "
  2153.        href="/collections/all"
  2154.        
  2155.          aria-haspopup="true"
  2156.          aria-expanded="false"
  2157.        
  2158.      >
  2159.        Shop
  2160.      </a>
  2161.  
  2162.      
  2163.        
  2164.  
  2165.  
  2166.  
  2167. <button
  2168.  class="navmenu-button"
  2169.  data-navmenu-trigger
  2170.  aria-expanded="false"
  2171. >
  2172.  <div class="navmenu-button-wrapper" tabindex="-1">
  2173.    <span class="navmenu-icon ">
  2174.      <svg
  2175.  aria-hidden="true"
  2176.  focusable="false"
  2177.  role="presentation"
  2178.  width="8"
  2179.  height="6"
  2180.  viewBox="0 0 8 6"
  2181.  fill="none"
  2182.  xmlns="http://www.w3.org/2000/svg"
  2183.  class="icon-chevron-down"
  2184. >
  2185. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2186. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2187. </svg>
  2188.  
  2189.    </span>
  2190.    <span class="visually-hidden">Shop</span>
  2191.  </div>
  2192. </button>
  2193.  
  2194.      
  2195.  
  2196.      
  2197.      
  2198.  
  2199.      
  2200.        
  2201.  
  2202.  
  2203.  
  2204.  
  2205.  
  2206.  
  2207.  
  2208.  
  2209.  
  2210.  
  2211.  
  2212.  
  2213. <ul
  2214.  class="
  2215.    navmenu
  2216.    navmenu-depth-2
  2217.    navmenu-submenu
  2218.    
  2219.  "
  2220.  data-navmenu
  2221.  data-accordion-content
  2222.  data-navmenu-submenu
  2223.  aria-label="Main Menu 02"
  2224. >
  2225.  
  2226.    
  2227.  
  2228.    
  2229.    
  2230.  
  2231.    
  2232.    
  2233.  
  2234.    
  2235.  
  2236.    
  2237. <li
  2238.        class="navmenu-item        navmenu-item-parent        navmenu-id-laptop-components"
  2239.        data-navmenu-parent
  2240.      >
  2241.        
  2242.          <a
  2243.            href="/collections/all"
  2244.        
  2245.          class="navmenu-link navmenu-link-parent "
  2246.          
  2247.            aria-haspopup="true"
  2248.            aria-expanded="false"
  2249.          
  2250.        >
  2251.          
  2252.          Laptop Components
  2253.  
  2254.        
  2255.          </a>
  2256.        
  2257.  
  2258.        
  2259.          
  2260.  
  2261.  
  2262.  
  2263. <button
  2264.  class="navmenu-button"
  2265.  data-navmenu-trigger
  2266.  aria-expanded="false"
  2267. >
  2268.  <div class="navmenu-button-wrapper" tabindex="-1">
  2269.    <span class="navmenu-icon navmenu-icon-depth-2">
  2270.      <svg
  2271.  aria-hidden="true"
  2272.  focusable="false"
  2273.  role="presentation"
  2274.  width="8"
  2275.  height="6"
  2276.  viewBox="0 0 8 6"
  2277.  fill="none"
  2278.  xmlns="http://www.w3.org/2000/svg"
  2279.  class="icon-chevron-down"
  2280. >
  2281. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2282. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2283. </svg>
  2284.  
  2285.    </span>
  2286.    <span class="visually-hidden">Laptop Components</span>
  2287.  </div>
  2288. </button>
  2289.  
  2290.        
  2291.  
  2292.        
  2293.          
  2294.  
  2295.  
  2296.  
  2297.  
  2298.  
  2299.  
  2300.  
  2301.  
  2302.  
  2303.  
  2304.  
  2305.  
  2306. <ul
  2307.  class="
  2308.    navmenu
  2309.    navmenu-depth-3
  2310.    navmenu-submenu
  2311.    
  2312.  "
  2313.  data-navmenu
  2314.  data-accordion-content
  2315.  data-navmenu-submenu
  2316.  aria-label="Main Menu 02"
  2317. >
  2318.  
  2319.    
  2320.  
  2321.    
  2322.    
  2323.  
  2324.    
  2325.    
  2326.  
  2327.    
  2328.  
  2329.    
  2330.      <li
  2331.        class="navmenu-item navmenu-id-ac-adapters"
  2332.      >
  2333.        <a
  2334.        class="
  2335.          navmenu-link
  2336.          navmenu-link-depth-3
  2337.          
  2338.        "
  2339.        href="/collections/ac-adapters"
  2340.        >
  2341.          
  2342.          AC Adapters
  2343. </a>
  2344.      </li>
  2345.    
  2346.  
  2347.    
  2348.  
  2349.    
  2350.    
  2351.  
  2352.    
  2353.    
  2354.  
  2355.    
  2356.  
  2357.    
  2358.      <li
  2359.        class="navmenu-item navmenu-id-batteries"
  2360.      >
  2361.        <a
  2362.        class="
  2363.          navmenu-link
  2364.          navmenu-link-depth-3
  2365.          
  2366.        "
  2367.        href="/collections/batteries"
  2368.        >
  2369.          
  2370.          Batteries
  2371. </a>
  2372.      </li>
  2373.    
  2374.  
  2375.    
  2376.  
  2377.    
  2378.    
  2379.  
  2380.    
  2381.    
  2382.  
  2383.    
  2384.  
  2385.    
  2386.      <li
  2387.        class="navmenu-item navmenu-id-bezels-cases-covers"
  2388.      >
  2389.        <a
  2390.        class="
  2391.          navmenu-link
  2392.          navmenu-link-depth-3
  2393.          
  2394.        "
  2395.        href="/collections/cases-covers-bezels"
  2396.        >
  2397.          
  2398.          Bezels Cases & Covers
  2399. </a>
  2400.      </li>
  2401.    
  2402.  
  2403.    
  2404.  
  2405.    
  2406.    
  2407.  
  2408.    
  2409.    
  2410.  
  2411.    
  2412.  
  2413.    
  2414.      <li
  2415.        class="navmenu-item navmenu-id-boards"
  2416.      >
  2417.        <a
  2418.        class="
  2419.          navmenu-link
  2420.          navmenu-link-depth-3
  2421.          
  2422.        "
  2423.        href="/collections/boards"
  2424.        >
  2425.          
  2426.          Boards
  2427. </a>
  2428.      </li>
  2429.    
  2430.  
  2431.    
  2432.  
  2433.    
  2434.    
  2435.  
  2436.    
  2437.    
  2438.  
  2439.    
  2440.  
  2441.    
  2442.      <li
  2443.        class="navmenu-item navmenu-id-cables"
  2444.      >
  2445.        <a
  2446.        class="
  2447.          navmenu-link
  2448.          navmenu-link-depth-3
  2449.          
  2450.        "
  2451.        href="/collections/cables"
  2452.        >
  2453.          
  2454.          Cables
  2455. </a>
  2456.      </li>
  2457.    
  2458.  
  2459.    
  2460.  
  2461.    
  2462.    
  2463.  
  2464.    
  2465.    
  2466.  
  2467.    
  2468.  
  2469.    
  2470.      <li
  2471.        class="navmenu-item navmenu-id-dc-jack-cables"
  2472.      >
  2473.        <a
  2474.        class="
  2475.          navmenu-link
  2476.          navmenu-link-depth-3
  2477.          
  2478.        "
  2479.        href="/collections/dc-jack-cables"
  2480.        >
  2481.          
  2482.          DC Jack Cables
  2483. </a>
  2484.      </li>
  2485.    
  2486.  
  2487.    
  2488.  
  2489.    
  2490.    
  2491.  
  2492.    
  2493.    
  2494.  
  2495.    
  2496.  
  2497.    
  2498.      <li
  2499.        class="navmenu-item navmenu-id-fans"
  2500.      >
  2501.        <a
  2502.        class="
  2503.          navmenu-link
  2504.          navmenu-link-depth-3
  2505.          
  2506.        "
  2507.        href="/collections/fans"
  2508.        >
  2509.          
  2510.          Fans
  2511. </a>
  2512.      </li>
  2513.    
  2514.  
  2515.    
  2516.  
  2517.    
  2518.    
  2519.  
  2520.    
  2521.    
  2522.  
  2523.    
  2524.  
  2525.    
  2526.      <li
  2527.        class="navmenu-item navmenu-id-hard-drive-brackets"
  2528.      >
  2529.        <a
  2530.        class="
  2531.          navmenu-link
  2532.          navmenu-link-depth-3
  2533.          
  2534.        "
  2535.        href="/collections/hard-drive-brackets"
  2536.        >
  2537.          
  2538.          Hard Drive Brackets
  2539. </a>
  2540.      </li>
  2541.    
  2542.  
  2543.    
  2544.  
  2545.    
  2546.    
  2547.  
  2548.    
  2549.    
  2550.  
  2551.    
  2552.  
  2553.    
  2554.      <li
  2555.        class="navmenu-item navmenu-id-hard-drives"
  2556.      >
  2557.        <a
  2558.        class="
  2559.          navmenu-link
  2560.          navmenu-link-depth-3
  2561.          
  2562.        "
  2563.        href="/collections/laptop-hard-drive"
  2564.        >
  2565.          
  2566.          Hard Drives
  2567. </a>
  2568.      </li>
  2569.    
  2570.  
  2571.    
  2572.  
  2573.    
  2574.    
  2575.  
  2576.    
  2577.    
  2578.  
  2579.    
  2580.  
  2581.    
  2582.      <li
  2583.        class="navmenu-item navmenu-id-laptop-case-parts"
  2584.      >
  2585.        <a
  2586.        class="
  2587.          navmenu-link
  2588.          navmenu-link-depth-3
  2589.          
  2590.        "
  2591.        href="/collections/laptop-case-parts"
  2592.        >
  2593.          
  2594.          - Laptop Case Parts
  2595. </a>
  2596.      </li>
  2597.    
  2598.  
  2599.    
  2600.  
  2601.    
  2602.    
  2603.  
  2604.    
  2605.    
  2606.  
  2607.    
  2608.  
  2609.    
  2610.      <li
  2611.        class="navmenu-item navmenu-id-hinges"
  2612.      >
  2613.        <a
  2614.        class="
  2615.          navmenu-link
  2616.          navmenu-link-depth-3
  2617.          
  2618.        "
  2619.        href="/collections/hinges"
  2620.        >
  2621.          
  2622.          Hinges
  2623. </a>
  2624.      </li>
  2625.    
  2626.  
  2627.    
  2628.  
  2629.    
  2630.    
  2631.  
  2632.    
  2633.    
  2634.  
  2635.    
  2636.  
  2637.    
  2638.      <li
  2639.        class="navmenu-item navmenu-id-laptop-case"
  2640.      >
  2641.        <a
  2642.        class="
  2643.          navmenu-link
  2644.          navmenu-link-depth-3
  2645.          
  2646.        "
  2647.        href="/collections/laptop-case"
  2648.        >
  2649.          
  2650.          Laptop Case
  2651. </a>
  2652.      </li>
  2653.    
  2654.  
  2655.    
  2656.  
  2657.    
  2658.    
  2659.  
  2660.    
  2661.    
  2662.  
  2663.    
  2664.  
  2665.    
  2666.      <li
  2667.        class="navmenu-item navmenu-id-laptop-cover"
  2668.      >
  2669.        <a
  2670.        class="
  2671.          navmenu-link
  2672.          navmenu-link-depth-3
  2673.          
  2674.        "
  2675.        href="/collections/laptop-cover"
  2676.        >
  2677.          
  2678.          Laptop Cover
  2679. </a>
  2680.      </li>
  2681.    
  2682.  
  2683.    
  2684.  
  2685.    
  2686.    
  2687.  
  2688.    
  2689.    
  2690.  
  2691.    
  2692.  
  2693.    
  2694.      <li
  2695.        class="navmenu-item navmenu-id-thermal-printer"
  2696.      >
  2697.        <a
  2698.        class="
  2699.          navmenu-link
  2700.          navmenu-link-depth-3
  2701.          
  2702.        "
  2703.        href="/collections/thermal-printer"
  2704.        >
  2705.          
  2706.          Thermal Printer
  2707. </a>
  2708.      </li>
  2709.    
  2710.  
  2711. </ul>
  2712.  
  2713.        
  2714.        
  2715.      </li>
  2716.    
  2717.  
  2718.    
  2719.  
  2720.    
  2721.    
  2722.  
  2723.    
  2724.    
  2725.  
  2726.    
  2727.  
  2728.    
  2729. <li
  2730.        class="navmenu-item        navmenu-item-parent        navmenu-id-"
  2731.        data-navmenu-parent
  2732.      >
  2733.        
  2734.          <a
  2735.            href="/collections/all"
  2736.        
  2737.          class="navmenu-link navmenu-link-parent "
  2738.          
  2739.            aria-haspopup="true"
  2740.            aria-expanded="false"
  2741.          
  2742.        >
  2743.          
  2744.          .....
  2745.  
  2746.        
  2747.          </a>
  2748.        
  2749.  
  2750.        
  2751.          
  2752.  
  2753.  
  2754.  
  2755. <button
  2756.  class="navmenu-button"
  2757.  data-navmenu-trigger
  2758.  aria-expanded="false"
  2759. >
  2760.  <div class="navmenu-button-wrapper" tabindex="-1">
  2761.    <span class="navmenu-icon navmenu-icon-depth-2">
  2762.      <svg
  2763.  aria-hidden="true"
  2764.  focusable="false"
  2765.  role="presentation"
  2766.  width="8"
  2767.  height="6"
  2768.  viewBox="0 0 8 6"
  2769.  fill="none"
  2770.  xmlns="http://www.w3.org/2000/svg"
  2771.  class="icon-chevron-down"
  2772. >
  2773. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2774. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2775. </svg>
  2776.  
  2777.    </span>
  2778.    <span class="visually-hidden">.....</span>
  2779.  </div>
  2780. </button>
  2781.  
  2782.        
  2783.  
  2784.        
  2785.          
  2786.  
  2787.  
  2788.  
  2789.  
  2790.  
  2791.  
  2792.  
  2793.  
  2794.  
  2795.  
  2796.  
  2797.  
  2798. <ul
  2799.  class="
  2800.    navmenu
  2801.    navmenu-depth-3
  2802.    navmenu-submenu
  2803.    
  2804.  "
  2805.  data-navmenu
  2806.  data-accordion-content
  2807.  data-navmenu-submenu
  2808.  aria-label="Main Menu 02"
  2809. >
  2810.  
  2811.    
  2812.  
  2813.    
  2814.    
  2815.  
  2816.    
  2817.    
  2818.  
  2819.    
  2820.  
  2821.    
  2822.      <li
  2823.        class="navmenu-item navmenu-id-keyboards"
  2824.      >
  2825.        <a
  2826.        class="
  2827.          navmenu-link
  2828.          navmenu-link-depth-3
  2829.          
  2830.        "
  2831.        href="/collections/keyboards-1"
  2832.        >
  2833.          
  2834.          Keyboards
  2835. </a>
  2836.      </li>
  2837.    
  2838.  
  2839.    
  2840.  
  2841.    
  2842.    
  2843.  
  2844.    
  2845.    
  2846.  
  2847.    
  2848.  
  2849.    
  2850.      <li
  2851.        class="navmenu-item navmenu-id-acer-keyboard"
  2852.      >
  2853.        <a
  2854.        class="
  2855.          navmenu-link
  2856.          navmenu-link-depth-3
  2857.          
  2858.        "
  2859.        href="/collections/acer-keyboard"
  2860.        >
  2861.          
  2862.          - Acer keyboard
  2863. </a>
  2864.      </li>
  2865.    
  2866.  
  2867.    
  2868.  
  2869.    
  2870.    
  2871.  
  2872.    
  2873.    
  2874.  
  2875.    
  2876.  
  2877.    
  2878.      <li
  2879.        class="navmenu-item navmenu-id-asus-keyboards"
  2880.      >
  2881.        <a
  2882.        class="
  2883.          navmenu-link
  2884.          navmenu-link-depth-3
  2885.          
  2886.        "
  2887.        href="/collections/asus-keyboard"
  2888.        >
  2889.          
  2890.          - Asus keyboards
  2891. </a>
  2892.      </li>
  2893.    
  2894.  
  2895.    
  2896.  
  2897.    
  2898.    
  2899.  
  2900.    
  2901.    
  2902.  
  2903.    
  2904.  
  2905.    
  2906.      <li
  2907.        class="navmenu-item navmenu-id-dell-keyboard"
  2908.      >
  2909.        <a
  2910.        class="
  2911.          navmenu-link
  2912.          navmenu-link-depth-3
  2913.          
  2914.        "
  2915.        href="/collections/dell-keyboard"
  2916.        >
  2917.          
  2918.          - Dell keyboard
  2919. </a>
  2920.      </li>
  2921.    
  2922.  
  2923.    
  2924.  
  2925.    
  2926.    
  2927.  
  2928.    
  2929.    
  2930.  
  2931.    
  2932.  
  2933.    
  2934.      <li
  2935.        class="navmenu-item navmenu-id-lenovo-keyboard"
  2936.      >
  2937.        <a
  2938.        class="
  2939.          navmenu-link
  2940.          navmenu-link-depth-3
  2941.          
  2942.        "
  2943.        href="/collections/lenovo-keyboard"
  2944.        >
  2945.          
  2946.          - Lenovo keyboard
  2947. </a>
  2948.      </li>
  2949.    
  2950.  
  2951.    
  2952.  
  2953.    
  2954.    
  2955.  
  2956.    
  2957.    
  2958.  
  2959.    
  2960.  
  2961.    
  2962.      <li
  2963.        class="navmenu-item navmenu-id-hp-keyboard"
  2964.      >
  2965.        <a
  2966.        class="
  2967.          navmenu-link
  2968.          navmenu-link-depth-3
  2969.          
  2970.        "
  2971.        href="/collections/hp-keyboard"
  2972.        >
  2973.          
  2974.          - Hp Keyboard
  2975. </a>
  2976.      </li>
  2977.    
  2978.  
  2979.    
  2980.  
  2981.    
  2982.    
  2983.  
  2984.    
  2985.    
  2986.  
  2987.    
  2988.  
  2989.    
  2990.      <li
  2991.        class="navmenu-item navmenu-id-backlit-keyboards"
  2992.      >
  2993.        <a
  2994.        class="
  2995.          navmenu-link
  2996.          navmenu-link-depth-3
  2997.          
  2998.        "
  2999.        href="/collections/backlit-keyboard"
  3000.        >
  3001.          
  3002.          - Backlit Keyboards
  3003. </a>
  3004.      </li>
  3005.    
  3006.  
  3007.    
  3008.  
  3009.    
  3010.    
  3011.  
  3012.    
  3013.    
  3014.  
  3015.    
  3016.  
  3017.    
  3018.      <li
  3019.        class="navmenu-item navmenu-id-memory"
  3020.      >
  3021.        <a
  3022.        class="
  3023.          navmenu-link
  3024.          navmenu-link-depth-3
  3025.          
  3026.        "
  3027.        href="/collections/memory"
  3028.        >
  3029.          
  3030.          Memory
  3031. </a>
  3032.      </li>
  3033.    
  3034.  
  3035.    
  3036.  
  3037.    
  3038.    
  3039.  
  3040.    
  3041.    
  3042.  
  3043.    
  3044.  
  3045.    
  3046.      <li
  3047.        class="navmenu-item navmenu-id-motherboards"
  3048.      >
  3049.        <a
  3050.        class="
  3051.          navmenu-link
  3052.          navmenu-link-depth-3
  3053.          
  3054.        "
  3055.        href="/collections/motherboards"
  3056.        >
  3057.          
  3058.          Motherboards
  3059. </a>
  3060.      </li>
  3061.    
  3062.  
  3063.    
  3064.  
  3065.    
  3066.    
  3067.  
  3068.    
  3069.    
  3070.  
  3071.    
  3072.  
  3073.    
  3074.      <li
  3075.        class="navmenu-item navmenu-id-optical-drives"
  3076.      >
  3077.        <a
  3078.        class="
  3079.          navmenu-link
  3080.          navmenu-link-depth-3
  3081.          
  3082.        "
  3083.        href="/collections/optical-drives"
  3084.        >
  3085.          
  3086.          Optical Drives
  3087. </a>
  3088.      </li>
  3089.    
  3090.  
  3091.    
  3092.  
  3093.    
  3094.    
  3095.  
  3096.    
  3097.    
  3098.  
  3099.    
  3100.  
  3101.    
  3102.      <li
  3103.        class="navmenu-item navmenu-id-power-supplies"
  3104.      >
  3105.        <a
  3106.        class="
  3107.          navmenu-link
  3108.          navmenu-link-depth-3
  3109.          
  3110.        "
  3111.        href="/collections/power-supplies"
  3112.        >
  3113.          
  3114.          Power Supplies
  3115. </a>
  3116.      </li>
  3117.    
  3118.  
  3119.    
  3120.  
  3121.    
  3122.    
  3123.  
  3124.    
  3125.    
  3126.  
  3127.    
  3128.  
  3129.    
  3130.      <li
  3131.        class="navmenu-item navmenu-id-screens"
  3132.      >
  3133.        <a
  3134.        class="
  3135.          navmenu-link
  3136.          navmenu-link-depth-3
  3137.          
  3138.        "
  3139.        href="/collections/screens"
  3140.        >
  3141.          
  3142.          Screens
  3143. </a>
  3144.      </li>
  3145.    
  3146.  
  3147.    
  3148.  
  3149.    
  3150.    
  3151.  
  3152.    
  3153.    
  3154.  
  3155.    
  3156.  
  3157.    
  3158.      <li
  3159.        class="navmenu-item navmenu-id-touch-screen-laptop"
  3160.      >
  3161.        <a
  3162.        class="
  3163.          navmenu-link
  3164.          navmenu-link-depth-3
  3165.          
  3166.        "
  3167.        href="/collections/touch-screen-laptop"
  3168.        >
  3169.          
  3170.          - Touch Screen Laptop
  3171. </a>
  3172.      </li>
  3173.    
  3174.  
  3175.    
  3176.  
  3177.    
  3178.    
  3179.  
  3180.    
  3181.    
  3182.  
  3183.    
  3184.  
  3185.    
  3186.      <li
  3187.        class="navmenu-item navmenu-id-screens-touch-digitizers"
  3188.      >
  3189.        <a
  3190.        class="
  3191.          navmenu-link
  3192.          navmenu-link-depth-3
  3193.          
  3194.        "
  3195.        href="/collections/screens-touch-digitizers"
  3196.        >
  3197.          
  3198.          Screens - Touch Digitizers
  3199. </a>
  3200.      </li>
  3201.    
  3202.  
  3203.    
  3204.  
  3205.    
  3206.    
  3207.  
  3208.    
  3209.    
  3210.  
  3211.    
  3212.  
  3213.    
  3214.      <li
  3215.        class="navmenu-item navmenu-id-speakers"
  3216.      >
  3217.        <a
  3218.        class="
  3219.          navmenu-link
  3220.          navmenu-link-depth-3
  3221.          
  3222.        "
  3223.        href="/collections/speakers"
  3224.        >
  3225.          
  3226.          Speakers
  3227. </a>
  3228.      </li>
  3229.    
  3230.  
  3231.    
  3232.  
  3233.    
  3234.    
  3235.  
  3236.    
  3237.    
  3238.  
  3239.    
  3240.  
  3241.    
  3242.      <li
  3243.        class="navmenu-item navmenu-id-touchpads"
  3244.      >
  3245.        <a
  3246.        class="
  3247.          navmenu-link
  3248.          navmenu-link-depth-3
  3249.          
  3250.        "
  3251.        href="/collections/touchpads"
  3252.        >
  3253.          
  3254.          Touchpads
  3255. </a>
  3256.      </li>
  3257.    
  3258.  
  3259. </ul>
  3260.  
  3261.        
  3262.        
  3263.      </li>
  3264.    
  3265.  
  3266.    
  3267.  
  3268.    
  3269.    
  3270.  
  3271.    
  3272.    
  3273.  
  3274.    
  3275.  
  3276.    
  3277. <li
  3278.        class="navmenu-item        navmenu-item-parent        navmenu-id-other-components"
  3279.        data-navmenu-parent
  3280.      >
  3281.        
  3282.          <a
  3283.            href="/collections/all"
  3284.        
  3285.          class="navmenu-link navmenu-link-parent "
  3286.          
  3287.            aria-haspopup="true"
  3288.            aria-expanded="false"
  3289.          
  3290.        >
  3291.          
  3292.          Other Components
  3293.  
  3294.        
  3295.          </a>
  3296.        
  3297.  
  3298.        
  3299.          
  3300.  
  3301.  
  3302.  
  3303. <button
  3304.  class="navmenu-button"
  3305.  data-navmenu-trigger
  3306.  aria-expanded="false"
  3307. >
  3308.  <div class="navmenu-button-wrapper" tabindex="-1">
  3309.    <span class="navmenu-icon navmenu-icon-depth-2">
  3310.      <svg
  3311.  aria-hidden="true"
  3312.  focusable="false"
  3313.  role="presentation"
  3314.  width="8"
  3315.  height="6"
  3316.  viewBox="0 0 8 6"
  3317.  fill="none"
  3318.  xmlns="http://www.w3.org/2000/svg"
  3319.  class="icon-chevron-down"
  3320. >
  3321. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3322. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3323. </svg>
  3324.  
  3325.    </span>
  3326.    <span class="visually-hidden">Other Components</span>
  3327.  </div>
  3328. </button>
  3329.  
  3330.        
  3331.  
  3332.        
  3333.          
  3334.  
  3335.  
  3336.  
  3337.  
  3338.  
  3339.  
  3340.  
  3341.  
  3342.  
  3343.  
  3344.  
  3345.  
  3346. <ul
  3347.  class="
  3348.    navmenu
  3349.    navmenu-depth-3
  3350.    navmenu-submenu
  3351.    
  3352.  "
  3353.  data-navmenu
  3354.  data-accordion-content
  3355.  data-navmenu-submenu
  3356.  aria-label="Main Menu 02"
  3357. >
  3358.  
  3359.    
  3360.  
  3361.    
  3362.    
  3363.  
  3364.    
  3365.    
  3366.  
  3367.    
  3368.  
  3369.    
  3370.      <li
  3371.        class="navmenu-item navmenu-id-accessories"
  3372.      >
  3373.        <a
  3374.        class="
  3375.          navmenu-link
  3376.          navmenu-link-depth-3
  3377.          
  3378.        "
  3379.        href="/collections/accessories"
  3380.        >
  3381.          
  3382.          Accessories
  3383. </a>
  3384.      </li>
  3385.    
  3386.  
  3387.    
  3388.  
  3389.    
  3390.    
  3391.  
  3392.    
  3393.    
  3394.  
  3395.    
  3396.  
  3397.    
  3398.      <li
  3399.        class="navmenu-item navmenu-id-phone-parts"
  3400.      >
  3401.        <a
  3402.        class="
  3403.          navmenu-link
  3404.          navmenu-link-depth-3
  3405.          
  3406.        "
  3407.        href="/collections/phone-parts"
  3408.        >
  3409.          
  3410.          Phone Parts
  3411. </a>
  3412.      </li>
  3413.    
  3414.  
  3415.    
  3416.  
  3417.    
  3418.    
  3419.  
  3420.    
  3421.    
  3422.  
  3423.    
  3424.  
  3425.    
  3426.      <li
  3427.        class="navmenu-item navmenu-id-printer-parts"
  3428.      >
  3429.        <a
  3430.        class="
  3431.          navmenu-link
  3432.          navmenu-link-depth-3
  3433.          
  3434.        "
  3435.        href="/collections/printer-parts"
  3436.        >
  3437.          
  3438.          Printer Parts
  3439. </a>
  3440.      </li>
  3441.    
  3442.  
  3443.    
  3444.  
  3445.    
  3446.    
  3447.  
  3448.    
  3449.    
  3450.  
  3451.    
  3452.  
  3453.    
  3454.      <li
  3455.        class="navmenu-item navmenu-id-server-parts"
  3456.      >
  3457.        <a
  3458.        class="
  3459.          navmenu-link
  3460.          navmenu-link-depth-3
  3461.          
  3462.        "
  3463.        href="/collections/server-parts"
  3464.        >
  3465.          
  3466.          Server Parts
  3467. </a>
  3468.      </li>
  3469.    
  3470.  
  3471.    
  3472.  
  3473.    
  3474.    
  3475.  
  3476.    
  3477.    
  3478.  
  3479.    
  3480.  
  3481.    
  3482.      <li
  3483.        class="navmenu-item navmenu-id-tablet-parts"
  3484.      >
  3485.        <a
  3486.        class="
  3487.          navmenu-link
  3488.          navmenu-link-depth-3
  3489.          
  3490.        "
  3491.        href="/collections/tablet-parts"
  3492.        >
  3493.          
  3494.          Tablet Parts
  3495. </a>
  3496.      </li>
  3497.    
  3498.  
  3499. </ul>
  3500.  
  3501.        
  3502.        
  3503.      </li>
  3504.    
  3505.  
  3506. </ul>
  3507.  
  3508.      
  3509.  
  3510.      
  3511.    </li>
  3512.  
  3513.    
  3514.    
  3515.  
  3516.    
  3517.    
  3518.    
  3519. <li
  3520.      class="navmenu-item            navmenu-id-about-us"
  3521.      
  3522.    >
  3523.      <a
  3524.        class="navmenu-link  "
  3525.        href="/pages/about-us"
  3526.        
  3527.      >
  3528.        About Us
  3529.      </a>
  3530.  
  3531.      
  3532.  
  3533.      
  3534.      
  3535.  
  3536.      
  3537.  
  3538.      
  3539.    </li>
  3540.  
  3541.    
  3542.    
  3543.  
  3544.    
  3545.    
  3546.    
  3547. <li
  3548.      class="navmenu-item            navmenu-id-repair-centers"
  3549.      
  3550.    >
  3551.      <a
  3552.        class="navmenu-link  "
  3553.        href="/pages/store-locator"
  3554.        
  3555.      >
  3556.        Repair Centers
  3557.      </a>
  3558.  
  3559.      
  3560.  
  3561.      
  3562.      
  3563.  
  3564.      
  3565.  
  3566.      
  3567.    </li>
  3568.  
  3569.    
  3570.    
  3571.  
  3572.    
  3573.    
  3574.    
  3575. <li
  3576.      class="navmenu-item            navmenu-id-parts-request"
  3577.      
  3578.    >
  3579.      <a
  3580.        class="navmenu-link  "
  3581.        href="/pages/part-request"
  3582.        
  3583.      >
  3584.        Parts Request
  3585.      </a>
  3586.  
  3587.      
  3588.  
  3589.      
  3590.      
  3591.  
  3592.      
  3593.  
  3594.      
  3595.    </li>
  3596.  
  3597.    
  3598.    
  3599.  
  3600.    
  3601.    
  3602.    
  3603. <li
  3604.      class="navmenu-item            navmenu-id-shipping"
  3605.      
  3606.    >
  3607.      <a
  3608.        class="navmenu-link  "
  3609.        href="/pages/shipping"
  3610.        
  3611.      >
  3612.        Shipping
  3613.      </a>
  3614.  
  3615.      
  3616.  
  3617.      
  3618.      
  3619.  
  3620.      
  3621.  
  3622.      
  3623.    </li>
  3624.  
  3625.    
  3626.    
  3627.  
  3628.    
  3629.    
  3630.    
  3631. <li
  3632.      class="navmenu-item            navmenu-id-francais"
  3633.      
  3634.    >
  3635.      <a
  3636.        class="navmenu-link  "
  3637.        href="/pages/francais"
  3638.        
  3639.      >
  3640.        Français
  3641.      </a>
  3642.  
  3643.      
  3644.  
  3645.      
  3646.      
  3647.  
  3648.      
  3649.  
  3650.      
  3651.    </li>
  3652.  
  3653. </ul>
  3654.  
  3655.  
  3656.      
  3657.    </div>
  3658.    <div class="utility-bar__mobile-disclosure" data-utility-mobile></div>
  3659.  </div>
  3660.  
  3661.  <div class="mobile-nav-overlay" data-mobile-nav-overlay></div>
  3662. </div>
  3663.  
  3664. </header>
  3665.  
  3666. </div>
  3667. <!-- END sections: header-group -->
  3668.  
  3669.    <div style="--background-color: #fff">
  3670.      
  3671.  
  3672.  
  3673.    </div>
  3674.  
  3675.    <div class="intersection-target" data-header-intersection-target></div>
  3676.    <div class="site-main-dimmer" data-site-main-dimmer></div>
  3677.    <main id="site-main" class="site-main" aria-label="Main content" tabindex="-1">
  3678.      <div id="shopify-section-template--15492296147031__dynamic_slideshow" class="shopify-section slideshow--section">
  3679.  
  3680.  
  3681.  
  3682. <script type="application/pxs-animation-mapping+json">
  3683.  {
  3684.    "blocks": [".slideshow-slide"],
  3685.    "elements": [
  3686.      ".slideshow-slide__heading",
  3687.      ".slideshow-slide__subheading",
  3688.      ".slideshow-slide__text",
  3689.      ".slideshow-slide__button"
  3690.    ]
  3691.  }
  3692. </script>
  3693.  
  3694. <style data-shopify>
  3695.  #shopify-section-template--15492296147031__dynamic_slideshow {
  3696.    --autoplay-interval: 5s;
  3697.  }
  3698.  
  3699.  
  3700.    @media screen and (min-width: 720px) {
  3701.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3702.        height: 55.55555555555556vw;
  3703.      }
  3704.    }
  3705.  
  3706.  
  3707.  
  3708.    @media screen and (max-width: 719px) {
  3709.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3710.        
  3711.          height: 55.55555555555556vw;
  3712.        
  3713.      }
  3714.    }
  3715.  
  3716. </style>
  3717.  
  3718.  
  3719.  
  3720.  
  3721. <script
  3722.  type="application/json"
  3723.  data-section-type="pxs-slideshow"
  3724.  data-section-id="template--15492296147031__dynamic_slideshow"
  3725.  data-section-data
  3726. >
  3727.  {
  3728.    "enable_autoplay": true,
  3729.    "autoplay_interval": 5,
  3730.    "mobile_navigation_adjust": true,
  3731.    "transition_fade": null,
  3732.    "slide_attraction": null,
  3733.    "slide_friction": null,
  3734.    "next_text": "Next slide",
  3735.    "previous_text": "Previous slide"
  3736.  }
  3737. </script>
  3738.  
  3739. <section
  3740.  class="
  3741.    slideshow
  3742.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  3743.  "
  3744.  aria-label="Slideshow"
  3745.  data-autoplay="true"
  3746.  data-autoplay-interval="5"
  3747.  data-banner="false"
  3748.  data-slideshow
  3749. ><div
  3750.    class="slideshow__wrapper "
  3751.    data-slideshow-wrapper
  3752.  >
  3753.  
  3754.  
  3755. <div
  3756.  class="slideshow-slide  "
  3757.  aria-label="Slide 1 of 5"
  3758.  data-text-color="#FFFFFF"
  3759.  tabindex="-1"
  3760.  data-slideshow-slide
  3761.  data-slide-index="0"
  3762.  
  3763. ><div
  3764.      class="
  3765.        slideshow-slide__image-wrapper
  3766.        
  3767.      "
  3768.      data-slide-image-wrapper
  3769.    >
  3770.  
  3771.  
  3772.    <noscript data-rimg-noscript>
  3773.      <img loading="lazy"
  3774.        
  3775.          src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3776.        
  3777.  
  3778.        alt=""
  3779.        data-rimg="noscript"
  3780.        srcset="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850 1x"
  3781.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3782.        style="
  3783.        object-fit:cover;object-position:50.0% 50.0%;
  3784.      
  3785. "
  3786.        
  3787.      >
  3788.    </noscript>
  3789.  
  3790.  
  3791.  <img loading="lazy"
  3792.    
  3793.      src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3794.    
  3795.    alt=""
  3796.  
  3797.    
  3798.      data-rimg="lazy"
  3799.      data-rimg-scale="1"
  3800.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2_1_{size}.jpg?v=1739722850"
  3801.      data-rimg-max="1800x1000"
  3802.      data-rimg-crop="false"
  3803.      
  3804.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3805.    
  3806.  
  3807.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3808.    style="
  3809.        object-fit:cover;object-position:50.0% 50.0%;
  3810.      
  3811. "
  3812.    
  3813.  >
  3814.  
  3815.  
  3816.  
  3817.  <div data-rimg-canvas></div>
  3818.  
  3819.  
  3820. <div
  3821.          class="
  3822.            slideshow-slide__overlay
  3823.            
  3824.          "
  3825.          style="
  3826.            
  3827.              background-color: #000000;
  3828.            
  3829.            opacity: 0.01;
  3830.          "
  3831.        ></div></div><div
  3832.    class="
  3833.      slideshow-slide__content
  3834.      slideshow-slide__content--slide_tJp4ET
  3835.      slideshow-slide__content--text-center
  3836.    "
  3837.    data-slide-content
  3838.  ></div>
  3839. </div>
  3840.  
  3841.  
  3842.  
  3843.  
  3844. <div
  3845.  class="slideshow-slide  "
  3846.  aria-label="Slide 2 of 5"
  3847.  data-text-color="#FFFFFF"
  3848.  tabindex="-1"
  3849.  data-slideshow-slide
  3850.  data-slide-index="1"
  3851.  
  3852. ><div
  3853.      class="
  3854.        slideshow-slide__image-wrapper
  3855.        
  3856.      "
  3857.      data-slide-image-wrapper
  3858.    >
  3859.  
  3860.  
  3861.    <noscript data-rimg-noscript>
  3862.      <img loading="lazy"
  3863.        
  3864.          src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3865.        
  3866.  
  3867.        alt=""
  3868.        data-rimg="noscript"
  3869.        srcset="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692 1x"
  3870.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3871.        style="
  3872.        object-fit:cover;object-position:50.0% 50.0%;
  3873.      
  3874. "
  3875.        
  3876.      >
  3877.    </noscript>
  3878.  
  3879.  
  3880.  <img loading="lazy"
  3881.    
  3882.      src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3883.    
  3884.    alt=""
  3885.  
  3886.    
  3887.      data-rimg="lazy"
  3888.      data-rimg-scale="1"
  3889.      data-rimg-template="//laptopparts.ca/cdn/shop/files/3_1_{size}.jpg?v=1739722692"
  3890.      data-rimg-max="1800x1000"
  3891.      data-rimg-crop="false"
  3892.      
  3893.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3894.    
  3895.  
  3896.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3897.    style="
  3898.        object-fit:cover;object-position:50.0% 50.0%;
  3899.      
  3900. "
  3901.    
  3902.  >
  3903.  
  3904.  
  3905.  
  3906.  <div data-rimg-canvas></div>
  3907.  
  3908.  
  3909. <div
  3910.          class="
  3911.            slideshow-slide__overlay
  3912.            
  3913.          "
  3914.          style="
  3915.            
  3916.              background-color: #000000;
  3917.            
  3918.            opacity: 0.01;
  3919.          "
  3920.        ></div></div><div
  3921.    class="
  3922.      slideshow-slide__content
  3923.      slideshow-slide__content--slide_QztrPf
  3924.      slideshow-slide__content--text-center
  3925.    "
  3926.    data-slide-content
  3927.  ></div>
  3928. </div>
  3929.  
  3930.  
  3931.  
  3932.  
  3933. <div
  3934.  class="slideshow-slide  "
  3935.  aria-label="Slide 3 of 5"
  3936.  data-text-color="#FFFFFF"
  3937.  tabindex="-1"
  3938.  data-slideshow-slide
  3939.  data-slide-index="2"
  3940.  
  3941. ><div
  3942.      class="
  3943.        slideshow-slide__image-wrapper
  3944.        
  3945.      "
  3946.      data-slide-image-wrapper
  3947.    >
  3948.  
  3949.  
  3950.    <noscript data-rimg-noscript>
  3951.      <img loading="lazy"
  3952.        
  3953.          src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  3954.        
  3955.  
  3956.        alt=""
  3957.        data-rimg="noscript"
  3958.        srcset="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085 1x"
  3959.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3960.        style="
  3961.        object-fit:cover;object-position:50.0% 50.0%;
  3962.      
  3963. "
  3964.        
  3965.      >
  3966.    </noscript>
  3967.  
  3968.  
  3969.  <img loading="lazy"
  3970.    
  3971.      src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  3972.    
  3973.    alt=""
  3974.  
  3975.    
  3976.      data-rimg="lazy"
  3977.      data-rimg-scale="1"
  3978.      data-rimg-template="//laptopparts.ca/cdn/shop/files/1_1_{size}.jpg?v=1739723085"
  3979.      data-rimg-max="1800x1000"
  3980.      data-rimg-crop="false"
  3981.      
  3982.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3983.    
  3984.  
  3985.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3986.    style="
  3987.        object-fit:cover;object-position:50.0% 50.0%;
  3988.      
  3989. "
  3990.    
  3991.  >
  3992.  
  3993.  
  3994.  
  3995.  <div data-rimg-canvas></div>
  3996.  
  3997.  
  3998. <div
  3999.          class="
  4000.            slideshow-slide__overlay
  4001.            
  4002.          "
  4003.          style="
  4004.            
  4005.              background-color: #000000;
  4006.            
  4007.            opacity: 0.01;
  4008.          "
  4009.        ></div></div><div
  4010.    class="
  4011.      slideshow-slide__content
  4012.      slideshow-slide__content--slide_UPfjBG
  4013.      slideshow-slide__content--text-center
  4014.    "
  4015.    data-slide-content
  4016.  ></div>
  4017. </div>
  4018.  
  4019.  
  4020.  
  4021.  
  4022. <div
  4023.  class="slideshow-slide  "
  4024.  aria-label="Slide 4 of 5"
  4025.  data-text-color="#ffffff"
  4026.  tabindex="-1"
  4027.  data-slideshow-slide
  4028.  data-slide-index="3"
  4029.  
  4030. ><div
  4031.      class="
  4032.        slideshow-slide__image-wrapper
  4033.        
  4034.      "
  4035.      data-slide-image-wrapper
  4036.    >
  4037.  
  4038.  
  4039.    <noscript data-rimg-noscript>
  4040.      <img loading="lazy"
  4041.        
  4042.          src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4043.        
  4044.  
  4045.        alt=""
  4046.        data-rimg="noscript"
  4047.        srcset="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350 1x"
  4048.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4049.        style="
  4050.        object-fit:cover;object-position:50.0% 50.0%;
  4051.      
  4052. "
  4053.        
  4054.      >
  4055.    </noscript>
  4056.  
  4057.  
  4058.  <img loading="lazy"
  4059.    
  4060.      src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4061.    
  4062.    alt=""
  4063.  
  4064.    
  4065.      data-rimg="lazy"
  4066.      data-rimg-scale="1"
  4067.      data-rimg-template="//laptopparts.ca/cdn/shop/files/5_{size}.jpg?v=1739723350"
  4068.      data-rimg-max="1800x1000"
  4069.      data-rimg-crop="false"
  4070.      
  4071.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4072.    
  4073.  
  4074.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4075.    style="
  4076.        object-fit:cover;object-position:50.0% 50.0%;
  4077.      
  4078. "
  4079.    
  4080.  >
  4081.  
  4082.  
  4083.  
  4084.  <div data-rimg-canvas></div>
  4085.  
  4086.  
  4087. <div
  4088.          class="
  4089.            slideshow-slide__overlay
  4090.            
  4091.          "
  4092.          style="
  4093.            
  4094.              background-color: #000000;
  4095.            
  4096.            opacity: 0.01;
  4097.          "
  4098.        ></div></div><div
  4099.    class="
  4100.      slideshow-slide__content
  4101.      slideshow-slide__content--slide_MbNDbx
  4102.      slideshow-slide__content--text-center
  4103.    "
  4104.    data-slide-content
  4105.  ></div>
  4106. </div>
  4107.  
  4108.  
  4109.  
  4110.  
  4111. <div
  4112.  class="slideshow-slide  "
  4113.  aria-label="Slide 5 of 5"
  4114.  data-text-color="#FFFFFF"
  4115.  tabindex="-1"
  4116.  data-slideshow-slide
  4117.  data-slide-index="4"
  4118.  
  4119. ><div
  4120.      class="
  4121.        slideshow-slide__image-wrapper
  4122.        
  4123.      "
  4124.      data-slide-image-wrapper
  4125.    >
  4126.  
  4127.  
  4128.    <noscript data-rimg-noscript>
  4129.      <img loading="lazy"
  4130.        
  4131.          src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4132.        
  4133.  
  4134.        alt=""
  4135.        data-rimg="noscript"
  4136.        srcset="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234 1x"
  4137.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4138.        style="
  4139.        object-fit:cover;object-position:50.0% 50.0%;
  4140.      
  4141. "
  4142.        
  4143.      >
  4144.    </noscript>
  4145.  
  4146.  
  4147.  <img loading="lazy"
  4148.    
  4149.      src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4150.    
  4151.    alt=""
  4152.  
  4153.    
  4154.      data-rimg="lazy"
  4155.      data-rimg-scale="1"
  4156.      data-rimg-template="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_{size}.jpg?v=1739723234"
  4157.      data-rimg-max="1800x1000"
  4158.      data-rimg-crop="false"
  4159.      
  4160.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4161.    
  4162.  
  4163.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4164.    style="
  4165.        object-fit:cover;object-position:50.0% 50.0%;
  4166.      
  4167. "
  4168.    
  4169.  >
  4170.  
  4171.  
  4172.  
  4173.  <div data-rimg-canvas></div>
  4174.  
  4175.  
  4176. <div
  4177.          class="
  4178.            slideshow-slide__overlay
  4179.            
  4180.          "
  4181.          style="
  4182.            
  4183.              background-color: #000000;
  4184.            
  4185.            opacity: 0.01;
  4186.          "
  4187.        ></div></div><div
  4188.    class="
  4189.      slideshow-slide__content
  4190.      slideshow-slide__content--slide_eGUxJ7
  4191.      slideshow-slide__content--text-center
  4192.    "
  4193.    data-slide-content
  4194.  ></div>
  4195. </div>
  4196.  
  4197. </div><ol
  4198.      class="slideshow-pagination"
  4199.      data-slideshow-pagination
  4200.    ><li class="slideshow-pagination__dot">
  4201.          <button
  4202.            class="slideshow-pagination__button"
  4203.            data-selected="true"
  4204.            data-slide-button="0"
  4205.          >
  4206.            
  4207.              
  4208.    <div class="circle-timer">
  4209.      <svg class="circle-timer__svg">
  4210.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4211.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4212.      </svg>
  4213.    </div>
  4214.  
  4215.            
  4216.            <span class="visually-hidden">Slide 1</span>
  4217.          </button>
  4218.        </li><li class="slideshow-pagination__dot">
  4219.          <button
  4220.            class="slideshow-pagination__button"
  4221.            data-selected="false"
  4222.            data-slide-button="1"
  4223.          >
  4224.            
  4225.              
  4226.    <div class="circle-timer">
  4227.      <svg class="circle-timer__svg">
  4228.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4229.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4230.      </svg>
  4231.    </div>
  4232.  
  4233.            
  4234.            <span class="visually-hidden">Slide 2</span>
  4235.          </button>
  4236.        </li><li class="slideshow-pagination__dot">
  4237.          <button
  4238.            class="slideshow-pagination__button"
  4239.            data-selected="false"
  4240.            data-slide-button="2"
  4241.          >
  4242.            
  4243.              
  4244.    <div class="circle-timer">
  4245.      <svg class="circle-timer__svg">
  4246.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4247.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4248.      </svg>
  4249.    </div>
  4250.  
  4251.            
  4252.            <span class="visually-hidden">Slide 3</span>
  4253.          </button>
  4254.        </li><li class="slideshow-pagination__dot">
  4255.          <button
  4256.            class="slideshow-pagination__button"
  4257.            data-selected="false"
  4258.            data-slide-button="3"
  4259.          >
  4260.            
  4261.              
  4262.    <div class="circle-timer">
  4263.      <svg class="circle-timer__svg">
  4264.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4265.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4266.      </svg>
  4267.    </div>
  4268.  
  4269.            
  4270.            <span class="visually-hidden">Slide 4</span>
  4271.          </button>
  4272.        </li><li class="slideshow-pagination__dot">
  4273.          <button
  4274.            class="slideshow-pagination__button"
  4275.            data-selected="false"
  4276.            data-slide-button="4"
  4277.          >
  4278.            
  4279.              
  4280.    <div class="circle-timer">
  4281.      <svg class="circle-timer__svg">
  4282.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4283.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4284.      </svg>
  4285.    </div>
  4286.  
  4287.            
  4288.            <span class="visually-hidden">Slide 5</span>
  4289.          </button>
  4290.        </li></ol><div
  4291.    class="slideshow__current-slide visually-hidden"
  4292.    aria-live="polite"
  4293.    aria-atomic="true"
  4294.    data-slide-counter
  4295.    data-counter-template="Slide {{ count }} of {{ total }}"
  4296.  >
  4297.  </div>
  4298. </section>
  4299.  
  4300.  
  4301.  
  4302. </div><div id="shopify-section-template--15492296147031__dynamic_featured_collection" class="shopify-section featured-collection--section"><script
  4303.  type="application/json"
  4304.  data-section-id="template--15492296147031__dynamic_featured_collection"
  4305.  data-section-type="dynamic-featured-collection"
  4306. ></script>
  4307.  
  4308. <script type="application/pxs-animation-mapping+json">
  4309.  {
  4310.    "blocks": [
  4311.      ".featured-collection__title-card"
  4312.    ],
  4313.    "elements": [
  4314.      ".featured-collection__title-card-pre-heading",
  4315.      ".featured-collection__title-card-heading",
  4316.      ".featured-collection__title-card-button"
  4317.    ]
  4318.  }
  4319. </script>
  4320.  
  4321.  
  4322.  
  4323.  
  4324.  
  4325.  
  4326.  
  4327.  
  4328.  
  4329.  
  4330.  
  4331.  
  4332.  
  4333.  
  4334.  
  4335. <style data-shopify>
  4336.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card {
  4337.    color: ;
  4338.  }
  4339.  
  4340.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card-outer::before {
  4341.    background-color: ;
  4342.    opacity: 0.0;
  4343.  }
  4344.  
  4345.  @media screen and (min-width: 1080px) {
  4346.    #shopify-section-template--15492296147031__dynamic_featured_collection [data-layout="grid"] .featured-collection__title-card {
  4347.      
  4348.    }
  4349.  }
  4350. </style>
  4351.  
  4352.  
  4353.  
  4354.  
  4355.  
  4356.  
  4357.  
  4358.  
  4359.  
  4360.  
  4361.  
  4362.  
  4363.  
  4364.  
  4365.  
  4366. <section class="featured-collection__container" data-featured-collection>
  4367.  
  4368.    <h2 class="home-section--title">
  4369.      Shop The Best Selling
  4370.    </h2>
  4371.  
  4372.  
  4373.  <ul
  4374.    class="home-section--content featured-collection__content"
  4375.    data-content
  4376.    data-layout="slideshow"
  4377.  >
  4378.    
  4379.  
  4380.    
  4381.      
  4382.  
  4383.  
  4384.  
  4385.  
  4386.  
  4387.  
  4388.  
  4389.  
  4390.  
  4391.  
  4392.  
  4393.  
  4394.  
  4395.  
  4396.  
  4397.  
  4398.  
  4399.  
  4400.  
  4401.  
  4402.  
  4403.  
  4404.  
  4405.  
  4406.  
  4407.  
  4408.  
  4409.  
  4410.  
  4411.  
  4412.  
  4413.  
  4414.    
  4415.  
  4416.  
  4417.  
  4418. <li
  4419.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  4420.  data-product-item
  4421.  data-product-quickshop-url="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4422.  
  4423. >
  4424.  <div class="productitem" data-product-item-content>
  4425.    
  4426.    
  4427.    
  4428.    
  4429.  
  4430.    
  4431.  
  4432.    
  4433.  
  4434.    <div class="productitem__container">
  4435.      
  4436.  
  4437.      <div class="productitem__image-container">
  4438.        <a target="_blank"
  4439.          class="productitem--image-link"
  4440.          href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4441.          aria-label="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4442.          tabindex="-1"
  4443.          data-product-page-link
  4444.        >
  4445.          <figure
  4446.            class="productitem--image"
  4447.            data-product-item-image
  4448.            
  4449.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  4450.            
  4451.          >
  4452.            
  4453.              
  4454.              
  4455.  
  4456.  
  4457.    <noscript data-rimg-noscript>
  4458.      <img loading="lazy"
  4459.        
  4460.          src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4461.        
  4462.  
  4463.        alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4464.        data-rimg="noscript"
  4465.        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"
  4466.        class="productitem--image-primary"
  4467.        
  4468.        
  4469.      >
  4470.    </noscript>
  4471.  
  4472.  
  4473.  <img loading="lazy"
  4474.    
  4475.      src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4476.    
  4477.    alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4478.  
  4479.    
  4480.      data-rimg="lazy"
  4481.      data-rimg-scale="1"
  4482.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_{size}.jpg?v=1729018033"
  4483.      data-rimg-max="1000x1000"
  4484.      data-rimg-crop="false"
  4485.      
  4486.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  4487.    
  4488.  
  4489.    class="productitem--image-primary"
  4490.    
  4491.    
  4492.  >
  4493.  
  4494.  
  4495.  
  4496.  <div data-rimg-canvas></div>
  4497.  
  4498.  
  4499.            
  4500.  
  4501.            
  4502.  
  4503.  
  4504.  
  4505.  
  4506.  
  4507.  
  4508.  
  4509.  
  4510.  
  4511.  
  4512.  
  4513.  
  4514.  
  4515.  
  4516.  
  4517.  
  4518.  
  4519.  
  4520.  
  4521.  
  4522.  
  4523.  
  4524.  
  4525.  
  4526.  
  4527.  
  4528.  
  4529.          </figure>
  4530.        </a>
  4531.      </div><div class="productitem--info">
  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.  
  4562.  
  4563.  
  4564.  
  4565.  
  4566.  
  4567.  
  4568.  
  4569. <div class="price productitem__price ">
  4570.  
  4571.    <div
  4572.      class="price__compare-at visible"
  4573.      data-price-compare-container
  4574.    >
  4575.  
  4576.      
  4577.        <span class="money price__original" data-price-original></span>
  4578.      
  4579.    </div>
  4580.  
  4581.  
  4582.    
  4583.      
  4584.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4585.        
  4586.          <span class="visually-hidden">Original price</span>
  4587.          <span class="money price__compare-at--min" data-price-compare-min>
  4588.            $115.98
  4589.          </span>
  4590.          -
  4591.          <span class="visually-hidden">Original price</span>
  4592.          <span class="money price__compare-at--max" data-price-compare-max>
  4593.            $115.98
  4594.          </span>
  4595.        
  4596.      </div>
  4597.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4598.        <span class="visually-hidden">Original price</span>
  4599.        <span class="money price__compare-at--single" data-price-compare>
  4600.          
  4601.        </span>
  4602.      </div>
  4603.    
  4604.  
  4605.  
  4606.  <div class="price__current price__current--emphasize " data-price-container>
  4607.  
  4608.    
  4609.  
  4610.    
  4611.      
  4612.      
  4613.      <span class="money" data-price>
  4614.        $115.98
  4615.      </span>
  4616.    
  4617.    
  4618.  </div>
  4619.  
  4620.  
  4621.    
  4622.    <div class="price__current--hidden" data-current-price-range-hidden>
  4623.      
  4624.        <span class="money price__current--min" data-price-min>$115.98</span>
  4625.        -
  4626.        <span class="money price__current--max" data-price-max>$115.98</span>
  4627.      
  4628.    </div>
  4629.    <div class="price__current--hidden" data-current-price-hidden>
  4630.      <span class="visually-hidden">Current price</span>
  4631.      <span class="money" data-price>
  4632.        $115.98
  4633.      </span>
  4634.    </div>
  4635.  
  4636.  
  4637.  
  4638.    
  4639.    
  4640.    
  4641.    
  4642.  
  4643.    <div
  4644.      class="
  4645.        productitem__unit-price
  4646.        hidden
  4647.      "
  4648.      data-unit-price
  4649.    >
  4650.      <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>
  4651.    </div>
  4652.  
  4653.  
  4654.  
  4655. </div>
  4656.  
  4657.  
  4658.        
  4659.  
  4660.        <h2 class="productitem--title">
  4661.          <a href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen" data-product-page-link>
  4662.            14 Lcd Screen for Dell Latitude 7480 7490 Laptops - FHD Only B140HAN03.3 KW8T4
  4663.          </a>
  4664.        </h2>
  4665.  
  4666.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  4667.        <div class="star_container 3959626498135"></div>
  4668.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  4669.  
  4670.        
  4671.          
  4672.            <span class="productitem--vendor">
  4673.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  4674.            </span>
  4675.          
  4676.        
  4677.  
  4678.        
  4679.  
  4680.        
  4681.          
  4682.            <div class="productitem__stock-level">
  4683.              <!--
  4684.  
  4685.  
  4686.  
  4687.  
  4688.  
  4689.  
  4690.  
  4691. <div class="product-stock-level-wrapper" >
  4692.  
  4693.    <span class="
  4694.  product-stock-level
  4695.  product-stock-level--continue-selling
  4696.  
  4697. ">
  4698.      
  4699.  
  4700.      <span class="product-stock-level__text">
  4701.        
  4702.        <div class="product-stock-level__badge-text">
  4703.          
  4704.  
  4705.    In stock
  4706.  
  4707.  
  4708.        </div>
  4709.      </span>
  4710.    </span>
  4711.  
  4712. </div>
  4713. -->
  4714.              
  4715.  
  4716.  
  4717.    
  4718.      <b style="color:green">In stock</b>
  4719.    
  4720.  
  4721.  
  4722.  
  4723.  
  4724.  
  4725.  
  4726.  
  4727.            </div>
  4728.          
  4729.  
  4730.          
  4731.            
  4732.          
  4733.        
  4734.  
  4735.        
  4736.          <div class="productitem--description">
  4737.            <p>
  4738. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  4739.  
  4740. Compatible Part #s: B140HAN03.3, KW8T4
  4741.  
  4742. Compatible Models:
  4743. Dell Latitude 74...</p>
  4744.  
  4745.            
  4746.              <a
  4747.                href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4748.                class="productitem--link"
  4749.                data-product-page-link
  4750.              >
  4751.                View full details
  4752.              </a>
  4753.            
  4754.          </div>
  4755.        
  4756.      </div>
  4757.  
  4758.      
  4759.        
  4760.          
  4761.          
  4762.          
  4763.  
  4764.          
  4765.          
  4766.  
  4767.          
  4768.  
  4769.          
  4770.  
  4771.          <div class="productitem--actions" data-product-actions>
  4772.            <div class="productitem--listview-price">
  4773.              
  4774.  
  4775.  
  4776.  
  4777.  
  4778.  
  4779.  
  4780.  
  4781.  
  4782.  
  4783.  
  4784.  
  4785.  
  4786.  
  4787.  
  4788.  
  4789.  
  4790.  
  4791.  
  4792.  
  4793.  
  4794.  
  4795.  
  4796.  
  4797.  
  4798.  
  4799.  
  4800.  
  4801.  
  4802.  
  4803.  
  4804. <div class="price productitem__price ">
  4805.  
  4806.    <div
  4807.      class="price__compare-at visible"
  4808.      data-price-compare-container
  4809.    >
  4810.  
  4811.      
  4812.        <span class="money price__original" data-price-original></span>
  4813.      
  4814.    </div>
  4815.  
  4816.  
  4817.    
  4818.      
  4819.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4820.        
  4821.          <span class="visually-hidden">Original price</span>
  4822.          <span class="money price__compare-at--min" data-price-compare-min>
  4823.            $115.98
  4824.          </span>
  4825.          -
  4826.          <span class="visually-hidden">Original price</span>
  4827.          <span class="money price__compare-at--max" data-price-compare-max>
  4828.            $115.98
  4829.          </span>
  4830.        
  4831.      </div>
  4832.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4833.        <span class="visually-hidden">Original price</span>
  4834.        <span class="money price__compare-at--single" data-price-compare>
  4835.          
  4836.        </span>
  4837.      </div>
  4838.    
  4839.  
  4840.  
  4841.  <div class="price__current price__current--emphasize " data-price-container>
  4842.  
  4843.    
  4844.  
  4845.    
  4846.      
  4847.      
  4848.      <span class="money" data-price>
  4849.        $115.98
  4850.      </span>
  4851.    
  4852.    
  4853.  </div>
  4854.  
  4855.  
  4856.    
  4857.    <div class="price__current--hidden" data-current-price-range-hidden>
  4858.      
  4859.        <span class="money price__current--min" data-price-min>$115.98</span>
  4860.        -
  4861.        <span class="money price__current--max" data-price-max>$115.98</span>
  4862.      
  4863.    </div>
  4864.    <div class="price__current--hidden" data-current-price-hidden>
  4865.      <span class="visually-hidden">Current price</span>
  4866.      <span class="money" data-price>
  4867.        $115.98
  4868.      </span>
  4869.    </div>
  4870.  
  4871.  
  4872.  
  4873.    
  4874.    
  4875.    
  4876.    
  4877.  
  4878.    <div
  4879.      class="
  4880.        productitem__unit-price
  4881.        hidden
  4882.      "
  4883.      data-unit-price
  4884.    >
  4885.      <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>
  4886.    </div>
  4887.  
  4888.  
  4889.  
  4890. </div>
  4891.  
  4892.  
  4893.            </div>
  4894.  
  4895.            <div class="productitem--listview-badge">
  4896.              
  4897.  
  4898.  
  4899.  
  4900.  
  4901.  
  4902.  
  4903.  
  4904.  
  4905.  
  4906.  
  4907.  
  4908.  
  4909.  
  4910.  
  4911.  
  4912.  
  4913.  
  4914.  
  4915.  
  4916.  
  4917.  
  4918.  
  4919.  
  4920.  
  4921.  
  4922.  
  4923.  
  4924.            </div>
  4925.  
  4926.            
  4927.              <div
  4928.                class="
  4929.                  productitem--action
  4930.                  quickshop-button
  4931.                  
  4932.                "
  4933.              >
  4934.                <button
  4935.                  class="productitem--action-trigger button-secondary"
  4936.                  data-quickshop-full
  4937.                  
  4938.                  
  4939.                  type="button"
  4940.                >
  4941.                  Quick shop
  4942.                </button>
  4943.              </div>
  4944.            
  4945.  
  4946.            
  4947.              <div
  4948.                class="
  4949.                  productitem--action
  4950.                  atc--button
  4951.                  
  4952.                "
  4953.              >
  4954.                <button
  4955.                  class="productitem--action-trigger productitem--action-atc button-primary"
  4956.                  type="button"
  4957.                  aria-label="Add to cart"
  4958.                  
  4959.                    data-quick-buy
  4960.                  
  4961.                  data-variant-id="29564289744983"
  4962.                  
  4963.                >
  4964.                  <span class="atc-button--text">
  4965.                    Add to cart
  4966.                  </span>
  4967.                  <span class="atc-button--icon"><svg
  4968.  aria-hidden="true"
  4969.  focusable="false"
  4970.  role="presentation"
  4971.  width="26"
  4972.  height="26"
  4973.  viewBox="0 0 26 26"
  4974.  xmlns="http://www.w3.org/2000/svg"
  4975. >
  4976.  <g fill-rule="nonzero" fill="currentColor">
  4977.    <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"/>
  4978.  </g>
  4979. </svg></span>
  4980.                </button>
  4981.              </div>
  4982.            
  4983.          </div>
  4984.        
  4985.      
  4986.    </div>
  4987.  </div>
  4988.  
  4989.  
  4990.    <script type="application/json" data-quick-buy-settings>
  4991.      {
  4992.        "cart_redirection": true,
  4993.        "money_format": "${{amount}}"
  4994.      }
  4995.    </script>
  4996.  
  4997. </li>
  4998.    
  4999.      
  5000.  
  5001.  
  5002.  
  5003.  
  5004.  
  5005.  
  5006.  
  5007.  
  5008.  
  5009.  
  5010.  
  5011.  
  5012.  
  5013.  
  5014.  
  5015.  
  5016.  
  5017.  
  5018.  
  5019.  
  5020.  
  5021.  
  5022.  
  5023.  
  5024.  
  5025.  
  5026.  
  5027.  
  5028.  
  5029.  
  5030.  
  5031.  
  5032.    
  5033.  
  5034.  
  5035.  
  5036. <li
  5037.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  5038.  data-product-item
  5039.  data-product-quickshop-url="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5040.  
  5041. >
  5042.  <div class="productitem" data-product-item-content>
  5043.    
  5044.    
  5045.    
  5046.    
  5047.  
  5048.    
  5049.  
  5050.    
  5051.  
  5052.    <div class="productitem__container">
  5053.      
  5054.  
  5055.      <div class="productitem__image-container">
  5056.        <a target="_blank"
  5057.          class="productitem--image-link"
  5058.          href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5059.          aria-label="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5060.          tabindex="-1"
  5061.          data-product-page-link
  5062.        >
  5063.          <figure
  5064.            class="productitem--image"
  5065.            data-product-item-image
  5066.            
  5067.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5068.            
  5069.          >
  5070.            
  5071.              
  5072.              
  5073.  
  5074.  
  5075.    <noscript data-rimg-noscript>
  5076.      <img loading="lazy"
  5077.        
  5078.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5079.        
  5080.  
  5081.        alt=""
  5082.        data-rimg="noscript"
  5083.        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"
  5084.        class="productitem--image-primary"
  5085.        
  5086.        
  5087.      >
  5088.    </noscript>
  5089.  
  5090.  
  5091.  <img loading="lazy"
  5092.    
  5093.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5094.    
  5095.    alt=""
  5096.  
  5097.    
  5098.      data-rimg="lazy"
  5099.      data-rimg-scale="1"
  5100.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_{size}.jpg?v=1648053872"
  5101.      data-rimg-max="600x600"
  5102.      data-rimg-crop="false"
  5103.      
  5104.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  5105.    
  5106.  
  5107.    class="productitem--image-primary"
  5108.    
  5109.    
  5110.  >
  5111.  
  5112.  
  5113.  
  5114.  <div data-rimg-canvas></div>
  5115.  
  5116.  
  5117.            
  5118.  
  5119.            
  5120.  
  5121.  
  5122.  
  5123.  
  5124.  
  5125.  
  5126.  
  5127.  
  5128.  
  5129.  
  5130.  
  5131.  
  5132.  
  5133.  
  5134.  
  5135.  
  5136.  
  5137.  
  5138.  
  5139.  
  5140.  
  5141.  
  5142.  
  5143.  
  5144.  
  5145.  
  5146.  
  5147.          </figure>
  5148.        </a>
  5149.      </div><div class="productitem--info">
  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.  
  5177.  
  5178.  
  5179.  
  5180.  
  5181.  
  5182.  
  5183.  
  5184.  
  5185.  
  5186.  
  5187. <div class="price productitem__price ">
  5188.  
  5189.    <div
  5190.      class="price__compare-at visible"
  5191.      data-price-compare-container
  5192.    >
  5193.  
  5194.      
  5195.        <span class="money price__original" data-price-original></span>
  5196.      
  5197.    </div>
  5198.  
  5199.  
  5200.    
  5201.      
  5202.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5203.        
  5204.          <span class="visually-hidden">Original price</span>
  5205.          <span class="money price__compare-at--min" data-price-compare-min>
  5206.            $90.99
  5207.          </span>
  5208.          -
  5209.          <span class="visually-hidden">Original price</span>
  5210.          <span class="money price__compare-at--max" data-price-compare-max>
  5211.            $90.99
  5212.          </span>
  5213.        
  5214.      </div>
  5215.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5216.        <span class="visually-hidden">Original price</span>
  5217.        <span class="money price__compare-at--single" data-price-compare>
  5218.          
  5219.        </span>
  5220.      </div>
  5221.    
  5222.  
  5223.  
  5224.  <div class="price__current price__current--emphasize " data-price-container>
  5225.  
  5226.    
  5227.  
  5228.    
  5229.      
  5230.      
  5231.      <span class="money" data-price>
  5232.        $90.99
  5233.      </span>
  5234.    
  5235.    
  5236.  </div>
  5237.  
  5238.  
  5239.    
  5240.    <div class="price__current--hidden" data-current-price-range-hidden>
  5241.      
  5242.        <span class="money price__current--min" data-price-min>$90.99</span>
  5243.        -
  5244.        <span class="money price__current--max" data-price-max>$90.99</span>
  5245.      
  5246.    </div>
  5247.    <div class="price__current--hidden" data-current-price-hidden>
  5248.      <span class="visually-hidden">Current price</span>
  5249.      <span class="money" data-price>
  5250.        $90.99
  5251.      </span>
  5252.    </div>
  5253.  
  5254.  
  5255.  
  5256.    
  5257.    
  5258.    
  5259.    
  5260.  
  5261.    <div
  5262.      class="
  5263.        productitem__unit-price
  5264.        hidden
  5265.      "
  5266.      data-unit-price
  5267.    >
  5268.      <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>
  5269.    </div>
  5270.  
  5271.  
  5272.  
  5273. </div>
  5274.  
  5275.  
  5276.        
  5277.  
  5278.        <h2 class="productitem--title">
  5279.          <a href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  5280.            20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  5281.          </a>
  5282.        </h2>
  5283.  
  5284.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5285.        <div class="star_container 3483510112343"></div>
  5286.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5287.  
  5288.        
  5289.          
  5290.            <span class="productitem--vendor">
  5291.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  5292.            </span>
  5293.          
  5294.        
  5295.  
  5296.        
  5297.  
  5298.        
  5299.          
  5300.            <div class="productitem__stock-level">
  5301.              <!--
  5302.  
  5303.  
  5304.  
  5305.  
  5306.  
  5307.  
  5308.  
  5309. <div class="product-stock-level-wrapper" >
  5310.  
  5311.    <span class="
  5312.  product-stock-level
  5313.  product-stock-level--continue-selling
  5314.  
  5315. ">
  5316.      
  5317.  
  5318.      <span class="product-stock-level__text">
  5319.        
  5320.        <div class="product-stock-level__badge-text">
  5321.          
  5322.  
  5323.    In stock
  5324.  
  5325.  
  5326.        </div>
  5327.      </span>
  5328.    </span>
  5329.  
  5330. </div>
  5331. -->
  5332.              
  5333.  
  5334.  
  5335.    
  5336.      <b style="color:green">In stock</b>
  5337.    
  5338.  
  5339.  
  5340.  
  5341.  
  5342.  
  5343.  
  5344.  
  5345.            </div>
  5346.          
  5347.  
  5348.          
  5349.            
  5350.          
  5351.        
  5352.  
  5353.        
  5354.          <div class="productitem--description">
  5355.            <p>Plugs directly into AC outlet.
  5356.  
  5357. Input: 100-240V ~ 50-60Hz
  5358. Output: 12V – 1.5A 18W
  5359. Connector Tip: mini USB
  5360. Colour: Black
  5361.  
  5362. Compatible Part #s: KP.01...</p>
  5363.  
  5364.            
  5365.              <a
  5366.                href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5367.                class="productitem--link"
  5368.                data-product-page-link
  5369.              >
  5370.                View full details
  5371.              </a>
  5372.            
  5373.          </div>
  5374.        
  5375.      </div>
  5376.  
  5377.      
  5378.        
  5379.          
  5380.          
  5381.          
  5382.  
  5383.          
  5384.          
  5385.  
  5386.          
  5387.  
  5388.          
  5389.  
  5390.          <div class="productitem--actions" data-product-actions>
  5391.            <div class="productitem--listview-price">
  5392.              
  5393.  
  5394.  
  5395.  
  5396.  
  5397.  
  5398.  
  5399.  
  5400.  
  5401.  
  5402.  
  5403.  
  5404.  
  5405.  
  5406.  
  5407.  
  5408.  
  5409.  
  5410.  
  5411.  
  5412.  
  5413.  
  5414.  
  5415.  
  5416.  
  5417.  
  5418.  
  5419.  
  5420.  
  5421.  
  5422.  
  5423. <div class="price productitem__price ">
  5424.  
  5425.    <div
  5426.      class="price__compare-at visible"
  5427.      data-price-compare-container
  5428.    >
  5429.  
  5430.      
  5431.        <span class="money price__original" data-price-original></span>
  5432.      
  5433.    </div>
  5434.  
  5435.  
  5436.    
  5437.      
  5438.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5439.        
  5440.          <span class="visually-hidden">Original price</span>
  5441.          <span class="money price__compare-at--min" data-price-compare-min>
  5442.            $90.99
  5443.          </span>
  5444.          -
  5445.          <span class="visually-hidden">Original price</span>
  5446.          <span class="money price__compare-at--max" data-price-compare-max>
  5447.            $90.99
  5448.          </span>
  5449.        
  5450.      </div>
  5451.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5452.        <span class="visually-hidden">Original price</span>
  5453.        <span class="money price__compare-at--single" data-price-compare>
  5454.          
  5455.        </span>
  5456.      </div>
  5457.    
  5458.  
  5459.  
  5460.  <div class="price__current price__current--emphasize " data-price-container>
  5461.  
  5462.    
  5463.  
  5464.    
  5465.      
  5466.      
  5467.      <span class="money" data-price>
  5468.        $90.99
  5469.      </span>
  5470.    
  5471.    
  5472.  </div>
  5473.  
  5474.  
  5475.    
  5476.    <div class="price__current--hidden" data-current-price-range-hidden>
  5477.      
  5478.        <span class="money price__current--min" data-price-min>$90.99</span>
  5479.        -
  5480.        <span class="money price__current--max" data-price-max>$90.99</span>
  5481.      
  5482.    </div>
  5483.    <div class="price__current--hidden" data-current-price-hidden>
  5484.      <span class="visually-hidden">Current price</span>
  5485.      <span class="money" data-price>
  5486.        $90.99
  5487.      </span>
  5488.    </div>
  5489.  
  5490.  
  5491.  
  5492.    
  5493.    
  5494.    
  5495.    
  5496.  
  5497.    <div
  5498.      class="
  5499.        productitem__unit-price
  5500.        hidden
  5501.      "
  5502.      data-unit-price
  5503.    >
  5504.      <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>
  5505.    </div>
  5506.  
  5507.  
  5508.  
  5509. </div>
  5510.  
  5511.  
  5512.            </div>
  5513.  
  5514.            <div class="productitem--listview-badge">
  5515.              
  5516.  
  5517.  
  5518.  
  5519.  
  5520.  
  5521.  
  5522.  
  5523.  
  5524.  
  5525.  
  5526.  
  5527.  
  5528.  
  5529.  
  5530.  
  5531.  
  5532.  
  5533.  
  5534.  
  5535.  
  5536.  
  5537.  
  5538.  
  5539.  
  5540.  
  5541.  
  5542.  
  5543.            </div>
  5544.  
  5545.            
  5546.              <div
  5547.                class="
  5548.                  productitem--action
  5549.                  quickshop-button
  5550.                  
  5551.                "
  5552.              >
  5553.                <button
  5554.                  class="productitem--action-trigger button-secondary"
  5555.                  data-quickshop-full
  5556.                  
  5557.                  
  5558.                  type="button"
  5559.                >
  5560.                  Quick shop
  5561.                </button>
  5562.              </div>
  5563.            
  5564.  
  5565.            
  5566.              <div
  5567.                class="
  5568.                  productitem--action
  5569.                  atc--button
  5570.                  
  5571.                "
  5572.              >
  5573.                <button
  5574.                  class="productitem--action-trigger productitem--action-atc button-primary"
  5575.                  type="button"
  5576.                  aria-label="Add to cart"
  5577.                  
  5578.                    data-quick-buy
  5579.                  
  5580.                  data-variant-id="39666212798551"
  5581.                  
  5582.                >
  5583.                  <span class="atc-button--text">
  5584.                    Add to cart
  5585.                  </span>
  5586.                  <span class="atc-button--icon"><svg
  5587.  aria-hidden="true"
  5588.  focusable="false"
  5589.  role="presentation"
  5590.  width="26"
  5591.  height="26"
  5592.  viewBox="0 0 26 26"
  5593.  xmlns="http://www.w3.org/2000/svg"
  5594. >
  5595.  <g fill-rule="nonzero" fill="currentColor">
  5596.    <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"/>
  5597.  </g>
  5598. </svg></span>
  5599.                </button>
  5600.              </div>
  5601.            
  5602.          </div>
  5603.        
  5604.      
  5605.    </div>
  5606.  </div>
  5607.  
  5608.  
  5609.    <script type="application/json" data-quick-buy-settings>
  5610.      {
  5611.        "cart_redirection": true,
  5612.        "money_format": "${{amount}}"
  5613.      }
  5614.    </script>
  5615.  
  5616. </li>
  5617.    
  5618.      
  5619.  
  5620.  
  5621.  
  5622.  
  5623.  
  5624.  
  5625.  
  5626.  
  5627.  
  5628.  
  5629.  
  5630.  
  5631.  
  5632.  
  5633.  
  5634.  
  5635.  
  5636.  
  5637.  
  5638.  
  5639.    
  5640.    
  5641.  
  5642.  
  5643.  
  5644.  
  5645.  
  5646.  
  5647.  
  5648.  
  5649.  
  5650.  
  5651.  
  5652.    
  5653.  
  5654.  
  5655.  
  5656. <li
  5657.  class="productgrid--item  imagestyle--natural    productitem--sale  productitem--emphasis      show-actions--mobile"
  5658.  data-product-item
  5659.  data-product-quickshop-url="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5660.  
  5661. >
  5662.  <div class="productitem" data-product-item-content>
  5663.    
  5664.    
  5665.    
  5666.    
  5667.  
  5668.    
  5669.  
  5670.    
  5671.  
  5672.    <div class="productitem__container">
  5673.      
  5674.  
  5675.      <div class="productitem__image-container">
  5676.        <a target="_blank"
  5677.          class="productitem--image-link"
  5678.          href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5679.          aria-label="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5680.          tabindex="-1"
  5681.          data-product-page-link
  5682.        >
  5683.          <figure
  5684.            class="productitem--image"
  5685.            data-product-item-image
  5686.            
  5687.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5688.            
  5689.          >
  5690.            
  5691.              
  5692.              
  5693.  
  5694.  
  5695.    <noscript data-rimg-noscript>
  5696.      <img loading="lazy"
  5697.        
  5698.          src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  5699.        
  5700.  
  5701.        alt="B156HTN03.6"
  5702.        data-rimg="noscript"
  5703.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945 1x"
  5704.        class="productitem--image-primary"
  5705.        
  5706.        
  5707.      >
  5708.    </noscript>
  5709.  
  5710.  
  5711.  <img loading="lazy"
  5712.    
  5713.      src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  5714.    
  5715.    alt="B156HTN03.6"
  5716.  
  5717.    
  5718.      data-rimg="lazy"
  5719.      data-rimg-scale="1"
  5720.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_{size}.jpg?v=1725475945"
  5721.      data-rimg-max="500x500"
  5722.      data-rimg-crop="false"
  5723.      
  5724.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  5725.    
  5726.  
  5727.    class="productitem--image-primary"
  5728.    
  5729.    
  5730.  >
  5731.  
  5732.  
  5733.  
  5734.  <div data-rimg-canvas></div>
  5735.  
  5736.  
  5737.            
  5738.  
  5739.            
  5740.  
  5741.  
  5742.  
  5743.  
  5744.  
  5745.  
  5746.  
  5747.  
  5748.  
  5749.  
  5750.  
  5751.  
  5752.  
  5753.  
  5754.  
  5755.  
  5756.  
  5757.  
  5758.  
  5759.  
  5760.  
  5761.  
  5762.  
  5763.  
  5764.  
  5765.  
  5766.  
  5767.  
  5768.  
  5769.  
  5770.  
  5771.  <span class="productitem__badge productitem__badge--sale"
  5772.    data-badge-sales
  5773.    
  5774.  >
  5775.    <span data-badge-sales-range>
  5776.      
  5777.        
  5778.          Save <span data-price-percent-saved>28</span>%
  5779.        
  5780.      
  5781.    </span>
  5782.    <span data-badge-sales-single style="display: none;">
  5783.      
  5784.        Save <span data-price-percent-saved></span>%
  5785.      
  5786.    </span>
  5787.  </span>
  5788.          </figure>
  5789.        </a>
  5790.      </div><div class="productitem--info">
  5791.        
  5792.          
  5793.  
  5794.        
  5795.  
  5796.        
  5797.          
  5798.  
  5799.  
  5800.  
  5801.  
  5802.  
  5803.  
  5804.  
  5805.  
  5806.  
  5807.  
  5808.  
  5809.  
  5810.  
  5811.  
  5812.  
  5813.  
  5814.  
  5815.  
  5816.  
  5817.  
  5818.  
  5819.  
  5820.  
  5821.  
  5822.  
  5823.  
  5824.  
  5825.  
  5826.  
  5827.  
  5828. <div class="price productitem__price ">
  5829.  
  5830.    <div
  5831.      class="price__compare-at visible"
  5832.      data-price-compare-container
  5833.    >
  5834.  
  5835.      
  5836.        <span class="visually-hidden">Original price</span>
  5837.        <span class="money price__compare-at--single" data-price-compare>
  5838.          $147.99
  5839.        </span>
  5840.      
  5841.    </div>
  5842.  
  5843.  
  5844.    
  5845.      
  5846.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5847.        
  5848.          <span class="visually-hidden">Original price</span>
  5849.          <span class="money price__compare-at--min" data-price-compare-min>
  5850.            $147.99
  5851.          </span>
  5852.          -
  5853.          <span class="visually-hidden">Original price</span>
  5854.          <span class="money price__compare-at--max" data-price-compare-max>
  5855.            $147.99
  5856.          </span>
  5857.        
  5858.      </div>
  5859.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5860.        <span class="visually-hidden">Original price</span>
  5861.        <span class="money price__compare-at--single" data-price-compare>
  5862.          $147.99
  5863.        </span>
  5864.      </div>
  5865.    
  5866.  
  5867.  
  5868.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  5869.  
  5870.    
  5871.  
  5872.    
  5873.      
  5874.      
  5875.        <span class="visually-hidden">Current price</span>
  5876.      
  5877.      <span class="money" data-price>
  5878.        $105.98
  5879.      </span>
  5880.    
  5881.    
  5882.  </div>
  5883.  
  5884.  
  5885.    
  5886.    <div class="price__current--hidden" data-current-price-range-hidden>
  5887.      
  5888.        <span class="money price__current--min" data-price-min>$105.98</span>
  5889.        -
  5890.        <span class="money price__current--max" data-price-max>$105.98</span>
  5891.      
  5892.    </div>
  5893.    <div class="price__current--hidden" data-current-price-hidden>
  5894.      <span class="visually-hidden">Current price</span>
  5895.      <span class="money" data-price>
  5896.        $105.98
  5897.      </span>
  5898.    </div>
  5899.  
  5900.  
  5901.  
  5902.    
  5903.    
  5904.    
  5905.    
  5906.  
  5907.    <div
  5908.      class="
  5909.        productitem__unit-price
  5910.        hidden
  5911.      "
  5912.      data-unit-price
  5913.    >
  5914.      <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>
  5915.    </div>
  5916.  
  5917.  
  5918.  
  5919. </div>
  5920.  
  5921.  
  5922.        
  5923.  
  5924.        <h2 class="productitem--title">
  5925.          <a href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops" data-product-page-link>
  5926.            15.6 FHD 1920x1080 Lcd Led Screen Lenovo Y50-70 Laptops B156HTN03.6
  5927.          </a>
  5928.        </h2>
  5929.  
  5930.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5931.        <div class="star_container 3929811353687"></div>
  5932.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5933.  
  5934.        
  5935.          
  5936.            <span class="productitem--vendor">
  5937.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  5938.            </span>
  5939.          
  5940.        
  5941.  
  5942.        
  5943.  
  5944.        
  5945.          
  5946.            <div class="productitem__stock-level">
  5947.              <!--
  5948.  
  5949.  
  5950.  
  5951.  
  5952.  
  5953.  
  5954.  
  5955. <div class="product-stock-level-wrapper" >
  5956.  
  5957.    <span class="
  5958.  product-stock-level
  5959.  product-stock-level--continue-selling
  5960.  
  5961. ">
  5962.      
  5963.  
  5964.      <span class="product-stock-level__text">
  5965.        
  5966.        <div class="product-stock-level__badge-text">
  5967.          
  5968.  
  5969.    In stock
  5970.  
  5971.  
  5972.        </div>
  5973.      </span>
  5974.    </span>
  5975.  
  5976. </div>
  5977. -->
  5978.              
  5979.  
  5980.  
  5981.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  5982.  
  5983.  
  5984.  
  5985.  
  5986.            </div>
  5987.          
  5988.  
  5989.          
  5990.            
  5991.          
  5992.        
  5993.  
  5994.        
  5995.          <div class="productitem--description">
  5996.            <p>
  5997. 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>
  5998.  
  5999.            
  6000.              <a
  6001.                href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  6002.                class="productitem--link"
  6003.                data-product-page-link
  6004.              >
  6005.                View full details
  6006.              </a>
  6007.            
  6008.          </div>
  6009.        
  6010.      </div>
  6011.  
  6012.      
  6013.        
  6014.          
  6015.          
  6016.          
  6017.  
  6018.          
  6019.          
  6020.  
  6021.          
  6022.  
  6023.          
  6024.  
  6025.          <div class="productitem--actions" data-product-actions>
  6026.            <div class="productitem--listview-price">
  6027.              
  6028.  
  6029.  
  6030.  
  6031.  
  6032.  
  6033.  
  6034.  
  6035.  
  6036.  
  6037.  
  6038.  
  6039.  
  6040.  
  6041.  
  6042.  
  6043.  
  6044.  
  6045.  
  6046.  
  6047.  
  6048.  
  6049.  
  6050.  
  6051.  
  6052.  
  6053.  
  6054.  
  6055.  
  6056.  
  6057.  
  6058. <div class="price productitem__price ">
  6059.  
  6060.    <div
  6061.      class="price__compare-at visible"
  6062.      data-price-compare-container
  6063.    >
  6064.  
  6065.      
  6066.        <span class="visually-hidden">Original price</span>
  6067.        <span class="money price__compare-at--single" data-price-compare>
  6068.          $147.99
  6069.        </span>
  6070.      
  6071.    </div>
  6072.  
  6073.  
  6074.    
  6075.      
  6076.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6077.        
  6078.          <span class="visually-hidden">Original price</span>
  6079.          <span class="money price__compare-at--min" data-price-compare-min>
  6080.            $147.99
  6081.          </span>
  6082.          -
  6083.          <span class="visually-hidden">Original price</span>
  6084.          <span class="money price__compare-at--max" data-price-compare-max>
  6085.            $147.99
  6086.          </span>
  6087.        
  6088.      </div>
  6089.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6090.        <span class="visually-hidden">Original price</span>
  6091.        <span class="money price__compare-at--single" data-price-compare>
  6092.          $147.99
  6093.        </span>
  6094.      </div>
  6095.    
  6096.  
  6097.  
  6098.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  6099.  
  6100.    
  6101.  
  6102.    
  6103.      
  6104.      
  6105.        <span class="visually-hidden">Current price</span>
  6106.      
  6107.      <span class="money" data-price>
  6108.        $105.98
  6109.      </span>
  6110.    
  6111.    
  6112.  </div>
  6113.  
  6114.  
  6115.    
  6116.    <div class="price__current--hidden" data-current-price-range-hidden>
  6117.      
  6118.        <span class="money price__current--min" data-price-min>$105.98</span>
  6119.        -
  6120.        <span class="money price__current--max" data-price-max>$105.98</span>
  6121.      
  6122.    </div>
  6123.    <div class="price__current--hidden" data-current-price-hidden>
  6124.      <span class="visually-hidden">Current price</span>
  6125.      <span class="money" data-price>
  6126.        $105.98
  6127.      </span>
  6128.    </div>
  6129.  
  6130.  
  6131.  
  6132.    
  6133.    
  6134.    
  6135.    
  6136.  
  6137.    <div
  6138.      class="
  6139.        productitem__unit-price
  6140.        hidden
  6141.      "
  6142.      data-unit-price
  6143.    >
  6144.      <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>
  6145.    </div>
  6146.  
  6147.  
  6148.  
  6149. </div>
  6150.  
  6151.  
  6152.            </div>
  6153.  
  6154.            <div class="productitem--listview-badge">
  6155.              
  6156.  
  6157.  
  6158.  
  6159.  
  6160.  
  6161.  
  6162.  
  6163.  
  6164.  
  6165.  
  6166.  
  6167.  
  6168.  
  6169.  
  6170.  
  6171.  
  6172.  
  6173.  
  6174.  
  6175.  
  6176.  
  6177.  
  6178.  
  6179.  
  6180.  
  6181.  
  6182.  
  6183.  
  6184.  
  6185.  
  6186.  
  6187.  <span class="productitem__badge productitem__badge--sale"
  6188.    data-badge-sales
  6189.    
  6190.  >
  6191.    <span data-badge-sales-range>
  6192.      
  6193.        
  6194.          Save <span data-price-percent-saved>28</span>%
  6195.        
  6196.      
  6197.    </span>
  6198.    <span data-badge-sales-single style="display: none;">
  6199.      
  6200.        Save <span data-price-percent-saved></span>%
  6201.      
  6202.    </span>
  6203.  </span>
  6204.            </div>
  6205.  
  6206.            
  6207.              <div
  6208.                class="
  6209.                  productitem--action
  6210.                  quickshop-button
  6211.                  
  6212.                "
  6213.              >
  6214.                <button
  6215.                  class="productitem--action-trigger button-secondary"
  6216.                  data-quickshop-full
  6217.                  
  6218.                  
  6219.                  type="button"
  6220.                >
  6221.                  Quick shop
  6222.                </button>
  6223.              </div>
  6224.            
  6225.  
  6226.            
  6227.              <div
  6228.                class="
  6229.                  productitem--action
  6230.                  atc--button
  6231.                  
  6232.                "
  6233.              >
  6234.                <button
  6235.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6236.                  type="button"
  6237.                  aria-label="Add to cart"
  6238.                  
  6239.                    data-quick-buy
  6240.                  
  6241.                  data-variant-id="29564283551831"
  6242.                  
  6243.                >
  6244.                  <span class="atc-button--text">
  6245.                    Add to cart
  6246.                  </span>
  6247.                  <span class="atc-button--icon"><svg
  6248.  aria-hidden="true"
  6249.  focusable="false"
  6250.  role="presentation"
  6251.  width="26"
  6252.  height="26"
  6253.  viewBox="0 0 26 26"
  6254.  xmlns="http://www.w3.org/2000/svg"
  6255. >
  6256.  <g fill-rule="nonzero" fill="currentColor">
  6257.    <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"/>
  6258.  </g>
  6259. </svg></span>
  6260.                </button>
  6261.              </div>
  6262.            
  6263.          </div>
  6264.        
  6265.      
  6266.    </div>
  6267.  </div>
  6268.  
  6269.  
  6270.    <script type="application/json" data-quick-buy-settings>
  6271.      {
  6272.        "cart_redirection": true,
  6273.        "money_format": "${{amount}}"
  6274.      }
  6275.    </script>
  6276.  
  6277. </li>
  6278.    
  6279.      
  6280.  
  6281.  
  6282.  
  6283.  
  6284.  
  6285.  
  6286.  
  6287.  
  6288.  
  6289.  
  6290.  
  6291.  
  6292.  
  6293.  
  6294.  
  6295.  
  6296.  
  6297.  
  6298.  
  6299.  
  6300.  
  6301.  
  6302.  
  6303.  
  6304.  
  6305.  
  6306.  
  6307.  
  6308.  
  6309.  
  6310.  
  6311.  
  6312.    
  6313.  
  6314.  
  6315.  
  6316. <li
  6317.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6318.  data-product-item
  6319.  data-product-quickshop-url="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6320.  
  6321. >
  6322.  <div class="productitem" data-product-item-content>
  6323.    
  6324.    
  6325.    
  6326.    
  6327.  
  6328.    
  6329.  
  6330.    
  6331.  
  6332.    <div class="productitem__container">
  6333.      
  6334.  
  6335.      <div class="productitem__image-container">
  6336.        <a target="_blank"
  6337.          class="productitem--image-link"
  6338.          href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6339.          aria-label="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6340.          tabindex="-1"
  6341.          data-product-page-link
  6342.        >
  6343.          <figure
  6344.            class="productitem--image"
  6345.            data-product-item-image
  6346.            
  6347.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6348.            
  6349.          >
  6350.            
  6351.              
  6352.              
  6353.  
  6354.  
  6355.    <noscript data-rimg-noscript>
  6356.      <img loading="lazy"
  6357.        
  6358.          src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6359.        
  6360.  
  6361.        alt=""
  6362.        data-rimg="noscript"
  6363.        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"
  6364.        class="productitem--image-primary"
  6365.        
  6366.        
  6367.      >
  6368.    </noscript>
  6369.  
  6370.  
  6371.  <img loading="lazy"
  6372.    
  6373.      src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6374.    
  6375.    alt=""
  6376.  
  6377.    
  6378.      data-rimg="lazy"
  6379.      data-rimg-scale="1"
  6380.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_{size}.jpg?v=1648038527"
  6381.      data-rimg-max="1000x1000"
  6382.      data-rimg-crop="false"
  6383.      
  6384.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  6385.    
  6386.  
  6387.    class="productitem--image-primary"
  6388.    
  6389.    
  6390.  >
  6391.  
  6392.  
  6393.  
  6394.  <div data-rimg-canvas></div>
  6395.  
  6396.  
  6397.            
  6398.  
  6399.            
  6400.  
  6401.  
  6402.  
  6403.  
  6404.  
  6405.  
  6406.  
  6407.  
  6408.  
  6409.  
  6410.  
  6411.  
  6412.  
  6413.  
  6414.  
  6415.  
  6416.  
  6417.  
  6418.  
  6419.  
  6420.  
  6421.  
  6422.  
  6423.  
  6424.  
  6425.  
  6426.  
  6427.          </figure>
  6428.        </a>
  6429.      </div><div class="productitem--info">
  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.  
  6457.  
  6458.  
  6459.  
  6460.  
  6461.  
  6462.  
  6463.  
  6464.  
  6465.  
  6466.  
  6467. <div class="price productitem__price ">
  6468.  
  6469.    <div
  6470.      class="price__compare-at visible"
  6471.      data-price-compare-container
  6472.    >
  6473.  
  6474.      
  6475.        <span class="money price__original" data-price-original></span>
  6476.      
  6477.    </div>
  6478.  
  6479.  
  6480.    
  6481.      
  6482.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6483.        
  6484.          <span class="visually-hidden">Original price</span>
  6485.          <span class="money price__compare-at--min" data-price-compare-min>
  6486.            $115.98
  6487.          </span>
  6488.          -
  6489.          <span class="visually-hidden">Original price</span>
  6490.          <span class="money price__compare-at--max" data-price-compare-max>
  6491.            $115.98
  6492.          </span>
  6493.        
  6494.      </div>
  6495.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6496.        <span class="visually-hidden">Original price</span>
  6497.        <span class="money price__compare-at--single" data-price-compare>
  6498.          
  6499.        </span>
  6500.      </div>
  6501.    
  6502.  
  6503.  
  6504.  <div class="price__current price__current--emphasize " data-price-container>
  6505.  
  6506.    
  6507.  
  6508.    
  6509.      
  6510.      
  6511.      <span class="money" data-price>
  6512.        $115.98
  6513.      </span>
  6514.    
  6515.    
  6516.  </div>
  6517.  
  6518.  
  6519.    
  6520.    <div class="price__current--hidden" data-current-price-range-hidden>
  6521.      
  6522.        <span class="money price__current--min" data-price-min>$115.98</span>
  6523.        -
  6524.        <span class="money price__current--max" data-price-max>$115.98</span>
  6525.      
  6526.    </div>
  6527.    <div class="price__current--hidden" data-current-price-hidden>
  6528.      <span class="visually-hidden">Current price</span>
  6529.      <span class="money" data-price>
  6530.        $115.98
  6531.      </span>
  6532.    </div>
  6533.  
  6534.  
  6535.  
  6536.    
  6537.    
  6538.    
  6539.    
  6540.  
  6541.    <div
  6542.      class="
  6543.        productitem__unit-price
  6544.        hidden
  6545.      "
  6546.      data-unit-price
  6547.    >
  6548.      <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>
  6549.    </div>
  6550.  
  6551.  
  6552.  
  6553. </div>
  6554.  
  6555.  
  6556.        
  6557.  
  6558.        <h2 class="productitem--title">
  6559.          <a href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw" data-product-page-link>
  6560.            Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW
  6561.          </a>
  6562.        </h2>
  6563.  
  6564.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  6565.        <div class="star_container 3929789694039"></div>
  6566.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  6567.  
  6568.        
  6569.          
  6570.            <span class="productitem--vendor">
  6571.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  6572.            </span>
  6573.          
  6574.        
  6575.  
  6576.        
  6577.  
  6578.        
  6579.          
  6580.            <div class="productitem__stock-level">
  6581.              <!--
  6582.  
  6583.  
  6584.  
  6585.  
  6586.  
  6587.  
  6588.  
  6589. <div class="product-stock-level-wrapper" >
  6590.  
  6591.    <span class="
  6592.  product-stock-level
  6593.  product-stock-level--continue-selling
  6594.  
  6595. ">
  6596.      
  6597.  
  6598.      <span class="product-stock-level__text">
  6599.        
  6600.        <div class="product-stock-level__badge-text">
  6601.          
  6602.  
  6603.    In stock
  6604.  
  6605.  
  6606.        </div>
  6607.      </span>
  6608.    </span>
  6609.  
  6610. </div>
  6611. -->
  6612.              
  6613.  
  6614.  
  6615.    
  6616.      <b style="color:green">In stock</b>
  6617.    
  6618.  
  6619.  
  6620.  
  6621.  
  6622.  
  6623.  
  6624.  
  6625.            </div>
  6626.          
  6627.  
  6628.          
  6629.            
  6630.          
  6631.        
  6632.  
  6633.        
  6634.          <div class="productitem--description">
  6635.            <p>
  6636. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  6637.  
  6638. Compatible Part #s: KGYYH, 48DGW, N140HCE-G52
  6639.  
  6640. Compatible Models:
  6641. Dell Lati...</p>
  6642.  
  6643.            
  6644.              <a
  6645.                href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6646.                class="productitem--link"
  6647.                data-product-page-link
  6648.              >
  6649.                View full details
  6650.              </a>
  6651.            
  6652.          </div>
  6653.        
  6654.      </div>
  6655.  
  6656.      
  6657.        
  6658.          
  6659.          
  6660.          
  6661.  
  6662.          
  6663.          
  6664.  
  6665.          
  6666.  
  6667.          
  6668.  
  6669.          <div class="productitem--actions" data-product-actions>
  6670.            <div class="productitem--listview-price">
  6671.              
  6672.  
  6673.  
  6674.  
  6675.  
  6676.  
  6677.  
  6678.  
  6679.  
  6680.  
  6681.  
  6682.  
  6683.  
  6684.  
  6685.  
  6686.  
  6687.  
  6688.  
  6689.  
  6690.  
  6691.  
  6692.  
  6693.  
  6694.  
  6695.  
  6696.  
  6697.  
  6698.  
  6699.  
  6700.  
  6701.  
  6702. <div class="price productitem__price ">
  6703.  
  6704.    <div
  6705.      class="price__compare-at visible"
  6706.      data-price-compare-container
  6707.    >
  6708.  
  6709.      
  6710.        <span class="money price__original" data-price-original></span>
  6711.      
  6712.    </div>
  6713.  
  6714.  
  6715.    
  6716.      
  6717.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6718.        
  6719.          <span class="visually-hidden">Original price</span>
  6720.          <span class="money price__compare-at--min" data-price-compare-min>
  6721.            $115.98
  6722.          </span>
  6723.          -
  6724.          <span class="visually-hidden">Original price</span>
  6725.          <span class="money price__compare-at--max" data-price-compare-max>
  6726.            $115.98
  6727.          </span>
  6728.        
  6729.      </div>
  6730.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6731.        <span class="visually-hidden">Original price</span>
  6732.        <span class="money price__compare-at--single" data-price-compare>
  6733.          
  6734.        </span>
  6735.      </div>
  6736.    
  6737.  
  6738.  
  6739.  <div class="price__current price__current--emphasize " data-price-container>
  6740.  
  6741.    
  6742.  
  6743.    
  6744.      
  6745.      
  6746.      <span class="money" data-price>
  6747.        $115.98
  6748.      </span>
  6749.    
  6750.    
  6751.  </div>
  6752.  
  6753.  
  6754.    
  6755.    <div class="price__current--hidden" data-current-price-range-hidden>
  6756.      
  6757.        <span class="money price__current--min" data-price-min>$115.98</span>
  6758.        -
  6759.        <span class="money price__current--max" data-price-max>$115.98</span>
  6760.      
  6761.    </div>
  6762.    <div class="price__current--hidden" data-current-price-hidden>
  6763.      <span class="visually-hidden">Current price</span>
  6764.      <span class="money" data-price>
  6765.        $115.98
  6766.      </span>
  6767.    </div>
  6768.  
  6769.  
  6770.  
  6771.    
  6772.    
  6773.    
  6774.    
  6775.  
  6776.    <div
  6777.      class="
  6778.        productitem__unit-price
  6779.        hidden
  6780.      "
  6781.      data-unit-price
  6782.    >
  6783.      <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>
  6784.    </div>
  6785.  
  6786.  
  6787.  
  6788. </div>
  6789.  
  6790.  
  6791.            </div>
  6792.  
  6793.            <div class="productitem--listview-badge">
  6794.              
  6795.  
  6796.  
  6797.  
  6798.  
  6799.  
  6800.  
  6801.  
  6802.  
  6803.  
  6804.  
  6805.  
  6806.  
  6807.  
  6808.  
  6809.  
  6810.  
  6811.  
  6812.  
  6813.  
  6814.  
  6815.  
  6816.  
  6817.  
  6818.  
  6819.  
  6820.  
  6821.  
  6822.            </div>
  6823.  
  6824.            
  6825.              <div
  6826.                class="
  6827.                  productitem--action
  6828.                  quickshop-button
  6829.                  
  6830.                "
  6831.              >
  6832.                <button
  6833.                  class="productitem--action-trigger button-secondary"
  6834.                  data-quickshop-full
  6835.                  
  6836.                  
  6837.                  type="button"
  6838.                >
  6839.                  Quick shop
  6840.                </button>
  6841.              </div>
  6842.            
  6843.  
  6844.            
  6845.              <div
  6846.                class="
  6847.                  productitem--action
  6848.                  atc--button
  6849.                  
  6850.                "
  6851.              >
  6852.                <button
  6853.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6854.                  type="button"
  6855.                  aria-label="Add to cart"
  6856.                  
  6857.                    data-quick-buy
  6858.                  
  6859.                  data-variant-id="29462328246359"
  6860.                  
  6861.                >
  6862.                  <span class="atc-button--text">
  6863.                    Add to cart
  6864.                  </span>
  6865.                  <span class="atc-button--icon"><svg
  6866.  aria-hidden="true"
  6867.  focusable="false"
  6868.  role="presentation"
  6869.  width="26"
  6870.  height="26"
  6871.  viewBox="0 0 26 26"
  6872.  xmlns="http://www.w3.org/2000/svg"
  6873. >
  6874.  <g fill-rule="nonzero" fill="currentColor">
  6875.    <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"/>
  6876.  </g>
  6877. </svg></span>
  6878.                </button>
  6879.              </div>
  6880.            
  6881.          </div>
  6882.        
  6883.      
  6884.    </div>
  6885.  </div>
  6886.  
  6887.  
  6888.    <script type="application/json" data-quick-buy-settings>
  6889.      {
  6890.        "cart_redirection": true,
  6891.        "money_format": "${{amount}}"
  6892.      }
  6893.    </script>
  6894.  
  6895. </li>
  6896.    
  6897.      
  6898.  
  6899.  
  6900.  
  6901.  
  6902.  
  6903.  
  6904.  
  6905.  
  6906.  
  6907.  
  6908.  
  6909.  
  6910.  
  6911.  
  6912.  
  6913.  
  6914.  
  6915.  
  6916.  
  6917.  
  6918.  
  6919.  
  6920.  
  6921.  
  6922.  
  6923.  
  6924.  
  6925.  
  6926.  
  6927.  
  6928.  
  6929.  
  6930.    
  6931.  
  6932.  
  6933.  
  6934. <li
  6935.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6936.  data-product-item
  6937.  data-product-quickshop-url="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6938.  
  6939. >
  6940.  <div class="productitem" data-product-item-content>
  6941.    
  6942.    
  6943.    
  6944.    
  6945.  
  6946.    
  6947.  
  6948.    
  6949.  
  6950.    <div class="productitem__container">
  6951.      
  6952.  
  6953.      <div class="productitem__image-container">
  6954.        <a target="_blank"
  6955.          class="productitem--image-link"
  6956.          href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6957.          aria-label="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6958.          tabindex="-1"
  6959.          data-product-page-link
  6960.        >
  6961.          <figure
  6962.            class="productitem--image"
  6963.            data-product-item-image
  6964.            
  6965.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6966.            
  6967.          >
  6968.            
  6969.              
  6970.              
  6971.  
  6972.  
  6973.    <noscript data-rimg-noscript>
  6974.      <img loading="lazy"
  6975.        
  6976.          src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  6977.        
  6978.  
  6979.        alt=""
  6980.        data-rimg="noscript"
  6981.        srcset="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251 1x, //laptopparts.ca/cdn/shop/products/molex1_599x599.jpg?v=1697125251 1.17x"
  6982.        class="productitem--image-primary"
  6983.        
  6984.        
  6985.      >
  6986.    </noscript>
  6987.  
  6988.  
  6989.  <img loading="lazy"
  6990.    
  6991.      src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  6992.    
  6993.    alt=""
  6994.  
  6995.    
  6996.      data-rimg="lazy"
  6997.      data-rimg-scale="1"
  6998.      data-rimg-template="//laptopparts.ca/cdn/shop/products/molex1_{size}.jpg?v=1697125251"
  6999.      data-rimg-max="603x603"
  7000.      data-rimg-crop="false"
  7001.      
  7002.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7003.    
  7004.  
  7005.    class="productitem--image-primary"
  7006.    
  7007.    
  7008.  >
  7009.  
  7010.  
  7011.  
  7012.  <div data-rimg-canvas></div>
  7013.  
  7014.  
  7015.            
  7016.  
  7017.            
  7018.  
  7019.  
  7020.  
  7021.  
  7022.  
  7023.  
  7024.  
  7025.  
  7026.  
  7027.  
  7028.  
  7029.  
  7030.  
  7031.  
  7032.  
  7033.  
  7034.  
  7035.  
  7036.  
  7037.  
  7038.  
  7039.  
  7040.  
  7041.  
  7042.  
  7043.  
  7044.  
  7045.          </figure>
  7046.        </a>
  7047.      </div><div class="productitem--info">
  7048.        
  7049.          
  7050.  
  7051.        
  7052.  
  7053.        
  7054.          
  7055.  
  7056.  
  7057.  
  7058.  
  7059.  
  7060.  
  7061.  
  7062.  
  7063.  
  7064.  
  7065.  
  7066.  
  7067.  
  7068.  
  7069.  
  7070.  
  7071.  
  7072.  
  7073.  
  7074.  
  7075.  
  7076.  
  7077.  
  7078.  
  7079.  
  7080.  
  7081.  
  7082.  
  7083.  
  7084.  
  7085. <div class="price productitem__price ">
  7086.  
  7087.    <div
  7088.      class="price__compare-at visible"
  7089.      data-price-compare-container
  7090.    >
  7091.  
  7092.      
  7093.        <span class="money price__original" data-price-original></span>
  7094.      
  7095.    </div>
  7096.  
  7097.  
  7098.    
  7099.      
  7100.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7101.        
  7102.          <span class="visually-hidden">Original price</span>
  7103.          <span class="money price__compare-at--min" data-price-compare-min>
  7104.            $36.99
  7105.          </span>
  7106.          -
  7107.          <span class="visually-hidden">Original price</span>
  7108.          <span class="money price__compare-at--max" data-price-compare-max>
  7109.            $36.99
  7110.          </span>
  7111.        
  7112.      </div>
  7113.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7114.        <span class="visually-hidden">Original price</span>
  7115.        <span class="money price__compare-at--single" data-price-compare>
  7116.          
  7117.        </span>
  7118.      </div>
  7119.    
  7120.  
  7121.  
  7122.  <div class="price__current price__current--emphasize " data-price-container>
  7123.  
  7124.    
  7125.  
  7126.    
  7127.      
  7128.      
  7129.      <span class="money" data-price>
  7130.        $36.99
  7131.      </span>
  7132.    
  7133.    
  7134.  </div>
  7135.  
  7136.  
  7137.    
  7138.    <div class="price__current--hidden" data-current-price-range-hidden>
  7139.      
  7140.        <span class="money price__current--min" data-price-min>$36.99</span>
  7141.        -
  7142.        <span class="money price__current--max" data-price-max>$36.99</span>
  7143.      
  7144.    </div>
  7145.    <div class="price__current--hidden" data-current-price-hidden>
  7146.      <span class="visually-hidden">Current price</span>
  7147.      <span class="money" data-price>
  7148.        $36.99
  7149.      </span>
  7150.    </div>
  7151.  
  7152.  
  7153.  
  7154.    
  7155.    
  7156.    
  7157.    
  7158.  
  7159.    <div
  7160.      class="
  7161.        productitem__unit-price
  7162.        hidden
  7163.      "
  7164.      data-unit-price
  7165.    >
  7166.      <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>
  7167.    </div>
  7168.  
  7169.  
  7170.  
  7171. </div>
  7172.  
  7173.  
  7174.        
  7175.  
  7176.        <h2 class="productitem--title">
  7177.          <a href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable" data-product-page-link>
  7178.            4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable
  7179.          </a>
  7180.        </h2>
  7181.  
  7182.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7183.        <div class="star_container 1416490647575"></div>
  7184.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7185.  
  7186.        
  7187.          
  7188.            <span class="productitem--vendor">
  7189.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  7190.            </span>
  7191.          
  7192.        
  7193.  
  7194.        
  7195.  
  7196.        
  7197.          
  7198.            <div class="productitem__stock-level">
  7199.              <!--
  7200.  
  7201.  
  7202.  
  7203.  
  7204.  
  7205.  
  7206.  
  7207. <div class="product-stock-level-wrapper" >
  7208.  
  7209.    <span class="
  7210.  product-stock-level
  7211.  product-stock-level--continue-selling
  7212.  
  7213. ">
  7214.      
  7215.  
  7216.      <span class="product-stock-level__text">
  7217.        
  7218.        <div class="product-stock-level__badge-text">
  7219.          
  7220.  
  7221.    In stock
  7222.  
  7223.  
  7224.        </div>
  7225.      </span>
  7226.    </span>
  7227.  
  7228. </div>
  7229. -->
  7230.              
  7231.  
  7232.  
  7233.    
  7234.      <b style="color:green">In stock</b>
  7235.    
  7236.  
  7237.  
  7238.  
  7239.  
  7240.  
  7241.  
  7242.  
  7243.            </div>
  7244.          
  7245.  
  7246.          
  7247.            
  7248.          
  7249.        
  7250.  
  7251.        
  7252.          <div class="productitem--description">
  7253.            <p>4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable</p>
  7254.  
  7255.            
  7256.          </div>
  7257.        
  7258.      </div>
  7259.  
  7260.      
  7261.        
  7262.          
  7263.          
  7264.          
  7265.  
  7266.          
  7267.          
  7268.  
  7269.          
  7270.  
  7271.          
  7272.  
  7273.          <div class="productitem--actions" data-product-actions>
  7274.            <div class="productitem--listview-price">
  7275.              
  7276.  
  7277.  
  7278.  
  7279.  
  7280.  
  7281.  
  7282.  
  7283.  
  7284.  
  7285.  
  7286.  
  7287.  
  7288.  
  7289.  
  7290.  
  7291.  
  7292.  
  7293.  
  7294.  
  7295.  
  7296.  
  7297.  
  7298.  
  7299.  
  7300.  
  7301.  
  7302.  
  7303.  
  7304.  
  7305.  
  7306. <div class="price productitem__price ">
  7307.  
  7308.    <div
  7309.      class="price__compare-at visible"
  7310.      data-price-compare-container
  7311.    >
  7312.  
  7313.      
  7314.        <span class="money price__original" data-price-original></span>
  7315.      
  7316.    </div>
  7317.  
  7318.  
  7319.    
  7320.      
  7321.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7322.        
  7323.          <span class="visually-hidden">Original price</span>
  7324.          <span class="money price__compare-at--min" data-price-compare-min>
  7325.            $36.99
  7326.          </span>
  7327.          -
  7328.          <span class="visually-hidden">Original price</span>
  7329.          <span class="money price__compare-at--max" data-price-compare-max>
  7330.            $36.99
  7331.          </span>
  7332.        
  7333.      </div>
  7334.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7335.        <span class="visually-hidden">Original price</span>
  7336.        <span class="money price__compare-at--single" data-price-compare>
  7337.          
  7338.        </span>
  7339.      </div>
  7340.    
  7341.  
  7342.  
  7343.  <div class="price__current price__current--emphasize " data-price-container>
  7344.  
  7345.    
  7346.  
  7347.    
  7348.      
  7349.      
  7350.      <span class="money" data-price>
  7351.        $36.99
  7352.      </span>
  7353.    
  7354.    
  7355.  </div>
  7356.  
  7357.  
  7358.    
  7359.    <div class="price__current--hidden" data-current-price-range-hidden>
  7360.      
  7361.        <span class="money price__current--min" data-price-min>$36.99</span>
  7362.        -
  7363.        <span class="money price__current--max" data-price-max>$36.99</span>
  7364.      
  7365.    </div>
  7366.    <div class="price__current--hidden" data-current-price-hidden>
  7367.      <span class="visually-hidden">Current price</span>
  7368.      <span class="money" data-price>
  7369.        $36.99
  7370.      </span>
  7371.    </div>
  7372.  
  7373.  
  7374.  
  7375.    
  7376.    
  7377.    
  7378.    
  7379.  
  7380.    <div
  7381.      class="
  7382.        productitem__unit-price
  7383.        hidden
  7384.      "
  7385.      data-unit-price
  7386.    >
  7387.      <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>
  7388.    </div>
  7389.  
  7390.  
  7391.  
  7392. </div>
  7393.  
  7394.  
  7395.            </div>
  7396.  
  7397.            <div class="productitem--listview-badge">
  7398.              
  7399.  
  7400.  
  7401.  
  7402.  
  7403.  
  7404.  
  7405.  
  7406.  
  7407.  
  7408.  
  7409.  
  7410.  
  7411.  
  7412.  
  7413.  
  7414.  
  7415.  
  7416.  
  7417.  
  7418.  
  7419.  
  7420.  
  7421.  
  7422.  
  7423.  
  7424.  
  7425.  
  7426.            </div>
  7427.  
  7428.            
  7429.              <div
  7430.                class="
  7431.                  productitem--action
  7432.                  quickshop-button
  7433.                  
  7434.                "
  7435.              >
  7436.                <button
  7437.                  class="productitem--action-trigger button-secondary"
  7438.                  data-quickshop-full
  7439.                  
  7440.                  
  7441.                  type="button"
  7442.                >
  7443.                  Quick shop
  7444.                </button>
  7445.              </div>
  7446.            
  7447.  
  7448.            
  7449.              <div
  7450.                class="
  7451.                  productitem--action
  7452.                  atc--button
  7453.                  
  7454.                "
  7455.              >
  7456.                <button
  7457.                  class="productitem--action-trigger productitem--action-atc button-primary"
  7458.                  type="button"
  7459.                  aria-label="Add to cart"
  7460.                  
  7461.                    data-quick-buy
  7462.                  
  7463.                  data-variant-id="12583329333271"
  7464.                  
  7465.                >
  7466.                  <span class="atc-button--text">
  7467.                    Add to cart
  7468.                  </span>
  7469.                  <span class="atc-button--icon"><svg
  7470.  aria-hidden="true"
  7471.  focusable="false"
  7472.  role="presentation"
  7473.  width="26"
  7474.  height="26"
  7475.  viewBox="0 0 26 26"
  7476.  xmlns="http://www.w3.org/2000/svg"
  7477. >
  7478.  <g fill-rule="nonzero" fill="currentColor">
  7479.    <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"/>
  7480.  </g>
  7481. </svg></span>
  7482.                </button>
  7483.              </div>
  7484.            
  7485.          </div>
  7486.        
  7487.      
  7488.    </div>
  7489.  </div>
  7490.  
  7491.  
  7492.    <script type="application/json" data-quick-buy-settings>
  7493.      {
  7494.        "cart_redirection": true,
  7495.        "money_format": "${{amount}}"
  7496.      }
  7497.    </script>
  7498.  
  7499. </li>
  7500.    
  7501.      
  7502.  
  7503.  
  7504.  
  7505.  
  7506.  
  7507.  
  7508.  
  7509.  
  7510.  
  7511.  
  7512.  
  7513.  
  7514.  
  7515.  
  7516.  
  7517.  
  7518.  
  7519.  
  7520.  
  7521.  
  7522.  
  7523.  
  7524.  
  7525.  
  7526.  
  7527.  
  7528.  
  7529.  
  7530.  
  7531.  
  7532.  
  7533.  
  7534.    
  7535.  
  7536.  
  7537.  
  7538. <li
  7539.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  7540.  data-product-item
  7541.  data-product-quickshop-url="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7542.  
  7543. >
  7544.  <div class="productitem" data-product-item-content>
  7545.    
  7546.    
  7547.    
  7548.    
  7549.  
  7550.    
  7551.  
  7552.    
  7553.  
  7554.    <div class="productitem__container">
  7555.      
  7556.  
  7557.      <div class="productitem__image-container">
  7558.        <a target="_blank"
  7559.          class="productitem--image-link"
  7560.          href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7561.          aria-label="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7562.          tabindex="-1"
  7563.          data-product-page-link
  7564.        >
  7565.          <figure
  7566.            class="productitem--image"
  7567.            data-product-item-image
  7568.            
  7569.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7570.            
  7571.          >
  7572.            
  7573.              
  7574.              
  7575.  
  7576.  
  7577.    <noscript data-rimg-noscript>
  7578.      <img loading="lazy"
  7579.        
  7580.          src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7581.        
  7582.  
  7583.        alt="MacBook Pro"
  7584.        data-rimg="noscript"
  7585.        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"
  7586.        class="productitem--image-primary"
  7587.        
  7588.        
  7589.      >
  7590.    </noscript>
  7591.  
  7592.  
  7593.  <img loading="lazy"
  7594.    
  7595.      src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7596.    
  7597.    alt="MacBook Pro"
  7598.  
  7599.    
  7600.      data-rimg="lazy"
  7601.      data-rimg-scale="1"
  7602.      data-rimg-template="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_{size}.jpg?v=1726123088"
  7603.      data-rimg-max="1000x1000"
  7604.      data-rimg-crop="false"
  7605.      
  7606.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7607.    
  7608.  
  7609.    class="productitem--image-primary"
  7610.    
  7611.    
  7612.  >
  7613.  
  7614.  
  7615.  
  7616.  <div data-rimg-canvas></div>
  7617.  
  7618.  
  7619.            
  7620.  
  7621.            
  7622.  
  7623.  
  7624.  
  7625.  
  7626.  
  7627.  
  7628.  
  7629.  
  7630.  
  7631.  
  7632.  
  7633.  
  7634.  
  7635.  
  7636.  
  7637.  
  7638.  
  7639.  
  7640.  
  7641.  
  7642.  
  7643.  
  7644.  
  7645.  
  7646.  
  7647.  
  7648.  
  7649.          </figure>
  7650.        </a>
  7651.      </div><div class="productitem--info">
  7652.        
  7653.          
  7654.  
  7655.        
  7656.  
  7657.        
  7658.          
  7659.  
  7660.  
  7661.  
  7662.  
  7663.  
  7664.  
  7665.  
  7666.  
  7667.  
  7668.  
  7669.  
  7670.  
  7671.  
  7672.  
  7673.  
  7674.  
  7675.  
  7676.  
  7677.  
  7678.  
  7679.  
  7680.  
  7681.  
  7682.  
  7683.  
  7684.  
  7685.  
  7686.  
  7687.  
  7688.  
  7689. <div class="price productitem__price ">
  7690.  
  7691.    <div
  7692.      class="price__compare-at visible"
  7693.      data-price-compare-container
  7694.    >
  7695.  
  7696.      
  7697.        <span class="money price__original" data-price-original></span>
  7698.      
  7699.    </div>
  7700.  
  7701.  
  7702.    
  7703.      
  7704.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7705.        
  7706.          <span class="visually-hidden">Original price</span>
  7707.          <span class="money price__compare-at--min" data-price-compare-min>
  7708.            $40.98
  7709.          </span>
  7710.          -
  7711.          <span class="visually-hidden">Original price</span>
  7712.          <span class="money price__compare-at--max" data-price-compare-max>
  7713.            $40.98
  7714.          </span>
  7715.        
  7716.      </div>
  7717.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7718.        <span class="visually-hidden">Original price</span>
  7719.        <span class="money price__compare-at--single" data-price-compare>
  7720.          
  7721.        </span>
  7722.      </div>
  7723.    
  7724.  
  7725.  
  7726.  <div class="price__current price__current--emphasize " data-price-container>
  7727.  
  7728.    
  7729.  
  7730.    
  7731.      
  7732.      
  7733.      <span class="money" data-price>
  7734.        $40.98
  7735.      </span>
  7736.    
  7737.    
  7738.  </div>
  7739.  
  7740.  
  7741.    
  7742.    <div class="price__current--hidden" data-current-price-range-hidden>
  7743.      
  7744.        <span class="money price__current--min" data-price-min>$40.98</span>
  7745.        -
  7746.        <span class="money price__current--max" data-price-max>$40.98</span>
  7747.      
  7748.    </div>
  7749.    <div class="price__current--hidden" data-current-price-hidden>
  7750.      <span class="visually-hidden">Current price</span>
  7751.      <span class="money" data-price>
  7752.        $40.98
  7753.      </span>
  7754.    </div>
  7755.  
  7756.  
  7757.  
  7758.    
  7759.    
  7760.    
  7761.    
  7762.  
  7763.    <div
  7764.      class="
  7765.        productitem__unit-price
  7766.        hidden
  7767.      "
  7768.      data-unit-price
  7769.    >
  7770.      <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>
  7771.    </div>
  7772.  
  7773.  
  7774.  
  7775. </div>
  7776.  
  7777.  
  7778.        
  7779.  
  7780.        <h2 class="productitem--title">
  7781.          <a href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011" data-product-page-link>
  7782.            60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011
  7783.          </a>
  7784.        </h2>
  7785.  
  7786.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7787.        <div class="star_container 6872720015447"></div>
  7788.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7789.  
  7790.        
  7791.          
  7792.            <span class="productitem--vendor">
  7793.              <a href="/collections/vendors?q=Apple" title="Apple">Apple</a>
  7794.            </span>
  7795.          
  7796.        
  7797.  
  7798.        
  7799.  
  7800.        
  7801.          
  7802.            <div class="productitem__stock-level">
  7803.              <!--
  7804.  
  7805.  
  7806.  
  7807.  
  7808.  
  7809.  
  7810.  
  7811. <div class="product-stock-level-wrapper" >
  7812.  
  7813.    <span class="
  7814.  product-stock-level
  7815.  product-stock-level--continue-selling
  7816.  
  7817. ">
  7818.      
  7819.  
  7820.      <span class="product-stock-level__text">
  7821.        
  7822.        <div class="product-stock-level__badge-text">
  7823.          
  7824.  
  7825.    In stock
  7826.  
  7827.  
  7828.        </div>
  7829.      </span>
  7830.    </span>
  7831.  
  7832. </div>
  7833. -->
  7834.              
  7835.  
  7836.  
  7837.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  7838.  
  7839.  
  7840.  
  7841.  
  7842.            </div>
  7843.          
  7844.  
  7845.          
  7846.            
  7847.          
  7848.        
  7849.  
  7850.        
  7851.          <div class="productitem--description">
  7852.            <p>Plugs directly into AC outlet.
  7853. 60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011 
  7854. Input: 100-240V ~ 50-60Hz
  7855. Output: 1...</p>
  7856.  
  7857.            
  7858.              <a
  7859.                href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7860.                class="productitem--link"
  7861.                data-product-page-link
  7862.              >
  7863.                View full details
  7864.              </a>
  7865.            
  7866.          </div>
  7867.        
  7868.      </div>
  7869.  
  7870.      
  7871.        
  7872.          
  7873.          
  7874.          
  7875.  
  7876.          
  7877.          
  7878.  
  7879.          
  7880.  
  7881.          
  7882.  
  7883.          <div class="productitem--actions" data-product-actions>
  7884.            <div class="productitem--listview-price">
  7885.              
  7886.  
  7887.  
  7888.  
  7889.  
  7890.  
  7891.  
  7892.  
  7893.  
  7894.  
  7895.  
  7896.  
  7897.  
  7898.  
  7899.  
  7900.  
  7901.  
  7902.  
  7903.  
  7904.  
  7905.  
  7906.  
  7907.  
  7908.  
  7909.  
  7910.  
  7911.  
  7912.  
  7913.  
  7914.  
  7915.  
  7916. <div class="price productitem__price ">
  7917.  
  7918.    <div
  7919.      class="price__compare-at visible"
  7920.      data-price-compare-container
  7921.    >
  7922.  
  7923.      
  7924.        <span class="money price__original" data-price-original></span>
  7925.      
  7926.    </div>
  7927.  
  7928.  
  7929.    
  7930.      
  7931.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7932.        
  7933.          <span class="visually-hidden">Original price</span>
  7934.          <span class="money price__compare-at--min" data-price-compare-min>
  7935.            $40.98
  7936.          </span>
  7937.          -
  7938.          <span class="visually-hidden">Original price</span>
  7939.          <span class="money price__compare-at--max" data-price-compare-max>
  7940.            $40.98
  7941.          </span>
  7942.        
  7943.      </div>
  7944.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7945.        <span class="visually-hidden">Original price</span>
  7946.        <span class="money price__compare-at--single" data-price-compare>
  7947.          
  7948.        </span>
  7949.      </div>
  7950.    
  7951.  
  7952.  
  7953.  <div class="price__current price__current--emphasize " data-price-container>
  7954.  
  7955.    
  7956.  
  7957.    
  7958.      
  7959.      
  7960.      <span class="money" data-price>
  7961.        $40.98
  7962.      </span>
  7963.    
  7964.    
  7965.  </div>
  7966.  
  7967.  
  7968.    
  7969.    <div class="price__current--hidden" data-current-price-range-hidden>
  7970.      
  7971.        <span class="money price__current--min" data-price-min>$40.98</span>
  7972.        -
  7973.        <span class="money price__current--max" data-price-max>$40.98</span>
  7974.      
  7975.    </div>
  7976.    <div class="price__current--hidden" data-current-price-hidden>
  7977.      <span class="visually-hidden">Current price</span>
  7978.      <span class="money" data-price>
  7979.        $40.98
  7980.      </span>
  7981.    </div>
  7982.  
  7983.  
  7984.  
  7985.    
  7986.    
  7987.    
  7988.    
  7989.  
  7990.    <div
  7991.      class="
  7992.        productitem__unit-price
  7993.        hidden
  7994.      "
  7995.      data-unit-price
  7996.    >
  7997.      <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>
  7998.    </div>
  7999.  
  8000.  
  8001.  
  8002. </div>
  8003.  
  8004.  
  8005.            </div>
  8006.  
  8007.            <div class="productitem--listview-badge">
  8008.              
  8009.  
  8010.  
  8011.  
  8012.  
  8013.  
  8014.  
  8015.  
  8016.  
  8017.  
  8018.  
  8019.  
  8020.  
  8021.  
  8022.  
  8023.  
  8024.  
  8025.  
  8026.  
  8027.  
  8028.  
  8029.  
  8030.  
  8031.  
  8032.  
  8033.  
  8034.  
  8035.  
  8036.            </div>
  8037.  
  8038.            
  8039.              <div
  8040.                class="
  8041.                  productitem--action
  8042.                  quickshop-button
  8043.                  
  8044.                "
  8045.              >
  8046.                <button
  8047.                  class="productitem--action-trigger button-secondary"
  8048.                  data-quickshop-full
  8049.                  
  8050.                  
  8051.                  type="button"
  8052.                >
  8053.                  Quick shop
  8054.                </button>
  8055.              </div>
  8056.            
  8057.  
  8058.            
  8059.              <div
  8060.                class="
  8061.                  productitem--action
  8062.                  atc--button
  8063.                  
  8064.                "
  8065.              >
  8066.                <button
  8067.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8068.                  type="button"
  8069.                  aria-label="Add to cart"
  8070.                  
  8071.                    data-quick-buy
  8072.                  
  8073.                  data-variant-id="40156967370839"
  8074.                  
  8075.                >
  8076.                  <span class="atc-button--text">
  8077.                    Add to cart
  8078.                  </span>
  8079.                  <span class="atc-button--icon"><svg
  8080.  aria-hidden="true"
  8081.  focusable="false"
  8082.  role="presentation"
  8083.  width="26"
  8084.  height="26"
  8085.  viewBox="0 0 26 26"
  8086.  xmlns="http://www.w3.org/2000/svg"
  8087. >
  8088.  <g fill-rule="nonzero" fill="currentColor">
  8089.    <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"/>
  8090.  </g>
  8091. </svg></span>
  8092.                </button>
  8093.              </div>
  8094.            
  8095.          </div>
  8096.        
  8097.      
  8098.    </div>
  8099.  </div>
  8100.  
  8101.  
  8102.    <script type="application/json" data-quick-buy-settings>
  8103.      {
  8104.        "cart_redirection": true,
  8105.        "money_format": "${{amount}}"
  8106.      }
  8107.    </script>
  8108.  
  8109. </li>
  8110.    
  8111.      
  8112.  
  8113.  
  8114.  
  8115.  
  8116.  
  8117.  
  8118.  
  8119.  
  8120.  
  8121.  
  8122.  
  8123.  
  8124.  
  8125.  
  8126.  
  8127.  
  8128.  
  8129.  
  8130.  
  8131.  
  8132.  
  8133.  
  8134.  
  8135.  
  8136.  
  8137.  
  8138.  
  8139.  
  8140.  
  8141.  
  8142.  
  8143.  
  8144.    
  8145.  
  8146.  
  8147.  
  8148. <li
  8149.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8150.  data-product-item
  8151.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8152.  
  8153. >
  8154.  <div class="productitem" data-product-item-content>
  8155.    
  8156.    
  8157.    
  8158.    
  8159.  
  8160.    
  8161.  
  8162.    
  8163.  
  8164.    <div class="productitem__container">
  8165.      
  8166.  
  8167.      <div class="productitem__image-container">
  8168.        <a target="_blank"
  8169.          class="productitem--image-link"
  8170.          href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8171.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8172.          tabindex="-1"
  8173.          data-product-page-link
  8174.        >
  8175.          <figure
  8176.            class="productitem--image"
  8177.            data-product-item-image
  8178.            
  8179.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8180.            
  8181.          >
  8182.            
  8183.              
  8184.              
  8185.  
  8186.  
  8187.    <noscript data-rimg-noscript>
  8188.      <img loading="lazy"
  8189.        
  8190.          src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8191.        
  8192.  
  8193.        alt=""
  8194.        data-rimg="noscript"
  8195.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953 1x"
  8196.        class="productitem--image-primary"
  8197.        
  8198.        
  8199.      >
  8200.    </noscript>
  8201.  
  8202.  
  8203.  <img loading="lazy"
  8204.    
  8205.      src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8206.    
  8207.    alt=""
  8208.  
  8209.    
  8210.      data-rimg="lazy"
  8211.      data-rimg-scale="1"
  8212.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_{size}.jpg?v=1648096953"
  8213.      data-rimg-max="500x500"
  8214.      data-rimg-crop="false"
  8215.      
  8216.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8217.    
  8218.  
  8219.    class="productitem--image-primary"
  8220.    
  8221.    
  8222.  >
  8223.  
  8224.  
  8225.  
  8226.  <div data-rimg-canvas></div>
  8227.  
  8228.  
  8229.            
  8230.  
  8231.            
  8232.  
  8233.  
  8234.  
  8235.  
  8236.  
  8237.  
  8238.  
  8239.  
  8240.  
  8241.  
  8242.  
  8243.  
  8244.  
  8245.  
  8246.  
  8247.  
  8248.  
  8249.  
  8250.  
  8251.  
  8252.  
  8253.  
  8254.  
  8255.  
  8256.  
  8257.  
  8258.  
  8259.          </figure>
  8260.        </a>
  8261.      </div><div class="productitem--info">
  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.  
  8291.  
  8292.  
  8293.  
  8294.  
  8295.  
  8296.  
  8297.  
  8298.  
  8299. <div class="price productitem__price ">
  8300.  
  8301.    <div
  8302.      class="price__compare-at visible"
  8303.      data-price-compare-container
  8304.    >
  8305.  
  8306.      
  8307.        <span class="money price__original" data-price-original></span>
  8308.      
  8309.    </div>
  8310.  
  8311.  
  8312.    
  8313.      
  8314.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8315.        
  8316.          <span class="visually-hidden">Original price</span>
  8317.          <span class="money price__compare-at--min" data-price-compare-min>
  8318.            $253.99
  8319.          </span>
  8320.          -
  8321.          <span class="visually-hidden">Original price</span>
  8322.          <span class="money price__compare-at--max" data-price-compare-max>
  8323.            $253.99
  8324.          </span>
  8325.        
  8326.      </div>
  8327.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8328.        <span class="visually-hidden">Original price</span>
  8329.        <span class="money price__compare-at--single" data-price-compare>
  8330.          
  8331.        </span>
  8332.      </div>
  8333.    
  8334.  
  8335.  
  8336.  <div class="price__current price__current--emphasize " data-price-container>
  8337.  
  8338.    
  8339.  
  8340.    
  8341.      
  8342.      
  8343.      <span class="money" data-price>
  8344.        $253.99
  8345.      </span>
  8346.    
  8347.    
  8348.  </div>
  8349.  
  8350.  
  8351.    
  8352.    <div class="price__current--hidden" data-current-price-range-hidden>
  8353.      
  8354.        <span class="money price__current--min" data-price-min>$253.99</span>
  8355.        -
  8356.        <span class="money price__current--max" data-price-max>$253.99</span>
  8357.      
  8358.    </div>
  8359.    <div class="price__current--hidden" data-current-price-hidden>
  8360.      <span class="visually-hidden">Current price</span>
  8361.      <span class="money" data-price>
  8362.        $253.99
  8363.      </span>
  8364.    </div>
  8365.  
  8366.  
  8367.  
  8368.    
  8369.    
  8370.    
  8371.    
  8372.  
  8373.    <div
  8374.      class="
  8375.        productitem__unit-price
  8376.        hidden
  8377.      "
  8378.      data-unit-price
  8379.    >
  8380.      <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>
  8381.    </div>
  8382.  
  8383.  
  8384.  
  8385. </div>
  8386.  
  8387.  
  8388.        
  8389.  
  8390.        <h2 class="productitem--title">
  8391.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8" data-product-page-link>
  8392.            15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8
  8393.          </a>
  8394.        </h2>
  8395.  
  8396.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8397.        <div class="star_container 3933207593047"></div>
  8398.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8399.  
  8400.        
  8401.          
  8402.            <span class="productitem--vendor">
  8403.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  8404.            </span>
  8405.          
  8406.        
  8407.  
  8408.        
  8409.  
  8410.        
  8411.          
  8412.            <div class="productitem__stock-level">
  8413.              <!--
  8414.  
  8415.  
  8416.  
  8417.  
  8418.  
  8419.  
  8420.  
  8421. <div class="product-stock-level-wrapper" >
  8422.  
  8423.    <span class="
  8424.  product-stock-level
  8425.  product-stock-level--continue-selling
  8426.  
  8427. ">
  8428.      
  8429.  
  8430.      <span class="product-stock-level__text">
  8431.        
  8432.        <div class="product-stock-level__badge-text">
  8433.          
  8434.  
  8435.    In stock
  8436.  
  8437.  
  8438.        </div>
  8439.      </span>
  8440.    </span>
  8441.  
  8442. </div>
  8443. -->
  8444.              
  8445.  
  8446.  
  8447.    
  8448.      <b style="color:green">In stock</b>
  8449.    
  8450.  
  8451.  
  8452.  
  8453.  
  8454.  
  8455.  
  8456.  
  8457.            </div>
  8458.          
  8459.  
  8460.          
  8461.            
  8462.          
  8463.        
  8464.  
  8465.        
  8466.          <div class="productitem--description">
  8467.            <p>
  8468. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  8469.  
  8470. **This screen will only work if your laptop is one of the models below that ca...</p>
  8471.  
  8472.            
  8473.              <a
  8474.                href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8475.                class="productitem--link"
  8476.                data-product-page-link
  8477.              >
  8478.                View full details
  8479.              </a>
  8480.            
  8481.          </div>
  8482.        
  8483.      </div>
  8484.  
  8485.      
  8486.        
  8487.          
  8488.          
  8489.          
  8490.  
  8491.          
  8492.          
  8493.  
  8494.          
  8495.  
  8496.          
  8497.  
  8498.          <div class="productitem--actions" data-product-actions>
  8499.            <div class="productitem--listview-price">
  8500.              
  8501.  
  8502.  
  8503.  
  8504.  
  8505.  
  8506.  
  8507.  
  8508.  
  8509.  
  8510.  
  8511.  
  8512.  
  8513.  
  8514.  
  8515.  
  8516.  
  8517.  
  8518.  
  8519.  
  8520.  
  8521.  
  8522.  
  8523.  
  8524.  
  8525.  
  8526.  
  8527.  
  8528.  
  8529.  
  8530.  
  8531. <div class="price productitem__price ">
  8532.  
  8533.    <div
  8534.      class="price__compare-at visible"
  8535.      data-price-compare-container
  8536.    >
  8537.  
  8538.      
  8539.        <span class="money price__original" data-price-original></span>
  8540.      
  8541.    </div>
  8542.  
  8543.  
  8544.    
  8545.      
  8546.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8547.        
  8548.          <span class="visually-hidden">Original price</span>
  8549.          <span class="money price__compare-at--min" data-price-compare-min>
  8550.            $253.99
  8551.          </span>
  8552.          -
  8553.          <span class="visually-hidden">Original price</span>
  8554.          <span class="money price__compare-at--max" data-price-compare-max>
  8555.            $253.99
  8556.          </span>
  8557.        
  8558.      </div>
  8559.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8560.        <span class="visually-hidden">Original price</span>
  8561.        <span class="money price__compare-at--single" data-price-compare>
  8562.          
  8563.        </span>
  8564.      </div>
  8565.    
  8566.  
  8567.  
  8568.  <div class="price__current price__current--emphasize " data-price-container>
  8569.  
  8570.    
  8571.  
  8572.    
  8573.      
  8574.      
  8575.      <span class="money" data-price>
  8576.        $253.99
  8577.      </span>
  8578.    
  8579.    
  8580.  </div>
  8581.  
  8582.  
  8583.    
  8584.    <div class="price__current--hidden" data-current-price-range-hidden>
  8585.      
  8586.        <span class="money price__current--min" data-price-min>$253.99</span>
  8587.        -
  8588.        <span class="money price__current--max" data-price-max>$253.99</span>
  8589.      
  8590.    </div>
  8591.    <div class="price__current--hidden" data-current-price-hidden>
  8592.      <span class="visually-hidden">Current price</span>
  8593.      <span class="money" data-price>
  8594.        $253.99
  8595.      </span>
  8596.    </div>
  8597.  
  8598.  
  8599.  
  8600.    
  8601.    
  8602.    
  8603.    
  8604.  
  8605.    <div
  8606.      class="
  8607.        productitem__unit-price
  8608.        hidden
  8609.      "
  8610.      data-unit-price
  8611.    >
  8612.      <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>
  8613.    </div>
  8614.  
  8615.  
  8616.  
  8617. </div>
  8618.  
  8619.  
  8620.            </div>
  8621.  
  8622.            <div class="productitem--listview-badge">
  8623.              
  8624.  
  8625.  
  8626.  
  8627.  
  8628.  
  8629.  
  8630.  
  8631.  
  8632.  
  8633.  
  8634.  
  8635.  
  8636.  
  8637.  
  8638.  
  8639.  
  8640.  
  8641.  
  8642.  
  8643.  
  8644.  
  8645.  
  8646.  
  8647.  
  8648.  
  8649.  
  8650.  
  8651.            </div>
  8652.  
  8653.            
  8654.              <div
  8655.                class="
  8656.                  productitem--action
  8657.                  quickshop-button
  8658.                  
  8659.                "
  8660.              >
  8661.                <button
  8662.                  class="productitem--action-trigger button-secondary"
  8663.                  data-quickshop-full
  8664.                  
  8665.                  
  8666.                  type="button"
  8667.                >
  8668.                  Quick shop
  8669.                </button>
  8670.              </div>
  8671.            
  8672.  
  8673.            
  8674.              <div
  8675.                class="
  8676.                  productitem--action
  8677.                  atc--button
  8678.                  
  8679.                "
  8680.              >
  8681.                <button
  8682.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8683.                  type="button"
  8684.                  aria-label="Add to cart"
  8685.                  
  8686.                    data-quick-buy
  8687.                  
  8688.                  data-variant-id="29531492974679"
  8689.                  
  8690.                >
  8691.                  <span class="atc-button--text">
  8692.                    Add to cart
  8693.                  </span>
  8694.                  <span class="atc-button--icon"><svg
  8695.  aria-hidden="true"
  8696.  focusable="false"
  8697.  role="presentation"
  8698.  width="26"
  8699.  height="26"
  8700.  viewBox="0 0 26 26"
  8701.  xmlns="http://www.w3.org/2000/svg"
  8702. >
  8703.  <g fill-rule="nonzero" fill="currentColor">
  8704.    <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"/>
  8705.  </g>
  8706. </svg></span>
  8707.                </button>
  8708.              </div>
  8709.            
  8710.          </div>
  8711.        
  8712.      
  8713.    </div>
  8714.  </div>
  8715.  
  8716.  
  8717.    <script type="application/json" data-quick-buy-settings>
  8718.      {
  8719.        "cart_redirection": true,
  8720.        "money_format": "${{amount}}"
  8721.      }
  8722.    </script>
  8723.  
  8724. </li>
  8725.    
  8726.      
  8727.  
  8728.  
  8729.  
  8730.  
  8731.  
  8732.  
  8733.  
  8734.  
  8735.  
  8736.  
  8737.  
  8738.  
  8739.  
  8740.  
  8741.  
  8742.  
  8743.  
  8744.  
  8745.  
  8746.  
  8747.  
  8748.  
  8749.  
  8750.  
  8751.  
  8752.  
  8753.  
  8754.  
  8755.  
  8756.  
  8757.  
  8758.  
  8759.    
  8760.  
  8761.  
  8762.  
  8763. <li
  8764.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8765.  data-product-item
  8766.  data-product-quickshop-url="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8767.  
  8768. >
  8769.  <div class="productitem" data-product-item-content>
  8770.    
  8771.    
  8772.    
  8773.    
  8774.  
  8775.    
  8776.  
  8777.    
  8778.  
  8779.    <div class="productitem__container">
  8780.      
  8781.  
  8782.      <div class="productitem__image-container">
  8783.        <a target="_blank"
  8784.          class="productitem--image-link"
  8785.          href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8786.          aria-label="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8787.          tabindex="-1"
  8788.          data-product-page-link
  8789.        >
  8790.          <figure
  8791.            class="productitem--image"
  8792.            data-product-item-image
  8793.            
  8794.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8795.            
  8796.          >
  8797.            
  8798.              
  8799.              
  8800.  
  8801.  
  8802.    <noscript data-rimg-noscript>
  8803.      <img loading="lazy"
  8804.        
  8805.          src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  8806.        
  8807.  
  8808.        alt="Updated alt text"
  8809.        data-rimg="noscript"
  8810.        srcset="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908 1x"
  8811.        class="productitem--image-primary"
  8812.        
  8813.        
  8814.      >
  8815.    </noscript>
  8816.  
  8817.  
  8818.  <img loading="lazy"
  8819.    
  8820.      src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  8821.    
  8822.    alt="Updated alt text"
  8823.  
  8824.    
  8825.      data-rimg="lazy"
  8826.      data-rimg-scale="1"
  8827.      data-rimg-template="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_{size}.jpg?v=1680602908"
  8828.      data-rimg-max="500x500"
  8829.      data-rimg-crop="false"
  8830.      
  8831.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8832.    
  8833.  
  8834.    class="productitem--image-primary"
  8835.    
  8836.    
  8837.  >
  8838.  
  8839.  
  8840.  
  8841.  <div data-rimg-canvas></div>
  8842.  
  8843.  
  8844.            
  8845.  
  8846.            
  8847.  
  8848.  
  8849.  
  8850.  
  8851.  
  8852.  
  8853.  
  8854.  
  8855.  
  8856.  
  8857.  
  8858.  
  8859.  
  8860.  
  8861.  
  8862.  
  8863.  
  8864.  
  8865.  
  8866.  
  8867.  
  8868.  
  8869.  
  8870.  
  8871.  
  8872.  
  8873.  
  8874.          </figure>
  8875.        </a>
  8876.      </div><div class="productitem--info">
  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.  
  8906.  
  8907.  
  8908.  
  8909.  
  8910.  
  8911.  
  8912.  
  8913.  
  8914. <div class="price productitem__price ">
  8915.  
  8916.    <div
  8917.      class="price__compare-at visible"
  8918.      data-price-compare-container
  8919.    >
  8920.  
  8921.      
  8922.        <span class="money price__original" data-price-original></span>
  8923.      
  8924.    </div>
  8925.  
  8926.  
  8927.    
  8928.      
  8929.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8930.        
  8931.          <span class="visually-hidden">Original price</span>
  8932.          <span class="money price__compare-at--min" data-price-compare-min>
  8933.            $53.97
  8934.          </span>
  8935.          -
  8936.          <span class="visually-hidden">Original price</span>
  8937.          <span class="money price__compare-at--max" data-price-compare-max>
  8938.            $53.97
  8939.          </span>
  8940.        
  8941.      </div>
  8942.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8943.        <span class="visually-hidden">Original price</span>
  8944.        <span class="money price__compare-at--single" data-price-compare>
  8945.          
  8946.        </span>
  8947.      </div>
  8948.    
  8949.  
  8950.  
  8951.  <div class="price__current price__current--emphasize " data-price-container>
  8952.  
  8953.    
  8954.  
  8955.    
  8956.      
  8957.      
  8958.      <span class="money" data-price>
  8959.        $53.97
  8960.      </span>
  8961.    
  8962.    
  8963.  </div>
  8964.  
  8965.  
  8966.    
  8967.    <div class="price__current--hidden" data-current-price-range-hidden>
  8968.      
  8969.        <span class="money price__current--min" data-price-min>$53.97</span>
  8970.        -
  8971.        <span class="money price__current--max" data-price-max>$53.97</span>
  8972.      
  8973.    </div>
  8974.    <div class="price__current--hidden" data-current-price-hidden>
  8975.      <span class="visually-hidden">Current price</span>
  8976.      <span class="money" data-price>
  8977.        $53.97
  8978.      </span>
  8979.    </div>
  8980.  
  8981.  
  8982.  
  8983.    
  8984.    
  8985.    
  8986.    
  8987.  
  8988.    <div
  8989.      class="
  8990.        productitem__unit-price
  8991.        hidden
  8992.      "
  8993.      data-unit-price
  8994.    >
  8995.      <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>
  8996.    </div>
  8997.  
  8998.  
  8999.  
  9000. </div>
  9001.  
  9002.  
  9003.        
  9004.  
  9005.        <h2 class="productitem--title">
  9006.          <a href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23" data-product-page-link>
  9007.            19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9008.          </a>
  9009.        </h2>
  9010.  
  9011.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9012.        <div class="star_container 6872273420375"></div>
  9013.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9014.  
  9015.        
  9016.          
  9017.            <span class="productitem--vendor">
  9018.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  9019.            </span>
  9020.          
  9021.        
  9022.  
  9023.        
  9024.  
  9025.        
  9026.          
  9027.            <div class="productitem__stock-level">
  9028.              <!--
  9029.  
  9030.  
  9031.  
  9032.  
  9033.  
  9034.  
  9035.  
  9036. <div class="product-stock-level-wrapper" >
  9037.  
  9038.    <span class="
  9039.  product-stock-level
  9040.  product-stock-level--continue-selling
  9041.  
  9042. ">
  9043.      
  9044.  
  9045.      <span class="product-stock-level__text">
  9046.        
  9047.        <div class="product-stock-level__badge-text">
  9048.          
  9049.  
  9050.    In stock
  9051.  
  9052.  
  9053.        </div>
  9054.      </span>
  9055.    </span>
  9056.  
  9057. </div>
  9058. -->
  9059.              
  9060.  
  9061.  
  9062.    
  9063.      <b style="color:green">In stock</b>
  9064.    
  9065.  
  9066.  
  9067.  
  9068.  
  9069.  
  9070.  
  9071.  
  9072.            </div>
  9073.          
  9074.  
  9075.          
  9076.            
  9077.          
  9078.        
  9079.  
  9080.        
  9081.          <div class="productitem--description">
  9082.            <p>19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9083. Includes power cord.
  9084.  
  9085. Input: 100-240V ~ 50-60Hz
  9086. Output: 19V –...</p>
  9087.  
  9088.            
  9089.              <a
  9090.                href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9091.                class="productitem--link"
  9092.                data-product-page-link
  9093.              >
  9094.                View full details
  9095.              </a>
  9096.            
  9097.          </div>
  9098.        
  9099.      </div>
  9100.  
  9101.      
  9102.        
  9103.          
  9104.          
  9105.          
  9106.  
  9107.          
  9108.          
  9109.  
  9110.          
  9111.  
  9112.          
  9113.  
  9114.          <div class="productitem--actions" data-product-actions>
  9115.            <div class="productitem--listview-price">
  9116.              
  9117.  
  9118.  
  9119.  
  9120.  
  9121.  
  9122.  
  9123.  
  9124.  
  9125.  
  9126.  
  9127.  
  9128.  
  9129.  
  9130.  
  9131.  
  9132.  
  9133.  
  9134.  
  9135.  
  9136.  
  9137.  
  9138.  
  9139.  
  9140.  
  9141.  
  9142.  
  9143.  
  9144.  
  9145.  
  9146.  
  9147. <div class="price productitem__price ">
  9148.  
  9149.    <div
  9150.      class="price__compare-at visible"
  9151.      data-price-compare-container
  9152.    >
  9153.  
  9154.      
  9155.        <span class="money price__original" data-price-original></span>
  9156.      
  9157.    </div>
  9158.  
  9159.  
  9160.    
  9161.      
  9162.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9163.        
  9164.          <span class="visually-hidden">Original price</span>
  9165.          <span class="money price__compare-at--min" data-price-compare-min>
  9166.            $53.97
  9167.          </span>
  9168.          -
  9169.          <span class="visually-hidden">Original price</span>
  9170.          <span class="money price__compare-at--max" data-price-compare-max>
  9171.            $53.97
  9172.          </span>
  9173.        
  9174.      </div>
  9175.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9176.        <span class="visually-hidden">Original price</span>
  9177.        <span class="money price__compare-at--single" data-price-compare>
  9178.          
  9179.        </span>
  9180.      </div>
  9181.    
  9182.  
  9183.  
  9184.  <div class="price__current price__current--emphasize " data-price-container>
  9185.  
  9186.    
  9187.  
  9188.    
  9189.      
  9190.      
  9191.      <span class="money" data-price>
  9192.        $53.97
  9193.      </span>
  9194.    
  9195.    
  9196.  </div>
  9197.  
  9198.  
  9199.    
  9200.    <div class="price__current--hidden" data-current-price-range-hidden>
  9201.      
  9202.        <span class="money price__current--min" data-price-min>$53.97</span>
  9203.        -
  9204.        <span class="money price__current--max" data-price-max>$53.97</span>
  9205.      
  9206.    </div>
  9207.    <div class="price__current--hidden" data-current-price-hidden>
  9208.      <span class="visually-hidden">Current price</span>
  9209.      <span class="money" data-price>
  9210.        $53.97
  9211.      </span>
  9212.    </div>
  9213.  
  9214.  
  9215.  
  9216.    
  9217.    
  9218.    
  9219.    
  9220.  
  9221.    <div
  9222.      class="
  9223.        productitem__unit-price
  9224.        hidden
  9225.      "
  9226.      data-unit-price
  9227.    >
  9228.      <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>
  9229.    </div>
  9230.  
  9231.  
  9232.  
  9233. </div>
  9234.  
  9235.  
  9236.            </div>
  9237.  
  9238.            <div class="productitem--listview-badge">
  9239.              
  9240.  
  9241.  
  9242.  
  9243.  
  9244.  
  9245.  
  9246.  
  9247.  
  9248.  
  9249.  
  9250.  
  9251.  
  9252.  
  9253.  
  9254.  
  9255.  
  9256.  
  9257.  
  9258.  
  9259.  
  9260.  
  9261.  
  9262.  
  9263.  
  9264.  
  9265.  
  9266.  
  9267.            </div>
  9268.  
  9269.            
  9270.              <div
  9271.                class="
  9272.                  productitem--action
  9273.                  quickshop-button
  9274.                  
  9275.                "
  9276.              >
  9277.                <button
  9278.                  class="productitem--action-trigger button-secondary"
  9279.                  data-quickshop-full
  9280.                  
  9281.                  
  9282.                  type="button"
  9283.                >
  9284.                  Quick shop
  9285.                </button>
  9286.              </div>
  9287.            
  9288.  
  9289.            
  9290.              <div
  9291.                class="
  9292.                  productitem--action
  9293.                  atc--button
  9294.                  
  9295.                "
  9296.              >
  9297.                <button
  9298.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9299.                  type="button"
  9300.                  aria-label="Add to cart"
  9301.                  
  9302.                    data-quick-buy
  9303.                  
  9304.                  data-variant-id="40155858534487"
  9305.                  
  9306.                >
  9307.                  <span class="atc-button--text">
  9308.                    Add to cart
  9309.                  </span>
  9310.                  <span class="atc-button--icon"><svg
  9311.  aria-hidden="true"
  9312.  focusable="false"
  9313.  role="presentation"
  9314.  width="26"
  9315.  height="26"
  9316.  viewBox="0 0 26 26"
  9317.  xmlns="http://www.w3.org/2000/svg"
  9318. >
  9319.  <g fill-rule="nonzero" fill="currentColor">
  9320.    <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"/>
  9321.  </g>
  9322. </svg></span>
  9323.                </button>
  9324.              </div>
  9325.            
  9326.          </div>
  9327.        
  9328.      
  9329.    </div>
  9330.  </div>
  9331.  
  9332.  
  9333.    <script type="application/json" data-quick-buy-settings>
  9334.      {
  9335.        "cart_redirection": true,
  9336.        "money_format": "${{amount}}"
  9337.      }
  9338.    </script>
  9339.  
  9340. </li>
  9341.    
  9342.      
  9343.  
  9344.  
  9345.  
  9346.  
  9347.  
  9348.  
  9349.  
  9350.  
  9351.  
  9352.  
  9353.  
  9354.  
  9355.  
  9356.  
  9357.  
  9358.  
  9359.  
  9360.  
  9361.  
  9362.  
  9363.  
  9364.  
  9365.  
  9366.  
  9367.  
  9368.  
  9369.  
  9370.  
  9371.  
  9372.  
  9373.  
  9374.  
  9375.    
  9376.  
  9377.  
  9378.  
  9379. <li
  9380.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9381.  data-product-item
  9382.  data-product-quickshop-url="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9383.  
  9384. >
  9385.  <div class="productitem" data-product-item-content>
  9386.    
  9387.    
  9388.    
  9389.    
  9390.  
  9391.    
  9392.  
  9393.    
  9394.  
  9395.    <div class="productitem__container">
  9396.      
  9397.  
  9398.      <div class="productitem__image-container">
  9399.        <a target="_blank"
  9400.          class="productitem--image-link"
  9401.          href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9402.          aria-label="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9403.          tabindex="-1"
  9404.          data-product-page-link
  9405.        >
  9406.          <figure
  9407.            class="productitem--image"
  9408.            data-product-item-image
  9409.            
  9410.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9411.            
  9412.          >
  9413.            
  9414.              
  9415.              
  9416.  
  9417.  
  9418.    <noscript data-rimg-noscript>
  9419.      <img loading="lazy"
  9420.        
  9421.          src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9422.        
  9423.  
  9424.        alt=""
  9425.        data-rimg="noscript"
  9426.        srcset="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747 1x, //laptopparts.ca/cdn/shop/products/z1_799x799.jpg?v=1648128747 1.56x"
  9427.        class="productitem--image-primary"
  9428.        
  9429.        
  9430.      >
  9431.    </noscript>
  9432.  
  9433.  
  9434.  <img loading="lazy"
  9435.    
  9436.      src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9437.    
  9438.    alt=""
  9439.  
  9440.    
  9441.      data-rimg="lazy"
  9442.      data-rimg-scale="1"
  9443.      data-rimg-template="//laptopparts.ca/cdn/shop/products/z1_{size}.jpg?v=1648128747"
  9444.      data-rimg-max="800x800"
  9445.      data-rimg-crop="false"
  9446.      
  9447.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  9448.    
  9449.  
  9450.    class="productitem--image-primary"
  9451.    
  9452.    
  9453.  >
  9454.  
  9455.  
  9456.  
  9457.  <div data-rimg-canvas></div>
  9458.  
  9459.  
  9460.            
  9461.  
  9462.            
  9463.  
  9464.  
  9465.  
  9466.  
  9467.  
  9468.  
  9469.  
  9470.  
  9471.  
  9472.  
  9473.  
  9474.  
  9475.  
  9476.  
  9477.  
  9478.  
  9479.  
  9480.  
  9481.  
  9482.  
  9483.  
  9484.  
  9485.  
  9486.  
  9487.  
  9488.  
  9489.  
  9490.          </figure>
  9491.        </a>
  9492.      </div><div class="productitem--info">
  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.  
  9522.  
  9523.  
  9524.  
  9525.  
  9526.  
  9527.  
  9528.  
  9529.  
  9530. <div class="price productitem__price ">
  9531.  
  9532.    <div
  9533.      class="price__compare-at visible"
  9534.      data-price-compare-container
  9535.    >
  9536.  
  9537.      
  9538.        <span class="money price__original" data-price-original></span>
  9539.      
  9540.    </div>
  9541.  
  9542.  
  9543.    
  9544.      
  9545.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9546.        
  9547.          <span class="visually-hidden">Original price</span>
  9548.          <span class="money price__compare-at--min" data-price-compare-min>
  9549.            $38.99
  9550.          </span>
  9551.          -
  9552.          <span class="visually-hidden">Original price</span>
  9553.          <span class="money price__compare-at--max" data-price-compare-max>
  9554.            $38.99
  9555.          </span>
  9556.        
  9557.      </div>
  9558.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9559.        <span class="visually-hidden">Original price</span>
  9560.        <span class="money price__compare-at--single" data-price-compare>
  9561.          
  9562.        </span>
  9563.      </div>
  9564.    
  9565.  
  9566.  
  9567.  <div class="price__current price__current--emphasize " data-price-container>
  9568.  
  9569.    
  9570.  
  9571.    
  9572.      
  9573.      
  9574.      <span class="money" data-price>
  9575.        $38.99
  9576.      </span>
  9577.    
  9578.    
  9579.  </div>
  9580.  
  9581.  
  9582.    
  9583.    <div class="price__current--hidden" data-current-price-range-hidden>
  9584.      
  9585.        <span class="money price__current--min" data-price-min>$38.99</span>
  9586.        -
  9587.        <span class="money price__current--max" data-price-max>$38.99</span>
  9588.      
  9589.    </div>
  9590.    <div class="price__current--hidden" data-current-price-hidden>
  9591.      <span class="visually-hidden">Current price</span>
  9592.      <span class="money" data-price>
  9593.        $38.99
  9594.      </span>
  9595.    </div>
  9596.  
  9597.  
  9598.  
  9599.    
  9600.    
  9601.    
  9602.    
  9603.  
  9604.    <div
  9605.      class="
  9606.        productitem__unit-price
  9607.        hidden
  9608.      "
  9609.      data-unit-price
  9610.    >
  9611.      <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>
  9612.    </div>
  9613.  
  9614.  
  9615.  
  9616. </div>
  9617.  
  9618.  
  9619.        
  9620.  
  9621.        <h2 class="productitem--title">
  9622.          <a href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable" data-product-page-link>
  9623.            2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable
  9624.          </a>
  9625.        </h2>
  9626.  
  9627.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9628.        <div class="star_container 4421896306775"></div>
  9629.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9630.  
  9631.        
  9632.          
  9633.            <span class="productitem--vendor">
  9634.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  9635.            </span>
  9636.          
  9637.        
  9638.  
  9639.        
  9640.  
  9641.        
  9642.          
  9643.            <div class="productitem__stock-level">
  9644.              <!--
  9645.  
  9646.  
  9647.  
  9648.  
  9649.  
  9650.  
  9651.  
  9652. <div class="product-stock-level-wrapper" >
  9653.  
  9654.    <span class="
  9655.  product-stock-level
  9656.  product-stock-level--continue-selling
  9657.  
  9658. ">
  9659.      
  9660.  
  9661.      <span class="product-stock-level__text">
  9662.        
  9663.        <div class="product-stock-level__badge-text">
  9664.          
  9665.  
  9666.    In stock
  9667.  
  9668.  
  9669.        </div>
  9670.      </span>
  9671.    </span>
  9672.  
  9673. </div>
  9674. -->
  9675.              
  9676.  
  9677.  
  9678.    
  9679.      <b style="color:green">In stock</b>
  9680.    
  9681.  
  9682.  
  9683.  
  9684.  
  9685.  
  9686.  
  9687.  
  9688.            </div>
  9689.          
  9690.  
  9691.          
  9692.            
  9693.          
  9694.        
  9695.  
  9696.        
  9697.          <div class="productitem--description">
  9698.            <p>Cable Length(approx.): 15cm ± 10% (Just Cable)Connector Type: 1.x SATA Power 15-pin, Male2 x Molex IDE 4-pin, Female</p>
  9699.  
  9700.            
  9701.          </div>
  9702.        
  9703.      </div>
  9704.  
  9705.      
  9706.        
  9707.          
  9708.          
  9709.          
  9710.  
  9711.          
  9712.          
  9713.  
  9714.          
  9715.  
  9716.          
  9717.  
  9718.          <div class="productitem--actions" data-product-actions>
  9719.            <div class="productitem--listview-price">
  9720.              
  9721.  
  9722.  
  9723.  
  9724.  
  9725.  
  9726.  
  9727.  
  9728.  
  9729.  
  9730.  
  9731.  
  9732.  
  9733.  
  9734.  
  9735.  
  9736.  
  9737.  
  9738.  
  9739.  
  9740.  
  9741.  
  9742.  
  9743.  
  9744.  
  9745.  
  9746.  
  9747.  
  9748.  
  9749.  
  9750.  
  9751. <div class="price productitem__price ">
  9752.  
  9753.    <div
  9754.      class="price__compare-at visible"
  9755.      data-price-compare-container
  9756.    >
  9757.  
  9758.      
  9759.        <span class="money price__original" data-price-original></span>
  9760.      
  9761.    </div>
  9762.  
  9763.  
  9764.    
  9765.      
  9766.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9767.        
  9768.          <span class="visually-hidden">Original price</span>
  9769.          <span class="money price__compare-at--min" data-price-compare-min>
  9770.            $38.99
  9771.          </span>
  9772.          -
  9773.          <span class="visually-hidden">Original price</span>
  9774.          <span class="money price__compare-at--max" data-price-compare-max>
  9775.            $38.99
  9776.          </span>
  9777.        
  9778.      </div>
  9779.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9780.        <span class="visually-hidden">Original price</span>
  9781.        <span class="money price__compare-at--single" data-price-compare>
  9782.          
  9783.        </span>
  9784.      </div>
  9785.    
  9786.  
  9787.  
  9788.  <div class="price__current price__current--emphasize " data-price-container>
  9789.  
  9790.    
  9791.  
  9792.    
  9793.      
  9794.      
  9795.      <span class="money" data-price>
  9796.        $38.99
  9797.      </span>
  9798.    
  9799.    
  9800.  </div>
  9801.  
  9802.  
  9803.    
  9804.    <div class="price__current--hidden" data-current-price-range-hidden>
  9805.      
  9806.        <span class="money price__current--min" data-price-min>$38.99</span>
  9807.        -
  9808.        <span class="money price__current--max" data-price-max>$38.99</span>
  9809.      
  9810.    </div>
  9811.    <div class="price__current--hidden" data-current-price-hidden>
  9812.      <span class="visually-hidden">Current price</span>
  9813.      <span class="money" data-price>
  9814.        $38.99
  9815.      </span>
  9816.    </div>
  9817.  
  9818.  
  9819.  
  9820.    
  9821.    
  9822.    
  9823.    
  9824.  
  9825.    <div
  9826.      class="
  9827.        productitem__unit-price
  9828.        hidden
  9829.      "
  9830.      data-unit-price
  9831.    >
  9832.      <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>
  9833.    </div>
  9834.  
  9835.  
  9836.  
  9837. </div>
  9838.  
  9839.  
  9840.            </div>
  9841.  
  9842.            <div class="productitem--listview-badge">
  9843.              
  9844.  
  9845.  
  9846.  
  9847.  
  9848.  
  9849.  
  9850.  
  9851.  
  9852.  
  9853.  
  9854.  
  9855.  
  9856.  
  9857.  
  9858.  
  9859.  
  9860.  
  9861.  
  9862.  
  9863.  
  9864.  
  9865.  
  9866.  
  9867.  
  9868.  
  9869.  
  9870.  
  9871.            </div>
  9872.  
  9873.            
  9874.              <div
  9875.                class="
  9876.                  productitem--action
  9877.                  quickshop-button
  9878.                  
  9879.                "
  9880.              >
  9881.                <button
  9882.                  class="productitem--action-trigger button-secondary"
  9883.                  data-quickshop-full
  9884.                  
  9885.                  
  9886.                  type="button"
  9887.                >
  9888.                  Quick shop
  9889.                </button>
  9890.              </div>
  9891.            
  9892.  
  9893.            
  9894.              <div
  9895.                class="
  9896.                  productitem--action
  9897.                  atc--button
  9898.                  
  9899.                "
  9900.              >
  9901.                <button
  9902.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9903.                  type="button"
  9904.                  aria-label="Add to cart"
  9905.                  
  9906.                    data-quick-buy
  9907.                  
  9908.                  data-variant-id="31550087692375"
  9909.                  
  9910.                >
  9911.                  <span class="atc-button--text">
  9912.                    Add to cart
  9913.                  </span>
  9914.                  <span class="atc-button--icon"><svg
  9915.  aria-hidden="true"
  9916.  focusable="false"
  9917.  role="presentation"
  9918.  width="26"
  9919.  height="26"
  9920.  viewBox="0 0 26 26"
  9921.  xmlns="http://www.w3.org/2000/svg"
  9922. >
  9923.  <g fill-rule="nonzero" fill="currentColor">
  9924.    <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"/>
  9925.  </g>
  9926. </svg></span>
  9927.                </button>
  9928.              </div>
  9929.            
  9930.          </div>
  9931.        
  9932.      
  9933.    </div>
  9934.  </div>
  9935.  
  9936.  
  9937.    <script type="application/json" data-quick-buy-settings>
  9938.      {
  9939.        "cart_redirection": true,
  9940.        "money_format": "${{amount}}"
  9941.      }
  9942.    </script>
  9943.  
  9944. </li>
  9945.    
  9946.      
  9947.  
  9948.  
  9949.  
  9950.  
  9951.  
  9952.  
  9953.  
  9954.  
  9955.  
  9956.  
  9957.  
  9958.  
  9959.  
  9960.  
  9961.  
  9962.  
  9963.  
  9964.  
  9965.  
  9966.  
  9967.  
  9968.  
  9969.  
  9970.  
  9971.  
  9972.  
  9973.  
  9974.  
  9975.  
  9976.  
  9977.  
  9978.  
  9979.    
  9980.  
  9981.  
  9982.  
  9983. <li
  9984.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9985.  data-product-item
  9986.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  9987.  
  9988. >
  9989.  <div class="productitem" data-product-item-content>
  9990.    
  9991.    
  9992.    
  9993.    
  9994.  
  9995.    
  9996.  
  9997.    
  9998.  
  9999.    <div class="productitem__container">
  10000.      
  10001.  
  10002.      <div class="productitem__image-container">
  10003.        <a target="_blank"
  10004.          class="productitem--image-link"
  10005.          href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10006.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10007.          tabindex="-1"
  10008.          data-product-page-link
  10009.        >
  10010.          <figure
  10011.            class="productitem--image"
  10012.            data-product-item-image
  10013.            
  10014.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10015.            
  10016.          >
  10017.            
  10018.              
  10019.              
  10020.  
  10021.  
  10022.    <noscript data-rimg-noscript>
  10023.      <img loading="lazy"
  10024.        
  10025.          src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10026.        
  10027.  
  10028.        alt=""
  10029.        data-rimg="noscript"
  10030.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824 1x"
  10031.        class="productitem--image-primary"
  10032.        
  10033.        
  10034.      >
  10035.    </noscript>
  10036.  
  10037.  
  10038.  <img loading="lazy"
  10039.    
  10040.      src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10041.    
  10042.    alt=""
  10043.  
  10044.    
  10045.      data-rimg="lazy"
  10046.      data-rimg-scale="1"
  10047.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_{size}.jpg?v=1648039824"
  10048.      data-rimg-max="500x500"
  10049.      data-rimg-crop="false"
  10050.      
  10051.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  10052.    
  10053.  
  10054.    class="productitem--image-primary"
  10055.    
  10056.    
  10057.  >
  10058.  
  10059.  
  10060.  
  10061.  <div data-rimg-canvas></div>
  10062.  
  10063.  
  10064.            
  10065.  
  10066.            
  10067.  
  10068.  
  10069.  
  10070.  
  10071.  
  10072.  
  10073.  
  10074.  
  10075.  
  10076.  
  10077.  
  10078.  
  10079.  
  10080.  
  10081.  
  10082.  
  10083.  
  10084.  
  10085.  
  10086.  
  10087.  
  10088.  
  10089.  
  10090.  
  10091.  
  10092.  
  10093.  
  10094.          </figure>
  10095.        </a>
  10096.      </div><div class="productitem--info">
  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.  
  10126.  
  10127.  
  10128.  
  10129.  
  10130.  
  10131.  
  10132.  
  10133.  
  10134. <div class="price productitem__price ">
  10135.  
  10136.    <div
  10137.      class="price__compare-at visible"
  10138.      data-price-compare-container
  10139.    >
  10140.  
  10141.      
  10142.        <span class="money price__original" data-price-original></span>
  10143.      
  10144.    </div>
  10145.  
  10146.  
  10147.    
  10148.      
  10149.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10150.        
  10151.          <span class="visually-hidden">Original price</span>
  10152.          <span class="money price__compare-at--min" data-price-compare-min>
  10153.            $253.99
  10154.          </span>
  10155.          -
  10156.          <span class="visually-hidden">Original price</span>
  10157.          <span class="money price__compare-at--max" data-price-compare-max>
  10158.            $253.99
  10159.          </span>
  10160.        
  10161.      </div>
  10162.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10163.        <span class="visually-hidden">Original price</span>
  10164.        <span class="money price__compare-at--single" data-price-compare>
  10165.          
  10166.        </span>
  10167.      </div>
  10168.    
  10169.  
  10170.  
  10171.  <div class="price__current price__current--emphasize " data-price-container>
  10172.  
  10173.    
  10174.  
  10175.    
  10176.      
  10177.      
  10178.      <span class="money" data-price>
  10179.        $253.99
  10180.      </span>
  10181.    
  10182.    
  10183.  </div>
  10184.  
  10185.  
  10186.    
  10187.    <div class="price__current--hidden" data-current-price-range-hidden>
  10188.      
  10189.        <span class="money price__current--min" data-price-min>$253.99</span>
  10190.        -
  10191.        <span class="money price__current--max" data-price-max>$253.99</span>
  10192.      
  10193.    </div>
  10194.    <div class="price__current--hidden" data-current-price-hidden>
  10195.      <span class="visually-hidden">Current price</span>
  10196.      <span class="money" data-price>
  10197.        $253.99
  10198.      </span>
  10199.    </div>
  10200.  
  10201.  
  10202.  
  10203.    
  10204.    
  10205.    
  10206.    
  10207.  
  10208.    <div
  10209.      class="
  10210.        productitem__unit-price
  10211.        hidden
  10212.      "
  10213.      data-unit-price
  10214.    >
  10215.      <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>
  10216.    </div>
  10217.  
  10218.  
  10219.  
  10220. </div>
  10221.  
  10222.  
  10223.        
  10224.  
  10225.        <h2 class="productitem--title">
  10226.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops" data-product-page-link>
  10227.            15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0
  10228.          </a>
  10229.        </h2>
  10230.  
  10231.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10232.        <div class="star_container 3929811091543"></div>
  10233.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10234.  
  10235.        
  10236.          
  10237.            <span class="productitem--vendor">
  10238.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  10239.            </span>
  10240.          
  10241.        
  10242.  
  10243.        
  10244.  
  10245.        
  10246.          
  10247.            <div class="productitem__stock-level">
  10248.              <!--
  10249.  
  10250.  
  10251.  
  10252.  
  10253.  
  10254.  
  10255.  
  10256. <div class="product-stock-level-wrapper" >
  10257.  
  10258.    <span class="
  10259.  product-stock-level
  10260.  product-stock-level--continue-selling
  10261.  
  10262. ">
  10263.      
  10264.  
  10265.      <span class="product-stock-level__text">
  10266.        
  10267.        <div class="product-stock-level__badge-text">
  10268.          
  10269.  
  10270.    In stock
  10271.  
  10272.  
  10273.        </div>
  10274.      </span>
  10275.    </span>
  10276.  
  10277. </div>
  10278. -->
  10279.              
  10280.  
  10281.  
  10282.    
  10283.      <b style="color:green">In stock</b>
  10284.    
  10285.  
  10286.  
  10287.  
  10288.  
  10289.  
  10290.  
  10291.  
  10292.            </div>
  10293.          
  10294.  
  10295.          
  10296.            
  10297.          
  10298.        
  10299.  
  10300.        
  10301.          <div class="productitem--description">
  10302.            <p>
  10303. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  10304.  
  10305. **This screen will only work if your laptop is one of the models below that ca...</p>
  10306.  
  10307.            
  10308.              <a
  10309.                href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10310.                class="productitem--link"
  10311.                data-product-page-link
  10312.              >
  10313.                View full details
  10314.              </a>
  10315.            
  10316.          </div>
  10317.        
  10318.      </div>
  10319.  
  10320.      
  10321.        
  10322.          
  10323.          
  10324.          
  10325.  
  10326.          
  10327.          
  10328.  
  10329.          
  10330.  
  10331.          
  10332.  
  10333.          <div class="productitem--actions" data-product-actions>
  10334.            <div class="productitem--listview-price">
  10335.              
  10336.  
  10337.  
  10338.  
  10339.  
  10340.  
  10341.  
  10342.  
  10343.  
  10344.  
  10345.  
  10346.  
  10347.  
  10348.  
  10349.  
  10350.  
  10351.  
  10352.  
  10353.  
  10354.  
  10355.  
  10356.  
  10357.  
  10358.  
  10359.  
  10360.  
  10361.  
  10362.  
  10363.  
  10364.  
  10365.  
  10366. <div class="price productitem__price ">
  10367.  
  10368.    <div
  10369.      class="price__compare-at visible"
  10370.      data-price-compare-container
  10371.    >
  10372.  
  10373.      
  10374.        <span class="money price__original" data-price-original></span>
  10375.      
  10376.    </div>
  10377.  
  10378.  
  10379.    
  10380.      
  10381.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10382.        
  10383.          <span class="visually-hidden">Original price</span>
  10384.          <span class="money price__compare-at--min" data-price-compare-min>
  10385.            $253.99
  10386.          </span>
  10387.          -
  10388.          <span class="visually-hidden">Original price</span>
  10389.          <span class="money price__compare-at--max" data-price-compare-max>
  10390.            $253.99
  10391.          </span>
  10392.        
  10393.      </div>
  10394.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10395.        <span class="visually-hidden">Original price</span>
  10396.        <span class="money price__compare-at--single" data-price-compare>
  10397.          
  10398.        </span>
  10399.      </div>
  10400.    
  10401.  
  10402.  
  10403.  <div class="price__current price__current--emphasize " data-price-container>
  10404.  
  10405.    
  10406.  
  10407.    
  10408.      
  10409.      
  10410.      <span class="money" data-price>
  10411.        $253.99
  10412.      </span>
  10413.    
  10414.    
  10415.  </div>
  10416.  
  10417.  
  10418.    
  10419.    <div class="price__current--hidden" data-current-price-range-hidden>
  10420.      
  10421.        <span class="money price__current--min" data-price-min>$253.99</span>
  10422.        -
  10423.        <span class="money price__current--max" data-price-max>$253.99</span>
  10424.      
  10425.    </div>
  10426.    <div class="price__current--hidden" data-current-price-hidden>
  10427.      <span class="visually-hidden">Current price</span>
  10428.      <span class="money" data-price>
  10429.        $253.99
  10430.      </span>
  10431.    </div>
  10432.  
  10433.  
  10434.  
  10435.    
  10436.    
  10437.    
  10438.    
  10439.  
  10440.    <div
  10441.      class="
  10442.        productitem__unit-price
  10443.        hidden
  10444.      "
  10445.      data-unit-price
  10446.    >
  10447.      <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>
  10448.    </div>
  10449.  
  10450.  
  10451.  
  10452. </div>
  10453.  
  10454.  
  10455.            </div>
  10456.  
  10457.            <div class="productitem--listview-badge">
  10458.              
  10459.  
  10460.  
  10461.  
  10462.  
  10463.  
  10464.  
  10465.  
  10466.  
  10467.  
  10468.  
  10469.  
  10470.  
  10471.  
  10472.  
  10473.  
  10474.  
  10475.  
  10476.  
  10477.  
  10478.  
  10479.  
  10480.  
  10481.  
  10482.  
  10483.  
  10484.  
  10485.  
  10486.            </div>
  10487.  
  10488.            
  10489.              <div
  10490.                class="
  10491.                  productitem--action
  10492.                  quickshop-button
  10493.                  
  10494.                "
  10495.              >
  10496.                <button
  10497.                  class="productitem--action-trigger button-secondary"
  10498.                  data-quickshop-full
  10499.                  
  10500.                  
  10501.                  type="button"
  10502.                >
  10503.                  Quick shop
  10504.                </button>
  10505.              </div>
  10506.            
  10507.  
  10508.            
  10509.              <div
  10510.                class="
  10511.                  productitem--action
  10512.                  atc--button
  10513.                  
  10514.                "
  10515.              >
  10516.                <button
  10517.                  class="productitem--action-trigger productitem--action-atc button-primary"
  10518.                  type="button"
  10519.                  aria-label="Add to cart"
  10520.                  
  10521.                    data-quick-buy
  10522.                  
  10523.                  data-variant-id="29564283224151"
  10524.                  
  10525.                >
  10526.                  <span class="atc-button--text">
  10527.                    Add to cart
  10528.                  </span>
  10529.                  <span class="atc-button--icon"><svg
  10530.  aria-hidden="true"
  10531.  focusable="false"
  10532.  role="presentation"
  10533.  width="26"
  10534.  height="26"
  10535.  viewBox="0 0 26 26"
  10536.  xmlns="http://www.w3.org/2000/svg"
  10537. >
  10538.  <g fill-rule="nonzero" fill="currentColor">
  10539.    <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"/>
  10540.  </g>
  10541. </svg></span>
  10542.                </button>
  10543.              </div>
  10544.            
  10545.          </div>
  10546.        
  10547.      
  10548.    </div>
  10549.  </div>
  10550.  
  10551.  
  10552.    <script type="application/json" data-quick-buy-settings>
  10553.      {
  10554.        "cart_redirection": true,
  10555.        "money_format": "${{amount}}"
  10556.      }
  10557.    </script>
  10558.  
  10559. </li>
  10560.    
  10561.      
  10562.  
  10563.  
  10564.  
  10565.  
  10566.  
  10567.  
  10568.  
  10569.  
  10570.  
  10571.  
  10572.  
  10573.  
  10574.  
  10575.  
  10576.  
  10577.  
  10578.  
  10579.  
  10580.  
  10581.  
  10582.  
  10583.  
  10584.  
  10585.  
  10586.  
  10587.  
  10588.  
  10589.  
  10590.  
  10591.  
  10592.  
  10593.  
  10594.    
  10595.  
  10596.  
  10597.  
  10598. <li
  10599.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  10600.  data-product-item
  10601.  data-product-quickshop-url="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10602.  
  10603. >
  10604.  <div class="productitem" data-product-item-content>
  10605.    
  10606.    
  10607.    
  10608.    
  10609.  
  10610.    
  10611.  
  10612.    
  10613.  
  10614.    <div class="productitem__container">
  10615.      
  10616.  
  10617.      <div class="productitem__image-container">
  10618.        <a target="_blank"
  10619.          class="productitem--image-link"
  10620.          href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10621.          aria-label="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10622.          tabindex="-1"
  10623.          data-product-page-link
  10624.        >
  10625.          <figure
  10626.            class="productitem--image"
  10627.            data-product-item-image
  10628.            
  10629.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10630.            
  10631.          >
  10632.            
  10633.              
  10634.              
  10635.  
  10636.  
  10637.    <noscript data-rimg-noscript>
  10638.      <img loading="lazy"
  10639.        
  10640.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10641.        
  10642.  
  10643.        alt=""
  10644.        data-rimg="noscript"
  10645.        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"
  10646.        class="productitem--image-primary"
  10647.        
  10648.        
  10649.      >
  10650.    </noscript>
  10651.  
  10652.  
  10653.  <img loading="lazy"
  10654.    
  10655.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10656.    
  10657.    alt=""
  10658.  
  10659.    
  10660.      data-rimg="lazy"
  10661.      data-rimg-scale="1"
  10662.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_{size}.jpg?v=1648053007"
  10663.      data-rimg-max="600x600"
  10664.      data-rimg-crop="false"
  10665.      
  10666.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  10667.    
  10668.  
  10669.    class="productitem--image-primary"
  10670.    
  10671.    
  10672.  >
  10673.  
  10674.  
  10675.  
  10676.  <div data-rimg-canvas></div>
  10677.  
  10678.  
  10679.            
  10680.  
  10681.            
  10682.  
  10683.  
  10684.  
  10685.  
  10686.  
  10687.  
  10688.  
  10689.  
  10690.  
  10691.  
  10692.  
  10693.  
  10694.  
  10695.  
  10696.  
  10697.  
  10698.  
  10699.  
  10700.  
  10701.  
  10702.  
  10703.  
  10704.  
  10705.  
  10706.  
  10707.  
  10708.  
  10709.          </figure>
  10710.        </a>
  10711.      </div><div class="productitem--info">
  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.  
  10741.  
  10742.  
  10743.  
  10744.  
  10745.  
  10746.  
  10747.  
  10748.  
  10749. <div class="price productitem__price ">
  10750.  
  10751.    <div
  10752.      class="price__compare-at visible"
  10753.      data-price-compare-container
  10754.    >
  10755.  
  10756.      
  10757.        <span class="money price__original" data-price-original></span>
  10758.      
  10759.    </div>
  10760.  
  10761.  
  10762.    
  10763.      
  10764.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10765.        
  10766.          <span class="visually-hidden">Original price</span>
  10767.          <span class="money price__compare-at--min" data-price-compare-min>
  10768.            $38.99
  10769.          </span>
  10770.          -
  10771.          <span class="visually-hidden">Original price</span>
  10772.          <span class="money price__compare-at--max" data-price-compare-max>
  10773.            $38.99
  10774.          </span>
  10775.        
  10776.      </div>
  10777.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10778.        <span class="visually-hidden">Original price</span>
  10779.        <span class="money price__compare-at--single" data-price-compare>
  10780.          
  10781.        </span>
  10782.      </div>
  10783.    
  10784.  
  10785.  
  10786.  <div class="price__current price__current--emphasize " data-price-container>
  10787.  
  10788.    
  10789.  
  10790.    
  10791.      
  10792.      
  10793.      <span class="money" data-price>
  10794.        $38.99
  10795.      </span>
  10796.    
  10797.    
  10798.  </div>
  10799.  
  10800.  
  10801.    
  10802.    <div class="price__current--hidden" data-current-price-range-hidden>
  10803.      
  10804.        <span class="money price__current--min" data-price-min>$38.99</span>
  10805.        -
  10806.        <span class="money price__current--max" data-price-max>$38.99</span>
  10807.      
  10808.    </div>
  10809.    <div class="price__current--hidden" data-current-price-hidden>
  10810.      <span class="visually-hidden">Current price</span>
  10811.      <span class="money" data-price>
  10812.        $38.99
  10813.      </span>
  10814.    </div>
  10815.  
  10816.  
  10817.  
  10818.    
  10819.    
  10820.    
  10821.    
  10822.  
  10823.    <div
  10824.      class="
  10825.        productitem__unit-price
  10826.        hidden
  10827.      "
  10828.      data-unit-price
  10829.    >
  10830.      <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>
  10831.    </div>
  10832.  
  10833.  
  10834.  
  10835. </div>
  10836.  
  10837.  
  10838.        
  10839.  
  10840.        <h2 class="productitem--title">
  10841.          <a href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  10842.            5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  10843.          </a>
  10844.        </h2>
  10845.  
  10846.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10847.        <div class="star_container 3483509915735"></div>
  10848.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10849.  
  10850.        
  10851.          
  10852.            <span class="productitem--vendor">
  10853.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  10854.            </span>
  10855.          
  10856.        
  10857.  
  10858.        
  10859.  
  10860.        
  10861.          
  10862.            <div class="productitem__stock-level">
  10863.              <!--
  10864.  
  10865.  
  10866.  
  10867.  
  10868.  
  10869.  
  10870.  
  10871. <div class="product-stock-level-wrapper" >
  10872.  
  10873.    <span class="
  10874.  product-stock-level
  10875.  product-stock-level--continue-selling
  10876.  
  10877. ">
  10878.      
  10879.  
  10880.      <span class="product-stock-level__text">
  10881.        
  10882.        <div class="product-stock-level__badge-text">
  10883.          
  10884.  
  10885.    In stock
  10886.  
  10887.  
  10888.        </div>
  10889.      </span>
  10890.    </span>
  10891.  
  10892. </div>
  10893. -->
  10894.              
  10895.  
  10896.  
  10897.    
  10898.      <b style="color:green">In stock</b>
  10899.    
  10900.  
  10901.  
  10902.  
  10903.  
  10904.  
  10905.  
  10906.  
  10907.            </div>
  10908.          
  10909.  
  10910.          
  10911.            
  10912.          
  10913.        
  10914.  
  10915.        
  10916.          <div class="productitem--description">
  10917.            <p>Plugs directly into AC outlet.
  10918.  
  10919. Input: 100-240V ~ 50-60Hz
  10920. Output: 12V – 1.5A 18W
  10921. Connector Tip: mini USB
  10922. Colour: Black
  10923.  
  10924. Compatible Part #s: KP.01...</p>
  10925.  
  10926.            
  10927.              <a
  10928.                href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10929.                class="productitem--link"
  10930.                data-product-page-link
  10931.              >
  10932.                View full details
  10933.              </a>
  10934.            
  10935.          </div>
  10936.        
  10937.      </div>
  10938.  
  10939.      
  10940.        
  10941.          
  10942.          
  10943.          
  10944.  
  10945.          
  10946.          
  10947.  
  10948.          
  10949.  
  10950.          
  10951.  
  10952.          <div class="productitem--actions" data-product-actions>
  10953.            <div class="productitem--listview-price">
  10954.              
  10955.  
  10956.  
  10957.  
  10958.  
  10959.  
  10960.  
  10961.  
  10962.  
  10963.  
  10964.  
  10965.  
  10966.  
  10967.  
  10968.  
  10969.  
  10970.  
  10971.  
  10972.  
  10973.  
  10974.  
  10975.  
  10976.  
  10977.  
  10978.  
  10979.  
  10980.  
  10981.  
  10982.  
  10983.  
  10984.  
  10985. <div class="price productitem__price ">
  10986.  
  10987.    <div
  10988.      class="price__compare-at visible"
  10989.      data-price-compare-container
  10990.    >
  10991.  
  10992.      
  10993.        <span class="money price__original" data-price-original></span>
  10994.      
  10995.    </div>
  10996.  
  10997.  
  10998.    
  10999.      
  11000.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11001.        
  11002.          <span class="visually-hidden">Original price</span>
  11003.          <span class="money price__compare-at--min" data-price-compare-min>
  11004.            $38.99
  11005.          </span>
  11006.          -
  11007.          <span class="visually-hidden">Original price</span>
  11008.          <span class="money price__compare-at--max" data-price-compare-max>
  11009.            $38.99
  11010.          </span>
  11011.        
  11012.      </div>
  11013.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11014.        <span class="visually-hidden">Original price</span>
  11015.        <span class="money price__compare-at--single" data-price-compare>
  11016.          
  11017.        </span>
  11018.      </div>
  11019.    
  11020.  
  11021.  
  11022.  <div class="price__current price__current--emphasize " data-price-container>
  11023.  
  11024.    
  11025.  
  11026.    
  11027.      
  11028.      
  11029.      <span class="money" data-price>
  11030.        $38.99
  11031.      </span>
  11032.    
  11033.    
  11034.  </div>
  11035.  
  11036.  
  11037.    
  11038.    <div class="price__current--hidden" data-current-price-range-hidden>
  11039.      
  11040.        <span class="money price__current--min" data-price-min>$38.99</span>
  11041.        -
  11042.        <span class="money price__current--max" data-price-max>$38.99</span>
  11043.      
  11044.    </div>
  11045.    <div class="price__current--hidden" data-current-price-hidden>
  11046.      <span class="visually-hidden">Current price</span>
  11047.      <span class="money" data-price>
  11048.        $38.99
  11049.      </span>
  11050.    </div>
  11051.  
  11052.  
  11053.  
  11054.    
  11055.    
  11056.    
  11057.    
  11058.  
  11059.    <div
  11060.      class="
  11061.        productitem__unit-price
  11062.        hidden
  11063.      "
  11064.      data-unit-price
  11065.    >
  11066.      <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>
  11067.    </div>
  11068.  
  11069.  
  11070.  
  11071. </div>
  11072.  
  11073.  
  11074.            </div>
  11075.  
  11076.            <div class="productitem--listview-badge">
  11077.              
  11078.  
  11079.  
  11080.  
  11081.  
  11082.  
  11083.  
  11084.  
  11085.  
  11086.  
  11087.  
  11088.  
  11089.  
  11090.  
  11091.  
  11092.  
  11093.  
  11094.  
  11095.  
  11096.  
  11097.  
  11098.  
  11099.  
  11100.  
  11101.  
  11102.  
  11103.  
  11104.  
  11105.            </div>
  11106.  
  11107.            
  11108.              <div
  11109.                class="
  11110.                  productitem--action
  11111.                  quickshop-button
  11112.                  
  11113.                "
  11114.              >
  11115.                <button
  11116.                  class="productitem--action-trigger button-secondary"
  11117.                  data-quickshop-full
  11118.                  
  11119.                  
  11120.                  type="button"
  11121.                >
  11122.                  Quick shop
  11123.                </button>
  11124.              </div>
  11125.            
  11126.  
  11127.            
  11128.              <div
  11129.                class="
  11130.                  productitem--action
  11131.                  atc--button
  11132.                  
  11133.                "
  11134.              >
  11135.                <button
  11136.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11137.                  type="button"
  11138.                  aria-label="Add to cart"
  11139.                  
  11140.                    data-quick-buy
  11141.                  
  11142.                  data-variant-id="39666212831319"
  11143.                  
  11144.                >
  11145.                  <span class="atc-button--text">
  11146.                    Add to cart
  11147.                  </span>
  11148.                  <span class="atc-button--icon"><svg
  11149.  aria-hidden="true"
  11150.  focusable="false"
  11151.  role="presentation"
  11152.  width="26"
  11153.  height="26"
  11154.  viewBox="0 0 26 26"
  11155.  xmlns="http://www.w3.org/2000/svg"
  11156. >
  11157.  <g fill-rule="nonzero" fill="currentColor">
  11158.    <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"/>
  11159.  </g>
  11160. </svg></span>
  11161.                </button>
  11162.              </div>
  11163.            
  11164.          </div>
  11165.        
  11166.      
  11167.    </div>
  11168.  </div>
  11169.  
  11170.  
  11171.    <script type="application/json" data-quick-buy-settings>
  11172.      {
  11173.        "cart_redirection": true,
  11174.        "money_format": "${{amount}}"
  11175.      }
  11176.    </script>
  11177.  
  11178. </li>
  11179.    
  11180.      
  11181.  
  11182.  
  11183.  
  11184.  
  11185.  
  11186.  
  11187.  
  11188.  
  11189.  
  11190.  
  11191.  
  11192.  
  11193.  
  11194.  
  11195.  
  11196.  
  11197.  
  11198.  
  11199.  
  11200.  
  11201.  
  11202.  
  11203.  
  11204.  
  11205.  
  11206.  
  11207.  
  11208.  
  11209.  
  11210.  
  11211.  
  11212.  
  11213.    
  11214.  
  11215.  
  11216.  
  11217. <li
  11218.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11219.  data-product-item
  11220.  data-product-quickshop-url="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11221.  
  11222. >
  11223.  <div class="productitem" data-product-item-content>
  11224.    
  11225.    
  11226.    
  11227.    
  11228.  
  11229.    
  11230.  
  11231.    
  11232.  
  11233.    <div class="productitem__container">
  11234.      
  11235.  
  11236.      <div class="productitem__image-container">
  11237.        <a target="_blank"
  11238.          class="productitem--image-link"
  11239.          href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11240.          aria-label="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11241.          tabindex="-1"
  11242.          data-product-page-link
  11243.        >
  11244.          <figure
  11245.            class="productitem--image"
  11246.            data-product-item-image
  11247.            
  11248.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11249.            
  11250.          >
  11251.            
  11252.              
  11253.              
  11254.  
  11255.  
  11256.    <noscript data-rimg-noscript>
  11257.      <img loading="lazy"
  11258.        
  11259.          src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11260.        
  11261.  
  11262.        alt=""
  11263.        data-rimg="noscript"
  11264.        srcset="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863 1x"
  11265.        class="productitem--image-primary"
  11266.        
  11267.        
  11268.      >
  11269.    </noscript>
  11270.  
  11271.  
  11272.  <img loading="lazy"
  11273.    
  11274.      src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11275.    
  11276.    alt=""
  11277.  
  11278.    
  11279.      data-rimg="lazy"
  11280.      data-rimg-scale="1"
  11281.      data-rimg-template="//laptopparts.ca/cdn/shop/products/8291_{size}.jpg?v=1648090863"
  11282.      data-rimg-max="500x500"
  11283.      data-rimg-crop="false"
  11284.      
  11285.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  11286.    
  11287.  
  11288.    class="productitem--image-primary"
  11289.    
  11290.    
  11291.  >
  11292.  
  11293.  
  11294.  
  11295.  <div data-rimg-canvas></div>
  11296.  
  11297.  
  11298.            
  11299.  
  11300.            
  11301.  
  11302.  
  11303.  
  11304.  
  11305.  
  11306.  
  11307.  
  11308.  
  11309.  
  11310.  
  11311.  
  11312.  
  11313.  
  11314.  
  11315.  
  11316.  
  11317.  
  11318.  
  11319.  
  11320.  
  11321.  
  11322.  
  11323.  
  11324.  
  11325.  
  11326.  
  11327.  
  11328.          </figure>
  11329.        </a>
  11330.      </div><div class="productitem--info">
  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.  
  11360.  
  11361.  
  11362.  
  11363.  
  11364.  
  11365.  
  11366.  
  11367.  
  11368. <div class="price productitem__price ">
  11369.  
  11370.    <div
  11371.      class="price__compare-at visible"
  11372.      data-price-compare-container
  11373.    >
  11374.  
  11375.      
  11376.        <span class="money price__original" data-price-original></span>
  11377.      
  11378.    </div>
  11379.  
  11380.  
  11381.    
  11382.      
  11383.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11384.        
  11385.          <span class="visually-hidden">Original price</span>
  11386.          <span class="money price__compare-at--min" data-price-compare-min>
  11387.            $106.99
  11388.          </span>
  11389.          -
  11390.          <span class="visually-hidden">Original price</span>
  11391.          <span class="money price__compare-at--max" data-price-compare-max>
  11392.            $106.99
  11393.          </span>
  11394.        
  11395.      </div>
  11396.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11397.        <span class="visually-hidden">Original price</span>
  11398.        <span class="money price__compare-at--single" data-price-compare>
  11399.          
  11400.        </span>
  11401.      </div>
  11402.    
  11403.  
  11404.  
  11405.  <div class="price__current price__current--emphasize " data-price-container>
  11406.  
  11407.    
  11408.  
  11409.    
  11410.      
  11411.      
  11412.      <span class="money" data-price>
  11413.        $106.99
  11414.      </span>
  11415.    
  11416.    
  11417.  </div>
  11418.  
  11419.  
  11420.    
  11421.    <div class="price__current--hidden" data-current-price-range-hidden>
  11422.      
  11423.        <span class="money price__current--min" data-price-min>$106.99</span>
  11424.        -
  11425.        <span class="money price__current--max" data-price-max>$106.99</span>
  11426.      
  11427.    </div>
  11428.    <div class="price__current--hidden" data-current-price-hidden>
  11429.      <span class="visually-hidden">Current price</span>
  11430.      <span class="money" data-price>
  11431.        $106.99
  11432.      </span>
  11433.    </div>
  11434.  
  11435.  
  11436.  
  11437.    
  11438.    
  11439.    
  11440.    
  11441.  
  11442.    <div
  11443.      class="
  11444.        productitem__unit-price
  11445.        hidden
  11446.      "
  11447.      data-unit-price
  11448.    >
  11449.      <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>
  11450.    </div>
  11451.  
  11452.  
  11453.  
  11454. </div>
  11455.  
  11456.  
  11457.        
  11458.  
  11459.        <h2 class="productitem--title">
  11460.          <a href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a" data-product-page-link>
  11461.            5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A
  11462.          </a>
  11463.        </h2>
  11464.  
  11465.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  11466.        <div class="star_container 592337698839"></div>
  11467.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  11468.  
  11469.        
  11470.          
  11471.            <span class="productitem--vendor">
  11472.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  11473.            </span>
  11474.          
  11475.        
  11476.  
  11477.        
  11478.  
  11479.        
  11480.          
  11481.            <div class="productitem__stock-level">
  11482.              <!--
  11483.  
  11484.  
  11485.  
  11486.  
  11487.  
  11488.  
  11489.  
  11490. <div class="product-stock-level-wrapper" >
  11491.  
  11492.    <span class="
  11493.  product-stock-level
  11494.  product-stock-level--continue-selling
  11495.  
  11496. ">
  11497.      
  11498.  
  11499.      <span class="product-stock-level__text">
  11500.        
  11501.        <div class="product-stock-level__badge-text">
  11502.          
  11503.  
  11504.    In stock
  11505.  
  11506.  
  11507.        </div>
  11508.      </span>
  11509.    </span>
  11510.  
  11511. </div>
  11512. -->
  11513.              
  11514.  
  11515.  
  11516.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  11517.  
  11518.  
  11519.  
  11520.  
  11521.            </div>
  11522.          
  11523.  
  11524.          
  11525.            
  11526.          
  11527.        
  11528.  
  11529.        
  11530.          <div class="productitem--description">
  11531.            <p>
  11532. Description: 5 slot printhead for select HP printers. This item is refurbished.  Compatible Part #'s: CB326-30002, CN642A.  Compatible Models: HP ...</p>
  11533.  
  11534.            
  11535.              <a
  11536.                href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11537.                class="productitem--link"
  11538.                data-product-page-link
  11539.              >
  11540.                View full details
  11541.              </a>
  11542.            
  11543.          </div>
  11544.        
  11545.      </div>
  11546.  
  11547.      
  11548.        
  11549.          
  11550.          
  11551.          
  11552.  
  11553.          
  11554.          
  11555.  
  11556.          
  11557.  
  11558.          
  11559.  
  11560.          <div class="productitem--actions" data-product-actions>
  11561.            <div class="productitem--listview-price">
  11562.              
  11563.  
  11564.  
  11565.  
  11566.  
  11567.  
  11568.  
  11569.  
  11570.  
  11571.  
  11572.  
  11573.  
  11574.  
  11575.  
  11576.  
  11577.  
  11578.  
  11579.  
  11580.  
  11581.  
  11582.  
  11583.  
  11584.  
  11585.  
  11586.  
  11587.  
  11588.  
  11589.  
  11590.  
  11591.  
  11592.  
  11593. <div class="price productitem__price ">
  11594.  
  11595.    <div
  11596.      class="price__compare-at visible"
  11597.      data-price-compare-container
  11598.    >
  11599.  
  11600.      
  11601.        <span class="money price__original" data-price-original></span>
  11602.      
  11603.    </div>
  11604.  
  11605.  
  11606.    
  11607.      
  11608.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11609.        
  11610.          <span class="visually-hidden">Original price</span>
  11611.          <span class="money price__compare-at--min" data-price-compare-min>
  11612.            $106.99
  11613.          </span>
  11614.          -
  11615.          <span class="visually-hidden">Original price</span>
  11616.          <span class="money price__compare-at--max" data-price-compare-max>
  11617.            $106.99
  11618.          </span>
  11619.        
  11620.      </div>
  11621.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11622.        <span class="visually-hidden">Original price</span>
  11623.        <span class="money price__compare-at--single" data-price-compare>
  11624.          
  11625.        </span>
  11626.      </div>
  11627.    
  11628.  
  11629.  
  11630.  <div class="price__current price__current--emphasize " data-price-container>
  11631.  
  11632.    
  11633.  
  11634.    
  11635.      
  11636.      
  11637.      <span class="money" data-price>
  11638.        $106.99
  11639.      </span>
  11640.    
  11641.    
  11642.  </div>
  11643.  
  11644.  
  11645.    
  11646.    <div class="price__current--hidden" data-current-price-range-hidden>
  11647.      
  11648.        <span class="money price__current--min" data-price-min>$106.99</span>
  11649.        -
  11650.        <span class="money price__current--max" data-price-max>$106.99</span>
  11651.      
  11652.    </div>
  11653.    <div class="price__current--hidden" data-current-price-hidden>
  11654.      <span class="visually-hidden">Current price</span>
  11655.      <span class="money" data-price>
  11656.        $106.99
  11657.      </span>
  11658.    </div>
  11659.  
  11660.  
  11661.  
  11662.    
  11663.    
  11664.    
  11665.    
  11666.  
  11667.    <div
  11668.      class="
  11669.        productitem__unit-price
  11670.        hidden
  11671.      "
  11672.      data-unit-price
  11673.    >
  11674.      <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>
  11675.    </div>
  11676.  
  11677.  
  11678.  
  11679. </div>
  11680.  
  11681.  
  11682.            </div>
  11683.  
  11684.            <div class="productitem--listview-badge">
  11685.              
  11686.  
  11687.  
  11688.  
  11689.  
  11690.  
  11691.  
  11692.  
  11693.  
  11694.  
  11695.  
  11696.  
  11697.  
  11698.  
  11699.  
  11700.  
  11701.  
  11702.  
  11703.  
  11704.  
  11705.  
  11706.  
  11707.  
  11708.  
  11709.  
  11710.  
  11711.  
  11712.  
  11713.            </div>
  11714.  
  11715.            
  11716.              <div
  11717.                class="
  11718.                  productitem--action
  11719.                  quickshop-button
  11720.                  
  11721.                "
  11722.              >
  11723.                <button
  11724.                  class="productitem--action-trigger button-secondary"
  11725.                  data-quickshop-full
  11726.                  
  11727.                  
  11728.                  type="button"
  11729.                >
  11730.                  Quick shop
  11731.                </button>
  11732.              </div>
  11733.            
  11734.  
  11735.            
  11736.              <div
  11737.                class="
  11738.                  productitem--action
  11739.                  atc--button
  11740.                  
  11741.                "
  11742.              >
  11743.                <button
  11744.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11745.                  type="button"
  11746.                  aria-label="Add to cart"
  11747.                  
  11748.                    data-quick-buy
  11749.                  
  11750.                  data-variant-id="6936707596311"
  11751.                  
  11752.                >
  11753.                  <span class="atc-button--text">
  11754.                    Add to cart
  11755.                  </span>
  11756.                  <span class="atc-button--icon"><svg
  11757.  aria-hidden="true"
  11758.  focusable="false"
  11759.  role="presentation"
  11760.  width="26"
  11761.  height="26"
  11762.  viewBox="0 0 26 26"
  11763.  xmlns="http://www.w3.org/2000/svg"
  11764. >
  11765.  <g fill-rule="nonzero" fill="currentColor">
  11766.    <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"/>
  11767.  </g>
  11768. </svg></span>
  11769.                </button>
  11770.              </div>
  11771.            
  11772.          </div>
  11773.        
  11774.      
  11775.    </div>
  11776.  </div>
  11777.  
  11778.  
  11779.    <script type="application/json" data-quick-buy-settings>
  11780.      {
  11781.        "cart_redirection": true,
  11782.        "money_format": "${{amount}}"
  11783.      }
  11784.    </script>
  11785.  
  11786. </li>
  11787.    
  11788.      
  11789.  
  11790.  
  11791.  
  11792.  
  11793.  
  11794.  
  11795.  
  11796.  
  11797.  
  11798.  
  11799.  
  11800.  
  11801.  
  11802.  
  11803.  
  11804.  
  11805.  
  11806.  
  11807.  
  11808.  
  11809.  
  11810.  
  11811.  
  11812.  
  11813.  
  11814.  
  11815.  
  11816.  
  11817.  
  11818.  
  11819.  
  11820.  
  11821.    
  11822.  
  11823.  
  11824.  
  11825. <li
  11826.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11827.  data-product-item
  11828.  data-product-quickshop-url="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11829.  
  11830. >
  11831.  <div class="productitem" data-product-item-content>
  11832.    
  11833.    
  11834.    
  11835.    
  11836.  
  11837.    
  11838.  
  11839.    
  11840.  
  11841.    <div class="productitem__container">
  11842.      
  11843.  
  11844.      <div class="productitem__image-container">
  11845.        <a target="_blank"
  11846.          class="productitem--image-link"
  11847.          href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11848.          aria-label="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11849.          tabindex="-1"
  11850.          data-product-page-link
  11851.        >
  11852.          <figure
  11853.            class="productitem--image"
  11854.            data-product-item-image
  11855.            
  11856.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11857.            
  11858.          >
  11859.            
  11860.              
  11861.              
  11862.  
  11863.  
  11864.    <noscript data-rimg-noscript>
  11865.      <img loading="lazy"
  11866.        
  11867.          src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  11868.        
  11869.  
  11870.        alt=""
  11871.        data-rimg="noscript"
  11872.        srcset="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253 1x, //laptopparts.ca/cdn/shop/products/500gb_998x998.jpg?v=1697125253 1.95x"
  11873.        class="productitem--image-primary"
  11874.        
  11875.        
  11876.      >
  11877.    </noscript>
  11878.  
  11879.  
  11880.  <img loading="lazy"
  11881.    
  11882.      src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  11883.    
  11884.    alt=""
  11885.  
  11886.    
  11887.      data-rimg="lazy"
  11888.      data-rimg-scale="1"
  11889.      data-rimg-template="//laptopparts.ca/cdn/shop/products/500gb_{size}.jpg?v=1697125253"
  11890.      data-rimg-max="1000x1000"
  11891.      data-rimg-crop="false"
  11892.      
  11893.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  11894.    
  11895.  
  11896.    class="productitem--image-primary"
  11897.    
  11898.    
  11899.  >
  11900.  
  11901.  
  11902.  
  11903.  <div data-rimg-canvas></div>
  11904.  
  11905.  
  11906.            
  11907.  
  11908.            
  11909.  
  11910.  
  11911.  
  11912.  
  11913.  
  11914.  
  11915.  
  11916.  
  11917.  
  11918.  
  11919.  
  11920.  
  11921.  
  11922.  
  11923.  
  11924.  
  11925.  
  11926.  
  11927.  
  11928.  
  11929.  
  11930.  
  11931.  
  11932.  
  11933.  
  11934.  
  11935.  
  11936.          </figure>
  11937.        </a>
  11938.      </div><div class="productitem--info">
  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.  
  11968.  
  11969.  
  11970.  
  11971.  
  11972.  
  11973.  
  11974.  
  11975.  
  11976. <div class="price productitem__price ">
  11977.  
  11978.    <div
  11979.      class="price__compare-at visible"
  11980.      data-price-compare-container
  11981.    >
  11982.  
  11983.      
  11984.        <span class="money price__original" data-price-original></span>
  11985.      
  11986.    </div>
  11987.  
  11988.  
  11989.    
  11990.      
  11991.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11992.        
  11993.          <span class="visually-hidden">Original price</span>
  11994.          <span class="money price__compare-at--min" data-price-compare-min>
  11995.            $62.99
  11996.          </span>
  11997.          -
  11998.          <span class="visually-hidden">Original price</span>
  11999.          <span class="money price__compare-at--max" data-price-compare-max>
  12000.            $62.99
  12001.          </span>
  12002.        
  12003.      </div>
  12004.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12005.        <span class="visually-hidden">Original price</span>
  12006.        <span class="money price__compare-at--single" data-price-compare>
  12007.          
  12008.        </span>
  12009.      </div>
  12010.    
  12011.  
  12012.  
  12013.  <div class="price__current price__current--emphasize " data-price-container>
  12014.  
  12015.    
  12016.  
  12017.    
  12018.      
  12019.      
  12020.      <span class="money" data-price>
  12021.        $62.99
  12022.      </span>
  12023.    
  12024.    
  12025.  </div>
  12026.  
  12027.  
  12028.    
  12029.    <div class="price__current--hidden" data-current-price-range-hidden>
  12030.      
  12031.        <span class="money price__current--min" data-price-min>$62.99</span>
  12032.        -
  12033.        <span class="money price__current--max" data-price-max>$62.99</span>
  12034.      
  12035.    </div>
  12036.    <div class="price__current--hidden" data-current-price-hidden>
  12037.      <span class="visually-hidden">Current price</span>
  12038.      <span class="money" data-price>
  12039.        $62.99
  12040.      </span>
  12041.    </div>
  12042.  
  12043.  
  12044.  
  12045.    
  12046.    
  12047.    
  12048.    
  12049.  
  12050.    <div
  12051.      class="
  12052.        productitem__unit-price
  12053.        hidden
  12054.      "
  12055.      data-unit-price
  12056.    >
  12057.      <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>
  12058.    </div>
  12059.  
  12060.  
  12061.  
  12062. </div>
  12063.  
  12064.  
  12065.        
  12066.  
  12067.        <h2 class="productitem--title">
  12068.          <a href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo" data-product-page-link>
  12069.            500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo
  12070.          </a>
  12071.        </h2>
  12072.  
  12073.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12074.        <div class="star_container 1362179063831"></div>
  12075.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12076.  
  12077.        
  12078.          
  12079.            <span class="productitem--vendor">
  12080.              <a href="/collections/vendors?q=Lenovo" title="Lenovo">Lenovo</a>
  12081.            </span>
  12082.          
  12083.        
  12084.  
  12085.        
  12086.  
  12087.        
  12088.          
  12089.            <div class="productitem__stock-level">
  12090.              <!--
  12091.  
  12092.  
  12093.  
  12094.  
  12095.  
  12096.  
  12097.  
  12098. <div class="product-stock-level-wrapper" >
  12099.  
  12100.    <span class="
  12101.  product-stock-level
  12102.  product-stock-level--continue-selling
  12103.  
  12104. ">
  12105.      
  12106.  
  12107.      <span class="product-stock-level__text">
  12108.        
  12109.        <div class="product-stock-level__badge-text">
  12110.          
  12111.  
  12112.    In stock
  12113.  
  12114.  
  12115.        </div>
  12116.      </span>
  12117.    </span>
  12118.  
  12119. </div>
  12120. -->
  12121.              
  12122.  
  12123.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12124.  
  12125.  
  12126.  
  12127.  
  12128.  
  12129.  
  12130.  
  12131.            </div>
  12132.          
  12133.  
  12134.          
  12135.            
  12136.          
  12137.        
  12138.  
  12139.        
  12140.          <div class="productitem--description">
  12141.            <p>500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo</p>
  12142.  
  12143.            
  12144.          </div>
  12145.        
  12146.      </div>
  12147.  
  12148.      
  12149.        
  12150.          
  12151.          
  12152.          
  12153.  
  12154.          
  12155.          
  12156.  
  12157.          
  12158.  
  12159.          
  12160.  
  12161.          <div class="productitem--actions" data-product-actions>
  12162.            <div class="productitem--listview-price">
  12163.              
  12164.  
  12165.  
  12166.  
  12167.  
  12168.  
  12169.  
  12170.  
  12171.  
  12172.  
  12173.  
  12174.  
  12175.  
  12176.  
  12177.  
  12178.  
  12179.  
  12180.  
  12181.  
  12182.  
  12183.  
  12184.  
  12185.  
  12186.  
  12187.  
  12188.  
  12189.  
  12190.  
  12191.  
  12192.  
  12193.  
  12194. <div class="price productitem__price ">
  12195.  
  12196.    <div
  12197.      class="price__compare-at visible"
  12198.      data-price-compare-container
  12199.    >
  12200.  
  12201.      
  12202.        <span class="money price__original" data-price-original></span>
  12203.      
  12204.    </div>
  12205.  
  12206.  
  12207.    
  12208.      
  12209.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12210.        
  12211.          <span class="visually-hidden">Original price</span>
  12212.          <span class="money price__compare-at--min" data-price-compare-min>
  12213.            $62.99
  12214.          </span>
  12215.          -
  12216.          <span class="visually-hidden">Original price</span>
  12217.          <span class="money price__compare-at--max" data-price-compare-max>
  12218.            $62.99
  12219.          </span>
  12220.        
  12221.      </div>
  12222.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12223.        <span class="visually-hidden">Original price</span>
  12224.        <span class="money price__compare-at--single" data-price-compare>
  12225.          
  12226.        </span>
  12227.      </div>
  12228.    
  12229.  
  12230.  
  12231.  <div class="price__current price__current--emphasize " data-price-container>
  12232.  
  12233.    
  12234.  
  12235.    
  12236.      
  12237.      
  12238.      <span class="money" data-price>
  12239.        $62.99
  12240.      </span>
  12241.    
  12242.    
  12243.  </div>
  12244.  
  12245.  
  12246.    
  12247.    <div class="price__current--hidden" data-current-price-range-hidden>
  12248.      
  12249.        <span class="money price__current--min" data-price-min>$62.99</span>
  12250.        -
  12251.        <span class="money price__current--max" data-price-max>$62.99</span>
  12252.      
  12253.    </div>
  12254.    <div class="price__current--hidden" data-current-price-hidden>
  12255.      <span class="visually-hidden">Current price</span>
  12256.      <span class="money" data-price>
  12257.        $62.99
  12258.      </span>
  12259.    </div>
  12260.  
  12261.  
  12262.  
  12263.    
  12264.    
  12265.    
  12266.    
  12267.  
  12268.    <div
  12269.      class="
  12270.        productitem__unit-price
  12271.        hidden
  12272.      "
  12273.      data-unit-price
  12274.    >
  12275.      <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>
  12276.    </div>
  12277.  
  12278.  
  12279.  
  12280. </div>
  12281.  
  12282.  
  12283.            </div>
  12284.  
  12285.            <div class="productitem--listview-badge">
  12286.              
  12287.  
  12288.  
  12289.  
  12290.  
  12291.  
  12292.  
  12293.  
  12294.  
  12295.  
  12296.  
  12297.  
  12298.  
  12299.  
  12300.  
  12301.  
  12302.  
  12303.  
  12304.  
  12305.  
  12306.  
  12307.  
  12308.  
  12309.  
  12310.  
  12311.  
  12312.  
  12313.  
  12314.            </div>
  12315.  
  12316.            
  12317.              <div
  12318.                class="
  12319.                  productitem--action
  12320.                  quickshop-button
  12321.                  
  12322.                "
  12323.              >
  12324.                <button
  12325.                  class="productitem--action-trigger button-secondary"
  12326.                  data-quickshop-full
  12327.                  
  12328.                  
  12329.                  type="button"
  12330.                >
  12331.                  Quick shop
  12332.                </button>
  12333.              </div>
  12334.            
  12335.  
  12336.            
  12337.              <div
  12338.                class="
  12339.                  productitem--action
  12340.                  atc--button
  12341.                  
  12342.                "
  12343.              >
  12344.                <button
  12345.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12346.                  type="button"
  12347.                  aria-label="Add to cart"
  12348.                  
  12349.                    data-quick-buy
  12350.                  
  12351.                  data-variant-id="12366737309719"
  12352.                  
  12353.                >
  12354.                  <span class="atc-button--text">
  12355.                    Add to cart
  12356.                  </span>
  12357.                  <span class="atc-button--icon"><svg
  12358.  aria-hidden="true"
  12359.  focusable="false"
  12360.  role="presentation"
  12361.  width="26"
  12362.  height="26"
  12363.  viewBox="0 0 26 26"
  12364.  xmlns="http://www.w3.org/2000/svg"
  12365. >
  12366.  <g fill-rule="nonzero" fill="currentColor">
  12367.    <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"/>
  12368.  </g>
  12369. </svg></span>
  12370.                </button>
  12371.              </div>
  12372.            
  12373.          </div>
  12374.        
  12375.      
  12376.    </div>
  12377.  </div>
  12378.  
  12379.  
  12380.    <script type="application/json" data-quick-buy-settings>
  12381.      {
  12382.        "cart_redirection": true,
  12383.        "money_format": "${{amount}}"
  12384.      }
  12385.    </script>
  12386.  
  12387. </li>
  12388.    
  12389.      
  12390.  
  12391.  
  12392.  
  12393.  
  12394.  
  12395.  
  12396.  
  12397.  
  12398.  
  12399.  
  12400.  
  12401.  
  12402.  
  12403.  
  12404.  
  12405.  
  12406.  
  12407.  
  12408.  
  12409.  
  12410.  
  12411.  
  12412.  
  12413.  
  12414.  
  12415.  
  12416.  
  12417.  
  12418.  
  12419.  
  12420.  
  12421.  
  12422.    
  12423.  
  12424.  
  12425.  
  12426. <li
  12427.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  12428.  data-product-item
  12429.  data-product-quickshop-url="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12430.  
  12431. >
  12432.  <div class="productitem" data-product-item-content>
  12433.    
  12434.    
  12435.    
  12436.    
  12437.  
  12438.    
  12439.  
  12440.    
  12441.  
  12442.    <div class="productitem__container">
  12443.      
  12444.  
  12445.      <div class="productitem__image-container">
  12446.        <a target="_blank"
  12447.          class="productitem--image-link"
  12448.          href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12449.          aria-label="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12450.          tabindex="-1"
  12451.          data-product-page-link
  12452.        >
  12453.          <figure
  12454.            class="productitem--image"
  12455.            data-product-item-image
  12456.            
  12457.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  12458.            
  12459.          >
  12460.            
  12461.              
  12462.              
  12463.  
  12464.  
  12465.    <noscript data-rimg-noscript>
  12466.      <img loading="lazy"
  12467.        
  12468.          src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12469.        
  12470.  
  12471.        alt=""
  12472.        data-rimg="noscript"
  12473.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700 1x"
  12474.        class="productitem--image-primary"
  12475.        
  12476.        
  12477.      >
  12478.    </noscript>
  12479.  
  12480.  
  12481.  <img loading="lazy"
  12482.    
  12483.      src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12484.    
  12485.    alt=""
  12486.  
  12487.    
  12488.      data-rimg="lazy"
  12489.      data-rimg-scale="1"
  12490.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_{size}.jpg?v=1648042700"
  12491.      data-rimg-max="500x500"
  12492.      data-rimg-crop="false"
  12493.      
  12494.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  12495.    
  12496.  
  12497.    class="productitem--image-primary"
  12498.    
  12499.    
  12500.  >
  12501.  
  12502.  
  12503.  
  12504.  <div data-rimg-canvas></div>
  12505.  
  12506.  
  12507.            
  12508.  
  12509.            
  12510.  
  12511.  
  12512.  
  12513.  
  12514.  
  12515.  
  12516.  
  12517.  
  12518.  
  12519.  
  12520.  
  12521.  
  12522.  
  12523.  
  12524.  
  12525.  
  12526.  
  12527.  
  12528.  
  12529.  
  12530.  
  12531.  
  12532.  
  12533.  
  12534.  
  12535.  
  12536.  
  12537.          </figure>
  12538.        </a>
  12539.      </div><div class="productitem--info">
  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.  
  12569.  
  12570.  
  12571.  
  12572.  
  12573.  
  12574.  
  12575.  
  12576.  
  12577. <div class="price productitem__price ">
  12578.  
  12579.    <div
  12580.      class="price__compare-at visible"
  12581.      data-price-compare-container
  12582.    >
  12583.  
  12584.      
  12585.        <span class="money price__original" data-price-original></span>
  12586.      
  12587.    </div>
  12588.  
  12589.  
  12590.    
  12591.      
  12592.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12593.        
  12594.          <span class="visually-hidden">Original price</span>
  12595.          <span class="money price__compare-at--min" data-price-compare-min>
  12596.            $54.99
  12597.          </span>
  12598.          -
  12599.          <span class="visually-hidden">Original price</span>
  12600.          <span class="money price__compare-at--max" data-price-compare-max>
  12601.            $54.99
  12602.          </span>
  12603.        
  12604.      </div>
  12605.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12606.        <span class="visually-hidden">Original price</span>
  12607.        <span class="money price__compare-at--single" data-price-compare>
  12608.          
  12609.        </span>
  12610.      </div>
  12611.    
  12612.  
  12613.  
  12614.  <div class="price__current price__current--emphasize " data-price-container>
  12615.  
  12616.    
  12617.  
  12618.    
  12619.      
  12620.      
  12621.      <span class="money" data-price>
  12622.        $54.99
  12623.      </span>
  12624.    
  12625.    
  12626.  </div>
  12627.  
  12628.  
  12629.    
  12630.    <div class="price__current--hidden" data-current-price-range-hidden>
  12631.      
  12632.        <span class="money price__current--min" data-price-min>$54.99</span>
  12633.        -
  12634.        <span class="money price__current--max" data-price-max>$54.99</span>
  12635.      
  12636.    </div>
  12637.    <div class="price__current--hidden" data-current-price-hidden>
  12638.      <span class="visually-hidden">Current price</span>
  12639.      <span class="money" data-price>
  12640.        $54.99
  12641.      </span>
  12642.    </div>
  12643.  
  12644.  
  12645.  
  12646.    
  12647.    
  12648.    
  12649.    
  12650.  
  12651.    <div
  12652.      class="
  12653.        productitem__unit-price
  12654.        hidden
  12655.      "
  12656.      data-unit-price
  12657.    >
  12658.      <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>
  12659.    </div>
  12660.  
  12661.  
  12662.  
  12663. </div>
  12664.  
  12665.  
  12666.        
  12667.  
  12668.        <h2 class="productitem--title">
  12669.          <a href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10" data-product-page-link>
  12670.            4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10
  12671.          </a>
  12672.        </h2>
  12673.  
  12674.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12675.        <div class="star_container 3929813123159"></div>
  12676.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12677.  
  12678.        
  12679.          
  12680.            <span class="productitem--vendor">
  12681.              <a href="/collections/vendors?q=Dell" title="Dell">Dell</a>
  12682.            </span>
  12683.          
  12684.        
  12685.  
  12686.        
  12687.  
  12688.        
  12689.          
  12690.            <div class="productitem__stock-level">
  12691.              <!--
  12692.  
  12693.  
  12694.  
  12695.  
  12696.  
  12697.  
  12698.  
  12699. <div class="product-stock-level-wrapper" >
  12700.  
  12701.    <span class="
  12702.  product-stock-level
  12703.  product-stock-level--continue-selling
  12704.  
  12705. ">
  12706.      
  12707.  
  12708.      <span class="product-stock-level__text">
  12709.        
  12710.        <div class="product-stock-level__badge-text">
  12711.          
  12712.  
  12713.    In stock
  12714.  
  12715.  
  12716.        </div>
  12717.      </span>
  12718.    </span>
  12719.  
  12720. </div>
  12721. -->
  12722.              
  12723.  
  12724.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12725.  
  12726.  
  12727.  
  12728.  
  12729.  
  12730.  
  12731.  
  12732.            </div>
  12733.          
  12734.  
  12735.          
  12736.            
  12737.          
  12738.        
  12739.  
  12740.        
  12741.          <div class="productitem--description">
  12742.            <p>
  12743. 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>
  12744.  
  12745.            
  12746.              <a
  12747.                href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12748.                class="productitem--link"
  12749.                data-product-page-link
  12750.              >
  12751.                View full details
  12752.              </a>
  12753.            
  12754.          </div>
  12755.        
  12756.      </div>
  12757.  
  12758.      
  12759.        
  12760.          
  12761.          
  12762.          
  12763.  
  12764.          
  12765.          
  12766.  
  12767.          
  12768.  
  12769.          
  12770.  
  12771.          <div class="productitem--actions" data-product-actions>
  12772.            <div class="productitem--listview-price">
  12773.              
  12774.  
  12775.  
  12776.  
  12777.  
  12778.  
  12779.  
  12780.  
  12781.  
  12782.  
  12783.  
  12784.  
  12785.  
  12786.  
  12787.  
  12788.  
  12789.  
  12790.  
  12791.  
  12792.  
  12793.  
  12794.  
  12795.  
  12796.  
  12797.  
  12798.  
  12799.  
  12800.  
  12801.  
  12802.  
  12803.  
  12804. <div class="price productitem__price ">
  12805.  
  12806.    <div
  12807.      class="price__compare-at visible"
  12808.      data-price-compare-container
  12809.    >
  12810.  
  12811.      
  12812.        <span class="money price__original" data-price-original></span>
  12813.      
  12814.    </div>
  12815.  
  12816.  
  12817.    
  12818.      
  12819.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12820.        
  12821.          <span class="visually-hidden">Original price</span>
  12822.          <span class="money price__compare-at--min" data-price-compare-min>
  12823.            $54.99
  12824.          </span>
  12825.          -
  12826.          <span class="visually-hidden">Original price</span>
  12827.          <span class="money price__compare-at--max" data-price-compare-max>
  12828.            $54.99
  12829.          </span>
  12830.        
  12831.      </div>
  12832.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12833.        <span class="visually-hidden">Original price</span>
  12834.        <span class="money price__compare-at--single" data-price-compare>
  12835.          
  12836.        </span>
  12837.      </div>
  12838.    
  12839.  
  12840.  
  12841.  <div class="price__current price__current--emphasize " data-price-container>
  12842.  
  12843.    
  12844.  
  12845.    
  12846.      
  12847.      
  12848.      <span class="money" data-price>
  12849.        $54.99
  12850.      </span>
  12851.    
  12852.    
  12853.  </div>
  12854.  
  12855.  
  12856.    
  12857.    <div class="price__current--hidden" data-current-price-range-hidden>
  12858.      
  12859.        <span class="money price__current--min" data-price-min>$54.99</span>
  12860.        -
  12861.        <span class="money price__current--max" data-price-max>$54.99</span>
  12862.      
  12863.    </div>
  12864.    <div class="price__current--hidden" data-current-price-hidden>
  12865.      <span class="visually-hidden">Current price</span>
  12866.      <span class="money" data-price>
  12867.        $54.99
  12868.      </span>
  12869.    </div>
  12870.  
  12871.  
  12872.  
  12873.    
  12874.    
  12875.    
  12876.    
  12877.  
  12878.    <div
  12879.      class="
  12880.        productitem__unit-price
  12881.        hidden
  12882.      "
  12883.      data-unit-price
  12884.    >
  12885.      <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>
  12886.    </div>
  12887.  
  12888.  
  12889.  
  12890. </div>
  12891.  
  12892.  
  12893.            </div>
  12894.  
  12895.            <div class="productitem--listview-badge">
  12896.              
  12897.  
  12898.  
  12899.  
  12900.  
  12901.  
  12902.  
  12903.  
  12904.  
  12905.  
  12906.  
  12907.  
  12908.  
  12909.  
  12910.  
  12911.  
  12912.  
  12913.  
  12914.  
  12915.  
  12916.  
  12917.  
  12918.  
  12919.  
  12920.  
  12921.  
  12922.  
  12923.  
  12924.            </div>
  12925.  
  12926.            
  12927.              <div
  12928.                class="
  12929.                  productitem--action
  12930.                  quickshop-button
  12931.                  
  12932.                "
  12933.              >
  12934.                <button
  12935.                  class="productitem--action-trigger button-secondary"
  12936.                  data-quickshop-full
  12937.                  
  12938.                  
  12939.                  type="button"
  12940.                >
  12941.                  Quick shop
  12942.                </button>
  12943.              </div>
  12944.            
  12945.  
  12946.            
  12947.              <div
  12948.                class="
  12949.                  productitem--action
  12950.                  atc--button
  12951.                  
  12952.                "
  12953.              >
  12954.                <button
  12955.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12956.                  type="button"
  12957.                  aria-label="Add to cart"
  12958.                  
  12959.                    data-quick-buy
  12960.                  
  12961.                  data-variant-id="29531497529431"
  12962.                  
  12963.                >
  12964.                  <span class="atc-button--text">
  12965.                    Add to cart
  12966.                  </span>
  12967.                  <span class="atc-button--icon"><svg
  12968.  aria-hidden="true"
  12969.  focusable="false"
  12970.  role="presentation"
  12971.  width="26"
  12972.  height="26"
  12973.  viewBox="0 0 26 26"
  12974.  xmlns="http://www.w3.org/2000/svg"
  12975. >
  12976.  <g fill-rule="nonzero" fill="currentColor">
  12977.    <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"/>
  12978.  </g>
  12979. </svg></span>
  12980.                </button>
  12981.              </div>
  12982.            
  12983.          </div>
  12984.        
  12985.      
  12986.    </div>
  12987.  </div>
  12988.  
  12989.  
  12990.    <script type="application/json" data-quick-buy-settings>
  12991.      {
  12992.        "cart_redirection": true,
  12993.        "money_format": "${{amount}}"
  12994.      }
  12995.    </script>
  12996.  
  12997. </li>
  12998.    
  12999.      
  13000.  
  13001.  
  13002.  
  13003.  
  13004.  
  13005.  
  13006.  
  13007.  
  13008.  
  13009.  
  13010.  
  13011.  
  13012.  
  13013.  
  13014.  
  13015.  
  13016.  
  13017.  
  13018.  
  13019.  
  13020.  
  13021.  
  13022.  
  13023.  
  13024.  
  13025.  
  13026.  
  13027.  
  13028.  
  13029.  
  13030.  
  13031.  
  13032.    
  13033.  
  13034.  
  13035.  
  13036. <li
  13037.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13038.  data-product-item
  13039.  data-product-quickshop-url="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13040.  
  13041. >
  13042.  <div class="productitem" data-product-item-content>
  13043.    
  13044.    
  13045.    
  13046.    
  13047.  
  13048.    
  13049.  
  13050.    
  13051.  
  13052.    <div class="productitem__container">
  13053.      
  13054.  
  13055.      <div class="productitem__image-container">
  13056.        <a target="_blank"
  13057.          class="productitem--image-link"
  13058.          href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13059.          aria-label="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13060.          tabindex="-1"
  13061.          data-product-page-link
  13062.        >
  13063.          <figure
  13064.            class="productitem--image"
  13065.            data-product-item-image
  13066.            
  13067.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13068.            
  13069.          >
  13070.            
  13071.              
  13072.              
  13073.  
  13074.  
  13075.    <noscript data-rimg-noscript>
  13076.      <img loading="lazy"
  13077.        
  13078.          src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13079.        
  13080.  
  13081.        alt="925740-002"
  13082.        data-rimg="noscript"
  13083.        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"
  13084.        class="productitem--image-primary"
  13085.        
  13086.        
  13087.      >
  13088.    </noscript>
  13089.  
  13090.  
  13091.  <img loading="lazy"
  13092.    
  13093.      src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13094.    
  13095.    alt="925740-002"
  13096.  
  13097.    
  13098.      data-rimg="lazy"
  13099.      data-rimg-scale="1"
  13100.      data-rimg-template="//laptopparts.ca/cdn/shop/files/tpn-ca06_{size}.jpg?v=1721171198"
  13101.      data-rimg-max="1043x1043"
  13102.      data-rimg-crop="false"
  13103.      
  13104.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  13105.    
  13106.  
  13107.    class="productitem--image-primary"
  13108.    
  13109.    
  13110.  >
  13111.  
  13112.  
  13113.  
  13114.  <div data-rimg-canvas></div>
  13115.  
  13116.  
  13117.            
  13118.  
  13119.            
  13120.  
  13121.  
  13122.  
  13123.  
  13124.  
  13125.  
  13126.  
  13127.  
  13128.  
  13129.  
  13130.  
  13131.  
  13132.  
  13133.  
  13134.  
  13135.  
  13136.  
  13137.  
  13138.  
  13139.  
  13140.  
  13141.  
  13142.  
  13143.  
  13144.  
  13145.  
  13146.  
  13147.          </figure>
  13148.        </a>
  13149.      </div><div class="productitem--info">
  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.  
  13179.  
  13180.  
  13181.  
  13182.  
  13183.  
  13184.  
  13185.  
  13186.  
  13187. <div class="price productitem__price ">
  13188.  
  13189.    <div
  13190.      class="price__compare-at visible"
  13191.      data-price-compare-container
  13192.    >
  13193.  
  13194.      
  13195.        <span class="money price__original" data-price-original></span>
  13196.      
  13197.    </div>
  13198.  
  13199.  
  13200.    
  13201.      
  13202.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13203.        
  13204.          <span class="visually-hidden">Original price</span>
  13205.          <span class="money price__compare-at--min" data-price-compare-min>
  13206.            $65.98
  13207.          </span>
  13208.          -
  13209.          <span class="visually-hidden">Original price</span>
  13210.          <span class="money price__compare-at--max" data-price-compare-max>
  13211.            $65.98
  13212.          </span>
  13213.        
  13214.      </div>
  13215.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13216.        <span class="visually-hidden">Original price</span>
  13217.        <span class="money price__compare-at--single" data-price-compare>
  13218.          
  13219.        </span>
  13220.      </div>
  13221.    
  13222.  
  13223.  
  13224.  <div class="price__current price__current--emphasize " data-price-container>
  13225.  
  13226.    
  13227.  
  13228.    
  13229.      
  13230.      
  13231.      <span class="money" data-price>
  13232.        $65.98
  13233.      </span>
  13234.    
  13235.    
  13236.  </div>
  13237.  
  13238.  
  13239.    
  13240.    <div class="price__current--hidden" data-current-price-range-hidden>
  13241.      
  13242.        <span class="money price__current--min" data-price-min>$65.98</span>
  13243.        -
  13244.        <span class="money price__current--max" data-price-max>$65.98</span>
  13245.      
  13246.    </div>
  13247.    <div class="price__current--hidden" data-current-price-hidden>
  13248.      <span class="visually-hidden">Current price</span>
  13249.      <span class="money" data-price>
  13250.        $65.98
  13251.      </span>
  13252.    </div>
  13253.  
  13254.  
  13255.  
  13256.    
  13257.    
  13258.    
  13259.    
  13260.  
  13261.    <div
  13262.      class="
  13263.        productitem__unit-price
  13264.        hidden
  13265.      "
  13266.      data-unit-price
  13267.    >
  13268.      <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>
  13269.    </div>
  13270.  
  13271.  
  13272.  
  13273. </div>
  13274.  
  13275.  
  13276.        
  13277.  
  13278.        <h2 class="productitem--title">
  13279.          <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>
  13280.            925740-002 Genuine 65W USB Type-C Adapter Charger for HP Elite X2 1012 G2 Elitebook x360
  13281.          </a>
  13282.        </h2>
  13283.  
  13284.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13285.        <div class="star_container 6881873985623"></div>
  13286.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13287.  
  13288.        
  13289.          
  13290.            <span class="productitem--vendor">
  13291.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  13292.            </span>
  13293.          
  13294.        
  13295.  
  13296.        
  13297.  
  13298.        
  13299.          
  13300.            <div class="productitem__stock-level">
  13301.              <!--
  13302.  
  13303.  
  13304.  
  13305.  
  13306.  
  13307.  
  13308.  
  13309. <div class="product-stock-level-wrapper" >
  13310.  
  13311.    <span class="
  13312.  product-stock-level
  13313.  product-stock-level--continue-selling
  13314.  
  13315. ">
  13316.      
  13317.  
  13318.      <span class="product-stock-level__text">
  13319.        
  13320.        <div class="product-stock-level__badge-text">
  13321.          
  13322.  
  13323.    In stock
  13324.  
  13325.  
  13326.        </div>
  13327.      </span>
  13328.    </span>
  13329.  
  13330. </div>
  13331. -->
  13332.              
  13333.  
  13334.  
  13335.    
  13336.      <b style="color:green">In stock</b>
  13337.    
  13338.  
  13339.  
  13340.  
  13341.  
  13342.  
  13343.  
  13344.  
  13345.            </div>
  13346.          
  13347.  
  13348.          
  13349.            
  13350.          
  13351.        
  13352.  
  13353.        
  13354.          <div class="productitem--description">
  13355.            <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>
  13356.  
  13357.            
  13358.              <a
  13359.                href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13360.                class="productitem--link"
  13361.                data-product-page-link
  13362.              >
  13363.                View full details
  13364.              </a>
  13365.            
  13366.          </div>
  13367.        
  13368.      </div>
  13369.  
  13370.      
  13371.        
  13372.          
  13373.          
  13374.          
  13375.  
  13376.          
  13377.          
  13378.  
  13379.          
  13380.  
  13381.          
  13382.  
  13383.          <div class="productitem--actions" data-product-actions>
  13384.            <div class="productitem--listview-price">
  13385.              
  13386.  
  13387.  
  13388.  
  13389.  
  13390.  
  13391.  
  13392.  
  13393.  
  13394.  
  13395.  
  13396.  
  13397.  
  13398.  
  13399.  
  13400.  
  13401.  
  13402.  
  13403.  
  13404.  
  13405.  
  13406.  
  13407.  
  13408.  
  13409.  
  13410.  
  13411.  
  13412.  
  13413.  
  13414.  
  13415.  
  13416. <div class="price productitem__price ">
  13417.  
  13418.    <div
  13419.      class="price__compare-at visible"
  13420.      data-price-compare-container
  13421.    >
  13422.  
  13423.      
  13424.        <span class="money price__original" data-price-original></span>
  13425.      
  13426.    </div>
  13427.  
  13428.  
  13429.    
  13430.      
  13431.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13432.        
  13433.          <span class="visually-hidden">Original price</span>
  13434.          <span class="money price__compare-at--min" data-price-compare-min>
  13435.            $65.98
  13436.          </span>
  13437.          -
  13438.          <span class="visually-hidden">Original price</span>
  13439.          <span class="money price__compare-at--max" data-price-compare-max>
  13440.            $65.98
  13441.          </span>
  13442.        
  13443.      </div>
  13444.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13445.        <span class="visually-hidden">Original price</span>
  13446.        <span class="money price__compare-at--single" data-price-compare>
  13447.          
  13448.        </span>
  13449.      </div>
  13450.    
  13451.  
  13452.  
  13453.  <div class="price__current price__current--emphasize " data-price-container>
  13454.  
  13455.    
  13456.  
  13457.    
  13458.      
  13459.      
  13460.      <span class="money" data-price>
  13461.        $65.98
  13462.      </span>
  13463.    
  13464.    
  13465.  </div>
  13466.  
  13467.  
  13468.    
  13469.    <div class="price__current--hidden" data-current-price-range-hidden>
  13470.      
  13471.        <span class="money price__current--min" data-price-min>$65.98</span>
  13472.        -
  13473.        <span class="money price__current--max" data-price-max>$65.98</span>
  13474.      
  13475.    </div>
  13476.    <div class="price__current--hidden" data-current-price-hidden>
  13477.      <span class="visually-hidden">Current price</span>
  13478.      <span class="money" data-price>
  13479.        $65.98
  13480.      </span>
  13481.    </div>
  13482.  
  13483.  
  13484.  
  13485.    
  13486.    
  13487.    
  13488.    
  13489.  
  13490.    <div
  13491.      class="
  13492.        productitem__unit-price
  13493.        hidden
  13494.      "
  13495.      data-unit-price
  13496.    >
  13497.      <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>
  13498.    </div>
  13499.  
  13500.  
  13501.  
  13502. </div>
  13503.  
  13504.  
  13505.            </div>
  13506.  
  13507.            <div class="productitem--listview-badge">
  13508.              
  13509.  
  13510.  
  13511.  
  13512.  
  13513.  
  13514.  
  13515.  
  13516.  
  13517.  
  13518.  
  13519.  
  13520.  
  13521.  
  13522.  
  13523.  
  13524.  
  13525.  
  13526.  
  13527.  
  13528.  
  13529.  
  13530.  
  13531.  
  13532.  
  13533.  
  13534.  
  13535.  
  13536.            </div>
  13537.  
  13538.            
  13539.              <div
  13540.                class="
  13541.                  productitem--action
  13542.                  quickshop-button
  13543.                  
  13544.                "
  13545.              >
  13546.                <button
  13547.                  class="productitem--action-trigger button-secondary"
  13548.                  data-quickshop-full
  13549.                  
  13550.                  
  13551.                  type="button"
  13552.                >
  13553.                  Quick shop
  13554.                </button>
  13555.              </div>
  13556.            
  13557.  
  13558.            
  13559.              <div
  13560.                class="
  13561.                  productitem--action
  13562.                  atc--button
  13563.                  
  13564.                "
  13565.              >
  13566.                <button
  13567.                  class="productitem--action-trigger productitem--action-atc button-primary"
  13568.                  type="button"
  13569.                  aria-label="Add to cart"
  13570.                  
  13571.                    data-quick-buy
  13572.                  
  13573.                  data-variant-id="40183331749975"
  13574.                  
  13575.                >
  13576.                  <span class="atc-button--text">
  13577.                    Add to cart
  13578.                  </span>
  13579.                  <span class="atc-button--icon"><svg
  13580.  aria-hidden="true"
  13581.  focusable="false"
  13582.  role="presentation"
  13583.  width="26"
  13584.  height="26"
  13585.  viewBox="0 0 26 26"
  13586.  xmlns="http://www.w3.org/2000/svg"
  13587. >
  13588.  <g fill-rule="nonzero" fill="currentColor">
  13589.    <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"/>
  13590.  </g>
  13591. </svg></span>
  13592.                </button>
  13593.              </div>
  13594.            
  13595.          </div>
  13596.        
  13597.      
  13598.    </div>
  13599.  </div>
  13600.  
  13601.  
  13602.    <script type="application/json" data-quick-buy-settings>
  13603.      {
  13604.        "cart_redirection": true,
  13605.        "money_format": "${{amount}}"
  13606.      }
  13607.    </script>
  13608.  
  13609. </li>
  13610.    
  13611.      
  13612.  
  13613.  
  13614.  
  13615.  
  13616.  
  13617.  
  13618.  
  13619.  
  13620.  
  13621.  
  13622.  
  13623.  
  13624.  
  13625.  
  13626.  
  13627.  
  13628.  
  13629.  
  13630.  
  13631.  
  13632.  
  13633.  
  13634.  
  13635.  
  13636.  
  13637.  
  13638.  
  13639.  
  13640.  
  13641.  
  13642.  
  13643.  
  13644.    
  13645.  
  13646.  
  13647.  
  13648. <li
  13649.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13650.  data-product-item
  13651.  data-product-quickshop-url="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13652.  
  13653. >
  13654.  <div class="productitem" data-product-item-content>
  13655.    
  13656.    
  13657.    
  13658.    
  13659.  
  13660.    
  13661.  
  13662.    
  13663.  
  13664.    <div class="productitem__container">
  13665.      
  13666.  
  13667.      <div class="productitem__image-container">
  13668.        <a target="_blank"
  13669.          class="productitem--image-link"
  13670.          href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13671.          aria-label="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13672.          tabindex="-1"
  13673.          data-product-page-link
  13674.        >
  13675.          <figure
  13676.            class="productitem--image"
  13677.            data-product-item-image
  13678.            
  13679.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13680.            
  13681.          >
  13682.            
  13683.              
  13684.              
  13685.  
  13686.  
  13687.    <noscript data-rimg-noscript>
  13688.      <img loading="lazy"
  13689.        
  13690.          src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  13691.        
  13692.  
  13693.        alt=""
  13694.        data-rimg="noscript"
  13695.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166 1x"
  13696.        class="productitem--image-primary"
  13697.        
  13698.        
  13699.      >
  13700.    </noscript>
  13701.  
  13702.  
  13703.  <img loading="lazy"
  13704.    
  13705.      src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  13706.    
  13707.    alt=""
  13708.  
  13709.    
  13710.      data-rimg="lazy"
  13711.      data-rimg-scale="1"
  13712.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_{size}.jpg?v=1648046166"
  13713.      data-rimg-max="500x500"
  13714.      data-rimg-crop="false"
  13715.      
  13716.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  13717.    
  13718.  
  13719.    class="productitem--image-primary"
  13720.    
  13721.    
  13722.  >
  13723.  
  13724.  
  13725.  
  13726.  <div data-rimg-canvas></div>
  13727.  
  13728.  
  13729.            
  13730.  
  13731.            
  13732.  
  13733.  
  13734.  
  13735.  
  13736.  
  13737.  
  13738.  
  13739.  
  13740.  
  13741.  
  13742.  
  13743.  
  13744.  
  13745.  
  13746.  
  13747.  
  13748.  
  13749.  
  13750.  
  13751.  
  13752.  
  13753.  
  13754.  
  13755.  
  13756.  
  13757.  
  13758.  
  13759.          </figure>
  13760.        </a>
  13761.      </div><div class="productitem--info">
  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.  
  13791.  
  13792.  
  13793.  
  13794.  
  13795.  
  13796.  
  13797.  
  13798.  
  13799. <div class="price productitem__price ">
  13800.  
  13801.    <div
  13802.      class="price__compare-at visible"
  13803.      data-price-compare-container
  13804.    >
  13805.  
  13806.      
  13807.        <span class="money price__original" data-price-original></span>
  13808.      
  13809.    </div>
  13810.  
  13811.  
  13812.    
  13813.      
  13814.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13815.        
  13816.          <span class="visually-hidden">Original price</span>
  13817.          <span class="money price__compare-at--min" data-price-compare-min>
  13818.            $54.99
  13819.          </span>
  13820.          -
  13821.          <span class="visually-hidden">Original price</span>
  13822.          <span class="money price__compare-at--max" data-price-compare-max>
  13823.            $54.99
  13824.          </span>
  13825.        
  13826.      </div>
  13827.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13828.        <span class="visually-hidden">Original price</span>
  13829.        <span class="money price__compare-at--single" data-price-compare>
  13830.          
  13831.        </span>
  13832.      </div>
  13833.    
  13834.  
  13835.  
  13836.  <div class="price__current price__current--emphasize " data-price-container>
  13837.  
  13838.    
  13839.  
  13840.    
  13841.      
  13842.      
  13843.      <span class="money" data-price>
  13844.        $54.99
  13845.      </span>
  13846.    
  13847.    
  13848.  </div>
  13849.  
  13850.  
  13851.    
  13852.    <div class="price__current--hidden" data-current-price-range-hidden>
  13853.      
  13854.        <span class="money price__current--min" data-price-min>$54.99</span>
  13855.        -
  13856.        <span class="money price__current--max" data-price-max>$54.99</span>
  13857.      
  13858.    </div>
  13859.    <div class="price__current--hidden" data-current-price-hidden>
  13860.      <span class="visually-hidden">Current price</span>
  13861.      <span class="money" data-price>
  13862.        $54.99
  13863.      </span>
  13864.    </div>
  13865.  
  13866.  
  13867.  
  13868.    
  13869.    
  13870.    
  13871.    
  13872.  
  13873.    <div
  13874.      class="
  13875.        productitem__unit-price
  13876.        hidden
  13877.      "
  13878.      data-unit-price
  13879.    >
  13880.      <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>
  13881.    </div>
  13882.  
  13883.  
  13884.  
  13885. </div>
  13886.  
  13887.  
  13888.        
  13889.  
  13890.        <h2 class="productitem--title">
  13891.          <a href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001" data-product-page-link>
  13892.            Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001
  13893.          </a>
  13894.        </h2>
  13895.  
  13896.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13897.        <div class="star_container 3929815122007"></div>
  13898.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13899.  
  13900.        
  13901.          
  13902.            <span class="productitem--vendor">
  13903.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  13904.            </span>
  13905.          
  13906.        
  13907.  
  13908.        
  13909.  
  13910.        
  13911.          
  13912.            <div class="productitem__stock-level">
  13913.              <!--
  13914.  
  13915.  
  13916.  
  13917.  
  13918.  
  13919.  
  13920.  
  13921. <div class="product-stock-level-wrapper" >
  13922.  
  13923.    <span class="
  13924.  product-stock-level
  13925.  product-stock-level--continue-selling
  13926.  
  13927. ">
  13928.      
  13929.  
  13930.      <span class="product-stock-level__text">
  13931.        
  13932.        <div class="product-stock-level__badge-text">
  13933.          
  13934.  
  13935.    In stock
  13936.  
  13937.  
  13938.        </div>
  13939.      </span>
  13940.    </span>
  13941.  
  13942. </div>
  13943. -->
  13944.              
  13945.  
  13946.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  13947.  
  13948.  
  13949.  
  13950.  
  13951.  
  13952.  
  13953.  
  13954.            </div>
  13955.          
  13956.  
  13957.          
  13958.            
  13959.          
  13960.        
  13961.  
  13962.        
  13963.          <div class="productitem--description">
  13964.            <p>
  13965. Description: New Acer server replacement case cooling fan.
  13966.  
  13967. Compatible Part #'s: HI.R4300.001, DS09225B12UP021.
  13968.  
  13969. Compatible Models:
  13970. Acer Altos AT1...</p>
  13971.  
  13972.            
  13973.              <a
  13974.                href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13975.                class="productitem--link"
  13976.                data-product-page-link
  13977.              >
  13978.                View full details
  13979.              </a>
  13980.            
  13981.          </div>
  13982.        
  13983.      </div>
  13984.  
  13985.      
  13986.        
  13987.          
  13988.          
  13989.          
  13990.  
  13991.          
  13992.          
  13993.  
  13994.          
  13995.  
  13996.          
  13997.  
  13998.          <div class="productitem--actions" data-product-actions>
  13999.            <div class="productitem--listview-price">
  14000.              
  14001.  
  14002.  
  14003.  
  14004.  
  14005.  
  14006.  
  14007.  
  14008.  
  14009.  
  14010.  
  14011.  
  14012.  
  14013.  
  14014.  
  14015.  
  14016.  
  14017.  
  14018.  
  14019.  
  14020.  
  14021.  
  14022.  
  14023.  
  14024.  
  14025.  
  14026.  
  14027.  
  14028.  
  14029.  
  14030.  
  14031. <div class="price productitem__price ">
  14032.  
  14033.    <div
  14034.      class="price__compare-at visible"
  14035.      data-price-compare-container
  14036.    >
  14037.  
  14038.      
  14039.        <span class="money price__original" data-price-original></span>
  14040.      
  14041.    </div>
  14042.  
  14043.  
  14044.    
  14045.      
  14046.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14047.        
  14048.          <span class="visually-hidden">Original price</span>
  14049.          <span class="money price__compare-at--min" data-price-compare-min>
  14050.            $54.99
  14051.          </span>
  14052.          -
  14053.          <span class="visually-hidden">Original price</span>
  14054.          <span class="money price__compare-at--max" data-price-compare-max>
  14055.            $54.99
  14056.          </span>
  14057.        
  14058.      </div>
  14059.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14060.        <span class="visually-hidden">Original price</span>
  14061.        <span class="money price__compare-at--single" data-price-compare>
  14062.          
  14063.        </span>
  14064.      </div>
  14065.    
  14066.  
  14067.  
  14068.  <div class="price__current price__current--emphasize " data-price-container>
  14069.  
  14070.    
  14071.  
  14072.    
  14073.      
  14074.      
  14075.      <span class="money" data-price>
  14076.        $54.99
  14077.      </span>
  14078.    
  14079.    
  14080.  </div>
  14081.  
  14082.  
  14083.    
  14084.    <div class="price__current--hidden" data-current-price-range-hidden>
  14085.      
  14086.        <span class="money price__current--min" data-price-min>$54.99</span>
  14087.        -
  14088.        <span class="money price__current--max" data-price-max>$54.99</span>
  14089.      
  14090.    </div>
  14091.    <div class="price__current--hidden" data-current-price-hidden>
  14092.      <span class="visually-hidden">Current price</span>
  14093.      <span class="money" data-price>
  14094.        $54.99
  14095.      </span>
  14096.    </div>
  14097.  
  14098.  
  14099.  
  14100.    
  14101.    
  14102.    
  14103.    
  14104.  
  14105.    <div
  14106.      class="
  14107.        productitem__unit-price
  14108.        hidden
  14109.      "
  14110.      data-unit-price
  14111.    >
  14112.      <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>
  14113.    </div>
  14114.  
  14115.  
  14116.  
  14117. </div>
  14118.  
  14119.  
  14120.            </div>
  14121.  
  14122.            <div class="productitem--listview-badge">
  14123.              
  14124.  
  14125.  
  14126.  
  14127.  
  14128.  
  14129.  
  14130.  
  14131.  
  14132.  
  14133.  
  14134.  
  14135.  
  14136.  
  14137.  
  14138.  
  14139.  
  14140.  
  14141.  
  14142.  
  14143.  
  14144.  
  14145.  
  14146.  
  14147.  
  14148.  
  14149.  
  14150.  
  14151.            </div>
  14152.  
  14153.            
  14154.              <div
  14155.                class="
  14156.                  productitem--action
  14157.                  quickshop-button
  14158.                  
  14159.                "
  14160.              >
  14161.                <button
  14162.                  class="productitem--action-trigger button-secondary"
  14163.                  data-quickshop-full
  14164.                  
  14165.                  
  14166.                  type="button"
  14167.                >
  14168.                  Quick shop
  14169.                </button>
  14170.              </div>
  14171.            
  14172.  
  14173.            
  14174.              <div
  14175.                class="
  14176.                  productitem--action
  14177.                  atc--button
  14178.                  
  14179.                "
  14180.              >
  14181.                <button
  14182.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14183.                  type="button"
  14184.                  aria-label="Add to cart"
  14185.                  
  14186.                    data-quick-buy
  14187.                  
  14188.                  data-variant-id="29507473014871"
  14189.                  
  14190.                >
  14191.                  <span class="atc-button--text">
  14192.                    Add to cart
  14193.                  </span>
  14194.                  <span class="atc-button--icon"><svg
  14195.  aria-hidden="true"
  14196.  focusable="false"
  14197.  role="presentation"
  14198.  width="26"
  14199.  height="26"
  14200.  viewBox="0 0 26 26"
  14201.  xmlns="http://www.w3.org/2000/svg"
  14202. >
  14203.  <g fill-rule="nonzero" fill="currentColor">
  14204.    <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"/>
  14205.  </g>
  14206. </svg></span>
  14207.                </button>
  14208.              </div>
  14209.            
  14210.          </div>
  14211.        
  14212.      
  14213.    </div>
  14214.  </div>
  14215.  
  14216.  
  14217.    <script type="application/json" data-quick-buy-settings>
  14218.      {
  14219.        "cart_redirection": true,
  14220.        "money_format": "${{amount}}"
  14221.      }
  14222.    </script>
  14223.  
  14224. </li>
  14225.    
  14226.      
  14227.  
  14228.  
  14229.  
  14230.  
  14231.  
  14232.  
  14233.  
  14234.  
  14235.  
  14236.  
  14237.  
  14238.  
  14239.  
  14240.  
  14241.  
  14242.  
  14243.  
  14244.  
  14245.  
  14246.  
  14247.  
  14248.  
  14249.  
  14250.  
  14251.  
  14252.  
  14253.  
  14254.  
  14255.  
  14256.  
  14257.  
  14258.  
  14259.    
  14260.  
  14261.  
  14262.  
  14263. <li
  14264.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14265.  data-product-item
  14266.  data-product-quickshop-url="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14267.  
  14268. >
  14269.  <div class="productitem" data-product-item-content>
  14270.    
  14271.    
  14272.    
  14273.    
  14274.  
  14275.    
  14276.  
  14277.    
  14278.  
  14279.    <div class="productitem__container">
  14280.      
  14281.  
  14282.      <div class="productitem__image-container">
  14283.        <a target="_blank"
  14284.          class="productitem--image-link"
  14285.          href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14286.          aria-label="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14287.          tabindex="-1"
  14288.          data-product-page-link
  14289.        >
  14290.          <figure
  14291.            class="productitem--image"
  14292.            data-product-item-image
  14293.            
  14294.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14295.            
  14296.          >
  14297.            
  14298.              
  14299.              
  14300.  
  14301.  
  14302.    <noscript data-rimg-noscript>
  14303.      <img loading="lazy"
  14304.        
  14305.          src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14306.        
  14307.  
  14308.        alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14309.        data-rimg="noscript"
  14310.        srcset="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372 1x"
  14311.        class="productitem--image-primary"
  14312.        
  14313.        
  14314.      >
  14315.    </noscript>
  14316.  
  14317.  
  14318.  <img loading="lazy"
  14319.    
  14320.      src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14321.    
  14322.    alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14323.  
  14324.    
  14325.      data-rimg="lazy"
  14326.      data-rimg-scale="1"
  14327.      data-rimg-template="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_{size}.jpg?v=1715271372"
  14328.      data-rimg-max="500x500"
  14329.      data-rimg-crop="false"
  14330.      
  14331.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14332.    
  14333.  
  14334.    class="productitem--image-primary"
  14335.    
  14336.    
  14337.  >
  14338.  
  14339.  
  14340.  
  14341.  <div data-rimg-canvas></div>
  14342.  
  14343.  
  14344.            
  14345.  
  14346.            
  14347.  
  14348.  
  14349.  
  14350.  
  14351.  
  14352.  
  14353.  
  14354.  
  14355.  
  14356.  
  14357.  
  14358.  
  14359.  
  14360.  
  14361.  
  14362.  
  14363.  
  14364.  
  14365.  
  14366.  
  14367.  
  14368.  
  14369.  
  14370.  
  14371.  
  14372.  
  14373.  
  14374.          </figure>
  14375.        </a>
  14376.      </div><div class="productitem--info">
  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.  
  14406.  
  14407.  
  14408.  
  14409.  
  14410.  
  14411.  
  14412.  
  14413.  
  14414. <div class="price productitem__price ">
  14415.  
  14416.    <div
  14417.      class="price__compare-at visible"
  14418.      data-price-compare-container
  14419.    >
  14420.  
  14421.      
  14422.        <span class="money price__original" data-price-original></span>
  14423.      
  14424.    </div>
  14425.  
  14426.  
  14427.    
  14428.      
  14429.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14430.        
  14431.          <span class="visually-hidden">Original price</span>
  14432.          <span class="money price__compare-at--min" data-price-compare-min>
  14433.            $106.99
  14434.          </span>
  14435.          -
  14436.          <span class="visually-hidden">Original price</span>
  14437.          <span class="money price__compare-at--max" data-price-compare-max>
  14438.            $106.99
  14439.          </span>
  14440.        
  14441.      </div>
  14442.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14443.        <span class="visually-hidden">Original price</span>
  14444.        <span class="money price__compare-at--single" data-price-compare>
  14445.          
  14446.        </span>
  14447.      </div>
  14448.    
  14449.  
  14450.  
  14451.  <div class="price__current price__current--emphasize " data-price-container>
  14452.  
  14453.    
  14454.  
  14455.    
  14456.      
  14457.      
  14458.      <span class="money" data-price>
  14459.        $106.99
  14460.      </span>
  14461.    
  14462.    
  14463.  </div>
  14464.  
  14465.  
  14466.    
  14467.    <div class="price__current--hidden" data-current-price-range-hidden>
  14468.      
  14469.        <span class="money price__current--min" data-price-min>$106.99</span>
  14470.        -
  14471.        <span class="money price__current--max" data-price-max>$106.99</span>
  14472.      
  14473.    </div>
  14474.    <div class="price__current--hidden" data-current-price-hidden>
  14475.      <span class="visually-hidden">Current price</span>
  14476.      <span class="money" data-price>
  14477.        $106.99
  14478.      </span>
  14479.    </div>
  14480.  
  14481.  
  14482.  
  14483.    
  14484.    
  14485.    
  14486.    
  14487.  
  14488.    <div
  14489.      class="
  14490.        productitem__unit-price
  14491.        hidden
  14492.      "
  14493.      data-unit-price
  14494.    >
  14495.      <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>
  14496.    </div>
  14497.  
  14498.  
  14499.  
  14500. </div>
  14501.  
  14502.  
  14503.        
  14504.  
  14505.        <h2 class="productitem--title">
  14506.          <a href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  14507.            Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual
  14508.          </a>
  14509.        </h2>
  14510.  
  14511.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  14512.        <div class="star_container 4451279622"></div>
  14513.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  14514.  
  14515.        
  14516.          
  14517.            <span class="productitem--vendor">
  14518.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  14519.            </span>
  14520.          
  14521.        
  14522.  
  14523.        
  14524.  
  14525.        
  14526.          
  14527.            <div class="productitem__stock-level">
  14528.              <!--
  14529.  
  14530.  
  14531.  
  14532.  
  14533.  
  14534.  
  14535.  
  14536. <div class="product-stock-level-wrapper" >
  14537.  
  14538.    <span class="
  14539.  product-stock-level
  14540.  product-stock-level--continue-selling
  14541.  
  14542. ">
  14543.      
  14544.  
  14545.      <span class="product-stock-level__text">
  14546.        
  14547.        <div class="product-stock-level__badge-text">
  14548.          
  14549.  
  14550.    In stock
  14551.  
  14552.  
  14553.        </div>
  14554.      </span>
  14555.    </span>
  14556.  
  14557. </div>
  14558. -->
  14559.              
  14560.  
  14561.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  14562.  
  14563.  
  14564.  
  14565.  
  14566.  
  14567.  
  14568.  
  14569.            </div>
  14570.          
  14571.  
  14572.          
  14573.            
  14574.          
  14575.        
  14576.  
  14577.        
  14578.          <div class="productitem--description">
  14579.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  14580.  
  14581.            
  14582.              <a
  14583.                href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14584.                class="productitem--link"
  14585.                data-product-page-link
  14586.              >
  14587.                View full details
  14588.              </a>
  14589.            
  14590.          </div>
  14591.        
  14592.      </div>
  14593.  
  14594.      
  14595.        
  14596.          
  14597.          
  14598.          
  14599.  
  14600.          
  14601.          
  14602.  
  14603.          
  14604.  
  14605.          
  14606.  
  14607.          <div class="productitem--actions" data-product-actions>
  14608.            <div class="productitem--listview-price">
  14609.              
  14610.  
  14611.  
  14612.  
  14613.  
  14614.  
  14615.  
  14616.  
  14617.  
  14618.  
  14619.  
  14620.  
  14621.  
  14622.  
  14623.  
  14624.  
  14625.  
  14626.  
  14627.  
  14628.  
  14629.  
  14630.  
  14631.  
  14632.  
  14633.  
  14634.  
  14635.  
  14636.  
  14637.  
  14638.  
  14639.  
  14640. <div class="price productitem__price ">
  14641.  
  14642.    <div
  14643.      class="price__compare-at visible"
  14644.      data-price-compare-container
  14645.    >
  14646.  
  14647.      
  14648.        <span class="money price__original" data-price-original></span>
  14649.      
  14650.    </div>
  14651.  
  14652.  
  14653.    
  14654.      
  14655.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14656.        
  14657.          <span class="visually-hidden">Original price</span>
  14658.          <span class="money price__compare-at--min" data-price-compare-min>
  14659.            $106.99
  14660.          </span>
  14661.          -
  14662.          <span class="visually-hidden">Original price</span>
  14663.          <span class="money price__compare-at--max" data-price-compare-max>
  14664.            $106.99
  14665.          </span>
  14666.        
  14667.      </div>
  14668.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14669.        <span class="visually-hidden">Original price</span>
  14670.        <span class="money price__compare-at--single" data-price-compare>
  14671.          
  14672.        </span>
  14673.      </div>
  14674.    
  14675.  
  14676.  
  14677.  <div class="price__current price__current--emphasize " data-price-container>
  14678.  
  14679.    
  14680.  
  14681.    
  14682.      
  14683.      
  14684.      <span class="money" data-price>
  14685.        $106.99
  14686.      </span>
  14687.    
  14688.    
  14689.  </div>
  14690.  
  14691.  
  14692.    
  14693.    <div class="price__current--hidden" data-current-price-range-hidden>
  14694.      
  14695.        <span class="money price__current--min" data-price-min>$106.99</span>
  14696.        -
  14697.        <span class="money price__current--max" data-price-max>$106.99</span>
  14698.      
  14699.    </div>
  14700.    <div class="price__current--hidden" data-current-price-hidden>
  14701.      <span class="visually-hidden">Current price</span>
  14702.      <span class="money" data-price>
  14703.        $106.99
  14704.      </span>
  14705.    </div>
  14706.  
  14707.  
  14708.  
  14709.    
  14710.    
  14711.    
  14712.    
  14713.  
  14714.    <div
  14715.      class="
  14716.        productitem__unit-price
  14717.        hidden
  14718.      "
  14719.      data-unit-price
  14720.    >
  14721.      <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>
  14722.    </div>
  14723.  
  14724.  
  14725.  
  14726. </div>
  14727.  
  14728.  
  14729.            </div>
  14730.  
  14731.            <div class="productitem--listview-badge">
  14732.              
  14733.  
  14734.  
  14735.  
  14736.  
  14737.  
  14738.  
  14739.  
  14740.  
  14741.  
  14742.  
  14743.  
  14744.  
  14745.  
  14746.  
  14747.  
  14748.  
  14749.  
  14750.  
  14751.  
  14752.  
  14753.  
  14754.  
  14755.  
  14756.  
  14757.  
  14758.  
  14759.  
  14760.            </div>
  14761.  
  14762.            
  14763.              <div
  14764.                class="
  14765.                  productitem--action
  14766.                  quickshop-button
  14767.                  
  14768.                "
  14769.              >
  14770.                <button
  14771.                  class="productitem--action-trigger button-secondary"
  14772.                  data-quickshop-full
  14773.                  
  14774.                  
  14775.                  type="button"
  14776.                >
  14777.                  Quick shop
  14778.                </button>
  14779.              </div>
  14780.            
  14781.  
  14782.            
  14783.              <div
  14784.                class="
  14785.                  productitem--action
  14786.                  atc--button
  14787.                  
  14788.                "
  14789.              >
  14790.                <button
  14791.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14792.                  type="button"
  14793.                  aria-label="Add to cart"
  14794.                  
  14795.                    data-quick-buy
  14796.                  
  14797.                  data-variant-id="39666365366359"
  14798.                  
  14799.                >
  14800.                  <span class="atc-button--text">
  14801.                    Add to cart
  14802.                  </span>
  14803.                  <span class="atc-button--icon"><svg
  14804.  aria-hidden="true"
  14805.  focusable="false"
  14806.  role="presentation"
  14807.  width="26"
  14808.  height="26"
  14809.  viewBox="0 0 26 26"
  14810.  xmlns="http://www.w3.org/2000/svg"
  14811. >
  14812.  <g fill-rule="nonzero" fill="currentColor">
  14813.    <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"/>
  14814.  </g>
  14815. </svg></span>
  14816.                </button>
  14817.              </div>
  14818.            
  14819.          </div>
  14820.        
  14821.      
  14822.    </div>
  14823.  </div>
  14824.  
  14825.  
  14826.    <script type="application/json" data-quick-buy-settings>
  14827.      {
  14828.        "cart_redirection": true,
  14829.        "money_format": "${{amount}}"
  14830.      }
  14831.    </script>
  14832.  
  14833. </li>
  14834.    
  14835.      
  14836.  
  14837.  
  14838.  
  14839.  
  14840.  
  14841.  
  14842.  
  14843.  
  14844.  
  14845.  
  14846.  
  14847.  
  14848.  
  14849.  
  14850.  
  14851.  
  14852.  
  14853.  
  14854.  
  14855.  
  14856.  
  14857.  
  14858.  
  14859.  
  14860.  
  14861.  
  14862.  
  14863.  
  14864.  
  14865.  
  14866.  
  14867.  
  14868.    
  14869.  
  14870.  
  14871.  
  14872. <li
  14873.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14874.  data-product-item
  14875.  data-product-quickshop-url="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14876.  
  14877. >
  14878.  <div class="productitem" data-product-item-content>
  14879.    
  14880.    
  14881.    
  14882.    
  14883.  
  14884.    
  14885.  
  14886.    
  14887.  
  14888.    <div class="productitem__container">
  14889.      
  14890.  
  14891.      <div class="productitem__image-container">
  14892.        <a target="_blank"
  14893.          class="productitem--image-link"
  14894.          href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14895.          aria-label="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14896.          tabindex="-1"
  14897.          data-product-page-link
  14898.        >
  14899.          <figure
  14900.            class="productitem--image"
  14901.            data-product-item-image
  14902.            
  14903.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14904.            
  14905.          >
  14906.            
  14907.              
  14908.              
  14909.  
  14910.  
  14911.    <noscript data-rimg-noscript>
  14912.      <img loading="lazy"
  14913.        
  14914.          src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14915.        
  14916.  
  14917.        alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14918.        data-rimg="noscript"
  14919.        srcset="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378 1x"
  14920.        class="productitem--image-primary"
  14921.        
  14922.        
  14923.      >
  14924.    </noscript>
  14925.  
  14926.  
  14927.  <img loading="lazy"
  14928.    
  14929.      src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14930.    
  14931.    alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14932.  
  14933.    
  14934.      data-rimg="lazy"
  14935.      data-rimg-scale="1"
  14936.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_{size}.jpg?v=1715271378"
  14937.      data-rimg-max="500x500"
  14938.      data-rimg-crop="false"
  14939.      
  14940.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14941.    
  14942.  
  14943.    class="productitem--image-primary"
  14944.    
  14945.    
  14946.  >
  14947.  
  14948.  
  14949.  
  14950.  <div data-rimg-canvas></div>
  14951.  
  14952.  
  14953.            
  14954.  
  14955.            
  14956.  
  14957.  
  14958.  
  14959.  
  14960.  
  14961.  
  14962.  
  14963.  
  14964.  
  14965.  
  14966.  
  14967.  
  14968.  
  14969.  
  14970.  
  14971.  
  14972.  
  14973.  
  14974.  
  14975.  
  14976.  
  14977.  
  14978.  
  14979.  
  14980.  
  14981.  
  14982.  
  14983.          </figure>
  14984.        </a>
  14985.      </div><div class="productitem--info">
  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.  
  15015.  
  15016.  
  15017.  
  15018.  
  15019.  
  15020.  
  15021.  
  15022.  
  15023. <div class="price productitem__price ">
  15024.  
  15025.    <div
  15026.      class="price__compare-at visible"
  15027.      data-price-compare-container
  15028.    >
  15029.  
  15030.      
  15031.        <span class="money price__original" data-price-original></span>
  15032.      
  15033.    </div>
  15034.  
  15035.  
  15036.    
  15037.      
  15038.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15039.        
  15040.          <span class="visually-hidden">Original price</span>
  15041.          <span class="money price__compare-at--min" data-price-compare-min>
  15042.            $106.99
  15043.          </span>
  15044.          -
  15045.          <span class="visually-hidden">Original price</span>
  15046.          <span class="money price__compare-at--max" data-price-compare-max>
  15047.            $106.99
  15048.          </span>
  15049.        
  15050.      </div>
  15051.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15052.        <span class="visually-hidden">Original price</span>
  15053.        <span class="money price__compare-at--single" data-price-compare>
  15054.          
  15055.        </span>
  15056.      </div>
  15057.    
  15058.  
  15059.  
  15060.  <div class="price__current price__current--emphasize " data-price-container>
  15061.  
  15062.    
  15063.  
  15064.    
  15065.      
  15066.      
  15067.      <span class="money" data-price>
  15068.        $106.99
  15069.      </span>
  15070.    
  15071.    
  15072.  </div>
  15073.  
  15074.  
  15075.    
  15076.    <div class="price__current--hidden" data-current-price-range-hidden>
  15077.      
  15078.        <span class="money price__current--min" data-price-min>$106.99</span>
  15079.        -
  15080.        <span class="money price__current--max" data-price-max>$106.99</span>
  15081.      
  15082.    </div>
  15083.    <div class="price__current--hidden" data-current-price-hidden>
  15084.      <span class="visually-hidden">Current price</span>
  15085.      <span class="money" data-price>
  15086.        $106.99
  15087.      </span>
  15088.    </div>
  15089.  
  15090.  
  15091.  
  15092.    
  15093.    
  15094.    
  15095.    
  15096.  
  15097.    <div
  15098.      class="
  15099.        productitem__unit-price
  15100.        hidden
  15101.      "
  15102.      data-unit-price
  15103.    >
  15104.      <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>
  15105.    </div>
  15106.  
  15107.  
  15108.  
  15109. </div>
  15110.  
  15111.  
  15112.        
  15113.  
  15114.        <h2 class="productitem--title">
  15115.          <a href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  15116.            Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual
  15117.          </a>
  15118.        </h2>
  15119.  
  15120.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15121.        <div class="star_container 4451280006"></div>
  15122.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15123.  
  15124.        
  15125.          
  15126.            <span class="productitem--vendor">
  15127.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15128.            </span>
  15129.          
  15130.        
  15131.  
  15132.        
  15133.  
  15134.        
  15135.          
  15136.            <div class="productitem__stock-level">
  15137.              <!--
  15138.  
  15139.  
  15140.  
  15141.  
  15142.  
  15143.  
  15144.  
  15145. <div class="product-stock-level-wrapper" >
  15146.  
  15147.    <span class="
  15148.  product-stock-level
  15149.  product-stock-level--continue-selling
  15150.  
  15151. ">
  15152.      
  15153.  
  15154.      <span class="product-stock-level__text">
  15155.        
  15156.        <div class="product-stock-level__badge-text">
  15157.          
  15158.  
  15159.    In stock
  15160.  
  15161.  
  15162.        </div>
  15163.      </span>
  15164.    </span>
  15165.  
  15166. </div>
  15167. -->
  15168.              
  15169.  
  15170.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  15171.  
  15172.  
  15173.  
  15174.  
  15175.  
  15176.  
  15177.  
  15178.            </div>
  15179.          
  15180.  
  15181.          
  15182.            
  15183.          
  15184.        
  15185.  
  15186.        
  15187.          <div class="productitem--description">
  15188.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  15189.  
  15190.            
  15191.              <a
  15192.                href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  15193.                class="productitem--link"
  15194.                data-product-page-link
  15195.              >
  15196.                View full details
  15197.              </a>
  15198.            
  15199.          </div>
  15200.        
  15201.      </div>
  15202.  
  15203.      
  15204.        
  15205.          
  15206.          
  15207.          
  15208.  
  15209.          
  15210.          
  15211.  
  15212.          
  15213.  
  15214.          
  15215.  
  15216.          <div class="productitem--actions" data-product-actions>
  15217.            <div class="productitem--listview-price">
  15218.              
  15219.  
  15220.  
  15221.  
  15222.  
  15223.  
  15224.  
  15225.  
  15226.  
  15227.  
  15228.  
  15229.  
  15230.  
  15231.  
  15232.  
  15233.  
  15234.  
  15235.  
  15236.  
  15237.  
  15238.  
  15239.  
  15240.  
  15241.  
  15242.  
  15243.  
  15244.  
  15245.  
  15246.  
  15247.  
  15248.  
  15249. <div class="price productitem__price ">
  15250.  
  15251.    <div
  15252.      class="price__compare-at visible"
  15253.      data-price-compare-container
  15254.    >
  15255.  
  15256.      
  15257.        <span class="money price__original" data-price-original></span>
  15258.      
  15259.    </div>
  15260.  
  15261.  
  15262.    
  15263.      
  15264.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15265.        
  15266.          <span class="visually-hidden">Original price</span>
  15267.          <span class="money price__compare-at--min" data-price-compare-min>
  15268.            $106.99
  15269.          </span>
  15270.          -
  15271.          <span class="visually-hidden">Original price</span>
  15272.          <span class="money price__compare-at--max" data-price-compare-max>
  15273.            $106.99
  15274.          </span>
  15275.        
  15276.      </div>
  15277.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15278.        <span class="visually-hidden">Original price</span>
  15279.        <span class="money price__compare-at--single" data-price-compare>
  15280.          
  15281.        </span>
  15282.      </div>
  15283.    
  15284.  
  15285.  
  15286.  <div class="price__current price__current--emphasize " data-price-container>
  15287.  
  15288.    
  15289.  
  15290.    
  15291.      
  15292.      
  15293.      <span class="money" data-price>
  15294.        $106.99
  15295.      </span>
  15296.    
  15297.    
  15298.  </div>
  15299.  
  15300.  
  15301.    
  15302.    <div class="price__current--hidden" data-current-price-range-hidden>
  15303.      
  15304.        <span class="money price__current--min" data-price-min>$106.99</span>
  15305.        -
  15306.        <span class="money price__current--max" data-price-max>$106.99</span>
  15307.      
  15308.    </div>
  15309.    <div class="price__current--hidden" data-current-price-hidden>
  15310.      <span class="visually-hidden">Current price</span>
  15311.      <span class="money" data-price>
  15312.        $106.99
  15313.      </span>
  15314.    </div>
  15315.  
  15316.  
  15317.  
  15318.    
  15319.    
  15320.    
  15321.    
  15322.  
  15323.    <div
  15324.      class="
  15325.        productitem__unit-price
  15326.        hidden
  15327.      "
  15328.      data-unit-price
  15329.    >
  15330.      <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>
  15331.    </div>
  15332.  
  15333.  
  15334.  
  15335. </div>
  15336.  
  15337.  
  15338.            </div>
  15339.  
  15340.            <div class="productitem--listview-badge">
  15341.              
  15342.  
  15343.  
  15344.  
  15345.  
  15346.  
  15347.  
  15348.  
  15349.  
  15350.  
  15351.  
  15352.  
  15353.  
  15354.  
  15355.  
  15356.  
  15357.  
  15358.  
  15359.  
  15360.  
  15361.  
  15362.  
  15363.  
  15364.  
  15365.  
  15366.  
  15367.  
  15368.  
  15369.            </div>
  15370.  
  15371.            
  15372.              <div
  15373.                class="
  15374.                  productitem--action
  15375.                  quickshop-button
  15376.                  
  15377.                "
  15378.              >
  15379.                <button
  15380.                  class="productitem--action-trigger button-secondary"
  15381.                  data-quickshop-full
  15382.                  
  15383.                  
  15384.                  type="button"
  15385.                >
  15386.                  Quick shop
  15387.                </button>
  15388.              </div>
  15389.            
  15390.  
  15391.            
  15392.              <div
  15393.                class="
  15394.                  productitem--action
  15395.                  atc--button
  15396.                  
  15397.                "
  15398.              >
  15399.                <button
  15400.                  class="productitem--action-trigger productitem--action-atc button-primary"
  15401.                  type="button"
  15402.                  aria-label="Add to cart"
  15403.                  
  15404.                    data-quick-buy
  15405.                  
  15406.                  data-variant-id="39666365268055"
  15407.                  
  15408.                >
  15409.                  <span class="atc-button--text">
  15410.                    Add to cart
  15411.                  </span>
  15412.                  <span class="atc-button--icon"><svg
  15413.  aria-hidden="true"
  15414.  focusable="false"
  15415.  role="presentation"
  15416.  width="26"
  15417.  height="26"
  15418.  viewBox="0 0 26 26"
  15419.  xmlns="http://www.w3.org/2000/svg"
  15420. >
  15421.  <g fill-rule="nonzero" fill="currentColor">
  15422.    <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"/>
  15423.  </g>
  15424. </svg></span>
  15425.                </button>
  15426.              </div>
  15427.            
  15428.          </div>
  15429.        
  15430.      
  15431.    </div>
  15432.  </div>
  15433.  
  15434.  
  15435.    <script type="application/json" data-quick-buy-settings>
  15436.      {
  15437.        "cart_redirection": true,
  15438.        "money_format": "${{amount}}"
  15439.      }
  15440.    </script>
  15441.  
  15442. </li>
  15443.    
  15444.      
  15445.  
  15446.  
  15447.  
  15448.  
  15449.  
  15450.  
  15451.  
  15452.  
  15453.  
  15454.  
  15455.  
  15456.  
  15457.  
  15458.  
  15459.  
  15460.  
  15461.  
  15462.  
  15463.  
  15464.  
  15465.  
  15466.  
  15467.  
  15468.  
  15469.  
  15470.  
  15471.  
  15472.  
  15473.  
  15474.  
  15475.  
  15476.  
  15477.    
  15478.  
  15479.  
  15480.  
  15481. <li
  15482.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  15483.  data-product-item
  15484.  data-product-quickshop-url="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15485.  
  15486. >
  15487.  <div class="productitem" data-product-item-content>
  15488.    
  15489.    
  15490.    
  15491.    
  15492.  
  15493.    
  15494.  
  15495.    
  15496.  
  15497.    <div class="productitem__container">
  15498.      
  15499.  
  15500.      <div class="productitem__image-container">
  15501.        <a target="_blank"
  15502.          class="productitem--image-link"
  15503.          href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15504.          aria-label="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15505.          tabindex="-1"
  15506.          data-product-page-link
  15507.        >
  15508.          <figure
  15509.            class="productitem--image"
  15510.            data-product-item-image
  15511.            
  15512.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  15513.            
  15514.          >
  15515.            
  15516.              
  15517.              
  15518.  
  15519.  
  15520.    <noscript data-rimg-noscript>
  15521.      <img loading="lazy"
  15522.        
  15523.          src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15524.        
  15525.  
  15526.        alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15527.        data-rimg="noscript"
  15528.        srcset="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427 1x"
  15529.        class="productitem--image-primary"
  15530.        
  15531.        
  15532.      >
  15533.    </noscript>
  15534.  
  15535.  
  15536.  <img loading="lazy"
  15537.    
  15538.      src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15539.    
  15540.    alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15541.  
  15542.    
  15543.      data-rimg="lazy"
  15544.      data-rimg-scale="1"
  15545.      data-rimg-template="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_{size}.jpg?v=1715271427"
  15546.      data-rimg-max="500x500"
  15547.      data-rimg-crop="false"
  15548.      
  15549.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  15550.    
  15551.  
  15552.    class="productitem--image-primary"
  15553.    
  15554.    
  15555.  >
  15556.  
  15557.  
  15558.  
  15559.  <div data-rimg-canvas></div>
  15560.  
  15561.  
  15562.            
  15563.  
  15564.            
  15565.  
  15566.  
  15567.  
  15568.  
  15569.  
  15570.  
  15571.  
  15572.  
  15573.  
  15574.  
  15575.  
  15576.  
  15577.  
  15578.  
  15579.  
  15580.  
  15581.  
  15582.  
  15583.  
  15584.  
  15585.  
  15586.  
  15587.  
  15588.  
  15589.  
  15590.  
  15591.  
  15592.          </figure>
  15593.        </a>
  15594.      </div><div class="productitem--info">
  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.  
  15624.  
  15625.  
  15626.  
  15627.  
  15628.  
  15629.  
  15630.  
  15631.  
  15632. <div class="price productitem__price ">
  15633.  
  15634.    <div
  15635.      class="price__compare-at visible"
  15636.      data-price-compare-container
  15637.    >
  15638.  
  15639.      
  15640.        <span class="money price__original" data-price-original></span>
  15641.      
  15642.    </div>
  15643.  
  15644.  
  15645.    
  15646.      
  15647.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15648.        
  15649.          <span class="visually-hidden">Original price</span>
  15650.          <span class="money price__compare-at--min" data-price-compare-min>
  15651.            $86.99
  15652.          </span>
  15653.          -
  15654.          <span class="visually-hidden">Original price</span>
  15655.          <span class="money price__compare-at--max" data-price-compare-max>
  15656.            $86.99
  15657.          </span>
  15658.        
  15659.      </div>
  15660.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15661.        <span class="visually-hidden">Original price</span>
  15662.        <span class="money price__compare-at--single" data-price-compare>
  15663.          
  15664.        </span>
  15665.      </div>
  15666.    
  15667.  
  15668.  
  15669.  <div class="price__current price__current--emphasize " data-price-container>
  15670.  
  15671.    
  15672.  
  15673.    
  15674.      
  15675.      
  15676.      <span class="money" data-price>
  15677.        $86.99
  15678.      </span>
  15679.    
  15680.    
  15681.  </div>
  15682.  
  15683.  
  15684.    
  15685.    <div class="price__current--hidden" data-current-price-range-hidden>
  15686.      
  15687.        <span class="money price__current--min" data-price-min>$86.99</span>
  15688.        -
  15689.        <span class="money price__current--max" data-price-max>$86.99</span>
  15690.      
  15691.    </div>
  15692.    <div class="price__current--hidden" data-current-price-hidden>
  15693.      <span class="visually-hidden">Current price</span>
  15694.      <span class="money" data-price>
  15695.        $86.99
  15696.      </span>
  15697.    </div>
  15698.  
  15699.  
  15700.  
  15701.    
  15702.    
  15703.    
  15704.    
  15705.  
  15706.    <div
  15707.      class="
  15708.        productitem__unit-price
  15709.        hidden
  15710.      "
  15711.      data-unit-price
  15712.    >
  15713.      <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>
  15714.    </div>
  15715.  
  15716.  
  15717.  
  15718. </div>
  15719.  
  15720.  
  15721.        
  15722.  
  15723.        <h2 class="productitem--title">
  15724.          <a href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m" data-product-page-link>
  15725.            Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M
  15726.          </a>
  15727.        </h2>
  15728.  
  15729.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15730.        <div class="star_container 4451281286"></div>
  15731.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15732.  
  15733.        
  15734.          
  15735.            <span class="productitem--vendor">
  15736.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15737.            </span>
  15738.          
  15739.        
  15740.  
  15741.        
  15742.  
  15743.        
  15744.          
  15745.            <div class="productitem__stock-level">
  15746.              <!--
  15747.  
  15748.  
  15749.  
  15750.  
  15751.  
  15752.  
  15753.  
  15754. <div class="product-stock-level-wrapper" >
  15755.  
  15756.    <span class="
  15757.  product-stock-level
  15758.  product-stock-level--continue-selling
  15759.  
  15760. ">
  15761.      
  15762.  
  15763.      <span class="product-stock-level__text">
  15764.        
  15765.        <div class="product-stock-level__badge-text">
  15766.          
  15767.  
  15768.    In stock
  15769.  
  15770.  
  15771.        </div>
  15772.      </span>
  15773.    </span>
  15774.  
  15775. </div>
  15776. -->
  15777.              
  15778.  
  15779.  
  15780.    
  15781.      <b style="color:green">In stock</b>
  15782.    
  15783.  
  15784.  
  15785.  
  15786.  
  15787.  
  15788.  
  15789.  
  15790.            </div>
  15791.          
  15792.  
  15793.          
  15794.            
  15795.          
  15796.        
  15797.  
  15798.        
  15799.          <div class="productitem--description">
  15800.            <p>Description: New genuine Acer laptop replacement keyboard. Canadian Bilingual layout. Part #'s: KB.I140A.114, KBI140A114, NSK-AM02M, 9J.N1P82.02M. ...</p>
  15801.  
  15802.            
  15803.              <a
  15804.                href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15805.                class="productitem--link"
  15806.                data-product-page-link
  15807.              >
  15808.                View full details
  15809.              </a>
  15810.            
  15811.          </div>
  15812.        
  15813.      </div>
  15814.  
  15815.      
  15816.        
  15817.          
  15818.          
  15819.          
  15820.  
  15821.          
  15822.          
  15823.  
  15824.          
  15825.  
  15826.          
  15827.  
  15828.          <div class="productitem--actions" data-product-actions>
  15829.            <div class="productitem--listview-price">
  15830.              
  15831.  
  15832.  
  15833.  
  15834.  
  15835.  
  15836.  
  15837.  
  15838.  
  15839.  
  15840.  
  15841.  
  15842.  
  15843.  
  15844.  
  15845.  
  15846.  
  15847.  
  15848.  
  15849.  
  15850.  
  15851.  
  15852.  
  15853.  
  15854.  
  15855.  
  15856.  
  15857.  
  15858.  
  15859.  
  15860.  
  15861. <div class="price productitem__price ">
  15862.  
  15863.    <div
  15864.      class="price__compare-at visible"
  15865.      data-price-compare-container
  15866.    >
  15867.  
  15868.      
  15869.        <span class="money price__original" data-price-original></span>
  15870.      
  15871.    </div>
  15872.  
  15873.  
  15874.    
  15875.      
  15876.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15877.        
  15878.          <span class="visually-hidden">Original price</span>
  15879.          <span class="money price__compare-at--min" data-price-compare-min>
  15880.            $86.99
  15881.          </span>
  15882.          -
  15883.          <span class="visually-hidden">Original price</span>
  15884.          <span class="money price__compare-at--max" data-price-compare-max>
  15885.            $86.99
  15886.          </span>
  15887.        
  15888.      </div>
  15889.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15890.        <span class="visually-hidden">Original price</span>
  15891.        <span class="money price__compare-at--single" data-price-compare>
  15892.          
  15893.        </span>
  15894.      </div>
  15895.    
  15896.  
  15897.  
  15898.  <div class="price__current price__current--emphasize " data-price-container>
  15899.  
  15900.    
  15901.  
  15902.    
  15903.      
  15904.      
  15905.      <span class="money" data-price>
  15906.        $86.99
  15907.      </span>
  15908.    
  15909.    
  15910.  </div>
  15911.  
  15912.  
  15913.    
  15914.    <div class="price__current--hidden" data-current-price-range-hidden>
  15915.      
  15916.        <span class="money price__current--min" data-price-min>$86.99</span>
  15917.        -
  15918.        <span class="money price__current--max" data-price-max>$86.99</span>
  15919.      
  15920.    </div>
  15921.    <div class="price__current--hidden" data-current-price-hidden>
  15922.      <span class="visually-hidden">Current price</span>
  15923.      <span class="money" data-price>
  15924.        $86.99
  15925.      </span>
  15926.    </div>
  15927.  
  15928.  
  15929.  
  15930.    
  15931.    
  15932.    
  15933.    
  15934.  
  15935.    <div
  15936.      class="
  15937.        productitem__unit-price
  15938.        hidden
  15939.      "
  15940.      data-unit-price
  15941.    >
  15942.      <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>
  15943.    </div>
  15944.  
  15945.  
  15946.  
  15947. </div>
  15948.  
  15949.  
  15950.            </div>
  15951.  
  15952.            <div class="productitem--listview-badge">
  15953.              
  15954.  
  15955.  
  15956.  
  15957.  
  15958.  
  15959.  
  15960.  
  15961.  
  15962.  
  15963.  
  15964.  
  15965.  
  15966.  
  15967.  
  15968.  
  15969.  
  15970.  
  15971.  
  15972.  
  15973.  
  15974.  
  15975.  
  15976.  
  15977.  
  15978.  
  15979.  
  15980.  
  15981.            </div>
  15982.  
  15983.            
  15984.              <div
  15985.                class="
  15986.                  productitem--action
  15987.                  quickshop-button
  15988.                  
  15989.                "
  15990.              >
  15991.                <button
  15992.                  class="productitem--action-trigger button-secondary"
  15993.                  data-quickshop-full
  15994.                  
  15995.                  
  15996.                  type="button"
  15997.                >
  15998.                  Quick shop
  15999.                </button>
  16000.              </div>
  16001.            
  16002.  
  16003.            
  16004.              <div
  16005.                class="
  16006.                  productitem--action
  16007.                  atc--button
  16008.                  
  16009.                "
  16010.              >
  16011.                <button
  16012.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16013.                  type="button"
  16014.                  aria-label="Add to cart"
  16015.                  
  16016.                    data-quick-buy
  16017.                  
  16018.                  data-variant-id="39666363793495"
  16019.                  
  16020.                >
  16021.                  <span class="atc-button--text">
  16022.                    Add to cart
  16023.                  </span>
  16024.                  <span class="atc-button--icon"><svg
  16025.  aria-hidden="true"
  16026.  focusable="false"
  16027.  role="presentation"
  16028.  width="26"
  16029.  height="26"
  16030.  viewBox="0 0 26 26"
  16031.  xmlns="http://www.w3.org/2000/svg"
  16032. >
  16033.  <g fill-rule="nonzero" fill="currentColor">
  16034.    <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"/>
  16035.  </g>
  16036. </svg></span>
  16037.                </button>
  16038.              </div>
  16039.            
  16040.          </div>
  16041.        
  16042.      
  16043.    </div>
  16044.  </div>
  16045.  
  16046.  
  16047.    <script type="application/json" data-quick-buy-settings>
  16048.      {
  16049.        "cart_redirection": true,
  16050.        "money_format": "${{amount}}"
  16051.      }
  16052.    </script>
  16053.  
  16054. </li>
  16055.    
  16056.      
  16057.  
  16058.  
  16059.  
  16060.  
  16061.  
  16062.  
  16063.  
  16064.  
  16065.  
  16066.  
  16067.  
  16068.  
  16069.  
  16070.  
  16071.  
  16072.  
  16073.  
  16074.  
  16075.  
  16076.  
  16077.  
  16078.  
  16079.  
  16080.  
  16081.  
  16082.  
  16083.  
  16084.  
  16085.  
  16086.  
  16087.  
  16088.  
  16089.    
  16090.  
  16091.  
  16092.  
  16093. <li
  16094.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16095.  data-product-item
  16096.  data-product-quickshop-url="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16097.  
  16098. >
  16099.  <div class="productitem" data-product-item-content>
  16100.    
  16101.    
  16102.    
  16103.    
  16104.  
  16105.    
  16106.  
  16107.    
  16108.  
  16109.    <div class="productitem__container">
  16110.      
  16111.  
  16112.      <div class="productitem__image-container">
  16113.        <a target="_blank"
  16114.          class="productitem--image-link"
  16115.          href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16116.          aria-label="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16117.          tabindex="-1"
  16118.          data-product-page-link
  16119.        >
  16120.          <figure
  16121.            class="productitem--image"
  16122.            data-product-item-image
  16123.            
  16124.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  16125.            
  16126.          >
  16127.            
  16128.              
  16129.              
  16130.  
  16131.  
  16132.    <noscript data-rimg-noscript>
  16133.      <img loading="lazy"
  16134.        
  16135.          src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16136.        
  16137.  
  16138.        alt=""
  16139.        data-rimg="noscript"
  16140.        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"
  16141.        class="productitem--image-primary"
  16142.        
  16143.        
  16144.      >
  16145.    </noscript>
  16146.  
  16147.  
  16148.  <img loading="lazy"
  16149.    
  16150.      src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16151.    
  16152.    alt=""
  16153.  
  16154.    
  16155.      data-rimg="lazy"
  16156.      data-rimg-scale="1"
  16157.      data-rimg-template="//laptopparts.ca/cdn/shop/products/33.paa02.007_{size}.jpg?v=1697125255"
  16158.      data-rimg-max="655x655"
  16159.      data-rimg-crop="false"
  16160.      
  16161.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  16162.    
  16163.  
  16164.    class="productitem--image-primary"
  16165.    
  16166.    
  16167.  >
  16168.  
  16169.  
  16170.  
  16171.  <div data-rimg-canvas></div>
  16172.  
  16173.  
  16174.            
  16175.  
  16176.            
  16177.  
  16178.  
  16179.  
  16180.  
  16181.  
  16182.  
  16183.  
  16184.  
  16185.  
  16186.  
  16187.  
  16188.  
  16189.  
  16190.  
  16191.  
  16192.  
  16193.  
  16194.  
  16195.  
  16196.  
  16197.  
  16198.  
  16199.  
  16200.  
  16201.  
  16202.  
  16203.  
  16204.          </figure>
  16205.        </a>
  16206.      </div><div class="productitem--info">
  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.  
  16236.  
  16237.  
  16238.  
  16239.  
  16240.  
  16241.  
  16242.  
  16243.  
  16244. <div class="price productitem__price ">
  16245.  
  16246.    <div
  16247.      class="price__compare-at visible"
  16248.      data-price-compare-container
  16249.    >
  16250.  
  16251.      
  16252.        <span class="money price__original" data-price-original></span>
  16253.      
  16254.    </div>
  16255.  
  16256.  
  16257.    
  16258.      
  16259.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16260.        
  16261.          <span class="visually-hidden">Original price</span>
  16262.          <span class="money price__compare-at--min" data-price-compare-min>
  16263.            $65.99
  16264.          </span>
  16265.          -
  16266.          <span class="visually-hidden">Original price</span>
  16267.          <span class="money price__compare-at--max" data-price-compare-max>
  16268.            $65.99
  16269.          </span>
  16270.        
  16271.      </div>
  16272.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16273.        <span class="visually-hidden">Original price</span>
  16274.        <span class="money price__compare-at--single" data-price-compare>
  16275.          
  16276.        </span>
  16277.      </div>
  16278.    
  16279.  
  16280.  
  16281.  <div class="price__current price__current--emphasize " data-price-container>
  16282.  
  16283.    
  16284.  
  16285.    
  16286.      
  16287.      
  16288.      <span class="money" data-price>
  16289.        $65.99
  16290.      </span>
  16291.    
  16292.    
  16293.  </div>
  16294.  
  16295.  
  16296.    
  16297.    <div class="price__current--hidden" data-current-price-range-hidden>
  16298.      
  16299.        <span class="money price__current--min" data-price-min>$65.99</span>
  16300.        -
  16301.        <span class="money price__current--max" data-price-max>$65.99</span>
  16302.      
  16303.    </div>
  16304.    <div class="price__current--hidden" data-current-price-hidden>
  16305.      <span class="visually-hidden">Current price</span>
  16306.      <span class="money" data-price>
  16307.        $65.99
  16308.      </span>
  16309.    </div>
  16310.  
  16311.  
  16312.  
  16313.    
  16314.    
  16315.    
  16316.    
  16317.  
  16318.    <div
  16319.      class="
  16320.        productitem__unit-price
  16321.        hidden
  16322.      "
  16323.      data-unit-price
  16324.    >
  16325.      <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>
  16326.    </div>
  16327.  
  16328.  
  16329.  
  16330. </div>
  16331.  
  16332.  
  16333.        
  16334.  
  16335.        <h2 class="productitem--title">
  16336.          <a href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210" data-product-page-link>
  16337.            Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210
  16338.          </a>
  16339.        </h2>
  16340.  
  16341.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16342.        <div class="star_container 243102056471"></div>
  16343.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16344.  
  16345.        
  16346.          
  16347.            <span class="productitem--vendor">
  16348.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16349.            </span>
  16350.          
  16351.        
  16352.  
  16353.        
  16354.  
  16355.        
  16356.          
  16357.            <div class="productitem__stock-level">
  16358.              <!--
  16359.  
  16360.  
  16361.  
  16362.  
  16363.  
  16364.  
  16365.  
  16366. <div class="product-stock-level-wrapper" >
  16367.  
  16368.    <span class="
  16369.  product-stock-level
  16370.  product-stock-level--continue-selling
  16371.  
  16372. ">
  16373.      
  16374.  
  16375.      <span class="product-stock-level__text">
  16376.        
  16377.        <div class="product-stock-level__badge-text">
  16378.          
  16379.  
  16380.    In stock
  16381.  
  16382.  
  16383.        </div>
  16384.      </span>
  16385.    </span>
  16386.  
  16387. </div>
  16388. -->
  16389.              
  16390.  
  16391.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  16392.  
  16393.  
  16394.  
  16395.  
  16396.  
  16397.  
  16398.  
  16399.            </div>
  16400.          
  16401.  
  16402.          
  16403.            
  16404.          
  16405.        
  16406.  
  16407.        
  16408.          <div class="productitem--description">
  16409.            <p>Description: New genuine Acer laptop hinge and bracket set.
  16410. Part #'s: 33.PAA02.007, 091203 240, 091221 210.
  16411. Compatible Models: Acer Aspire 4235, 42...</p>
  16412.  
  16413.            
  16414.              <a
  16415.                href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16416.                class="productitem--link"
  16417.                data-product-page-link
  16418.              >
  16419.                View full details
  16420.              </a>
  16421.            
  16422.          </div>
  16423.        
  16424.      </div>
  16425.  
  16426.      
  16427.        
  16428.          
  16429.          
  16430.          
  16431.  
  16432.          
  16433.          
  16434.  
  16435.          
  16436.  
  16437.          
  16438.  
  16439.          <div class="productitem--actions" data-product-actions>
  16440.            <div class="productitem--listview-price">
  16441.              
  16442.  
  16443.  
  16444.  
  16445.  
  16446.  
  16447.  
  16448.  
  16449.  
  16450.  
  16451.  
  16452.  
  16453.  
  16454.  
  16455.  
  16456.  
  16457.  
  16458.  
  16459.  
  16460.  
  16461.  
  16462.  
  16463.  
  16464.  
  16465.  
  16466.  
  16467.  
  16468.  
  16469.  
  16470.  
  16471.  
  16472. <div class="price productitem__price ">
  16473.  
  16474.    <div
  16475.      class="price__compare-at visible"
  16476.      data-price-compare-container
  16477.    >
  16478.  
  16479.      
  16480.        <span class="money price__original" data-price-original></span>
  16481.      
  16482.    </div>
  16483.  
  16484.  
  16485.    
  16486.      
  16487.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16488.        
  16489.          <span class="visually-hidden">Original price</span>
  16490.          <span class="money price__compare-at--min" data-price-compare-min>
  16491.            $65.99
  16492.          </span>
  16493.          -
  16494.          <span class="visually-hidden">Original price</span>
  16495.          <span class="money price__compare-at--max" data-price-compare-max>
  16496.            $65.99
  16497.          </span>
  16498.        
  16499.      </div>
  16500.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16501.        <span class="visually-hidden">Original price</span>
  16502.        <span class="money price__compare-at--single" data-price-compare>
  16503.          
  16504.        </span>
  16505.      </div>
  16506.    
  16507.  
  16508.  
  16509.  <div class="price__current price__current--emphasize " data-price-container>
  16510.  
  16511.    
  16512.  
  16513.    
  16514.      
  16515.      
  16516.      <span class="money" data-price>
  16517.        $65.99
  16518.      </span>
  16519.    
  16520.    
  16521.  </div>
  16522.  
  16523.  
  16524.    
  16525.    <div class="price__current--hidden" data-current-price-range-hidden>
  16526.      
  16527.        <span class="money price__current--min" data-price-min>$65.99</span>
  16528.        -
  16529.        <span class="money price__current--max" data-price-max>$65.99</span>
  16530.      
  16531.    </div>
  16532.    <div class="price__current--hidden" data-current-price-hidden>
  16533.      <span class="visually-hidden">Current price</span>
  16534.      <span class="money" data-price>
  16535.        $65.99
  16536.      </span>
  16537.    </div>
  16538.  
  16539.  
  16540.  
  16541.    
  16542.    
  16543.    
  16544.    
  16545.  
  16546.    <div
  16547.      class="
  16548.        productitem__unit-price
  16549.        hidden
  16550.      "
  16551.      data-unit-price
  16552.    >
  16553.      <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>
  16554.    </div>
  16555.  
  16556.  
  16557.  
  16558. </div>
  16559.  
  16560.  
  16561.            </div>
  16562.  
  16563.            <div class="productitem--listview-badge">
  16564.              
  16565.  
  16566.  
  16567.  
  16568.  
  16569.  
  16570.  
  16571.  
  16572.  
  16573.  
  16574.  
  16575.  
  16576.  
  16577.  
  16578.  
  16579.  
  16580.  
  16581.  
  16582.  
  16583.  
  16584.  
  16585.  
  16586.  
  16587.  
  16588.  
  16589.  
  16590.  
  16591.  
  16592.            </div>
  16593.  
  16594.            
  16595.              <div
  16596.                class="
  16597.                  productitem--action
  16598.                  quickshop-button
  16599.                  
  16600.                "
  16601.              >
  16602.                <button
  16603.                  class="productitem--action-trigger button-secondary"
  16604.                  data-quickshop-full
  16605.                  
  16606.                  
  16607.                  type="button"
  16608.                >
  16609.                  Quick shop
  16610.                </button>
  16611.              </div>
  16612.            
  16613.  
  16614.            
  16615.              <div
  16616.                class="
  16617.                  productitem--action
  16618.                  atc--button
  16619.                  
  16620.                "
  16621.              >
  16622.                <button
  16623.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16624.                  type="button"
  16625.                  aria-label="Add to cart"
  16626.                  
  16627.                    data-quick-buy
  16628.                  
  16629.                  data-variant-id="2838819504151"
  16630.                  
  16631.                >
  16632.                  <span class="atc-button--text">
  16633.                    Add to cart
  16634.                  </span>
  16635.                  <span class="atc-button--icon"><svg
  16636.  aria-hidden="true"
  16637.  focusable="false"
  16638.  role="presentation"
  16639.  width="26"
  16640.  height="26"
  16641.  viewBox="0 0 26 26"
  16642.  xmlns="http://www.w3.org/2000/svg"
  16643. >
  16644.  <g fill-rule="nonzero" fill="currentColor">
  16645.    <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"/>
  16646.  </g>
  16647. </svg></span>
  16648.                </button>
  16649.              </div>
  16650.            
  16651.          </div>
  16652.        
  16653.      
  16654.    </div>
  16655.  </div>
  16656.  
  16657.  
  16658.    <script type="application/json" data-quick-buy-settings>
  16659.      {
  16660.        "cart_redirection": true,
  16661.        "money_format": "${{amount}}"
  16662.      }
  16663.    </script>
  16664.  
  16665. </li>
  16666.    
  16667.      
  16668.  
  16669.  
  16670.  
  16671.  
  16672.  
  16673.  
  16674.  
  16675.  
  16676.  
  16677.  
  16678.  
  16679.  
  16680.  
  16681.  
  16682.  
  16683.  
  16684.  
  16685.  
  16686.  
  16687.  
  16688.  
  16689.  
  16690.  
  16691.  
  16692.  
  16693.  
  16694.  
  16695.  
  16696.  
  16697.  
  16698.  
  16699.  
  16700.    
  16701.  
  16702.  
  16703.  
  16704. <li
  16705.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16706.  data-product-item
  16707.  data-product-quickshop-url="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16708.  
  16709. >
  16710.  <div class="productitem" data-product-item-content>
  16711.    
  16712.    
  16713.    
  16714.    
  16715.  
  16716.    
  16717.  
  16718.    
  16719.  
  16720.    <div class="productitem__container">
  16721.      
  16722.  
  16723.      <div class="productitem__image-container">
  16724.        <a target="_blank"
  16725.          class="productitem--image-link"
  16726.          href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16727.          aria-label="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16728.          tabindex="-1"
  16729.          data-product-page-link
  16730.        >
  16731.          <figure
  16732.            class="productitem--image"
  16733.            data-product-item-image
  16734.            
  16735.              style="--product-grid-item-image-aspect-ratio: 0.5231513476157568;"
  16736.            
  16737.          >
  16738.            
  16739.              
  16740.              
  16741.  
  16742.  
  16743.    <noscript data-rimg-noscript>
  16744.      <img loading="lazy"
  16745.        
  16746.          src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16747.        
  16748.  
  16749.        alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16750.        data-rimg="noscript"
  16751.        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"
  16752.        class="productitem--image-primary"
  16753.        
  16754.        
  16755.      >
  16756.    </noscript>
  16757.  
  16758.  
  16759.  <img loading="lazy"
  16760.    
  16761.      src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16762.    
  16763.    alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16764.  
  16765.    
  16766.      data-rimg="lazy"
  16767.      data-rimg-scale="1"
  16768.      data-rimg-template="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_{size}.jpg?v=1728212053"
  16769.      data-rimg-max="757x1447"
  16770.      data-rimg-crop="false"
  16771.      
  16772.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='979'></svg>"
  16773.    
  16774.  
  16775.    class="productitem--image-primary"
  16776.    
  16777.    
  16778.  >
  16779.  
  16780.  
  16781.  
  16782.  <div data-rimg-canvas></div>
  16783.  
  16784.  
  16785.            
  16786.  
  16787.            
  16788.  
  16789.  
  16790.  
  16791.  
  16792.  
  16793.  
  16794.  
  16795.  
  16796.  
  16797.  
  16798.  
  16799.  
  16800.  
  16801.  
  16802.  
  16803.  
  16804.  
  16805.  
  16806.  
  16807.  
  16808.  
  16809.  
  16810.  
  16811.  
  16812.  
  16813.  
  16814.  
  16815.          </figure>
  16816.        </a>
  16817.      </div><div class="productitem--info">
  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.  
  16847.  
  16848.  
  16849.  
  16850.  
  16851.  
  16852.  
  16853.  
  16854.  
  16855. <div class="price productitem__price ">
  16856.  
  16857.    <div
  16858.      class="price__compare-at visible"
  16859.      data-price-compare-container
  16860.    >
  16861.  
  16862.      
  16863.        <span class="money price__original" data-price-original></span>
  16864.      
  16865.    </div>
  16866.  
  16867.  
  16868.    
  16869.      
  16870.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16871.        
  16872.          <span class="visually-hidden">Original price</span>
  16873.          <span class="money price__compare-at--min" data-price-compare-min>
  16874.            $50.98
  16875.          </span>
  16876.          -
  16877.          <span class="visually-hidden">Original price</span>
  16878.          <span class="money price__compare-at--max" data-price-compare-max>
  16879.            $50.98
  16880.          </span>
  16881.        
  16882.      </div>
  16883.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16884.        <span class="visually-hidden">Original price</span>
  16885.        <span class="money price__compare-at--single" data-price-compare>
  16886.          
  16887.        </span>
  16888.      </div>
  16889.    
  16890.  
  16891.  
  16892.  <div class="price__current price__current--emphasize " data-price-container>
  16893.  
  16894.    
  16895.  
  16896.    
  16897.      
  16898.      
  16899.      <span class="money" data-price>
  16900.        $50.98
  16901.      </span>
  16902.    
  16903.    
  16904.  </div>
  16905.  
  16906.  
  16907.    
  16908.    <div class="price__current--hidden" data-current-price-range-hidden>
  16909.      
  16910.        <span class="money price__current--min" data-price-min>$50.98</span>
  16911.        -
  16912.        <span class="money price__current--max" data-price-max>$50.98</span>
  16913.      
  16914.    </div>
  16915.    <div class="price__current--hidden" data-current-price-hidden>
  16916.      <span class="visually-hidden">Current price</span>
  16917.      <span class="money" data-price>
  16918.        $50.98
  16919.      </span>
  16920.    </div>
  16921.  
  16922.  
  16923.  
  16924.    
  16925.    
  16926.    
  16927.    
  16928.  
  16929.    <div
  16930.      class="
  16931.        productitem__unit-price
  16932.        hidden
  16933.      "
  16934.      data-unit-price
  16935.    >
  16936.      <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>
  16937.    </div>
  16938.  
  16939.  
  16940.  
  16941. </div>
  16942.  
  16943.  
  16944.        
  16945.  
  16946.        <h2 class="productitem--title">
  16947.          <a href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set" data-product-page-link>
  16948.            Acer Aspire 5 A515-41 A515-41G A515-51 A515-51G Right & Left Lcd Hinge Set 33.GP4N2.003
  16949.          </a>
  16950.        </h2>
  16951.  
  16952.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16953.        <div class="star_container 1468469608471"></div>
  16954.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16955.  
  16956.        
  16957.          
  16958.            <span class="productitem--vendor">
  16959.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16960.            </span>
  16961.          
  16962.        
  16963.  
  16964.        
  16965.  
  16966.        
  16967.          
  16968.            <div class="productitem__stock-level">
  16969.              <!--
  16970.  
  16971.  
  16972.  
  16973.  
  16974.  
  16975.  
  16976.  
  16977. <div class="product-stock-level-wrapper" >
  16978.  
  16979.    <span class="
  16980.  product-stock-level
  16981.  product-stock-level--continue-selling
  16982.  
  16983. ">
  16984.      
  16985.  
  16986.      <span class="product-stock-level__text">
  16987.        
  16988.        <div class="product-stock-level__badge-text">
  16989.          
  16990.  
  16991.    In stock
  16992.  
  16993.  
  16994.        </div>
  16995.      </span>
  16996.    </span>
  16997.  
  16998. </div>
  16999. -->
  17000.              
  17001.  
  17002.  
  17003.    
  17004.      <b style="color:green">In stock</b>
  17005.    
  17006.  
  17007.  
  17008.  
  17009.  
  17010.  
  17011.  
  17012.  
  17013.            </div>
  17014.          
  17015.  
  17016.          
  17017.            
  17018.          
  17019.        
  17020.  
  17021.        
  17022.          <div class="productitem--description">
  17023.            <p>
  17024. Description: New Acer right and left laptop lcd hinge set.
  17025.  
  17026.  
  17027. Compatible Part #'s: 33.GP4N2.003, 33.GP4N2.004Compatible Models:Acer Aspire 3 A315-...</p>
  17028.  
  17029.            
  17030.              <a
  17031.                href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  17032.                class="productitem--link"
  17033.                data-product-page-link
  17034.              >
  17035.                View full details
  17036.              </a>
  17037.            
  17038.          </div>
  17039.        
  17040.      </div>
  17041.  
  17042.      
  17043.        
  17044.          
  17045.          
  17046.          
  17047.  
  17048.          
  17049.          
  17050.  
  17051.          
  17052.  
  17053.          
  17054.  
  17055.          <div class="productitem--actions" data-product-actions>
  17056.            <div class="productitem--listview-price">
  17057.              
  17058.  
  17059.  
  17060.  
  17061.  
  17062.  
  17063.  
  17064.  
  17065.  
  17066.  
  17067.  
  17068.  
  17069.  
  17070.  
  17071.  
  17072.  
  17073.  
  17074.  
  17075.  
  17076.  
  17077.  
  17078.  
  17079.  
  17080.  
  17081.  
  17082.  
  17083.  
  17084.  
  17085.  
  17086.  
  17087.  
  17088. <div class="price productitem__price ">
  17089.  
  17090.    <div
  17091.      class="price__compare-at visible"
  17092.      data-price-compare-container
  17093.    >
  17094.  
  17095.      
  17096.        <span class="money price__original" data-price-original></span>
  17097.      
  17098.    </div>
  17099.  
  17100.  
  17101.    
  17102.      
  17103.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17104.        
  17105.          <span class="visually-hidden">Original price</span>
  17106.          <span class="money price__compare-at--min" data-price-compare-min>
  17107.            $50.98
  17108.          </span>
  17109.          -
  17110.          <span class="visually-hidden">Original price</span>
  17111.          <span class="money price__compare-at--max" data-price-compare-max>
  17112.            $50.98
  17113.          </span>
  17114.        
  17115.      </div>
  17116.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17117.        <span class="visually-hidden">Original price</span>
  17118.        <span class="money price__compare-at--single" data-price-compare>
  17119.          
  17120.        </span>
  17121.      </div>
  17122.    
  17123.  
  17124.  
  17125.  <div class="price__current price__current--emphasize " data-price-container>
  17126.  
  17127.    
  17128.  
  17129.    
  17130.      
  17131.      
  17132.      <span class="money" data-price>
  17133.        $50.98
  17134.      </span>
  17135.    
  17136.    
  17137.  </div>
  17138.  
  17139.  
  17140.    
  17141.    <div class="price__current--hidden" data-current-price-range-hidden>
  17142.      
  17143.        <span class="money price__current--min" data-price-min>$50.98</span>
  17144.        -
  17145.        <span class="money price__current--max" data-price-max>$50.98</span>
  17146.      
  17147.    </div>
  17148.    <div class="price__current--hidden" data-current-price-hidden>
  17149.      <span class="visually-hidden">Current price</span>
  17150.      <span class="money" data-price>
  17151.        $50.98
  17152.      </span>
  17153.    </div>
  17154.  
  17155.  
  17156.  
  17157.    
  17158.    
  17159.    
  17160.    
  17161.  
  17162.    <div
  17163.      class="
  17164.        productitem__unit-price
  17165.        hidden
  17166.      "
  17167.      data-unit-price
  17168.    >
  17169.      <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>
  17170.    </div>
  17171.  
  17172.  
  17173.  
  17174. </div>
  17175.  
  17176.  
  17177.            </div>
  17178.  
  17179.            <div class="productitem--listview-badge">
  17180.              
  17181.  
  17182.  
  17183.  
  17184.  
  17185.  
  17186.  
  17187.  
  17188.  
  17189.  
  17190.  
  17191.  
  17192.  
  17193.  
  17194.  
  17195.  
  17196.  
  17197.  
  17198.  
  17199.  
  17200.  
  17201.  
  17202.  
  17203.  
  17204.  
  17205.  
  17206.  
  17207.  
  17208.            </div>
  17209.  
  17210.            
  17211.              <div
  17212.                class="
  17213.                  productitem--action
  17214.                  quickshop-button
  17215.                  
  17216.                "
  17217.              >
  17218.                <button
  17219.                  class="productitem--action-trigger button-secondary"
  17220.                  data-quickshop-full
  17221.                  
  17222.                  
  17223.                  type="button"
  17224.                >
  17225.                  Quick shop
  17226.                </button>
  17227.              </div>
  17228.            
  17229.  
  17230.            
  17231.              <div
  17232.                class="
  17233.                  productitem--action
  17234.                  atc--button
  17235.                  
  17236.                "
  17237.              >
  17238.                <button
  17239.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17240.                  type="button"
  17241.                  aria-label="Add to cart"
  17242.                  
  17243.                    data-quick-buy
  17244.                  
  17245.                  data-variant-id="12807718895639"
  17246.                  
  17247.                >
  17248.                  <span class="atc-button--text">
  17249.                    Add to cart
  17250.                  </span>
  17251.                  <span class="atc-button--icon"><svg
  17252.  aria-hidden="true"
  17253.  focusable="false"
  17254.  role="presentation"
  17255.  width="26"
  17256.  height="26"
  17257.  viewBox="0 0 26 26"
  17258.  xmlns="http://www.w3.org/2000/svg"
  17259. >
  17260.  <g fill-rule="nonzero" fill="currentColor">
  17261.    <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"/>
  17262.  </g>
  17263. </svg></span>
  17264.                </button>
  17265.              </div>
  17266.            
  17267.          </div>
  17268.        
  17269.      
  17270.    </div>
  17271.  </div>
  17272.  
  17273.  
  17274.    <script type="application/json" data-quick-buy-settings>
  17275.      {
  17276.        "cart_redirection": true,
  17277.        "money_format": "${{amount}}"
  17278.      }
  17279.    </script>
  17280.  
  17281. </li>
  17282.    
  17283.      
  17284.  
  17285.  
  17286.  
  17287.  
  17288.  
  17289.  
  17290.  
  17291.  
  17292.  
  17293.  
  17294.  
  17295.  
  17296.  
  17297.  
  17298.  
  17299.  
  17300.  
  17301.  
  17302.  
  17303.  
  17304.  
  17305.  
  17306.  
  17307.  
  17308.  
  17309.  
  17310.  
  17311.  
  17312.  
  17313.  
  17314.  
  17315.  
  17316.    
  17317.  
  17318.  
  17319.  
  17320. <li
  17321.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17322.  data-product-item
  17323.  data-product-quickshop-url="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17324.  
  17325. >
  17326.  <div class="productitem" data-product-item-content>
  17327.    
  17328.    
  17329.    
  17330.    
  17331.  
  17332.    
  17333.  
  17334.    
  17335.  
  17336.    <div class="productitem__container">
  17337.      
  17338.  
  17339.      <div class="productitem__image-container">
  17340.        <a target="_blank"
  17341.          class="productitem--image-link"
  17342.          href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17343.          aria-label="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17344.          tabindex="-1"
  17345.          data-product-page-link
  17346.        >
  17347.          <figure
  17348.            class="productitem--image"
  17349.            data-product-item-image
  17350.            
  17351.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17352.            
  17353.          >
  17354.            
  17355.              
  17356.              
  17357.  
  17358.  
  17359.    <noscript data-rimg-noscript>
  17360.      <img loading="lazy"
  17361.        
  17362.          src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17363.        
  17364.  
  17365.        alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17366.        data-rimg="noscript"
  17367.        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"
  17368.        class="productitem--image-primary"
  17369.        
  17370.        
  17371.      >
  17372.    </noscript>
  17373.  
  17374.  
  17375.  <img loading="lazy"
  17376.    
  17377.      src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17378.    
  17379.    alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17380.  
  17381.    
  17382.      data-rimg="lazy"
  17383.      data-rimg-scale="1"
  17384.      data-rimg-template="//laptopparts.ca/cdn/shop/products/23.apq0n.001_{size}.jpg?v=1715271966"
  17385.      data-rimg-max="600x600"
  17386.      data-rimg-crop="false"
  17387.      
  17388.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17389.    
  17390.  
  17391.    class="productitem--image-primary"
  17392.    
  17393.    
  17394.  >
  17395.  
  17396.  
  17397.  
  17398.  <div data-rimg-canvas></div>
  17399.  
  17400.  
  17401.            
  17402.  
  17403.            
  17404.  
  17405.  
  17406.  
  17407.  
  17408.  
  17409.  
  17410.  
  17411.  
  17412.  
  17413.  
  17414.  
  17415.  
  17416.  
  17417.  
  17418.  
  17419.  
  17420.  
  17421.  
  17422.  
  17423.  
  17424.  
  17425.  
  17426.  
  17427.  
  17428.  
  17429.  
  17430.  
  17431.          </figure>
  17432.        </a>
  17433.      </div><div class="productitem--info">
  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.  
  17463.  
  17464.  
  17465.  
  17466.  
  17467.  
  17468.  
  17469.  
  17470.  
  17471. <div class="price productitem__price ">
  17472.  
  17473.    <div
  17474.      class="price__compare-at visible"
  17475.      data-price-compare-container
  17476.    >
  17477.  
  17478.      
  17479.        <span class="money price__original" data-price-original></span>
  17480.      
  17481.    </div>
  17482.  
  17483.  
  17484.    
  17485.      
  17486.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17487.        
  17488.          <span class="visually-hidden">Original price</span>
  17489.          <span class="money price__compare-at--min" data-price-compare-min>
  17490.            $58.99
  17491.          </span>
  17492.          -
  17493.          <span class="visually-hidden">Original price</span>
  17494.          <span class="money price__compare-at--max" data-price-compare-max>
  17495.            $58.99
  17496.          </span>
  17497.        
  17498.      </div>
  17499.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17500.        <span class="visually-hidden">Original price</span>
  17501.        <span class="money price__compare-at--single" data-price-compare>
  17502.          
  17503.        </span>
  17504.      </div>
  17505.    
  17506.  
  17507.  
  17508.  <div class="price__current price__current--emphasize " data-price-container>
  17509.  
  17510.    
  17511.  
  17512.    
  17513.      
  17514.      
  17515.      <span class="money" data-price>
  17516.        $58.99
  17517.      </span>
  17518.    
  17519.    
  17520.  </div>
  17521.  
  17522.  
  17523.    
  17524.    <div class="price__current--hidden" data-current-price-range-hidden>
  17525.      
  17526.        <span class="money price__current--min" data-price-min>$58.99</span>
  17527.        -
  17528.        <span class="money price__current--max" data-price-max>$58.99</span>
  17529.      
  17530.    </div>
  17531.    <div class="price__current--hidden" data-current-price-hidden>
  17532.      <span class="visually-hidden">Current price</span>
  17533.      <span class="money" data-price>
  17534.        $58.99
  17535.      </span>
  17536.    </div>
  17537.  
  17538.  
  17539.  
  17540.    
  17541.    
  17542.    
  17543.    
  17544.  
  17545.    <div
  17546.      class="
  17547.        productitem__unit-price
  17548.        hidden
  17549.      "
  17550.      data-unit-price
  17551.    >
  17552.      <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>
  17553.    </div>
  17554.  
  17555.  
  17556.  
  17557. </div>
  17558.  
  17559.  
  17560.        
  17561.  
  17562.        <h2 class="productitem--title">
  17563.          <a href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a" data-product-page-link>
  17564.            Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A
  17565.          </a>
  17566.        </h2>
  17567.  
  17568.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  17569.        <div class="star_container 4451325446"></div>
  17570.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  17571.  
  17572.        
  17573.          
  17574.            <span class="productitem--vendor">
  17575.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  17576.            </span>
  17577.          
  17578.        
  17579.  
  17580.        
  17581.  
  17582.        
  17583.          
  17584.            <div class="productitem__stock-level">
  17585.              <!--
  17586.  
  17587.  
  17588.  
  17589.  
  17590.  
  17591.  
  17592.  
  17593. <div class="product-stock-level-wrapper" >
  17594.  
  17595.    <span class="
  17596.  product-stock-level
  17597.  product-stock-level--continue-selling
  17598.  
  17599. ">
  17600.      
  17601.  
  17602.      <span class="product-stock-level__text">
  17603.        
  17604.        <div class="product-stock-level__badge-text">
  17605.          
  17606.  
  17607.    In stock
  17608.  
  17609.  
  17610.        </div>
  17611.      </span>
  17612.    </span>
  17613.  
  17614. </div>
  17615. -->
  17616.              
  17617.  
  17618.  
  17619.    
  17620.      <b style="color:green">In stock</b>
  17621.    
  17622.  
  17623.  
  17624.  
  17625.  
  17626.  
  17627.  
  17628.  
  17629.            </div>
  17630.          
  17631.  
  17632.          
  17633.            
  17634.          
  17635.        
  17636.  
  17637.        
  17638.          <div class="productitem--description">
  17639.            <p>Genuine Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A</p>
  17640.  
  17641.            
  17642.          </div>
  17643.        
  17644.      </div>
  17645.  
  17646.      
  17647.        
  17648.          
  17649.          
  17650.          
  17651.  
  17652.          
  17653.          
  17654.  
  17655.          
  17656.  
  17657.          
  17658.  
  17659.          <div class="productitem--actions" data-product-actions>
  17660.            <div class="productitem--listview-price">
  17661.              
  17662.  
  17663.  
  17664.  
  17665.  
  17666.  
  17667.  
  17668.  
  17669.  
  17670.  
  17671.  
  17672.  
  17673.  
  17674.  
  17675.  
  17676.  
  17677.  
  17678.  
  17679.  
  17680.  
  17681.  
  17682.  
  17683.  
  17684.  
  17685.  
  17686.  
  17687.  
  17688.  
  17689.  
  17690.  
  17691.  
  17692. <div class="price productitem__price ">
  17693.  
  17694.    <div
  17695.      class="price__compare-at visible"
  17696.      data-price-compare-container
  17697.    >
  17698.  
  17699.      
  17700.        <span class="money price__original" data-price-original></span>
  17701.      
  17702.    </div>
  17703.  
  17704.  
  17705.    
  17706.      
  17707.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17708.        
  17709.          <span class="visually-hidden">Original price</span>
  17710.          <span class="money price__compare-at--min" data-price-compare-min>
  17711.            $58.99
  17712.          </span>
  17713.          -
  17714.          <span class="visually-hidden">Original price</span>
  17715.          <span class="money price__compare-at--max" data-price-compare-max>
  17716.            $58.99
  17717.          </span>
  17718.        
  17719.      </div>
  17720.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17721.        <span class="visually-hidden">Original price</span>
  17722.        <span class="money price__compare-at--single" data-price-compare>
  17723.          
  17724.        </span>
  17725.      </div>
  17726.    
  17727.  
  17728.  
  17729.  <div class="price__current price__current--emphasize " data-price-container>
  17730.  
  17731.    
  17732.  
  17733.    
  17734.      
  17735.      
  17736.      <span class="money" data-price>
  17737.        $58.99
  17738.      </span>
  17739.    
  17740.    
  17741.  </div>
  17742.  
  17743.  
  17744.    
  17745.    <div class="price__current--hidden" data-current-price-range-hidden>
  17746.      
  17747.        <span class="money price__current--min" data-price-min>$58.99</span>
  17748.        -
  17749.        <span class="money price__current--max" data-price-max>$58.99</span>
  17750.      
  17751.    </div>
  17752.    <div class="price__current--hidden" data-current-price-hidden>
  17753.      <span class="visually-hidden">Current price</span>
  17754.      <span class="money" data-price>
  17755.        $58.99
  17756.      </span>
  17757.    </div>
  17758.  
  17759.  
  17760.  
  17761.    
  17762.    
  17763.    
  17764.    
  17765.  
  17766.    <div
  17767.      class="
  17768.        productitem__unit-price
  17769.        hidden
  17770.      "
  17771.      data-unit-price
  17772.    >
  17773.      <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>
  17774.    </div>
  17775.  
  17776.  
  17777.  
  17778. </div>
  17779.  
  17780.  
  17781.            </div>
  17782.  
  17783.            <div class="productitem--listview-badge">
  17784.              
  17785.  
  17786.  
  17787.  
  17788.  
  17789.  
  17790.  
  17791.  
  17792.  
  17793.  
  17794.  
  17795.  
  17796.  
  17797.  
  17798.  
  17799.  
  17800.  
  17801.  
  17802.  
  17803.  
  17804.  
  17805.  
  17806.  
  17807.  
  17808.  
  17809.  
  17810.  
  17811.  
  17812.            </div>
  17813.  
  17814.            
  17815.              <div
  17816.                class="
  17817.                  productitem--action
  17818.                  quickshop-button
  17819.                  
  17820.                "
  17821.              >
  17822.                <button
  17823.                  class="productitem--action-trigger button-secondary"
  17824.                  data-quickshop-full
  17825.                  
  17826.                  
  17827.                  type="button"
  17828.                >
  17829.                  Quick shop
  17830.                </button>
  17831.              </div>
  17832.            
  17833.  
  17834.            
  17835.              <div
  17836.                class="
  17837.                  productitem--action
  17838.                  atc--button
  17839.                  
  17840.                "
  17841.              >
  17842.                <button
  17843.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17844.                  type="button"
  17845.                  aria-label="Add to cart"
  17846.                  
  17847.                    data-quick-buy
  17848.                  
  17849.                  data-variant-id="39666095259735"
  17850.                  
  17851.                >
  17852.                  <span class="atc-button--text">
  17853.                    Add to cart
  17854.                  </span>
  17855.                  <span class="atc-button--icon"><svg
  17856.  aria-hidden="true"
  17857.  focusable="false"
  17858.  role="presentation"
  17859.  width="26"
  17860.  height="26"
  17861.  viewBox="0 0 26 26"
  17862.  xmlns="http://www.w3.org/2000/svg"
  17863. >
  17864.  <g fill-rule="nonzero" fill="currentColor">
  17865.    <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"/>
  17866.  </g>
  17867. </svg></span>
  17868.                </button>
  17869.              </div>
  17870.            
  17871.          </div>
  17872.        
  17873.      
  17874.    </div>
  17875.  </div>
  17876.  
  17877.  
  17878.    <script type="application/json" data-quick-buy-settings>
  17879.      {
  17880.        "cart_redirection": true,
  17881.        "money_format": "${{amount}}"
  17882.      }
  17883.    </script>
  17884.  
  17885. </li>
  17886.    
  17887.      
  17888.  
  17889.  
  17890.  
  17891.  
  17892.  
  17893.  
  17894.  
  17895.  
  17896.  
  17897.  
  17898.  
  17899.  
  17900.  
  17901.  
  17902.  
  17903.  
  17904.  
  17905.  
  17906.  
  17907.  
  17908.  
  17909.  
  17910.  
  17911.  
  17912.  
  17913.  
  17914.  
  17915.  
  17916.  
  17917.  
  17918.  
  17919.  
  17920.    
  17921.  
  17922.  
  17923.  
  17924. <li
  17925.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17926.  data-product-item
  17927.  data-product-quickshop-url="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17928.  
  17929. >
  17930.  <div class="productitem" data-product-item-content>
  17931.    
  17932.    
  17933.    
  17934.    
  17935.  
  17936.    
  17937.  
  17938.    
  17939.  
  17940.    <div class="productitem__container">
  17941.      
  17942.  
  17943.      <div class="productitem__image-container">
  17944.        <a target="_blank"
  17945.          class="productitem--image-link"
  17946.          href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17947.          aria-label="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17948.          tabindex="-1"
  17949.          data-product-page-link
  17950.        >
  17951.          <figure
  17952.            class="productitem--image"
  17953.            data-product-item-image
  17954.            
  17955.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17956.            
  17957.          >
  17958.            
  17959.              
  17960.              
  17961.  
  17962.  
  17963.    <noscript data-rimg-noscript>
  17964.      <img loading="lazy"
  17965.        
  17966.          src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  17967.        
  17968.  
  17969.        alt=""
  17970.        data-rimg="noscript"
  17971.        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"
  17972.        class="productitem--image-primary"
  17973.        
  17974.        
  17975.      >
  17976.    </noscript>
  17977.  
  17978.  
  17979.  <img loading="lazy"
  17980.    
  17981.      src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  17982.    
  17983.    alt=""
  17984.  
  17985.    
  17986.      data-rimg="lazy"
  17987.      data-rimg-scale="1"
  17988.      data-rimg-template="//laptopparts.ca/cdn/shop/products/55.r4f02.002_{size}.png?v=1697125258"
  17989.      data-rimg-max="603x603"
  17990.      data-rimg-crop="false"
  17991.      
  17992.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17993.    
  17994.  
  17995.    class="productitem--image-primary"
  17996.    
  17997.    
  17998.  >
  17999.  
  18000.  
  18001.  
  18002.  <div data-rimg-canvas></div>
  18003.  
  18004.  
  18005.            
  18006.  
  18007.            
  18008.  
  18009.  
  18010.  
  18011.  
  18012.  
  18013.  
  18014.  
  18015.  
  18016.  
  18017.  
  18018.  
  18019.  
  18020.  
  18021.  
  18022.  
  18023.  
  18024.  
  18025.  
  18026.  
  18027.  
  18028.  
  18029.  
  18030.  
  18031.  
  18032.  
  18033.  
  18034.  
  18035.          </figure>
  18036.        </a>
  18037.      </div><div class="productitem--info">
  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.  
  18067.  
  18068.  
  18069.  
  18070.  
  18071.  
  18072.  
  18073.  
  18074.  
  18075. <div class="price productitem__price ">
  18076.  
  18077.    <div
  18078.      class="price__compare-at visible"
  18079.      data-price-compare-container
  18080.    >
  18081.  
  18082.      
  18083.        <span class="money price__original" data-price-original></span>
  18084.      
  18085.    </div>
  18086.  
  18087.  
  18088.    
  18089.      
  18090.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18091.        
  18092.          <span class="visually-hidden">Original price</span>
  18093.          <span class="money price__compare-at--min" data-price-compare-min>
  18094.            $56.99
  18095.          </span>
  18096.          -
  18097.          <span class="visually-hidden">Original price</span>
  18098.          <span class="money price__compare-at--max" data-price-compare-max>
  18099.            $56.99
  18100.          </span>
  18101.        
  18102.      </div>
  18103.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18104.        <span class="visually-hidden">Original price</span>
  18105.        <span class="money price__compare-at--single" data-price-compare>
  18106.          
  18107.        </span>
  18108.      </div>
  18109.    
  18110.  
  18111.  
  18112.  <div class="price__current price__current--emphasize " data-price-container>
  18113.  
  18114.    
  18115.  
  18116.    
  18117.      
  18118.      
  18119.      <span class="money" data-price>
  18120.        $56.99
  18121.      </span>
  18122.    
  18123.    
  18124.  </div>
  18125.  
  18126.  
  18127.    
  18128.    <div class="price__current--hidden" data-current-price-range-hidden>
  18129.      
  18130.        <span class="money price__current--min" data-price-min>$56.99</span>
  18131.        -
  18132.        <span class="money price__current--max" data-price-max>$56.99</span>
  18133.      
  18134.    </div>
  18135.    <div class="price__current--hidden" data-current-price-hidden>
  18136.      <span class="visually-hidden">Current price</span>
  18137.      <span class="money" data-price>
  18138.        $56.99
  18139.      </span>
  18140.    </div>
  18141.  
  18142.  
  18143.  
  18144.    
  18145.    
  18146.    
  18147.    
  18148.  
  18149.    <div
  18150.      class="
  18151.        productitem__unit-price
  18152.        hidden
  18153.      "
  18154.      data-unit-price
  18155.    >
  18156.      <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>
  18157.    </div>
  18158.  
  18159.  
  18160.  
  18161. </div>
  18162.  
  18163.  
  18164.        
  18165.  
  18166.        <h2 class="productitem--title">
  18167.          <a href="/products/55-r4f02-002-acer-aspire-5742z-usb-board" data-product-page-link>
  18168.            Acer Aspire 5742Z USB Board 55.R4F02.002
  18169.          </a>
  18170.        </h2>
  18171.  
  18172.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18173.        <div class="star_container 4605263622"></div>
  18174.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18175.  
  18176.        
  18177.          
  18178.            <span class="productitem--vendor">
  18179.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18180.            </span>
  18181.          
  18182.        
  18183.  
  18184.        
  18185.  
  18186.        
  18187.          
  18188.            <div class="productitem__stock-level">
  18189.              <!--
  18190.  
  18191.  
  18192.  
  18193.  
  18194.  
  18195.  
  18196.  
  18197. <div class="product-stock-level-wrapper" >
  18198.  
  18199.    <span class="
  18200.  product-stock-level
  18201.  product-stock-level--continue-selling
  18202.  
  18203. ">
  18204.      
  18205.  
  18206.      <span class="product-stock-level__text">
  18207.        
  18208.        <div class="product-stock-level__badge-text">
  18209.          
  18210.  
  18211.    In stock
  18212.  
  18213.  
  18214.        </div>
  18215.      </span>
  18216.    </span>
  18217.  
  18218. </div>
  18219. -->
  18220.              
  18221.  
  18222.  
  18223.    
  18224.      <b style="color:green">In stock</b>
  18225.    
  18226.  
  18227.  
  18228.  
  18229.  
  18230.  
  18231.  
  18232.  
  18233.            </div>
  18234.          
  18235.  
  18236.          
  18237.            
  18238.          
  18239.        
  18240.  
  18241.        
  18242.          <div class="productitem--description">
  18243.            <p>55.R4F02.002 Acer Aspire 5742Z USB Board - Pulled from working laptops
  18244. Compatible Models:
  18245. Aspire 5252, 5333, 5336, 5552, 5733, 5736, 5742
  18246. Gateway N...</p>
  18247.  
  18248.            
  18249.              <a
  18250.                href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18251.                class="productitem--link"
  18252.                data-product-page-link
  18253.              >
  18254.                View full details
  18255.              </a>
  18256.            
  18257.          </div>
  18258.        
  18259.      </div>
  18260.  
  18261.      
  18262.        
  18263.          
  18264.          
  18265.          
  18266.  
  18267.          
  18268.          
  18269.  
  18270.          
  18271.  
  18272.          
  18273.  
  18274.          <div class="productitem--actions" data-product-actions>
  18275.            <div class="productitem--listview-price">
  18276.              
  18277.  
  18278.  
  18279.  
  18280.  
  18281.  
  18282.  
  18283.  
  18284.  
  18285.  
  18286.  
  18287.  
  18288.  
  18289.  
  18290.  
  18291.  
  18292.  
  18293.  
  18294.  
  18295.  
  18296.  
  18297.  
  18298.  
  18299.  
  18300.  
  18301.  
  18302.  
  18303.  
  18304.  
  18305.  
  18306.  
  18307. <div class="price productitem__price ">
  18308.  
  18309.    <div
  18310.      class="price__compare-at visible"
  18311.      data-price-compare-container
  18312.    >
  18313.  
  18314.      
  18315.        <span class="money price__original" data-price-original></span>
  18316.      
  18317.    </div>
  18318.  
  18319.  
  18320.    
  18321.      
  18322.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18323.        
  18324.          <span class="visually-hidden">Original price</span>
  18325.          <span class="money price__compare-at--min" data-price-compare-min>
  18326.            $56.99
  18327.          </span>
  18328.          -
  18329.          <span class="visually-hidden">Original price</span>
  18330.          <span class="money price__compare-at--max" data-price-compare-max>
  18331.            $56.99
  18332.          </span>
  18333.        
  18334.      </div>
  18335.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18336.        <span class="visually-hidden">Original price</span>
  18337.        <span class="money price__compare-at--single" data-price-compare>
  18338.          
  18339.        </span>
  18340.      </div>
  18341.    
  18342.  
  18343.  
  18344.  <div class="price__current price__current--emphasize " data-price-container>
  18345.  
  18346.    
  18347.  
  18348.    
  18349.      
  18350.      
  18351.      <span class="money" data-price>
  18352.        $56.99
  18353.      </span>
  18354.    
  18355.    
  18356.  </div>
  18357.  
  18358.  
  18359.    
  18360.    <div class="price__current--hidden" data-current-price-range-hidden>
  18361.      
  18362.        <span class="money price__current--min" data-price-min>$56.99</span>
  18363.        -
  18364.        <span class="money price__current--max" data-price-max>$56.99</span>
  18365.      
  18366.    </div>
  18367.    <div class="price__current--hidden" data-current-price-hidden>
  18368.      <span class="visually-hidden">Current price</span>
  18369.      <span class="money" data-price>
  18370.        $56.99
  18371.      </span>
  18372.    </div>
  18373.  
  18374.  
  18375.  
  18376.    
  18377.    
  18378.    
  18379.    
  18380.  
  18381.    <div
  18382.      class="
  18383.        productitem__unit-price
  18384.        hidden
  18385.      "
  18386.      data-unit-price
  18387.    >
  18388.      <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>
  18389.    </div>
  18390.  
  18391.  
  18392.  
  18393. </div>
  18394.  
  18395.  
  18396.            </div>
  18397.  
  18398.            <div class="productitem--listview-badge">
  18399.              
  18400.  
  18401.  
  18402.  
  18403.  
  18404.  
  18405.  
  18406.  
  18407.  
  18408.  
  18409.  
  18410.  
  18411.  
  18412.  
  18413.  
  18414.  
  18415.  
  18416.  
  18417.  
  18418.  
  18419.  
  18420.  
  18421.  
  18422.  
  18423.  
  18424.  
  18425.  
  18426.  
  18427.            </div>
  18428.  
  18429.            
  18430.              <div
  18431.                class="
  18432.                  productitem--action
  18433.                  quickshop-button
  18434.                  
  18435.                "
  18436.              >
  18437.                <button
  18438.                  class="productitem--action-trigger button-secondary"
  18439.                  data-quickshop-full
  18440.                  
  18441.                  
  18442.                  type="button"
  18443.                >
  18444.                  Quick shop
  18445.                </button>
  18446.              </div>
  18447.            
  18448.  
  18449.            
  18450.              <div
  18451.                class="
  18452.                  productitem--action
  18453.                  atc--button
  18454.                  
  18455.                "
  18456.              >
  18457.                <button
  18458.                  class="productitem--action-trigger productitem--action-atc button-primary"
  18459.                  type="button"
  18460.                  aria-label="Add to cart"
  18461.                  
  18462.                    data-quick-buy
  18463.                  
  18464.                  data-variant-id="15084894150"
  18465.                  
  18466.                >
  18467.                  <span class="atc-button--text">
  18468.                    Add to cart
  18469.                  </span>
  18470.                  <span class="atc-button--icon"><svg
  18471.  aria-hidden="true"
  18472.  focusable="false"
  18473.  role="presentation"
  18474.  width="26"
  18475.  height="26"
  18476.  viewBox="0 0 26 26"
  18477.  xmlns="http://www.w3.org/2000/svg"
  18478. >
  18479.  <g fill-rule="nonzero" fill="currentColor">
  18480.    <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"/>
  18481.  </g>
  18482. </svg></span>
  18483.                </button>
  18484.              </div>
  18485.            
  18486.          </div>
  18487.        
  18488.      
  18489.    </div>
  18490.  </div>
  18491.  
  18492.  
  18493.    <script type="application/json" data-quick-buy-settings>
  18494.      {
  18495.        "cart_redirection": true,
  18496.        "money_format": "${{amount}}"
  18497.      }
  18498.    </script>
  18499.  
  18500. </li>
  18501.    
  18502.      
  18503.  
  18504.  
  18505.  
  18506.  
  18507.  
  18508.  
  18509.  
  18510.  
  18511.  
  18512.  
  18513.  
  18514.  
  18515.  
  18516.  
  18517.  
  18518.  
  18519.  
  18520.  
  18521.  
  18522.  
  18523.  
  18524.  
  18525.  
  18526.  
  18527.  
  18528.  
  18529.  
  18530.  
  18531.  
  18532.  
  18533.  
  18534.  
  18535.    
  18536.  
  18537.  
  18538.  
  18539. <li
  18540.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  18541.  data-product-item
  18542.  data-product-quickshop-url="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18543.  
  18544. >
  18545.  <div class="productitem" data-product-item-content>
  18546.    
  18547.    
  18548.    
  18549.    
  18550.  
  18551.    
  18552.  
  18553.    
  18554.  
  18555.    <div class="productitem__container">
  18556.      
  18557.  
  18558.      <div class="productitem__image-container">
  18559.        <a target="_blank"
  18560.          class="productitem--image-link"
  18561.          href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18562.          aria-label="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18563.          tabindex="-1"
  18564.          data-product-page-link
  18565.        >
  18566.          <figure
  18567.            class="productitem--image"
  18568.            data-product-item-image
  18569.            
  18570.              style="--product-grid-item-image-aspect-ratio: 1.3333333333333333;"
  18571.            
  18572.          >
  18573.            
  18574.              
  18575.              
  18576.  
  18577.  
  18578.    <noscript data-rimg-noscript>
  18579.      <img loading="lazy"
  18580.        
  18581.          src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18582.        
  18583.  
  18584.        alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18585.        data-rimg="noscript"
  18586.        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"
  18587.        class="productitem--image-primary"
  18588.        
  18589.        
  18590.      >
  18591.    </noscript>
  18592.  
  18593.  
  18594.  <img loading="lazy"
  18595.    
  18596.      src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18597.    
  18598.    alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18599.  
  18600.    
  18601.      data-rimg="lazy"
  18602.      data-rimg-scale="1"
  18603.      data-rimg-template="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_{size}.jpg?v=1729362531"
  18604.      data-rimg-max="1500x1125"
  18605.      data-rimg-crop="false"
  18606.      
  18607.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='384'></svg>"
  18608.    
  18609.  
  18610.    class="productitem--image-primary"
  18611.    
  18612.    
  18613.  >
  18614.  
  18615.  
  18616.  
  18617.  <div data-rimg-canvas></div>
  18618.  
  18619.  
  18620.            
  18621.  
  18622.            
  18623.  
  18624.  
  18625.  
  18626.  
  18627.  
  18628.  
  18629.  
  18630.  
  18631.  
  18632.  
  18633.  
  18634.  
  18635.  
  18636.  
  18637.  
  18638.  
  18639.  
  18640.  
  18641.  
  18642.  
  18643.  
  18644.  
  18645.  
  18646.  
  18647.  
  18648.  
  18649.  
  18650.          </figure>
  18651.        </a>
  18652.      </div><div class="productitem--info">
  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.  
  18682.  
  18683.  
  18684.  
  18685.  
  18686.  
  18687.  
  18688.  
  18689.  
  18690. <div class="price productitem__price ">
  18691.  
  18692.    <div
  18693.      class="price__compare-at visible"
  18694.      data-price-compare-container
  18695.    >
  18696.  
  18697.      
  18698.        <span class="money price__original" data-price-original></span>
  18699.      
  18700.    </div>
  18701.  
  18702.  
  18703.    
  18704.      
  18705.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18706.        
  18707.          <span class="visually-hidden">Original price</span>
  18708.          <span class="money price__compare-at--min" data-price-compare-min>
  18709.            $56.99
  18710.          </span>
  18711.          -
  18712.          <span class="visually-hidden">Original price</span>
  18713.          <span class="money price__compare-at--max" data-price-compare-max>
  18714.            $56.99
  18715.          </span>
  18716.        
  18717.      </div>
  18718.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18719.        <span class="visually-hidden">Original price</span>
  18720.        <span class="money price__compare-at--single" data-price-compare>
  18721.          
  18722.        </span>
  18723.      </div>
  18724.    
  18725.  
  18726.  
  18727.  <div class="price__current price__current--emphasize " data-price-container>
  18728.  
  18729.    
  18730.  
  18731.    
  18732.      
  18733.      
  18734.      <span class="money" data-price>
  18735.        $56.99
  18736.      </span>
  18737.    
  18738.    
  18739.  </div>
  18740.  
  18741.  
  18742.    
  18743.    <div class="price__current--hidden" data-current-price-range-hidden>
  18744.      
  18745.        <span class="money price__current--min" data-price-min>$56.99</span>
  18746.        -
  18747.        <span class="money price__current--max" data-price-max>$56.99</span>
  18748.      
  18749.    </div>
  18750.    <div class="price__current--hidden" data-current-price-hidden>
  18751.      <span class="visually-hidden">Current price</span>
  18752.      <span class="money" data-price>
  18753.        $56.99
  18754.      </span>
  18755.    </div>
  18756.  
  18757.  
  18758.  
  18759.    
  18760.    
  18761.    
  18762.    
  18763.  
  18764.    <div
  18765.      class="
  18766.        productitem__unit-price
  18767.        hidden
  18768.      "
  18769.      data-unit-price
  18770.    >
  18771.      <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>
  18772.    </div>
  18773.  
  18774.  
  18775.  
  18776. </div>
  18777.  
  18778.  
  18779.        
  18780.  
  18781.        <h2 class="productitem--title">
  18782.          <a href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1" data-product-page-link>
  18783.            Acer Aspire 7 A715-72 A715-72G A717-72 A717-72G Laptop Cpu Fan 23.GXBN2.001
  18784.          </a>
  18785.        </h2>
  18786.  
  18787.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18788.        <div class="star_container 3929786187863"></div>
  18789.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18790.  
  18791.        
  18792.          
  18793.            <span class="productitem--vendor">
  18794.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18795.            </span>
  18796.          
  18797.        
  18798.  
  18799.        
  18800.  
  18801.        
  18802.          
  18803.            <div class="productitem__stock-level">
  18804.              <!--
  18805.  
  18806.  
  18807.  
  18808.  
  18809.  
  18810.  
  18811.  
  18812. <div class="product-stock-level-wrapper" >
  18813.  
  18814.    <span class="
  18815.  product-stock-level
  18816.  product-stock-level--continue-selling
  18817.  
  18818. ">
  18819.      
  18820.  
  18821.      <span class="product-stock-level__text">
  18822.        
  18823.        <div class="product-stock-level__badge-text">
  18824.          
  18825.  
  18826.    In stock
  18827.  
  18828.  
  18829.        </div>
  18830.      </span>
  18831.    </span>
  18832.  
  18833. </div>
  18834. -->
  18835.              
  18836.  
  18837.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  18838.  
  18839.  
  18840.  
  18841.  
  18842.  
  18843.  
  18844.  
  18845.            </div>
  18846.          
  18847.  
  18848.          
  18849.            
  18850.          
  18851.        
  18852.  
  18853.        
  18854.          <div class="productitem--description">
  18855.            <p>
  18856. Description: New Acer laptop cpu fan.
  18857.  
  18858. Compatible Part #'s: 23.GXBN2.001
  18859.  
  18860. Compatible Models:
  18861. Acer Aspire 7 A715-72, A715-72G
  18862. Acer Aspire 7 A717-7...</p>
  18863.  
  18864.            
  18865.              <a
  18866.                href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18867.                class="productitem--link"
  18868.                data-product-page-link
  18869.              >
  18870.                View full details
  18871.              </a>
  18872.            
  18873.          </div>
  18874.        
  18875.      </div>
  18876.  
  18877.      
  18878.        
  18879.          
  18880.          
  18881.          
  18882.  
  18883.          
  18884.          
  18885.  
  18886.          
  18887.  
  18888.          
  18889.  
  18890.          <div class="productitem--actions" data-product-actions>
  18891.            <div class="productitem--listview-price">
  18892.              
  18893.  
  18894.  
  18895.  
  18896.  
  18897.  
  18898.  
  18899.  
  18900.  
  18901.  
  18902.  
  18903.  
  18904.  
  18905.  
  18906.  
  18907.  
  18908.  
  18909.  
  18910.  
  18911.  
  18912.  
  18913.  
  18914.  
  18915.  
  18916.  
  18917.  
  18918.  
  18919.  
  18920.  
  18921.  
  18922.  
  18923. <div class="price productitem__price ">
  18924.  
  18925.    <div
  18926.      class="price__compare-at visible"
  18927.      data-price-compare-container
  18928.    >
  18929.  
  18930.      
  18931.        <span class="money price__original" data-price-original></span>
  18932.      
  18933.    </div>
  18934.  
  18935.  
  18936.    
  18937.      
  18938.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18939.        
  18940.          <span class="visually-hidden">Original price</span>
  18941.          <span class="money price__compare-at--min" data-price-compare-min>
  18942.            $56.99
  18943.          </span>
  18944.          -
  18945.          <span class="visually-hidden">Original price</span>
  18946.          <span class="money price__compare-at--max" data-price-compare-max>
  18947.            $56.99
  18948.          </span>
  18949.        
  18950.      </div>
  18951.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18952.        <span class="visually-hidden">Original price</span>
  18953.        <span class="money price__compare-at--single" data-price-compare>
  18954.          
  18955.        </span>
  18956.      </div>
  18957.    
  18958.  
  18959.  
  18960.  <div class="price__current price__current--emphasize " data-price-container>
  18961.  
  18962.    
  18963.  
  18964.    
  18965.      
  18966.      
  18967.      <span class="money" data-price>
  18968.        $56.99
  18969.      </span>
  18970.    
  18971.    
  18972.  </div>
  18973.  
  18974.  
  18975.    
  18976.    <div class="price__current--hidden" data-current-price-range-hidden>
  18977.      
  18978.        <span class="money price__current--min" data-price-min>$56.99</span>
  18979.        -
  18980.        <span class="money price__current--max" data-price-max>$56.99</span>
  18981.      
  18982.    </div>
  18983.    <div class="price__current--hidden" data-current-price-hidden>
  18984.      <span class="visually-hidden">Current price</span>
  18985.      <span class="money" data-price>
  18986.        $56.99
  18987.      </span>
  18988.    </div>
  18989.  
  18990.  
  18991.  
  18992.    
  18993.    
  18994.    
  18995.    
  18996.  
  18997.    <div
  18998.      class="
  18999.        productitem__unit-price
  19000.        hidden
  19001.      "
  19002.      data-unit-price
  19003.    >
  19004.      <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>
  19005.    </div>
  19006.  
  19007.  
  19008.  
  19009. </div>
  19010.  
  19011.  
  19012.            </div>
  19013.  
  19014.            <div class="productitem--listview-badge">
  19015.              
  19016.  
  19017.  
  19018.  
  19019.  
  19020.  
  19021.  
  19022.  
  19023.  
  19024.  
  19025.  
  19026.  
  19027.  
  19028.  
  19029.  
  19030.  
  19031.  
  19032.  
  19033.  
  19034.  
  19035.  
  19036.  
  19037.  
  19038.  
  19039.  
  19040.  
  19041.  
  19042.  
  19043.            </div>
  19044.  
  19045.            
  19046.              <div
  19047.                class="
  19048.                  productitem--action
  19049.                  quickshop-button
  19050.                  
  19051.                "
  19052.              >
  19053.                <button
  19054.                  class="productitem--action-trigger button-secondary"
  19055.                  data-quickshop-full
  19056.                  
  19057.                  
  19058.                  type="button"
  19059.                >
  19060.                  Quick shop
  19061.                </button>
  19062.              </div>
  19063.            
  19064.  
  19065.            
  19066.              <div
  19067.                class="
  19068.                  productitem--action
  19069.                  atc--button
  19070.                  
  19071.                "
  19072.              >
  19073.                <button
  19074.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19075.                  type="button"
  19076.                  aria-label="Add to cart"
  19077.                  
  19078.                    data-quick-buy
  19079.                  
  19080.                  data-variant-id="29440907575383"
  19081.                  
  19082.                >
  19083.                  <span class="atc-button--text">
  19084.                    Add to cart
  19085.                  </span>
  19086.                  <span class="atc-button--icon"><svg
  19087.  aria-hidden="true"
  19088.  focusable="false"
  19089.  role="presentation"
  19090.  width="26"
  19091.  height="26"
  19092.  viewBox="0 0 26 26"
  19093.  xmlns="http://www.w3.org/2000/svg"
  19094. >
  19095.  <g fill-rule="nonzero" fill="currentColor">
  19096.    <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"/>
  19097.  </g>
  19098. </svg></span>
  19099.                </button>
  19100.              </div>
  19101.            
  19102.          </div>
  19103.        
  19104.      
  19105.    </div>
  19106.  </div>
  19107.  
  19108.  
  19109.    <script type="application/json" data-quick-buy-settings>
  19110.      {
  19111.        "cart_redirection": true,
  19112.        "money_format": "${{amount}}"
  19113.      }
  19114.    </script>
  19115.  
  19116. </li>
  19117.    
  19118.      
  19119.  
  19120.  
  19121.  
  19122.  
  19123.  
  19124.  
  19125.  
  19126.  
  19127.  
  19128.  
  19129.  
  19130.  
  19131.  
  19132.  
  19133.  
  19134.  
  19135.  
  19136.  
  19137.  
  19138.  
  19139.  
  19140.  
  19141.  
  19142.  
  19143.  
  19144.  
  19145.  
  19146.  
  19147.  
  19148.  
  19149.  
  19150.  
  19151.    
  19152.  
  19153.  
  19154.  
  19155. <li
  19156.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  19157.  data-product-item
  19158.  data-product-quickshop-url="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19159.  
  19160. >
  19161.  <div class="productitem" data-product-item-content>
  19162.    
  19163.    
  19164.    
  19165.    
  19166.  
  19167.    
  19168.  
  19169.    
  19170.  
  19171.    <div class="productitem__container">
  19172.      
  19173.  
  19174.      <div class="productitem__image-container">
  19175.        <a target="_blank"
  19176.          class="productitem--image-link"
  19177.          href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19178.          aria-label="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19179.          tabindex="-1"
  19180.          data-product-page-link
  19181.        >
  19182.          <figure
  19183.            class="productitem--image"
  19184.            data-product-item-image
  19185.            
  19186.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  19187.            
  19188.          >
  19189.            
  19190.              
  19191.              
  19192.  
  19193.  
  19194.    <noscript data-rimg-noscript>
  19195.      <img loading="lazy"
  19196.        
  19197.          src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19198.        
  19199.  
  19200.        alt=""
  19201.        data-rimg="noscript"
  19202.        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"
  19203.        class="productitem--image-primary"
  19204.        
  19205.        
  19206.      >
  19207.    </noscript>
  19208.  
  19209.  
  19210.  <img loading="lazy"
  19211.    
  19212.      src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19213.    
  19214.    alt=""
  19215.  
  19216.    
  19217.      data-rimg="lazy"
  19218.      data-rimg-scale="1"
  19219.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_{size}.jpg?v=1697125259"
  19220.      data-rimg-max="2048x2048"
  19221.      data-rimg-crop="false"
  19222.      
  19223.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  19224.    
  19225.  
  19226.    class="productitem--image-primary"
  19227.    
  19228.    
  19229.  >
  19230.  
  19231.  
  19232.  
  19233.  <div data-rimg-canvas></div>
  19234.  
  19235.  
  19236.            
  19237.  
  19238.            
  19239.  
  19240.  
  19241.  
  19242.  
  19243.  
  19244.  
  19245.  
  19246.  
  19247.  
  19248.  
  19249.  
  19250.  
  19251.  
  19252.  
  19253.  
  19254.  
  19255.  
  19256.  
  19257.  
  19258.  
  19259.  
  19260.  
  19261.  
  19262.  
  19263.  
  19264.  
  19265.  
  19266.          </figure>
  19267.        </a>
  19268.      </div><div class="productitem--info">
  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.  
  19298.  
  19299.  
  19300.  
  19301.  
  19302.  
  19303.  
  19304.  
  19305.  
  19306. <div class="price productitem__price ">
  19307.  
  19308.    <div
  19309.      class="price__compare-at visible"
  19310.      data-price-compare-container
  19311.    >
  19312.  
  19313.      
  19314.        <span class="money price__original" data-price-original></span>
  19315.      
  19316.    </div>
  19317.  
  19318.  
  19319.    
  19320.      
  19321.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19322.        
  19323.          <span class="visually-hidden">Original price</span>
  19324.          <span class="money price__compare-at--min" data-price-compare-min>
  19325.            $64.99
  19326.          </span>
  19327.          -
  19328.          <span class="visually-hidden">Original price</span>
  19329.          <span class="money price__compare-at--max" data-price-compare-max>
  19330.            $64.99
  19331.          </span>
  19332.        
  19333.      </div>
  19334.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19335.        <span class="visually-hidden">Original price</span>
  19336.        <span class="money price__compare-at--single" data-price-compare>
  19337.          
  19338.        </span>
  19339.      </div>
  19340.    
  19341.  
  19342.  
  19343.  <div class="price__current price__current--emphasize " data-price-container>
  19344.  
  19345.    
  19346.  
  19347.    
  19348.      
  19349.      
  19350.      <span class="money" data-price>
  19351.        $64.99
  19352.      </span>
  19353.    
  19354.    
  19355.  </div>
  19356.  
  19357.  
  19358.    
  19359.    <div class="price__current--hidden" data-current-price-range-hidden>
  19360.      
  19361.        <span class="money price__current--min" data-price-min>$64.99</span>
  19362.        -
  19363.        <span class="money price__current--max" data-price-max>$64.99</span>
  19364.      
  19365.    </div>
  19366.    <div class="price__current--hidden" data-current-price-hidden>
  19367.      <span class="visually-hidden">Current price</span>
  19368.      <span class="money" data-price>
  19369.        $64.99
  19370.      </span>
  19371.    </div>
  19372.  
  19373.  
  19374.  
  19375.    
  19376.    
  19377.    
  19378.    
  19379.  
  19380.    <div
  19381.      class="
  19382.        productitem__unit-price
  19383.        hidden
  19384.      "
  19385.      data-unit-price
  19386.    >
  19387.      <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>
  19388.    </div>
  19389.  
  19390.  
  19391.  
  19392. </div>
  19393.  
  19394.  
  19395.        
  19396.  
  19397.        <h2 class="productitem--title">
  19398.          <a href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001" data-product-page-link>
  19399.            Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001
  19400.          </a>
  19401.        </h2>
  19402.  
  19403.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  19404.        <div class="star_container 3929790414935"></div>
  19405.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  19406.  
  19407.        
  19408.          
  19409.            <span class="productitem--vendor">
  19410.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  19411.            </span>
  19412.          
  19413.        
  19414.  
  19415.        
  19416.  
  19417.        
  19418.          
  19419.            <div class="productitem__stock-level">
  19420.              <!--
  19421.  
  19422.  
  19423.  
  19424.  
  19425.  
  19426.  
  19427.  
  19428. <div class="product-stock-level-wrapper" >
  19429.  
  19430.    <span class="
  19431.  product-stock-level
  19432.  product-stock-level--continue-selling
  19433.  
  19434. ">
  19435.      
  19436.  
  19437.      <span class="product-stock-level__text">
  19438.        
  19439.        <div class="product-stock-level__badge-text">
  19440.          
  19441.  
  19442.    In stock
  19443.  
  19444.  
  19445.        </div>
  19446.      </span>
  19447.    </span>
  19448.  
  19449. </div>
  19450. -->
  19451.              
  19452.  
  19453.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  19454.  
  19455.  
  19456.  
  19457.  
  19458.  
  19459.  
  19460.  
  19461.            </div>
  19462.          
  19463.  
  19464.          
  19465.            
  19466.          
  19467.        
  19468.  
  19469.        
  19470.          <div class="productitem--description">
  19471.            <p>
  19472. Description: New genuine Acer laptop dc jack cable. 45 watt version.
  19473.  
  19474. Compatible Part #'s: 50.GNSN7.001
  19475.  
  19476. Compatible Models:
  19477. Acer Aspire 1 A114-31
  19478. ...</p>
  19479.  
  19480.            
  19481.              <a
  19482.                href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19483.                class="productitem--link"
  19484.                data-product-page-link
  19485.              >
  19486.                View full details
  19487.              </a>
  19488.            
  19489.          </div>
  19490.        
  19491.      </div>
  19492.  
  19493.      
  19494.        
  19495.          
  19496.          
  19497.          
  19498.  
  19499.          
  19500.          
  19501.  
  19502.          
  19503.  
  19504.          
  19505.  
  19506.          <div class="productitem--actions" data-product-actions>
  19507.            <div class="productitem--listview-price">
  19508.              
  19509.  
  19510.  
  19511.  
  19512.  
  19513.  
  19514.  
  19515.  
  19516.  
  19517.  
  19518.  
  19519.  
  19520.  
  19521.  
  19522.  
  19523.  
  19524.  
  19525.  
  19526.  
  19527.  
  19528.  
  19529.  
  19530.  
  19531.  
  19532.  
  19533.  
  19534.  
  19535.  
  19536.  
  19537.  
  19538.  
  19539. <div class="price productitem__price ">
  19540.  
  19541.    <div
  19542.      class="price__compare-at visible"
  19543.      data-price-compare-container
  19544.    >
  19545.  
  19546.      
  19547.        <span class="money price__original" data-price-original></span>
  19548.      
  19549.    </div>
  19550.  
  19551.  
  19552.    
  19553.      
  19554.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19555.        
  19556.          <span class="visually-hidden">Original price</span>
  19557.          <span class="money price__compare-at--min" data-price-compare-min>
  19558.            $64.99
  19559.          </span>
  19560.          -
  19561.          <span class="visually-hidden">Original price</span>
  19562.          <span class="money price__compare-at--max" data-price-compare-max>
  19563.            $64.99
  19564.          </span>
  19565.        
  19566.      </div>
  19567.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19568.        <span class="visually-hidden">Original price</span>
  19569.        <span class="money price__compare-at--single" data-price-compare>
  19570.          
  19571.        </span>
  19572.      </div>
  19573.    
  19574.  
  19575.  
  19576.  <div class="price__current price__current--emphasize " data-price-container>
  19577.  
  19578.    
  19579.  
  19580.    
  19581.      
  19582.      
  19583.      <span class="money" data-price>
  19584.        $64.99
  19585.      </span>
  19586.    
  19587.    
  19588.  </div>
  19589.  
  19590.  
  19591.    
  19592.    <div class="price__current--hidden" data-current-price-range-hidden>
  19593.      
  19594.        <span class="money price__current--min" data-price-min>$64.99</span>
  19595.        -
  19596.        <span class="money price__current--max" data-price-max>$64.99</span>
  19597.      
  19598.    </div>
  19599.    <div class="price__current--hidden" data-current-price-hidden>
  19600.      <span class="visually-hidden">Current price</span>
  19601.      <span class="money" data-price>
  19602.        $64.99
  19603.      </span>
  19604.    </div>
  19605.  
  19606.  
  19607.  
  19608.    
  19609.    
  19610.    
  19611.    
  19612.  
  19613.    <div
  19614.      class="
  19615.        productitem__unit-price
  19616.        hidden
  19617.      "
  19618.      data-unit-price
  19619.    >
  19620.      <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>
  19621.    </div>
  19622.  
  19623.  
  19624.  
  19625. </div>
  19626.  
  19627.  
  19628.            </div>
  19629.  
  19630.            <div class="productitem--listview-badge">
  19631.              
  19632.  
  19633.  
  19634.  
  19635.  
  19636.  
  19637.  
  19638.  
  19639.  
  19640.  
  19641.  
  19642.  
  19643.  
  19644.  
  19645.  
  19646.  
  19647.  
  19648.  
  19649.  
  19650.  
  19651.  
  19652.  
  19653.  
  19654.  
  19655.  
  19656.  
  19657.  
  19658.  
  19659.            </div>
  19660.  
  19661.            
  19662.              <div
  19663.                class="
  19664.                  productitem--action
  19665.                  quickshop-button
  19666.                  
  19667.                "
  19668.              >
  19669.                <button
  19670.                  class="productitem--action-trigger button-secondary"
  19671.                  data-quickshop-full
  19672.                  
  19673.                  
  19674.                  type="button"
  19675.                >
  19676.                  Quick shop
  19677.                </button>
  19678.              </div>
  19679.            
  19680.  
  19681.            
  19682.              <div
  19683.                class="
  19684.                  productitem--action
  19685.                  atc--button
  19686.                  
  19687.                "
  19688.              >
  19689.                <button
  19690.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19691.                  type="button"
  19692.                  aria-label="Add to cart"
  19693.                  
  19694.                    data-quick-buy
  19695.                  
  19696.                  data-variant-id="29408090816599"
  19697.                  
  19698.                >
  19699.                  <span class="atc-button--text">
  19700.                    Add to cart
  19701.                  </span>
  19702.                  <span class="atc-button--icon"><svg
  19703.  aria-hidden="true"
  19704.  focusable="false"
  19705.  role="presentation"
  19706.  width="26"
  19707.  height="26"
  19708.  viewBox="0 0 26 26"
  19709.  xmlns="http://www.w3.org/2000/svg"
  19710. >
  19711.  <g fill-rule="nonzero" fill="currentColor">
  19712.    <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"/>
  19713.  </g>
  19714. </svg></span>
  19715.                </button>
  19716.              </div>
  19717.            
  19718.          </div>
  19719.        
  19720.      
  19721.    </div>
  19722.  </div>
  19723.  
  19724.  
  19725.    <script type="application/json" data-quick-buy-settings>
  19726.      {
  19727.        "cart_redirection": true,
  19728.        "money_format": "${{amount}}"
  19729.      }
  19730.    </script>
  19731.  
  19732. </li>
  19733.    
  19734.  
  19735.    
  19736.  </ul>
  19737.  
  19738.  
  19739.    
  19740.      <a
  19741.        class="
  19742.          button-primary
  19743.          featured-collection__button
  19744.        "
  19745.        href="/collections/shop-the-best-selling"
  19746.      >
  19747.        View All
  19748.      </a>
  19749.    
  19750.  
  19751. </section>
  19752.  
  19753.  
  19754. <div class="productitem-quickshop" data-product-quickshop>
  19755.  <span class="quickshop-spinner"><svg
  19756.  aria-hidden="true"
  19757.  focusable="false"
  19758.  role="presentation"
  19759.  width="26"
  19760.  height="26"
  19761.  viewBox="0 0 26 26"
  19762.  xmlns="http://www.w3.org/2000/svg"
  19763. >
  19764.  <g fill-rule="nonzero" fill="currentColor">
  19765.    <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"/>
  19766.  </g>
  19767. </svg></span>
  19768. </div>
  19769.  
  19770.  
  19771. </div><div id="shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114" class="shopify-section slideshow--section">
  19772.  
  19773.  
  19774.  
  19775. <script type="application/pxs-animation-mapping+json">
  19776.  {
  19777.    "blocks": [".slideshow-slide"],
  19778.    "elements": [
  19779.      ".slideshow-slide__heading",
  19780.      ".slideshow-slide__subheading",
  19781.      ".slideshow-slide__text",
  19782.      ".slideshow-slide__button"
  19783.    ]
  19784.  }
  19785. </script>
  19786.  
  19787. <style data-shopify>
  19788.  #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 {
  19789.    --autoplay-interval: 5s;
  19790.  }
  19791.  
  19792.  
  19793.    @media screen and (min-width: 720px) {
  19794.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19795.        height: vw;
  19796.      }
  19797.    }
  19798.  
  19799.  
  19800.  
  19801.    @media screen and (max-width: 719px) {
  19802.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19803.        
  19804.          height: vw;
  19805.        
  19806.      }
  19807.    }
  19808.  
  19809. </style>
  19810.  
  19811.  
  19812.  
  19813.  
  19814. <script
  19815.  type="application/json"
  19816.  data-section-type="pxs-slideshow"
  19817.  data-section-id="template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114"
  19818.  data-section-data
  19819. >
  19820.  {
  19821.    "enable_autoplay": true,
  19822.    "autoplay_interval": 5,
  19823.    "mobile_navigation_adjust": true,
  19824.    "transition_fade": null,
  19825.    "slide_attraction": null,
  19826.    "slide_friction": null,
  19827.    "next_text": "Next slide",
  19828.    "previous_text": "Previous slide"
  19829.  }
  19830. </script>
  19831.  
  19832. <section
  19833.  class="
  19834.    slideshow
  19835.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  19836.  "
  19837.  aria-label="Slideshow"
  19838.  data-autoplay="true"
  19839.  data-autoplay-interval="5"
  19840.  data-banner="false"
  19841.  data-slideshow
  19842. ><div
  19843.    class="slideshow__wrapper "
  19844.    data-slideshow-wrapper
  19845.  ></div><div
  19846.    class="slideshow__current-slide visually-hidden"
  19847.    aria-live="polite"
  19848.    aria-atomic="true"
  19849.    data-slide-counter
  19850.    data-counter-template="Slide {{ count }} of {{ total }}"
  19851.  >
  19852.  </div>
  19853. </section>
  19854.  
  19855.  
  19856.  
  19857. </div><div id="shopify-section-template--15492296147031__516e59b8-141e-43e3-8f1d-46287735da01" class="shopify-section logolist--section"><script type="application/pxs-animation-mapping+json">
  19858.  {
  19859.    "blocks": [".logolist--inner"],
  19860.    "elements": [
  19861.      ".logolist--item"
  19862.    ]
  19863.  }
  19864. </script>
  19865.  
  19866. <section class="logolist--container">
  19867.  
  19868.    <h2 class="home-section--title">
  19869.      Search By Brands
  19870.    </h2>
  19871.  
  19872.  
  19873.  <div class="home-section--content logolist--inner">
  19874.    
  19875.      <div class="logolist--item" >
  19876.        
  19877.          <a
  19878.            class="logolist--link"
  19879.            href="/collections/acer-parts-canada"
  19880.            target="_blank"
  19881.          >
  19882.        
  19883.  
  19884.        
  19885.          
  19886.  
  19887.  
  19888.    <noscript data-rimg-noscript>
  19889.      <img loading="lazy"
  19890.        
  19891.          src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19892.        
  19893.  
  19894.        alt=""
  19895.        data-rimg="noscript"
  19896.        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"
  19897.        class="logolist--image"
  19898.        style="
  19899.        object-fit:cover;object-position:50.0% 50.0%;
  19900.      
  19901. "
  19902.        
  19903.      >
  19904.    </noscript>
  19905.  
  19906.  
  19907.  <img loading="lazy"
  19908.    
  19909.      src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19910.    
  19911.    alt=""
  19912.  
  19913.    
  19914.      data-rimg="lazy"
  19915.      data-rimg-scale="1"
  19916.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Acer_{size}.png?v=1698309818"
  19917.      data-rimg-max="1024x247"
  19918.      data-rimg-crop="false"
  19919.      
  19920.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='39'></svg>"
  19921.    
  19922.  
  19923.    class="logolist--image"
  19924.    style="
  19925.        object-fit:cover;object-position:50.0% 50.0%;
  19926.      
  19927. "
  19928.    
  19929.  >
  19930.  
  19931.  
  19932.  
  19933.  <div data-rimg-canvas></div>
  19934.  
  19935.  
  19936.        
  19937.  
  19938.        
  19939.          </a>
  19940.        
  19941.      </div>
  19942.    
  19943.      <div class="logolist--item" >
  19944.        
  19945.          <a
  19946.            class="logolist--link"
  19947.            href="/collections/dell-laptop-batteries"
  19948.            target="_blank"
  19949.          >
  19950.        
  19951.  
  19952.        
  19953.          
  19954.  
  19955.  
  19956.    <noscript data-rimg-noscript>
  19957.      <img loading="lazy"
  19958.        
  19959.          src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  19960.        
  19961.  
  19962.        alt=""
  19963.        data-rimg="noscript"
  19964.        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"
  19965.        class="logolist--image"
  19966.        style="
  19967.        object-fit:cover;object-position:50.0% 50.0%;
  19968.      
  19969. "
  19970.        
  19971.      >
  19972.    </noscript>
  19973.  
  19974.  
  19975.  <img loading="lazy"
  19976.    
  19977.      src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  19978.    
  19979.    alt=""
  19980.  
  19981.    
  19982.      data-rimg="lazy"
  19983.      data-rimg-scale="1"
  19984.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_{size}.png?v=1698309835"
  19985.      data-rimg-max="2048x2048"
  19986.      data-rimg-crop="false"
  19987.      
  19988.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  19989.    
  19990.  
  19991.    class="logolist--image"
  19992.    style="
  19993.        object-fit:cover;object-position:50.0% 50.0%;
  19994.      
  19995. "
  19996.    
  19997.  >
  19998.  
  19999.  
  20000.  
  20001.  <div data-rimg-canvas></div>
  20002.  
  20003.  
  20004.        
  20005.  
  20006.        
  20007.          </a>
  20008.        
  20009.      </div>
  20010.    
  20011.      <div class="logolist--item" >
  20012.        
  20013.          <a
  20014.            class="logolist--link"
  20015.            href="/collections/asus"
  20016.            target="_blank"
  20017.          >
  20018.        
  20019.  
  20020.        
  20021.          
  20022.  
  20023.  
  20024.    <noscript data-rimg-noscript>
  20025.      <img loading="lazy"
  20026.        
  20027.          src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20028.        
  20029.  
  20030.        alt=""
  20031.        data-rimg="noscript"
  20032.        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"
  20033.        class="logolist--image"
  20034.        style="
  20035.        object-fit:cover;object-position:50.0% 50.0%;
  20036.      
  20037. "
  20038.        
  20039.      >
  20040.    </noscript>
  20041.  
  20042.  
  20043.  <img loading="lazy"
  20044.    
  20045.      src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20046.    
  20047.    alt=""
  20048.  
  20049.    
  20050.      data-rimg="lazy"
  20051.      data-rimg-scale="1"
  20052.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Asus_{size}.png?v=1698309865"
  20053.      data-rimg-max="504x100"
  20054.      data-rimg-crop="false"
  20055.      
  20056.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='32'></svg>"
  20057.    
  20058.  
  20059.    class="logolist--image"
  20060.    style="
  20061.        object-fit:cover;object-position:50.0% 50.0%;
  20062.      
  20063. "
  20064.    
  20065.  >
  20066.  
  20067.  
  20068.  
  20069.  <div data-rimg-canvas></div>
  20070.  
  20071.  
  20072.        
  20073.  
  20074.        
  20075.          </a>
  20076.        
  20077.      </div>
  20078.    
  20079.      <div class="logolist--item" >
  20080.        
  20081.          <a
  20082.            class="logolist--link"
  20083.            href="/collections/fujitsu"
  20084.            target="_blank"
  20085.          >
  20086.        
  20087.  
  20088.        
  20089.          
  20090.  
  20091.  
  20092.    <noscript data-rimg-noscript>
  20093.      <img loading="lazy"
  20094.        
  20095.          src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20096.        
  20097.  
  20098.        alt=""
  20099.        data-rimg="noscript"
  20100.        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"
  20101.        class="logolist--image"
  20102.        style="
  20103.        object-fit:cover;object-position:50.0% 50.0%;
  20104.      
  20105. "
  20106.        
  20107.      >
  20108.    </noscript>
  20109.  
  20110.  
  20111.  <img loading="lazy"
  20112.    
  20113.      src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20114.    
  20115.    alt=""
  20116.  
  20117.    
  20118.      data-rimg="lazy"
  20119.      data-rimg-scale="1"
  20120.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_{size}.png?v=1698309977"
  20121.      data-rimg-max="1280x602"
  20122.      data-rimg-crop="false"
  20123.      
  20124.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='76'></svg>"
  20125.    
  20126.  
  20127.    class="logolist--image"
  20128.    style="
  20129.        object-fit:cover;object-position:50.0% 50.0%;
  20130.      
  20131. "
  20132.    
  20133.  >
  20134.  
  20135.  
  20136.  
  20137.  <div data-rimg-canvas></div>
  20138.  
  20139.  
  20140.        
  20141.  
  20142.        
  20143.          </a>
  20144.        
  20145.      </div>
  20146.    
  20147.      <div class="logolist--item" >
  20148.        
  20149.          <a
  20150.            class="logolist--link"
  20151.            href="/collections/samsung"
  20152.            target="_blank"
  20153.          >
  20154.        
  20155.  
  20156.        
  20157.          
  20158.  
  20159.  
  20160.    <noscript data-rimg-noscript>
  20161.      <img loading="lazy"
  20162.        
  20163.          src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20164.        
  20165.  
  20166.        alt=""
  20167.        data-rimg="noscript"
  20168.        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"
  20169.        class="logolist--image"
  20170.        style="
  20171.        object-fit:cover;object-position:50.0% 50.0%;
  20172.      
  20173. "
  20174.        
  20175.      >
  20176.    </noscript>
  20177.  
  20178.  
  20179.  <img loading="lazy"
  20180.    
  20181.      src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20182.    
  20183.    alt=""
  20184.  
  20185.    
  20186.      data-rimg="lazy"
  20187.      data-rimg-scale="1"
  20188.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_{size}.png?v=1698309930"
  20189.      data-rimg-max="7051x1080"
  20190.      data-rimg-crop="false"
  20191.      
  20192.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20193.    
  20194.  
  20195.    class="logolist--image"
  20196.    style="
  20197.        object-fit:cover;object-position:50.0% 50.0%;
  20198.      
  20199. "
  20200.    
  20201.  >
  20202.  
  20203.  
  20204.  
  20205.  <div data-rimg-canvas></div>
  20206.  
  20207.  
  20208.        
  20209.  
  20210.        
  20211.          </a>
  20212.        
  20213.      </div>
  20214.    
  20215.      <div class="logolist--item" >
  20216.        
  20217.          <a
  20218.            class="logolist--link"
  20219.            href="/collections/apple"
  20220.            target="_blank"
  20221.          >
  20222.        
  20223.  
  20224.        
  20225.          
  20226.  
  20227.  
  20228.    <noscript data-rimg-noscript>
  20229.      <img loading="lazy"
  20230.        
  20231.          src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20232.        
  20233.  
  20234.        alt=""
  20235.        data-rimg="noscript"
  20236.        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"
  20237.        class="logolist--image"
  20238.        style="
  20239.        object-fit:cover;object-position:50.0% 50.0%;
  20240.      
  20241. "
  20242.        
  20243.      >
  20244.    </noscript>
  20245.  
  20246.  
  20247.  <img loading="lazy"
  20248.    
  20249.      src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20250.    
  20251.    alt=""
  20252.  
  20253.    
  20254.      data-rimg="lazy"
  20255.      data-rimg-scale="1"
  20256.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Apple-Logo_{size}.jpg?v=1698309948"
  20257.      data-rimg-max="3840x2160"
  20258.      data-rimg-crop="false"
  20259.      
  20260.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='90'></svg>"
  20261.    
  20262.  
  20263.    class="logolist--image"
  20264.    style="
  20265.        object-fit:cover;object-position:50.0% 50.0%;
  20266.      
  20267. "
  20268.    
  20269.  >
  20270.  
  20271.  
  20272.  
  20273.  <div data-rimg-canvas></div>
  20274.  
  20275.  
  20276.        
  20277.  
  20278.        
  20279.          </a>
  20280.        
  20281.      </div>
  20282.    
  20283.      <div class="logolist--item" >
  20284.        
  20285.          <a
  20286.            class="logolist--link"
  20287.            href="/collections/hp-laptop-battery"
  20288.            target="_blank"
  20289.          >
  20290.        
  20291.  
  20292.        
  20293.          
  20294.  
  20295.  
  20296.    <noscript data-rimg-noscript>
  20297.      <img loading="lazy"
  20298.        
  20299.          src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20300.        
  20301.  
  20302.        alt=""
  20303.        data-rimg="noscript"
  20304.        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"
  20305.        class="logolist--image"
  20306.        style="
  20307.        object-fit:cover;object-position:50.0% 50.0%;
  20308.      
  20309. "
  20310.        
  20311.      >
  20312.    </noscript>
  20313.  
  20314.  
  20315.  <img loading="lazy"
  20316.    
  20317.      src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20318.    
  20319.    alt=""
  20320.  
  20321.    
  20322.      data-rimg="lazy"
  20323.      data-rimg-scale="1"
  20324.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_{size}.png?v=1698310007"
  20325.      data-rimg-max="2048x2048"
  20326.      data-rimg-crop="false"
  20327.      
  20328.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20329.    
  20330.  
  20331.    class="logolist--image"
  20332.    style="
  20333.        object-fit:cover;object-position:50.0% 50.0%;
  20334.      
  20335. "
  20336.    
  20337.  >
  20338.  
  20339.  
  20340.  
  20341.  <div data-rimg-canvas></div>
  20342.  
  20343.  
  20344.        
  20345.  
  20346.        
  20347.          </a>
  20348.        
  20349.      </div>
  20350.    
  20351.      <div class="logolist--item" >
  20352.        
  20353.          <a
  20354.            class="logolist--link"
  20355.            href="/collections/all"
  20356.            target="_blank"
  20357.          >
  20358.        
  20359.  
  20360.        
  20361.          
  20362.  
  20363.  
  20364.    <noscript data-rimg-noscript>
  20365.      <img loading="lazy"
  20366.        
  20367.          src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20368.        
  20369.  
  20370.        alt=""
  20371.        data-rimg="noscript"
  20372.        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"
  20373.        class="logolist--image"
  20374.        style="
  20375.        object-fit:cover;object-position:50.0% 50.0%;
  20376.      
  20377. "
  20378.        
  20379.      >
  20380.    </noscript>
  20381.  
  20382.  
  20383.  <img loading="lazy"
  20384.    
  20385.      src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20386.    
  20387.    alt=""
  20388.  
  20389.    
  20390.      data-rimg="lazy"
  20391.      data-rimg-scale="1"
  20392.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_{size}.png?v=1698310074"
  20393.      data-rimg-max="5000x3125"
  20394.      data-rimg-crop="false"
  20395.      
  20396.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='100'></svg>"
  20397.    
  20398.  
  20399.    class="logolist--image"
  20400.    style="
  20401.        object-fit:cover;object-position:50.0% 50.0%;
  20402.      
  20403. "
  20404.    
  20405.  >
  20406.  
  20407.  
  20408.  
  20409.  <div data-rimg-canvas></div>
  20410.  
  20411.  
  20412.        
  20413.  
  20414.        
  20415.          </a>
  20416.        
  20417.      </div>
  20418.    
  20419.      <div class="logolist--item" >
  20420.        
  20421.          <a
  20422.            class="logolist--link"
  20423.            href="/collections/all"
  20424.            target="_blank"
  20425.          >
  20426.        
  20427.  
  20428.        
  20429.          
  20430.  
  20431.  
  20432.    <noscript data-rimg-noscript>
  20433.      <img loading="lazy"
  20434.        
  20435.          src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20436.        
  20437.  
  20438.        alt=""
  20439.        data-rimg="noscript"
  20440.        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"
  20441.        class="logolist--image"
  20442.        style="
  20443.        object-fit:cover;object-position:50.0% 50.0%;
  20444.      
  20445. "
  20446.        
  20447.      >
  20448.    </noscript>
  20449.  
  20450.  
  20451.  <img loading="lazy"
  20452.    
  20453.      src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20454.    
  20455.    alt=""
  20456.  
  20457.    
  20458.      data-rimg="lazy"
  20459.      data-rimg-scale="1"
  20460.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Alienware_{size}.png?v=1698310052"
  20461.      data-rimg-max="860x231"
  20462.      data-rimg-crop="false"
  20463.      
  20464.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='43'></svg>"
  20465.    
  20466.  
  20467.    class="logolist--image"
  20468.    style="
  20469.        object-fit:cover;object-position:50.0% 50.0%;
  20470.      
  20471. "
  20472.    
  20473.  >
  20474.  
  20475.  
  20476.  
  20477.  <div data-rimg-canvas></div>
  20478.  
  20479.  
  20480.        
  20481.  
  20482.        
  20483.          </a>
  20484.        
  20485.      </div>
  20486.    
  20487.      <div class="logolist--item" >
  20488.        
  20489.          <a
  20490.            class="logolist--link"
  20491.            href="/collections/all"
  20492.            target="_blank"
  20493.          >
  20494.        
  20495.  
  20496.        
  20497.          
  20498.  
  20499.  
  20500.    <noscript data-rimg-noscript>
  20501.      <img loading="lazy"
  20502.        
  20503.          src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20504.        
  20505.  
  20506.        alt=""
  20507.        data-rimg="noscript"
  20508.        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"
  20509.        class="logolist--image"
  20510.        style="
  20511.        object-fit:cover;object-position:50.0% 50.0%;
  20512.      
  20513. "
  20514.        
  20515.      >
  20516.    </noscript>
  20517.  
  20518.  
  20519.  <img loading="lazy"
  20520.    
  20521.      src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20522.    
  20523.    alt=""
  20524.  
  20525.    
  20526.      data-rimg="lazy"
  20527.      data-rimg-scale="1"
  20528.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_{size}.png?v=1698310106"
  20529.      data-rimg-max="1200x183"
  20530.      data-rimg-crop="false"
  20531.      
  20532.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20533.    
  20534.  
  20535.    class="logolist--image"
  20536.    style="
  20537.        object-fit:cover;object-position:50.0% 50.0%;
  20538.      
  20539. "
  20540.    
  20541.  >
  20542.  
  20543.  
  20544.  
  20545.  <div data-rimg-canvas></div>
  20546.  
  20547.  
  20548.        
  20549.  
  20550.        
  20551.          </a>
  20552.        
  20553.      </div>
  20554.    
  20555.      <div class="logolist--item" >
  20556.        
  20557.          <a
  20558.            class="logolist--link"
  20559.            href="/collections/all"
  20560.            target="_blank"
  20561.          >
  20562.        
  20563.  
  20564.        
  20565.          
  20566.  
  20567.  
  20568.    <noscript data-rimg-noscript>
  20569.      <img loading="lazy"
  20570.        
  20571.          src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20572.        
  20573.  
  20574.        alt=""
  20575.        data-rimg="noscript"
  20576.        srcset="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364 1x, //laptopparts.ca/cdn/shop/files/Panasonic_224x224.png?v=1698310364 1.4x"
  20577.        class="logolist--image"
  20578.        style="
  20579.        object-fit:cover;object-position:50.0% 50.0%;
  20580.      
  20581. "
  20582.        
  20583.      >
  20584.    </noscript>
  20585.  
  20586.  
  20587.  <img loading="lazy"
  20588.    
  20589.      src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20590.    
  20591.    alt=""
  20592.  
  20593.    
  20594.      data-rimg="lazy"
  20595.      data-rimg-scale="1"
  20596.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Panasonic_{size}.png?v=1698310364"
  20597.      data-rimg-max="225x225"
  20598.      data-rimg-crop="false"
  20599.      
  20600.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20601.    
  20602.  
  20603.    class="logolist--image"
  20604.    style="
  20605.        object-fit:cover;object-position:50.0% 50.0%;
  20606.      
  20607. "
  20608.    
  20609.  >
  20610.  
  20611.  
  20612.  
  20613.  <div data-rimg-canvas></div>
  20614.  
  20615.  
  20616.        
  20617.  
  20618.        
  20619.          </a>
  20620.        
  20621.      </div>
  20622.    
  20623.      <div class="logolist--item" >
  20624.        
  20625.          <a
  20626.            class="logolist--link"
  20627.            href="/collections/all"
  20628.            target="_blank"
  20629.          >
  20630.        
  20631.  
  20632.        
  20633.          
  20634.  
  20635.  
  20636.    <noscript data-rimg-noscript>
  20637.      <img loading="lazy"
  20638.        
  20639.          src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20640.        
  20641.  
  20642.        alt=""
  20643.        data-rimg="noscript"
  20644.        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"
  20645.        class="logolist--image"
  20646.        style="
  20647.        object-fit:cover;object-position:50.0% 50.0%;
  20648.      
  20649. "
  20650.        
  20651.      >
  20652.    </noscript>
  20653.  
  20654.  
  20655.  <img loading="lazy"
  20656.    
  20657.      src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20658.    
  20659.    alt=""
  20660.  
  20661.    
  20662.      data-rimg="lazy"
  20663.      data-rimg-scale="1"
  20664.      data-rimg-template="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_{size}.png?v=1698310433"
  20665.      data-rimg-max="666x375"
  20666.      data-rimg-crop="false"
  20667.      
  20668.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='91'></svg>"
  20669.    
  20670.  
  20671.    class="logolist--image"
  20672.    style="
  20673.        object-fit:cover;object-position:50.0% 50.0%;
  20674.      
  20675. "
  20676.    
  20677.  >
  20678.  
  20679.  
  20680.  
  20681.  <div data-rimg-canvas></div>
  20682.  
  20683.  
  20684.        
  20685.  
  20686.        
  20687.          </a>
  20688.        
  20689.      </div>
  20690.    
  20691.  </div>
  20692. </section>
  20693.  
  20694. </div><div id="shopify-section-template--15492296147031__16962663497dd9ec87" class="shopify-section"><div class="product-section--container">
  20695.  
  20696. </div>
  20697.  
  20698.  
  20699. </div><div id="shopify-section-template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706" class="shopify-section highlights-banner"><script
  20700.  type="application/json"
  20701.  data-section-type="dynamic-highlights-banner"
  20702.  data-section-id="template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706">
  20703. </script>
  20704.  
  20705. <style>
  20706.  
  20707.  
  20708.    .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706.highlights-banner__container {
  20709.      background-color: #000000;
  20710.    }
  20711.  
  20712.  
  20713.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:before {
  20714.    background: linear-gradient( to right, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20715.  }
  20716.  
  20717.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:after {
  20718.    background: linear-gradient( to left, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20719.  }
  20720.  
  20721.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__block {
  20722.    color: #ffffff;
  20723.  }
  20724.  
  20725.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__icon {
  20726.    color: #fe0000;
  20727.  }
  20728. </style>
  20729.  
  20730. <script type="application/pxs-animation-mapping+json">
  20731.  {
  20732.    "blocks": [".highlights-banners-block"],
  20733.    "elements": []
  20734.  }
  20735. </script>
  20736.  
  20737. <div class="
  20738.  highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706
  20739.  highlights-banner__container
  20740.  highlights-banner__mobile-layout--slider
  20741.  full-width
  20742.  "
  20743. >
  20744.  <div class="highlights-banner__content highlight-banner__count-4"
  20745.   data-highlights-slider
  20746.  >
  20747.    
  20748.      
  20749.        <div
  20750.          class="highlights-banner__block highlights-banner__align-left"
  20751.          
  20752.          data-highlights-block
  20753.        >
  20754.          
  20755.            <div class="highlights-banner__icon">
  20756.              
  20757.                
  20758.  
  20759.  
  20760.                                                                    <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>                                                
  20761.  
  20762.              
  20763.            </div>
  20764.          
  20765.  
  20766.          <div class="highlights-banner__text">
  20767.            
  20768.              <span class="highlights-banner__heading">
  20769.                Quality and Saving
  20770.              </span>
  20771.            
  20772.  
  20773.            
  20774.              <p>Comprehensive quality control and affordable prices</p>
  20775.            
  20776.          </div>
  20777.          
  20778.        </div>
  20779.      
  20780.    
  20781.      
  20782.        <div
  20783.          class="highlights-banner__block highlights-banner__align-left"
  20784.          
  20785.          data-highlights-block
  20786.        >
  20787.          
  20788.            <div class="highlights-banner__icon">
  20789.              
  20790.                
  20791.  
  20792.  
  20793.                                  <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>                                                                                  
  20794.  
  20795.              
  20796.            </div>
  20797.          
  20798.  
  20799.          <div class="highlights-banner__text">
  20800.            
  20801.              <span class="highlights-banner__heading">
  20802.                Huge Inventory
  20803.              </span>
  20804.            
  20805.  
  20806.            
  20807.              <p>largest available inventory of parts in Canada</p>
  20808.            
  20809.          </div>
  20810.          
  20811.        </div>
  20812.      
  20813.    
  20814.      
  20815.        <div
  20816.          class="highlights-banner__block highlights-banner__align-left"
  20817.          
  20818.          data-highlights-block
  20819.        >
  20820.          
  20821.            <div class="highlights-banner__icon">
  20822.              
  20823.                
  20824.  
  20825.  
  20826.                            <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>                                                                                        
  20827.  
  20828.              
  20829.            </div>
  20830.          
  20831.  
  20832.          <div class="highlights-banner__text">
  20833.            
  20834.              <span class="highlights-banner__heading">
  20835.                Fast Shipping
  20836.              </span>
  20837.            
  20838.  
  20839.            
  20840.              <p>Fast and convenient door to door delivery</p>
  20841.            
  20842.          </div>
  20843.          
  20844.        </div>
  20845.      
  20846.    
  20847.      
  20848.        <div
  20849.          class="highlights-banner__block highlights-banner__align-left"
  20850.          
  20851.          data-highlights-block
  20852.        >
  20853.          
  20854.            <div class="highlights-banner__icon">
  20855.              
  20856.                
  20857.  
  20858.  
  20859.                          <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>                                                                                          
  20860.  
  20861.              
  20862.            </div>
  20863.          
  20864.  
  20865.          <div class="highlights-banner__text">
  20866.            
  20867.              <span class="highlights-banner__heading">
  20868.                Payment Security
  20869.              </span>
  20870.            
  20871.  
  20872.            
  20873.              <p>We have secured payment methods</p>
  20874.            
  20875.          </div>
  20876.          
  20877.        </div>
  20878.      
  20879.    
  20880.  </div>
  20881. </div>
  20882.  
  20883. </div><div id="shopify-section-template--15492296147031__dynamic_html_knfnMB" class="shopify-section html--section"><script
  20884.  type="application/json"
  20885.  data-section-id="template--15492296147031__dynamic_html_knfnMB"
  20886.  data-section-type="dynamic-html"
  20887. ></script>
  20888.  
  20889. <section class="custom-html--container">
  20890.  
  20891.  <div class="rte" data-rte>
  20892.    <h1 style="text-align:center; margin-bottom:-50px">ABOUT US</h1>
  20893.  </div>
  20894. </section>
  20895.  
  20896. </div><div id="shopify-section-template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0" class="shopify-section rich-text--section"><script
  20897.  type="application/json"
  20898.  data-section-id="template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0"
  20899.  data-section-type="dynamic-rich-text"
  20900. ></script>
  20901.  
  20902. <script type="application/pxs-animation-mapping+json">
  20903.  {
  20904.    "blocks": [".rich-text-block"],
  20905.    "elements": []
  20906.  }
  20907. </script>
  20908.  
  20909. <section
  20910.  class="
  20911.    rich-text--container
  20912.    rich-text-full-width
  20913.  "
  20914. >
  20915.    <div
  20916.      class="
  20917.        rich-text-block
  20918.        rich-text-alignment-center
  20919.      "
  20920.      
  20921.    >
  20922.        
  20923.  
  20924.        
  20925.          <div class="rich-text-content rte" data-rte>
  20926.            <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>
  20927.          </div>
  20928.        
  20929.    </div>
  20930. </section>
  20931.  
  20932. </div><div id="shopify-section-template--15492296147031__dynamic_html_fKi4qq" class="shopify-section html--section"><script
  20933.  type="application/json"
  20934.  data-section-id="template--15492296147031__dynamic_html_fKi4qq"
  20935.  data-section-type="dynamic-html"
  20936. ></script>
  20937.  
  20938. <section class="custom-html--container">
  20939.  
  20940.  <div class="rte" data-rte>
  20941.    <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>
  20942.  </div>
  20943. </section>
  20944.  
  20945. </div>
  20946.    </main>
  20947.  
  20948.    <!-- BEGIN sections: footer-group -->
  20949. <div id="shopify-section-sections--15492291100759__footer" class="shopify-section shopify-section-group-footer-group"><script
  20950.  type="application/json"
  20951.  data-section-id="sections--15492291100759__footer"
  20952.  data-section-type="static-footer">
  20953. </script>
  20954.  
  20955.  
  20956.  
  20957.  
  20958.  
  20959. <footer role="contentinfo" aria-label="Footer">
  20960.  <section class="site-footer-wrapper">
  20961.    
  20962.      <div class="site-footer-item">
  20963.        <div class="site-footer-blocks column-count-4">
  20964.          <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  20965.  
  20966.  
  20967.      <h2 class="site-footer-block-title" data-accordion-trigger>
  20968.        FURTHER INFO.
  20969.  
  20970.        <span class="site-footer-block-icon accordion--icon">
  20971.          <svg
  20972.  aria-hidden="true"
  20973.  focusable="false"
  20974.  role="presentation"
  20975.  width="14"
  20976.  height="8"
  20977.  viewBox="0 0 14 8"
  20978.  fill="none"
  20979.  xmlns="http://www.w3.org/2000/svg"
  20980. >
  20981.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20982.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20983. </svg>
  20984.  
  20985.        </span>
  20986.      </h2>
  20987.  
  20988.      <div class="site-footer-block-content">
  20989.        
  20990.  
  20991.  
  20992.  
  20993.  
  20994.  
  20995.  
  20996.  
  20997.  
  20998.  
  20999.  
  21000.  
  21001.  
  21002. <ul
  21003.  class="
  21004.    navmenu
  21005.    navmenu-depth-1
  21006.    
  21007.    
  21008.  "
  21009.  data-navmenu
  21010.  data-accordion-content
  21011.  
  21012.  
  21013. >
  21014.  
  21015.    
  21016.  
  21017.    
  21018.    
  21019.  
  21020.    
  21021.    
  21022.  
  21023.    
  21024.  
  21025.    
  21026.      <li
  21027.        class="navmenu-item navmenu-id-home"
  21028.      >
  21029.        <a
  21030.        class="
  21031.          navmenu-link
  21032.          navmenu-link-depth-1
  21033.          navmenu-link-active
  21034.        "
  21035.        href="/"
  21036.        >
  21037.          
  21038.          Home
  21039. </a>
  21040.      </li>
  21041.    
  21042.  
  21043.    
  21044.  
  21045.    
  21046.    
  21047.  
  21048.    
  21049.    
  21050.  
  21051.    
  21052.  
  21053.    
  21054.      <li
  21055.        class="navmenu-item navmenu-id-search"
  21056.      >
  21057.        <a
  21058.        class="
  21059.          navmenu-link
  21060.          navmenu-link-depth-1
  21061.          
  21062.        "
  21063.        href="/search"
  21064.        >
  21065.          
  21066.          Search
  21067. </a>
  21068.      </li>
  21069.    
  21070.  
  21071.    
  21072.  
  21073.    
  21074.    
  21075.  
  21076.    
  21077.    
  21078.  
  21079.    
  21080.  
  21081.    
  21082.      <li
  21083.        class="navmenu-item navmenu-id-about-us"
  21084.      >
  21085.        <a
  21086.        class="
  21087.          navmenu-link
  21088.          navmenu-link-depth-1
  21089.          
  21090.        "
  21091.        href="/pages/about-us"
  21092.        >
  21093.          
  21094.          About Us
  21095. </a>
  21096.      </li>
  21097.    
  21098.  
  21099.    
  21100.  
  21101.    
  21102.    
  21103.  
  21104.    
  21105.    
  21106.  
  21107.    
  21108.  
  21109.    
  21110.      <li
  21111.        class="navmenu-item navmenu-id-parts-request"
  21112.      >
  21113.        <a
  21114.        class="
  21115.          navmenu-link
  21116.          navmenu-link-depth-1
  21117.          
  21118.        "
  21119.        href="/pages/part-request"
  21120.        >
  21121.          
  21122.          Parts Request
  21123. </a>
  21124.      </li>
  21125.    
  21126.  
  21127.    
  21128.  
  21129.    
  21130.    
  21131.  
  21132.    
  21133.    
  21134.  
  21135.    
  21136.  
  21137.    
  21138.      <li
  21139.        class="navmenu-item navmenu-id-repair-centers"
  21140.      >
  21141.        <a
  21142.        class="
  21143.          navmenu-link
  21144.          navmenu-link-depth-1
  21145.          
  21146.        "
  21147.        href="/pages/store-locator"
  21148.        >
  21149.          
  21150.          Repair Centers
  21151. </a>
  21152.      </li>
  21153.    
  21154.  
  21155.    
  21156.  
  21157.    
  21158.    
  21159.  
  21160.    
  21161.    
  21162.  
  21163.    
  21164.  
  21165.    
  21166.      <li
  21167.        class="navmenu-item navmenu-id-francais"
  21168.      >
  21169.        <a
  21170.        class="
  21171.          navmenu-link
  21172.          navmenu-link-depth-1
  21173.          
  21174.        "
  21175.        href="/pages/francais"
  21176.        >
  21177.          
  21178.          Français
  21179. </a>
  21180.      </li>
  21181.    
  21182.  
  21183.    
  21184.  
  21185.    
  21186.    
  21187.  
  21188.    
  21189.    
  21190.  
  21191.    
  21192.  
  21193.    
  21194.      <li
  21195.        class="navmenu-item navmenu-id-reviews"
  21196.      >
  21197.        <a
  21198.        class="
  21199.          navmenu-link
  21200.          navmenu-link-depth-1
  21201.          
  21202.        "
  21203.        href="/pages/reviews"
  21204.        >
  21205.          
  21206.          Reviews
  21207. </a>
  21208.      </li>
  21209.    
  21210.  
  21211. </ul>
  21212.  
  21213.  
  21214.        <!-- TG seal - snippets/footer.liquid -->
  21215.        
  21216.          <div style="margin-top: 2em;">
  21217.            <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>
  21218.            <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>
  21219.          </div>
  21220.        
  21221.        <!-- END TG seal - snippets/footer.liquid -->
  21222.      </div>
  21223.  
  21224. </div>
  21225. <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  21226.  
  21227.  
  21228.      <h2 class="site-footer-block-title" data-accordion-trigger>
  21229.        CUSTOMER SERVICE
  21230.  
  21231.        <span class="site-footer-block-icon accordion--icon">
  21232.          <svg
  21233.  aria-hidden="true"
  21234.  focusable="false"
  21235.  role="presentation"
  21236.  width="14"
  21237.  height="8"
  21238.  viewBox="0 0 14 8"
  21239.  fill="none"
  21240.  xmlns="http://www.w3.org/2000/svg"
  21241. >
  21242.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21243.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21244. </svg>
  21245.  
  21246.        </span>
  21247.      </h2>
  21248.  
  21249.      <div class="site-footer-block-content">
  21250.        
  21251.  
  21252.  
  21253.  
  21254.  
  21255.  
  21256.  
  21257.  
  21258.  
  21259.  
  21260.  
  21261.  
  21262.  
  21263. <ul
  21264.  class="
  21265.    navmenu
  21266.    navmenu-depth-1
  21267.    
  21268.    
  21269.  "
  21270.  data-navmenu
  21271.  data-accordion-content
  21272.  
  21273.  
  21274. >
  21275.  
  21276.    
  21277.  
  21278.    
  21279.    
  21280.  
  21281.    
  21282.    
  21283.  
  21284.    
  21285.  
  21286.    
  21287.      <li
  21288.        class="navmenu-item navmenu-id-privacy-policy"
  21289.      >
  21290.        <a
  21291.        class="
  21292.          navmenu-link
  21293.          navmenu-link-depth-1
  21294.          
  21295.        "
  21296.        href="/pages/privacy-policy"
  21297.        >
  21298.          
  21299.          Privacy Policy
  21300. </a>
  21301.      </li>
  21302.    
  21303.  
  21304.    
  21305.  
  21306.    
  21307.    
  21308.  
  21309.    
  21310.    
  21311.  
  21312.    
  21313.  
  21314.    
  21315.      <li
  21316.        class="navmenu-item navmenu-id-return-policy"
  21317.      >
  21318.        <a
  21319.        class="
  21320.          navmenu-link
  21321.          navmenu-link-depth-1
  21322.          
  21323.        "
  21324.        href="/pages/returns"
  21325.        >
  21326.          
  21327.          Return Policy
  21328. </a>
  21329.      </li>
  21330.    
  21331.  
  21332.    
  21333.  
  21334.    
  21335.    
  21336.  
  21337.    
  21338.    
  21339.  
  21340.    
  21341.  
  21342.    
  21343.      <li
  21344.        class="navmenu-item navmenu-id-shipping"
  21345.      >
  21346.        <a
  21347.        class="
  21348.          navmenu-link
  21349.          navmenu-link-depth-1
  21350.          
  21351.        "
  21352.        href="/pages/shipping"
  21353.        >
  21354.          
  21355.          Shipping
  21356. </a>
  21357.      </li>
  21358.    
  21359.  
  21360.    
  21361.  
  21362.    
  21363.    
  21364.  
  21365.    
  21366.    
  21367.  
  21368.    
  21369.  
  21370.    
  21371.      <li
  21372.        class="navmenu-item navmenu-id-warranty"
  21373.      >
  21374.        <a
  21375.        class="
  21376.          navmenu-link
  21377.          navmenu-link-depth-1
  21378.          
  21379.        "
  21380.        href="/pages/warranty"
  21381.        >
  21382.          
  21383.          Warranty
  21384. </a>
  21385.      </li>
  21386.    
  21387.  
  21388.    
  21389.  
  21390.    
  21391.    
  21392.  
  21393.    
  21394.    
  21395.  
  21396.    
  21397.  
  21398.    
  21399.      <li
  21400.        class="navmenu-item navmenu-id-blogs"
  21401.      >
  21402.        <a
  21403.        class="
  21404.          navmenu-link
  21405.          navmenu-link-depth-1
  21406.          
  21407.        "
  21408.        href="/blogs/news/how-to-enhance-your-laptops-performance-top-tips-for-optimization"
  21409.        >
  21410.          
  21411.          Blogs
  21412. </a>
  21413.      </li>
  21414.    
  21415.  
  21416. </ul>
  21417.  
  21418.  
  21419.        <!-- TG seal - snippets/footer.liquid -->
  21420.        
  21421.        <!-- END TG seal - snippets/footer.liquid -->
  21422.      </div>
  21423.  
  21424. </div>
  21425. <div class="site-footer-block-item  site-footer-block-social-accounts  " >
  21426.  
  21427.  
  21428.    
  21429.  
  21430.  
  21431.  
  21432.  
  21433.  
  21434.  
  21435.  
  21436.  
  21437.  
  21438.  
  21439.  
  21440.  
  21441.  
  21442.  
  21443.  
  21444.  
  21445.  
  21446.  
  21447.  
  21448.  
  21449.  
  21450.  
  21451.    
  21452.    
  21453.  
  21454.  
  21455.  
  21456.  
  21457.    <h2 class="site-footer-block-title">
  21458.      Follow us
  21459.    </h2>
  21460.  
  21461.    <div class="site-footer-block-content">
  21462.  
  21463.  
  21464.  <div class="social-icons">
  21465.  
  21466.  
  21467. <a
  21468.  class="social-link"
  21469.  title="Facebook"
  21470.  href="https://web.facebook.com/laptopparts.ca/?_rdc=1&amp;_rdr"
  21471.  target="_blank">
  21472. <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>
  21473.  
  21474.    <span class="visually-hidden">Find us on Facebook</span>
  21475.  
  21476. </a>
  21477.  
  21478.  
  21479.  
  21480.  
  21481. <a
  21482.  class="social-link"
  21483.  title="Twitter"
  21484.  href="https://twitter.com/i/flow/login?redirect_after_login=%2FLaptopParts_ca"
  21485.  target="_blank">
  21486. <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>
  21487.  
  21488.    <span class="visually-hidden">Find us on Twitter</span>
  21489.  
  21490. </a>
  21491.  
  21492. </div>
  21493.  
  21494.  
  21495.    </div>
  21496.  
  21497.  
  21498.  
  21499.  
  21500. </div>
  21501. <div class="site-footer-block-item  site-footer-block-rich-text  " >
  21502.  
  21503.  
  21504.    
  21505.      <h2 class="site-footer-block-title">
  21506.        Contact Us
  21507.      </h2>
  21508.    
  21509.  
  21510.    
  21511.      <div class="site-footer-block-content rte">
  21512.        <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>
  21513.      </div>
  21514.    
  21515.  
  21516.    
  21517.  
  21518. </div>
  21519.  
  21520.        </div>
  21521.      </div>
  21522.    
  21523.  
  21524.    <div class="site-footer-item site-footer-item--information">
  21525.      <div class="site-footer__row site-footer__row--first">
  21526. <div class="site-footer-right ">
  21527.        <div class="shopify-cross-border">
  21528.          
  21529.        
  21530.          
  21531.        </div>
  21532.        
  21533. <ul class="payment-icons">
  21534.          
  21535.            <li class="payment-icons-item">
  21536.              <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>
  21537.  
  21538.            </li>
  21539.          
  21540.            <li class="payment-icons-item">
  21541.              <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>
  21542.  
  21543.            </li>
  21544.          
  21545.            <li class="payment-icons-item">
  21546.              <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>
  21547.            </li>
  21548.          
  21549.            <li class="payment-icons-item">
  21550.              <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>
  21551.            </li>
  21552.          
  21553.            <li class="payment-icons-item">
  21554.              <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>
  21555.  
  21556.            </li>
  21557.          
  21558.            <li class="payment-icons-item">
  21559.              <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>
  21560.            </li>
  21561.          
  21562.            <li class="payment-icons-item">
  21563.              <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>
  21564.            </li>
  21565.          
  21566.            <li class="payment-icons-item">
  21567.              <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>
  21568.  
  21569.            </li>
  21570.          
  21571.            <li class="payment-icons-item">
  21572.              <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>
  21573.            </li>
  21574.          
  21575.        </ul></div>
  21576.      </div>
  21577.  
  21578.      <div class="site-footer__row site-footer__row--second">
  21579.        <div class="site-footer__row-inner-wrapper-left"><p class="site-footer-credits">
  21580.            <b>LaptopParts.ca</b>
  21581.          </p>
  21582.  
  21583.          <p class="site-footer-credits" style="color:black;">Developed By <a href="https://searchaly.com" style="text-decoration:none;color:black;">Searchaly</a>
  21584.          </p>
  21585.        </div>
  21586.  
  21587.        
  21588. <div class="site-footer-right ">
  21589.        <div class="shopify-cross-border">
  21590.          
  21591.        
  21592.          
  21593.        </div>
  21594.        
  21595. <ul class="payment-icons">
  21596.          
  21597.            <li class="payment-icons-item">
  21598.              <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>
  21599.  
  21600.            </li>
  21601.          
  21602.            <li class="payment-icons-item">
  21603.              <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>
  21604.  
  21605.            </li>
  21606.          
  21607.            <li class="payment-icons-item">
  21608.              <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>
  21609.            </li>
  21610.          
  21611.            <li class="payment-icons-item">
  21612.              <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>
  21613.            </li>
  21614.          
  21615.            <li class="payment-icons-item">
  21616.              <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>
  21617.  
  21618.            </li>
  21619.          
  21620.            <li class="payment-icons-item">
  21621.              <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>
  21622.            </li>
  21623.          
  21624.            <li class="payment-icons-item">
  21625.              <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>
  21626.            </li>
  21627.          
  21628.            <li class="payment-icons-item">
  21629.              <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>
  21630.  
  21631.            </li>
  21632.          
  21633.            <li class="payment-icons-item">
  21634.              <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>
  21635.            </li>
  21636.          
  21637.        </ul></div>
  21638.      </div>
  21639.    </div>
  21640.  </section>
  21641. </footer>
  21642.  
  21643. </div>
  21644. <!-- END sections: footer-group -->
  21645.  
  21646.    
  21647.    <div style="display: none;" aria-hidden="true" data-templates>
  21648.      
  21649.      <div
  21650.        class="message-banner--container"
  21651.        role="alert"
  21652.        data-message-banner
  21653.      >
  21654.        <div class="message-banner--outer">
  21655.          <div class="message-banner--inner" data-message-banner-content></div>
  21656.  
  21657.          <button
  21658.            class="message-banner--close"
  21659.            type="button"
  21660.            aria-label="Close"
  21661.            data-message-banner-close
  21662.          ><svg
  21663.  aria-hidden="true"
  21664.  focusable="false"
  21665.  role="presentation"
  21666.  xmlns="http://www.w3.org/2000/svg"
  21667.  width="13"
  21668.  height="13"
  21669.  viewBox="0 0 13 13"
  21670. >
  21671.  <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"/>
  21672. </svg></button>
  21673.        </div>
  21674.      </div>
  21675.      
  21676.  
  21677.      
  21678.      <section class="atc-banner--container" role="log" data-atc-banner>
  21679.        <div class="atc-banner--outer">
  21680.          <div class="atc-banner--inner">
  21681.            <div class="atc-banner--product">
  21682.              <h2 class="atc-banner--product-title">
  21683.                <span class="atc-banner--product-title--icon">
  21684.                  
  21685.  
  21686.  
  21687.                <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>                                                                                                    
  21688.  
  21689.                </span>
  21690.                Added to your cart:
  21691.              </h2>
  21692.  
  21693.              <div class="atc--product">
  21694.                <div class="atc--product-image" data-atc-banner-product-image>
  21695.                  <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>
  21696.                </div>
  21697.                <div class="atc--product-details">
  21698.                  <h2 class="atc--product-details--title" data-atc-banner-product-title></h2>
  21699.                  <span class="atc--product-details--options" data-atc-banner-product-options></span>
  21700.                  <span class="atc--product-details--price">
  21701.                    <span class="atc--product-details--price-quantity" data-atc-banner-product-price-quantity></span>
  21702.                    <span class="atc--product-details--price-value money" data-atc-banner-product-price-value></span>
  21703.                    <span
  21704.                      class="atc--product-details--price-discounted money"
  21705.                      data-atc-banner-product-price-discounted
  21706.                    ></span>
  21707.                    <span class="atc--product-details--unit-price hidden" data-atc-banner-unit-price>
  21708.                      ** total_quantity ** | ** unit_price ** / ** unit_measure **
  21709.                    </span>
  21710.                  </span>
  21711.                  <ul class="discount-list" data-atc-banner-product-discounts>
  21712.                    <li class="discount-list-item">
  21713.                      
  21714.  
  21715.  
  21716.                                                                        <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>                                            
  21717.  
  21718.                      <span class="discount-title"></span>
  21719.                      (-<span class="money discount-amount"></span>)
  21720.                    </li>
  21721.                  </ul>
  21722.                  <span class="atc--line-item-subscriptions" data-atc-banner-product-subscription-title></span>
  21723.                </div>
  21724.              </div>
  21725.            </div>
  21726.  
  21727.            <div class="atc-banner--cart">
  21728.              <div class="atc-banner--cart-subtotal">
  21729.                <span class="atc-subtotal--label">
  21730.                  Cart subtotal
  21731.                </span>
  21732.                <span class="atc-subtotal--price money" data-atc-banner-cart-subtotal></span>
  21733.              </div>
  21734.  
  21735.              <footer class="atc-banner--cart-footer">
  21736.                <a
  21737.                  class="button-secondary atc-button--viewcart"
  21738.                  href="/cart"
  21739.                  data-atc-banner-cart-button
  21740.                >
  21741.                  View cart (<span></span>)
  21742.                </a>
  21743.                <form
  21744.                  action="/cart"
  21745.                  method="post"
  21746.                  aria-label="cart checkout"
  21747.                >
  21748.                  <button class="button-primary atc-button--checkout" type="submit" name="checkout">
  21749.                    
  21750.                      <svg
  21751. width="20"
  21752. height="20"
  21753. viewBox="0 0 20 20"
  21754. fill="none"
  21755. xmlns="http://www.w3.org/2000/svg">
  21756. <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"/>
  21757. <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"/>
  21758. </svg>
  21759.  
  21760.                    
  21761.                    <span>Checkout</span>
  21762.                  </button>
  21763.                </form>
  21764.              </footer>
  21765.            </div>
  21766.          </div>
  21767.  
  21768.          <button
  21769.            class="atc-banner--close"
  21770.            type="button"
  21771.            aria-label="Close"
  21772.            data-atc-banner-close
  21773.          ><svg
  21774.  aria-hidden="true"
  21775.  focusable="false"
  21776.  role="presentation"
  21777.  xmlns="http://www.w3.org/2000/svg"
  21778.  width="13"
  21779.  height="13"
  21780.  viewBox="0 0 13 13"
  21781. >
  21782.  <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"/>
  21783. </svg></button>
  21784.        </div>
  21785.      </section>
  21786.      
  21787.    </div>
  21788.  
  21789.    
  21790.    
  21791.    <div class="modal" data-modal-container aria-label="modal window" data-trap-focus>
  21792.      <div class="modal-inner" data-modal-inner>
  21793.        <button
  21794.          class="modal-close"
  21795.          type="button"
  21796.          aria-label="Close"
  21797.          data-modal-close
  21798.        >
  21799.          <svg
  21800.  aria-hidden="true"
  21801.  focusable="false"
  21802.  role="presentation"
  21803.  xmlns="http://www.w3.org/2000/svg"
  21804.  width="13"
  21805.  height="13"
  21806.  viewBox="0 0 13 13"
  21807. >
  21808.  <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"/>
  21809. </svg>
  21810.        </button>
  21811.        <div class="modal-content" data-modal-content></div>
  21812.      </div>
  21813.    </div>
  21814.  
  21815.    <div class="modal-1" data-modal-container-1 aria-label="modal window">
  21816.      <div class="modal-inner" data-modal-inner>
  21817.        <button
  21818.          class="modal-close"
  21819.          type="button"
  21820.          aria-label="Close"
  21821.          data-modal-1-close
  21822.        >
  21823.          <svg
  21824.  aria-hidden="true"
  21825.  focusable="false"
  21826.  role="presentation"
  21827.  xmlns="http://www.w3.org/2000/svg"
  21828.  width="13"
  21829.  height="13"
  21830.  viewBox="0 0 13 13"
  21831. >
  21832.  <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"/>
  21833. </svg>
  21834.        </button>
  21835.        <div class="modal-content" data-modal-content></div>
  21836.      </div>
  21837.    </div>
  21838.    
  21839.  
  21840.    
  21841.    
  21842.    
  21843.    <div
  21844.      class="pswp"
  21845.      tabindex="-1"
  21846.      role="dialog"
  21847.      aria-hidden="true"
  21848.      aria-label="Product zoom dialog"
  21849.      data-photoswipe
  21850.    >
  21851.      
  21852.      <div class="pswp__bg"></div>
  21853.  
  21854.      
  21855.      <div class="pswp__scroll-wrap">
  21856.        
  21857.        <div class="pswp__container" aria-hidden="true">
  21858.          <div class="pswp__item"></div>
  21859.          <div class="pswp__item"></div>
  21860.          <div class="pswp__item"></div>
  21861.        </div>
  21862.  
  21863.        
  21864.        <div class="pswp__ui pswp__ui--hidden">
  21865.          <div class="pswp__top-bar">
  21866.            
  21867.            <div class="pswp__counter"></div>
  21868.            <button class="pswp__button pswp__button--close" title="Close">
  21869.              <span tabindex="-1">
  21870.                
  21871.  
  21872.  
  21873.              <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>                                                                                                      
  21874.  
  21875.              </span>
  21876.            </button>
  21877.            <button class="pswp__button pswp__button--share" title="Share"></button>
  21878.            <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
  21879.            <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
  21880.  
  21881.            
  21882.            
  21883.            <div class="pswp__preloader">
  21884.              <div class="pswp__preloader__icn">
  21885.                <div class="pswp__preloader__cut">
  21886.                  <div class="pswp__preloader__donut"></div>
  21887.                </div>
  21888.              </div>
  21889.            </div>
  21890.          </div>
  21891.  
  21892.          <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
  21893.            <div class="pswp__share-tooltip"></div>
  21894.          </div>
  21895.  
  21896.          <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
  21897.          <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button>
  21898.  
  21899.          <div class="pswp__caption">
  21900.            <div class="pswp__caption__center"></div>
  21901.          </div>
  21902.        </div>
  21903.      </div>
  21904.      <div class="product-zoom--thumbnails" data-photoswipe-thumbs>
  21905.        <button
  21906.          class="gallery-navigation--scroll-button scroll-left"
  21907.          aria-label="Scroll thumbnails left"
  21908.          data-gallery-scroll-button
  21909.        >
  21910.          <svg
  21911.  aria-hidden="true"
  21912.  focusable="false"
  21913.  role="presentation"
  21914.  width="14"
  21915.  height="8"
  21916.  viewBox="0 0 14 8"
  21917.  fill="none"
  21918.  xmlns="http://www.w3.org/2000/svg"
  21919. >
  21920.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21921.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21922. </svg>
  21923.  
  21924.        </button>
  21925.        <button
  21926.          class="gallery-navigation--scroll-button scroll-right"
  21927.          aria-label="Scroll thumbnails right"
  21928.          data-gallery-scroll-button
  21929.        >
  21930.          <svg
  21931.  aria-hidden="true"
  21932.  focusable="false"
  21933.  role="presentation"
  21934.  width="14"
  21935.  height="8"
  21936.  viewBox="0 0 14 8"
  21937.  fill="none"
  21938.  xmlns="http://www.w3.org/2000/svg"
  21939. >
  21940.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21941.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21942. </svg>
  21943.  
  21944.        </button>
  21945.        <div class="product-zoom--thumb-scroller" data-photoswipe-thumb-scroller></div>
  21946.      </div>
  21947.    </div>
  21948.    
  21949.  
  21950.    
  21951.    
  21952.    
  21953.    
  21954.    
  21955.  
  21956.    
  21957.  
  21958.    
  21959.  
  21960.      <script>
  21961.        (
  21962.          function () {
  21963.            var classes = {
  21964.              block: 'pxu-lia-block',
  21965.              element: 'pxu-lia-element',
  21966.            };
  21967.  
  21968.            document
  21969.              .querySelectorAll('[type="application/pxs-animation-mapping+json"]')
  21970.              .forEach(function (mappingEl) {
  21971.                const section = mappingEl.parentNode;
  21972.                try {
  21973.                  const mapping = JSON.parse(mappingEl.innerHTML);
  21974.                  mapping.elements.forEach(function (elementSelector) {
  21975.                    section
  21976.                      .querySelectorAll(elementSelector)
  21977.                      .forEach(function (element) { element.classList.add(classes.element); });
  21978.                  });
  21979.  
  21980.                  mapping.blocks.forEach(function (blockSelector) {
  21981.                    section
  21982.                      .querySelectorAll(blockSelector)
  21983.                      .forEach(function (block) { block.classList.add(classes.block); });
  21984.                  });
  21985.                } catch (error) {
  21986.                  console.warn('Unable to parse animation mapping', mappingEl, error);
  21987.                }
  21988.            });
  21989.          }
  21990.        )()
  21991.      </script>
  21992.    
  21993.  
  21994.    <script
  21995.      src="//laptopparts.ca/cdn/shop/t/20/assets/empire.js?v=101264981332624388091749821448"
  21996.      data-scripts
  21997.      data-shopify-api-url="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/api.jquery-5c7ec8e704495947a6ad26f717237512a227840fb65bdc0a32b7de1521602445.js"
  21998.      data-shopify-countries="/services/javascripts/countries.js"
  21999.      data-shopify-common="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/shopify_common-33bb9d312118840468a53f36b59c62c1e8f2b7d1a0a77250db9e300441827470.js"
  22000.      data-shopify-cart="//laptopparts.ca/cdn/shop/t/20/assets/jquery.cart.js?67469"
  22001.      data-pxu-polyfills="//laptopparts.ca/cdn/shop/t/20/assets/polyfills.min.js?v=41774645620324957141712444022"
  22002.    ></script>
  22003.  
  22004.    
  22005.  
  22006.  
  22007.  
  22008.  
  22009.  
  22010.  
  22011.  
  22012.  
  22013.  
  22014.  
  22015.  
  22016.  
  22017.  
  22018.  
  22019. <script type="application/ld+json">
  22020.  {
  22021.    "@context": "http://schema.org",
  22022.    "@type": "WebSite",
  22023.    "name": "LaptopParts.ca",
  22024.    "url": "https://laptopparts.ca"
  22025.  }
  22026. </script>
  22027.  
  22028.  
  22029.    <script>
  22030.      (function () {
  22031.        function handleFirstTab(e) {
  22032.          if (e.keyCode === 9) { // the "I am a keyboard user" key
  22033.            document.body.classList.add('user-is-tabbing');
  22034.            window.removeEventListener('keydown', handleFirstTab);
  22035.          }
  22036.        }
  22037.        window.addEventListener('keydown', handleFirstTab);
  22038.      })();
  22039.    </script>
  22040.  
  22041.    
  22042.      <link href="//laptopparts.ca/cdn/shop/t/20/assets/ripple.css?v=100240391239311985871712444022" rel="stylesheet" type="text/css" media="all" />
  22043.    
  22044.  
  22045.    <script
  22046.      src="//laptopparts.ca/cdn/shop/t/20/assets/instantPage.min.js?v=75111080190164688561712444022"
  22047.      type="module"
  22048.      defer
  22049.    ></script>
  22050.    <script
  22051.      src="//clever-predictive-search.thesupportheroes.com/js/core/main.min.js?timestamp=1698326561&shop=laptoppartsatp.myshopify.com"
  22052.      defer
  22053.    ></script>
  22054. <!-- 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 -->
  22055.     <!-- Shopper Approved - layout/theme.liquid -->  
  22056.    <style>
  22057.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span{
  22058.        vertical-align: -1px;
  22059.      }
  22060.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span:last-child{
  22061.        vertical-align: -1px;
  22062.      }
  22063.      .star_container{
  22064.        height: 24px;
  22065.        margin-bottom: 5px;
  22066.      }
  22067.      .star_container .ind_cnt {
  22068.            display: inline;
  22069.            padding-left: 8px;
  22070.            font-size: 13px;
  22071.            vertical-align: 3px;
  22072.            text-align: center;
  22073.            width: 100%;
  22074.        }
  22075.      #product_just_stars .SA__rating_wrap, #product_just_stars .SA__total_reviews{
  22076.        display: inline !important;
  22077.    }
  22078.    #product_just_stars .SA__review_widget_item .SA__total_reviews a{
  22079.        font-size: 13px !important;
  22080.        vertical-align: 0px !important;
  22081.        /*border-right: 1px solid #000;
  22082.  padding-right: 10px;
  22083.  margin-right: 10px;*/
  22084.  text-decoration: underline;
  22085.    }
  22086.    </style>
  22087.    <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>
  22088.    <!-- END Shopper Approved - layout/theme.liquid -->
  22089.      <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>
  22090. <script type="text/javascript">window.Beacon('init', '4c7bc089-215e-4a80-9d06-25571d96425f')</script>
  22091.        <div id="shopify-block-AcThYNTRkUW1SdzMyZ__6610233760104865948" class="shopify-block shopify-app-block"><script>
  22092.  window.pushowlSubdomain = "laptoppartsatp.myshopify.com".split(".")[0]
  22093.  window.isPushowlThemeAppExtentionEnabled = true
  22094.  window.pushowlGUID = "3c58d84c-8b16-4e81-aa63-9d393b1c8bb2"
  22095.  window.pushowlEnvironment = "production"
  22096. </script>
  22097.  
  22098.  
  22099.  
  22100.  
  22101. </div><div id="shopify-block-AN2k5QkMvdUJ0UDFZd__8171265131012698934" class="shopify-block shopify-app-block">
  22102.  
  22103. <input class="OrichiAppEmbed" type="hidden">
  22104. <input
  22105.  class="OrichiCustomerTags"
  22106.  type="hidden"
  22107.  value="" />
  22108. <input
  22109.  class="OrichiCustomerEmail"
  22110.  type="hidden"
  22111.  value="" />
  22112.  
  22113. <script>
  22114.  var orichiDiscount = {
  22115.    productJSPath: 'https://cdn.shopify.com/extensions/d0896b1a-a38a-4dab-8406-12d81a9bd452/oc-quantity-breaks-limit-610/assets/productpage.min.js',
  22116.    cartJSPath: 'https://cdn.shopify.com/extensions/d0896b1a-a38a-4dab-8406-12d81a9bd452/oc-quantity-breaks-limit-610/assets/cartajax.min.js',
  22117.    currencyFormat: "${{amount}}",
  22118.  }
  22119. </script>
  22120.  
  22121.  
  22122.  
  22123.  
  22124.  <script async src="https://cdn.shopify.com/extensions/d0896b1a-a38a-4dab-8406-12d81a9bd452/oc-quantity-breaks-limit-610/assets/front.min.js"></script>
  22125.  
  22126.  
  22127.  
  22128.  
  22129.  
  22130.  
  22131. <script>
  22132.  
  22133.    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"}};
  22134.  
  22135. </script>
  22136.  
  22137. </div><div id="shopify-block-AeXdFL3NiTloxRjRUY__14952540001915115444" class="shopify-block shopify-app-block">
  22138.  
  22139.  
  22140.  
  22141.  
  22142. <link id="upcart-stylesheet" rel="preload" href="https://cdn.shopify.com/extensions/6205ec3d-007c-4c6f-9ce8-faee7168d3b7/upcart-cart-drawer-143/assets/upcart-stylesheet.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
  22143.  
  22144.  
  22145.  
  22146.  <script defer type="text/javascript" src="https://cdn.shopify.com/extensions/6205ec3d-007c-4c6f-9ce8-faee7168d3b7/upcart-cart-drawer-143/assets/upcart-bundle.js"></script>
  22147.  
  22148.  
  22149. <script>
  22150.  
  22151.  function b64DecodeUnicode(str) {
  22152.    try {
  22153.        return decodeURIComponent(
  22154.        atob(str)
  22155.            .split('')
  22156.            .map(function (c) {
  22157.            return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
  22158.            })
  22159.            .join(''),
  22160.        );
  22161.    } catch {
  22162.        return str;
  22163.    }
  22164.  }
  22165. </script>
  22166.  
  22167.  
  22168. <script>
  22169. (function() {
  22170.    window.upcartSettings = {};
  22171.    window.upcartSettings.upcartSettings = {};
  22172.    window.upcartSettings.upcartEditorSettings = {};
  22173.    window.upcartSettings.stickyCartButtonEditorSettings = {};
  22174.  
  22175.    
  22176.    
  22177.    
  22178.  
  22179.    let val;
  22180.  
  22181.    val = b64DecodeUnicode("cmlnaHQ=");
  22182.    if (val === '') {
  22183.        val = b64DecodeUnicode("cmlnaHQ=");
  22184.    }
  22185.    window.upcartSettings.upcartSettings.cartPosition = val;
  22186.  
  22187.    val = b64DecodeUnicode("ZmFsc2U=");
  22188.    if (val === '') {
  22189.        val = b64DecodeUnicode("ZmFsc2U=");
  22190.    }
  22191.    val = JSON.parse(val);
  22192.    window.upcartSettings.upcartSettings.disableSticky = val;
  22193.  
  22194.    val = b64DecodeUnicode("dHJ1ZQ==");
  22195.    if (val === '') {
  22196.        val = b64DecodeUnicode("dHJ1ZQ==");
  22197.    }
  22198.    val = JSON.parse(val);
  22199.    window.upcartSettings.upcartSettings.openOnAddToCart = val;
  22200.  
  22201.    val = b64DecodeUnicode("ZmFsc2U=");
  22202.    if (val === '') {
  22203.        val = b64DecodeUnicode("ZmFsc2U=");
  22204.    }
  22205.    val = JSON.parse(val);
  22206.    window.upcartSettings.upcartSettings.redirectToCart = val;
  22207.  
  22208.    val = b64DecodeUnicode("dHJ1ZQ==");
  22209.    if (val === '') {
  22210.        val = b64DecodeUnicode("ZmFsc2U=");
  22211.    }
  22212.    val = JSON.parse(val);
  22213.    window.upcartSettings.upcartSettings.enableCartSkeletons = val;
  22214.  
  22215.    val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJZb3VyIFNob3BwaW5nIENhcnQiLCJjaGVja291dCI6IlNlY3VyZSBDaGVja291dCDigKIge3t0b3RhbF9wcmljZX19IiwiYWRkVGV4dCI6IkFkZCIsImVtcHR5Q2FydCI6IllvdXIgY2FydCBpcyBlbXB0eSIsImRpc2NvdW50U2F2aW5ncyI6IlNhdmUiLCJjb250aW51ZVNob3BwaW5nIjoiT3IgY29udGludWUgc2hvcHBpbmciLCJ0b3RhbFNhdmluZ3MiOiJEaXNjb3VudHMiLCJzdWJ0b3RhbCI6IlN1YnRvdGFsIn0=");
  22216.    if (val === '') {
  22217.        val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJDYXJ0IOKAoiB7e2NhcnRfcXVhbnRpdHl9fSIsImNoZWNrb3V0IjoiQ2hlY2tvdXQg4oCiIHt7dG90YWxfcHJpY2V9fSIsImFkZFRleHQiOiJBZGQiLCJlbXB0eUNhcnQiOiJZb3VyIGNhcnQgaXMgZW1wdHkiLCJkaXNjb3VudFNhdmluZ3MiOiJTYXZlIiwiY29udGludWVTaG9wcGluZyI6Ik9yIGNvbnRpbnVlIHNob3BwaW5nIiwidG90YWxTYXZpbmdzIjoiRGlzY291bnRzIiwic3VidG90YWwiOiJTdWJ0b3RhbCIsImJ1bmRsZUhpZGVTaW5ndWxhckl0ZW1UZXh0IjoiSGlkZSAxIGl0ZW0iLCJidW5kbGVTaG93U2luZ3VsYXJJdGVtVGV4dCI6IlNob3cgMSBpdGVtIiwiYnVuZGxlSGlkZU11bHRpcGxlSXRlbXNUZXh0IjoiSGlkZSB7TlVNQkVSX09GX0lURU1TfSBpdGVtcyIsImJ1bmRsZVNob3dNdWx0aXBsZUl0ZW1zVGV4dCI6IlNob3cge05VTUJFUl9PRl9JVEVNU30gaXRlbXMifQ==");
  22218.    }
  22219.    val = JSON.parse(val);
  22220.    window.upcartSettings.upcartSettings.translations = val;
  22221.  
  22222.    val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22223.    if (val === '') {
  22224.        val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22225.    }
  22226.    val = JSON.parse(val);
  22227.    window.upcartSettings.upcartSettings.htmlFields = val;
  22228.  
  22229.    val = b64DecodeUnicode("dHJ1ZQ==");
  22230.    if (val === '') {
  22231.        val = b64DecodeUnicode("dHJ1ZQ==");
  22232.    }
  22233.    val = JSON.parse(val);
  22234.    window.upcartSettings.upcartSettings.automaticDiscount = val;
  22235.  
  22236.    val = b64DecodeUnicode("ZmFsc2U=");
  22237.    if (val === '') {
  22238.        val = b64DecodeUnicode("ZmFsc2U=");
  22239.    }
  22240.    val = JSON.parse(val);
  22241.    window.upcartSettings.upcartSettings.basePriceForDiscount = val;
  22242.  
  22243.    val = b64DecodeUnicode("dHJ1ZQ==");
  22244.    if (val === '') {
  22245.        val = b64DecodeUnicode("ZmFsc2U=");
  22246.    }
  22247.    val = JSON.parse(val);
  22248.    window.upcartSettings.upcartSettings.hideSingleUnderscoredProperties = val;
  22249.  
  22250.    val = b64DecodeUnicode("ZmFsc2U=");
  22251.    if (val === '') {
  22252.        val = b64DecodeUnicode("ZmFsc2U=");
  22253.    }
  22254.    val = JSON.parse(val);
  22255.    window.upcartSettings.upcartSettings.showContinueShoppingButton = val;
  22256.  
  22257.    val = b64DecodeUnicode("ZmFsc2U=");
  22258.    if (val === '') {
  22259.        val = b64DecodeUnicode("ZmFsc2U=");
  22260.    }
  22261.    val = JSON.parse(val);
  22262.    window.upcartSettings.upcartSettings.ajaxRaceConditionPrevention = val;
  22263.  
  22264.    val = b64DecodeUnicode("ZmFsc2U=");
  22265.    if (val === '') {
  22266.        val = b64DecodeUnicode("ZmFsc2U=");
  22267.    }
  22268.    val = JSON.parse(val);
  22269.    window.upcartSettings.upcartSettings.htmlFieldForceReRender = val;
  22270.  
  22271.    val = b64DecodeUnicode("ZmFsc2U=");
  22272.    if (val === '') {
  22273.        val = b64DecodeUnicode("ZmFsc2U=");
  22274.    }
  22275.    val = JSON.parse(val);
  22276.    window.upcartSettings.upcartSettings.skipGoogleFonts = val;
  22277.  
  22278.    val = b64DecodeUnicode("ZmFsc2U=");
  22279.    if (val === '') {
  22280.        val = b64DecodeUnicode("ZmFsc2U=");
  22281.    }
  22282.    val = JSON.parse(val);
  22283.    window.upcartSettings.upcartSettings.overrideScrollLocking = val;
  22284.  
  22285.    val = b64DecodeUnicode("MTAw");
  22286.    if (val === '') {
  22287.        val = b64DecodeUnicode("MTAw");
  22288.    }
  22289.    window.upcartSettings.upcartSettings.trafficAllocationPercent = val;
  22290.  
  22291.    val = b64DecodeUnicode("dHJ1ZQ==");
  22292.    if (val === '') {
  22293.        val = b64DecodeUnicode("ZmFsc2U=");
  22294.    }
  22295.    val = JSON.parse(val);
  22296.    window.upcartSettings.upcartSettings.renderCartInShadowDom = val;
  22297.  
  22298.    val = b64DecodeUnicode("ZmFsc2U=");
  22299.    if (val === '') {
  22300.        val = b64DecodeUnicode("ZmFsc2U=");
  22301.    }
  22302.    val = JSON.parse(val);
  22303.    window.upcartSettings.upcartSettings.cartEventTracking = val;
  22304.  
  22305.    val = b64DecodeUnicode("");
  22306.    if (val === '') {
  22307.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  22308.    }
  22309.    val = JSON.parse(val);
  22310.    window.upcartSettings.upcartSettings.openCartButtonSelection = val;
  22311.  
  22312.    val = b64DecodeUnicode("");
  22313.    if (val === '') {
  22314.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  22315.    }
  22316.    val = JSON.parse(val);
  22317.    window.upcartSettings.upcartSettings.addToCartButtonSelection = val;
  22318.  
  22319.    val = b64DecodeUnicode("bGluZQ==");
  22320.    if (val === '') {
  22321.        val = b64DecodeUnicode("bGluZQ==");
  22322.    }
  22323.    window.upcartSettings.upcartSettings.updateItemIdentifier = val;
  22324.  
  22325.    val = b64DecodeUnicode("Knt9");
  22326.    if (val === '') {
  22327.        val = b64DecodeUnicode("Knt9");
  22328.    }
  22329.    window.upcartSettings.upcartSettings.customCSS = val;
  22330.  
  22331.    val = b64DecodeUnicode("Knt9");
  22332.    if (val === '') {
  22333.        val = b64DecodeUnicode("Knt9");
  22334.    }
  22335.    window.upcartSettings.upcartSettings.customStickyCartCSS = val;
  22336.  
  22337.    val = b64DecodeUnicode("ZmFsc2U=");
  22338.    if (val === '') {
  22339.        val = b64DecodeUnicode("ZmFsc2U=");
  22340.    }
  22341.    val = JSON.parse(val);
  22342.    window.upcartSettings.upcartSettings.integrationZapietEnabled = val;
  22343.  
  22344.    val = b64DecodeUnicode("ZmFsc2U=");
  22345.    if (val === '') {
  22346.        val = b64DecodeUnicode("ZmFsc2U=");
  22347.    }
  22348.    val = JSON.parse(val);
  22349.    window.upcartSettings.upcartSettings.integrationYmqEnabled = val;
  22350.  
  22351.    val = b64DecodeUnicode("");
  22352.    if (val === '') {
  22353.        val = b64DecodeUnicode("eyJzdGF0dXMiOiJESVNBQkxFRCJ9");
  22354.    }
  22355.    val = JSON.parse(val);
  22356.    window.upcartSettings.upcartSettings.customCartBundleInfo = val;
  22357.  
  22358.    val = b64DecodeUnicode("dHJ1ZQ==");
  22359.    if (val === '') {
  22360.        val = b64DecodeUnicode("dHJ1ZQ==");
  22361.    }
  22362.    val = JSON.parse(val);
  22363.    window.upcartSettings.upcartEditorSettings.cartIsEnabled = val;
  22364.  
  22365.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwYTlkMWMiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCJ9fQ==");
  22366.    if (val === '') {
  22367.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwMDAwMDAiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCIsImNhcnRXaWR0aCI6eyJkZXNrdG9wIjoiYmFzZSIsIm1vYmlsZSI6ImZ1bGwifX19");
  22368.    }
  22369.    val = JSON.parse(val);
  22370.    window.upcartSettings.upcartEditorSettings.settingsModule = val;
  22371.  
  22372.    val = b64DecodeUnicode("");
  22373.    if (val === '') {
  22374.        val = b64DecodeUnicode("IzJlYTgxOA==");
  22375.    }
  22376.    window.upcartSettings.upcartEditorSettings.designSettingsCartSavingsTextColor = val;
  22377.  
  22378.    val = b64DecodeUnicode("");
  22379.    if (val === '') {
  22380.        val = b64DecodeUnicode("MS4wLjA=");
  22381.    }
  22382.    window.upcartSettings.upcartEditorSettings.headerModuleVersion = val;
  22383.  
  22384.    val = b64DecodeUnicode("");
  22385.    if (val === '') {
  22386.        val = b64DecodeUnicode("MS4wLjA=");
  22387.    }
  22388.    window.upcartSettings.upcartEditorSettings.announcementModuleVersion = val;
  22389.  
  22390.    val = b64DecodeUnicode("");
  22391.    if (val === '') {
  22392.        val = b64DecodeUnicode("MS4wLjA=");
  22393.    }
  22394.    window.upcartSettings.upcartEditorSettings.upsellsModuleVersion = val;
  22395.  
  22396.    val = b64DecodeUnicode("");
  22397.    if (val === '') {
  22398.        val = b64DecodeUnicode("MS4wLjA=");
  22399.    }
  22400.    window.upcartSettings.upcartEditorSettings.recommendationsModuleVersion = val;
  22401.  
  22402.    val = b64DecodeUnicode("");
  22403.    if (val === '') {
  22404.        val = b64DecodeUnicode("MS4wLjA=");
  22405.    }
  22406.    window.upcartSettings.upcartEditorSettings.notesModuleVersion = val;
  22407.  
  22408.    val = b64DecodeUnicode("");
  22409.    if (val === '') {
  22410.        val = b64DecodeUnicode("MS4wLjA=");
  22411.    }
  22412.    window.upcartSettings.upcartEditorSettings.discountCodeModuleVersion = val;
  22413.  
  22414.    val = b64DecodeUnicode("");
  22415.    if (val === '') {
  22416.        val = b64DecodeUnicode("MS4wLjA=");
  22417.    }
  22418.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleVersion = val;
  22419.  
  22420.    val = b64DecodeUnicode("");
  22421.    if (val === '') {
  22422.        val = b64DecodeUnicode("MS4wLjA=");
  22423.    }
  22424.    window.upcartSettings.upcartEditorSettings.rewardsModuleVersion = val;
  22425.  
  22426.    val = b64DecodeUnicode("");
  22427.    if (val === '') {
  22428.        val = b64DecodeUnicode("MS4wLjA=");
  22429.    }
  22430.    window.upcartSettings.upcartEditorSettings.cartItemsModuleVersion = val;
  22431.  
  22432.    val = b64DecodeUnicode("");
  22433.    if (val === '') {
  22434.        val = b64DecodeUnicode("MS4wLjA=");
  22435.    }
  22436.    window.upcartSettings.upcartEditorSettings.addonsModuleVersion = val;
  22437.  
  22438.    val = b64DecodeUnicode("");
  22439.    if (val === '') {
  22440.        val = b64DecodeUnicode("MS4wLjA=");
  22441.    }
  22442.    window.upcartSettings.upcartEditorSettings.expressPayModuleVersion = val;
  22443.  
  22444.    val = b64DecodeUnicode("");
  22445.    if (val === '') {
  22446.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22447.    }
  22448.    val = JSON.parse(val);
  22449.    window.upcartSettings.upcartEditorSettings.headerModuleCustomJsxTemplates = val;
  22450.  
  22451.    val = b64DecodeUnicode("");
  22452.    if (val === '') {
  22453.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22454.    }
  22455.    val = JSON.parse(val);
  22456.    window.upcartSettings.upcartEditorSettings.announcementModuleCustomJsxTemplates = val;
  22457.  
  22458.    val = b64DecodeUnicode("");
  22459.    if (val === '') {
  22460.        val = b64DecodeUnicode("eyJ1cHNlbGxUaWxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22461.    }
  22462.    val = JSON.parse(val);
  22463.    window.upcartSettings.upcartEditorSettings.upsellsModuleCustomJsxTemplates = val;
  22464.  
  22465.    val = b64DecodeUnicode("");
  22466.    if (val === '') {
  22467.        val = b64DecodeUnicode("eyJyZWNvbW1lbmRhdGlvblRpbGUiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwic2tlbGV0b24iOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfX0=");
  22468.    }
  22469.    val = JSON.parse(val);
  22470.    window.upcartSettings.upcartEditorSettings.recommendationsModuleCustomJsxTemplates = val;
  22471.  
  22472.    val = b64DecodeUnicode("");
  22473.    if (val === '') {
  22474.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22475.    }
  22476.    val = JSON.parse(val);
  22477.    window.upcartSettings.upcartEditorSettings.notesModuleCustomJsxTemplates = val;
  22478.  
  22479.    val = b64DecodeUnicode("");
  22480.    if (val === '') {
  22481.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22482.    }
  22483.    val = JSON.parse(val);
  22484.    window.upcartSettings.upcartEditorSettings.discountModuleCustomJsxTemplates = val;
  22485.  
  22486.    val = b64DecodeUnicode("");
  22487.    if (val === '') {
  22488.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22489.    }
  22490.    val = JSON.parse(val);
  22491.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleCustomJsxTemplates = val;
  22492.  
  22493.    val = b64DecodeUnicode("");
  22494.    if (val === '') {
  22495.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22496.    }
  22497.    val = JSON.parse(val);
  22498.    window.upcartSettings.upcartEditorSettings.rewardsModuleCustomJsxTemplates = val;
  22499.  
  22500.    val = b64DecodeUnicode("");
  22501.    if (val === '') {
  22502.        val = b64DecodeUnicode("eyJza2VsZXRvbiI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJwcm9kdWN0VGlsZSI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJ2YXJpYW50Ijp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByb3BlcnRpZXMiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwiYnVuZGxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByaWNlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22503.    }
  22504.    val = JSON.parse(val);
  22505.    window.upcartSettings.upcartEditorSettings.cartItemsModuleCustomJsxTemplates = val;
  22506.  
  22507.    val = b64DecodeUnicode("");
  22508.    if (val === '') {
  22509.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22510.    }
  22511.    val = JSON.parse(val);
  22512.    window.upcartSettings.upcartEditorSettings.addonsModuleCustomJsxTemplates = val;
  22513.  
  22514.    val = b64DecodeUnicode("");
  22515.    if (val === '') {
  22516.        val = b64DecodeUnicode("YmFzZQ==");
  22517.    }
  22518.    window.upcartSettings.upcartEditorSettings.headerBorderBottom = val;
  22519.  
  22520.    val = b64DecodeUnicode("");
  22521.    if (val === '') {
  22522.        val = b64DecodeUnicode("YmFzZQ==");
  22523.    }
  22524.    window.upcartSettings.upcartEditorSettings.headerHeight = val;
  22525.  
  22526.    val = b64DecodeUnicode("");
  22527.    if (val === '') {
  22528.        val = b64DecodeUnicode("I2ZmZmZmZjAw");
  22529.    }
  22530.    window.upcartSettings.upcartEditorSettings.headerBackgroundColor = val;
  22531.  
  22532.    val = b64DecodeUnicode("");
  22533.    if (val === '') {
  22534.        val = b64DecodeUnicode("eyJ0eXBlIjoiaW5oZXJpdEhlYWRpbmdTdHlsZXMiLCJoZWFkaW5nTGV2ZWwiOiJoMiJ9");
  22535.    }
  22536.    val = JSON.parse(val);
  22537.    window.upcartSettings.upcartEditorSettings.headerTitleContent = val;
  22538.  
  22539.    val = b64DecodeUnicode("");
  22540.    if (val === '') {
  22541.        val = b64DecodeUnicode("c2lkZQ==");
  22542.    }
  22543.    window.upcartSettings.upcartEditorSettings.headerTitleAlignment = val;
  22544.  
  22545.    val = b64DecodeUnicode("");
  22546.    if (val === '') {
  22547.        val = b64DecodeUnicode("dGl0bGVfX2Nsb3NlQnV0dG9u");
  22548.    }
  22549.    window.upcartSettings.upcartEditorSettings.headerElementArrangement = val;
  22550.  
  22551.    val = b64DecodeUnicode("");
  22552.    if (val === '') {
  22553.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMDBjIiwib25Ib3ZlciI6IiMwMDAwMDAxNCJ9");
  22554.    }
  22555.    val = JSON.parse(val);
  22556.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBackgroundColor = val;
  22557.  
  22558.    val = b64DecodeUnicode("");
  22559.    if (val === '') {
  22560.        val = b64DecodeUnicode("eyJiYXNlIjoiIzYzNzM4MSIsIm9uSG92ZXIiOm51bGx9");
  22561.    }
  22562.    val = JSON.parse(val);
  22563.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconColor = val;
  22564.  
  22565.    val = b64DecodeUnicode("");
  22566.    if (val === '') {
  22567.        val = b64DecodeUnicode("c21hbGw=");
  22568.    }
  22569.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconSize = val;
  22570.  
  22571.    val = b64DecodeUnicode("");
  22572.    if (val === '') {
  22573.        val = b64DecodeUnicode("YmFzZQ==");
  22574.    }
  22575.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconStrokeWidth = val;
  22576.  
  22577.    val = b64DecodeUnicode("");
  22578.    if (val === '') {
  22579.        val = b64DecodeUnicode("bm9uZQ==");
  22580.    }
  22581.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderWidth = val;
  22582.  
  22583.    val = b64DecodeUnicode("");
  22584.    if (val === '') {
  22585.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMCIsIm9uSG92ZXIiOm51bGx9");
  22586.    }
  22587.    val = JSON.parse(val);
  22588.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderColor = val;
  22589.  
  22590.    val = b64DecodeUnicode("dHJ1ZQ==");
  22591.    if (val === '') {
  22592.        val = b64DecodeUnicode("ZmFsc2U=");
  22593.    }
  22594.    val = JSON.parse(val);
  22595.    window.upcartSettings.upcartEditorSettings.announcementModule = val;
  22596.  
  22597.    val = b64DecodeUnicode("PHA+PHN0cm9uZz4qKioqKiAgRlJFRSBTSElQUElORyAqKioqKjwvc3Ryb25nPjwvcD4K");
  22598.    if (val === '') {
  22599.        val = b64DecodeUnicode("PHA+WW91ciBwcm9kdWN0cyBhcmUgcmVzZXJ2ZWQgZm9yIDxiPntUSU1FUn08L2I+IG1pbnV0ZXMhPC9wPg==");
  22600.    }
  22601.    window.upcartSettings.upcartEditorSettings.announcementEditor = val;
  22602.  
  22603.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22604.    if (val === '') {
  22605.        val = b64DecodeUnicode("I0NERTBFMA==");
  22606.    }
  22607.    window.upcartSettings.upcartEditorSettings.announcementBackgroundColor = val;
  22608.  
  22609.    val = b64DecodeUnicode("dG9w");
  22610.    if (val === '') {
  22611.        val = b64DecodeUnicode("dG9w");
  22612.    }
  22613.    window.upcartSettings.upcartEditorSettings.announcementModulePosition = val;
  22614.  
  22615.    val = b64DecodeUnicode("IzEwOWMxYw==");
  22616.    if (val === '') {
  22617.        val = b64DecodeUnicode("I0M1RTZGRA==");
  22618.    }
  22619.    window.upcartSettings.upcartEditorSettings.announcementBorderColor = val;
  22620.  
  22621.    val = b64DecodeUnicode("MA==");
  22622.    if (val === '') {
  22623.        val = b64DecodeUnicode("MDA6MDA=");
  22624.    }
  22625.    window.upcartSettings.upcartEditorSettings.announcementTimer = val;
  22626.  
  22627.    val = b64DecodeUnicode("");
  22628.    if (val === '') {
  22629.        val = b64DecodeUnicode("YmFzZQ==");
  22630.    }
  22631.    window.upcartSettings.upcartEditorSettings.announcementHeight = val;
  22632.  
  22633.    val = b64DecodeUnicode("");
  22634.    if (val === '') {
  22635.        val = b64DecodeUnicode("MTU=");
  22636.    }
  22637.    window.upcartSettings.upcartEditorSettings.announcementTextFontSizePx = val;
  22638.  
  22639.    val = b64DecodeUnicode("ZmFsc2U=");
  22640.    if (val === '') {
  22641.        val = b64DecodeUnicode("ZmFsc2U=");
  22642.    }
  22643.    val = JSON.parse(val);
  22644.    window.upcartSettings.upcartEditorSettings.rewardsModule = val;
  22645.  
  22646.    val = b64DecodeUnicode("I0UyRTJFMg==");
  22647.    if (val === '') {
  22648.        val = b64DecodeUnicode("I0UyRTJFMg==");
  22649.    }
  22650.    window.upcartSettings.upcartEditorSettings.rewardsBarBackgroundColor = val;
  22651.  
  22652.    val = b64DecodeUnicode("IzkzRDNGRg==");
  22653.    if (val === '') {
  22654.        val = b64DecodeUnicode("IzkzRDNGRg==");
  22655.    }
  22656.    window.upcartSettings.upcartEditorSettings.rewardsBarForegroundColor = val;
  22657.  
  22658.    val = b64DecodeUnicode("Y2FydFRvdGFs");
  22659.    if (val === '') {
  22660.        val = b64DecodeUnicode("Y2FydFRvdGFs");
  22661.    }
  22662.    window.upcartSettings.upcartEditorSettings.rewardsBasis = val;
  22663.  
  22664.    val = b64DecodeUnicode("ZmFsc2U=");
  22665.    if (val === '') {
  22666.        val = b64DecodeUnicode("ZmFsc2U=");
  22667.    }
  22668.    val = JSON.parse(val);
  22669.    window.upcartSettings.upcartEditorSettings.rewardsProductLinkVisible = val;
  22670.  
  22671.    val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22672.    if (val === '') {
  22673.        val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22674.    }
  22675.    window.upcartSettings.upcartEditorSettings.rewardsTargetType = val;
  22676.  
  22677.    val = b64DecodeUnicode("MTI1");
  22678.    if (val === '') {
  22679.        val = b64DecodeUnicode("MTI1");
  22680.    }
  22681.    window.upcartSettings.upcartEditorSettings.rewardsMinAmount = val;
  22682.  
  22683.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22684.    if (val === '') {
  22685.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22686.    }
  22687.    window.upcartSettings.upcartEditorSettings.rewardsEditor = val;
  22688.  
  22689.    val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22690.    if (val === '') {
  22691.        val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22692.    }
  22693.    window.upcartSettings.upcartEditorSettings.rewardsEditorAfterText = val;
  22694.  
  22695.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22696.    if (val === '') {
  22697.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22698.    }
  22699.    window.upcartSettings.upcartEditorSettings.rewardsEditorForItemCount = val;
  22700.  
  22701.    val = b64DecodeUnicode("NQ==");
  22702.    if (val === '') {
  22703.        val = b64DecodeUnicode("NQ==");
  22704.    }
  22705.    window.upcartSettings.upcartEditorSettings.rewardsItemCount = val;
  22706.  
  22707.    val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22708.    if (val === '') {
  22709.        val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22710.    }
  22711.    val = JSON.parse(val);
  22712.    window.upcartSettings.upcartEditorSettings.rewardsTiers = val;
  22713.  
  22714.    val = b64DecodeUnicode("W10=");
  22715.    if (val === '') {
  22716.        val = b64DecodeUnicode("W10=");
  22717.    }
  22718.    val = JSON.parse(val);
  22719.    window.upcartSettings.upcartEditorSettings.rewardsTierProducts = val;
  22720.  
  22721.    val = b64DecodeUnicode("ZmFsc2U=");
  22722.    if (val === '') {
  22723.        val = b64DecodeUnicode("ZmFsc2U=");
  22724.    }
  22725.    val = JSON.parse(val);
  22726.    window.upcartSettings.upcartEditorSettings.rewardsShowIconWithSingleTier = val;
  22727.  
  22728.    val = b64DecodeUnicode("dHJ1ZQ==");
  22729.    if (val === '') {
  22730.        val = b64DecodeUnicode("ZmFsc2U=");
  22731.    }
  22732.    val = JSON.parse(val);
  22733.    window.upcartSettings.upcartEditorSettings.rewardsShowOnEmptyCart = val;
  22734.  
  22735.    val = b64DecodeUnicode("");
  22736.    if (val === '') {
  22737.        val = b64DecodeUnicode("ZmFsc2U=");
  22738.    }
  22739.    val = JSON.parse(val);
  22740.    window.upcartSettings.upcartEditorSettings.rewardsRemovePreviousProducts = val;
  22741.  
  22742.    val = b64DecodeUnicode("ZmFsc2U=");
  22743.    if (val === '') {
  22744.        val = b64DecodeUnicode("ZmFsc2U=");
  22745.    }
  22746.    val = JSON.parse(val);
  22747.    window.upcartSettings.upcartEditorSettings.recommendationsModule = val;
  22748.  
  22749.    val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22750.    if (val === '') {
  22751.        val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22752.    }
  22753.    window.upcartSettings.upcartEditorSettings.recommendationsHeaderText = val;
  22754.  
  22755.    val = b64DecodeUnicode("ZmFsc2U=");
  22756.    if (val === '') {
  22757.        val = b64DecodeUnicode("ZmFsc2U=");
  22758.    }
  22759.    val = JSON.parse(val);
  22760.    window.upcartSettings.upcartEditorSettings.recommendationsEnableShopNowButton = val;
  22761.  
  22762.    val = b64DecodeUnicode("U2hvcCBOb3c=");
  22763.    if (val === '') {
  22764.        val = b64DecodeUnicode("U2hvcCBOb3c=");
  22765.    }
  22766.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonText = val;
  22767.  
  22768.    val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22769.    if (val === '') {
  22770.        val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22771.    }
  22772.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonURL = val;
  22773.  
  22774.    val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22775.    if (val === '') {
  22776.        val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22777.    }
  22778.    val = JSON.parse(val);
  22779.    window.upcartSettings.upcartEditorSettings.recommendationItems = val;
  22780.  
  22781.    val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22782.    if (val === '') {
  22783.        val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22784.    }
  22785.    window.upcartSettings.upcartEditorSettings.recommendationsProductRecommendationsHeaderText = val;
  22786.  
  22787.    val = b64DecodeUnicode("Mw==");
  22788.    if (val === '') {
  22789.        val = b64DecodeUnicode("Mw==");
  22790.    }
  22791.    window.upcartSettings.upcartEditorSettings.recommendationsMaxRecommendationsToShow = val;
  22792.  
  22793.    val = b64DecodeUnicode("dmVydGljYWw=");
  22794.    if (val === '') {
  22795.        val = b64DecodeUnicode("dmVydGljYWw=");
  22796.    }
  22797.    window.upcartSettings.upcartEditorSettings.recommendationsDirection = val;
  22798.  
  22799.    val = b64DecodeUnicode("dHJ1ZQ==");
  22800.    if (val === '') {
  22801.        val = b64DecodeUnicode("ZmFsc2U=");
  22802.    }
  22803.    val = JSON.parse(val);
  22804.    window.upcartSettings.upcartEditorSettings.upsellsModule = val;
  22805.  
  22806.    val = b64DecodeUnicode("dmVydGljYWw=");
  22807.    if (val === '') {
  22808.        val = b64DecodeUnicode("aG9yaXpvbnRhbA==");
  22809.    }
  22810.    window.upcartSettings.upcartEditorSettings.upsellsDirection = val;
  22811.  
  22812.    val = b64DecodeUnicode("PHA+PC9wPgo=");
  22813.    if (val === '') {
  22814.        val = b64DecodeUnicode("WW91J2xsIGxvdmUgdGhlc2U=");
  22815.    }
  22816.    window.upcartSettings.upcartEditorSettings.upsellsTitle = val;
  22817.  
  22818.    val = b64DecodeUnicode("Mw==");
  22819.    if (val === '') {
  22820.        val = b64DecodeUnicode("MTA=");
  22821.    }
  22822.    window.upcartSettings.upcartEditorSettings.maximumUpsellsToShow = val;
  22823.  
  22824.    val = b64DecodeUnicode("dHJ1ZQ==");
  22825.    if (val === '') {
  22826.        val = b64DecodeUnicode("ZmFsc2U=");
  22827.    }
  22828.    val = JSON.parse(val);
  22829.    window.upcartSettings.upcartEditorSettings.upsellsShouldLimit = val;
  22830.  
  22831.    val = b64DecodeUnicode("ZmFsc2U=");
  22832.    if (val === '') {
  22833.        val = b64DecodeUnicode("ZmFsc2U=");
  22834.    }
  22835.    val = JSON.parse(val);
  22836.    window.upcartSettings.upcartEditorSettings.upsellsTrigger = val;
  22837.  
  22838.    val = b64DecodeUnicode("ZmFsc2U=");
  22839.    if (val === '') {
  22840.        val = b64DecodeUnicode("ZmFsc2U=");
  22841.    }
  22842.    val = JSON.parse(val);
  22843.    window.upcartSettings.upcartEditorSettings.showUpsellItemsAlreadyInCart = val;
  22844.  
  22845.    val = b64DecodeUnicode("W3siaWQiOiI1MjM2MyIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzczODc4NDc3ODY1ODMiLCJzaG9ydElkIjoiNzM4Nzg0Nzc4NjU4MyIsInZhcmlhbnRzIjpbIjQxNjE0OTYwODg1ODQ3Il0sImhhbmRsZSI6IjEtMTAtMTAwcGNzLXVzYi0yLTAtMmdiLTRnYi04Z2ItMTZnYi0zMmdiLTY0Z2ItMTI4Z2ItdXNiLWZsYXNoLWRyaXZlcy1sb3QiLCJ0aXRsZSI6Ik5ldyAxMjhHQiBVU0IgRmxhc2ggRHJpdmVzIFVTQiAyLjAgQmxhY2sgYW5kIFNpbHZlciAtIExJUVVJREFUSU9OIFNBTEUiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvcy1sMTAwMF8yODUxNWNhZC1lMjNlLTRjNWItOGU4YS05OTUxNjY3ZDVjZDgud2VicD92PTE3NDIzMjMyNjYifV19fSx7ImlkIjoiMzQzODMiLCJ2IjoyLCJ0cmlnZ2VyIjp7Im9uIjoiYWxsIn0sInVwc2VsbCI6eyJ0eXBlIjoiUHJvZHVjdCIsInByb2R1Y3RzIjpbeyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC82NTcwNjIxNTk5ODMxIiwic2hvcnRJZCI6IjY1NzA2MjE1OTk4MzEiLCJ2YXJpYW50cyI6WyIzOTMzMzgxODI2OTc4MyJdLCJoYW5kbGUiOiIzbS1zdGlja2VyLWRvdWJsZS1zaWRlZC10YXBlLWFkaGVzaXZlLWZvci1jZWxsLXBob25lLWNvbXB1dGVyLXJlcGFpciIsInRpdGxlIjoiTmV3IEJsYWNrIDNNIFN0aWNrZXIgRG91YmxlIFNpZGVkIFRhcGUgQWRoZXNpdmUgRm9yIENlbGwgUGhvbmUgJiBDb21wdXRlciBSZXBhaXJzIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL3RhcGUyLmpwZz92PTE3Mjg5MjMwNzAifV19fSx7ImlkIjoiNTcwOTQiLCJ2IjoyLCJ0cmlnZ2VyIjp7Im9uIjoiYWxsIn0sInVwc2VsbCI6eyJ0eXBlIjoiUHJvZHVjdCIsInByb2R1Y3RzIjpbeyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC83MzIzODg0MDI3OTkxIiwic2hvcnRJZCI6IjczMjM4ODQwMjc5OTEiLCJ2YXJpYW50cyI6WyI0MTM2MDU4MjkzNDYxNSJdLCJoYW5kbGUiOiIxMTUtaW4tMS1tYWduZXRpYy1wcmVjaXNpb24tc2NyZXdkcml2ZXItc2V0LXBjLXBob25lLWVsZWN0cm9uaWNzLXJlcGFpci10b29sLWtpdCIsInRpdGxlIjoiTmV3IExhcHRvcCBSZXBhaXIgVG9vbCBraXQgMTE1IGluIDEgTWFnbmV0aWMgUHJlY2lzaW9uIFNjcmV3ZHJpdmVyIFNldCIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9zLWwxMDAwXzUxNmUwMjY0LWRjZjMtNDU3Zi1iNTJiLWI4MDc2ZjE0MDBiMi53ZWJwP3Y9MTczMTQyMDU0OCJ9XX19XQ==");
  22846.    if (val === '') {
  22847.        val = b64DecodeUnicode("W3siX2lkIjoiIiwidHJpZ2dlciI6bnVsbCwidXBzZWxsIjpudWxsfV0=");
  22848.    }
  22849.    val = JSON.parse(val);
  22850.    window.upcartSettings.upcartEditorSettings.upsellsItems = val;
  22851.  
  22852.    val = b64DecodeUnicode("Ym90dG9t");
  22853.    if (val === '') {
  22854.        val = b64DecodeUnicode("Ym90dG9t");
  22855.    }
  22856.    window.upcartSettings.upcartEditorSettings.upsellsModulePosition = val;
  22857.  
  22858.    val = b64DecodeUnicode("ZmFsc2U=");
  22859.    if (val === '') {
  22860.        val = b64DecodeUnicode("ZmFsc2U=");
  22861.    }
  22862.    val = JSON.parse(val);
  22863.    window.upcartSettings.upcartEditorSettings.recommendedUpsells = val;
  22864.  
  22865.    val = b64DecodeUnicode("ZmFsc2U=");
  22866.    if (val === '') {
  22867.        val = b64DecodeUnicode("ZmFsc2U=");
  22868.    }
  22869.    val = JSON.parse(val);
  22870.    window.upcartSettings.upcartEditorSettings.smartVariantMatching = val;
  22871.  
  22872.    val = b64DecodeUnicode("cmVsYXRlZA==");
  22873.    if (val === '') {
  22874.        val = b64DecodeUnicode("cmVsYXRlZA==");
  22875.    }
  22876.    window.upcartSettings.upcartEditorSettings.upsellRecommendationIntent = val;
  22877.  
  22878.    val = b64DecodeUnicode("");
  22879.    if (val === '') {
  22880.        val = b64DecodeUnicode("bm8tcHJvZHVjdHM=");
  22881.    }
  22882.    window.upcartSettings.upcartEditorSettings.upsellProductReviews = val;
  22883.  
  22884.    val = b64DecodeUnicode("");
  22885.    if (val === '') {
  22886.        val = b64DecodeUnicode("KHt7UkVWSUVXX0NPVU5UfX0gcmV2aWV3cyk=");
  22887.    }
  22888.    window.upcartSettings.upcartEditorSettings.upsellProductReviewsTextTemplate = val;
  22889.  
  22890.    val = b64DecodeUnicode("dHJ1ZQ==");
  22891.    if (val === '') {
  22892.        val = b64DecodeUnicode("ZmFsc2U=");
  22893.    }
  22894.    val = JSON.parse(val);
  22895.    window.upcartSettings.upcartEditorSettings.addonsModule = val;
  22896.  
  22897.    val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjp0cnVlLCJwcm9kdWN0SGFuZGxlIjoic2hpcHBpbmctcHJvdGVjdGlvbiIsImRlZmF1bHRCZWhhdmlvciI6dHJ1ZSwidGllcnMiOlt7Im1heENhcnRUb3RhbCI6OTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjMuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk0NDc5MSJ9LHsibWF4Q2FydFRvdGFsIjoxOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjQuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk3NzU1OSJ9LHsibWF4Q2FydFRvdGFsIjoyOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjUuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDAxMDMyNyJ9LHsibWF4Q2FydFRvdGFsIjozOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjYuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDA0MzA5NSJ9LHsibWF4Q2FydFRvdGFsIjpudWxsLCJ0ZW1wb3JhcnlEYXRhRm9yQWRtaW4iOnsidmFyaWFudFByaWNlIjo3Ljk5fSwidmFyaWFudElkIjoiNDEzNjU2MDAwNzU4NjMifV0sInVzZVByZURpc2NvdW50ZWRUb3RhbCI6dHJ1ZX0sInByb2R1Y3RBZGRvbiI6eyJhY3RpdmUiOmZhbHNlLCJwcm9kdWN0SGFuZGxlIjpudWxsLCJwcm9kdWN0IjpudWxsLCJkZWZhdWx0QmVoYXZpb3IiOmZhbHNlfX0=");
  22898.    if (val === '') {
  22899.        val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjpmYWxzZSwicHJvZHVjdEhhbmRsZSI6bnVsbCwidGllcnMiOltdLCJ1c2VQcmVEaXNjb3VudGVkVG90YWwiOmZhbHNlfSwicHJvZHVjdEFkZG9uIjp7ImFjdGl2ZSI6ZmFsc2UsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGx9fQ==");
  22900.    }
  22901.    val = JSON.parse(val);
  22902.    window.upcartSettings.upcartEditorSettings.addonsField = val;
  22903.  
  22904.    val = b64DecodeUnicode("dHJ1ZQ==");
  22905.    if (val === '') {
  22906.        val = b64DecodeUnicode("ZmFsc2U=");
  22907.    }
  22908.    val = JSON.parse(val);
  22909.    window.upcartSettings.upcartEditorSettings.addonsShouldBeCounted = val;
  22910.  
  22911.    val = b64DecodeUnicode("dHJ1ZQ==");
  22912.    if (val === '') {
  22913.        val = b64DecodeUnicode("ZmFsc2U=");
  22914.    }
  22915.    val = JSON.parse(val);
  22916.    window.upcartSettings.upcartEditorSettings.notesModule = val;
  22917.  
  22918.    val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zIC0gTGFwdG9wIG1vZGVsIE51bWJlcjwvcD4K");
  22919.    if (val === '') {
  22920.        val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zPC9wPg==");
  22921.    }
  22922.    window.upcartSettings.upcartEditorSettings.notesTitle = val;
  22923.  
  22924.    val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22925.    if (val === '') {
  22926.        val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22927.    }
  22928.    window.upcartSettings.upcartEditorSettings.notesPlaceholder = val;
  22929.  
  22930.    val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22931.    if (val === '') {
  22932.        val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22933.    }
  22934.    window.upcartSettings.upcartEditorSettings.notesPlacement = val;
  22935.  
  22936.    val = b64DecodeUnicode("dHJ1ZQ==");
  22937.    if (val === '') {
  22938.        val = b64DecodeUnicode("ZmFsc2U=");
  22939.    }
  22940.    val = JSON.parse(val);
  22941.    window.upcartSettings.upcartEditorSettings.trustBadgesModule = val;
  22942.  
  22943.    val = b64DecodeUnicode("eyJ1cmwiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL1VwY2FydF9UcnVzdF9CYWRnZV8xNzM5ODgzNjUyMjIxLmpwZz92PTE3Mzk4ODM2NjEiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  22944.    if (val === '') {
  22945.        val = b64DecodeUnicode("eyJ1cmwiOiIiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  22946.    }
  22947.    val = JSON.parse(val);
  22948.    window.upcartSettings.upcartEditorSettings.trustBadges = val;
  22949.  
  22950.    val = b64DecodeUnicode("dHJ1ZQ==");
  22951.    if (val === '') {
  22952.        val = b64DecodeUnicode("ZmFsc2U=");
  22953.    }
  22954.    val = JSON.parse(val);
  22955.    window.upcartSettings.upcartEditorSettings.discountCodeModule = val;
  22956.  
  22957.    val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  22958.    if (val === '') {
  22959.        val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  22960.    }
  22961.    window.upcartSettings.upcartEditorSettings.discountCodePlaceholder = val;
  22962.  
  22963.    val = b64DecodeUnicode("QXBwbHk=");
  22964.    if (val === '') {
  22965.        val = b64DecodeUnicode("QXBwbHk=");
  22966.    }
  22967.    window.upcartSettings.upcartEditorSettings.discountCodeButtonText = val;
  22968.  
  22969.    val = b64DecodeUnicode("ZmFsc2U=");
  22970.    if (val === '') {
  22971.        val = b64DecodeUnicode("ZmFsc2U=");
  22972.    }
  22973.    val = JSON.parse(val);
  22974.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesModule = val;
  22975.  
  22976.    val = b64DecodeUnicode("ZmFsc2U=");
  22977.    if (val === '') {
  22978.        val = b64DecodeUnicode("ZmFsc2U=");
  22979.    }
  22980.    val = JSON.parse(val);
  22981.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesPreventDowngrades = val;
  22982.  
  22983.    val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  22984.    if (val === '') {
  22985.        val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  22986.    }
  22987.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesButtonText = val;
  22988.  
  22989.    val = b64DecodeUnicode("ZmFsc2U=");
  22990.    if (val === '') {
  22991.        val = b64DecodeUnicode("ZmFsc2U=");
  22992.    }
  22993.    val = JSON.parse(val);
  22994.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsTextOverride = val;
  22995.  
  22996.    val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  22997.    if (val === '') {
  22998.        val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  22999.    }
  23000.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsText = val;
  23001.  
  23002.    val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  23003.    if (val === '') {
  23004.        val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  23005.    }
  23006.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOneTimePurchaseText = val;
  23007.  
  23008.    val = b64DecodeUnicode("dHJ1ZQ==");
  23009.    if (val === '') {
  23010.        val = b64DecodeUnicode("ZmFsc2U=");
  23011.    }
  23012.    val = JSON.parse(val);
  23013.    window.upcartSettings.upcartEditorSettings.expressPayModule = val;
  23014.  
  23015.    val = b64DecodeUnicode("W10=");
  23016.    if (val === '') {
  23017.        val = b64DecodeUnicode("W10=");
  23018.    }
  23019.    val = JSON.parse(val);
  23020.    window.upcartSettings.upcartEditorSettings.expressPayEnabledGateways = val;
  23021.  
  23022.    val = b64DecodeUnicode("MQ==");
  23023.    if (val === '') {
  23024.        val = b64DecodeUnicode("MQ==");
  23025.    }
  23026.    window.upcartSettings.upcartEditorSettings.expressPayVersion = val;
  23027.  
  23028.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  23029.    if (val === '') {
  23030.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  23031.    }
  23032.    val = JSON.parse(val);
  23033.    window.upcartSettings.upcartEditorSettings.expressPayAcceleratedCheckoutStyles = val;
  23034.  
  23035.    val = b64DecodeUnicode("dHJ1ZQ==");
  23036.    if (val === '') {
  23037.        val = b64DecodeUnicode("dHJ1ZQ==");
  23038.    }
  23039.    val = JSON.parse(val);
  23040.    window.upcartSettings.upcartEditorSettings.expressPayHideBuyerConsent = val;
  23041.  
  23042.    val = b64DecodeUnicode("ZmFsc2U=");
  23043.    if (val === '') {
  23044.        val = b64DecodeUnicode("ZmFsc2U=");
  23045.    }
  23046.    val = JSON.parse(val);
  23047.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartButtonIsEnabled = val;
  23048.  
  23049.    val = b64DecodeUnicode("IzQzYmUwYQ==");
  23050.    if (val === '') {
  23051.        val = b64DecodeUnicode("IzAwMDAwMA==");
  23052.    }
  23053.    window.upcartSettings.stickyCartButtonEditorSettings.backgroundColor = val;
  23054.  
  23055.    val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23056.    if (val === '') {
  23057.        val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23058.    }
  23059.    window.upcartSettings.stickyCartButtonEditorSettings.deviceSettings = val;
  23060.  
  23061.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23062.    if (val === '') {
  23063.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23064.    }
  23065.    window.upcartSettings.stickyCartButtonEditorSettings.iconColor = val;
  23066.  
  23067.    val = b64DecodeUnicode("c3RhbmRhcmRDYXJ0");
  23068.    if (val === '') {
  23069.        val = b64DecodeUnicode("c3F1YXJlQmFn");
  23070.    }
  23071.    window.upcartSettings.stickyCartButtonEditorSettings.iconStyle = val;
  23072.  
  23073.    val = b64DecodeUnicode("I2U0MjYyNg==");
  23074.    if (val === '') {
  23075.        val = b64DecodeUnicode("I2U0MjYyNg==");
  23076.    }
  23077.    window.upcartSettings.stickyCartButtonEditorSettings.quantityBackgroundColor = val;
  23078.  
  23079.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23080.    if (val === '') {
  23081.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23082.    }
  23083.    window.upcartSettings.stickyCartButtonEditorSettings.quantityTextColor = val;
  23084.  
  23085.    val = b64DecodeUnicode("Y2VudGVyUmlnaHQ=");
  23086.    if (val === '') {
  23087.        val = b64DecodeUnicode("Ym90dG9tUmlnaHQ=");
  23088.    }
  23089.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartPosition = val;
  23090.  
  23091. })();
  23092. </script>
  23093.  
  23094.  
  23095.  
  23096.  
  23097.  <div id="upcart-additional-checkout-buttons" style="position: absolute !important; margin-left: -9999px !important; display: block !important;" class="additional-checkout-buttons">
  23098.    
  23099.    <div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
  23100.    <div class="upcart-additional-checkout-buttons-svgs">
  23101.  
  23102.      
  23103.  
  23104.      
  23105.  
  23106.      
  23107.  
  23108.      
  23109.  
  23110.      
  23111.  
  23112.      
  23113.    </div>
  23114.  </div>
  23115.  
  23116.  
  23117.  
  23118.  
  23119. <script>
  23120.  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};
  23121.  window.upcartMoneyFormat = "${{amount}}";
  23122.  window.upcartStorefrontPublicAccessToken = '53e72a50badb7e504187b4c7431817bf' || undefined;
  23123.  window.upcartClientLocalizationCountry = {
  23124.    isoCode: 'CA',
  23125.    currency: 'CurrencyDrop',
  23126.    name: 'Canada'
  23127.  };
  23128.  window.upcartMyShopifyDomain = 'laptoppartsatp.myshopify.com';
  23129. </script>
  23130.  
  23131. <script>
  23132.  window.upcartPreloadedCart.items = window.upcartPreloadedCart.items.map((line) => {
  23133.    
  23134.  
  23135.    return line;
  23136.  });
  23137. </script>
  23138.  
  23139. <div id="upCart"></div>
  23140. <div id="upCartStickyButton"></div>
  23141.  
  23142. <style id="upCart-customCSS">
  23143.  *{}
  23144. </style>
  23145.  
  23146.  
  23147. </div></body>
  23148. </html>
  23149.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda