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

Source: https://laptopparts.ca

  1. <!doctype html>
  2. <html class="no-js no-touch" lang="en">
  3.  <head>
  4.    <!-- 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"></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&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,"smart_payment_buttons_url":"https:\/\/laptopparts.ca\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/spb.en.js","dynamic_checkout_cart_url":"https:\/\/laptopparts.ca\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/dynamic-checkout-cart.en.js","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-cash-offers":["modules/v2/client.shop-cash-offers_DPVRNuJh.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js","modules/v2/chunk.modal_gCt8VyrK.esm.js"],"init-fed-cm":["modules/v2/client.init-fed-cm_DRADbZpF.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_yicd7lo0.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js","modules/v2/chunk.modal_gCt8VyrK.esm.js"],"pay-button":["modules/v2/client.pay-button_rnZO9PYG.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_CdHvkueY.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_CSLgL0JK.en.esm.js","modules/v2/client.shop-login-button_-iQhKGII.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js","modules/v2/chunk.modal_gCt8VyrK.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_AxwU6uW1.en.esm.js","modules/v2/client.shop-login-button_-iQhKGII.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js","modules/v2/chunk.modal_gCt8VyrK.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_CdlcoBQc.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_8Xtqww3f.en.esm.js","modules/v2/client.shop-login-button_-iQhKGII.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js","modules/v2/chunk.modal_gCt8VyrK.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_-iQhKGII.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js","modules/v2/chunk.modal_gCt8VyrK.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_mCgyq22c.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js","modules/v2/chunk.modal_gCt8VyrK.esm.js"],"lead-capture":["modules/v2/client.lead-capture_DoxgAVqx.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js","modules/v2/chunk.modal_gCt8VyrK.esm.js"],"payment-terms":["modules/v2/client.payment-terms_DRnN4XU8.en.esm.js","modules/v2/chunk.common_B46DHYVK.esm.js","modules/v2/chunk.modal_gCt8VyrK.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","\/\/livesearch.okasconcepts.com\/js\/livesearch.init.min.js?v=2\u0026shop=laptoppartsatp.myshopify.com","https:\/\/production-assets.app.poalpha.com\/assets\/scripts\/preorderalpha.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":"8f6e468f-a6da-4c23-b7a3-bb9f7476b4f4-1741692070","pageurl":"laptopparts.ca\/","u":"fe14c5816667","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-EGCDRYTvIEOXsReXgqGwkAR+5Dl8tickSrieA/ZcQwc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/shopify/assets/storefront/load_feature-1060834584ef204397b1179782a1b090047ee4397cb627244ab89e03f65c4307.js" crossorigin="anonymous"></script>
  713. <script crossorigin="anonymous" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-80e528be853eac23af2454534897ca9536b1d3d04aa043b042f34879a3c111c8.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.     <script src="https://cdn.shopify.com/extensions/72013df9-c3fc-4bda-8585-84105d4b4218/pushowl-brevo-email-push-sms-70/assets/pushowl-shopify.js" type="text/javascript" defer="defer"></script>
  798. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  799. <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>
  800. <script id="web-pixels-manager-setup">(function d(d,e,n,o,r,i){if(!Boolean(null===(t=null===(a=window.Shopify)||void 0===a?void 0:a.analytics)||void 0===t?void 0:t.replayQueue)){var a,t,s=function(){var d={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[1-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[2-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[1-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[1-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[2-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[1-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+|)/},e=d.modern,n=d.legacy,o=navigator.userAgent;return e.test(o)?"modern":(n.test(o),"legacy")}(),l=null!=i?i:{modern:"",legacy:""};window.Shopify=window.Shopify||{};var u=window.Shopify;u.analytics=u.analytics||{};var c=u.analytics;c.replayQueue=[],c.publish=function(d,e,n){return c.replayQueue.push([d,e,n]),!0};try{self.performance.mark("wpm:start")}catch(d){}var f=[n,"/wpm","/b",r,s.substring(0,1),".js"].join(""),h=l[s];!function(d){var e=d.src,n=d.async,o=void 0===n||n,r=d.onload,i=d.onerror,a=d.sri,t=document.createElement("script"),s=document.head,l=document.body;t.async=o,t.src=e,a&&(t.integrity=a,t.crossOrigin="anonymous"),r&&t.addEventListener("load",r),i&&t.addEventListener("error",i),s?s.appendChild(t):l?l.appendChild(t):console.error("Did not find a head or body element to append the script")}({src:f,async:!0,onload:function(){if(!function(){var d,e;return Boolean(null===(e=null===(d=window.Shopify)||void 0===d?void 0:d.analytics)||void 0===e?void 0:e.initialized)}()){var n=window.webPixelsManager.init(d)||void 0;if(n){e(n);var o=window.Shopify.analytics;o.replayQueue.forEach((function(d){var e=d[0],o=d[1],r=d[2];n.publishCustomEvent(e,o,r)})),o.replayQueue=[],o.publish=n.publishCustomEvent,o.visitor=n.visitor,o.initialized=!0}}},onerror:function(){var e=d.storefrontBaseUrl.replace(/\/$/,""),n="".concat(e,"/.well-known/shopify/monorail/unstable/produce_batch"),r=JSON.stringify({metadata:{event_sent_at_ms:(new Date).getTime()},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:o||"latest",bundle_target:s,page_url:self.location.href,status:"failed",surface:d.surface,error_msg:"".concat(f," has failed to load")},metadata:{event_created_at_ms:(new Date).getTime()}}]});try{if(self.navigator.sendBeacon.bind(self.navigator)(n,r))return!0}catch(d){}var i=new XMLHttpRequest;try{return i.open("POST",n,!0),i.setRequestHeader("Content-Type","text/plain"),i.send(r),!0}catch(d){console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging a load error.")}return!1},sri:function(d){return"string"==typeof d&&/^sha384-[A-Za-z0-9+/=]+$/.test(d)}(h)?h:""})}})({shopId: 11386172,storefrontBaseUrl: "https://laptopparts.ca",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",surface: "storefront-renderer",enabledBetaFlags: ["6a396365"],webPixelsConfigList: [{"id":"560693335","configuration":"{\"subdomain\": \"laptoppartsatp\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"640d06d4688adaafafd0731bf608d24c","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":"322b4d09e15b68127cd86b1bb8929c25","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":"0290","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0290","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,effectiveTopLevelDomain: "",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","725c73313b205d979e8abaa7d4fb0fba7f299cd2","f1d1a304wfe79281ap5a5ffd39mcb3a6a89",{"modern":"","legacy":""});</script>  <script>window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  801. window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  802. window.ShopifyAnalytics.meta.currency = 'CAD';
  803. var meta = {"page":{"pageType":"home"}};
  804. for (var attr in meta) {
  805.  window.ShopifyAnalytics.meta[attr] = meta[attr];
  806. }</script>
  807. <script>window.ShopifyAnalytics.merchantGoogleAnalytics = function() {
  808.  
  809. };
  810. </script>
  811. <script class="analytics">(function () {
  812.    var customDocumentWrite = function(content) {
  813.      var jquery = null;
  814.  
  815.      if (window.jQuery) {
  816.        jquery = window.jQuery;
  817.      } else if (window.Checkout && window.Checkout.$) {
  818.        jquery = window.Checkout.$;
  819.      }
  820.  
  821.      if (jquery) {
  822.        jquery('body').append(content);
  823.      }
  824.    };
  825.  
  826.    var hasLoggedConversion = function(token) {
  827.      if (token) {
  828.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  829.      }
  830.      return false;
  831.    }
  832.  
  833.    var setCookieIfConversion = function(token) {
  834.      if (token) {
  835.        var twoMonthsFromNow = new Date(Date.now());
  836.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  837.  
  838.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  839.      }
  840.    }
  841.  
  842.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  843.    if (trekkie.integrations) {
  844.      return;
  845.    }
  846.    trekkie.methods = [
  847.      'identify',
  848.      'page',
  849.      'ready',
  850.      'track',
  851.      'trackForm',
  852.      'trackLink'
  853.    ];
  854.    trekkie.factory = function(method) {
  855.      return function() {
  856.        var args = Array.prototype.slice.call(arguments);
  857.        args.unshift(method);
  858.        trekkie.push(args);
  859.        return trekkie;
  860.      };
  861.    };
  862.    for (var i = 0; i < trekkie.methods.length; i++) {
  863.      var key = trekkie.methods[i];
  864.      trekkie[key] = trekkie.factory(key);
  865.    }
  866.    trekkie.load = function(config) {
  867.      trekkie.config = config || {};
  868.      trekkie.config.initialDocumentCookie = document.cookie;
  869.      var first = document.getElementsByTagName('script')[0];
  870.      var script = document.createElement('script');
  871.      script.type = 'text/javascript';
  872.      script.onerror = function(e) {
  873.        var scriptFallback = document.createElement('script');
  874.        scriptFallback.type = 'text/javascript';
  875.        scriptFallback.onerror = function(error) {
  876.                var Monorail = {
  877.      produce: function produce(monorailDomain, schemaId, payload) {
  878.        var currentMs = new Date().getTime();
  879.        var event = {
  880.          schema_id: schemaId,
  881.          payload: payload,
  882.          metadata: {
  883.            event_created_at_ms: currentMs,
  884.            event_sent_at_ms: currentMs
  885.          }
  886.        };
  887.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  888.      },
  889.      sendRequest: function sendRequest(endpointUrl, payload) {
  890.        // Try the sendBeacon API
  891.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  892.          var blobData = new window.Blob([payload], {
  893.            type: 'text/plain'
  894.          });
  895.  
  896.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  897.            return true;
  898.          } // sendBeacon was not successful
  899.  
  900.        } // XHR beacon
  901.  
  902.        var xhr = new XMLHttpRequest();
  903.  
  904.        try {
  905.          xhr.open('POST', endpointUrl);
  906.          xhr.setRequestHeader('Content-Type', 'text/plain');
  907.          xhr.send(payload);
  908.        } catch (e) {
  909.          console.log(e);
  910.        }
  911.  
  912.        return false;
  913.      },
  914.      isIos12: function isIos12() {
  915.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  916.      }
  917.    };
  918.    Monorail.produce('monorail-edge.shopifysvc.com',
  919.      'trekkie_storefront_load_errors/1.1',
  920.      {shop_id: 11386172,
  921.      theme_id: 126947917911,
  922.      app_name: "storefront",
  923.      context_url: window.location.href,
  924.      source_url: "//laptopparts.ca/cdn/s/trekkie.storefront.ee00ae5d5f7902c457139393886b62864391d5ea.min.js"});
  925.  
  926.        };
  927.        scriptFallback.async = true;
  928.        scriptFallback.src = '//laptopparts.ca/cdn/s/trekkie.storefront.ee00ae5d5f7902c457139393886b62864391d5ea.min.js';
  929.        first.parentNode.insertBefore(scriptFallback, first);
  930.      };
  931.      script.async = true;
  932.      script.src = '//laptopparts.ca/cdn/s/trekkie.storefront.ee00ae5d5f7902c457139393886b62864391d5ea.min.js';
  933.      first.parentNode.insertBefore(script, first);
  934.    };
  935.    trekkie.load(
  936.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":11386172,"isMerchantRequest":null,"themeId":126947917911,"themeCityHash":"6699620645150712013","contentLanguage":"en","currency":"CAD"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  937.    );
  938.  
  939.    var loaded = false;
  940.    trekkie.ready(function() {
  941.      if (loaded) return;
  942.      loaded = true;
  943.  
  944.      window.ShopifyAnalytics.lib = window.trekkie;
  945.  
  946.  
  947.      var originalDocumentWrite = document.write;
  948.      document.write = customDocumentWrite;
  949.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  950.      document.write = originalDocumentWrite;
  951.  
  952.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  953.  
  954.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  955.      var token = match? match[1]: undefined;
  956.      if (!hasLoggedConversion(token)) {
  957.        setCookieIfConversion(token);
  958.        
  959.      }
  960.    });
  961.  
  962.  
  963.        var eventsListenerScript = document.createElement('script');
  964.        eventsListenerScript.async = true;
  965.        eventsListenerScript.src = "//laptopparts.ca/cdn/shopifycloud/shopify/assets/shop_events_listener-bbbf3223c550be0dd72914a2fa06aaa88eb8943e96f9ea31fb63e7e27e0f97f4.js";
  966.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  967.  
  968. })();</script>
  969. <script
  970.  defer
  971.  src="https://laptopparts.ca/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.4.0.min.js"
  972.  data-application="storefront-renderer"
  973.  data-shop-id="11386172"
  974.  data-render-region="gcp-us-east1"
  975.  data-page-type="index"
  976.  data-theme-instance-id="126947917911"
  977.  data-monorail-region="shop_domain"
  978.  data-resource-timing-sampling-rate="10"
  979. ></script>
  980. </head>
  981.  
  982.  <body
  983.    class="template-index"
  984.    data-instant-allow-query-string
  985.    
  986.  >
  987.    <script>
  988.      document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
  989.      if(window.Shopify&&window.Shopify.designMode)document.documentElement.className+=' in-theme-editor';
  990.      if(('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch)document.documentElement.className=document.documentElement.className.replace(/\bno-touch\b/,'has-touch');
  991.    </script>
  992.  
  993.    <!-- Google Tag Manager (noscript) -->
  994.    <noscript
  995.      ><iframe
  996.        loading="lazy"
  997.        src="https://www.googletagmanager.com/ns.html?id=GTM-WDHHF23"
  998.        height="0"
  999.        width="0"
  1000.        style="display:none;visibility:hidden"
  1001.      ></iframe
  1002.    ></noscript>
  1003.    <!-- End Google Tag Manager (noscript) -->
  1004.  
  1005.    
  1006.    <svg
  1007.      class="icon-star-reference"
  1008.      aria-hidden="true"
  1009.      focusable="false"
  1010.      role="presentation"
  1011.      xmlns="http://www.w3.org/2000/svg"
  1012.      width="20"
  1013.      height="20"
  1014.      viewBox="3 3 17 17"
  1015.      fill="none"
  1016.    >
  1017.      <symbol id="icon-star">
  1018.        <rect class="icon-star-background" width="20" height="20" fill="currentColor"/>
  1019.        <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"/>
  1020.      </symbol>
  1021.      <clipPath id="icon-star-clip">
  1022.        <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"/>
  1023.      </clipPath>
  1024.    </svg>
  1025.    
  1026.  
  1027.    <a class="skip-to-main" href="#site-main">Skip to content</a>
  1028.  
  1029.    <!-- BEGIN sections: header-group -->
  1030. <div id="shopify-section-sections--15492291133527__announcement-bar" class="shopify-section shopify-section-group-header-group site-announcement"><script
  1031.  type="application/json"
  1032.  data-section-id="sections--15492291133527__announcement-bar"
  1033.  data-section-type="static-announcement">
  1034. </script>
  1035.  
  1036.  
  1037.  
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045.    <div
  1046.      class="
  1047.        announcement-bar
  1048.        
  1049.      "
  1050.      style="
  1051.        color: #ffffff;
  1052.        background: #fe0000;
  1053.      "
  1054.      data-announcement-bar
  1055.    >
  1056.      
  1057.  
  1058.      
  1059.        <div class="announcement-bar-text">
  1060.          📞 <b>Text us at 613-704-4708</b>
  1061.  
  1062. <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>
  1063.        </div>
  1064.      
  1065.  
  1066.      <div class="announcement-bar-text-mobile">
  1067.        
  1068.          📞 <b>Text us at 613-704-4708</b>
  1069.  
  1070. <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>
  1071.        
  1072.      </div>
  1073.    </div>
  1074.  
  1075.  
  1076.  
  1077. </div><div id="shopify-section-sections--15492291133527__header" class="shopify-section shopify-section-group-header-group site-header-wrapper">
  1078.  
  1079.  
  1080. <script
  1081.  type="application/json"
  1082.  data-section-id="sections--15492291133527__header"
  1083.  data-section-type="static-header"
  1084.  data-section-data>
  1085.  {
  1086.    "settings": {
  1087.      "sticky_header": false,
  1088.      "has_box_shadow": false,
  1089.      "live_search": {
  1090.        "enable": true,
  1091.        "money_format": "${{amount}}",
  1092.        "show_mobile_search_bar": false
  1093.      }
  1094.    }
  1095.  }
  1096. </script>
  1097.  
  1098.  
  1099.  
  1100.  
  1101.  
  1102. <style data-shopify>
  1103.  .site-logo {
  1104.    max-width: 250px;
  1105.  }
  1106.  
  1107.  .site-logo-image {
  1108.    max-height: 100px;
  1109.  }
  1110. </style>
  1111.  
  1112. <header
  1113.  class="site-header site-header-nav--open"
  1114.  role="banner"
  1115.  data-site-header
  1116. >
  1117.  <div
  1118.    class="
  1119.      site-header-main
  1120.      
  1121.        site-header--full-width
  1122.      
  1123.    "
  1124.    data-site-header-main
  1125.    
  1126.    
  1127.      data-site-header-mobile-search-button
  1128.    
  1129.  >
  1130.    <button class="site-header-menu-toggle" data-menu-toggle>
  1131.      <div class="site-header-menu-toggle--button" tabindex="-1">
  1132.        <span class="toggle-icon--bar toggle-icon--bar-top"></span>
  1133.        <span class="toggle-icon--bar toggle-icon--bar-middle"></span>
  1134.        <span class="toggle-icon--bar toggle-icon--bar-bottom"></span>
  1135.        <span class="visually-hidden">Menu</span>
  1136.      </div>
  1137.    </button>
  1138.  
  1139.    
  1140.      
  1141.      
  1142.        <button
  1143.          class="site-header-mobile-search-button"
  1144.          data-mobile-search-button
  1145.        >
  1146.          
  1147.        <div class="site-header-mobile-search-button--button" tabindex="-1">
  1148.          <svg
  1149.  aria-hidden="true"
  1150.  focusable="false"
  1151.  role="presentation"
  1152.  xmlns="http://www.w3.org/2000/svg"
  1153.  width="23"
  1154.  height="24"
  1155.  fill="none"
  1156.  viewBox="0 0 23 24"
  1157. >
  1158.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1159.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1160. </svg>
  1161.  
  1162.        </div>
  1163.      
  1164.        </button>
  1165.      
  1166.    
  1167.  
  1168.    <div
  1169.      class="
  1170.        site-header-main-content
  1171.        
  1172.      "
  1173.    >
  1174.      <div class="site-header-logo">
  1175.        <a
  1176.          class="site-logo"
  1177.          href="/">
  1178.          
  1179.            
  1180.            
  1181.  
  1182.            
  1183.  
  1184.  
  1185.  
  1186.  <img loading="lazy"
  1187.    
  1188.      src="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523"
  1189.    
  1190.    alt=""
  1191.  
  1192.    
  1193.      data-rimg
  1194.      srcset="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523 1x"
  1195.    
  1196.  
  1197.    class="site-logo-image"
  1198.    style="
  1199.        object-fit:cover;object-position:50.0% 50.0%;
  1200.      
  1201. "
  1202.    
  1203.  >
  1204.  
  1205.  
  1206.  
  1207.  
  1208.          
  1209.        </a>
  1210.      </div>
  1211.  
  1212.      
  1213.  
  1214.  
  1215.  
  1216.  
  1217.  
  1218. <div class="live-search" data-live-search><form
  1219.    class="
  1220.      live-search-form
  1221.      form-fields-inline
  1222.      
  1223.    "
  1224.    action="/search"
  1225.    method="get"
  1226.    role="search"
  1227.    aria-label="Product"
  1228.    data-live-search-form
  1229.  >
  1230.    <div class="form-field no-label"><span class="form-field-select-wrapper live-search-filter-wrapper">
  1231.          <select class="live-search-filter" data-live-search-filter data-filter-all="All categories">
  1232.            
  1233.            <option value="" selected>All categories</option>
  1234.            <option value="" disabled>------</option>
  1235.            
  1236.              
  1237.  
  1238. <option value="product_type:AC Adapters">AC Adapters</option>
  1239. <option value="product_type:Accessories">Accessories</option>
  1240. <option value="product_type:Adapter Card">Adapter Card</option>
  1241. <option value="product_type:Antennas">Antennas</option>
  1242. <option value="product_type:Appliances &gt; Fans">Appliances > Fans</option>
  1243. <option value="product_type:Batteries">Batteries</option>
  1244. <option value="product_type:Bezels Cases &amp; Covers">Bezels Cases & Covers</option>
  1245. <option value="product_type:Boards">Boards</option>
  1246. <option value="product_type:Cables">Cables</option>
  1247. <option value="product_type:Cases Covers &amp; Bezels">Cases Covers & Bezels</option>
  1248. <option value="product_type:Connectors">Connectors</option>
  1249. <option value="product_type:DC Jack Cables">DC Jack Cables</option>
  1250. <option value="product_type:Docking Station">Docking Station</option>
  1251. <option value="product_type:Drives">Drives</option>
  1252. <option value="product_type:Fans">Fans</option>
  1253. <option value="product_type:Hard Drive Brackets">Hard Drive Brackets</option>
  1254. <option value="product_type:Hard Drive Disk Caddy">Hard Drive Disk Caddy</option>
  1255. <option value="product_type:Hard Drives">Hard Drives</option>
  1256. <option value="product_type:Hinges">Hinges</option>
  1257. <option value="product_type:Keyboards">Keyboards</option>
  1258. <option value="product_type:Memory">Memory</option>
  1259. <option value="product_type:Misc">Misc</option>
  1260. <option value="product_type:Motherboards">Motherboards</option>
  1261. <option value="product_type:Network Cards">Network Cards</option>
  1262. <option value="product_type:Optical Cables">Optical Cables</option>
  1263. <option value="product_type:Optical Drives">Optical Drives</option>
  1264. <option value="product_type:Palmrests">Palmrests</option>
  1265. <option value="product_type:Parts">Parts</option>
  1266. <option value="product_type:Phone Parts">Phone Parts</option>
  1267. <option value="product_type:Power Supplies">Power Supplies</option>
  1268. <option value="product_type:POWER SUPPLY">POWER SUPPLY</option>
  1269. <option value="product_type:Printer Parts">Printer Parts</option>
  1270. <option value="product_type:Screens">Screens</option>
  1271. <option value="product_type:Screens - Touch Digitizers">Screens - Touch Digitizers</option>
  1272. <option value="product_type:Screws">Screws</option>
  1273. <option value="product_type:Server Parts">Server Parts</option>
  1274. <option value="product_type:Short Low Profile Bracket">Short Low Profile Bracket</option>
  1275. <option value="product_type:Speakers">Speakers</option>
  1276. <option value="product_type:Tablet Parts">Tablet Parts</option>
  1277. <option value="product_type:Touchpads">Touchpads</option>
  1278. <option value="product_type:UpCart - Shipping Protection">UpCart - Shipping Protection</option>
  1279. <option value="product_type:Wireless Mouse Receiver">Wireless Mouse Receiver</option>
  1280.            
  1281.          </select>
  1282.          <label class="live-search-filter-label form-field-select" data-live-search-filter-label>All categories
  1283. </label>
  1284.          <svg
  1285.  aria-hidden="true"
  1286.  focusable="false"
  1287.  role="presentation"
  1288.  width="8"
  1289.  height="6"
  1290.  viewBox="0 0 8 6"
  1291.  fill="none"
  1292.  xmlns="http://www.w3.org/2000/svg"
  1293.  class="icon-chevron-down"
  1294. >
  1295. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1296. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1297. </svg>
  1298.  
  1299.        </span><input
  1300.        class="form-field-input live-search-form-field"
  1301.        type="text"
  1302.        name="q"
  1303.        aria-label="Search"
  1304.        placeholder="What are you looking for?"
  1305.        
  1306.        autocomplete="off"
  1307.        data-live-search-input
  1308.      >
  1309.      <button
  1310.        class="live-search-takeover-cancel"
  1311.        type="button"
  1312.        data-live-search-takeover-cancel>
  1313.        Cancel
  1314.      </button>
  1315.  
  1316.      <button
  1317.        class="live-search-button"
  1318.        type="submit"
  1319.        aria-label="Search"
  1320.        data-live-search-submit
  1321.      >
  1322.        <span class="search-icon search-icon--inactive">
  1323.          <svg
  1324.  aria-hidden="true"
  1325.  focusable="false"
  1326.  role="presentation"
  1327.  xmlns="http://www.w3.org/2000/svg"
  1328.  width="23"
  1329.  height="24"
  1330.  fill="none"
  1331.  viewBox="0 0 23 24"
  1332. >
  1333.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1334.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1335. </svg>
  1336.  
  1337.        </span>
  1338.        <span class="search-icon search-icon--active">
  1339.          <svg
  1340.  aria-hidden="true"
  1341.  focusable="false"
  1342.  role="presentation"
  1343.  width="26"
  1344.  height="26"
  1345.  viewBox="0 0 26 26"
  1346.  xmlns="http://www.w3.org/2000/svg"
  1347. >
  1348.  <g fill-rule="nonzero" fill="currentColor">
  1349.    <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"/>
  1350.  </g>
  1351. </svg>
  1352.        </span>
  1353.      </button>
  1354.    </div>
  1355.  
  1356.    <div class="search-flydown" data-live-search-flydown>
  1357.      <div class="search-flydown--placeholder" data-live-search-placeholder>
  1358.        <div class="search-flydown--product-items">
  1359.          
  1360.            <a class="search-flydown--product search-flydown--product" href="#">
  1361.              
  1362.                <div class="search-flydown--product-image">
  1363.                  <svg class="placeholder--image placeholder--content-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>
  1364.                </div>
  1365.              
  1366.  
  1367.              <div class="search-flydown--product-text">
  1368.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1369.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1370.              </div>
  1371.            </a>
  1372.          
  1373.            <a class="search-flydown--product search-flydown--product" href="#">
  1374.              
  1375.                <div class="search-flydown--product-image">
  1376.                  <svg class="placeholder--image placeholder--content-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>
  1377.                </div>
  1378.              
  1379.  
  1380.              <div class="search-flydown--product-text">
  1381.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1382.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1383.              </div>
  1384.            </a>
  1385.          
  1386.            <a class="search-flydown--product search-flydown--product" href="#">
  1387.              
  1388.                <div class="search-flydown--product-image">
  1389.                  <svg class="placeholder--image placeholder--content-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>
  1390.                </div>
  1391.              
  1392.  
  1393.              <div class="search-flydown--product-text">
  1394.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1395.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1396.              </div>
  1397.            </a>
  1398.          
  1399.        </div>
  1400.      </div>
  1401.  
  1402.      <div
  1403.        class="
  1404.          search-flydown--results
  1405.          
  1406.        "
  1407.        data-live-search-results
  1408.      ></div>
  1409.  
  1410.      
  1411.    </div>
  1412.  </form>
  1413. </div>
  1414.  
  1415.  
  1416.      
  1417.    </div>
  1418.  
  1419.    <div class="site-header-right">
  1420.      <ul class="site-header-actions" data-header-actions>
  1421.  
  1422.    
  1423.      <li class="site-header-actions__account-link">
  1424.        <a
  1425.          class="site-header_account-link-anchor"
  1426.          href="/account/login"
  1427.        >
  1428.          <span class="site-header__account-icon">
  1429.            
  1430.  
  1431.  
  1432.    <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>                                                                                                                
  1433.  
  1434.          </span>
  1435.          
  1436.          <span class="site-header_account-link-text">
  1437.            Login
  1438.          </span>
  1439.        </a>
  1440.      </li>
  1441.    
  1442.  
  1443. </ul>
  1444.  
  1445.  
  1446.      <div class="site-header-cart">
  1447.        <a class="site-header-cart--button" href="/cart">
  1448.          <span
  1449.            class="site-header-cart--count "
  1450.            data-header-cart-count="">
  1451.          </span>
  1452.          <span class="site-header-cart-icon site-header-cart-icon--svg">
  1453.            
  1454.              
  1455.  
  1456.  
  1457.            <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>                                                                                                        
  1458.  
  1459.            
  1460.          </span>
  1461.          <span class="visually-hidden">View cart</span>
  1462.        </a>
  1463.      </div>
  1464.    </div>
  1465.  </div>
  1466.  
  1467.  <div
  1468.    class="
  1469.      site-navigation-wrapper
  1470.      
  1471.        site-navigation--has-actions
  1472.      
  1473.      
  1474.        site-header--full-width
  1475.      
  1476.    "
  1477.    data-site-navigation
  1478.    id="site-header-nav"
  1479.  >
  1480.    <nav
  1481.      class="site-navigation"
  1482.      aria-label="Main"
  1483.    >
  1484.      
  1485.  
  1486.  
  1487.  
  1488.  
  1489. <ul
  1490.  class="navmenu navmenu-depth-1"
  1491.  data-navmenu
  1492.  aria-label="Main Menu 02"
  1493. >
  1494.  
  1495.    
  1496.    
  1497.  
  1498.    
  1499.    
  1500.    
  1501.    
  1502. <li
  1503.      class="navmenu-item              navmenu-basic__item                  navmenu-id-home"
  1504.      
  1505.      
  1506.      
  1507.    >
  1508.      
  1509.        <a
  1510.      
  1511.        class="
  1512.          navmenu-link
  1513.          navmenu-link-depth-1
  1514.          
  1515.          navmenu-link-active
  1516.        "
  1517.        
  1518.          href="/"
  1519.        
  1520.      >
  1521.        Home
  1522.        
  1523.      
  1524.        </a>
  1525.      
  1526.  
  1527.      
  1528.      </details>
  1529.    </li>
  1530.  
  1531.    
  1532.    
  1533.  
  1534.    
  1535.    
  1536.    
  1537.    
  1538. <li
  1539.      class="navmenu-item                    navmenu-item-parent                  navmenu-meganav__item-parent                    navmenu-id-shop"
  1540.      
  1541.        data-navmenu-meganav-trigger
  1542.        data-navmenu-meganav-type="multi-column-menu"
  1543.      
  1544.      data-navmenu-parent
  1545.      
  1546.    >
  1547.      
  1548.        <details data-navmenu-details>
  1549.        <summary
  1550.      
  1551.        class="
  1552.          navmenu-link
  1553.          navmenu-link-depth-1
  1554.          navmenu-link-parent
  1555.          
  1556.        "
  1557.        
  1558.          aria-haspopup="true"
  1559.          aria-expanded="false"
  1560.          data-href="/collections/all"
  1561.        
  1562.      >
  1563.        Shop
  1564.        
  1565.          <span
  1566.            class="navmenu-icon navmenu-icon-depth-1"
  1567.            data-navmenu-trigger
  1568.          >
  1569.            <svg
  1570.  aria-hidden="true"
  1571.  focusable="false"
  1572.  role="presentation"
  1573.  width="8"
  1574.  height="6"
  1575.  viewBox="0 0 8 6"
  1576.  fill="none"
  1577.  xmlns="http://www.w3.org/2000/svg"
  1578.  class="icon-chevron-down"
  1579. >
  1580. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1581. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1582. </svg>
  1583.  
  1584.          </span>
  1585.        
  1586.      
  1587.        </summary>
  1588.      
  1589.  
  1590.      
  1591.        
  1592.            
  1593.  
  1594.  
  1595.  
  1596.  
  1597.  
  1598.  
  1599.  
  1600. <div
  1601.  class="navmenu-submenu  navmenu-meganav  navmenu-meganav--desktop"
  1602.  data-navmenu-submenu
  1603.  data-meganav-menu
  1604.  data-meganav-id="3b13d0a4-b646-40a2-af69-91c68056aced"
  1605. >
  1606.  <div class="navmenu-meganav-wrapper navmenu-multi-column-items">
  1607.    <ul class="navmenu navmenu-depth-2 multi-column-count-5">
  1608.      
  1609.        
  1610.          <li class="navmenu-item">
  1611.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1612.              Laptop Components
  1613.            </a>
  1614.            <ul>
  1615.            
  1616.              <li class="navmenu-item">
  1617.                <a href="/collections/ac-adapters" class="navmenu-link">
  1618.                  AC Adapters
  1619.                </a>
  1620.              </li>
  1621.            
  1622.              <li class="navmenu-item">
  1623.                <a href="/collections/batteries" class="navmenu-link">
  1624.                  Batteries
  1625.                </a>
  1626.              </li>
  1627.            
  1628.              <li class="navmenu-item">
  1629.                <a href="/collections/cases-covers-bezels" class="navmenu-link">
  1630.                  Bezels Cases & Covers
  1631.                </a>
  1632.              </li>
  1633.            
  1634.              <li class="navmenu-item">
  1635.                <a href="/collections/boards" class="navmenu-link">
  1636.                  Boards
  1637.                </a>
  1638.              </li>
  1639.            
  1640.              <li class="navmenu-item">
  1641.                <a href="/collections/cables" class="navmenu-link">
  1642.                  Cables
  1643.                </a>
  1644.              </li>
  1645.            
  1646.              <li class="navmenu-item">
  1647.                <a href="/collections/dc-jack-cables" class="navmenu-link">
  1648.                  DC Jack Cables
  1649.                </a>
  1650.              </li>
  1651.            
  1652.              <li class="navmenu-item">
  1653.                <a href="/collections/fans" class="navmenu-link">
  1654.                  Fans
  1655.                </a>
  1656.              </li>
  1657.            
  1658.              <li class="navmenu-item">
  1659.                <a href="/collections/hard-drive-brackets" class="navmenu-link">
  1660.                  Hard Drive Brackets
  1661.                </a>
  1662.              </li>
  1663.            
  1664.              <li class="navmenu-item">
  1665.                <a href="/collections/laptop-hard-drive" class="navmenu-link">
  1666.                  Hard Drives
  1667.                </a>
  1668.              </li>
  1669.            
  1670.              <li class="navmenu-item">
  1671.                <a href="/collections/laptop-case-parts" class="navmenu-link">
  1672.                  - Laptop Case Parts
  1673.                </a>
  1674.              </li>
  1675.            
  1676.              <li class="navmenu-item">
  1677.                <a href="/collections/hinges" class="navmenu-link">
  1678.                  Hinges
  1679.                </a>
  1680.              </li>
  1681.            
  1682.              <li class="navmenu-item">
  1683.                <a href="/collections/laptop-case" class="navmenu-link">
  1684.                  Laptop Case
  1685.                </a>
  1686.              </li>
  1687.            
  1688.              <li class="navmenu-item">
  1689.                <a href="/collections/laptop-cover" class="navmenu-link">
  1690.                  Laptop Cover
  1691.                </a>
  1692.              </li>
  1693.            
  1694.              <li class="navmenu-item">
  1695.                <a href="/collections/thermal-printer" class="navmenu-link">
  1696.                  Thermal Printer
  1697.                </a>
  1698.              </li>
  1699.            
  1700.            </ul>
  1701.          </li>
  1702.        
  1703.      
  1704.        
  1705.          <li class="navmenu-item">
  1706.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1707.              .....
  1708.            </a>
  1709.            <ul>
  1710.            
  1711.              <li class="navmenu-item">
  1712.                <a href="/collections/keyboards-1" class="navmenu-link">
  1713.                  Keyboards
  1714.                </a>
  1715.              </li>
  1716.            
  1717.              <li class="navmenu-item">
  1718.                <a href="/collections/acer-keyboard" class="navmenu-link">
  1719.                  - Acer keyboard
  1720.                </a>
  1721.              </li>
  1722.            
  1723.              <li class="navmenu-item">
  1724.                <a href="/collections/asus-keyboard" class="navmenu-link">
  1725.                  - Asus keyboards
  1726.                </a>
  1727.              </li>
  1728.            
  1729.              <li class="navmenu-item">
  1730.                <a href="/collections/dell-keyboard" class="navmenu-link">
  1731.                  - Dell keyboard
  1732.                </a>
  1733.              </li>
  1734.            
  1735.              <li class="navmenu-item">
  1736.                <a href="/collections/lenovo-keyboard" class="navmenu-link">
  1737.                  - Lenovo keyboard
  1738.                </a>
  1739.              </li>
  1740.            
  1741.              <li class="navmenu-item">
  1742.                <a href="/collections/hp-keyboard" class="navmenu-link">
  1743.                  - Hp Keyboard
  1744.                </a>
  1745.              </li>
  1746.            
  1747.              <li class="navmenu-item">
  1748.                <a href="/collections/backlit-keyboard" class="navmenu-link">
  1749.                  - Backlit Keyboards
  1750.                </a>
  1751.              </li>
  1752.            
  1753.              <li class="navmenu-item">
  1754.                <a href="/collections/memory" class="navmenu-link">
  1755.                  Memory
  1756.                </a>
  1757.              </li>
  1758.            
  1759.              <li class="navmenu-item">
  1760.                <a href="/collections/motherboards" class="navmenu-link">
  1761.                  Motherboards
  1762.                </a>
  1763.              </li>
  1764.            
  1765.              <li class="navmenu-item">
  1766.                <a href="/collections/optical-drives" class="navmenu-link">
  1767.                  Optical Drives
  1768.                </a>
  1769.              </li>
  1770.            
  1771.              <li class="navmenu-item">
  1772.                <a href="/collections/power-supplies" class="navmenu-link">
  1773.                  Power Supplies
  1774.                </a>
  1775.              </li>
  1776.            
  1777.              <li class="navmenu-item">
  1778.                <a href="/collections/screens" class="navmenu-link">
  1779.                  Screens
  1780.                </a>
  1781.              </li>
  1782.            
  1783.              <li class="navmenu-item">
  1784.                <a href="/collections/touch-screen-laptop" class="navmenu-link">
  1785.                  - Touch Screen Laptop
  1786.                </a>
  1787.              </li>
  1788.            
  1789.              <li class="navmenu-item">
  1790.                <a href="/collections/screens-touch-digitizers" class="navmenu-link">
  1791.                  Screens - Touch Digitizers
  1792.                </a>
  1793.              </li>
  1794.            
  1795.              <li class="navmenu-item">
  1796.                <a href="/collections/speakers" class="navmenu-link">
  1797.                  Speakers
  1798.                </a>
  1799.              </li>
  1800.            
  1801.              <li class="navmenu-item">
  1802.                <a href="/collections/touchpads" class="navmenu-link">
  1803.                  Touchpads
  1804.                </a>
  1805.              </li>
  1806.            
  1807.            </ul>
  1808.          </li>
  1809.        
  1810.      
  1811.        
  1812.          <li class="navmenu-item">
  1813.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1814.              Other Components
  1815.            </a>
  1816.            <ul>
  1817.            
  1818.              <li class="navmenu-item">
  1819.                <a href="/collections/accessories" class="navmenu-link">
  1820.                  Accessories
  1821.                </a>
  1822.              </li>
  1823.            
  1824.              <li class="navmenu-item">
  1825.                <a href="/collections/phone-parts" class="navmenu-link">
  1826.                  Phone Parts
  1827.                </a>
  1828.              </li>
  1829.            
  1830.              <li class="navmenu-item">
  1831.                <a href="/collections/printer-parts" class="navmenu-link">
  1832.                  Printer Parts
  1833.                </a>
  1834.              </li>
  1835.            
  1836.              <li class="navmenu-item">
  1837.                <a href="/collections/server-parts" class="navmenu-link">
  1838.                  Server Parts
  1839.                </a>
  1840.              </li>
  1841.            
  1842.              <li class="navmenu-item">
  1843.                <a href="/collections/tablet-parts" class="navmenu-link">
  1844.                  Tablet Parts
  1845.                </a>
  1846.              </li>
  1847.            
  1848.            </ul>
  1849.          </li>
  1850.        
  1851.      
  1852.    </ul>
  1853.  </div>
  1854. </div>
  1855.  
  1856.          
  1857.      
  1858.      </details>
  1859.    </li>
  1860.  
  1861.    
  1862.    
  1863.  
  1864.    
  1865.    
  1866.    
  1867.    
  1868. <li
  1869.      class="navmenu-item              navmenu-basic__item                  navmenu-id-about-us"
  1870.      
  1871.      
  1872.      
  1873.    >
  1874.      
  1875.        <a
  1876.      
  1877.        class="
  1878.          navmenu-link
  1879.          navmenu-link-depth-1
  1880.          
  1881.          
  1882.        "
  1883.        
  1884.          href="/pages/about-us"
  1885.        
  1886.      >
  1887.        About Us
  1888.        
  1889.      
  1890.        </a>
  1891.      
  1892.  
  1893.      
  1894.      </details>
  1895.    </li>
  1896.  
  1897.    
  1898.    
  1899.  
  1900.    
  1901.    
  1902.    
  1903.    
  1904. <li
  1905.      class="navmenu-item              navmenu-basic__item                  navmenu-id-repair-centers"
  1906.      
  1907.      
  1908.      
  1909.    >
  1910.      
  1911.        <a
  1912.      
  1913.        class="
  1914.          navmenu-link
  1915.          navmenu-link-depth-1
  1916.          
  1917.          
  1918.        "
  1919.        
  1920.          href="/pages/store-locator"
  1921.        
  1922.      >
  1923.        Repair Centers
  1924.        
  1925.      
  1926.        </a>
  1927.      
  1928.  
  1929.      
  1930.      </details>
  1931.    </li>
  1932.  
  1933.    
  1934.    
  1935.  
  1936.    
  1937.    
  1938.    
  1939.    
  1940. <li
  1941.      class="navmenu-item              navmenu-basic__item                  navmenu-id-parts-request"
  1942.      
  1943.      
  1944.      
  1945.    >
  1946.      
  1947.        <a
  1948.      
  1949.        class="
  1950.          navmenu-link
  1951.          navmenu-link-depth-1
  1952.          
  1953.          
  1954.        "
  1955.        
  1956.          href="/pages/part-request"
  1957.        
  1958.      >
  1959.        Parts Request
  1960.        
  1961.      
  1962.        </a>
  1963.      
  1964.  
  1965.      
  1966.      </details>
  1967.    </li>
  1968.  
  1969.    
  1970.    
  1971.  
  1972.    
  1973.    
  1974.    
  1975.    
  1976. <li
  1977.      class="navmenu-item              navmenu-basic__item                  navmenu-id-shipping"
  1978.      
  1979.      
  1980.      
  1981.    >
  1982.      
  1983.        <a
  1984.      
  1985.        class="
  1986.          navmenu-link
  1987.          navmenu-link-depth-1
  1988.          
  1989.          
  1990.        "
  1991.        
  1992.          href="/pages/shipping"
  1993.        
  1994.      >
  1995.        Shipping
  1996.        
  1997.      
  1998.        </a>
  1999.      
  2000.  
  2001.      
  2002.      </details>
  2003.    </li>
  2004.  
  2005.    
  2006.    
  2007.  
  2008.    
  2009.    
  2010.    
  2011.    
  2012. <li
  2013.      class="navmenu-item              navmenu-basic__item                  navmenu-id-francais"
  2014.      
  2015.      
  2016.      
  2017.    >
  2018.      
  2019.        <a
  2020.      
  2021.        class="
  2022.          navmenu-link
  2023.          navmenu-link-depth-1
  2024.          
  2025.          
  2026.        "
  2027.        
  2028.          href="/pages/francais"
  2029.        
  2030.      >
  2031.        Français
  2032.        
  2033.      
  2034.        </a>
  2035.      
  2036.  
  2037.      
  2038.      </details>
  2039.    </li>
  2040.  
  2041. </ul>
  2042.  
  2043.  
  2044.      
  2045.    </nav>
  2046.  </div>
  2047.  
  2048.  <div class="site-mobile-nav" id="site-mobile-nav" data-mobile-nav tabindex="0">
  2049.  <div class="mobile-nav-panel" data-mobile-nav-panel>
  2050.  
  2051.    <ul class="site-header-actions" data-header-actions>
  2052.  
  2053.    
  2054.      <li class="site-header-actions__account-link">
  2055.        <a
  2056.          class="site-header_account-link-anchor"
  2057.          href="/account/login"
  2058.        >
  2059.          <span class="site-header__account-icon">
  2060.            
  2061.  
  2062.  
  2063.    <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>                                                                                                                
  2064.  
  2065.          </span>
  2066.          
  2067.          <span class="site-header_account-link-text">
  2068.            Login
  2069.          </span>
  2070.        </a>
  2071.      </li>
  2072.    
  2073.  
  2074. </ul>
  2075.  
  2076.  
  2077.    <a
  2078.      class="mobile-nav-close"
  2079.      href="#site-header-nav"
  2080.      data-mobile-nav-close>
  2081.      <svg
  2082.  aria-hidden="true"
  2083.  focusable="false"
  2084.  role="presentation"
  2085.  xmlns="http://www.w3.org/2000/svg"
  2086.  width="13"
  2087.  height="13"
  2088.  viewBox="0 0 13 13"
  2089. >
  2090.  <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"/>
  2091. </svg>
  2092.      <span class="visually-hidden">Close</span>
  2093.    </a>
  2094.  
  2095.    <div class="mobile-nav-content" data-mobile-nav-content>
  2096.      
  2097.  
  2098.  
  2099.  
  2100.  
  2101. <ul
  2102.  class="navmenu navmenu-depth-1"
  2103.  data-navmenu
  2104.  aria-label="Main Menu 02"
  2105. >
  2106.  
  2107.    
  2108.    
  2109.  
  2110.    
  2111.    
  2112.    
  2113. <li
  2114.      class="navmenu-item            navmenu-id-home"
  2115.      
  2116.    >
  2117.      <a
  2118.        class="navmenu-link  navmenu-link-active"
  2119.        href="/"
  2120.        
  2121.      >
  2122.        Home
  2123.      </a>
  2124.  
  2125.      
  2126.  
  2127.      
  2128.      
  2129.  
  2130.      
  2131.  
  2132.      
  2133.    </li>
  2134.  
  2135.    
  2136.    
  2137.  
  2138.    
  2139.    
  2140.    
  2141. <li
  2142.      class="navmenu-item      navmenu-item-parent      navmenu-id-shop"
  2143.      data-navmenu-parent
  2144.    >
  2145.      <a
  2146.        class="navmenu-link navmenu-link-parent "
  2147.        href="/collections/all"
  2148.        
  2149.          aria-haspopup="true"
  2150.          aria-expanded="false"
  2151.        
  2152.      >
  2153.        Shop
  2154.      </a>
  2155.  
  2156.      
  2157.        
  2158.  
  2159.  
  2160.  
  2161. <button
  2162.  class="navmenu-button"
  2163.  data-navmenu-trigger
  2164.  aria-expanded="false"
  2165. >
  2166.  <div class="navmenu-button-wrapper" tabindex="-1">
  2167.    <span class="navmenu-icon ">
  2168.      <svg
  2169.  aria-hidden="true"
  2170.  focusable="false"
  2171.  role="presentation"
  2172.  width="8"
  2173.  height="6"
  2174.  viewBox="0 0 8 6"
  2175.  fill="none"
  2176.  xmlns="http://www.w3.org/2000/svg"
  2177.  class="icon-chevron-down"
  2178. >
  2179. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2180. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2181. </svg>
  2182.  
  2183.    </span>
  2184.    <span class="visually-hidden">Shop</span>
  2185.  </div>
  2186. </button>
  2187.  
  2188.      
  2189.  
  2190.      
  2191.      
  2192.  
  2193.      
  2194.        
  2195.  
  2196.  
  2197.  
  2198.  
  2199.  
  2200.  
  2201.  
  2202.  
  2203.  
  2204.  
  2205.  
  2206.  
  2207. <ul
  2208.  class="
  2209.    navmenu
  2210.    navmenu-depth-2
  2211.    navmenu-submenu
  2212.    
  2213.  "
  2214.  data-navmenu
  2215.  data-accordion-content
  2216.  data-navmenu-submenu
  2217.  aria-label="Main Menu 02"
  2218. >
  2219.  
  2220.    
  2221.  
  2222.    
  2223.    
  2224.  
  2225.    
  2226.    
  2227.  
  2228.    
  2229.  
  2230.    
  2231. <li
  2232.        class="navmenu-item        navmenu-item-parent        navmenu-id-laptop-components"
  2233.        data-navmenu-parent
  2234.      >
  2235.        
  2236.          <a
  2237.            href="/collections/all"
  2238.        
  2239.          class="navmenu-link navmenu-link-parent "
  2240.          
  2241.            aria-haspopup="true"
  2242.            aria-expanded="false"
  2243.          
  2244.        >
  2245.          
  2246.          Laptop Components
  2247.  
  2248.        
  2249.          </a>
  2250.        
  2251.  
  2252.        
  2253.          
  2254.  
  2255.  
  2256.  
  2257. <button
  2258.  class="navmenu-button"
  2259.  data-navmenu-trigger
  2260.  aria-expanded="false"
  2261. >
  2262.  <div class="navmenu-button-wrapper" tabindex="-1">
  2263.    <span class="navmenu-icon navmenu-icon-depth-2">
  2264.      <svg
  2265.  aria-hidden="true"
  2266.  focusable="false"
  2267.  role="presentation"
  2268.  width="8"
  2269.  height="6"
  2270.  viewBox="0 0 8 6"
  2271.  fill="none"
  2272.  xmlns="http://www.w3.org/2000/svg"
  2273.  class="icon-chevron-down"
  2274. >
  2275. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2276. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2277. </svg>
  2278.  
  2279.    </span>
  2280.    <span class="visually-hidden">Laptop Components</span>
  2281.  </div>
  2282. </button>
  2283.  
  2284.        
  2285.  
  2286.        
  2287.          
  2288.  
  2289.  
  2290.  
  2291.  
  2292.  
  2293.  
  2294.  
  2295.  
  2296.  
  2297.  
  2298.  
  2299.  
  2300. <ul
  2301.  class="
  2302.    navmenu
  2303.    navmenu-depth-3
  2304.    navmenu-submenu
  2305.    
  2306.  "
  2307.  data-navmenu
  2308.  data-accordion-content
  2309.  data-navmenu-submenu
  2310.  aria-label="Main Menu 02"
  2311. >
  2312.  
  2313.    
  2314.  
  2315.    
  2316.    
  2317.  
  2318.    
  2319.    
  2320.  
  2321.    
  2322.  
  2323.    
  2324.      <li
  2325.        class="navmenu-item navmenu-id-ac-adapters"
  2326.      >
  2327.        <a
  2328.        class="
  2329.          navmenu-link
  2330.          navmenu-link-depth-3
  2331.          
  2332.        "
  2333.        href="/collections/ac-adapters"
  2334.        >
  2335.          
  2336.          AC Adapters
  2337. </a>
  2338.      </li>
  2339.    
  2340.  
  2341.    
  2342.  
  2343.    
  2344.    
  2345.  
  2346.    
  2347.    
  2348.  
  2349.    
  2350.  
  2351.    
  2352.      <li
  2353.        class="navmenu-item navmenu-id-batteries"
  2354.      >
  2355.        <a
  2356.        class="
  2357.          navmenu-link
  2358.          navmenu-link-depth-3
  2359.          
  2360.        "
  2361.        href="/collections/batteries"
  2362.        >
  2363.          
  2364.          Batteries
  2365. </a>
  2366.      </li>
  2367.    
  2368.  
  2369.    
  2370.  
  2371.    
  2372.    
  2373.  
  2374.    
  2375.    
  2376.  
  2377.    
  2378.  
  2379.    
  2380.      <li
  2381.        class="navmenu-item navmenu-id-bezels-cases-covers"
  2382.      >
  2383.        <a
  2384.        class="
  2385.          navmenu-link
  2386.          navmenu-link-depth-3
  2387.          
  2388.        "
  2389.        href="/collections/cases-covers-bezels"
  2390.        >
  2391.          
  2392.          Bezels Cases & Covers
  2393. </a>
  2394.      </li>
  2395.    
  2396.  
  2397.    
  2398.  
  2399.    
  2400.    
  2401.  
  2402.    
  2403.    
  2404.  
  2405.    
  2406.  
  2407.    
  2408.      <li
  2409.        class="navmenu-item navmenu-id-boards"
  2410.      >
  2411.        <a
  2412.        class="
  2413.          navmenu-link
  2414.          navmenu-link-depth-3
  2415.          
  2416.        "
  2417.        href="/collections/boards"
  2418.        >
  2419.          
  2420.          Boards
  2421. </a>
  2422.      </li>
  2423.    
  2424.  
  2425.    
  2426.  
  2427.    
  2428.    
  2429.  
  2430.    
  2431.    
  2432.  
  2433.    
  2434.  
  2435.    
  2436.      <li
  2437.        class="navmenu-item navmenu-id-cables"
  2438.      >
  2439.        <a
  2440.        class="
  2441.          navmenu-link
  2442.          navmenu-link-depth-3
  2443.          
  2444.        "
  2445.        href="/collections/cables"
  2446.        >
  2447.          
  2448.          Cables
  2449. </a>
  2450.      </li>
  2451.    
  2452.  
  2453.    
  2454.  
  2455.    
  2456.    
  2457.  
  2458.    
  2459.    
  2460.  
  2461.    
  2462.  
  2463.    
  2464.      <li
  2465.        class="navmenu-item navmenu-id-dc-jack-cables"
  2466.      >
  2467.        <a
  2468.        class="
  2469.          navmenu-link
  2470.          navmenu-link-depth-3
  2471.          
  2472.        "
  2473.        href="/collections/dc-jack-cables"
  2474.        >
  2475.          
  2476.          DC Jack Cables
  2477. </a>
  2478.      </li>
  2479.    
  2480.  
  2481.    
  2482.  
  2483.    
  2484.    
  2485.  
  2486.    
  2487.    
  2488.  
  2489.    
  2490.  
  2491.    
  2492.      <li
  2493.        class="navmenu-item navmenu-id-fans"
  2494.      >
  2495.        <a
  2496.        class="
  2497.          navmenu-link
  2498.          navmenu-link-depth-3
  2499.          
  2500.        "
  2501.        href="/collections/fans"
  2502.        >
  2503.          
  2504.          Fans
  2505. </a>
  2506.      </li>
  2507.    
  2508.  
  2509.    
  2510.  
  2511.    
  2512.    
  2513.  
  2514.    
  2515.    
  2516.  
  2517.    
  2518.  
  2519.    
  2520.      <li
  2521.        class="navmenu-item navmenu-id-hard-drive-brackets"
  2522.      >
  2523.        <a
  2524.        class="
  2525.          navmenu-link
  2526.          navmenu-link-depth-3
  2527.          
  2528.        "
  2529.        href="/collections/hard-drive-brackets"
  2530.        >
  2531.          
  2532.          Hard Drive Brackets
  2533. </a>
  2534.      </li>
  2535.    
  2536.  
  2537.    
  2538.  
  2539.    
  2540.    
  2541.  
  2542.    
  2543.    
  2544.  
  2545.    
  2546.  
  2547.    
  2548.      <li
  2549.        class="navmenu-item navmenu-id-hard-drives"
  2550.      >
  2551.        <a
  2552.        class="
  2553.          navmenu-link
  2554.          navmenu-link-depth-3
  2555.          
  2556.        "
  2557.        href="/collections/laptop-hard-drive"
  2558.        >
  2559.          
  2560.          Hard Drives
  2561. </a>
  2562.      </li>
  2563.    
  2564.  
  2565.    
  2566.  
  2567.    
  2568.    
  2569.  
  2570.    
  2571.    
  2572.  
  2573.    
  2574.  
  2575.    
  2576.      <li
  2577.        class="navmenu-item navmenu-id-laptop-case-parts"
  2578.      >
  2579.        <a
  2580.        class="
  2581.          navmenu-link
  2582.          navmenu-link-depth-3
  2583.          
  2584.        "
  2585.        href="/collections/laptop-case-parts"
  2586.        >
  2587.          
  2588.          - Laptop Case Parts
  2589. </a>
  2590.      </li>
  2591.    
  2592.  
  2593.    
  2594.  
  2595.    
  2596.    
  2597.  
  2598.    
  2599.    
  2600.  
  2601.    
  2602.  
  2603.    
  2604.      <li
  2605.        class="navmenu-item navmenu-id-hinges"
  2606.      >
  2607.        <a
  2608.        class="
  2609.          navmenu-link
  2610.          navmenu-link-depth-3
  2611.          
  2612.        "
  2613.        href="/collections/hinges"
  2614.        >
  2615.          
  2616.          Hinges
  2617. </a>
  2618.      </li>
  2619.    
  2620.  
  2621.    
  2622.  
  2623.    
  2624.    
  2625.  
  2626.    
  2627.    
  2628.  
  2629.    
  2630.  
  2631.    
  2632.      <li
  2633.        class="navmenu-item navmenu-id-laptop-case"
  2634.      >
  2635.        <a
  2636.        class="
  2637.          navmenu-link
  2638.          navmenu-link-depth-3
  2639.          
  2640.        "
  2641.        href="/collections/laptop-case"
  2642.        >
  2643.          
  2644.          Laptop Case
  2645. </a>
  2646.      </li>
  2647.    
  2648.  
  2649.    
  2650.  
  2651.    
  2652.    
  2653.  
  2654.    
  2655.    
  2656.  
  2657.    
  2658.  
  2659.    
  2660.      <li
  2661.        class="navmenu-item navmenu-id-laptop-cover"
  2662.      >
  2663.        <a
  2664.        class="
  2665.          navmenu-link
  2666.          navmenu-link-depth-3
  2667.          
  2668.        "
  2669.        href="/collections/laptop-cover"
  2670.        >
  2671.          
  2672.          Laptop Cover
  2673. </a>
  2674.      </li>
  2675.    
  2676.  
  2677.    
  2678.  
  2679.    
  2680.    
  2681.  
  2682.    
  2683.    
  2684.  
  2685.    
  2686.  
  2687.    
  2688.      <li
  2689.        class="navmenu-item navmenu-id-thermal-printer"
  2690.      >
  2691.        <a
  2692.        class="
  2693.          navmenu-link
  2694.          navmenu-link-depth-3
  2695.          
  2696.        "
  2697.        href="/collections/thermal-printer"
  2698.        >
  2699.          
  2700.          Thermal Printer
  2701. </a>
  2702.      </li>
  2703.    
  2704.  
  2705. </ul>
  2706.  
  2707.        
  2708.        
  2709.      </li>
  2710.    
  2711.  
  2712.    
  2713.  
  2714.    
  2715.    
  2716.  
  2717.    
  2718.    
  2719.  
  2720.    
  2721.  
  2722.    
  2723. <li
  2724.        class="navmenu-item        navmenu-item-parent        navmenu-id-"
  2725.        data-navmenu-parent
  2726.      >
  2727.        
  2728.          <a
  2729.            href="/collections/all"
  2730.        
  2731.          class="navmenu-link navmenu-link-parent "
  2732.          
  2733.            aria-haspopup="true"
  2734.            aria-expanded="false"
  2735.          
  2736.        >
  2737.          
  2738.          .....
  2739.  
  2740.        
  2741.          </a>
  2742.        
  2743.  
  2744.        
  2745.          
  2746.  
  2747.  
  2748.  
  2749. <button
  2750.  class="navmenu-button"
  2751.  data-navmenu-trigger
  2752.  aria-expanded="false"
  2753. >
  2754.  <div class="navmenu-button-wrapper" tabindex="-1">
  2755.    <span class="navmenu-icon navmenu-icon-depth-2">
  2756.      <svg
  2757.  aria-hidden="true"
  2758.  focusable="false"
  2759.  role="presentation"
  2760.  width="8"
  2761.  height="6"
  2762.  viewBox="0 0 8 6"
  2763.  fill="none"
  2764.  xmlns="http://www.w3.org/2000/svg"
  2765.  class="icon-chevron-down"
  2766. >
  2767. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2768. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2769. </svg>
  2770.  
  2771.    </span>
  2772.    <span class="visually-hidden">.....</span>
  2773.  </div>
  2774. </button>
  2775.  
  2776.        
  2777.  
  2778.        
  2779.          
  2780.  
  2781.  
  2782.  
  2783.  
  2784.  
  2785.  
  2786.  
  2787.  
  2788.  
  2789.  
  2790.  
  2791.  
  2792. <ul
  2793.  class="
  2794.    navmenu
  2795.    navmenu-depth-3
  2796.    navmenu-submenu
  2797.    
  2798.  "
  2799.  data-navmenu
  2800.  data-accordion-content
  2801.  data-navmenu-submenu
  2802.  aria-label="Main Menu 02"
  2803. >
  2804.  
  2805.    
  2806.  
  2807.    
  2808.    
  2809.  
  2810.    
  2811.    
  2812.  
  2813.    
  2814.  
  2815.    
  2816.      <li
  2817.        class="navmenu-item navmenu-id-keyboards"
  2818.      >
  2819.        <a
  2820.        class="
  2821.          navmenu-link
  2822.          navmenu-link-depth-3
  2823.          
  2824.        "
  2825.        href="/collections/keyboards-1"
  2826.        >
  2827.          
  2828.          Keyboards
  2829. </a>
  2830.      </li>
  2831.    
  2832.  
  2833.    
  2834.  
  2835.    
  2836.    
  2837.  
  2838.    
  2839.    
  2840.  
  2841.    
  2842.  
  2843.    
  2844.      <li
  2845.        class="navmenu-item navmenu-id-acer-keyboard"
  2846.      >
  2847.        <a
  2848.        class="
  2849.          navmenu-link
  2850.          navmenu-link-depth-3
  2851.          
  2852.        "
  2853.        href="/collections/acer-keyboard"
  2854.        >
  2855.          
  2856.          - Acer keyboard
  2857. </a>
  2858.      </li>
  2859.    
  2860.  
  2861.    
  2862.  
  2863.    
  2864.    
  2865.  
  2866.    
  2867.    
  2868.  
  2869.    
  2870.  
  2871.    
  2872.      <li
  2873.        class="navmenu-item navmenu-id-asus-keyboards"
  2874.      >
  2875.        <a
  2876.        class="
  2877.          navmenu-link
  2878.          navmenu-link-depth-3
  2879.          
  2880.        "
  2881.        href="/collections/asus-keyboard"
  2882.        >
  2883.          
  2884.          - Asus keyboards
  2885. </a>
  2886.      </li>
  2887.    
  2888.  
  2889.    
  2890.  
  2891.    
  2892.    
  2893.  
  2894.    
  2895.    
  2896.  
  2897.    
  2898.  
  2899.    
  2900.      <li
  2901.        class="navmenu-item navmenu-id-dell-keyboard"
  2902.      >
  2903.        <a
  2904.        class="
  2905.          navmenu-link
  2906.          navmenu-link-depth-3
  2907.          
  2908.        "
  2909.        href="/collections/dell-keyboard"
  2910.        >
  2911.          
  2912.          - Dell keyboard
  2913. </a>
  2914.      </li>
  2915.    
  2916.  
  2917.    
  2918.  
  2919.    
  2920.    
  2921.  
  2922.    
  2923.    
  2924.  
  2925.    
  2926.  
  2927.    
  2928.      <li
  2929.        class="navmenu-item navmenu-id-lenovo-keyboard"
  2930.      >
  2931.        <a
  2932.        class="
  2933.          navmenu-link
  2934.          navmenu-link-depth-3
  2935.          
  2936.        "
  2937.        href="/collections/lenovo-keyboard"
  2938.        >
  2939.          
  2940.          - Lenovo keyboard
  2941. </a>
  2942.      </li>
  2943.    
  2944.  
  2945.    
  2946.  
  2947.    
  2948.    
  2949.  
  2950.    
  2951.    
  2952.  
  2953.    
  2954.  
  2955.    
  2956.      <li
  2957.        class="navmenu-item navmenu-id-hp-keyboard"
  2958.      >
  2959.        <a
  2960.        class="
  2961.          navmenu-link
  2962.          navmenu-link-depth-3
  2963.          
  2964.        "
  2965.        href="/collections/hp-keyboard"
  2966.        >
  2967.          
  2968.          - Hp Keyboard
  2969. </a>
  2970.      </li>
  2971.    
  2972.  
  2973.    
  2974.  
  2975.    
  2976.    
  2977.  
  2978.    
  2979.    
  2980.  
  2981.    
  2982.  
  2983.    
  2984.      <li
  2985.        class="navmenu-item navmenu-id-backlit-keyboards"
  2986.      >
  2987.        <a
  2988.        class="
  2989.          navmenu-link
  2990.          navmenu-link-depth-3
  2991.          
  2992.        "
  2993.        href="/collections/backlit-keyboard"
  2994.        >
  2995.          
  2996.          - Backlit Keyboards
  2997. </a>
  2998.      </li>
  2999.    
  3000.  
  3001.    
  3002.  
  3003.    
  3004.    
  3005.  
  3006.    
  3007.    
  3008.  
  3009.    
  3010.  
  3011.    
  3012.      <li
  3013.        class="navmenu-item navmenu-id-memory"
  3014.      >
  3015.        <a
  3016.        class="
  3017.          navmenu-link
  3018.          navmenu-link-depth-3
  3019.          
  3020.        "
  3021.        href="/collections/memory"
  3022.        >
  3023.          
  3024.          Memory
  3025. </a>
  3026.      </li>
  3027.    
  3028.  
  3029.    
  3030.  
  3031.    
  3032.    
  3033.  
  3034.    
  3035.    
  3036.  
  3037.    
  3038.  
  3039.    
  3040.      <li
  3041.        class="navmenu-item navmenu-id-motherboards"
  3042.      >
  3043.        <a
  3044.        class="
  3045.          navmenu-link
  3046.          navmenu-link-depth-3
  3047.          
  3048.        "
  3049.        href="/collections/motherboards"
  3050.        >
  3051.          
  3052.          Motherboards
  3053. </a>
  3054.      </li>
  3055.    
  3056.  
  3057.    
  3058.  
  3059.    
  3060.    
  3061.  
  3062.    
  3063.    
  3064.  
  3065.    
  3066.  
  3067.    
  3068.      <li
  3069.        class="navmenu-item navmenu-id-optical-drives"
  3070.      >
  3071.        <a
  3072.        class="
  3073.          navmenu-link
  3074.          navmenu-link-depth-3
  3075.          
  3076.        "
  3077.        href="/collections/optical-drives"
  3078.        >
  3079.          
  3080.          Optical Drives
  3081. </a>
  3082.      </li>
  3083.    
  3084.  
  3085.    
  3086.  
  3087.    
  3088.    
  3089.  
  3090.    
  3091.    
  3092.  
  3093.    
  3094.  
  3095.    
  3096.      <li
  3097.        class="navmenu-item navmenu-id-power-supplies"
  3098.      >
  3099.        <a
  3100.        class="
  3101.          navmenu-link
  3102.          navmenu-link-depth-3
  3103.          
  3104.        "
  3105.        href="/collections/power-supplies"
  3106.        >
  3107.          
  3108.          Power Supplies
  3109. </a>
  3110.      </li>
  3111.    
  3112.  
  3113.    
  3114.  
  3115.    
  3116.    
  3117.  
  3118.    
  3119.    
  3120.  
  3121.    
  3122.  
  3123.    
  3124.      <li
  3125.        class="navmenu-item navmenu-id-screens"
  3126.      >
  3127.        <a
  3128.        class="
  3129.          navmenu-link
  3130.          navmenu-link-depth-3
  3131.          
  3132.        "
  3133.        href="/collections/screens"
  3134.        >
  3135.          
  3136.          Screens
  3137. </a>
  3138.      </li>
  3139.    
  3140.  
  3141.    
  3142.  
  3143.    
  3144.    
  3145.  
  3146.    
  3147.    
  3148.  
  3149.    
  3150.  
  3151.    
  3152.      <li
  3153.        class="navmenu-item navmenu-id-touch-screen-laptop"
  3154.      >
  3155.        <a
  3156.        class="
  3157.          navmenu-link
  3158.          navmenu-link-depth-3
  3159.          
  3160.        "
  3161.        href="/collections/touch-screen-laptop"
  3162.        >
  3163.          
  3164.          - Touch Screen Laptop
  3165. </a>
  3166.      </li>
  3167.    
  3168.  
  3169.    
  3170.  
  3171.    
  3172.    
  3173.  
  3174.    
  3175.    
  3176.  
  3177.    
  3178.  
  3179.    
  3180.      <li
  3181.        class="navmenu-item navmenu-id-screens-touch-digitizers"
  3182.      >
  3183.        <a
  3184.        class="
  3185.          navmenu-link
  3186.          navmenu-link-depth-3
  3187.          
  3188.        "
  3189.        href="/collections/screens-touch-digitizers"
  3190.        >
  3191.          
  3192.          Screens - Touch Digitizers
  3193. </a>
  3194.      </li>
  3195.    
  3196.  
  3197.    
  3198.  
  3199.    
  3200.    
  3201.  
  3202.    
  3203.    
  3204.  
  3205.    
  3206.  
  3207.    
  3208.      <li
  3209.        class="navmenu-item navmenu-id-speakers"
  3210.      >
  3211.        <a
  3212.        class="
  3213.          navmenu-link
  3214.          navmenu-link-depth-3
  3215.          
  3216.        "
  3217.        href="/collections/speakers"
  3218.        >
  3219.          
  3220.          Speakers
  3221. </a>
  3222.      </li>
  3223.    
  3224.  
  3225.    
  3226.  
  3227.    
  3228.    
  3229.  
  3230.    
  3231.    
  3232.  
  3233.    
  3234.  
  3235.    
  3236.      <li
  3237.        class="navmenu-item navmenu-id-touchpads"
  3238.      >
  3239.        <a
  3240.        class="
  3241.          navmenu-link
  3242.          navmenu-link-depth-3
  3243.          
  3244.        "
  3245.        href="/collections/touchpads"
  3246.        >
  3247.          
  3248.          Touchpads
  3249. </a>
  3250.      </li>
  3251.    
  3252.  
  3253. </ul>
  3254.  
  3255.        
  3256.        
  3257.      </li>
  3258.    
  3259.  
  3260.    
  3261.  
  3262.    
  3263.    
  3264.  
  3265.    
  3266.    
  3267.  
  3268.    
  3269.  
  3270.    
  3271. <li
  3272.        class="navmenu-item        navmenu-item-parent        navmenu-id-other-components"
  3273.        data-navmenu-parent
  3274.      >
  3275.        
  3276.          <a
  3277.            href="/collections/all"
  3278.        
  3279.          class="navmenu-link navmenu-link-parent "
  3280.          
  3281.            aria-haspopup="true"
  3282.            aria-expanded="false"
  3283.          
  3284.        >
  3285.          
  3286.          Other Components
  3287.  
  3288.        
  3289.          </a>
  3290.        
  3291.  
  3292.        
  3293.          
  3294.  
  3295.  
  3296.  
  3297. <button
  3298.  class="navmenu-button"
  3299.  data-navmenu-trigger
  3300.  aria-expanded="false"
  3301. >
  3302.  <div class="navmenu-button-wrapper" tabindex="-1">
  3303.    <span class="navmenu-icon navmenu-icon-depth-2">
  3304.      <svg
  3305.  aria-hidden="true"
  3306.  focusable="false"
  3307.  role="presentation"
  3308.  width="8"
  3309.  height="6"
  3310.  viewBox="0 0 8 6"
  3311.  fill="none"
  3312.  xmlns="http://www.w3.org/2000/svg"
  3313.  class="icon-chevron-down"
  3314. >
  3315. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3316. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3317. </svg>
  3318.  
  3319.    </span>
  3320.    <span class="visually-hidden">Other Components</span>
  3321.  </div>
  3322. </button>
  3323.  
  3324.        
  3325.  
  3326.        
  3327.          
  3328.  
  3329.  
  3330.  
  3331.  
  3332.  
  3333.  
  3334.  
  3335.  
  3336.  
  3337.  
  3338.  
  3339.  
  3340. <ul
  3341.  class="
  3342.    navmenu
  3343.    navmenu-depth-3
  3344.    navmenu-submenu
  3345.    
  3346.  "
  3347.  data-navmenu
  3348.  data-accordion-content
  3349.  data-navmenu-submenu
  3350.  aria-label="Main Menu 02"
  3351. >
  3352.  
  3353.    
  3354.  
  3355.    
  3356.    
  3357.  
  3358.    
  3359.    
  3360.  
  3361.    
  3362.  
  3363.    
  3364.      <li
  3365.        class="navmenu-item navmenu-id-accessories"
  3366.      >
  3367.        <a
  3368.        class="
  3369.          navmenu-link
  3370.          navmenu-link-depth-3
  3371.          
  3372.        "
  3373.        href="/collections/accessories"
  3374.        >
  3375.          
  3376.          Accessories
  3377. </a>
  3378.      </li>
  3379.    
  3380.  
  3381.    
  3382.  
  3383.    
  3384.    
  3385.  
  3386.    
  3387.    
  3388.  
  3389.    
  3390.  
  3391.    
  3392.      <li
  3393.        class="navmenu-item navmenu-id-phone-parts"
  3394.      >
  3395.        <a
  3396.        class="
  3397.          navmenu-link
  3398.          navmenu-link-depth-3
  3399.          
  3400.        "
  3401.        href="/collections/phone-parts"
  3402.        >
  3403.          
  3404.          Phone Parts
  3405. </a>
  3406.      </li>
  3407.    
  3408.  
  3409.    
  3410.  
  3411.    
  3412.    
  3413.  
  3414.    
  3415.    
  3416.  
  3417.    
  3418.  
  3419.    
  3420.      <li
  3421.        class="navmenu-item navmenu-id-printer-parts"
  3422.      >
  3423.        <a
  3424.        class="
  3425.          navmenu-link
  3426.          navmenu-link-depth-3
  3427.          
  3428.        "
  3429.        href="/collections/printer-parts"
  3430.        >
  3431.          
  3432.          Printer Parts
  3433. </a>
  3434.      </li>
  3435.    
  3436.  
  3437.    
  3438.  
  3439.    
  3440.    
  3441.  
  3442.    
  3443.    
  3444.  
  3445.    
  3446.  
  3447.    
  3448.      <li
  3449.        class="navmenu-item navmenu-id-server-parts"
  3450.      >
  3451.        <a
  3452.        class="
  3453.          navmenu-link
  3454.          navmenu-link-depth-3
  3455.          
  3456.        "
  3457.        href="/collections/server-parts"
  3458.        >
  3459.          
  3460.          Server Parts
  3461. </a>
  3462.      </li>
  3463.    
  3464.  
  3465.    
  3466.  
  3467.    
  3468.    
  3469.  
  3470.    
  3471.    
  3472.  
  3473.    
  3474.  
  3475.    
  3476.      <li
  3477.        class="navmenu-item navmenu-id-tablet-parts"
  3478.      >
  3479.        <a
  3480.        class="
  3481.          navmenu-link
  3482.          navmenu-link-depth-3
  3483.          
  3484.        "
  3485.        href="/collections/tablet-parts"
  3486.        >
  3487.          
  3488.          Tablet Parts
  3489. </a>
  3490.      </li>
  3491.    
  3492.  
  3493. </ul>
  3494.  
  3495.        
  3496.        
  3497.      </li>
  3498.    
  3499.  
  3500. </ul>
  3501.  
  3502.      
  3503.  
  3504.      
  3505.    </li>
  3506.  
  3507.    
  3508.    
  3509.  
  3510.    
  3511.    
  3512.    
  3513. <li
  3514.      class="navmenu-item            navmenu-id-about-us"
  3515.      
  3516.    >
  3517.      <a
  3518.        class="navmenu-link  "
  3519.        href="/pages/about-us"
  3520.        
  3521.      >
  3522.        About Us
  3523.      </a>
  3524.  
  3525.      
  3526.  
  3527.      
  3528.      
  3529.  
  3530.      
  3531.  
  3532.      
  3533.    </li>
  3534.  
  3535.    
  3536.    
  3537.  
  3538.    
  3539.    
  3540.    
  3541. <li
  3542.      class="navmenu-item            navmenu-id-repair-centers"
  3543.      
  3544.    >
  3545.      <a
  3546.        class="navmenu-link  "
  3547.        href="/pages/store-locator"
  3548.        
  3549.      >
  3550.        Repair Centers
  3551.      </a>
  3552.  
  3553.      
  3554.  
  3555.      
  3556.      
  3557.  
  3558.      
  3559.  
  3560.      
  3561.    </li>
  3562.  
  3563.    
  3564.    
  3565.  
  3566.    
  3567.    
  3568.    
  3569. <li
  3570.      class="navmenu-item            navmenu-id-parts-request"
  3571.      
  3572.    >
  3573.      <a
  3574.        class="navmenu-link  "
  3575.        href="/pages/part-request"
  3576.        
  3577.      >
  3578.        Parts Request
  3579.      </a>
  3580.  
  3581.      
  3582.  
  3583.      
  3584.      
  3585.  
  3586.      
  3587.  
  3588.      
  3589.    </li>
  3590.  
  3591.    
  3592.    
  3593.  
  3594.    
  3595.    
  3596.    
  3597. <li
  3598.      class="navmenu-item            navmenu-id-shipping"
  3599.      
  3600.    >
  3601.      <a
  3602.        class="navmenu-link  "
  3603.        href="/pages/shipping"
  3604.        
  3605.      >
  3606.        Shipping
  3607.      </a>
  3608.  
  3609.      
  3610.  
  3611.      
  3612.      
  3613.  
  3614.      
  3615.  
  3616.      
  3617.    </li>
  3618.  
  3619.    
  3620.    
  3621.  
  3622.    
  3623.    
  3624.    
  3625. <li
  3626.      class="navmenu-item            navmenu-id-francais"
  3627.      
  3628.    >
  3629.      <a
  3630.        class="navmenu-link  "
  3631.        href="/pages/francais"
  3632.        
  3633.      >
  3634.        Français
  3635.      </a>
  3636.  
  3637.      
  3638.  
  3639.      
  3640.      
  3641.  
  3642.      
  3643.  
  3644.      
  3645.    </li>
  3646.  
  3647. </ul>
  3648.  
  3649.  
  3650.      
  3651.    </div>
  3652.    <div class="utility-bar__mobile-disclosure" data-utility-mobile></div>
  3653.  </div>
  3654.  
  3655.  <div class="mobile-nav-overlay" data-mobile-nav-overlay></div>
  3656. </div>
  3657.  
  3658. </header>
  3659.  
  3660. </div>
  3661. <!-- END sections: header-group -->
  3662.  
  3663.    <div style="--background-color: #fff">
  3664.      
  3665.  
  3666.  
  3667.    </div>
  3668.  
  3669.    <div class="intersection-target" data-header-intersection-target></div>
  3670.    <div class="site-main-dimmer" data-site-main-dimmer></div>
  3671.    <main id="site-main" class="site-main" aria-label="Main content" tabindex="-1">
  3672.      <div id="shopify-section-template--15492296147031__dynamic_slideshow" class="shopify-section slideshow--section">
  3673.  
  3674.  
  3675.  
  3676. <script type="application/pxs-animation-mapping+json">
  3677.  {
  3678.    "blocks": [".slideshow-slide"],
  3679.    "elements": [
  3680.      ".slideshow-slide__heading",
  3681.      ".slideshow-slide__subheading",
  3682.      ".slideshow-slide__text",
  3683.      ".slideshow-slide__button"
  3684.    ]
  3685.  }
  3686. </script>
  3687.  
  3688. <style data-shopify>
  3689.  #shopify-section-template--15492296147031__dynamic_slideshow {
  3690.    --autoplay-interval: 5s;
  3691.  }
  3692.  
  3693.  
  3694.    @media screen and (min-width: 720px) {
  3695.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3696.        height: 55.55555555555556vw;
  3697.      }
  3698.    }
  3699.  
  3700.  
  3701.  
  3702.    @media screen and (max-width: 719px) {
  3703.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3704.        
  3705.          height: 55.55555555555556vw;
  3706.        
  3707.      }
  3708.    }
  3709.  
  3710. </style>
  3711.  
  3712.  
  3713.  
  3714.  
  3715. <script
  3716.  type="application/json"
  3717.  data-section-type="pxs-slideshow"
  3718.  data-section-id="template--15492296147031__dynamic_slideshow"
  3719.  data-section-data
  3720. >
  3721.  {
  3722.    "enable_autoplay": true,
  3723.    "autoplay_interval": 5,
  3724.    "mobile_navigation_adjust": true,
  3725.    "transition_fade": null,
  3726.    "slide_attraction": null,
  3727.    "slide_friction": null,
  3728.    "next_text": "Next slide",
  3729.    "previous_text": "Previous slide"
  3730.  }
  3731. </script>
  3732.  
  3733. <section
  3734.  class="
  3735.    slideshow
  3736.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  3737.  "
  3738.  aria-label="Slideshow"
  3739.  data-autoplay="true"
  3740.  data-autoplay-interval="5"
  3741.  data-banner="false"
  3742.  data-slideshow
  3743. ><div
  3744.    class="slideshow__wrapper "
  3745.    data-slideshow-wrapper
  3746.  >
  3747.  
  3748.  
  3749. <div
  3750.  class="slideshow-slide  "
  3751.  aria-label="Slide 1 of 5"
  3752.  data-text-color="#FFFFFF"
  3753.  tabindex="-1"
  3754.  data-slideshow-slide
  3755.  data-slide-index="0"
  3756.  
  3757. ><div
  3758.      class="
  3759.        slideshow-slide__image-wrapper
  3760.        
  3761.      "
  3762.      data-slide-image-wrapper
  3763.    >
  3764.  
  3765.  
  3766.    <noscript data-rimg-noscript>
  3767.      <img loading="lazy"
  3768.        
  3769.          src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3770.        
  3771.  
  3772.        alt=""
  3773.        data-rimg="noscript"
  3774.        srcset="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850 1x"
  3775.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3776.        style="
  3777.        object-fit:cover;object-position:50.0% 50.0%;
  3778.      
  3779. "
  3780.        
  3781.      >
  3782.    </noscript>
  3783.  
  3784.  
  3785.  <img loading="lazy"
  3786.    
  3787.      src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3788.    
  3789.    alt=""
  3790.  
  3791.    
  3792.      data-rimg="lazy"
  3793.      data-rimg-scale="1"
  3794.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2_1_{size}.jpg?v=1739722850"
  3795.      data-rimg-max="1800x1000"
  3796.      data-rimg-crop="false"
  3797.      
  3798.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3799.    
  3800.  
  3801.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3802.    style="
  3803.        object-fit:cover;object-position:50.0% 50.0%;
  3804.      
  3805. "
  3806.    
  3807.  >
  3808.  
  3809.  
  3810.  
  3811.  <div data-rimg-canvas></div>
  3812.  
  3813.  
  3814. <div
  3815.          class="
  3816.            slideshow-slide__overlay
  3817.            
  3818.          "
  3819.          style="
  3820.            
  3821.              background-color: #000000;
  3822.            
  3823.            opacity: 0.01;
  3824.          "
  3825.        ></div></div><div
  3826.    class="
  3827.      slideshow-slide__content
  3828.      slideshow-slide__content--slide_tJp4ET
  3829.      slideshow-slide__content--text-center
  3830.    "
  3831.    data-slide-content
  3832.  ></div>
  3833. </div>
  3834.  
  3835.  
  3836.  
  3837.  
  3838. <div
  3839.  class="slideshow-slide  "
  3840.  aria-label="Slide 2 of 5"
  3841.  data-text-color="#FFFFFF"
  3842.  tabindex="-1"
  3843.  data-slideshow-slide
  3844.  data-slide-index="1"
  3845.  
  3846. ><div
  3847.      class="
  3848.        slideshow-slide__image-wrapper
  3849.        
  3850.      "
  3851.      data-slide-image-wrapper
  3852.    >
  3853.  
  3854.  
  3855.    <noscript data-rimg-noscript>
  3856.      <img loading="lazy"
  3857.        
  3858.          src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3859.        
  3860.  
  3861.        alt=""
  3862.        data-rimg="noscript"
  3863.        srcset="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692 1x"
  3864.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3865.        style="
  3866.        object-fit:cover;object-position:50.0% 50.0%;
  3867.      
  3868. "
  3869.        
  3870.      >
  3871.    </noscript>
  3872.  
  3873.  
  3874.  <img loading="lazy"
  3875.    
  3876.      src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3877.    
  3878.    alt=""
  3879.  
  3880.    
  3881.      data-rimg="lazy"
  3882.      data-rimg-scale="1"
  3883.      data-rimg-template="//laptopparts.ca/cdn/shop/files/3_1_{size}.jpg?v=1739722692"
  3884.      data-rimg-max="1800x1000"
  3885.      data-rimg-crop="false"
  3886.      
  3887.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3888.    
  3889.  
  3890.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3891.    style="
  3892.        object-fit:cover;object-position:50.0% 50.0%;
  3893.      
  3894. "
  3895.    
  3896.  >
  3897.  
  3898.  
  3899.  
  3900.  <div data-rimg-canvas></div>
  3901.  
  3902.  
  3903. <div
  3904.          class="
  3905.            slideshow-slide__overlay
  3906.            
  3907.          "
  3908.          style="
  3909.            
  3910.              background-color: #000000;
  3911.            
  3912.            opacity: 0.01;
  3913.          "
  3914.        ></div></div><div
  3915.    class="
  3916.      slideshow-slide__content
  3917.      slideshow-slide__content--slide_QztrPf
  3918.      slideshow-slide__content--text-center
  3919.    "
  3920.    data-slide-content
  3921.  ></div>
  3922. </div>
  3923.  
  3924.  
  3925.  
  3926.  
  3927. <div
  3928.  class="slideshow-slide  "
  3929.  aria-label="Slide 3 of 5"
  3930.  data-text-color="#FFFFFF"
  3931.  tabindex="-1"
  3932.  data-slideshow-slide
  3933.  data-slide-index="2"
  3934.  
  3935. ><div
  3936.      class="
  3937.        slideshow-slide__image-wrapper
  3938.        
  3939.      "
  3940.      data-slide-image-wrapper
  3941.    >
  3942.  
  3943.  
  3944.    <noscript data-rimg-noscript>
  3945.      <img loading="lazy"
  3946.        
  3947.          src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  3948.        
  3949.  
  3950.        alt=""
  3951.        data-rimg="noscript"
  3952.        srcset="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085 1x"
  3953.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3954.        style="
  3955.        object-fit:cover;object-position:50.0% 50.0%;
  3956.      
  3957. "
  3958.        
  3959.      >
  3960.    </noscript>
  3961.  
  3962.  
  3963.  <img loading="lazy"
  3964.    
  3965.      src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  3966.    
  3967.    alt=""
  3968.  
  3969.    
  3970.      data-rimg="lazy"
  3971.      data-rimg-scale="1"
  3972.      data-rimg-template="//laptopparts.ca/cdn/shop/files/1_1_{size}.jpg?v=1739723085"
  3973.      data-rimg-max="1800x1000"
  3974.      data-rimg-crop="false"
  3975.      
  3976.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3977.    
  3978.  
  3979.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3980.    style="
  3981.        object-fit:cover;object-position:50.0% 50.0%;
  3982.      
  3983. "
  3984.    
  3985.  >
  3986.  
  3987.  
  3988.  
  3989.  <div data-rimg-canvas></div>
  3990.  
  3991.  
  3992. <div
  3993.          class="
  3994.            slideshow-slide__overlay
  3995.            
  3996.          "
  3997.          style="
  3998.            
  3999.              background-color: #000000;
  4000.            
  4001.            opacity: 0.01;
  4002.          "
  4003.        ></div></div><div
  4004.    class="
  4005.      slideshow-slide__content
  4006.      slideshow-slide__content--slide_UPfjBG
  4007.      slideshow-slide__content--text-center
  4008.    "
  4009.    data-slide-content
  4010.  ></div>
  4011. </div>
  4012.  
  4013.  
  4014.  
  4015.  
  4016. <div
  4017.  class="slideshow-slide  "
  4018.  aria-label="Slide 4 of 5"
  4019.  data-text-color="#ffffff"
  4020.  tabindex="-1"
  4021.  data-slideshow-slide
  4022.  data-slide-index="3"
  4023.  
  4024. ><div
  4025.      class="
  4026.        slideshow-slide__image-wrapper
  4027.        
  4028.      "
  4029.      data-slide-image-wrapper
  4030.    >
  4031.  
  4032.  
  4033.    <noscript data-rimg-noscript>
  4034.      <img loading="lazy"
  4035.        
  4036.          src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4037.        
  4038.  
  4039.        alt=""
  4040.        data-rimg="noscript"
  4041.        srcset="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350 1x"
  4042.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4043.        style="
  4044.        object-fit:cover;object-position:50.0% 50.0%;
  4045.      
  4046. "
  4047.        
  4048.      >
  4049.    </noscript>
  4050.  
  4051.  
  4052.  <img loading="lazy"
  4053.    
  4054.      src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4055.    
  4056.    alt=""
  4057.  
  4058.    
  4059.      data-rimg="lazy"
  4060.      data-rimg-scale="1"
  4061.      data-rimg-template="//laptopparts.ca/cdn/shop/files/5_{size}.jpg?v=1739723350"
  4062.      data-rimg-max="1800x1000"
  4063.      data-rimg-crop="false"
  4064.      
  4065.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4066.    
  4067.  
  4068.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4069.    style="
  4070.        object-fit:cover;object-position:50.0% 50.0%;
  4071.      
  4072. "
  4073.    
  4074.  >
  4075.  
  4076.  
  4077.  
  4078.  <div data-rimg-canvas></div>
  4079.  
  4080.  
  4081. <div
  4082.          class="
  4083.            slideshow-slide__overlay
  4084.            
  4085.          "
  4086.          style="
  4087.            
  4088.              background-color: #000000;
  4089.            
  4090.            opacity: 0.01;
  4091.          "
  4092.        ></div></div><div
  4093.    class="
  4094.      slideshow-slide__content
  4095.      slideshow-slide__content--slide_MbNDbx
  4096.      slideshow-slide__content--text-center
  4097.    "
  4098.    data-slide-content
  4099.  ></div>
  4100. </div>
  4101.  
  4102.  
  4103.  
  4104.  
  4105. <div
  4106.  class="slideshow-slide  "
  4107.  aria-label="Slide 5 of 5"
  4108.  data-text-color="#FFFFFF"
  4109.  tabindex="-1"
  4110.  data-slideshow-slide
  4111.  data-slide-index="4"
  4112.  
  4113. ><div
  4114.      class="
  4115.        slideshow-slide__image-wrapper
  4116.        
  4117.      "
  4118.      data-slide-image-wrapper
  4119.    >
  4120.  
  4121.  
  4122.    <noscript data-rimg-noscript>
  4123.      <img loading="lazy"
  4124.        
  4125.          src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4126.        
  4127.  
  4128.        alt=""
  4129.        data-rimg="noscript"
  4130.        srcset="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234 1x"
  4131.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4132.        style="
  4133.        object-fit:cover;object-position:50.0% 50.0%;
  4134.      
  4135. "
  4136.        
  4137.      >
  4138.    </noscript>
  4139.  
  4140.  
  4141.  <img loading="lazy"
  4142.    
  4143.      src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4144.    
  4145.    alt=""
  4146.  
  4147.    
  4148.      data-rimg="lazy"
  4149.      data-rimg-scale="1"
  4150.      data-rimg-template="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_{size}.jpg?v=1739723234"
  4151.      data-rimg-max="1800x1000"
  4152.      data-rimg-crop="false"
  4153.      
  4154.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4155.    
  4156.  
  4157.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4158.    style="
  4159.        object-fit:cover;object-position:50.0% 50.0%;
  4160.      
  4161. "
  4162.    
  4163.  >
  4164.  
  4165.  
  4166.  
  4167.  <div data-rimg-canvas></div>
  4168.  
  4169.  
  4170. <div
  4171.          class="
  4172.            slideshow-slide__overlay
  4173.            
  4174.          "
  4175.          style="
  4176.            
  4177.              background-color: #000000;
  4178.            
  4179.            opacity: 0.01;
  4180.          "
  4181.        ></div></div><div
  4182.    class="
  4183.      slideshow-slide__content
  4184.      slideshow-slide__content--slide_eGUxJ7
  4185.      slideshow-slide__content--text-center
  4186.    "
  4187.    data-slide-content
  4188.  ></div>
  4189. </div>
  4190.  
  4191. </div><ol
  4192.      class="slideshow-pagination"
  4193.      data-slideshow-pagination
  4194.    ><li class="slideshow-pagination__dot">
  4195.          <button
  4196.            class="slideshow-pagination__button"
  4197.            data-selected="true"
  4198.            data-slide-button="0"
  4199.          >
  4200.            
  4201.              
  4202.    <div class="circle-timer">
  4203.      <svg class="circle-timer__svg">
  4204.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4205.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4206.      </svg>
  4207.    </div>
  4208.  
  4209.            
  4210.            <span class="visually-hidden">Slide 1</span>
  4211.          </button>
  4212.        </li><li class="slideshow-pagination__dot">
  4213.          <button
  4214.            class="slideshow-pagination__button"
  4215.            data-selected="false"
  4216.            data-slide-button="1"
  4217.          >
  4218.            
  4219.              
  4220.    <div class="circle-timer">
  4221.      <svg class="circle-timer__svg">
  4222.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4223.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4224.      </svg>
  4225.    </div>
  4226.  
  4227.            
  4228.            <span class="visually-hidden">Slide 2</span>
  4229.          </button>
  4230.        </li><li class="slideshow-pagination__dot">
  4231.          <button
  4232.            class="slideshow-pagination__button"
  4233.            data-selected="false"
  4234.            data-slide-button="2"
  4235.          >
  4236.            
  4237.              
  4238.    <div class="circle-timer">
  4239.      <svg class="circle-timer__svg">
  4240.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4241.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4242.      </svg>
  4243.    </div>
  4244.  
  4245.            
  4246.            <span class="visually-hidden">Slide 3</span>
  4247.          </button>
  4248.        </li><li class="slideshow-pagination__dot">
  4249.          <button
  4250.            class="slideshow-pagination__button"
  4251.            data-selected="false"
  4252.            data-slide-button="3"
  4253.          >
  4254.            
  4255.              
  4256.    <div class="circle-timer">
  4257.      <svg class="circle-timer__svg">
  4258.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4259.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4260.      </svg>
  4261.    </div>
  4262.  
  4263.            
  4264.            <span class="visually-hidden">Slide 4</span>
  4265.          </button>
  4266.        </li><li class="slideshow-pagination__dot">
  4267.          <button
  4268.            class="slideshow-pagination__button"
  4269.            data-selected="false"
  4270.            data-slide-button="4"
  4271.          >
  4272.            
  4273.              
  4274.    <div class="circle-timer">
  4275.      <svg class="circle-timer__svg">
  4276.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4277.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4278.      </svg>
  4279.    </div>
  4280.  
  4281.            
  4282.            <span class="visually-hidden">Slide 5</span>
  4283.          </button>
  4284.        </li></ol><div
  4285.    class="slideshow__current-slide visually-hidden"
  4286.    aria-live="polite"
  4287.    aria-atomic="true"
  4288.    data-slide-counter
  4289.    data-counter-template="Slide {{ count }} of {{ total }}"
  4290.  >
  4291.  </div>
  4292. </section>
  4293.  
  4294.  
  4295.  
  4296. </div><div id="shopify-section-template--15492296147031__dynamic_featured_collection" class="shopify-section featured-collection--section"><script
  4297.  type="application/json"
  4298.  data-section-id="template--15492296147031__dynamic_featured_collection"
  4299.  data-section-type="dynamic-featured-collection"
  4300. ></script>
  4301.  
  4302. <script type="application/pxs-animation-mapping+json">
  4303.  {
  4304.    "blocks": [
  4305.      ".featured-collection__title-card"
  4306.    ],
  4307.    "elements": [
  4308.      ".featured-collection__title-card-pre-heading",
  4309.      ".featured-collection__title-card-heading",
  4310.      ".featured-collection__title-card-button"
  4311.    ]
  4312.  }
  4313. </script>
  4314.  
  4315.  
  4316.  
  4317.  
  4318.  
  4319.  
  4320.  
  4321.  
  4322.  
  4323.  
  4324.  
  4325.  
  4326.  
  4327.  
  4328.  
  4329. <style data-shopify>
  4330.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card {
  4331.    color: ;
  4332.  }
  4333.  
  4334.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card-outer::before {
  4335.    background-color: ;
  4336.    opacity: 0.0;
  4337.  }
  4338.  
  4339.  @media screen and (min-width: 1080px) {
  4340.    #shopify-section-template--15492296147031__dynamic_featured_collection [data-layout="grid"] .featured-collection__title-card {
  4341.      
  4342.    }
  4343.  }
  4344. </style>
  4345.  
  4346.  
  4347.  
  4348.  
  4349.  
  4350.  
  4351.  
  4352.  
  4353.  
  4354.  
  4355.  
  4356.  
  4357.  
  4358.  
  4359.  
  4360. <section class="featured-collection__container" data-featured-collection>
  4361.  
  4362.    <h2 class="home-section--title">
  4363.      Shop The Best Selling
  4364.    </h2>
  4365.  
  4366.  
  4367.  <ul
  4368.    class="home-section--content featured-collection__content"
  4369.    data-content
  4370.    data-layout="slideshow"
  4371.  >
  4372.    
  4373.  
  4374.    
  4375.      
  4376.  
  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. <li
  4413.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  4414.  data-product-item
  4415.  data-product-quickshop-url="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4416.  
  4417. >
  4418.  <div class="productitem" data-product-item-content>
  4419.    
  4420.    
  4421.    
  4422.    
  4423.  
  4424.    
  4425.  
  4426.    
  4427.  
  4428.    <div class="productitem__container">
  4429.      
  4430.  
  4431.      <div class="productitem__image-container">
  4432.        <a target="_blank"
  4433.          class="productitem--image-link"
  4434.          href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4435.          aria-label="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4436.          tabindex="-1"
  4437.          data-product-page-link
  4438.        >
  4439.          <figure
  4440.            class="productitem--image"
  4441.            data-product-item-image
  4442.            
  4443.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  4444.            
  4445.          >
  4446.            
  4447.              
  4448.              
  4449.  
  4450.  
  4451.    <noscript data-rimg-noscript>
  4452.      <img loading="lazy"
  4453.        
  4454.          src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4455.        
  4456.  
  4457.        alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4458.        data-rimg="noscript"
  4459.        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"
  4460.        class="productitem--image-primary"
  4461.        
  4462.        
  4463.      >
  4464.    </noscript>
  4465.  
  4466.  
  4467.  <img loading="lazy"
  4468.    
  4469.      src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4470.    
  4471.    alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4472.  
  4473.    
  4474.      data-rimg="lazy"
  4475.      data-rimg-scale="1"
  4476.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_{size}.jpg?v=1729018033"
  4477.      data-rimg-max="1000x1000"
  4478.      data-rimg-crop="false"
  4479.      
  4480.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  4481.    
  4482.  
  4483.    class="productitem--image-primary"
  4484.    
  4485.    
  4486.  >
  4487.  
  4488.  
  4489.  
  4490.  <div data-rimg-canvas></div>
  4491.  
  4492.  
  4493.            
  4494.  
  4495.            
  4496.  
  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.          </figure>
  4524.        </a>
  4525.      </div><div class="productitem--info">
  4526.        
  4527.          
  4528.  
  4529.        
  4530.  
  4531.        
  4532.          
  4533.  
  4534.  
  4535.  
  4536.  
  4537.  
  4538.  
  4539.  
  4540.  
  4541.  
  4542.  
  4543.  
  4544.  
  4545.  
  4546.  
  4547.  
  4548.  
  4549.  
  4550.  
  4551.  
  4552.  
  4553.  
  4554.  
  4555.  
  4556.  
  4557.  
  4558.  
  4559.  
  4560.  
  4561.  
  4562.  
  4563. <div class="price productitem__price ">
  4564.  
  4565.    <div
  4566.      class="price__compare-at visible"
  4567.      data-price-compare-container
  4568.    >
  4569.  
  4570.      
  4571.        <span class="money price__original" data-price-original></span>
  4572.      
  4573.    </div>
  4574.  
  4575.  
  4576.    
  4577.      
  4578.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4579.        
  4580.          <span class="visually-hidden">Original price</span>
  4581.          <span class="money price__compare-at--min" data-price-compare-min>
  4582.            $137.99
  4583.          </span>
  4584.          -
  4585.          <span class="visually-hidden">Original price</span>
  4586.          <span class="money price__compare-at--max" data-price-compare-max>
  4587.            $137.99
  4588.          </span>
  4589.        
  4590.      </div>
  4591.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4592.        <span class="visually-hidden">Original price</span>
  4593.        <span class="money price__compare-at--single" data-price-compare>
  4594.          
  4595.        </span>
  4596.      </div>
  4597.    
  4598.  
  4599.  
  4600.  <div class="price__current price__current--emphasize " data-price-container>
  4601.  
  4602.    
  4603.  
  4604.    
  4605.      
  4606.      
  4607.      <span class="money" data-price>
  4608.        $137.99
  4609.      </span>
  4610.    
  4611.    
  4612.  </div>
  4613.  
  4614.  
  4615.    
  4616.    <div class="price__current--hidden" data-current-price-range-hidden>
  4617.      
  4618.        <span class="money price__current--min" data-price-min>$137.99</span>
  4619.        -
  4620.        <span class="money price__current--max" data-price-max>$137.99</span>
  4621.      
  4622.    </div>
  4623.    <div class="price__current--hidden" data-current-price-hidden>
  4624.      <span class="visually-hidden">Current price</span>
  4625.      <span class="money" data-price>
  4626.        $137.99
  4627.      </span>
  4628.    </div>
  4629.  
  4630.  
  4631.  
  4632.    
  4633.    
  4634.    
  4635.    
  4636.  
  4637.    <div
  4638.      class="
  4639.        productitem__unit-price
  4640.        hidden
  4641.      "
  4642.      data-unit-price
  4643.    >
  4644.      <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>
  4645.    </div>
  4646.  
  4647.  
  4648.  
  4649. </div>
  4650.  
  4651.  
  4652.        
  4653.  
  4654.        <h2 class="productitem--title">
  4655.          <a href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen" data-product-page-link>
  4656.            14 Lcd Screen for Dell Latitude 7480 7490 Laptops - FHD Only B140HAN03.3 KW8T4
  4657.          </a>
  4658.        </h2>
  4659.  
  4660.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  4661.        <div class="star_container 3959626498135"></div>
  4662.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  4663.  
  4664.        
  4665.          
  4666.            <span class="productitem--vendor">
  4667.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  4668.            </span>
  4669.          
  4670.        
  4671.  
  4672.        
  4673.  
  4674.        
  4675.          
  4676.            <div class="productitem__stock-level">
  4677.              <!--
  4678.  
  4679.  
  4680.  
  4681.  
  4682.  
  4683.  
  4684.  
  4685. <div class="product-stock-level-wrapper" >
  4686.  
  4687.    <span class="
  4688.  product-stock-level
  4689.  product-stock-level--continue-selling
  4690.  
  4691. ">
  4692.      
  4693.  
  4694.      <span class="product-stock-level__text">
  4695.        
  4696.        <div class="product-stock-level__badge-text">
  4697.          
  4698.  
  4699.    In stock
  4700.  
  4701.  
  4702.        </div>
  4703.      </span>
  4704.    </span>
  4705.  
  4706. </div>
  4707. -->
  4708.              
  4709.  
  4710.  
  4711.    
  4712.      <b style="color:green">In stock</b>
  4713.    
  4714.  
  4715.  
  4716.  
  4717.  
  4718.  
  4719.  
  4720.  
  4721.            </div>
  4722.          
  4723.  
  4724.          
  4725.            
  4726.          
  4727.        
  4728.  
  4729.        
  4730.          <div class="productitem--description">
  4731.            <p>
  4732. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  4733.  
  4734. Compatible Part #s: B140HAN03.3, KW8T4
  4735.  
  4736. Compatible Models:
  4737. Dell Latitude 74...</p>
  4738.  
  4739.            
  4740.              <a
  4741.                href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4742.                class="productitem--link"
  4743.                data-product-page-link
  4744.              >
  4745.                View full details
  4746.              </a>
  4747.            
  4748.          </div>
  4749.        
  4750.      </div>
  4751.  
  4752.      
  4753.        
  4754.          
  4755.          
  4756.          
  4757.  
  4758.          
  4759.          
  4760.  
  4761.          
  4762.  
  4763.          
  4764.  
  4765.          <div class="productitem--actions" data-product-actions>
  4766.            <div class="productitem--listview-price">
  4767.              
  4768.  
  4769.  
  4770.  
  4771.  
  4772.  
  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. <div class="price productitem__price ">
  4799.  
  4800.    <div
  4801.      class="price__compare-at visible"
  4802.      data-price-compare-container
  4803.    >
  4804.  
  4805.      
  4806.        <span class="money price__original" data-price-original></span>
  4807.      
  4808.    </div>
  4809.  
  4810.  
  4811.    
  4812.      
  4813.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4814.        
  4815.          <span class="visually-hidden">Original price</span>
  4816.          <span class="money price__compare-at--min" data-price-compare-min>
  4817.            $137.99
  4818.          </span>
  4819.          -
  4820.          <span class="visually-hidden">Original price</span>
  4821.          <span class="money price__compare-at--max" data-price-compare-max>
  4822.            $137.99
  4823.          </span>
  4824.        
  4825.      </div>
  4826.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4827.        <span class="visually-hidden">Original price</span>
  4828.        <span class="money price__compare-at--single" data-price-compare>
  4829.          
  4830.        </span>
  4831.      </div>
  4832.    
  4833.  
  4834.  
  4835.  <div class="price__current price__current--emphasize " data-price-container>
  4836.  
  4837.    
  4838.  
  4839.    
  4840.      
  4841.      
  4842.      <span class="money" data-price>
  4843.        $137.99
  4844.      </span>
  4845.    
  4846.    
  4847.  </div>
  4848.  
  4849.  
  4850.    
  4851.    <div class="price__current--hidden" data-current-price-range-hidden>
  4852.      
  4853.        <span class="money price__current--min" data-price-min>$137.99</span>
  4854.        -
  4855.        <span class="money price__current--max" data-price-max>$137.99</span>
  4856.      
  4857.    </div>
  4858.    <div class="price__current--hidden" data-current-price-hidden>
  4859.      <span class="visually-hidden">Current price</span>
  4860.      <span class="money" data-price>
  4861.        $137.99
  4862.      </span>
  4863.    </div>
  4864.  
  4865.  
  4866.  
  4867.    
  4868.    
  4869.    
  4870.    
  4871.  
  4872.    <div
  4873.      class="
  4874.        productitem__unit-price
  4875.        hidden
  4876.      "
  4877.      data-unit-price
  4878.    >
  4879.      <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>
  4880.    </div>
  4881.  
  4882.  
  4883.  
  4884. </div>
  4885.  
  4886.  
  4887.            </div>
  4888.  
  4889.            <div class="productitem--listview-badge">
  4890.              
  4891.  
  4892.  
  4893.  
  4894.  
  4895.  
  4896.  
  4897.  
  4898.  
  4899.  
  4900.  
  4901.  
  4902.  
  4903.  
  4904.  
  4905.  
  4906.  
  4907.  
  4908.  
  4909.  
  4910.  
  4911.  
  4912.  
  4913.  
  4914.  
  4915.  
  4916.  
  4917.  
  4918.            </div>
  4919.  
  4920.            
  4921.              <div
  4922.                class="
  4923.                  productitem--action
  4924.                  quickshop-button
  4925.                  
  4926.                "
  4927.              >
  4928.                <button
  4929.                  class="productitem--action-trigger button-secondary"
  4930.                  data-quickshop-full
  4931.                  
  4932.                  
  4933.                  type="button"
  4934.                >
  4935.                  Quick shop
  4936.                </button>
  4937.              </div>
  4938.            
  4939.  
  4940.            
  4941.              <div
  4942.                class="
  4943.                  productitem--action
  4944.                  atc--button
  4945.                  
  4946.                "
  4947.              >
  4948.                <button
  4949.                  class="productitem--action-trigger productitem--action-atc button-primary"
  4950.                  type="button"
  4951.                  aria-label="Add to cart"
  4952.                  
  4953.                    data-quick-buy
  4954.                  
  4955.                  data-variant-id="29564289744983"
  4956.                  
  4957.                >
  4958.                  <span class="atc-button--text">
  4959.                    Add to cart
  4960.                  </span>
  4961.                  <span class="atc-button--icon"><svg
  4962.  aria-hidden="true"
  4963.  focusable="false"
  4964.  role="presentation"
  4965.  width="26"
  4966.  height="26"
  4967.  viewBox="0 0 26 26"
  4968.  xmlns="http://www.w3.org/2000/svg"
  4969. >
  4970.  <g fill-rule="nonzero" fill="currentColor">
  4971.    <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"/>
  4972.  </g>
  4973. </svg></span>
  4974.                </button>
  4975.              </div>
  4976.            
  4977.          </div>
  4978.        
  4979.      
  4980.    </div>
  4981.  </div>
  4982.  
  4983.  
  4984.    <script type="application/json" data-quick-buy-settings>
  4985.      {
  4986.        "cart_redirection": true,
  4987.        "money_format": "${{amount}}"
  4988.      }
  4989.    </script>
  4990.  
  4991. </li>
  4992.    
  4993.      
  4994.  
  4995.  
  4996.  
  4997.  
  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. <li
  5031.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  5032.  data-product-item
  5033.  data-product-quickshop-url="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5034.  
  5035. >
  5036.  <div class="productitem" data-product-item-content>
  5037.    
  5038.    
  5039.    
  5040.    
  5041.  
  5042.    
  5043.  
  5044.    
  5045.  
  5046.    <div class="productitem__container">
  5047.      
  5048.  
  5049.      <div class="productitem__image-container">
  5050.        <a target="_blank"
  5051.          class="productitem--image-link"
  5052.          href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5053.          aria-label="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5054.          tabindex="-1"
  5055.          data-product-page-link
  5056.        >
  5057.          <figure
  5058.            class="productitem--image"
  5059.            data-product-item-image
  5060.            
  5061.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5062.            
  5063.          >
  5064.            
  5065.              
  5066.              
  5067.  
  5068.  
  5069.    <noscript data-rimg-noscript>
  5070.      <img loading="lazy"
  5071.        
  5072.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5073.        
  5074.  
  5075.        alt=""
  5076.        data-rimg="noscript"
  5077.        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"
  5078.        class="productitem--image-primary"
  5079.        
  5080.        
  5081.      >
  5082.    </noscript>
  5083.  
  5084.  
  5085.  <img loading="lazy"
  5086.    
  5087.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5088.    
  5089.    alt=""
  5090.  
  5091.    
  5092.      data-rimg="lazy"
  5093.      data-rimg-scale="1"
  5094.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_{size}.jpg?v=1648053872"
  5095.      data-rimg-max="600x600"
  5096.      data-rimg-crop="false"
  5097.      
  5098.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  5099.    
  5100.  
  5101.    class="productitem--image-primary"
  5102.    
  5103.    
  5104.  >
  5105.  
  5106.  
  5107.  
  5108.  <div data-rimg-canvas></div>
  5109.  
  5110.  
  5111.            
  5112.  
  5113.            
  5114.  
  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.          </figure>
  5142.        </a>
  5143.      </div><div class="productitem--info">
  5144.        
  5145.          
  5146.  
  5147.        
  5148.  
  5149.        
  5150.          
  5151.  
  5152.  
  5153.  
  5154.  
  5155.  
  5156.  
  5157.  
  5158.  
  5159.  
  5160.  
  5161.  
  5162.  
  5163.  
  5164.  
  5165.  
  5166.  
  5167.  
  5168.  
  5169.  
  5170.  
  5171.  
  5172.  
  5173.  
  5174.  
  5175.  
  5176.  
  5177.  
  5178.  
  5179.  
  5180.  
  5181. <div class="price productitem__price ">
  5182.  
  5183.    <div
  5184.      class="price__compare-at visible"
  5185.      data-price-compare-container
  5186.    >
  5187.  
  5188.      
  5189.        <span class="money price__original" data-price-original></span>
  5190.      
  5191.    </div>
  5192.  
  5193.  
  5194.    
  5195.      
  5196.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5197.        
  5198.          <span class="visually-hidden">Original price</span>
  5199.          <span class="money price__compare-at--min" data-price-compare-min>
  5200.            $84.99
  5201.          </span>
  5202.          -
  5203.          <span class="visually-hidden">Original price</span>
  5204.          <span class="money price__compare-at--max" data-price-compare-max>
  5205.            $84.99
  5206.          </span>
  5207.        
  5208.      </div>
  5209.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5210.        <span class="visually-hidden">Original price</span>
  5211.        <span class="money price__compare-at--single" data-price-compare>
  5212.          
  5213.        </span>
  5214.      </div>
  5215.    
  5216.  
  5217.  
  5218.  <div class="price__current price__current--emphasize " data-price-container>
  5219.  
  5220.    
  5221.  
  5222.    
  5223.      
  5224.      
  5225.      <span class="money" data-price>
  5226.        $84.99
  5227.      </span>
  5228.    
  5229.    
  5230.  </div>
  5231.  
  5232.  
  5233.    
  5234.    <div class="price__current--hidden" data-current-price-range-hidden>
  5235.      
  5236.        <span class="money price__current--min" data-price-min>$84.99</span>
  5237.        -
  5238.        <span class="money price__current--max" data-price-max>$84.99</span>
  5239.      
  5240.    </div>
  5241.    <div class="price__current--hidden" data-current-price-hidden>
  5242.      <span class="visually-hidden">Current price</span>
  5243.      <span class="money" data-price>
  5244.        $84.99
  5245.      </span>
  5246.    </div>
  5247.  
  5248.  
  5249.  
  5250.    
  5251.    
  5252.    
  5253.    
  5254.  
  5255.    <div
  5256.      class="
  5257.        productitem__unit-price
  5258.        hidden
  5259.      "
  5260.      data-unit-price
  5261.    >
  5262.      <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>
  5263.    </div>
  5264.  
  5265.  
  5266.  
  5267. </div>
  5268.  
  5269.  
  5270.        
  5271.  
  5272.        <h2 class="productitem--title">
  5273.          <a href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  5274.            20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  5275.          </a>
  5276.        </h2>
  5277.  
  5278.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5279.        <div class="star_container 3483510112343"></div>
  5280.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5281.  
  5282.        
  5283.          
  5284.            <span class="productitem--vendor">
  5285.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  5286.            </span>
  5287.          
  5288.        
  5289.  
  5290.        
  5291.  
  5292.        
  5293.          
  5294.            <div class="productitem__stock-level">
  5295.              <!--
  5296.  
  5297.  
  5298.  
  5299.  
  5300.  
  5301.  
  5302.  
  5303. <div class="product-stock-level-wrapper" >
  5304.  
  5305.    <span class="
  5306.  product-stock-level
  5307.  product-stock-level--continue-selling
  5308.  
  5309. ">
  5310.      
  5311.  
  5312.      <span class="product-stock-level__text">
  5313.        
  5314.        <div class="product-stock-level__badge-text">
  5315.          
  5316.  
  5317.    In stock
  5318.  
  5319.  
  5320.        </div>
  5321.      </span>
  5322.    </span>
  5323.  
  5324. </div>
  5325. -->
  5326.              
  5327.  
  5328.  
  5329.    
  5330.      <b style="color:green">In stock</b>
  5331.    
  5332.  
  5333.  
  5334.  
  5335.  
  5336.  
  5337.  
  5338.  
  5339.            </div>
  5340.          
  5341.  
  5342.          
  5343.            
  5344.          
  5345.        
  5346.  
  5347.        
  5348.          <div class="productitem--description">
  5349.            <p>Plugs directly into AC outlet.
  5350.  
  5351. Input: 100-240V ~ 50-60Hz
  5352. Output: 12V – 1.5A 18W
  5353. Connector Tip: mini USB
  5354. Colour: Black
  5355.  
  5356. Compatible Part #s: KP.01...</p>
  5357.  
  5358.            
  5359.              <a
  5360.                href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5361.                class="productitem--link"
  5362.                data-product-page-link
  5363.              >
  5364.                View full details
  5365.              </a>
  5366.            
  5367.          </div>
  5368.        
  5369.      </div>
  5370.  
  5371.      
  5372.        
  5373.          
  5374.          
  5375.          
  5376.  
  5377.          
  5378.          
  5379.  
  5380.          
  5381.  
  5382.          
  5383.  
  5384.          <div class="productitem--actions" data-product-actions>
  5385.            <div class="productitem--listview-price">
  5386.              
  5387.  
  5388.  
  5389.  
  5390.  
  5391.  
  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. <div class="price productitem__price ">
  5418.  
  5419.    <div
  5420.      class="price__compare-at visible"
  5421.      data-price-compare-container
  5422.    >
  5423.  
  5424.      
  5425.        <span class="money price__original" data-price-original></span>
  5426.      
  5427.    </div>
  5428.  
  5429.  
  5430.    
  5431.      
  5432.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5433.        
  5434.          <span class="visually-hidden">Original price</span>
  5435.          <span class="money price__compare-at--min" data-price-compare-min>
  5436.            $84.99
  5437.          </span>
  5438.          -
  5439.          <span class="visually-hidden">Original price</span>
  5440.          <span class="money price__compare-at--max" data-price-compare-max>
  5441.            $84.99
  5442.          </span>
  5443.        
  5444.      </div>
  5445.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5446.        <span class="visually-hidden">Original price</span>
  5447.        <span class="money price__compare-at--single" data-price-compare>
  5448.          
  5449.        </span>
  5450.      </div>
  5451.    
  5452.  
  5453.  
  5454.  <div class="price__current price__current--emphasize " data-price-container>
  5455.  
  5456.    
  5457.  
  5458.    
  5459.      
  5460.      
  5461.      <span class="money" data-price>
  5462.        $84.99
  5463.      </span>
  5464.    
  5465.    
  5466.  </div>
  5467.  
  5468.  
  5469.    
  5470.    <div class="price__current--hidden" data-current-price-range-hidden>
  5471.      
  5472.        <span class="money price__current--min" data-price-min>$84.99</span>
  5473.        -
  5474.        <span class="money price__current--max" data-price-max>$84.99</span>
  5475.      
  5476.    </div>
  5477.    <div class="price__current--hidden" data-current-price-hidden>
  5478.      <span class="visually-hidden">Current price</span>
  5479.      <span class="money" data-price>
  5480.        $84.99
  5481.      </span>
  5482.    </div>
  5483.  
  5484.  
  5485.  
  5486.    
  5487.    
  5488.    
  5489.    
  5490.  
  5491.    <div
  5492.      class="
  5493.        productitem__unit-price
  5494.        hidden
  5495.      "
  5496.      data-unit-price
  5497.    >
  5498.      <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>
  5499.    </div>
  5500.  
  5501.  
  5502.  
  5503. </div>
  5504.  
  5505.  
  5506.            </div>
  5507.  
  5508.            <div class="productitem--listview-badge">
  5509.              
  5510.  
  5511.  
  5512.  
  5513.  
  5514.  
  5515.  
  5516.  
  5517.  
  5518.  
  5519.  
  5520.  
  5521.  
  5522.  
  5523.  
  5524.  
  5525.  
  5526.  
  5527.  
  5528.  
  5529.  
  5530.  
  5531.  
  5532.  
  5533.  
  5534.  
  5535.  
  5536.  
  5537.            </div>
  5538.  
  5539.            
  5540.              <div
  5541.                class="
  5542.                  productitem--action
  5543.                  quickshop-button
  5544.                  
  5545.                "
  5546.              >
  5547.                <button
  5548.                  class="productitem--action-trigger button-secondary"
  5549.                  data-quickshop-full
  5550.                  
  5551.                  
  5552.                  type="button"
  5553.                >
  5554.                  Quick shop
  5555.                </button>
  5556.              </div>
  5557.            
  5558.  
  5559.            
  5560.              <div
  5561.                class="
  5562.                  productitem--action
  5563.                  atc--button
  5564.                  
  5565.                "
  5566.              >
  5567.                <button
  5568.                  class="productitem--action-trigger productitem--action-atc button-primary"
  5569.                  type="button"
  5570.                  aria-label="Add to cart"
  5571.                  
  5572.                    data-quick-buy
  5573.                  
  5574.                  data-variant-id="39666212798551"
  5575.                  
  5576.                >
  5577.                  <span class="atc-button--text">
  5578.                    Add to cart
  5579.                  </span>
  5580.                  <span class="atc-button--icon"><svg
  5581.  aria-hidden="true"
  5582.  focusable="false"
  5583.  role="presentation"
  5584.  width="26"
  5585.  height="26"
  5586.  viewBox="0 0 26 26"
  5587.  xmlns="http://www.w3.org/2000/svg"
  5588. >
  5589.  <g fill-rule="nonzero" fill="currentColor">
  5590.    <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"/>
  5591.  </g>
  5592. </svg></span>
  5593.                </button>
  5594.              </div>
  5595.            
  5596.          </div>
  5597.        
  5598.      
  5599.    </div>
  5600.  </div>
  5601.  
  5602.  
  5603.    <script type="application/json" data-quick-buy-settings>
  5604.      {
  5605.        "cart_redirection": true,
  5606.        "money_format": "${{amount}}"
  5607.      }
  5608.    </script>
  5609.  
  5610. </li>
  5611.    
  5612.      
  5613.  
  5614.  
  5615.  
  5616.  
  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. <li
  5651.  class="productgrid--item  imagestyle--natural    productitem--sale  productitem--emphasis      show-actions--mobile"
  5652.  data-product-item
  5653.  data-product-quickshop-url="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5654.  
  5655. >
  5656.  <div class="productitem" data-product-item-content>
  5657.    
  5658.    
  5659.    
  5660.    
  5661.  
  5662.    
  5663.  
  5664.    
  5665.  
  5666.    <div class="productitem__container">
  5667.      
  5668.  
  5669.      <div class="productitem__image-container">
  5670.        <a target="_blank"
  5671.          class="productitem--image-link"
  5672.          href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5673.          aria-label="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5674.          tabindex="-1"
  5675.          data-product-page-link
  5676.        >
  5677.          <figure
  5678.            class="productitem--image"
  5679.            data-product-item-image
  5680.            
  5681.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5682.            
  5683.          >
  5684.            
  5685.              
  5686.              
  5687.  
  5688.  
  5689.    <noscript data-rimg-noscript>
  5690.      <img loading="lazy"
  5691.        
  5692.          src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  5693.        
  5694.  
  5695.        alt="B156HTN03.6"
  5696.        data-rimg="noscript"
  5697.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945 1x"
  5698.        class="productitem--image-primary"
  5699.        
  5700.        
  5701.      >
  5702.    </noscript>
  5703.  
  5704.  
  5705.  <img loading="lazy"
  5706.    
  5707.      src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  5708.    
  5709.    alt="B156HTN03.6"
  5710.  
  5711.    
  5712.      data-rimg="lazy"
  5713.      data-rimg-scale="1"
  5714.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_{size}.jpg?v=1725475945"
  5715.      data-rimg-max="500x500"
  5716.      data-rimg-crop="false"
  5717.      
  5718.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  5719.    
  5720.  
  5721.    class="productitem--image-primary"
  5722.    
  5723.    
  5724.  >
  5725.  
  5726.  
  5727.  
  5728.  <div data-rimg-canvas></div>
  5729.  
  5730.  
  5731.            
  5732.  
  5733.            
  5734.  
  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.  <span class="productitem__badge productitem__badge--sale"
  5766.    data-badge-sales
  5767.    
  5768.  >
  5769.    <span data-badge-sales-range>
  5770.      
  5771.        
  5772.          Save <span data-price-percent-saved>32</span>%
  5773.        
  5774.      
  5775.    </span>
  5776.    <span data-badge-sales-single style="display: none;">
  5777.      
  5778.        Save <span data-price-percent-saved></span>%
  5779.      
  5780.    </span>
  5781.  </span>
  5782.          </figure>
  5783.        </a>
  5784.      </div><div class="productitem--info">
  5785.        
  5786.          
  5787.  
  5788.        
  5789.  
  5790.        
  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. <div class="price productitem__price ">
  5823.  
  5824.    <div
  5825.      class="price__compare-at visible"
  5826.      data-price-compare-container
  5827.    >
  5828.  
  5829.      
  5830.        <span class="visually-hidden">Original price</span>
  5831.        <span class="money price__compare-at--single" data-price-compare>
  5832.          $147.99
  5833.        </span>
  5834.      
  5835.    </div>
  5836.  
  5837.  
  5838.    
  5839.      
  5840.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5841.        
  5842.          <span class="visually-hidden">Original price</span>
  5843.          <span class="money price__compare-at--min" data-price-compare-min>
  5844.            $147.99
  5845.          </span>
  5846.          -
  5847.          <span class="visually-hidden">Original price</span>
  5848.          <span class="money price__compare-at--max" data-price-compare-max>
  5849.            $147.99
  5850.          </span>
  5851.        
  5852.      </div>
  5853.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5854.        <span class="visually-hidden">Original price</span>
  5855.        <span class="money price__compare-at--single" data-price-compare>
  5856.          $147.99
  5857.        </span>
  5858.      </div>
  5859.    
  5860.  
  5861.  
  5862.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  5863.  
  5864.    
  5865.  
  5866.    
  5867.      
  5868.      
  5869.        <span class="visually-hidden">Current price</span>
  5870.      
  5871.      <span class="money" data-price>
  5872.        $99.98
  5873.      </span>
  5874.    
  5875.    
  5876.  </div>
  5877.  
  5878.  
  5879.    
  5880.    <div class="price__current--hidden" data-current-price-range-hidden>
  5881.      
  5882.        <span class="money price__current--min" data-price-min>$99.98</span>
  5883.        -
  5884.        <span class="money price__current--max" data-price-max>$99.98</span>
  5885.      
  5886.    </div>
  5887.    <div class="price__current--hidden" data-current-price-hidden>
  5888.      <span class="visually-hidden">Current price</span>
  5889.      <span class="money" data-price>
  5890.        $99.98
  5891.      </span>
  5892.    </div>
  5893.  
  5894.  
  5895.  
  5896.    
  5897.    
  5898.    
  5899.    
  5900.  
  5901.    <div
  5902.      class="
  5903.        productitem__unit-price
  5904.        hidden
  5905.      "
  5906.      data-unit-price
  5907.    >
  5908.      <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>
  5909.    </div>
  5910.  
  5911.  
  5912.  
  5913. </div>
  5914.  
  5915.  
  5916.        
  5917.  
  5918.        <h2 class="productitem--title">
  5919.          <a href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops" data-product-page-link>
  5920.            15.6 FHD 1920x1080 Lcd Led Screen Lenovo Y50-70 Laptops B156HTN03.6
  5921.          </a>
  5922.        </h2>
  5923.  
  5924.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5925.        <div class="star_container 3929811353687"></div>
  5926.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5927.  
  5928.        
  5929.          
  5930.            <span class="productitem--vendor">
  5931.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  5932.            </span>
  5933.          
  5934.        
  5935.  
  5936.        
  5937.  
  5938.        
  5939.          
  5940.            <div class="productitem__stock-level">
  5941.              <!--
  5942.  
  5943.  
  5944.  
  5945.  
  5946.  
  5947.  
  5948.  
  5949. <div class="product-stock-level-wrapper" >
  5950.  
  5951.    <span class="
  5952.  product-stock-level
  5953.  product-stock-level--continue-selling
  5954.  
  5955. ">
  5956.      
  5957.  
  5958.      <span class="product-stock-level__text">
  5959.        
  5960.        <div class="product-stock-level__badge-text">
  5961.          
  5962.  
  5963.    In stock
  5964.  
  5965.  
  5966.        </div>
  5967.      </span>
  5968.    </span>
  5969.  
  5970. </div>
  5971. -->
  5972.              
  5973.  
  5974.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  5975.  
  5976.  
  5977.  
  5978.  
  5979.  
  5980.  
  5981.  
  5982.            </div>
  5983.          
  5984.  
  5985.          
  5986.            
  5987.          
  5988.        
  5989.  
  5990.        
  5991.          <div class="productitem--description">
  5992.            <p>
  5993. 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>
  5994.  
  5995.            
  5996.              <a
  5997.                href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5998.                class="productitem--link"
  5999.                data-product-page-link
  6000.              >
  6001.                View full details
  6002.              </a>
  6003.            
  6004.          </div>
  6005.        
  6006.      </div>
  6007.  
  6008.      
  6009.        
  6010.          
  6011.          
  6012.          
  6013.  
  6014.          
  6015.          
  6016.  
  6017.          
  6018.  
  6019.          
  6020.  
  6021.          <div class="productitem--actions" data-product-actions>
  6022.            <div class="productitem--listview-price">
  6023.              
  6024.  
  6025.  
  6026.  
  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. <div class="price productitem__price ">
  6055.  
  6056.    <div
  6057.      class="price__compare-at visible"
  6058.      data-price-compare-container
  6059.    >
  6060.  
  6061.      
  6062.        <span class="visually-hidden">Original price</span>
  6063.        <span class="money price__compare-at--single" data-price-compare>
  6064.          $147.99
  6065.        </span>
  6066.      
  6067.    </div>
  6068.  
  6069.  
  6070.    
  6071.      
  6072.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6073.        
  6074.          <span class="visually-hidden">Original price</span>
  6075.          <span class="money price__compare-at--min" data-price-compare-min>
  6076.            $147.99
  6077.          </span>
  6078.          -
  6079.          <span class="visually-hidden">Original price</span>
  6080.          <span class="money price__compare-at--max" data-price-compare-max>
  6081.            $147.99
  6082.          </span>
  6083.        
  6084.      </div>
  6085.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6086.        <span class="visually-hidden">Original price</span>
  6087.        <span class="money price__compare-at--single" data-price-compare>
  6088.          $147.99
  6089.        </span>
  6090.      </div>
  6091.    
  6092.  
  6093.  
  6094.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  6095.  
  6096.    
  6097.  
  6098.    
  6099.      
  6100.      
  6101.        <span class="visually-hidden">Current price</span>
  6102.      
  6103.      <span class="money" data-price>
  6104.        $99.98
  6105.      </span>
  6106.    
  6107.    
  6108.  </div>
  6109.  
  6110.  
  6111.    
  6112.    <div class="price__current--hidden" data-current-price-range-hidden>
  6113.      
  6114.        <span class="money price__current--min" data-price-min>$99.98</span>
  6115.        -
  6116.        <span class="money price__current--max" data-price-max>$99.98</span>
  6117.      
  6118.    </div>
  6119.    <div class="price__current--hidden" data-current-price-hidden>
  6120.      <span class="visually-hidden">Current price</span>
  6121.      <span class="money" data-price>
  6122.        $99.98
  6123.      </span>
  6124.    </div>
  6125.  
  6126.  
  6127.  
  6128.    
  6129.    
  6130.    
  6131.    
  6132.  
  6133.    <div
  6134.      class="
  6135.        productitem__unit-price
  6136.        hidden
  6137.      "
  6138.      data-unit-price
  6139.    >
  6140.      <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>
  6141.    </div>
  6142.  
  6143.  
  6144.  
  6145. </div>
  6146.  
  6147.  
  6148.            </div>
  6149.  
  6150.            <div class="productitem--listview-badge">
  6151.              
  6152.  
  6153.  
  6154.  
  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.  <span class="productitem__badge productitem__badge--sale"
  6184.    data-badge-sales
  6185.    
  6186.  >
  6187.    <span data-badge-sales-range>
  6188.      
  6189.        
  6190.          Save <span data-price-percent-saved>32</span>%
  6191.        
  6192.      
  6193.    </span>
  6194.    <span data-badge-sales-single style="display: none;">
  6195.      
  6196.        Save <span data-price-percent-saved></span>%
  6197.      
  6198.    </span>
  6199.  </span>
  6200.            </div>
  6201.  
  6202.            
  6203.              <div
  6204.                class="
  6205.                  productitem--action
  6206.                  quickshop-button
  6207.                  
  6208.                "
  6209.              >
  6210.                <button
  6211.                  class="productitem--action-trigger button-secondary"
  6212.                  data-quickshop-full
  6213.                  
  6214.                  
  6215.                  type="button"
  6216.                >
  6217.                  Quick shop
  6218.                </button>
  6219.              </div>
  6220.            
  6221.  
  6222.            
  6223.              <div
  6224.                class="
  6225.                  productitem--action
  6226.                  atc--button
  6227.                  
  6228.                "
  6229.              >
  6230.                <button
  6231.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6232.                  type="button"
  6233.                  aria-label="Add to cart"
  6234.                  
  6235.                    data-quick-buy
  6236.                  
  6237.                  data-variant-id="29564283551831"
  6238.                  
  6239.                >
  6240.                  <span class="atc-button--text">
  6241.                    Add to cart
  6242.                  </span>
  6243.                  <span class="atc-button--icon"><svg
  6244.  aria-hidden="true"
  6245.  focusable="false"
  6246.  role="presentation"
  6247.  width="26"
  6248.  height="26"
  6249.  viewBox="0 0 26 26"
  6250.  xmlns="http://www.w3.org/2000/svg"
  6251. >
  6252.  <g fill-rule="nonzero" fill="currentColor">
  6253.    <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"/>
  6254.  </g>
  6255. </svg></span>
  6256.                </button>
  6257.              </div>
  6258.            
  6259.          </div>
  6260.        
  6261.      
  6262.    </div>
  6263.  </div>
  6264.  
  6265.  
  6266.    <script type="application/json" data-quick-buy-settings>
  6267.      {
  6268.        "cart_redirection": true,
  6269.        "money_format": "${{amount}}"
  6270.      }
  6271.    </script>
  6272.  
  6273. </li>
  6274.    
  6275.      
  6276.  
  6277.  
  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. <li
  6313.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6314.  data-product-item
  6315.  data-product-quickshop-url="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6316.  
  6317. >
  6318.  <div class="productitem" data-product-item-content>
  6319.    
  6320.    
  6321.    
  6322.    
  6323.  
  6324.    
  6325.  
  6326.    
  6327.  
  6328.    <div class="productitem__container">
  6329.      
  6330.  
  6331.      <div class="productitem__image-container">
  6332.        <a target="_blank"
  6333.          class="productitem--image-link"
  6334.          href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6335.          aria-label="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6336.          tabindex="-1"
  6337.          data-product-page-link
  6338.        >
  6339.          <figure
  6340.            class="productitem--image"
  6341.            data-product-item-image
  6342.            
  6343.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6344.            
  6345.          >
  6346.            
  6347.              
  6348.              
  6349.  
  6350.  
  6351.    <noscript data-rimg-noscript>
  6352.      <img loading="lazy"
  6353.        
  6354.          src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6355.        
  6356.  
  6357.        alt=""
  6358.        data-rimg="noscript"
  6359.        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"
  6360.        class="productitem--image-primary"
  6361.        
  6362.        
  6363.      >
  6364.    </noscript>
  6365.  
  6366.  
  6367.  <img loading="lazy"
  6368.    
  6369.      src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6370.    
  6371.    alt=""
  6372.  
  6373.    
  6374.      data-rimg="lazy"
  6375.      data-rimg-scale="1"
  6376.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_{size}.jpg?v=1648038527"
  6377.      data-rimg-max="1000x1000"
  6378.      data-rimg-crop="false"
  6379.      
  6380.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  6381.    
  6382.  
  6383.    class="productitem--image-primary"
  6384.    
  6385.    
  6386.  >
  6387.  
  6388.  
  6389.  
  6390.  <div data-rimg-canvas></div>
  6391.  
  6392.  
  6393.            
  6394.  
  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.          </figure>
  6424.        </a>
  6425.      </div><div class="productitem--info">
  6426.        
  6427.          
  6428.  
  6429.        
  6430.  
  6431.        
  6432.          
  6433.  
  6434.  
  6435.  
  6436.  
  6437.  
  6438.  
  6439.  
  6440.  
  6441.  
  6442.  
  6443.  
  6444.  
  6445.  
  6446.  
  6447.  
  6448.  
  6449.  
  6450.  
  6451.  
  6452.  
  6453.  
  6454.  
  6455.  
  6456.  
  6457.  
  6458.  
  6459.  
  6460.  
  6461.  
  6462.  
  6463. <div class="price productitem__price ">
  6464.  
  6465.    <div
  6466.      class="price__compare-at visible"
  6467.      data-price-compare-container
  6468.    >
  6469.  
  6470.      
  6471.        <span class="money price__original" data-price-original></span>
  6472.      
  6473.    </div>
  6474.  
  6475.  
  6476.    
  6477.      
  6478.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6479.        
  6480.          <span class="visually-hidden">Original price</span>
  6481.          <span class="money price__compare-at--min" data-price-compare-min>
  6482.            $109.98
  6483.          </span>
  6484.          -
  6485.          <span class="visually-hidden">Original price</span>
  6486.          <span class="money price__compare-at--max" data-price-compare-max>
  6487.            $109.98
  6488.          </span>
  6489.        
  6490.      </div>
  6491.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6492.        <span class="visually-hidden">Original price</span>
  6493.        <span class="money price__compare-at--single" data-price-compare>
  6494.          
  6495.        </span>
  6496.      </div>
  6497.    
  6498.  
  6499.  
  6500.  <div class="price__current price__current--emphasize " data-price-container>
  6501.  
  6502.    
  6503.  
  6504.    
  6505.      
  6506.      
  6507.      <span class="money" data-price>
  6508.        $109.98
  6509.      </span>
  6510.    
  6511.    
  6512.  </div>
  6513.  
  6514.  
  6515.    
  6516.    <div class="price__current--hidden" data-current-price-range-hidden>
  6517.      
  6518.        <span class="money price__current--min" data-price-min>$109.98</span>
  6519.        -
  6520.        <span class="money price__current--max" data-price-max>$109.98</span>
  6521.      
  6522.    </div>
  6523.    <div class="price__current--hidden" data-current-price-hidden>
  6524.      <span class="visually-hidden">Current price</span>
  6525.      <span class="money" data-price>
  6526.        $109.98
  6527.      </span>
  6528.    </div>
  6529.  
  6530.  
  6531.  
  6532.    
  6533.    
  6534.    
  6535.    
  6536.  
  6537.    <div
  6538.      class="
  6539.        productitem__unit-price
  6540.        hidden
  6541.      "
  6542.      data-unit-price
  6543.    >
  6544.      <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>
  6545.    </div>
  6546.  
  6547.  
  6548.  
  6549. </div>
  6550.  
  6551.  
  6552.        
  6553.  
  6554.        <h2 class="productitem--title">
  6555.          <a href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw" data-product-page-link>
  6556.            Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW
  6557.          </a>
  6558.        </h2>
  6559.  
  6560.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  6561.        <div class="star_container 3929789694039"></div>
  6562.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  6563.  
  6564.        
  6565.          
  6566.            <span class="productitem--vendor">
  6567.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  6568.            </span>
  6569.          
  6570.        
  6571.  
  6572.        
  6573.  
  6574.        
  6575.          
  6576.            <div class="productitem__stock-level">
  6577.              <!--
  6578.  
  6579.  
  6580.  
  6581.  
  6582.  
  6583.  
  6584.  
  6585. <div class="product-stock-level-wrapper" >
  6586.  
  6587.    <span class="
  6588.  product-stock-level
  6589.  product-stock-level--continue-selling
  6590.  
  6591. ">
  6592.      
  6593.  
  6594.      <span class="product-stock-level__text">
  6595.        
  6596.        <div class="product-stock-level__badge-text">
  6597.          
  6598.  
  6599.    In stock
  6600.  
  6601.  
  6602.        </div>
  6603.      </span>
  6604.    </span>
  6605.  
  6606. </div>
  6607. -->
  6608.              
  6609.  
  6610.  
  6611.    
  6612.      <b style="color:green">In stock</b>
  6613.    
  6614.  
  6615.  
  6616.  
  6617.  
  6618.  
  6619.  
  6620.  
  6621.            </div>
  6622.          
  6623.  
  6624.          
  6625.            
  6626.          
  6627.        
  6628.  
  6629.        
  6630.          <div class="productitem--description">
  6631.            <p>
  6632. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  6633.  
  6634. Compatible Part #s: KGYYH, 48DGW, N140HCE-G52
  6635.  
  6636. Compatible Models:
  6637. Dell Lati...</p>
  6638.  
  6639.            
  6640.              <a
  6641.                href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6642.                class="productitem--link"
  6643.                data-product-page-link
  6644.              >
  6645.                View full details
  6646.              </a>
  6647.            
  6648.          </div>
  6649.        
  6650.      </div>
  6651.  
  6652.      
  6653.        
  6654.          
  6655.          
  6656.          
  6657.  
  6658.          
  6659.          
  6660.  
  6661.          
  6662.  
  6663.          
  6664.  
  6665.          <div class="productitem--actions" data-product-actions>
  6666.            <div class="productitem--listview-price">
  6667.              
  6668.  
  6669.  
  6670.  
  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. <div class="price productitem__price ">
  6699.  
  6700.    <div
  6701.      class="price__compare-at visible"
  6702.      data-price-compare-container
  6703.    >
  6704.  
  6705.      
  6706.        <span class="money price__original" data-price-original></span>
  6707.      
  6708.    </div>
  6709.  
  6710.  
  6711.    
  6712.      
  6713.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6714.        
  6715.          <span class="visually-hidden">Original price</span>
  6716.          <span class="money price__compare-at--min" data-price-compare-min>
  6717.            $109.98
  6718.          </span>
  6719.          -
  6720.          <span class="visually-hidden">Original price</span>
  6721.          <span class="money price__compare-at--max" data-price-compare-max>
  6722.            $109.98
  6723.          </span>
  6724.        
  6725.      </div>
  6726.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6727.        <span class="visually-hidden">Original price</span>
  6728.        <span class="money price__compare-at--single" data-price-compare>
  6729.          
  6730.        </span>
  6731.      </div>
  6732.    
  6733.  
  6734.  
  6735.  <div class="price__current price__current--emphasize " data-price-container>
  6736.  
  6737.    
  6738.  
  6739.    
  6740.      
  6741.      
  6742.      <span class="money" data-price>
  6743.        $109.98
  6744.      </span>
  6745.    
  6746.    
  6747.  </div>
  6748.  
  6749.  
  6750.    
  6751.    <div class="price__current--hidden" data-current-price-range-hidden>
  6752.      
  6753.        <span class="money price__current--min" data-price-min>$109.98</span>
  6754.        -
  6755.        <span class="money price__current--max" data-price-max>$109.98</span>
  6756.      
  6757.    </div>
  6758.    <div class="price__current--hidden" data-current-price-hidden>
  6759.      <span class="visually-hidden">Current price</span>
  6760.      <span class="money" data-price>
  6761.        $109.98
  6762.      </span>
  6763.    </div>
  6764.  
  6765.  
  6766.  
  6767.    
  6768.    
  6769.    
  6770.    
  6771.  
  6772.    <div
  6773.      class="
  6774.        productitem__unit-price
  6775.        hidden
  6776.      "
  6777.      data-unit-price
  6778.    >
  6779.      <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>
  6780.    </div>
  6781.  
  6782.  
  6783.  
  6784. </div>
  6785.  
  6786.  
  6787.            </div>
  6788.  
  6789.            <div class="productitem--listview-badge">
  6790.              
  6791.  
  6792.  
  6793.  
  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.            </div>
  6819.  
  6820.            
  6821.              <div
  6822.                class="
  6823.                  productitem--action
  6824.                  quickshop-button
  6825.                  
  6826.                "
  6827.              >
  6828.                <button
  6829.                  class="productitem--action-trigger button-secondary"
  6830.                  data-quickshop-full
  6831.                  
  6832.                  
  6833.                  type="button"
  6834.                >
  6835.                  Quick shop
  6836.                </button>
  6837.              </div>
  6838.            
  6839.  
  6840.            
  6841.              <div
  6842.                class="
  6843.                  productitem--action
  6844.                  atc--button
  6845.                  
  6846.                "
  6847.              >
  6848.                <button
  6849.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6850.                  type="button"
  6851.                  aria-label="Add to cart"
  6852.                  
  6853.                    data-quick-buy
  6854.                  
  6855.                  data-variant-id="29462328246359"
  6856.                  
  6857.                >
  6858.                  <span class="atc-button--text">
  6859.                    Add to cart
  6860.                  </span>
  6861.                  <span class="atc-button--icon"><svg
  6862.  aria-hidden="true"
  6863.  focusable="false"
  6864.  role="presentation"
  6865.  width="26"
  6866.  height="26"
  6867.  viewBox="0 0 26 26"
  6868.  xmlns="http://www.w3.org/2000/svg"
  6869. >
  6870.  <g fill-rule="nonzero" fill="currentColor">
  6871.    <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"/>
  6872.  </g>
  6873. </svg></span>
  6874.                </button>
  6875.              </div>
  6876.            
  6877.          </div>
  6878.        
  6879.      
  6880.    </div>
  6881.  </div>
  6882.  
  6883.  
  6884.    <script type="application/json" data-quick-buy-settings>
  6885.      {
  6886.        "cart_redirection": true,
  6887.        "money_format": "${{amount}}"
  6888.      }
  6889.    </script>
  6890.  
  6891. </li>
  6892.    
  6893.      
  6894.  
  6895.  
  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. <li
  6931.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6932.  data-product-item
  6933.  data-product-quickshop-url="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6934.  
  6935. >
  6936.  <div class="productitem" data-product-item-content>
  6937.    
  6938.    
  6939.    
  6940.    
  6941.  
  6942.    
  6943.  
  6944.    
  6945.  
  6946.    <div class="productitem__container">
  6947.      
  6948.  
  6949.      <div class="productitem__image-container">
  6950.        <a target="_blank"
  6951.          class="productitem--image-link"
  6952.          href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6953.          aria-label="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6954.          tabindex="-1"
  6955.          data-product-page-link
  6956.        >
  6957.          <figure
  6958.            class="productitem--image"
  6959.            data-product-item-image
  6960.            
  6961.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6962.            
  6963.          >
  6964.            
  6965.              
  6966.              
  6967.  
  6968.  
  6969.    <noscript data-rimg-noscript>
  6970.      <img loading="lazy"
  6971.        
  6972.          src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  6973.        
  6974.  
  6975.        alt=""
  6976.        data-rimg="noscript"
  6977.        srcset="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251 1x, //laptopparts.ca/cdn/shop/products/molex1_599x599.jpg?v=1697125251 1.17x"
  6978.        class="productitem--image-primary"
  6979.        
  6980.        
  6981.      >
  6982.    </noscript>
  6983.  
  6984.  
  6985.  <img loading="lazy"
  6986.    
  6987.      src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  6988.    
  6989.    alt=""
  6990.  
  6991.    
  6992.      data-rimg="lazy"
  6993.      data-rimg-scale="1"
  6994.      data-rimg-template="//laptopparts.ca/cdn/shop/products/molex1_{size}.jpg?v=1697125251"
  6995.      data-rimg-max="603x603"
  6996.      data-rimg-crop="false"
  6997.      
  6998.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  6999.    
  7000.  
  7001.    class="productitem--image-primary"
  7002.    
  7003.    
  7004.  >
  7005.  
  7006.  
  7007.  
  7008.  <div data-rimg-canvas></div>
  7009.  
  7010.  
  7011.            
  7012.  
  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.          </figure>
  7042.        </a>
  7043.      </div><div class="productitem--info">
  7044.        
  7045.          
  7046.  
  7047.        
  7048.  
  7049.        
  7050.          
  7051.  
  7052.  
  7053.  
  7054.  
  7055.  
  7056.  
  7057.  
  7058.  
  7059.  
  7060.  
  7061.  
  7062.  
  7063.  
  7064.  
  7065.  
  7066.  
  7067.  
  7068.  
  7069.  
  7070.  
  7071.  
  7072.  
  7073.  
  7074.  
  7075.  
  7076.  
  7077.  
  7078.  
  7079.  
  7080.  
  7081. <div class="price productitem__price ">
  7082.  
  7083.    <div
  7084.      class="price__compare-at visible"
  7085.      data-price-compare-container
  7086.    >
  7087.  
  7088.      
  7089.        <span class="money price__original" data-price-original></span>
  7090.      
  7091.    </div>
  7092.  
  7093.  
  7094.    
  7095.      
  7096.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7097.        
  7098.          <span class="visually-hidden">Original price</span>
  7099.          <span class="money price__compare-at--min" data-price-compare-min>
  7100.            $30.99
  7101.          </span>
  7102.          -
  7103.          <span class="visually-hidden">Original price</span>
  7104.          <span class="money price__compare-at--max" data-price-compare-max>
  7105.            $30.99
  7106.          </span>
  7107.        
  7108.      </div>
  7109.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7110.        <span class="visually-hidden">Original price</span>
  7111.        <span class="money price__compare-at--single" data-price-compare>
  7112.          
  7113.        </span>
  7114.      </div>
  7115.    
  7116.  
  7117.  
  7118.  <div class="price__current price__current--emphasize " data-price-container>
  7119.  
  7120.    
  7121.  
  7122.    
  7123.      
  7124.      
  7125.      <span class="money" data-price>
  7126.        $30.99
  7127.      </span>
  7128.    
  7129.    
  7130.  </div>
  7131.  
  7132.  
  7133.    
  7134.    <div class="price__current--hidden" data-current-price-range-hidden>
  7135.      
  7136.        <span class="money price__current--min" data-price-min>$30.99</span>
  7137.        -
  7138.        <span class="money price__current--max" data-price-max>$30.99</span>
  7139.      
  7140.    </div>
  7141.    <div class="price__current--hidden" data-current-price-hidden>
  7142.      <span class="visually-hidden">Current price</span>
  7143.      <span class="money" data-price>
  7144.        $30.99
  7145.      </span>
  7146.    </div>
  7147.  
  7148.  
  7149.  
  7150.    
  7151.    
  7152.    
  7153.    
  7154.  
  7155.    <div
  7156.      class="
  7157.        productitem__unit-price
  7158.        hidden
  7159.      "
  7160.      data-unit-price
  7161.    >
  7162.      <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>
  7163.    </div>
  7164.  
  7165.  
  7166.  
  7167. </div>
  7168.  
  7169.  
  7170.        
  7171.  
  7172.        <h2 class="productitem--title">
  7173.          <a href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable" data-product-page-link>
  7174.            4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable
  7175.          </a>
  7176.        </h2>
  7177.  
  7178.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7179.        <div class="star_container 1416490647575"></div>
  7180.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7181.  
  7182.        
  7183.          
  7184.            <span class="productitem--vendor">
  7185.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  7186.            </span>
  7187.          
  7188.        
  7189.  
  7190.        
  7191.  
  7192.        
  7193.          
  7194.            <div class="productitem__stock-level">
  7195.              <!--
  7196.  
  7197.  
  7198.  
  7199.  
  7200.  
  7201.  
  7202.  
  7203. <div class="product-stock-level-wrapper" >
  7204.  
  7205.    <span class="
  7206.  product-stock-level
  7207.  product-stock-level--continue-selling
  7208.  
  7209. ">
  7210.      
  7211.  
  7212.      <span class="product-stock-level__text">
  7213.        
  7214.        <div class="product-stock-level__badge-text">
  7215.          
  7216.  
  7217.    In stock
  7218.  
  7219.  
  7220.        </div>
  7221.      </span>
  7222.    </span>
  7223.  
  7224. </div>
  7225. -->
  7226.              
  7227.  
  7228.  
  7229.    
  7230.      <b style="color:green">In stock</b>
  7231.    
  7232.  
  7233.  
  7234.  
  7235.  
  7236.  
  7237.  
  7238.  
  7239.            </div>
  7240.          
  7241.  
  7242.          
  7243.            
  7244.          
  7245.        
  7246.  
  7247.        
  7248.          <div class="productitem--description">
  7249.            <p>4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable</p>
  7250.  
  7251.            
  7252.          </div>
  7253.        
  7254.      </div>
  7255.  
  7256.      
  7257.        
  7258.          
  7259.          
  7260.          
  7261.  
  7262.          
  7263.          
  7264.  
  7265.          
  7266.  
  7267.          
  7268.  
  7269.          <div class="productitem--actions" data-product-actions>
  7270.            <div class="productitem--listview-price">
  7271.              
  7272.  
  7273.  
  7274.  
  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. <div class="price productitem__price ">
  7303.  
  7304.    <div
  7305.      class="price__compare-at visible"
  7306.      data-price-compare-container
  7307.    >
  7308.  
  7309.      
  7310.        <span class="money price__original" data-price-original></span>
  7311.      
  7312.    </div>
  7313.  
  7314.  
  7315.    
  7316.      
  7317.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7318.        
  7319.          <span class="visually-hidden">Original price</span>
  7320.          <span class="money price__compare-at--min" data-price-compare-min>
  7321.            $30.99
  7322.          </span>
  7323.          -
  7324.          <span class="visually-hidden">Original price</span>
  7325.          <span class="money price__compare-at--max" data-price-compare-max>
  7326.            $30.99
  7327.          </span>
  7328.        
  7329.      </div>
  7330.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7331.        <span class="visually-hidden">Original price</span>
  7332.        <span class="money price__compare-at--single" data-price-compare>
  7333.          
  7334.        </span>
  7335.      </div>
  7336.    
  7337.  
  7338.  
  7339.  <div class="price__current price__current--emphasize " data-price-container>
  7340.  
  7341.    
  7342.  
  7343.    
  7344.      
  7345.      
  7346.      <span class="money" data-price>
  7347.        $30.99
  7348.      </span>
  7349.    
  7350.    
  7351.  </div>
  7352.  
  7353.  
  7354.    
  7355.    <div class="price__current--hidden" data-current-price-range-hidden>
  7356.      
  7357.        <span class="money price__current--min" data-price-min>$30.99</span>
  7358.        -
  7359.        <span class="money price__current--max" data-price-max>$30.99</span>
  7360.      
  7361.    </div>
  7362.    <div class="price__current--hidden" data-current-price-hidden>
  7363.      <span class="visually-hidden">Current price</span>
  7364.      <span class="money" data-price>
  7365.        $30.99
  7366.      </span>
  7367.    </div>
  7368.  
  7369.  
  7370.  
  7371.    
  7372.    
  7373.    
  7374.    
  7375.  
  7376.    <div
  7377.      class="
  7378.        productitem__unit-price
  7379.        hidden
  7380.      "
  7381.      data-unit-price
  7382.    >
  7383.      <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>
  7384.    </div>
  7385.  
  7386.  
  7387.  
  7388. </div>
  7389.  
  7390.  
  7391.            </div>
  7392.  
  7393.            <div class="productitem--listview-badge">
  7394.              
  7395.  
  7396.  
  7397.  
  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.            </div>
  7423.  
  7424.            
  7425.              <div
  7426.                class="
  7427.                  productitem--action
  7428.                  quickshop-button
  7429.                  
  7430.                "
  7431.              >
  7432.                <button
  7433.                  class="productitem--action-trigger button-secondary"
  7434.                  data-quickshop-full
  7435.                  
  7436.                  
  7437.                  type="button"
  7438.                >
  7439.                  Quick shop
  7440.                </button>
  7441.              </div>
  7442.            
  7443.  
  7444.            
  7445.              <div
  7446.                class="
  7447.                  productitem--action
  7448.                  atc--button
  7449.                  
  7450.                "
  7451.              >
  7452.                <button
  7453.                  class="productitem--action-trigger productitem--action-atc button-primary"
  7454.                  type="button"
  7455.                  aria-label="Add to cart"
  7456.                  
  7457.                    data-quick-buy
  7458.                  
  7459.                  data-variant-id="12583329333271"
  7460.                  
  7461.                >
  7462.                  <span class="atc-button--text">
  7463.                    Add to cart
  7464.                  </span>
  7465.                  <span class="atc-button--icon"><svg
  7466.  aria-hidden="true"
  7467.  focusable="false"
  7468.  role="presentation"
  7469.  width="26"
  7470.  height="26"
  7471.  viewBox="0 0 26 26"
  7472.  xmlns="http://www.w3.org/2000/svg"
  7473. >
  7474.  <g fill-rule="nonzero" fill="currentColor">
  7475.    <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"/>
  7476.  </g>
  7477. </svg></span>
  7478.                </button>
  7479.              </div>
  7480.            
  7481.          </div>
  7482.        
  7483.      
  7484.    </div>
  7485.  </div>
  7486.  
  7487.  
  7488.    <script type="application/json" data-quick-buy-settings>
  7489.      {
  7490.        "cart_redirection": true,
  7491.        "money_format": "${{amount}}"
  7492.      }
  7493.    </script>
  7494.  
  7495. </li>
  7496.    
  7497.      
  7498.  
  7499.  
  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. <li
  7535.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  7536.  data-product-item
  7537.  data-product-quickshop-url="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7538.  
  7539. >
  7540.  <div class="productitem" data-product-item-content>
  7541.    
  7542.    
  7543.    
  7544.    
  7545.  
  7546.    
  7547.  
  7548.    
  7549.  
  7550.    <div class="productitem__container">
  7551.      
  7552.  
  7553.      <div class="productitem__image-container">
  7554.        <a target="_blank"
  7555.          class="productitem--image-link"
  7556.          href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7557.          aria-label="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7558.          tabindex="-1"
  7559.          data-product-page-link
  7560.        >
  7561.          <figure
  7562.            class="productitem--image"
  7563.            data-product-item-image
  7564.            
  7565.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7566.            
  7567.          >
  7568.            
  7569.              
  7570.              
  7571.  
  7572.  
  7573.    <noscript data-rimg-noscript>
  7574.      <img loading="lazy"
  7575.        
  7576.          src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7577.        
  7578.  
  7579.        alt="MacBook Pro"
  7580.        data-rimg="noscript"
  7581.        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"
  7582.        class="productitem--image-primary"
  7583.        
  7584.        
  7585.      >
  7586.    </noscript>
  7587.  
  7588.  
  7589.  <img loading="lazy"
  7590.    
  7591.      src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7592.    
  7593.    alt="MacBook Pro"
  7594.  
  7595.    
  7596.      data-rimg="lazy"
  7597.      data-rimg-scale="1"
  7598.      data-rimg-template="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_{size}.jpg?v=1726123088"
  7599.      data-rimg-max="1000x1000"
  7600.      data-rimg-crop="false"
  7601.      
  7602.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7603.    
  7604.  
  7605.    class="productitem--image-primary"
  7606.    
  7607.    
  7608.  >
  7609.  
  7610.  
  7611.  
  7612.  <div data-rimg-canvas></div>
  7613.  
  7614.  
  7615.            
  7616.  
  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.          </figure>
  7646.        </a>
  7647.      </div><div class="productitem--info">
  7648.        
  7649.          
  7650.  
  7651.        
  7652.  
  7653.        
  7654.          
  7655.  
  7656.  
  7657.  
  7658.  
  7659.  
  7660.  
  7661.  
  7662.  
  7663.  
  7664.  
  7665.  
  7666.  
  7667.  
  7668.  
  7669.  
  7670.  
  7671.  
  7672.  
  7673.  
  7674.  
  7675.  
  7676.  
  7677.  
  7678.  
  7679.  
  7680.  
  7681.  
  7682.  
  7683.  
  7684.  
  7685. <div class="price productitem__price ">
  7686.  
  7687.    <div
  7688.      class="price__compare-at visible"
  7689.      data-price-compare-container
  7690.    >
  7691.  
  7692.      
  7693.        <span class="money price__original" data-price-original></span>
  7694.      
  7695.    </div>
  7696.  
  7697.  
  7698.    
  7699.      
  7700.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7701.        
  7702.          <span class="visually-hidden">Original price</span>
  7703.          <span class="money price__compare-at--min" data-price-compare-min>
  7704.            $34.98
  7705.          </span>
  7706.          -
  7707.          <span class="visually-hidden">Original price</span>
  7708.          <span class="money price__compare-at--max" data-price-compare-max>
  7709.            $34.98
  7710.          </span>
  7711.        
  7712.      </div>
  7713.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7714.        <span class="visually-hidden">Original price</span>
  7715.        <span class="money price__compare-at--single" data-price-compare>
  7716.          
  7717.        </span>
  7718.      </div>
  7719.    
  7720.  
  7721.  
  7722.  <div class="price__current price__current--emphasize " data-price-container>
  7723.  
  7724.    
  7725.  
  7726.    
  7727.      
  7728.      
  7729.      <span class="money" data-price>
  7730.        $34.98
  7731.      </span>
  7732.    
  7733.    
  7734.  </div>
  7735.  
  7736.  
  7737.    
  7738.    <div class="price__current--hidden" data-current-price-range-hidden>
  7739.      
  7740.        <span class="money price__current--min" data-price-min>$34.98</span>
  7741.        -
  7742.        <span class="money price__current--max" data-price-max>$34.98</span>
  7743.      
  7744.    </div>
  7745.    <div class="price__current--hidden" data-current-price-hidden>
  7746.      <span class="visually-hidden">Current price</span>
  7747.      <span class="money" data-price>
  7748.        $34.98
  7749.      </span>
  7750.    </div>
  7751.  
  7752.  
  7753.  
  7754.    
  7755.    
  7756.    
  7757.    
  7758.  
  7759.    <div
  7760.      class="
  7761.        productitem__unit-price
  7762.        hidden
  7763.      "
  7764.      data-unit-price
  7765.    >
  7766.      <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>
  7767.    </div>
  7768.  
  7769.  
  7770.  
  7771. </div>
  7772.  
  7773.  
  7774.        
  7775.  
  7776.        <h2 class="productitem--title">
  7777.          <a href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011" data-product-page-link>
  7778.            60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011
  7779.          </a>
  7780.        </h2>
  7781.  
  7782.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7783.        <div class="star_container 6872720015447"></div>
  7784.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7785.  
  7786.        
  7787.          
  7788.            <span class="productitem--vendor">
  7789.              <a href="/collections/vendors?q=Apple" title="Apple">Apple</a>
  7790.            </span>
  7791.          
  7792.        
  7793.  
  7794.        
  7795.  
  7796.        
  7797.          
  7798.            <div class="productitem__stock-level">
  7799.              <!--
  7800.  
  7801.  
  7802.  
  7803.  
  7804.  
  7805.  
  7806.  
  7807. <div class="product-stock-level-wrapper" >
  7808.  
  7809.    <span class="
  7810.  product-stock-level
  7811.  product-stock-level--continue-selling
  7812.  
  7813. ">
  7814.      
  7815.  
  7816.      <span class="product-stock-level__text">
  7817.        
  7818.        <div class="product-stock-level__badge-text">
  7819.          
  7820.  
  7821.    In stock
  7822.  
  7823.  
  7824.        </div>
  7825.      </span>
  7826.    </span>
  7827.  
  7828. </div>
  7829. -->
  7830.              
  7831.  
  7832.  
  7833.    
  7834.      <b style="color:green">In stock</b>
  7835.    
  7836.  
  7837.  
  7838.  
  7839.  
  7840.  
  7841.  
  7842.  
  7843.            </div>
  7844.          
  7845.  
  7846.          
  7847.            
  7848.          
  7849.        
  7850.  
  7851.        
  7852.          <div class="productitem--description">
  7853.            <p>Plugs directly into AC outlet.
  7854. 60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011 
  7855. Input: 100-240V ~ 50-60Hz
  7856. Output: 1...</p>
  7857.  
  7858.            
  7859.              <a
  7860.                href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7861.                class="productitem--link"
  7862.                data-product-page-link
  7863.              >
  7864.                View full details
  7865.              </a>
  7866.            
  7867.          </div>
  7868.        
  7869.      </div>
  7870.  
  7871.      
  7872.        
  7873.          
  7874.          
  7875.          
  7876.  
  7877.          
  7878.          
  7879.  
  7880.          
  7881.  
  7882.          
  7883.  
  7884.          <div class="productitem--actions" data-product-actions>
  7885.            <div class="productitem--listview-price">
  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.  
  7917. <div class="price productitem__price ">
  7918.  
  7919.    <div
  7920.      class="price__compare-at visible"
  7921.      data-price-compare-container
  7922.    >
  7923.  
  7924.      
  7925.        <span class="money price__original" data-price-original></span>
  7926.      
  7927.    </div>
  7928.  
  7929.  
  7930.    
  7931.      
  7932.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7933.        
  7934.          <span class="visually-hidden">Original price</span>
  7935.          <span class="money price__compare-at--min" data-price-compare-min>
  7936.            $34.98
  7937.          </span>
  7938.          -
  7939.          <span class="visually-hidden">Original price</span>
  7940.          <span class="money price__compare-at--max" data-price-compare-max>
  7941.            $34.98
  7942.          </span>
  7943.        
  7944.      </div>
  7945.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7946.        <span class="visually-hidden">Original price</span>
  7947.        <span class="money price__compare-at--single" data-price-compare>
  7948.          
  7949.        </span>
  7950.      </div>
  7951.    
  7952.  
  7953.  
  7954.  <div class="price__current price__current--emphasize " data-price-container>
  7955.  
  7956.    
  7957.  
  7958.    
  7959.      
  7960.      
  7961.      <span class="money" data-price>
  7962.        $34.98
  7963.      </span>
  7964.    
  7965.    
  7966.  </div>
  7967.  
  7968.  
  7969.    
  7970.    <div class="price__current--hidden" data-current-price-range-hidden>
  7971.      
  7972.        <span class="money price__current--min" data-price-min>$34.98</span>
  7973.        -
  7974.        <span class="money price__current--max" data-price-max>$34.98</span>
  7975.      
  7976.    </div>
  7977.    <div class="price__current--hidden" data-current-price-hidden>
  7978.      <span class="visually-hidden">Current price</span>
  7979.      <span class="money" data-price>
  7980.        $34.98
  7981.      </span>
  7982.    </div>
  7983.  
  7984.  
  7985.  
  7986.    
  7987.    
  7988.    
  7989.    
  7990.  
  7991.    <div
  7992.      class="
  7993.        productitem__unit-price
  7994.        hidden
  7995.      "
  7996.      data-unit-price
  7997.    >
  7998.      <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>
  7999.    </div>
  8000.  
  8001.  
  8002.  
  8003. </div>
  8004.  
  8005.  
  8006.            </div>
  8007.  
  8008.            <div class="productitem--listview-badge">
  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.  
  8037.            </div>
  8038.  
  8039.            
  8040.              <div
  8041.                class="
  8042.                  productitem--action
  8043.                  quickshop-button
  8044.                  
  8045.                "
  8046.              >
  8047.                <button
  8048.                  class="productitem--action-trigger button-secondary"
  8049.                  data-quickshop-full
  8050.                  
  8051.                  
  8052.                  type="button"
  8053.                >
  8054.                  Quick shop
  8055.                </button>
  8056.              </div>
  8057.            
  8058.  
  8059.            
  8060.              <div
  8061.                class="
  8062.                  productitem--action
  8063.                  atc--button
  8064.                  
  8065.                "
  8066.              >
  8067.                <button
  8068.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8069.                  type="button"
  8070.                  aria-label="Add to cart"
  8071.                  
  8072.                    data-quick-buy
  8073.                  
  8074.                  data-variant-id="40156967370839"
  8075.                  
  8076.                >
  8077.                  <span class="atc-button--text">
  8078.                    Add to cart
  8079.                  </span>
  8080.                  <span class="atc-button--icon"><svg
  8081.  aria-hidden="true"
  8082.  focusable="false"
  8083.  role="presentation"
  8084.  width="26"
  8085.  height="26"
  8086.  viewBox="0 0 26 26"
  8087.  xmlns="http://www.w3.org/2000/svg"
  8088. >
  8089.  <g fill-rule="nonzero" fill="currentColor">
  8090.    <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"/>
  8091.  </g>
  8092. </svg></span>
  8093.                </button>
  8094.              </div>
  8095.            
  8096.          </div>
  8097.        
  8098.      
  8099.    </div>
  8100.  </div>
  8101.  
  8102.  
  8103.    <script type="application/json" data-quick-buy-settings>
  8104.      {
  8105.        "cart_redirection": true,
  8106.        "money_format": "${{amount}}"
  8107.      }
  8108.    </script>
  8109.  
  8110. </li>
  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.  
  8149. <li
  8150.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8151.  data-product-item
  8152.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8153.  
  8154. >
  8155.  <div class="productitem" data-product-item-content>
  8156.    
  8157.    
  8158.    
  8159.    
  8160.  
  8161.    
  8162.  
  8163.    
  8164.  
  8165.    <div class="productitem__container">
  8166.      
  8167.  
  8168.      <div class="productitem__image-container">
  8169.        <a target="_blank"
  8170.          class="productitem--image-link"
  8171.          href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8172.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8173.          tabindex="-1"
  8174.          data-product-page-link
  8175.        >
  8176.          <figure
  8177.            class="productitem--image"
  8178.            data-product-item-image
  8179.            
  8180.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8181.            
  8182.          >
  8183.            
  8184.              
  8185.              
  8186.  
  8187.  
  8188.    <noscript data-rimg-noscript>
  8189.      <img loading="lazy"
  8190.        
  8191.          src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8192.        
  8193.  
  8194.        alt=""
  8195.        data-rimg="noscript"
  8196.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953 1x"
  8197.        class="productitem--image-primary"
  8198.        
  8199.        
  8200.      >
  8201.    </noscript>
  8202.  
  8203.  
  8204.  <img loading="lazy"
  8205.    
  8206.      src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8207.    
  8208.    alt=""
  8209.  
  8210.    
  8211.      data-rimg="lazy"
  8212.      data-rimg-scale="1"
  8213.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_{size}.jpg?v=1648096953"
  8214.      data-rimg-max="500x500"
  8215.      data-rimg-crop="false"
  8216.      
  8217.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8218.    
  8219.  
  8220.    class="productitem--image-primary"
  8221.    
  8222.    
  8223.  >
  8224.  
  8225.  
  8226.  
  8227.  <div data-rimg-canvas></div>
  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.  
  8260.          </figure>
  8261.        </a>
  8262.      </div><div class="productitem--info">
  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.  
  8300. <div class="price productitem__price ">
  8301.  
  8302.    <div
  8303.      class="price__compare-at visible"
  8304.      data-price-compare-container
  8305.    >
  8306.  
  8307.      
  8308.        <span class="money price__original" data-price-original></span>
  8309.      
  8310.    </div>
  8311.  
  8312.  
  8313.    
  8314.      
  8315.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8316.        
  8317.          <span class="visually-hidden">Original price</span>
  8318.          <span class="money price__compare-at--min" data-price-compare-min>
  8319.            $247.99
  8320.          </span>
  8321.          -
  8322.          <span class="visually-hidden">Original price</span>
  8323.          <span class="money price__compare-at--max" data-price-compare-max>
  8324.            $247.99
  8325.          </span>
  8326.        
  8327.      </div>
  8328.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8329.        <span class="visually-hidden">Original price</span>
  8330.        <span class="money price__compare-at--single" data-price-compare>
  8331.          
  8332.        </span>
  8333.      </div>
  8334.    
  8335.  
  8336.  
  8337.  <div class="price__current price__current--emphasize " data-price-container>
  8338.  
  8339.    
  8340.  
  8341.    
  8342.      
  8343.      
  8344.      <span class="money" data-price>
  8345.        $247.99
  8346.      </span>
  8347.    
  8348.    
  8349.  </div>
  8350.  
  8351.  
  8352.    
  8353.    <div class="price__current--hidden" data-current-price-range-hidden>
  8354.      
  8355.        <span class="money price__current--min" data-price-min>$247.99</span>
  8356.        -
  8357.        <span class="money price__current--max" data-price-max>$247.99</span>
  8358.      
  8359.    </div>
  8360.    <div class="price__current--hidden" data-current-price-hidden>
  8361.      <span class="visually-hidden">Current price</span>
  8362.      <span class="money" data-price>
  8363.        $247.99
  8364.      </span>
  8365.    </div>
  8366.  
  8367.  
  8368.  
  8369.    
  8370.    
  8371.    
  8372.    
  8373.  
  8374.    <div
  8375.      class="
  8376.        productitem__unit-price
  8377.        hidden
  8378.      "
  8379.      data-unit-price
  8380.    >
  8381.      <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>
  8382.    </div>
  8383.  
  8384.  
  8385.  
  8386. </div>
  8387.  
  8388.  
  8389.        
  8390.  
  8391.        <h2 class="productitem--title">
  8392.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8" data-product-page-link>
  8393.            15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8
  8394.          </a>
  8395.        </h2>
  8396.  
  8397.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8398.        <div class="star_container 3933207593047"></div>
  8399.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8400.  
  8401.        
  8402.          
  8403.            <span class="productitem--vendor">
  8404.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  8405.            </span>
  8406.          
  8407.        
  8408.  
  8409.        
  8410.  
  8411.        
  8412.          
  8413.            <div class="productitem__stock-level">
  8414.              <!--
  8415.  
  8416.  
  8417.  
  8418.  
  8419.  
  8420.  
  8421.  
  8422. <div class="product-stock-level-wrapper" >
  8423.  
  8424.    <span class="
  8425.  product-stock-level
  8426.  product-stock-level--continue-selling
  8427.  
  8428. ">
  8429.      
  8430.  
  8431.      <span class="product-stock-level__text">
  8432.        
  8433.        <div class="product-stock-level__badge-text">
  8434.          
  8435.  
  8436.    In stock
  8437.  
  8438.  
  8439.        </div>
  8440.      </span>
  8441.    </span>
  8442.  
  8443. </div>
  8444. -->
  8445.              
  8446.  
  8447.  
  8448.    
  8449.      <b style="color:green">In stock</b>
  8450.    
  8451.  
  8452.  
  8453.  
  8454.  
  8455.  
  8456.  
  8457.  
  8458.            </div>
  8459.          
  8460.  
  8461.          
  8462.            
  8463.          
  8464.        
  8465.  
  8466.        
  8467.          <div class="productitem--description">
  8468.            <p>
  8469. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  8470.  
  8471. **This screen will only work if your laptop is one of the models below that ca...</p>
  8472.  
  8473.            
  8474.              <a
  8475.                href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8476.                class="productitem--link"
  8477.                data-product-page-link
  8478.              >
  8479.                View full details
  8480.              </a>
  8481.            
  8482.          </div>
  8483.        
  8484.      </div>
  8485.  
  8486.      
  8487.        
  8488.          
  8489.          
  8490.          
  8491.  
  8492.          
  8493.          
  8494.  
  8495.          
  8496.  
  8497.          
  8498.  
  8499.          <div class="productitem--actions" data-product-actions>
  8500.            <div class="productitem--listview-price">
  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.  
  8532. <div class="price productitem__price ">
  8533.  
  8534.    <div
  8535.      class="price__compare-at visible"
  8536.      data-price-compare-container
  8537.    >
  8538.  
  8539.      
  8540.        <span class="money price__original" data-price-original></span>
  8541.      
  8542.    </div>
  8543.  
  8544.  
  8545.    
  8546.      
  8547.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8548.        
  8549.          <span class="visually-hidden">Original price</span>
  8550.          <span class="money price__compare-at--min" data-price-compare-min>
  8551.            $247.99
  8552.          </span>
  8553.          -
  8554.          <span class="visually-hidden">Original price</span>
  8555.          <span class="money price__compare-at--max" data-price-compare-max>
  8556.            $247.99
  8557.          </span>
  8558.        
  8559.      </div>
  8560.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8561.        <span class="visually-hidden">Original price</span>
  8562.        <span class="money price__compare-at--single" data-price-compare>
  8563.          
  8564.        </span>
  8565.      </div>
  8566.    
  8567.  
  8568.  
  8569.  <div class="price__current price__current--emphasize " data-price-container>
  8570.  
  8571.    
  8572.  
  8573.    
  8574.      
  8575.      
  8576.      <span class="money" data-price>
  8577.        $247.99
  8578.      </span>
  8579.    
  8580.    
  8581.  </div>
  8582.  
  8583.  
  8584.    
  8585.    <div class="price__current--hidden" data-current-price-range-hidden>
  8586.      
  8587.        <span class="money price__current--min" data-price-min>$247.99</span>
  8588.        -
  8589.        <span class="money price__current--max" data-price-max>$247.99</span>
  8590.      
  8591.    </div>
  8592.    <div class="price__current--hidden" data-current-price-hidden>
  8593.      <span class="visually-hidden">Current price</span>
  8594.      <span class="money" data-price>
  8595.        $247.99
  8596.      </span>
  8597.    </div>
  8598.  
  8599.  
  8600.  
  8601.    
  8602.    
  8603.    
  8604.    
  8605.  
  8606.    <div
  8607.      class="
  8608.        productitem__unit-price
  8609.        hidden
  8610.      "
  8611.      data-unit-price
  8612.    >
  8613.      <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>
  8614.    </div>
  8615.  
  8616.  
  8617.  
  8618. </div>
  8619.  
  8620.  
  8621.            </div>
  8622.  
  8623.            <div class="productitem--listview-badge">
  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.  
  8652.            </div>
  8653.  
  8654.            
  8655.              <div
  8656.                class="
  8657.                  productitem--action
  8658.                  quickshop-button
  8659.                  
  8660.                "
  8661.              >
  8662.                <button
  8663.                  class="productitem--action-trigger button-secondary"
  8664.                  data-quickshop-full
  8665.                  
  8666.                  
  8667.                  type="button"
  8668.                >
  8669.                  Quick shop
  8670.                </button>
  8671.              </div>
  8672.            
  8673.  
  8674.            
  8675.              <div
  8676.                class="
  8677.                  productitem--action
  8678.                  atc--button
  8679.                  
  8680.                "
  8681.              >
  8682.                <button
  8683.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8684.                  type="button"
  8685.                  aria-label="Add to cart"
  8686.                  
  8687.                    data-quick-buy
  8688.                  
  8689.                  data-variant-id="29531492974679"
  8690.                  
  8691.                >
  8692.                  <span class="atc-button--text">
  8693.                    Add to cart
  8694.                  </span>
  8695.                  <span class="atc-button--icon"><svg
  8696.  aria-hidden="true"
  8697.  focusable="false"
  8698.  role="presentation"
  8699.  width="26"
  8700.  height="26"
  8701.  viewBox="0 0 26 26"
  8702.  xmlns="http://www.w3.org/2000/svg"
  8703. >
  8704.  <g fill-rule="nonzero" fill="currentColor">
  8705.    <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"/>
  8706.  </g>
  8707. </svg></span>
  8708.                </button>
  8709.              </div>
  8710.            
  8711.          </div>
  8712.        
  8713.      
  8714.    </div>
  8715.  </div>
  8716.  
  8717.  
  8718.    <script type="application/json" data-quick-buy-settings>
  8719.      {
  8720.        "cart_redirection": true,
  8721.        "money_format": "${{amount}}"
  8722.      }
  8723.    </script>
  8724.  
  8725. </li>
  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.  
  8764. <li
  8765.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8766.  data-product-item
  8767.  data-product-quickshop-url="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8768.  
  8769. >
  8770.  <div class="productitem" data-product-item-content>
  8771.    
  8772.    
  8773.    
  8774.    
  8775.  
  8776.    
  8777.  
  8778.    
  8779.  
  8780.    <div class="productitem__container">
  8781.      
  8782.  
  8783.      <div class="productitem__image-container">
  8784.        <a target="_blank"
  8785.          class="productitem--image-link"
  8786.          href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8787.          aria-label="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8788.          tabindex="-1"
  8789.          data-product-page-link
  8790.        >
  8791.          <figure
  8792.            class="productitem--image"
  8793.            data-product-item-image
  8794.            
  8795.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8796.            
  8797.          >
  8798.            
  8799.              
  8800.              
  8801.  
  8802.  
  8803.    <noscript data-rimg-noscript>
  8804.      <img loading="lazy"
  8805.        
  8806.          src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  8807.        
  8808.  
  8809.        alt="Updated alt text"
  8810.        data-rimg="noscript"
  8811.        srcset="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908 1x"
  8812.        class="productitem--image-primary"
  8813.        
  8814.        
  8815.      >
  8816.    </noscript>
  8817.  
  8818.  
  8819.  <img loading="lazy"
  8820.    
  8821.      src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  8822.    
  8823.    alt="Updated alt text"
  8824.  
  8825.    
  8826.      data-rimg="lazy"
  8827.      data-rimg-scale="1"
  8828.      data-rimg-template="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_{size}.jpg?v=1680602908"
  8829.      data-rimg-max="500x500"
  8830.      data-rimg-crop="false"
  8831.      
  8832.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8833.    
  8834.  
  8835.    class="productitem--image-primary"
  8836.    
  8837.    
  8838.  >
  8839.  
  8840.  
  8841.  
  8842.  <div data-rimg-canvas></div>
  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.  
  8875.          </figure>
  8876.        </a>
  8877.      </div><div class="productitem--info">
  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.  
  8915. <div class="price productitem__price ">
  8916.  
  8917.    <div
  8918.      class="price__compare-at visible"
  8919.      data-price-compare-container
  8920.    >
  8921.  
  8922.      
  8923.        <span class="money price__original" data-price-original></span>
  8924.      
  8925.    </div>
  8926.  
  8927.  
  8928.    
  8929.      
  8930.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8931.        
  8932.          <span class="visually-hidden">Original price</span>
  8933.          <span class="money price__compare-at--min" data-price-compare-min>
  8934.            $47.97
  8935.          </span>
  8936.          -
  8937.          <span class="visually-hidden">Original price</span>
  8938.          <span class="money price__compare-at--max" data-price-compare-max>
  8939.            $47.97
  8940.          </span>
  8941.        
  8942.      </div>
  8943.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8944.        <span class="visually-hidden">Original price</span>
  8945.        <span class="money price__compare-at--single" data-price-compare>
  8946.          
  8947.        </span>
  8948.      </div>
  8949.    
  8950.  
  8951.  
  8952.  <div class="price__current price__current--emphasize " data-price-container>
  8953.  
  8954.    
  8955.  
  8956.    
  8957.      
  8958.      
  8959.      <span class="money" data-price>
  8960.        $47.97
  8961.      </span>
  8962.    
  8963.    
  8964.  </div>
  8965.  
  8966.  
  8967.    
  8968.    <div class="price__current--hidden" data-current-price-range-hidden>
  8969.      
  8970.        <span class="money price__current--min" data-price-min>$47.97</span>
  8971.        -
  8972.        <span class="money price__current--max" data-price-max>$47.97</span>
  8973.      
  8974.    </div>
  8975.    <div class="price__current--hidden" data-current-price-hidden>
  8976.      <span class="visually-hidden">Current price</span>
  8977.      <span class="money" data-price>
  8978.        $47.97
  8979.      </span>
  8980.    </div>
  8981.  
  8982.  
  8983.  
  8984.    
  8985.    
  8986.    
  8987.    
  8988.  
  8989.    <div
  8990.      class="
  8991.        productitem__unit-price
  8992.        hidden
  8993.      "
  8994.      data-unit-price
  8995.    >
  8996.      <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>
  8997.    </div>
  8998.  
  8999.  
  9000.  
  9001. </div>
  9002.  
  9003.  
  9004.        
  9005.  
  9006.        <h2 class="productitem--title">
  9007.          <a href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23" data-product-page-link>
  9008.            19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9009.          </a>
  9010.        </h2>
  9011.  
  9012.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9013.        <div class="star_container 6872273420375"></div>
  9014.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9015.  
  9016.        
  9017.          
  9018.            <span class="productitem--vendor">
  9019.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  9020.            </span>
  9021.          
  9022.        
  9023.  
  9024.        
  9025.  
  9026.        
  9027.          
  9028.            <div class="productitem__stock-level">
  9029.              <!--
  9030.  
  9031.  
  9032.  
  9033.  
  9034.  
  9035.  
  9036.  
  9037. <div class="product-stock-level-wrapper" >
  9038.  
  9039.    <span class="
  9040.  product-stock-level
  9041.  product-stock-level--continue-selling
  9042.  
  9043. ">
  9044.      
  9045.  
  9046.      <span class="product-stock-level__text">
  9047.        
  9048.        <div class="product-stock-level__badge-text">
  9049.          
  9050.  
  9051.    In stock
  9052.  
  9053.  
  9054.        </div>
  9055.      </span>
  9056.    </span>
  9057.  
  9058. </div>
  9059. -->
  9060.              
  9061.  
  9062.  
  9063.    
  9064.      <b style="color:green">In stock</b>
  9065.    
  9066.  
  9067.  
  9068.  
  9069.  
  9070.  
  9071.  
  9072.  
  9073.            </div>
  9074.          
  9075.  
  9076.          
  9077.            
  9078.          
  9079.        
  9080.  
  9081.        
  9082.          <div class="productitem--description">
  9083.            <p>19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9084. Includes power cord.
  9085.  
  9086. Input: 100-240V ~ 50-60Hz
  9087. Output: 19V –...</p>
  9088.  
  9089.            
  9090.              <a
  9091.                href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9092.                class="productitem--link"
  9093.                data-product-page-link
  9094.              >
  9095.                View full details
  9096.              </a>
  9097.            
  9098.          </div>
  9099.        
  9100.      </div>
  9101.  
  9102.      
  9103.        
  9104.          
  9105.          
  9106.          
  9107.  
  9108.          
  9109.          
  9110.  
  9111.          
  9112.  
  9113.          
  9114.  
  9115.          <div class="productitem--actions" data-product-actions>
  9116.            <div class="productitem--listview-price">
  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.  
  9148. <div class="price productitem__price ">
  9149.  
  9150.    <div
  9151.      class="price__compare-at visible"
  9152.      data-price-compare-container
  9153.    >
  9154.  
  9155.      
  9156.        <span class="money price__original" data-price-original></span>
  9157.      
  9158.    </div>
  9159.  
  9160.  
  9161.    
  9162.      
  9163.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9164.        
  9165.          <span class="visually-hidden">Original price</span>
  9166.          <span class="money price__compare-at--min" data-price-compare-min>
  9167.            $47.97
  9168.          </span>
  9169.          -
  9170.          <span class="visually-hidden">Original price</span>
  9171.          <span class="money price__compare-at--max" data-price-compare-max>
  9172.            $47.97
  9173.          </span>
  9174.        
  9175.      </div>
  9176.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9177.        <span class="visually-hidden">Original price</span>
  9178.        <span class="money price__compare-at--single" data-price-compare>
  9179.          
  9180.        </span>
  9181.      </div>
  9182.    
  9183.  
  9184.  
  9185.  <div class="price__current price__current--emphasize " data-price-container>
  9186.  
  9187.    
  9188.  
  9189.    
  9190.      
  9191.      
  9192.      <span class="money" data-price>
  9193.        $47.97
  9194.      </span>
  9195.    
  9196.    
  9197.  </div>
  9198.  
  9199.  
  9200.    
  9201.    <div class="price__current--hidden" data-current-price-range-hidden>
  9202.      
  9203.        <span class="money price__current--min" data-price-min>$47.97</span>
  9204.        -
  9205.        <span class="money price__current--max" data-price-max>$47.97</span>
  9206.      
  9207.    </div>
  9208.    <div class="price__current--hidden" data-current-price-hidden>
  9209.      <span class="visually-hidden">Current price</span>
  9210.      <span class="money" data-price>
  9211.        $47.97
  9212.      </span>
  9213.    </div>
  9214.  
  9215.  
  9216.  
  9217.    
  9218.    
  9219.    
  9220.    
  9221.  
  9222.    <div
  9223.      class="
  9224.        productitem__unit-price
  9225.        hidden
  9226.      "
  9227.      data-unit-price
  9228.    >
  9229.      <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>
  9230.    </div>
  9231.  
  9232.  
  9233.  
  9234. </div>
  9235.  
  9236.  
  9237.            </div>
  9238.  
  9239.            <div class="productitem--listview-badge">
  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.  
  9268.            </div>
  9269.  
  9270.            
  9271.              <div
  9272.                class="
  9273.                  productitem--action
  9274.                  quickshop-button
  9275.                  
  9276.                "
  9277.              >
  9278.                <button
  9279.                  class="productitem--action-trigger button-secondary"
  9280.                  data-quickshop-full
  9281.                  
  9282.                  
  9283.                  type="button"
  9284.                >
  9285.                  Quick shop
  9286.                </button>
  9287.              </div>
  9288.            
  9289.  
  9290.            
  9291.              <div
  9292.                class="
  9293.                  productitem--action
  9294.                  atc--button
  9295.                  
  9296.                "
  9297.              >
  9298.                <button
  9299.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9300.                  type="button"
  9301.                  aria-label="Add to cart"
  9302.                  
  9303.                    data-quick-buy
  9304.                  
  9305.                  data-variant-id="40155858534487"
  9306.                  
  9307.                >
  9308.                  <span class="atc-button--text">
  9309.                    Add to cart
  9310.                  </span>
  9311.                  <span class="atc-button--icon"><svg
  9312.  aria-hidden="true"
  9313.  focusable="false"
  9314.  role="presentation"
  9315.  width="26"
  9316.  height="26"
  9317.  viewBox="0 0 26 26"
  9318.  xmlns="http://www.w3.org/2000/svg"
  9319. >
  9320.  <g fill-rule="nonzero" fill="currentColor">
  9321.    <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"/>
  9322.  </g>
  9323. </svg></span>
  9324.                </button>
  9325.              </div>
  9326.            
  9327.          </div>
  9328.        
  9329.      
  9330.    </div>
  9331.  </div>
  9332.  
  9333.  
  9334.    <script type="application/json" data-quick-buy-settings>
  9335.      {
  9336.        "cart_redirection": true,
  9337.        "money_format": "${{amount}}"
  9338.      }
  9339.    </script>
  9340.  
  9341. </li>
  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.  
  9380. <li
  9381.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9382.  data-product-item
  9383.  data-product-quickshop-url="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9384.  
  9385. >
  9386.  <div class="productitem" data-product-item-content>
  9387.    
  9388.    
  9389.    
  9390.    
  9391.  
  9392.    
  9393.  
  9394.    
  9395.  
  9396.    <div class="productitem__container">
  9397.      
  9398.  
  9399.      <div class="productitem__image-container">
  9400.        <a target="_blank"
  9401.          class="productitem--image-link"
  9402.          href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9403.          aria-label="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9404.          tabindex="-1"
  9405.          data-product-page-link
  9406.        >
  9407.          <figure
  9408.            class="productitem--image"
  9409.            data-product-item-image
  9410.            
  9411.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9412.            
  9413.          >
  9414.            
  9415.              
  9416.              
  9417.  
  9418.  
  9419.    <noscript data-rimg-noscript>
  9420.      <img loading="lazy"
  9421.        
  9422.          src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9423.        
  9424.  
  9425.        alt=""
  9426.        data-rimg="noscript"
  9427.        srcset="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747 1x, //laptopparts.ca/cdn/shop/products/z1_799x799.jpg?v=1648128747 1.56x"
  9428.        class="productitem--image-primary"
  9429.        
  9430.        
  9431.      >
  9432.    </noscript>
  9433.  
  9434.  
  9435.  <img loading="lazy"
  9436.    
  9437.      src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9438.    
  9439.    alt=""
  9440.  
  9441.    
  9442.      data-rimg="lazy"
  9443.      data-rimg-scale="1"
  9444.      data-rimg-template="//laptopparts.ca/cdn/shop/products/z1_{size}.jpg?v=1648128747"
  9445.      data-rimg-max="800x800"
  9446.      data-rimg-crop="false"
  9447.      
  9448.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  9449.    
  9450.  
  9451.    class="productitem--image-primary"
  9452.    
  9453.    
  9454.  >
  9455.  
  9456.  
  9457.  
  9458.  <div data-rimg-canvas></div>
  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.  
  9491.          </figure>
  9492.        </a>
  9493.      </div><div class="productitem--info">
  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.  
  9531. <div class="price productitem__price ">
  9532.  
  9533.    <div
  9534.      class="price__compare-at visible"
  9535.      data-price-compare-container
  9536.    >
  9537.  
  9538.      
  9539.        <span class="money price__original" data-price-original></span>
  9540.      
  9541.    </div>
  9542.  
  9543.  
  9544.    
  9545.      
  9546.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9547.        
  9548.          <span class="visually-hidden">Original price</span>
  9549.          <span class="money price__compare-at--min" data-price-compare-min>
  9550.            $32.99
  9551.          </span>
  9552.          -
  9553.          <span class="visually-hidden">Original price</span>
  9554.          <span class="money price__compare-at--max" data-price-compare-max>
  9555.            $32.99
  9556.          </span>
  9557.        
  9558.      </div>
  9559.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9560.        <span class="visually-hidden">Original price</span>
  9561.        <span class="money price__compare-at--single" data-price-compare>
  9562.          
  9563.        </span>
  9564.      </div>
  9565.    
  9566.  
  9567.  
  9568.  <div class="price__current price__current--emphasize " data-price-container>
  9569.  
  9570.    
  9571.  
  9572.    
  9573.      
  9574.      
  9575.      <span class="money" data-price>
  9576.        $32.99
  9577.      </span>
  9578.    
  9579.    
  9580.  </div>
  9581.  
  9582.  
  9583.    
  9584.    <div class="price__current--hidden" data-current-price-range-hidden>
  9585.      
  9586.        <span class="money price__current--min" data-price-min>$32.99</span>
  9587.        -
  9588.        <span class="money price__current--max" data-price-max>$32.99</span>
  9589.      
  9590.    </div>
  9591.    <div class="price__current--hidden" data-current-price-hidden>
  9592.      <span class="visually-hidden">Current price</span>
  9593.      <span class="money" data-price>
  9594.        $32.99
  9595.      </span>
  9596.    </div>
  9597.  
  9598.  
  9599.  
  9600.    
  9601.    
  9602.    
  9603.    
  9604.  
  9605.    <div
  9606.      class="
  9607.        productitem__unit-price
  9608.        hidden
  9609.      "
  9610.      data-unit-price
  9611.    >
  9612.      <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>
  9613.    </div>
  9614.  
  9615.  
  9616.  
  9617. </div>
  9618.  
  9619.  
  9620.        
  9621.  
  9622.        <h2 class="productitem--title">
  9623.          <a href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable" data-product-page-link>
  9624.            2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable
  9625.          </a>
  9626.        </h2>
  9627.  
  9628.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9629.        <div class="star_container 4421896306775"></div>
  9630.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9631.  
  9632.        
  9633.          
  9634.            <span class="productitem--vendor">
  9635.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  9636.            </span>
  9637.          
  9638.        
  9639.  
  9640.        
  9641.  
  9642.        
  9643.          
  9644.            <div class="productitem__stock-level">
  9645.              <!--
  9646.  
  9647.  
  9648.  
  9649.  
  9650.  
  9651.  
  9652.  
  9653. <div class="product-stock-level-wrapper" >
  9654.  
  9655.    <span class="
  9656.  product-stock-level
  9657.  product-stock-level--continue-selling
  9658.  
  9659. ">
  9660.      
  9661.  
  9662.      <span class="product-stock-level__text">
  9663.        
  9664.        <div class="product-stock-level__badge-text">
  9665.          
  9666.  
  9667.    In stock
  9668.  
  9669.  
  9670.        </div>
  9671.      </span>
  9672.    </span>
  9673.  
  9674. </div>
  9675. -->
  9676.              
  9677.  
  9678.  
  9679.    
  9680.      <b style="color:green">In stock</b>
  9681.    
  9682.  
  9683.  
  9684.  
  9685.  
  9686.  
  9687.  
  9688.  
  9689.            </div>
  9690.          
  9691.  
  9692.          
  9693.            
  9694.          
  9695.        
  9696.  
  9697.        
  9698.          <div class="productitem--description">
  9699.            <p>Cable Length(approx.): 15cm ± 10% (Just Cable)Connector Type: 1.x SATA Power 15-pin, Male2 x Molex IDE 4-pin, Female</p>
  9700.  
  9701.            
  9702.          </div>
  9703.        
  9704.      </div>
  9705.  
  9706.      
  9707.        
  9708.          
  9709.          
  9710.          
  9711.  
  9712.          
  9713.          
  9714.  
  9715.          
  9716.  
  9717.          
  9718.  
  9719.          <div class="productitem--actions" data-product-actions>
  9720.            <div class="productitem--listview-price">
  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.  
  9752. <div class="price productitem__price ">
  9753.  
  9754.    <div
  9755.      class="price__compare-at visible"
  9756.      data-price-compare-container
  9757.    >
  9758.  
  9759.      
  9760.        <span class="money price__original" data-price-original></span>
  9761.      
  9762.    </div>
  9763.  
  9764.  
  9765.    
  9766.      
  9767.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9768.        
  9769.          <span class="visually-hidden">Original price</span>
  9770.          <span class="money price__compare-at--min" data-price-compare-min>
  9771.            $32.99
  9772.          </span>
  9773.          -
  9774.          <span class="visually-hidden">Original price</span>
  9775.          <span class="money price__compare-at--max" data-price-compare-max>
  9776.            $32.99
  9777.          </span>
  9778.        
  9779.      </div>
  9780.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9781.        <span class="visually-hidden">Original price</span>
  9782.        <span class="money price__compare-at--single" data-price-compare>
  9783.          
  9784.        </span>
  9785.      </div>
  9786.    
  9787.  
  9788.  
  9789.  <div class="price__current price__current--emphasize " data-price-container>
  9790.  
  9791.    
  9792.  
  9793.    
  9794.      
  9795.      
  9796.      <span class="money" data-price>
  9797.        $32.99
  9798.      </span>
  9799.    
  9800.    
  9801.  </div>
  9802.  
  9803.  
  9804.    
  9805.    <div class="price__current--hidden" data-current-price-range-hidden>
  9806.      
  9807.        <span class="money price__current--min" data-price-min>$32.99</span>
  9808.        -
  9809.        <span class="money price__current--max" data-price-max>$32.99</span>
  9810.      
  9811.    </div>
  9812.    <div class="price__current--hidden" data-current-price-hidden>
  9813.      <span class="visually-hidden">Current price</span>
  9814.      <span class="money" data-price>
  9815.        $32.99
  9816.      </span>
  9817.    </div>
  9818.  
  9819.  
  9820.  
  9821.    
  9822.    
  9823.    
  9824.    
  9825.  
  9826.    <div
  9827.      class="
  9828.        productitem__unit-price
  9829.        hidden
  9830.      "
  9831.      data-unit-price
  9832.    >
  9833.      <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>
  9834.    </div>
  9835.  
  9836.  
  9837.  
  9838. </div>
  9839.  
  9840.  
  9841.            </div>
  9842.  
  9843.            <div class="productitem--listview-badge">
  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.  
  9872.            </div>
  9873.  
  9874.            
  9875.              <div
  9876.                class="
  9877.                  productitem--action
  9878.                  quickshop-button
  9879.                  
  9880.                "
  9881.              >
  9882.                <button
  9883.                  class="productitem--action-trigger button-secondary"
  9884.                  data-quickshop-full
  9885.                  
  9886.                  
  9887.                  type="button"
  9888.                >
  9889.                  Quick shop
  9890.                </button>
  9891.              </div>
  9892.            
  9893.  
  9894.            
  9895.              <div
  9896.                class="
  9897.                  productitem--action
  9898.                  atc--button
  9899.                  
  9900.                "
  9901.              >
  9902.                <button
  9903.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9904.                  type="button"
  9905.                  aria-label="Add to cart"
  9906.                  
  9907.                    data-quick-buy
  9908.                  
  9909.                  data-variant-id="31550087692375"
  9910.                  
  9911.                >
  9912.                  <span class="atc-button--text">
  9913.                    Add to cart
  9914.                  </span>
  9915.                  <span class="atc-button--icon"><svg
  9916.  aria-hidden="true"
  9917.  focusable="false"
  9918.  role="presentation"
  9919.  width="26"
  9920.  height="26"
  9921.  viewBox="0 0 26 26"
  9922.  xmlns="http://www.w3.org/2000/svg"
  9923. >
  9924.  <g fill-rule="nonzero" fill="currentColor">
  9925.    <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"/>
  9926.  </g>
  9927. </svg></span>
  9928.                </button>
  9929.              </div>
  9930.            
  9931.          </div>
  9932.        
  9933.      
  9934.    </div>
  9935.  </div>
  9936.  
  9937.  
  9938.    <script type="application/json" data-quick-buy-settings>
  9939.      {
  9940.        "cart_redirection": true,
  9941.        "money_format": "${{amount}}"
  9942.      }
  9943.    </script>
  9944.  
  9945. </li>
  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.  
  9984. <li
  9985.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9986.  data-product-item
  9987.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  9988.  
  9989. >
  9990.  <div class="productitem" data-product-item-content>
  9991.    
  9992.    
  9993.    
  9994.    
  9995.  
  9996.    
  9997.  
  9998.    
  9999.  
  10000.    <div class="productitem__container">
  10001.      
  10002.  
  10003.      <div class="productitem__image-container">
  10004.        <a target="_blank"
  10005.          class="productitem--image-link"
  10006.          href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10007.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10008.          tabindex="-1"
  10009.          data-product-page-link
  10010.        >
  10011.          <figure
  10012.            class="productitem--image"
  10013.            data-product-item-image
  10014.            
  10015.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10016.            
  10017.          >
  10018.            
  10019.              
  10020.              
  10021.  
  10022.  
  10023.    <noscript data-rimg-noscript>
  10024.      <img loading="lazy"
  10025.        
  10026.          src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10027.        
  10028.  
  10029.        alt=""
  10030.        data-rimg="noscript"
  10031.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824 1x"
  10032.        class="productitem--image-primary"
  10033.        
  10034.        
  10035.      >
  10036.    </noscript>
  10037.  
  10038.  
  10039.  <img loading="lazy"
  10040.    
  10041.      src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10042.    
  10043.    alt=""
  10044.  
  10045.    
  10046.      data-rimg="lazy"
  10047.      data-rimg-scale="1"
  10048.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_{size}.jpg?v=1648039824"
  10049.      data-rimg-max="500x500"
  10050.      data-rimg-crop="false"
  10051.      
  10052.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  10053.    
  10054.  
  10055.    class="productitem--image-primary"
  10056.    
  10057.    
  10058.  >
  10059.  
  10060.  
  10061.  
  10062.  <div data-rimg-canvas></div>
  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.  
  10095.          </figure>
  10096.        </a>
  10097.      </div><div class="productitem--info">
  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.  
  10135. <div class="price productitem__price ">
  10136.  
  10137.    <div
  10138.      class="price__compare-at visible"
  10139.      data-price-compare-container
  10140.    >
  10141.  
  10142.      
  10143.        <span class="money price__original" data-price-original></span>
  10144.      
  10145.    </div>
  10146.  
  10147.  
  10148.    
  10149.      
  10150.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10151.        
  10152.          <span class="visually-hidden">Original price</span>
  10153.          <span class="money price__compare-at--min" data-price-compare-min>
  10154.            $247.99
  10155.          </span>
  10156.          -
  10157.          <span class="visually-hidden">Original price</span>
  10158.          <span class="money price__compare-at--max" data-price-compare-max>
  10159.            $247.99
  10160.          </span>
  10161.        
  10162.      </div>
  10163.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10164.        <span class="visually-hidden">Original price</span>
  10165.        <span class="money price__compare-at--single" data-price-compare>
  10166.          
  10167.        </span>
  10168.      </div>
  10169.    
  10170.  
  10171.  
  10172.  <div class="price__current price__current--emphasize " data-price-container>
  10173.  
  10174.    
  10175.  
  10176.    
  10177.      
  10178.      
  10179.      <span class="money" data-price>
  10180.        $247.99
  10181.      </span>
  10182.    
  10183.    
  10184.  </div>
  10185.  
  10186.  
  10187.    
  10188.    <div class="price__current--hidden" data-current-price-range-hidden>
  10189.      
  10190.        <span class="money price__current--min" data-price-min>$247.99</span>
  10191.        -
  10192.        <span class="money price__current--max" data-price-max>$247.99</span>
  10193.      
  10194.    </div>
  10195.    <div class="price__current--hidden" data-current-price-hidden>
  10196.      <span class="visually-hidden">Current price</span>
  10197.      <span class="money" data-price>
  10198.        $247.99
  10199.      </span>
  10200.    </div>
  10201.  
  10202.  
  10203.  
  10204.    
  10205.    
  10206.    
  10207.    
  10208.  
  10209.    <div
  10210.      class="
  10211.        productitem__unit-price
  10212.        hidden
  10213.      "
  10214.      data-unit-price
  10215.    >
  10216.      <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>
  10217.    </div>
  10218.  
  10219.  
  10220.  
  10221. </div>
  10222.  
  10223.  
  10224.        
  10225.  
  10226.        <h2 class="productitem--title">
  10227.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops" data-product-page-link>
  10228.            15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0
  10229.          </a>
  10230.        </h2>
  10231.  
  10232.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10233.        <div class="star_container 3929811091543"></div>
  10234.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10235.  
  10236.        
  10237.          
  10238.            <span class="productitem--vendor">
  10239.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  10240.            </span>
  10241.          
  10242.        
  10243.  
  10244.        
  10245.  
  10246.        
  10247.          
  10248.            <div class="productitem__stock-level">
  10249.              <!--
  10250.  
  10251.  
  10252.  
  10253.  
  10254.  
  10255.  
  10256.  
  10257. <div class="product-stock-level-wrapper" >
  10258.  
  10259.    <span class="
  10260.  product-stock-level
  10261.  product-stock-level--continue-selling
  10262.  
  10263. ">
  10264.      
  10265.  
  10266.      <span class="product-stock-level__text">
  10267.        
  10268.        <div class="product-stock-level__badge-text">
  10269.          
  10270.  
  10271.    In stock
  10272.  
  10273.  
  10274.        </div>
  10275.      </span>
  10276.    </span>
  10277.  
  10278. </div>
  10279. -->
  10280.              
  10281.  
  10282.  
  10283.    
  10284.      <b style="color:green">In stock</b>
  10285.    
  10286.  
  10287.  
  10288.  
  10289.  
  10290.  
  10291.  
  10292.  
  10293.            </div>
  10294.          
  10295.  
  10296.          
  10297.            
  10298.          
  10299.        
  10300.  
  10301.        
  10302.          <div class="productitem--description">
  10303.            <p>
  10304. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  10305.  
  10306. **This screen will only work if your laptop is one of the models below that ca...</p>
  10307.  
  10308.            
  10309.              <a
  10310.                href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10311.                class="productitem--link"
  10312.                data-product-page-link
  10313.              >
  10314.                View full details
  10315.              </a>
  10316.            
  10317.          </div>
  10318.        
  10319.      </div>
  10320.  
  10321.      
  10322.        
  10323.          
  10324.          
  10325.          
  10326.  
  10327.          
  10328.          
  10329.  
  10330.          
  10331.  
  10332.          
  10333.  
  10334.          <div class="productitem--actions" data-product-actions>
  10335.            <div class="productitem--listview-price">
  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.  
  10367. <div class="price productitem__price ">
  10368.  
  10369.    <div
  10370.      class="price__compare-at visible"
  10371.      data-price-compare-container
  10372.    >
  10373.  
  10374.      
  10375.        <span class="money price__original" data-price-original></span>
  10376.      
  10377.    </div>
  10378.  
  10379.  
  10380.    
  10381.      
  10382.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10383.        
  10384.          <span class="visually-hidden">Original price</span>
  10385.          <span class="money price__compare-at--min" data-price-compare-min>
  10386.            $247.99
  10387.          </span>
  10388.          -
  10389.          <span class="visually-hidden">Original price</span>
  10390.          <span class="money price__compare-at--max" data-price-compare-max>
  10391.            $247.99
  10392.          </span>
  10393.        
  10394.      </div>
  10395.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10396.        <span class="visually-hidden">Original price</span>
  10397.        <span class="money price__compare-at--single" data-price-compare>
  10398.          
  10399.        </span>
  10400.      </div>
  10401.    
  10402.  
  10403.  
  10404.  <div class="price__current price__current--emphasize " data-price-container>
  10405.  
  10406.    
  10407.  
  10408.    
  10409.      
  10410.      
  10411.      <span class="money" data-price>
  10412.        $247.99
  10413.      </span>
  10414.    
  10415.    
  10416.  </div>
  10417.  
  10418.  
  10419.    
  10420.    <div class="price__current--hidden" data-current-price-range-hidden>
  10421.      
  10422.        <span class="money price__current--min" data-price-min>$247.99</span>
  10423.        -
  10424.        <span class="money price__current--max" data-price-max>$247.99</span>
  10425.      
  10426.    </div>
  10427.    <div class="price__current--hidden" data-current-price-hidden>
  10428.      <span class="visually-hidden">Current price</span>
  10429.      <span class="money" data-price>
  10430.        $247.99
  10431.      </span>
  10432.    </div>
  10433.  
  10434.  
  10435.  
  10436.    
  10437.    
  10438.    
  10439.    
  10440.  
  10441.    <div
  10442.      class="
  10443.        productitem__unit-price
  10444.        hidden
  10445.      "
  10446.      data-unit-price
  10447.    >
  10448.      <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>
  10449.    </div>
  10450.  
  10451.  
  10452.  
  10453. </div>
  10454.  
  10455.  
  10456.            </div>
  10457.  
  10458.            <div class="productitem--listview-badge">
  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.  
  10487.            </div>
  10488.  
  10489.            
  10490.              <div
  10491.                class="
  10492.                  productitem--action
  10493.                  quickshop-button
  10494.                  
  10495.                "
  10496.              >
  10497.                <button
  10498.                  class="productitem--action-trigger button-secondary"
  10499.                  data-quickshop-full
  10500.                  
  10501.                  
  10502.                  type="button"
  10503.                >
  10504.                  Quick shop
  10505.                </button>
  10506.              </div>
  10507.            
  10508.  
  10509.            
  10510.              <div
  10511.                class="
  10512.                  productitem--action
  10513.                  atc--button
  10514.                  
  10515.                "
  10516.              >
  10517.                <button
  10518.                  class="productitem--action-trigger productitem--action-atc button-primary"
  10519.                  type="button"
  10520.                  aria-label="Add to cart"
  10521.                  
  10522.                    data-quick-buy
  10523.                  
  10524.                  data-variant-id="29564283224151"
  10525.                  
  10526.                >
  10527.                  <span class="atc-button--text">
  10528.                    Add to cart
  10529.                  </span>
  10530.                  <span class="atc-button--icon"><svg
  10531.  aria-hidden="true"
  10532.  focusable="false"
  10533.  role="presentation"
  10534.  width="26"
  10535.  height="26"
  10536.  viewBox="0 0 26 26"
  10537.  xmlns="http://www.w3.org/2000/svg"
  10538. >
  10539.  <g fill-rule="nonzero" fill="currentColor">
  10540.    <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"/>
  10541.  </g>
  10542. </svg></span>
  10543.                </button>
  10544.              </div>
  10545.            
  10546.          </div>
  10547.        
  10548.      
  10549.    </div>
  10550.  </div>
  10551.  
  10552.  
  10553.    <script type="application/json" data-quick-buy-settings>
  10554.      {
  10555.        "cart_redirection": true,
  10556.        "money_format": "${{amount}}"
  10557.      }
  10558.    </script>
  10559.  
  10560. </li>
  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.  
  10599. <li
  10600.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  10601.  data-product-item
  10602.  data-product-quickshop-url="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10603.  
  10604. >
  10605.  <div class="productitem" data-product-item-content>
  10606.    
  10607.    
  10608.    
  10609.    
  10610.  
  10611.    
  10612.  
  10613.    
  10614.  
  10615.    <div class="productitem__container">
  10616.      
  10617.  
  10618.      <div class="productitem__image-container">
  10619.        <a target="_blank"
  10620.          class="productitem--image-link"
  10621.          href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10622.          aria-label="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10623.          tabindex="-1"
  10624.          data-product-page-link
  10625.        >
  10626.          <figure
  10627.            class="productitem--image"
  10628.            data-product-item-image
  10629.            
  10630.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10631.            
  10632.          >
  10633.            
  10634.              
  10635.              
  10636.  
  10637.  
  10638.    <noscript data-rimg-noscript>
  10639.      <img loading="lazy"
  10640.        
  10641.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10642.        
  10643.  
  10644.        alt=""
  10645.        data-rimg="noscript"
  10646.        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"
  10647.        class="productitem--image-primary"
  10648.        
  10649.        
  10650.      >
  10651.    </noscript>
  10652.  
  10653.  
  10654.  <img loading="lazy"
  10655.    
  10656.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10657.    
  10658.    alt=""
  10659.  
  10660.    
  10661.      data-rimg="lazy"
  10662.      data-rimg-scale="1"
  10663.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_{size}.jpg?v=1648053007"
  10664.      data-rimg-max="600x600"
  10665.      data-rimg-crop="false"
  10666.      
  10667.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  10668.    
  10669.  
  10670.    class="productitem--image-primary"
  10671.    
  10672.    
  10673.  >
  10674.  
  10675.  
  10676.  
  10677.  <div data-rimg-canvas></div>
  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.  
  10710.          </figure>
  10711.        </a>
  10712.      </div><div class="productitem--info">
  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.  
  10750. <div class="price productitem__price ">
  10751.  
  10752.    <div
  10753.      class="price__compare-at visible"
  10754.      data-price-compare-container
  10755.    >
  10756.  
  10757.      
  10758.        <span class="money price__original" data-price-original></span>
  10759.      
  10760.    </div>
  10761.  
  10762.  
  10763.    
  10764.      
  10765.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10766.        
  10767.          <span class="visually-hidden">Original price</span>
  10768.          <span class="money price__compare-at--min" data-price-compare-min>
  10769.            $32.99
  10770.          </span>
  10771.          -
  10772.          <span class="visually-hidden">Original price</span>
  10773.          <span class="money price__compare-at--max" data-price-compare-max>
  10774.            $32.99
  10775.          </span>
  10776.        
  10777.      </div>
  10778.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10779.        <span class="visually-hidden">Original price</span>
  10780.        <span class="money price__compare-at--single" data-price-compare>
  10781.          
  10782.        </span>
  10783.      </div>
  10784.    
  10785.  
  10786.  
  10787.  <div class="price__current price__current--emphasize " data-price-container>
  10788.  
  10789.    
  10790.  
  10791.    
  10792.      
  10793.      
  10794.      <span class="money" data-price>
  10795.        $32.99
  10796.      </span>
  10797.    
  10798.    
  10799.  </div>
  10800.  
  10801.  
  10802.    
  10803.    <div class="price__current--hidden" data-current-price-range-hidden>
  10804.      
  10805.        <span class="money price__current--min" data-price-min>$32.99</span>
  10806.        -
  10807.        <span class="money price__current--max" data-price-max>$32.99</span>
  10808.      
  10809.    </div>
  10810.    <div class="price__current--hidden" data-current-price-hidden>
  10811.      <span class="visually-hidden">Current price</span>
  10812.      <span class="money" data-price>
  10813.        $32.99
  10814.      </span>
  10815.    </div>
  10816.  
  10817.  
  10818.  
  10819.    
  10820.    
  10821.    
  10822.    
  10823.  
  10824.    <div
  10825.      class="
  10826.        productitem__unit-price
  10827.        hidden
  10828.      "
  10829.      data-unit-price
  10830.    >
  10831.      <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>
  10832.    </div>
  10833.  
  10834.  
  10835.  
  10836. </div>
  10837.  
  10838.  
  10839.        
  10840.  
  10841.        <h2 class="productitem--title">
  10842.          <a href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  10843.            5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  10844.          </a>
  10845.        </h2>
  10846.  
  10847.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10848.        <div class="star_container 3483509915735"></div>
  10849.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10850.  
  10851.        
  10852.          
  10853.            <span class="productitem--vendor">
  10854.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  10855.            </span>
  10856.          
  10857.        
  10858.  
  10859.        
  10860.  
  10861.        
  10862.          
  10863.            <div class="productitem__stock-level">
  10864.              <!--
  10865.  
  10866.  
  10867.  
  10868.  
  10869.  
  10870.  
  10871.  
  10872. <div class="product-stock-level-wrapper" >
  10873.  
  10874.    <span class="
  10875.  product-stock-level
  10876.  product-stock-level--continue-selling
  10877.  
  10878. ">
  10879.      
  10880.  
  10881.      <span class="product-stock-level__text">
  10882.        
  10883.        <div class="product-stock-level__badge-text">
  10884.          
  10885.  
  10886.    In stock
  10887.  
  10888.  
  10889.        </div>
  10890.      </span>
  10891.    </span>
  10892.  
  10893. </div>
  10894. -->
  10895.              
  10896.  
  10897.  
  10898.    
  10899.      <b style="color:green">In stock</b>
  10900.    
  10901.  
  10902.  
  10903.  
  10904.  
  10905.  
  10906.  
  10907.  
  10908.            </div>
  10909.          
  10910.  
  10911.          
  10912.            
  10913.          
  10914.        
  10915.  
  10916.        
  10917.          <div class="productitem--description">
  10918.            <p>Plugs directly into AC outlet.
  10919.  
  10920. Input: 100-240V ~ 50-60Hz
  10921. Output: 12V – 1.5A 18W
  10922. Connector Tip: mini USB
  10923. Colour: Black
  10924.  
  10925. Compatible Part #s: KP.01...</p>
  10926.  
  10927.            
  10928.              <a
  10929.                href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10930.                class="productitem--link"
  10931.                data-product-page-link
  10932.              >
  10933.                View full details
  10934.              </a>
  10935.            
  10936.          </div>
  10937.        
  10938.      </div>
  10939.  
  10940.      
  10941.        
  10942.          
  10943.          
  10944.          
  10945.  
  10946.          
  10947.          
  10948.  
  10949.          
  10950.  
  10951.          
  10952.  
  10953.          <div class="productitem--actions" data-product-actions>
  10954.            <div class="productitem--listview-price">
  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.  
  10986. <div class="price productitem__price ">
  10987.  
  10988.    <div
  10989.      class="price__compare-at visible"
  10990.      data-price-compare-container
  10991.    >
  10992.  
  10993.      
  10994.        <span class="money price__original" data-price-original></span>
  10995.      
  10996.    </div>
  10997.  
  10998.  
  10999.    
  11000.      
  11001.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11002.        
  11003.          <span class="visually-hidden">Original price</span>
  11004.          <span class="money price__compare-at--min" data-price-compare-min>
  11005.            $32.99
  11006.          </span>
  11007.          -
  11008.          <span class="visually-hidden">Original price</span>
  11009.          <span class="money price__compare-at--max" data-price-compare-max>
  11010.            $32.99
  11011.          </span>
  11012.        
  11013.      </div>
  11014.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11015.        <span class="visually-hidden">Original price</span>
  11016.        <span class="money price__compare-at--single" data-price-compare>
  11017.          
  11018.        </span>
  11019.      </div>
  11020.    
  11021.  
  11022.  
  11023.  <div class="price__current price__current--emphasize " data-price-container>
  11024.  
  11025.    
  11026.  
  11027.    
  11028.      
  11029.      
  11030.      <span class="money" data-price>
  11031.        $32.99
  11032.      </span>
  11033.    
  11034.    
  11035.  </div>
  11036.  
  11037.  
  11038.    
  11039.    <div class="price__current--hidden" data-current-price-range-hidden>
  11040.      
  11041.        <span class="money price__current--min" data-price-min>$32.99</span>
  11042.        -
  11043.        <span class="money price__current--max" data-price-max>$32.99</span>
  11044.      
  11045.    </div>
  11046.    <div class="price__current--hidden" data-current-price-hidden>
  11047.      <span class="visually-hidden">Current price</span>
  11048.      <span class="money" data-price>
  11049.        $32.99
  11050.      </span>
  11051.    </div>
  11052.  
  11053.  
  11054.  
  11055.    
  11056.    
  11057.    
  11058.    
  11059.  
  11060.    <div
  11061.      class="
  11062.        productitem__unit-price
  11063.        hidden
  11064.      "
  11065.      data-unit-price
  11066.    >
  11067.      <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>
  11068.    </div>
  11069.  
  11070.  
  11071.  
  11072. </div>
  11073.  
  11074.  
  11075.            </div>
  11076.  
  11077.            <div class="productitem--listview-badge">
  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.  
  11106.            </div>
  11107.  
  11108.            
  11109.              <div
  11110.                class="
  11111.                  productitem--action
  11112.                  quickshop-button
  11113.                  
  11114.                "
  11115.              >
  11116.                <button
  11117.                  class="productitem--action-trigger button-secondary"
  11118.                  data-quickshop-full
  11119.                  
  11120.                  
  11121.                  type="button"
  11122.                >
  11123.                  Quick shop
  11124.                </button>
  11125.              </div>
  11126.            
  11127.  
  11128.            
  11129.              <div
  11130.                class="
  11131.                  productitem--action
  11132.                  atc--button
  11133.                  
  11134.                "
  11135.              >
  11136.                <button
  11137.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11138.                  type="button"
  11139.                  aria-label="Add to cart"
  11140.                  
  11141.                    data-quick-buy
  11142.                  
  11143.                  data-variant-id="39666212831319"
  11144.                  
  11145.                >
  11146.                  <span class="atc-button--text">
  11147.                    Add to cart
  11148.                  </span>
  11149.                  <span class="atc-button--icon"><svg
  11150.  aria-hidden="true"
  11151.  focusable="false"
  11152.  role="presentation"
  11153.  width="26"
  11154.  height="26"
  11155.  viewBox="0 0 26 26"
  11156.  xmlns="http://www.w3.org/2000/svg"
  11157. >
  11158.  <g fill-rule="nonzero" fill="currentColor">
  11159.    <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"/>
  11160.  </g>
  11161. </svg></span>
  11162.                </button>
  11163.              </div>
  11164.            
  11165.          </div>
  11166.        
  11167.      
  11168.    </div>
  11169.  </div>
  11170.  
  11171.  
  11172.    <script type="application/json" data-quick-buy-settings>
  11173.      {
  11174.        "cart_redirection": true,
  11175.        "money_format": "${{amount}}"
  11176.      }
  11177.    </script>
  11178.  
  11179. </li>
  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.  
  11218. <li
  11219.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11220.  data-product-item
  11221.  data-product-quickshop-url="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11222.  
  11223. >
  11224.  <div class="productitem" data-product-item-content>
  11225.    
  11226.    
  11227.    
  11228.    
  11229.  
  11230.    
  11231.  
  11232.    
  11233.  
  11234.    <div class="productitem__container">
  11235.      
  11236.  
  11237.      <div class="productitem__image-container">
  11238.        <a target="_blank"
  11239.          class="productitem--image-link"
  11240.          href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11241.          aria-label="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11242.          tabindex="-1"
  11243.          data-product-page-link
  11244.        >
  11245.          <figure
  11246.            class="productitem--image"
  11247.            data-product-item-image
  11248.            
  11249.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11250.            
  11251.          >
  11252.            
  11253.              
  11254.              
  11255.  
  11256.  
  11257.    <noscript data-rimg-noscript>
  11258.      <img loading="lazy"
  11259.        
  11260.          src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11261.        
  11262.  
  11263.        alt=""
  11264.        data-rimg="noscript"
  11265.        srcset="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863 1x"
  11266.        class="productitem--image-primary"
  11267.        
  11268.        
  11269.      >
  11270.    </noscript>
  11271.  
  11272.  
  11273.  <img loading="lazy"
  11274.    
  11275.      src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11276.    
  11277.    alt=""
  11278.  
  11279.    
  11280.      data-rimg="lazy"
  11281.      data-rimg-scale="1"
  11282.      data-rimg-template="//laptopparts.ca/cdn/shop/products/8291_{size}.jpg?v=1648090863"
  11283.      data-rimg-max="500x500"
  11284.      data-rimg-crop="false"
  11285.      
  11286.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  11287.    
  11288.  
  11289.    class="productitem--image-primary"
  11290.    
  11291.    
  11292.  >
  11293.  
  11294.  
  11295.  
  11296.  <div data-rimg-canvas></div>
  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.  
  11329.          </figure>
  11330.        </a>
  11331.      </div><div class="productitem--info">
  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.  
  11369. <div class="price productitem__price ">
  11370.  
  11371.    <div
  11372.      class="price__compare-at visible"
  11373.      data-price-compare-container
  11374.    >
  11375.  
  11376.      
  11377.        <span class="money price__original" data-price-original></span>
  11378.      
  11379.    </div>
  11380.  
  11381.  
  11382.    
  11383.      
  11384.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11385.        
  11386.          <span class="visually-hidden">Original price</span>
  11387.          <span class="money price__compare-at--min" data-price-compare-min>
  11388.            $100.99
  11389.          </span>
  11390.          -
  11391.          <span class="visually-hidden">Original price</span>
  11392.          <span class="money price__compare-at--max" data-price-compare-max>
  11393.            $100.99
  11394.          </span>
  11395.        
  11396.      </div>
  11397.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11398.        <span class="visually-hidden">Original price</span>
  11399.        <span class="money price__compare-at--single" data-price-compare>
  11400.          
  11401.        </span>
  11402.      </div>
  11403.    
  11404.  
  11405.  
  11406.  <div class="price__current price__current--emphasize " data-price-container>
  11407.  
  11408.    
  11409.  
  11410.    
  11411.      
  11412.      
  11413.      <span class="money" data-price>
  11414.        $100.99
  11415.      </span>
  11416.    
  11417.    
  11418.  </div>
  11419.  
  11420.  
  11421.    
  11422.    <div class="price__current--hidden" data-current-price-range-hidden>
  11423.      
  11424.        <span class="money price__current--min" data-price-min>$100.99</span>
  11425.        -
  11426.        <span class="money price__current--max" data-price-max>$100.99</span>
  11427.      
  11428.    </div>
  11429.    <div class="price__current--hidden" data-current-price-hidden>
  11430.      <span class="visually-hidden">Current price</span>
  11431.      <span class="money" data-price>
  11432.        $100.99
  11433.      </span>
  11434.    </div>
  11435.  
  11436.  
  11437.  
  11438.    
  11439.    
  11440.    
  11441.    
  11442.  
  11443.    <div
  11444.      class="
  11445.        productitem__unit-price
  11446.        hidden
  11447.      "
  11448.      data-unit-price
  11449.    >
  11450.      <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>
  11451.    </div>
  11452.  
  11453.  
  11454.  
  11455. </div>
  11456.  
  11457.  
  11458.        
  11459.  
  11460.        <h2 class="productitem--title">
  11461.          <a href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a" data-product-page-link>
  11462.            5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A
  11463.          </a>
  11464.        </h2>
  11465.  
  11466.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  11467.        <div class="star_container 592337698839"></div>
  11468.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  11469.  
  11470.        
  11471.          
  11472.            <span class="productitem--vendor">
  11473.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  11474.            </span>
  11475.          
  11476.        
  11477.  
  11478.        
  11479.  
  11480.        
  11481.          
  11482.            <div class="productitem__stock-level">
  11483.              <!--
  11484.  
  11485.  
  11486.  
  11487.  
  11488.  
  11489.  
  11490.  
  11491. <div class="product-stock-level-wrapper" >
  11492.  
  11493.    <span class="
  11494.  product-stock-level
  11495.  product-stock-level--continue-selling
  11496.  
  11497. ">
  11498.      
  11499.  
  11500.      <span class="product-stock-level__text">
  11501.        
  11502.        <div class="product-stock-level__badge-text">
  11503.          
  11504.  
  11505.    In stock
  11506.  
  11507.  
  11508.        </div>
  11509.      </span>
  11510.    </span>
  11511.  
  11512. </div>
  11513. -->
  11514.              
  11515.  
  11516.  
  11517.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  11518.  
  11519.  
  11520.  
  11521.  
  11522.            </div>
  11523.          
  11524.  
  11525.          
  11526.            
  11527.          
  11528.        
  11529.  
  11530.        
  11531.          <div class="productitem--description">
  11532.            <p>
  11533. Description: 5 slot printhead for select HP printers. This item is refurbished.  Compatible Part #'s: CB326-30002, CN642A.  Compatible Models: HP ...</p>
  11534.  
  11535.            
  11536.              <a
  11537.                href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11538.                class="productitem--link"
  11539.                data-product-page-link
  11540.              >
  11541.                View full details
  11542.              </a>
  11543.            
  11544.          </div>
  11545.        
  11546.      </div>
  11547.  
  11548.      
  11549.        
  11550.          
  11551.          
  11552.          
  11553.  
  11554.          
  11555.          
  11556.  
  11557.          
  11558.  
  11559.          
  11560.  
  11561.          <div class="productitem--actions" data-product-actions>
  11562.            <div class="productitem--listview-price">
  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.  
  11594. <div class="price productitem__price ">
  11595.  
  11596.    <div
  11597.      class="price__compare-at visible"
  11598.      data-price-compare-container
  11599.    >
  11600.  
  11601.      
  11602.        <span class="money price__original" data-price-original></span>
  11603.      
  11604.    </div>
  11605.  
  11606.  
  11607.    
  11608.      
  11609.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11610.        
  11611.          <span class="visually-hidden">Original price</span>
  11612.          <span class="money price__compare-at--min" data-price-compare-min>
  11613.            $100.99
  11614.          </span>
  11615.          -
  11616.          <span class="visually-hidden">Original price</span>
  11617.          <span class="money price__compare-at--max" data-price-compare-max>
  11618.            $100.99
  11619.          </span>
  11620.        
  11621.      </div>
  11622.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11623.        <span class="visually-hidden">Original price</span>
  11624.        <span class="money price__compare-at--single" data-price-compare>
  11625.          
  11626.        </span>
  11627.      </div>
  11628.    
  11629.  
  11630.  
  11631.  <div class="price__current price__current--emphasize " data-price-container>
  11632.  
  11633.    
  11634.  
  11635.    
  11636.      
  11637.      
  11638.      <span class="money" data-price>
  11639.        $100.99
  11640.      </span>
  11641.    
  11642.    
  11643.  </div>
  11644.  
  11645.  
  11646.    
  11647.    <div class="price__current--hidden" data-current-price-range-hidden>
  11648.      
  11649.        <span class="money price__current--min" data-price-min>$100.99</span>
  11650.        -
  11651.        <span class="money price__current--max" data-price-max>$100.99</span>
  11652.      
  11653.    </div>
  11654.    <div class="price__current--hidden" data-current-price-hidden>
  11655.      <span class="visually-hidden">Current price</span>
  11656.      <span class="money" data-price>
  11657.        $100.99
  11658.      </span>
  11659.    </div>
  11660.  
  11661.  
  11662.  
  11663.    
  11664.    
  11665.    
  11666.    
  11667.  
  11668.    <div
  11669.      class="
  11670.        productitem__unit-price
  11671.        hidden
  11672.      "
  11673.      data-unit-price
  11674.    >
  11675.      <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>
  11676.    </div>
  11677.  
  11678.  
  11679.  
  11680. </div>
  11681.  
  11682.  
  11683.            </div>
  11684.  
  11685.            <div class="productitem--listview-badge">
  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.  
  11714.            </div>
  11715.  
  11716.            
  11717.              <div
  11718.                class="
  11719.                  productitem--action
  11720.                  quickshop-button
  11721.                  
  11722.                "
  11723.              >
  11724.                <button
  11725.                  class="productitem--action-trigger button-secondary"
  11726.                  data-quickshop-full
  11727.                  
  11728.                  
  11729.                  type="button"
  11730.                >
  11731.                  Quick shop
  11732.                </button>
  11733.              </div>
  11734.            
  11735.  
  11736.            
  11737.              <div
  11738.                class="
  11739.                  productitem--action
  11740.                  atc--button
  11741.                  
  11742.                "
  11743.              >
  11744.                <button
  11745.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11746.                  type="button"
  11747.                  aria-label="Add to cart"
  11748.                  
  11749.                    data-quick-buy
  11750.                  
  11751.                  data-variant-id="6936707596311"
  11752.                  
  11753.                >
  11754.                  <span class="atc-button--text">
  11755.                    Add to cart
  11756.                  </span>
  11757.                  <span class="atc-button--icon"><svg
  11758.  aria-hidden="true"
  11759.  focusable="false"
  11760.  role="presentation"
  11761.  width="26"
  11762.  height="26"
  11763.  viewBox="0 0 26 26"
  11764.  xmlns="http://www.w3.org/2000/svg"
  11765. >
  11766.  <g fill-rule="nonzero" fill="currentColor">
  11767.    <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"/>
  11768.  </g>
  11769. </svg></span>
  11770.                </button>
  11771.              </div>
  11772.            
  11773.          </div>
  11774.        
  11775.      
  11776.    </div>
  11777.  </div>
  11778.  
  11779.  
  11780.    <script type="application/json" data-quick-buy-settings>
  11781.      {
  11782.        "cart_redirection": true,
  11783.        "money_format": "${{amount}}"
  11784.      }
  11785.    </script>
  11786.  
  11787. </li>
  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.  
  11826. <li
  11827.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11828.  data-product-item
  11829.  data-product-quickshop-url="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11830.  
  11831. >
  11832.  <div class="productitem" data-product-item-content>
  11833.    
  11834.    
  11835.    
  11836.    
  11837.  
  11838.    
  11839.  
  11840.    
  11841.  
  11842.    <div class="productitem__container">
  11843.      
  11844.  
  11845.      <div class="productitem__image-container">
  11846.        <a target="_blank"
  11847.          class="productitem--image-link"
  11848.          href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11849.          aria-label="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11850.          tabindex="-1"
  11851.          data-product-page-link
  11852.        >
  11853.          <figure
  11854.            class="productitem--image"
  11855.            data-product-item-image
  11856.            
  11857.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11858.            
  11859.          >
  11860.            
  11861.              
  11862.              
  11863.  
  11864.  
  11865.    <noscript data-rimg-noscript>
  11866.      <img loading="lazy"
  11867.        
  11868.          src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  11869.        
  11870.  
  11871.        alt=""
  11872.        data-rimg="noscript"
  11873.        srcset="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253 1x, //laptopparts.ca/cdn/shop/products/500gb_998x998.jpg?v=1697125253 1.95x"
  11874.        class="productitem--image-primary"
  11875.        
  11876.        
  11877.      >
  11878.    </noscript>
  11879.  
  11880.  
  11881.  <img loading="lazy"
  11882.    
  11883.      src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  11884.    
  11885.    alt=""
  11886.  
  11887.    
  11888.      data-rimg="lazy"
  11889.      data-rimg-scale="1"
  11890.      data-rimg-template="//laptopparts.ca/cdn/shop/products/500gb_{size}.jpg?v=1697125253"
  11891.      data-rimg-max="1000x1000"
  11892.      data-rimg-crop="false"
  11893.      
  11894.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  11895.    
  11896.  
  11897.    class="productitem--image-primary"
  11898.    
  11899.    
  11900.  >
  11901.  
  11902.  
  11903.  
  11904.  <div data-rimg-canvas></div>
  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.  
  11937.          </figure>
  11938.        </a>
  11939.      </div><div class="productitem--info">
  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.  
  11977. <div class="price productitem__price ">
  11978.  
  11979.    <div
  11980.      class="price__compare-at visible"
  11981.      data-price-compare-container
  11982.    >
  11983.  
  11984.      
  11985.        <span class="money price__original" data-price-original></span>
  11986.      
  11987.    </div>
  11988.  
  11989.  
  11990.    
  11991.      
  11992.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11993.        
  11994.          <span class="visually-hidden">Original price</span>
  11995.          <span class="money price__compare-at--min" data-price-compare-min>
  11996.            $56.99
  11997.          </span>
  11998.          -
  11999.          <span class="visually-hidden">Original price</span>
  12000.          <span class="money price__compare-at--max" data-price-compare-max>
  12001.            $56.99
  12002.          </span>
  12003.        
  12004.      </div>
  12005.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12006.        <span class="visually-hidden">Original price</span>
  12007.        <span class="money price__compare-at--single" data-price-compare>
  12008.          
  12009.        </span>
  12010.      </div>
  12011.    
  12012.  
  12013.  
  12014.  <div class="price__current price__current--emphasize " data-price-container>
  12015.  
  12016.    
  12017.  
  12018.    
  12019.      
  12020.      
  12021.      <span class="money" data-price>
  12022.        $56.99
  12023.      </span>
  12024.    
  12025.    
  12026.  </div>
  12027.  
  12028.  
  12029.    
  12030.    <div class="price__current--hidden" data-current-price-range-hidden>
  12031.      
  12032.        <span class="money price__current--min" data-price-min>$56.99</span>
  12033.        -
  12034.        <span class="money price__current--max" data-price-max>$56.99</span>
  12035.      
  12036.    </div>
  12037.    <div class="price__current--hidden" data-current-price-hidden>
  12038.      <span class="visually-hidden">Current price</span>
  12039.      <span class="money" data-price>
  12040.        $56.99
  12041.      </span>
  12042.    </div>
  12043.  
  12044.  
  12045.  
  12046.    
  12047.    
  12048.    
  12049.    
  12050.  
  12051.    <div
  12052.      class="
  12053.        productitem__unit-price
  12054.        hidden
  12055.      "
  12056.      data-unit-price
  12057.    >
  12058.      <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>
  12059.    </div>
  12060.  
  12061.  
  12062.  
  12063. </div>
  12064.  
  12065.  
  12066.        
  12067.  
  12068.        <h2 class="productitem--title">
  12069.          <a href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo" data-product-page-link>
  12070.            500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo
  12071.          </a>
  12072.        </h2>
  12073.  
  12074.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12075.        <div class="star_container 1362179063831"></div>
  12076.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12077.  
  12078.        
  12079.          
  12080.            <span class="productitem--vendor">
  12081.              <a href="/collections/vendors?q=Lenovo" title="Lenovo">Lenovo</a>
  12082.            </span>
  12083.          
  12084.        
  12085.  
  12086.        
  12087.  
  12088.        
  12089.          
  12090.            <div class="productitem__stock-level">
  12091.              <!--
  12092.  
  12093.  
  12094.  
  12095.  
  12096.  
  12097.  
  12098.  
  12099. <div class="product-stock-level-wrapper" >
  12100.  
  12101.    <span class="
  12102.  product-stock-level
  12103.  product-stock-level--continue-selling
  12104.  
  12105. ">
  12106.      
  12107.  
  12108.      <span class="product-stock-level__text">
  12109.        
  12110.        <div class="product-stock-level__badge-text">
  12111.          
  12112.  
  12113.    In stock
  12114.  
  12115.  
  12116.        </div>
  12117.      </span>
  12118.    </span>
  12119.  
  12120. </div>
  12121. -->
  12122.              
  12123.  
  12124.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12125.  
  12126.  
  12127.  
  12128.  
  12129.  
  12130.  
  12131.  
  12132.            </div>
  12133.          
  12134.  
  12135.          
  12136.            
  12137.          
  12138.        
  12139.  
  12140.        
  12141.          <div class="productitem--description">
  12142.            <p>500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo</p>
  12143.  
  12144.            
  12145.          </div>
  12146.        
  12147.      </div>
  12148.  
  12149.      
  12150.        
  12151.          
  12152.          
  12153.          
  12154.  
  12155.          
  12156.          
  12157.  
  12158.          
  12159.  
  12160.          
  12161.  
  12162.          <div class="productitem--actions" data-product-actions>
  12163.            <div class="productitem--listview-price">
  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.  
  12195. <div class="price productitem__price ">
  12196.  
  12197.    <div
  12198.      class="price__compare-at visible"
  12199.      data-price-compare-container
  12200.    >
  12201.  
  12202.      
  12203.        <span class="money price__original" data-price-original></span>
  12204.      
  12205.    </div>
  12206.  
  12207.  
  12208.    
  12209.      
  12210.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12211.        
  12212.          <span class="visually-hidden">Original price</span>
  12213.          <span class="money price__compare-at--min" data-price-compare-min>
  12214.            $56.99
  12215.          </span>
  12216.          -
  12217.          <span class="visually-hidden">Original price</span>
  12218.          <span class="money price__compare-at--max" data-price-compare-max>
  12219.            $56.99
  12220.          </span>
  12221.        
  12222.      </div>
  12223.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12224.        <span class="visually-hidden">Original price</span>
  12225.        <span class="money price__compare-at--single" data-price-compare>
  12226.          
  12227.        </span>
  12228.      </div>
  12229.    
  12230.  
  12231.  
  12232.  <div class="price__current price__current--emphasize " data-price-container>
  12233.  
  12234.    
  12235.  
  12236.    
  12237.      
  12238.      
  12239.      <span class="money" data-price>
  12240.        $56.99
  12241.      </span>
  12242.    
  12243.    
  12244.  </div>
  12245.  
  12246.  
  12247.    
  12248.    <div class="price__current--hidden" data-current-price-range-hidden>
  12249.      
  12250.        <span class="money price__current--min" data-price-min>$56.99</span>
  12251.        -
  12252.        <span class="money price__current--max" data-price-max>$56.99</span>
  12253.      
  12254.    </div>
  12255.    <div class="price__current--hidden" data-current-price-hidden>
  12256.      <span class="visually-hidden">Current price</span>
  12257.      <span class="money" data-price>
  12258.        $56.99
  12259.      </span>
  12260.    </div>
  12261.  
  12262.  
  12263.  
  12264.    
  12265.    
  12266.    
  12267.    
  12268.  
  12269.    <div
  12270.      class="
  12271.        productitem__unit-price
  12272.        hidden
  12273.      "
  12274.      data-unit-price
  12275.    >
  12276.      <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>
  12277.    </div>
  12278.  
  12279.  
  12280.  
  12281. </div>
  12282.  
  12283.  
  12284.            </div>
  12285.  
  12286.            <div class="productitem--listview-badge">
  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.  
  12315.            </div>
  12316.  
  12317.            
  12318.              <div
  12319.                class="
  12320.                  productitem--action
  12321.                  quickshop-button
  12322.                  
  12323.                "
  12324.              >
  12325.                <button
  12326.                  class="productitem--action-trigger button-secondary"
  12327.                  data-quickshop-full
  12328.                  
  12329.                  
  12330.                  type="button"
  12331.                >
  12332.                  Quick shop
  12333.                </button>
  12334.              </div>
  12335.            
  12336.  
  12337.            
  12338.              <div
  12339.                class="
  12340.                  productitem--action
  12341.                  atc--button
  12342.                  
  12343.                "
  12344.              >
  12345.                <button
  12346.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12347.                  type="button"
  12348.                  aria-label="Add to cart"
  12349.                  
  12350.                    data-quick-buy
  12351.                  
  12352.                  data-variant-id="12366737309719"
  12353.                  
  12354.                >
  12355.                  <span class="atc-button--text">
  12356.                    Add to cart
  12357.                  </span>
  12358.                  <span class="atc-button--icon"><svg
  12359.  aria-hidden="true"
  12360.  focusable="false"
  12361.  role="presentation"
  12362.  width="26"
  12363.  height="26"
  12364.  viewBox="0 0 26 26"
  12365.  xmlns="http://www.w3.org/2000/svg"
  12366. >
  12367.  <g fill-rule="nonzero" fill="currentColor">
  12368.    <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"/>
  12369.  </g>
  12370. </svg></span>
  12371.                </button>
  12372.              </div>
  12373.            
  12374.          </div>
  12375.        
  12376.      
  12377.    </div>
  12378.  </div>
  12379.  
  12380.  
  12381.    <script type="application/json" data-quick-buy-settings>
  12382.      {
  12383.        "cart_redirection": true,
  12384.        "money_format": "${{amount}}"
  12385.      }
  12386.    </script>
  12387.  
  12388. </li>
  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.  
  12427. <li
  12428.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  12429.  data-product-item
  12430.  data-product-quickshop-url="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12431.  
  12432. >
  12433.  <div class="productitem" data-product-item-content>
  12434.    
  12435.    
  12436.    
  12437.    
  12438.  
  12439.    
  12440.  
  12441.    
  12442.  
  12443.    <div class="productitem__container">
  12444.      
  12445.  
  12446.      <div class="productitem__image-container">
  12447.        <a target="_blank"
  12448.          class="productitem--image-link"
  12449.          href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12450.          aria-label="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12451.          tabindex="-1"
  12452.          data-product-page-link
  12453.        >
  12454.          <figure
  12455.            class="productitem--image"
  12456.            data-product-item-image
  12457.            
  12458.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  12459.            
  12460.          >
  12461.            
  12462.              
  12463.              
  12464.  
  12465.  
  12466.    <noscript data-rimg-noscript>
  12467.      <img loading="lazy"
  12468.        
  12469.          src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12470.        
  12471.  
  12472.        alt=""
  12473.        data-rimg="noscript"
  12474.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700 1x"
  12475.        class="productitem--image-primary"
  12476.        
  12477.        
  12478.      >
  12479.    </noscript>
  12480.  
  12481.  
  12482.  <img loading="lazy"
  12483.    
  12484.      src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12485.    
  12486.    alt=""
  12487.  
  12488.    
  12489.      data-rimg="lazy"
  12490.      data-rimg-scale="1"
  12491.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_{size}.jpg?v=1648042700"
  12492.      data-rimg-max="500x500"
  12493.      data-rimg-crop="false"
  12494.      
  12495.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  12496.    
  12497.  
  12498.    class="productitem--image-primary"
  12499.    
  12500.    
  12501.  >
  12502.  
  12503.  
  12504.  
  12505.  <div data-rimg-canvas></div>
  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.  
  12538.          </figure>
  12539.        </a>
  12540.      </div><div class="productitem--info">
  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.  
  12578. <div class="price productitem__price ">
  12579.  
  12580.    <div
  12581.      class="price__compare-at visible"
  12582.      data-price-compare-container
  12583.    >
  12584.  
  12585.      
  12586.        <span class="money price__original" data-price-original></span>
  12587.      
  12588.    </div>
  12589.  
  12590.  
  12591.    
  12592.      
  12593.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12594.        
  12595.          <span class="visually-hidden">Original price</span>
  12596.          <span class="money price__compare-at--min" data-price-compare-min>
  12597.            $48.99
  12598.          </span>
  12599.          -
  12600.          <span class="visually-hidden">Original price</span>
  12601.          <span class="money price__compare-at--max" data-price-compare-max>
  12602.            $48.99
  12603.          </span>
  12604.        
  12605.      </div>
  12606.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12607.        <span class="visually-hidden">Original price</span>
  12608.        <span class="money price__compare-at--single" data-price-compare>
  12609.          
  12610.        </span>
  12611.      </div>
  12612.    
  12613.  
  12614.  
  12615.  <div class="price__current price__current--emphasize " data-price-container>
  12616.  
  12617.    
  12618.  
  12619.    
  12620.      
  12621.      
  12622.      <span class="money" data-price>
  12623.        $48.99
  12624.      </span>
  12625.    
  12626.    
  12627.  </div>
  12628.  
  12629.  
  12630.    
  12631.    <div class="price__current--hidden" data-current-price-range-hidden>
  12632.      
  12633.        <span class="money price__current--min" data-price-min>$48.99</span>
  12634.        -
  12635.        <span class="money price__current--max" data-price-max>$48.99</span>
  12636.      
  12637.    </div>
  12638.    <div class="price__current--hidden" data-current-price-hidden>
  12639.      <span class="visually-hidden">Current price</span>
  12640.      <span class="money" data-price>
  12641.        $48.99
  12642.      </span>
  12643.    </div>
  12644.  
  12645.  
  12646.  
  12647.    
  12648.    
  12649.    
  12650.    
  12651.  
  12652.    <div
  12653.      class="
  12654.        productitem__unit-price
  12655.        hidden
  12656.      "
  12657.      data-unit-price
  12658.    >
  12659.      <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>
  12660.    </div>
  12661.  
  12662.  
  12663.  
  12664. </div>
  12665.  
  12666.  
  12667.        
  12668.  
  12669.        <h2 class="productitem--title">
  12670.          <a href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10" data-product-page-link>
  12671.            4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10
  12672.          </a>
  12673.        </h2>
  12674.  
  12675.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12676.        <div class="star_container 3929813123159"></div>
  12677.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12678.  
  12679.        
  12680.          
  12681.            <span class="productitem--vendor">
  12682.              <a href="/collections/vendors?q=Dell" title="Dell">Dell</a>
  12683.            </span>
  12684.          
  12685.        
  12686.  
  12687.        
  12688.  
  12689.        
  12690.          
  12691.            <div class="productitem__stock-level">
  12692.              <!--
  12693.  
  12694.  
  12695.  
  12696.  
  12697.  
  12698.  
  12699.  
  12700. <div class="product-stock-level-wrapper" >
  12701.  
  12702.    <span class="
  12703.  product-stock-level
  12704.  product-stock-level--continue-selling
  12705.  
  12706. ">
  12707.      
  12708.  
  12709.      <span class="product-stock-level__text">
  12710.        
  12711.        <div class="product-stock-level__badge-text">
  12712.          
  12713.  
  12714.    In stock
  12715.  
  12716.  
  12717.        </div>
  12718.      </span>
  12719.    </span>
  12720.  
  12721. </div>
  12722. -->
  12723.              
  12724.  
  12725.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12726.  
  12727.  
  12728.  
  12729.  
  12730.  
  12731.  
  12732.  
  12733.            </div>
  12734.          
  12735.  
  12736.          
  12737.            
  12738.          
  12739.        
  12740.  
  12741.        
  12742.          <div class="productitem--description">
  12743.            <p>
  12744. 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>
  12745.  
  12746.            
  12747.              <a
  12748.                href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12749.                class="productitem--link"
  12750.                data-product-page-link
  12751.              >
  12752.                View full details
  12753.              </a>
  12754.            
  12755.          </div>
  12756.        
  12757.      </div>
  12758.  
  12759.      
  12760.        
  12761.          
  12762.          
  12763.          
  12764.  
  12765.          
  12766.          
  12767.  
  12768.          
  12769.  
  12770.          
  12771.  
  12772.          <div class="productitem--actions" data-product-actions>
  12773.            <div class="productitem--listview-price">
  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.  
  12805. <div class="price productitem__price ">
  12806.  
  12807.    <div
  12808.      class="price__compare-at visible"
  12809.      data-price-compare-container
  12810.    >
  12811.  
  12812.      
  12813.        <span class="money price__original" data-price-original></span>
  12814.      
  12815.    </div>
  12816.  
  12817.  
  12818.    
  12819.      
  12820.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12821.        
  12822.          <span class="visually-hidden">Original price</span>
  12823.          <span class="money price__compare-at--min" data-price-compare-min>
  12824.            $48.99
  12825.          </span>
  12826.          -
  12827.          <span class="visually-hidden">Original price</span>
  12828.          <span class="money price__compare-at--max" data-price-compare-max>
  12829.            $48.99
  12830.          </span>
  12831.        
  12832.      </div>
  12833.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12834.        <span class="visually-hidden">Original price</span>
  12835.        <span class="money price__compare-at--single" data-price-compare>
  12836.          
  12837.        </span>
  12838.      </div>
  12839.    
  12840.  
  12841.  
  12842.  <div class="price__current price__current--emphasize " data-price-container>
  12843.  
  12844.    
  12845.  
  12846.    
  12847.      
  12848.      
  12849.      <span class="money" data-price>
  12850.        $48.99
  12851.      </span>
  12852.    
  12853.    
  12854.  </div>
  12855.  
  12856.  
  12857.    
  12858.    <div class="price__current--hidden" data-current-price-range-hidden>
  12859.      
  12860.        <span class="money price__current--min" data-price-min>$48.99</span>
  12861.        -
  12862.        <span class="money price__current--max" data-price-max>$48.99</span>
  12863.      
  12864.    </div>
  12865.    <div class="price__current--hidden" data-current-price-hidden>
  12866.      <span class="visually-hidden">Current price</span>
  12867.      <span class="money" data-price>
  12868.        $48.99
  12869.      </span>
  12870.    </div>
  12871.  
  12872.  
  12873.  
  12874.    
  12875.    
  12876.    
  12877.    
  12878.  
  12879.    <div
  12880.      class="
  12881.        productitem__unit-price
  12882.        hidden
  12883.      "
  12884.      data-unit-price
  12885.    >
  12886.      <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>
  12887.    </div>
  12888.  
  12889.  
  12890.  
  12891. </div>
  12892.  
  12893.  
  12894.            </div>
  12895.  
  12896.            <div class="productitem--listview-badge">
  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.  
  12925.            </div>
  12926.  
  12927.            
  12928.              <div
  12929.                class="
  12930.                  productitem--action
  12931.                  quickshop-button
  12932.                  
  12933.                "
  12934.              >
  12935.                <button
  12936.                  class="productitem--action-trigger button-secondary"
  12937.                  data-quickshop-full
  12938.                  
  12939.                  
  12940.                  type="button"
  12941.                >
  12942.                  Quick shop
  12943.                </button>
  12944.              </div>
  12945.            
  12946.  
  12947.            
  12948.              <div
  12949.                class="
  12950.                  productitem--action
  12951.                  atc--button
  12952.                  
  12953.                "
  12954.              >
  12955.                <button
  12956.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12957.                  type="button"
  12958.                  aria-label="Add to cart"
  12959.                  
  12960.                    data-quick-buy
  12961.                  
  12962.                  data-variant-id="29531497529431"
  12963.                  
  12964.                >
  12965.                  <span class="atc-button--text">
  12966.                    Add to cart
  12967.                  </span>
  12968.                  <span class="atc-button--icon"><svg
  12969.  aria-hidden="true"
  12970.  focusable="false"
  12971.  role="presentation"
  12972.  width="26"
  12973.  height="26"
  12974.  viewBox="0 0 26 26"
  12975.  xmlns="http://www.w3.org/2000/svg"
  12976. >
  12977.  <g fill-rule="nonzero" fill="currentColor">
  12978.    <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"/>
  12979.  </g>
  12980. </svg></span>
  12981.                </button>
  12982.              </div>
  12983.            
  12984.          </div>
  12985.        
  12986.      
  12987.    </div>
  12988.  </div>
  12989.  
  12990.  
  12991.    <script type="application/json" data-quick-buy-settings>
  12992.      {
  12993.        "cart_redirection": true,
  12994.        "money_format": "${{amount}}"
  12995.      }
  12996.    </script>
  12997.  
  12998. </li>
  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.  
  13037. <li
  13038.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13039.  data-product-item
  13040.  data-product-quickshop-url="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13041.  
  13042. >
  13043.  <div class="productitem" data-product-item-content>
  13044.    
  13045.    
  13046.    
  13047.    
  13048.  
  13049.    
  13050.  
  13051.    
  13052.  
  13053.    <div class="productitem__container">
  13054.      
  13055.  
  13056.      <div class="productitem__image-container">
  13057.        <a target="_blank"
  13058.          class="productitem--image-link"
  13059.          href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13060.          aria-label="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13061.          tabindex="-1"
  13062.          data-product-page-link
  13063.        >
  13064.          <figure
  13065.            class="productitem--image"
  13066.            data-product-item-image
  13067.            
  13068.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13069.            
  13070.          >
  13071.            
  13072.              
  13073.              
  13074.  
  13075.  
  13076.    <noscript data-rimg-noscript>
  13077.      <img loading="lazy"
  13078.        
  13079.          src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13080.        
  13081.  
  13082.        alt="925740-002"
  13083.        data-rimg="noscript"
  13084.        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"
  13085.        class="productitem--image-primary"
  13086.        
  13087.        
  13088.      >
  13089.    </noscript>
  13090.  
  13091.  
  13092.  <img loading="lazy"
  13093.    
  13094.      src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13095.    
  13096.    alt="925740-002"
  13097.  
  13098.    
  13099.      data-rimg="lazy"
  13100.      data-rimg-scale="1"
  13101.      data-rimg-template="//laptopparts.ca/cdn/shop/files/tpn-ca06_{size}.jpg?v=1721171198"
  13102.      data-rimg-max="1043x1043"
  13103.      data-rimg-crop="false"
  13104.      
  13105.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  13106.    
  13107.  
  13108.    class="productitem--image-primary"
  13109.    
  13110.    
  13111.  >
  13112.  
  13113.  
  13114.  
  13115.  <div data-rimg-canvas></div>
  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.  
  13148.          </figure>
  13149.        </a>
  13150.      </div><div class="productitem--info">
  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.  
  13188. <div class="price productitem__price ">
  13189.  
  13190.    <div
  13191.      class="price__compare-at visible"
  13192.      data-price-compare-container
  13193.    >
  13194.  
  13195.      
  13196.        <span class="money price__original" data-price-original></span>
  13197.      
  13198.    </div>
  13199.  
  13200.  
  13201.    
  13202.      
  13203.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13204.        
  13205.          <span class="visually-hidden">Original price</span>
  13206.          <span class="money price__compare-at--min" data-price-compare-min>
  13207.            $59.98
  13208.          </span>
  13209.          -
  13210.          <span class="visually-hidden">Original price</span>
  13211.          <span class="money price__compare-at--max" data-price-compare-max>
  13212.            $59.98
  13213.          </span>
  13214.        
  13215.      </div>
  13216.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13217.        <span class="visually-hidden">Original price</span>
  13218.        <span class="money price__compare-at--single" data-price-compare>
  13219.          
  13220.        </span>
  13221.      </div>
  13222.    
  13223.  
  13224.  
  13225.  <div class="price__current price__current--emphasize " data-price-container>
  13226.  
  13227.    
  13228.  
  13229.    
  13230.      
  13231.      
  13232.      <span class="money" data-price>
  13233.        $59.98
  13234.      </span>
  13235.    
  13236.    
  13237.  </div>
  13238.  
  13239.  
  13240.    
  13241.    <div class="price__current--hidden" data-current-price-range-hidden>
  13242.      
  13243.        <span class="money price__current--min" data-price-min>$59.98</span>
  13244.        -
  13245.        <span class="money price__current--max" data-price-max>$59.98</span>
  13246.      
  13247.    </div>
  13248.    <div class="price__current--hidden" data-current-price-hidden>
  13249.      <span class="visually-hidden">Current price</span>
  13250.      <span class="money" data-price>
  13251.        $59.98
  13252.      </span>
  13253.    </div>
  13254.  
  13255.  
  13256.  
  13257.    
  13258.    
  13259.    
  13260.    
  13261.  
  13262.    <div
  13263.      class="
  13264.        productitem__unit-price
  13265.        hidden
  13266.      "
  13267.      data-unit-price
  13268.    >
  13269.      <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>
  13270.    </div>
  13271.  
  13272.  
  13273.  
  13274. </div>
  13275.  
  13276.  
  13277.        
  13278.  
  13279.        <h2 class="productitem--title">
  13280.          <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>
  13281.            925740-002 Genuine 65W USB Type-C Adapter Charger for HP Elite X2 1012 G2 Elitebook x360
  13282.          </a>
  13283.        </h2>
  13284.  
  13285.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13286.        <div class="star_container 6881873985623"></div>
  13287.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13288.  
  13289.        
  13290.          
  13291.            <span class="productitem--vendor">
  13292.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  13293.            </span>
  13294.          
  13295.        
  13296.  
  13297.        
  13298.  
  13299.        
  13300.          
  13301.            <div class="productitem__stock-level">
  13302.              <!--
  13303.  
  13304.  
  13305.  
  13306.  
  13307.  
  13308.  
  13309.  
  13310. <div class="product-stock-level-wrapper" >
  13311.  
  13312.    <span class="
  13313.  product-stock-level
  13314.  product-stock-level--continue-selling
  13315.  
  13316. ">
  13317.      
  13318.  
  13319.      <span class="product-stock-level__text">
  13320.        
  13321.        <div class="product-stock-level__badge-text">
  13322.          
  13323.  
  13324.    In stock
  13325.  
  13326.  
  13327.        </div>
  13328.      </span>
  13329.    </span>
  13330.  
  13331. </div>
  13332. -->
  13333.              
  13334.  
  13335.  
  13336.    
  13337.      <b style="color:green">In stock</b>
  13338.    
  13339.  
  13340.  
  13341.  
  13342.  
  13343.  
  13344.  
  13345.  
  13346.            </div>
  13347.          
  13348.  
  13349.          
  13350.            
  13351.          
  13352.        
  13353.  
  13354.        
  13355.          <div class="productitem--description">
  13356.            <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>
  13357.  
  13358.            
  13359.              <a
  13360.                href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13361.                class="productitem--link"
  13362.                data-product-page-link
  13363.              >
  13364.                View full details
  13365.              </a>
  13366.            
  13367.          </div>
  13368.        
  13369.      </div>
  13370.  
  13371.      
  13372.        
  13373.          
  13374.          
  13375.          
  13376.  
  13377.          
  13378.          
  13379.  
  13380.          
  13381.  
  13382.          
  13383.  
  13384.          <div class="productitem--actions" data-product-actions>
  13385.            <div class="productitem--listview-price">
  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.  
  13417. <div class="price productitem__price ">
  13418.  
  13419.    <div
  13420.      class="price__compare-at visible"
  13421.      data-price-compare-container
  13422.    >
  13423.  
  13424.      
  13425.        <span class="money price__original" data-price-original></span>
  13426.      
  13427.    </div>
  13428.  
  13429.  
  13430.    
  13431.      
  13432.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13433.        
  13434.          <span class="visually-hidden">Original price</span>
  13435.          <span class="money price__compare-at--min" data-price-compare-min>
  13436.            $59.98
  13437.          </span>
  13438.          -
  13439.          <span class="visually-hidden">Original price</span>
  13440.          <span class="money price__compare-at--max" data-price-compare-max>
  13441.            $59.98
  13442.          </span>
  13443.        
  13444.      </div>
  13445.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13446.        <span class="visually-hidden">Original price</span>
  13447.        <span class="money price__compare-at--single" data-price-compare>
  13448.          
  13449.        </span>
  13450.      </div>
  13451.    
  13452.  
  13453.  
  13454.  <div class="price__current price__current--emphasize " data-price-container>
  13455.  
  13456.    
  13457.  
  13458.    
  13459.      
  13460.      
  13461.      <span class="money" data-price>
  13462.        $59.98
  13463.      </span>
  13464.    
  13465.    
  13466.  </div>
  13467.  
  13468.  
  13469.    
  13470.    <div class="price__current--hidden" data-current-price-range-hidden>
  13471.      
  13472.        <span class="money price__current--min" data-price-min>$59.98</span>
  13473.        -
  13474.        <span class="money price__current--max" data-price-max>$59.98</span>
  13475.      
  13476.    </div>
  13477.    <div class="price__current--hidden" data-current-price-hidden>
  13478.      <span class="visually-hidden">Current price</span>
  13479.      <span class="money" data-price>
  13480.        $59.98
  13481.      </span>
  13482.    </div>
  13483.  
  13484.  
  13485.  
  13486.    
  13487.    
  13488.    
  13489.    
  13490.  
  13491.    <div
  13492.      class="
  13493.        productitem__unit-price
  13494.        hidden
  13495.      "
  13496.      data-unit-price
  13497.    >
  13498.      <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>
  13499.    </div>
  13500.  
  13501.  
  13502.  
  13503. </div>
  13504.  
  13505.  
  13506.            </div>
  13507.  
  13508.            <div class="productitem--listview-badge">
  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.  
  13537.            </div>
  13538.  
  13539.            
  13540.              <div
  13541.                class="
  13542.                  productitem--action
  13543.                  quickshop-button
  13544.                  
  13545.                "
  13546.              >
  13547.                <button
  13548.                  class="productitem--action-trigger button-secondary"
  13549.                  data-quickshop-full
  13550.                  
  13551.                  
  13552.                  type="button"
  13553.                >
  13554.                  Quick shop
  13555.                </button>
  13556.              </div>
  13557.            
  13558.  
  13559.            
  13560.              <div
  13561.                class="
  13562.                  productitem--action
  13563.                  atc--button
  13564.                  
  13565.                "
  13566.              >
  13567.                <button
  13568.                  class="productitem--action-trigger productitem--action-atc button-primary"
  13569.                  type="button"
  13570.                  aria-label="Add to cart"
  13571.                  
  13572.                    data-quick-buy
  13573.                  
  13574.                  data-variant-id="40183331749975"
  13575.                  
  13576.                >
  13577.                  <span class="atc-button--text">
  13578.                    Add to cart
  13579.                  </span>
  13580.                  <span class="atc-button--icon"><svg
  13581.  aria-hidden="true"
  13582.  focusable="false"
  13583.  role="presentation"
  13584.  width="26"
  13585.  height="26"
  13586.  viewBox="0 0 26 26"
  13587.  xmlns="http://www.w3.org/2000/svg"
  13588. >
  13589.  <g fill-rule="nonzero" fill="currentColor">
  13590.    <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"/>
  13591.  </g>
  13592. </svg></span>
  13593.                </button>
  13594.              </div>
  13595.            
  13596.          </div>
  13597.        
  13598.      
  13599.    </div>
  13600.  </div>
  13601.  
  13602.  
  13603.    <script type="application/json" data-quick-buy-settings>
  13604.      {
  13605.        "cart_redirection": true,
  13606.        "money_format": "${{amount}}"
  13607.      }
  13608.    </script>
  13609.  
  13610. </li>
  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.  
  13649. <li
  13650.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13651.  data-product-item
  13652.  data-product-quickshop-url="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13653.  
  13654. >
  13655.  <div class="productitem" data-product-item-content>
  13656.    
  13657.    
  13658.    
  13659.    
  13660.  
  13661.    
  13662.  
  13663.    
  13664.  
  13665.    <div class="productitem__container">
  13666.      
  13667.  
  13668.      <div class="productitem__image-container">
  13669.        <a target="_blank"
  13670.          class="productitem--image-link"
  13671.          href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13672.          aria-label="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13673.          tabindex="-1"
  13674.          data-product-page-link
  13675.        >
  13676.          <figure
  13677.            class="productitem--image"
  13678.            data-product-item-image
  13679.            
  13680.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13681.            
  13682.          >
  13683.            
  13684.              
  13685.              
  13686.  
  13687.  
  13688.    <noscript data-rimg-noscript>
  13689.      <img loading="lazy"
  13690.        
  13691.          src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  13692.        
  13693.  
  13694.        alt=""
  13695.        data-rimg="noscript"
  13696.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166 1x"
  13697.        class="productitem--image-primary"
  13698.        
  13699.        
  13700.      >
  13701.    </noscript>
  13702.  
  13703.  
  13704.  <img loading="lazy"
  13705.    
  13706.      src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  13707.    
  13708.    alt=""
  13709.  
  13710.    
  13711.      data-rimg="lazy"
  13712.      data-rimg-scale="1"
  13713.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_{size}.jpg?v=1648046166"
  13714.      data-rimg-max="500x500"
  13715.      data-rimg-crop="false"
  13716.      
  13717.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  13718.    
  13719.  
  13720.    class="productitem--image-primary"
  13721.    
  13722.    
  13723.  >
  13724.  
  13725.  
  13726.  
  13727.  <div data-rimg-canvas></div>
  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.  
  13760.          </figure>
  13761.        </a>
  13762.      </div><div class="productitem--info">
  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.  
  13800. <div class="price productitem__price ">
  13801.  
  13802.    <div
  13803.      class="price__compare-at visible"
  13804.      data-price-compare-container
  13805.    >
  13806.  
  13807.      
  13808.        <span class="money price__original" data-price-original></span>
  13809.      
  13810.    </div>
  13811.  
  13812.  
  13813.    
  13814.      
  13815.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13816.        
  13817.          <span class="visually-hidden">Original price</span>
  13818.          <span class="money price__compare-at--min" data-price-compare-min>
  13819.            $48.99
  13820.          </span>
  13821.          -
  13822.          <span class="visually-hidden">Original price</span>
  13823.          <span class="money price__compare-at--max" data-price-compare-max>
  13824.            $48.99
  13825.          </span>
  13826.        
  13827.      </div>
  13828.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13829.        <span class="visually-hidden">Original price</span>
  13830.        <span class="money price__compare-at--single" data-price-compare>
  13831.          
  13832.        </span>
  13833.      </div>
  13834.    
  13835.  
  13836.  
  13837.  <div class="price__current price__current--emphasize " data-price-container>
  13838.  
  13839.    
  13840.  
  13841.    
  13842.      
  13843.      
  13844.      <span class="money" data-price>
  13845.        $48.99
  13846.      </span>
  13847.    
  13848.    
  13849.  </div>
  13850.  
  13851.  
  13852.    
  13853.    <div class="price__current--hidden" data-current-price-range-hidden>
  13854.      
  13855.        <span class="money price__current--min" data-price-min>$48.99</span>
  13856.        -
  13857.        <span class="money price__current--max" data-price-max>$48.99</span>
  13858.      
  13859.    </div>
  13860.    <div class="price__current--hidden" data-current-price-hidden>
  13861.      <span class="visually-hidden">Current price</span>
  13862.      <span class="money" data-price>
  13863.        $48.99
  13864.      </span>
  13865.    </div>
  13866.  
  13867.  
  13868.  
  13869.    
  13870.    
  13871.    
  13872.    
  13873.  
  13874.    <div
  13875.      class="
  13876.        productitem__unit-price
  13877.        hidden
  13878.      "
  13879.      data-unit-price
  13880.    >
  13881.      <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>
  13882.    </div>
  13883.  
  13884.  
  13885.  
  13886. </div>
  13887.  
  13888.  
  13889.        
  13890.  
  13891.        <h2 class="productitem--title">
  13892.          <a href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001" data-product-page-link>
  13893.            Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001
  13894.          </a>
  13895.        </h2>
  13896.  
  13897.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13898.        <div class="star_container 3929815122007"></div>
  13899.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13900.  
  13901.        
  13902.          
  13903.            <span class="productitem--vendor">
  13904.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  13905.            </span>
  13906.          
  13907.        
  13908.  
  13909.        
  13910.  
  13911.        
  13912.          
  13913.            <div class="productitem__stock-level">
  13914.              <!--
  13915.  
  13916.  
  13917.  
  13918.  
  13919.  
  13920.  
  13921.  
  13922. <div class="product-stock-level-wrapper" >
  13923.  
  13924.    <span class="
  13925.  product-stock-level
  13926.  product-stock-level--continue-selling
  13927.  
  13928. ">
  13929.      
  13930.  
  13931.      <span class="product-stock-level__text">
  13932.        
  13933.        <div class="product-stock-level__badge-text">
  13934.          
  13935.  
  13936.    In stock
  13937.  
  13938.  
  13939.        </div>
  13940.      </span>
  13941.    </span>
  13942.  
  13943. </div>
  13944. -->
  13945.              
  13946.  
  13947.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  13948.  
  13949.  
  13950.  
  13951.  
  13952.  
  13953.  
  13954.  
  13955.            </div>
  13956.          
  13957.  
  13958.          
  13959.            
  13960.          
  13961.        
  13962.  
  13963.        
  13964.          <div class="productitem--description">
  13965.            <p>
  13966. Description: New Acer server replacement case cooling fan.
  13967.  
  13968. Compatible Part #'s: HI.R4300.001, DS09225B12UP021.
  13969.  
  13970. Compatible Models:
  13971. Acer Altos AT1...</p>
  13972.  
  13973.            
  13974.              <a
  13975.                href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13976.                class="productitem--link"
  13977.                data-product-page-link
  13978.              >
  13979.                View full details
  13980.              </a>
  13981.            
  13982.          </div>
  13983.        
  13984.      </div>
  13985.  
  13986.      
  13987.        
  13988.          
  13989.          
  13990.          
  13991.  
  13992.          
  13993.          
  13994.  
  13995.          
  13996.  
  13997.          
  13998.  
  13999.          <div class="productitem--actions" data-product-actions>
  14000.            <div class="productitem--listview-price">
  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.  
  14032. <div class="price productitem__price ">
  14033.  
  14034.    <div
  14035.      class="price__compare-at visible"
  14036.      data-price-compare-container
  14037.    >
  14038.  
  14039.      
  14040.        <span class="money price__original" data-price-original></span>
  14041.      
  14042.    </div>
  14043.  
  14044.  
  14045.    
  14046.      
  14047.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14048.        
  14049.          <span class="visually-hidden">Original price</span>
  14050.          <span class="money price__compare-at--min" data-price-compare-min>
  14051.            $48.99
  14052.          </span>
  14053.          -
  14054.          <span class="visually-hidden">Original price</span>
  14055.          <span class="money price__compare-at--max" data-price-compare-max>
  14056.            $48.99
  14057.          </span>
  14058.        
  14059.      </div>
  14060.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14061.        <span class="visually-hidden">Original price</span>
  14062.        <span class="money price__compare-at--single" data-price-compare>
  14063.          
  14064.        </span>
  14065.      </div>
  14066.    
  14067.  
  14068.  
  14069.  <div class="price__current price__current--emphasize " data-price-container>
  14070.  
  14071.    
  14072.  
  14073.    
  14074.      
  14075.      
  14076.      <span class="money" data-price>
  14077.        $48.99
  14078.      </span>
  14079.    
  14080.    
  14081.  </div>
  14082.  
  14083.  
  14084.    
  14085.    <div class="price__current--hidden" data-current-price-range-hidden>
  14086.      
  14087.        <span class="money price__current--min" data-price-min>$48.99</span>
  14088.        -
  14089.        <span class="money price__current--max" data-price-max>$48.99</span>
  14090.      
  14091.    </div>
  14092.    <div class="price__current--hidden" data-current-price-hidden>
  14093.      <span class="visually-hidden">Current price</span>
  14094.      <span class="money" data-price>
  14095.        $48.99
  14096.      </span>
  14097.    </div>
  14098.  
  14099.  
  14100.  
  14101.    
  14102.    
  14103.    
  14104.    
  14105.  
  14106.    <div
  14107.      class="
  14108.        productitem__unit-price
  14109.        hidden
  14110.      "
  14111.      data-unit-price
  14112.    >
  14113.      <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>
  14114.    </div>
  14115.  
  14116.  
  14117.  
  14118. </div>
  14119.  
  14120.  
  14121.            </div>
  14122.  
  14123.            <div class="productitem--listview-badge">
  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.  
  14152.            </div>
  14153.  
  14154.            
  14155.              <div
  14156.                class="
  14157.                  productitem--action
  14158.                  quickshop-button
  14159.                  
  14160.                "
  14161.              >
  14162.                <button
  14163.                  class="productitem--action-trigger button-secondary"
  14164.                  data-quickshop-full
  14165.                  
  14166.                  
  14167.                  type="button"
  14168.                >
  14169.                  Quick shop
  14170.                </button>
  14171.              </div>
  14172.            
  14173.  
  14174.            
  14175.              <div
  14176.                class="
  14177.                  productitem--action
  14178.                  atc--button
  14179.                  
  14180.                "
  14181.              >
  14182.                <button
  14183.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14184.                  type="button"
  14185.                  aria-label="Add to cart"
  14186.                  
  14187.                    data-quick-buy
  14188.                  
  14189.                  data-variant-id="29507473014871"
  14190.                  
  14191.                >
  14192.                  <span class="atc-button--text">
  14193.                    Add to cart
  14194.                  </span>
  14195.                  <span class="atc-button--icon"><svg
  14196.  aria-hidden="true"
  14197.  focusable="false"
  14198.  role="presentation"
  14199.  width="26"
  14200.  height="26"
  14201.  viewBox="0 0 26 26"
  14202.  xmlns="http://www.w3.org/2000/svg"
  14203. >
  14204.  <g fill-rule="nonzero" fill="currentColor">
  14205.    <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"/>
  14206.  </g>
  14207. </svg></span>
  14208.                </button>
  14209.              </div>
  14210.            
  14211.          </div>
  14212.        
  14213.      
  14214.    </div>
  14215.  </div>
  14216.  
  14217.  
  14218.    <script type="application/json" data-quick-buy-settings>
  14219.      {
  14220.        "cart_redirection": true,
  14221.        "money_format": "${{amount}}"
  14222.      }
  14223.    </script>
  14224.  
  14225. </li>
  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.  
  14264. <li
  14265.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14266.  data-product-item
  14267.  data-product-quickshop-url="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14268.  
  14269. >
  14270.  <div class="productitem" data-product-item-content>
  14271.    
  14272.    
  14273.    
  14274.    
  14275.  
  14276.    
  14277.  
  14278.    
  14279.  
  14280.    <div class="productitem__container">
  14281.      
  14282.  
  14283.      <div class="productitem__image-container">
  14284.        <a target="_blank"
  14285.          class="productitem--image-link"
  14286.          href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14287.          aria-label="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14288.          tabindex="-1"
  14289.          data-product-page-link
  14290.        >
  14291.          <figure
  14292.            class="productitem--image"
  14293.            data-product-item-image
  14294.            
  14295.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14296.            
  14297.          >
  14298.            
  14299.              
  14300.              
  14301.  
  14302.  
  14303.    <noscript data-rimg-noscript>
  14304.      <img loading="lazy"
  14305.        
  14306.          src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14307.        
  14308.  
  14309.        alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14310.        data-rimg="noscript"
  14311.        srcset="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372 1x"
  14312.        class="productitem--image-primary"
  14313.        
  14314.        
  14315.      >
  14316.    </noscript>
  14317.  
  14318.  
  14319.  <img loading="lazy"
  14320.    
  14321.      src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14322.    
  14323.    alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14324.  
  14325.    
  14326.      data-rimg="lazy"
  14327.      data-rimg-scale="1"
  14328.      data-rimg-template="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_{size}.jpg?v=1715271372"
  14329.      data-rimg-max="500x500"
  14330.      data-rimg-crop="false"
  14331.      
  14332.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14333.    
  14334.  
  14335.    class="productitem--image-primary"
  14336.    
  14337.    
  14338.  >
  14339.  
  14340.  
  14341.  
  14342.  <div data-rimg-canvas></div>
  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.  
  14375.          </figure>
  14376.        </a>
  14377.      </div><div class="productitem--info">
  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.  
  14415. <div class="price productitem__price ">
  14416.  
  14417.    <div
  14418.      class="price__compare-at visible"
  14419.      data-price-compare-container
  14420.    >
  14421.  
  14422.      
  14423.        <span class="money price__original" data-price-original></span>
  14424.      
  14425.    </div>
  14426.  
  14427.  
  14428.    
  14429.      
  14430.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14431.        
  14432.          <span class="visually-hidden">Original price</span>
  14433.          <span class="money price__compare-at--min" data-price-compare-min>
  14434.            $100.99
  14435.          </span>
  14436.          -
  14437.          <span class="visually-hidden">Original price</span>
  14438.          <span class="money price__compare-at--max" data-price-compare-max>
  14439.            $100.99
  14440.          </span>
  14441.        
  14442.      </div>
  14443.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14444.        <span class="visually-hidden">Original price</span>
  14445.        <span class="money price__compare-at--single" data-price-compare>
  14446.          
  14447.        </span>
  14448.      </div>
  14449.    
  14450.  
  14451.  
  14452.  <div class="price__current price__current--emphasize " data-price-container>
  14453.  
  14454.    
  14455.  
  14456.    
  14457.      
  14458.      
  14459.      <span class="money" data-price>
  14460.        $100.99
  14461.      </span>
  14462.    
  14463.    
  14464.  </div>
  14465.  
  14466.  
  14467.    
  14468.    <div class="price__current--hidden" data-current-price-range-hidden>
  14469.      
  14470.        <span class="money price__current--min" data-price-min>$100.99</span>
  14471.        -
  14472.        <span class="money price__current--max" data-price-max>$100.99</span>
  14473.      
  14474.    </div>
  14475.    <div class="price__current--hidden" data-current-price-hidden>
  14476.      <span class="visually-hidden">Current price</span>
  14477.      <span class="money" data-price>
  14478.        $100.99
  14479.      </span>
  14480.    </div>
  14481.  
  14482.  
  14483.  
  14484.    
  14485.    
  14486.    
  14487.    
  14488.  
  14489.    <div
  14490.      class="
  14491.        productitem__unit-price
  14492.        hidden
  14493.      "
  14494.      data-unit-price
  14495.    >
  14496.      <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>
  14497.    </div>
  14498.  
  14499.  
  14500.  
  14501. </div>
  14502.  
  14503.  
  14504.        
  14505.  
  14506.        <h2 class="productitem--title">
  14507.          <a href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  14508.            Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual
  14509.          </a>
  14510.        </h2>
  14511.  
  14512.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  14513.        <div class="star_container 4451279622"></div>
  14514.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  14515.  
  14516.        
  14517.          
  14518.            <span class="productitem--vendor">
  14519.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  14520.            </span>
  14521.          
  14522.        
  14523.  
  14524.        
  14525.  
  14526.        
  14527.          
  14528.            <div class="productitem__stock-level">
  14529.              <!--
  14530.  
  14531.  
  14532.  
  14533.  
  14534.  
  14535.  
  14536.  
  14537. <div class="product-stock-level-wrapper" >
  14538.  
  14539.    <span class="
  14540.  product-stock-level
  14541.  product-stock-level--continue-selling
  14542.  
  14543. ">
  14544.      
  14545.  
  14546.      <span class="product-stock-level__text">
  14547.        
  14548.        <div class="product-stock-level__badge-text">
  14549.          
  14550.  
  14551.    In stock
  14552.  
  14553.  
  14554.        </div>
  14555.      </span>
  14556.    </span>
  14557.  
  14558. </div>
  14559. -->
  14560.              
  14561.  
  14562.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  14563.  
  14564.  
  14565.  
  14566.  
  14567.  
  14568.  
  14569.  
  14570.            </div>
  14571.          
  14572.  
  14573.          
  14574.            
  14575.          
  14576.        
  14577.  
  14578.        
  14579.          <div class="productitem--description">
  14580.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  14581.  
  14582.            
  14583.              <a
  14584.                href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14585.                class="productitem--link"
  14586.                data-product-page-link
  14587.              >
  14588.                View full details
  14589.              </a>
  14590.            
  14591.          </div>
  14592.        
  14593.      </div>
  14594.  
  14595.      
  14596.        
  14597.          
  14598.          
  14599.          
  14600.  
  14601.          
  14602.          
  14603.  
  14604.          
  14605.  
  14606.          
  14607.  
  14608.          <div class="productitem--actions" data-product-actions>
  14609.            <div class="productitem--listview-price">
  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.  
  14641. <div class="price productitem__price ">
  14642.  
  14643.    <div
  14644.      class="price__compare-at visible"
  14645.      data-price-compare-container
  14646.    >
  14647.  
  14648.      
  14649.        <span class="money price__original" data-price-original></span>
  14650.      
  14651.    </div>
  14652.  
  14653.  
  14654.    
  14655.      
  14656.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14657.        
  14658.          <span class="visually-hidden">Original price</span>
  14659.          <span class="money price__compare-at--min" data-price-compare-min>
  14660.            $100.99
  14661.          </span>
  14662.          -
  14663.          <span class="visually-hidden">Original price</span>
  14664.          <span class="money price__compare-at--max" data-price-compare-max>
  14665.            $100.99
  14666.          </span>
  14667.        
  14668.      </div>
  14669.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14670.        <span class="visually-hidden">Original price</span>
  14671.        <span class="money price__compare-at--single" data-price-compare>
  14672.          
  14673.        </span>
  14674.      </div>
  14675.    
  14676.  
  14677.  
  14678.  <div class="price__current price__current--emphasize " data-price-container>
  14679.  
  14680.    
  14681.  
  14682.    
  14683.      
  14684.      
  14685.      <span class="money" data-price>
  14686.        $100.99
  14687.      </span>
  14688.    
  14689.    
  14690.  </div>
  14691.  
  14692.  
  14693.    
  14694.    <div class="price__current--hidden" data-current-price-range-hidden>
  14695.      
  14696.        <span class="money price__current--min" data-price-min>$100.99</span>
  14697.        -
  14698.        <span class="money price__current--max" data-price-max>$100.99</span>
  14699.      
  14700.    </div>
  14701.    <div class="price__current--hidden" data-current-price-hidden>
  14702.      <span class="visually-hidden">Current price</span>
  14703.      <span class="money" data-price>
  14704.        $100.99
  14705.      </span>
  14706.    </div>
  14707.  
  14708.  
  14709.  
  14710.    
  14711.    
  14712.    
  14713.    
  14714.  
  14715.    <div
  14716.      class="
  14717.        productitem__unit-price
  14718.        hidden
  14719.      "
  14720.      data-unit-price
  14721.    >
  14722.      <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>
  14723.    </div>
  14724.  
  14725.  
  14726.  
  14727. </div>
  14728.  
  14729.  
  14730.            </div>
  14731.  
  14732.            <div class="productitem--listview-badge">
  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.  
  14761.            </div>
  14762.  
  14763.            
  14764.              <div
  14765.                class="
  14766.                  productitem--action
  14767.                  quickshop-button
  14768.                  
  14769.                "
  14770.              >
  14771.                <button
  14772.                  class="productitem--action-trigger button-secondary"
  14773.                  data-quickshop-full
  14774.                  
  14775.                  
  14776.                  type="button"
  14777.                >
  14778.                  Quick shop
  14779.                </button>
  14780.              </div>
  14781.            
  14782.  
  14783.            
  14784.              <div
  14785.                class="
  14786.                  productitem--action
  14787.                  atc--button
  14788.                  
  14789.                "
  14790.              >
  14791.                <button
  14792.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14793.                  type="button"
  14794.                  aria-label="Add to cart"
  14795.                  
  14796.                    data-quick-buy
  14797.                  
  14798.                  data-variant-id="39666365366359"
  14799.                  
  14800.                >
  14801.                  <span class="atc-button--text">
  14802.                    Add to cart
  14803.                  </span>
  14804.                  <span class="atc-button--icon"><svg
  14805.  aria-hidden="true"
  14806.  focusable="false"
  14807.  role="presentation"
  14808.  width="26"
  14809.  height="26"
  14810.  viewBox="0 0 26 26"
  14811.  xmlns="http://www.w3.org/2000/svg"
  14812. >
  14813.  <g fill-rule="nonzero" fill="currentColor">
  14814.    <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"/>
  14815.  </g>
  14816. </svg></span>
  14817.                </button>
  14818.              </div>
  14819.            
  14820.          </div>
  14821.        
  14822.      
  14823.    </div>
  14824.  </div>
  14825.  
  14826.  
  14827.    <script type="application/json" data-quick-buy-settings>
  14828.      {
  14829.        "cart_redirection": true,
  14830.        "money_format": "${{amount}}"
  14831.      }
  14832.    </script>
  14833.  
  14834. </li>
  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.  
  14873. <li
  14874.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14875.  data-product-item
  14876.  data-product-quickshop-url="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14877.  
  14878. >
  14879.  <div class="productitem" data-product-item-content>
  14880.    
  14881.    
  14882.    
  14883.    
  14884.  
  14885.    
  14886.  
  14887.    
  14888.  
  14889.    <div class="productitem__container">
  14890.      
  14891.  
  14892.      <div class="productitem__image-container">
  14893.        <a target="_blank"
  14894.          class="productitem--image-link"
  14895.          href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14896.          aria-label="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14897.          tabindex="-1"
  14898.          data-product-page-link
  14899.        >
  14900.          <figure
  14901.            class="productitem--image"
  14902.            data-product-item-image
  14903.            
  14904.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14905.            
  14906.          >
  14907.            
  14908.              
  14909.              
  14910.  
  14911.  
  14912.    <noscript data-rimg-noscript>
  14913.      <img loading="lazy"
  14914.        
  14915.          src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14916.        
  14917.  
  14918.        alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14919.        data-rimg="noscript"
  14920.        srcset="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378 1x"
  14921.        class="productitem--image-primary"
  14922.        
  14923.        
  14924.      >
  14925.    </noscript>
  14926.  
  14927.  
  14928.  <img loading="lazy"
  14929.    
  14930.      src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14931.    
  14932.    alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14933.  
  14934.    
  14935.      data-rimg="lazy"
  14936.      data-rimg-scale="1"
  14937.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_{size}.jpg?v=1715271378"
  14938.      data-rimg-max="500x500"
  14939.      data-rimg-crop="false"
  14940.      
  14941.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14942.    
  14943.  
  14944.    class="productitem--image-primary"
  14945.    
  14946.    
  14947.  >
  14948.  
  14949.  
  14950.  
  14951.  <div data-rimg-canvas></div>
  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.  
  14984.          </figure>
  14985.        </a>
  14986.      </div><div class="productitem--info">
  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.  
  15024. <div class="price productitem__price ">
  15025.  
  15026.    <div
  15027.      class="price__compare-at visible"
  15028.      data-price-compare-container
  15029.    >
  15030.  
  15031.      
  15032.        <span class="money price__original" data-price-original></span>
  15033.      
  15034.    </div>
  15035.  
  15036.  
  15037.    
  15038.      
  15039.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15040.        
  15041.          <span class="visually-hidden">Original price</span>
  15042.          <span class="money price__compare-at--min" data-price-compare-min>
  15043.            $100.99
  15044.          </span>
  15045.          -
  15046.          <span class="visually-hidden">Original price</span>
  15047.          <span class="money price__compare-at--max" data-price-compare-max>
  15048.            $100.99
  15049.          </span>
  15050.        
  15051.      </div>
  15052.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15053.        <span class="visually-hidden">Original price</span>
  15054.        <span class="money price__compare-at--single" data-price-compare>
  15055.          
  15056.        </span>
  15057.      </div>
  15058.    
  15059.  
  15060.  
  15061.  <div class="price__current price__current--emphasize " data-price-container>
  15062.  
  15063.    
  15064.  
  15065.    
  15066.      
  15067.      
  15068.      <span class="money" data-price>
  15069.        $100.99
  15070.      </span>
  15071.    
  15072.    
  15073.  </div>
  15074.  
  15075.  
  15076.    
  15077.    <div class="price__current--hidden" data-current-price-range-hidden>
  15078.      
  15079.        <span class="money price__current--min" data-price-min>$100.99</span>
  15080.        -
  15081.        <span class="money price__current--max" data-price-max>$100.99</span>
  15082.      
  15083.    </div>
  15084.    <div class="price__current--hidden" data-current-price-hidden>
  15085.      <span class="visually-hidden">Current price</span>
  15086.      <span class="money" data-price>
  15087.        $100.99
  15088.      </span>
  15089.    </div>
  15090.  
  15091.  
  15092.  
  15093.    
  15094.    
  15095.    
  15096.    
  15097.  
  15098.    <div
  15099.      class="
  15100.        productitem__unit-price
  15101.        hidden
  15102.      "
  15103.      data-unit-price
  15104.    >
  15105.      <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>
  15106.    </div>
  15107.  
  15108.  
  15109.  
  15110. </div>
  15111.  
  15112.  
  15113.        
  15114.  
  15115.        <h2 class="productitem--title">
  15116.          <a href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  15117.            Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual
  15118.          </a>
  15119.        </h2>
  15120.  
  15121.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15122.        <div class="star_container 4451280006"></div>
  15123.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15124.  
  15125.        
  15126.          
  15127.            <span class="productitem--vendor">
  15128.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15129.            </span>
  15130.          
  15131.        
  15132.  
  15133.        
  15134.  
  15135.        
  15136.          
  15137.            <div class="productitem__stock-level">
  15138.              <!--
  15139.  
  15140.  
  15141.  
  15142.  
  15143.  
  15144.  
  15145.  
  15146. <div class="product-stock-level-wrapper" >
  15147.  
  15148.    <span class="
  15149.  product-stock-level
  15150.  product-stock-level--continue-selling
  15151.  
  15152. ">
  15153.      
  15154.  
  15155.      <span class="product-stock-level__text">
  15156.        
  15157.        <div class="product-stock-level__badge-text">
  15158.          
  15159.  
  15160.    In stock
  15161.  
  15162.  
  15163.        </div>
  15164.      </span>
  15165.    </span>
  15166.  
  15167. </div>
  15168. -->
  15169.              
  15170.  
  15171.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  15172.  
  15173.  
  15174.  
  15175.  
  15176.  
  15177.  
  15178.  
  15179.            </div>
  15180.          
  15181.  
  15182.          
  15183.            
  15184.          
  15185.        
  15186.  
  15187.        
  15188.          <div class="productitem--description">
  15189.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  15190.  
  15191.            
  15192.              <a
  15193.                href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  15194.                class="productitem--link"
  15195.                data-product-page-link
  15196.              >
  15197.                View full details
  15198.              </a>
  15199.            
  15200.          </div>
  15201.        
  15202.      </div>
  15203.  
  15204.      
  15205.        
  15206.          
  15207.          
  15208.          
  15209.  
  15210.          
  15211.          
  15212.  
  15213.          
  15214.  
  15215.          
  15216.  
  15217.          <div class="productitem--actions" data-product-actions>
  15218.            <div class="productitem--listview-price">
  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.  
  15250. <div class="price productitem__price ">
  15251.  
  15252.    <div
  15253.      class="price__compare-at visible"
  15254.      data-price-compare-container
  15255.    >
  15256.  
  15257.      
  15258.        <span class="money price__original" data-price-original></span>
  15259.      
  15260.    </div>
  15261.  
  15262.  
  15263.    
  15264.      
  15265.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15266.        
  15267.          <span class="visually-hidden">Original price</span>
  15268.          <span class="money price__compare-at--min" data-price-compare-min>
  15269.            $100.99
  15270.          </span>
  15271.          -
  15272.          <span class="visually-hidden">Original price</span>
  15273.          <span class="money price__compare-at--max" data-price-compare-max>
  15274.            $100.99
  15275.          </span>
  15276.        
  15277.      </div>
  15278.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15279.        <span class="visually-hidden">Original price</span>
  15280.        <span class="money price__compare-at--single" data-price-compare>
  15281.          
  15282.        </span>
  15283.      </div>
  15284.    
  15285.  
  15286.  
  15287.  <div class="price__current price__current--emphasize " data-price-container>
  15288.  
  15289.    
  15290.  
  15291.    
  15292.      
  15293.      
  15294.      <span class="money" data-price>
  15295.        $100.99
  15296.      </span>
  15297.    
  15298.    
  15299.  </div>
  15300.  
  15301.  
  15302.    
  15303.    <div class="price__current--hidden" data-current-price-range-hidden>
  15304.      
  15305.        <span class="money price__current--min" data-price-min>$100.99</span>
  15306.        -
  15307.        <span class="money price__current--max" data-price-max>$100.99</span>
  15308.      
  15309.    </div>
  15310.    <div class="price__current--hidden" data-current-price-hidden>
  15311.      <span class="visually-hidden">Current price</span>
  15312.      <span class="money" data-price>
  15313.        $100.99
  15314.      </span>
  15315.    </div>
  15316.  
  15317.  
  15318.  
  15319.    
  15320.    
  15321.    
  15322.    
  15323.  
  15324.    <div
  15325.      class="
  15326.        productitem__unit-price
  15327.        hidden
  15328.      "
  15329.      data-unit-price
  15330.    >
  15331.      <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>
  15332.    </div>
  15333.  
  15334.  
  15335.  
  15336. </div>
  15337.  
  15338.  
  15339.            </div>
  15340.  
  15341.            <div class="productitem--listview-badge">
  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.  
  15370.            </div>
  15371.  
  15372.            
  15373.              <div
  15374.                class="
  15375.                  productitem--action
  15376.                  quickshop-button
  15377.                  
  15378.                "
  15379.              >
  15380.                <button
  15381.                  class="productitem--action-trigger button-secondary"
  15382.                  data-quickshop-full
  15383.                  
  15384.                  
  15385.                  type="button"
  15386.                >
  15387.                  Quick shop
  15388.                </button>
  15389.              </div>
  15390.            
  15391.  
  15392.            
  15393.              <div
  15394.                class="
  15395.                  productitem--action
  15396.                  atc--button
  15397.                  
  15398.                "
  15399.              >
  15400.                <button
  15401.                  class="productitem--action-trigger productitem--action-atc button-primary"
  15402.                  type="button"
  15403.                  aria-label="Add to cart"
  15404.                  
  15405.                    data-quick-buy
  15406.                  
  15407.                  data-variant-id="39666365268055"
  15408.                  
  15409.                >
  15410.                  <span class="atc-button--text">
  15411.                    Add to cart
  15412.                  </span>
  15413.                  <span class="atc-button--icon"><svg
  15414.  aria-hidden="true"
  15415.  focusable="false"
  15416.  role="presentation"
  15417.  width="26"
  15418.  height="26"
  15419.  viewBox="0 0 26 26"
  15420.  xmlns="http://www.w3.org/2000/svg"
  15421. >
  15422.  <g fill-rule="nonzero" fill="currentColor">
  15423.    <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"/>
  15424.  </g>
  15425. </svg></span>
  15426.                </button>
  15427.              </div>
  15428.            
  15429.          </div>
  15430.        
  15431.      
  15432.    </div>
  15433.  </div>
  15434.  
  15435.  
  15436.    <script type="application/json" data-quick-buy-settings>
  15437.      {
  15438.        "cart_redirection": true,
  15439.        "money_format": "${{amount}}"
  15440.      }
  15441.    </script>
  15442.  
  15443. </li>
  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.  
  15482. <li
  15483.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  15484.  data-product-item
  15485.  data-product-quickshop-url="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15486.  
  15487. >
  15488.  <div class="productitem" data-product-item-content>
  15489.    
  15490.    
  15491.    
  15492.    
  15493.  
  15494.    
  15495.  
  15496.    
  15497.  
  15498.    <div class="productitem__container">
  15499.      
  15500.  
  15501.      <div class="productitem__image-container">
  15502.        <a target="_blank"
  15503.          class="productitem--image-link"
  15504.          href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15505.          aria-label="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15506.          tabindex="-1"
  15507.          data-product-page-link
  15508.        >
  15509.          <figure
  15510.            class="productitem--image"
  15511.            data-product-item-image
  15512.            
  15513.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  15514.            
  15515.          >
  15516.            
  15517.              
  15518.              
  15519.  
  15520.  
  15521.    <noscript data-rimg-noscript>
  15522.      <img loading="lazy"
  15523.        
  15524.          src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15525.        
  15526.  
  15527.        alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15528.        data-rimg="noscript"
  15529.        srcset="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427 1x"
  15530.        class="productitem--image-primary"
  15531.        
  15532.        
  15533.      >
  15534.    </noscript>
  15535.  
  15536.  
  15537.  <img loading="lazy"
  15538.    
  15539.      src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15540.    
  15541.    alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15542.  
  15543.    
  15544.      data-rimg="lazy"
  15545.      data-rimg-scale="1"
  15546.      data-rimg-template="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_{size}.jpg?v=1715271427"
  15547.      data-rimg-max="500x500"
  15548.      data-rimg-crop="false"
  15549.      
  15550.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  15551.    
  15552.  
  15553.    class="productitem--image-primary"
  15554.    
  15555.    
  15556.  >
  15557.  
  15558.  
  15559.  
  15560.  <div data-rimg-canvas></div>
  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.  
  15593.          </figure>
  15594.        </a>
  15595.      </div><div class="productitem--info">
  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.  
  15633. <div class="price productitem__price ">
  15634.  
  15635.    <div
  15636.      class="price__compare-at visible"
  15637.      data-price-compare-container
  15638.    >
  15639.  
  15640.      
  15641.        <span class="money price__original" data-price-original></span>
  15642.      
  15643.    </div>
  15644.  
  15645.  
  15646.    
  15647.      
  15648.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15649.        
  15650.          <span class="visually-hidden">Original price</span>
  15651.          <span class="money price__compare-at--min" data-price-compare-min>
  15652.            $80.99
  15653.          </span>
  15654.          -
  15655.          <span class="visually-hidden">Original price</span>
  15656.          <span class="money price__compare-at--max" data-price-compare-max>
  15657.            $80.99
  15658.          </span>
  15659.        
  15660.      </div>
  15661.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15662.        <span class="visually-hidden">Original price</span>
  15663.        <span class="money price__compare-at--single" data-price-compare>
  15664.          
  15665.        </span>
  15666.      </div>
  15667.    
  15668.  
  15669.  
  15670.  <div class="price__current price__current--emphasize " data-price-container>
  15671.  
  15672.    
  15673.  
  15674.    
  15675.      
  15676.      
  15677.      <span class="money" data-price>
  15678.        $80.99
  15679.      </span>
  15680.    
  15681.    
  15682.  </div>
  15683.  
  15684.  
  15685.    
  15686.    <div class="price__current--hidden" data-current-price-range-hidden>
  15687.      
  15688.        <span class="money price__current--min" data-price-min>$80.99</span>
  15689.        -
  15690.        <span class="money price__current--max" data-price-max>$80.99</span>
  15691.      
  15692.    </div>
  15693.    <div class="price__current--hidden" data-current-price-hidden>
  15694.      <span class="visually-hidden">Current price</span>
  15695.      <span class="money" data-price>
  15696.        $80.99
  15697.      </span>
  15698.    </div>
  15699.  
  15700.  
  15701.  
  15702.    
  15703.    
  15704.    
  15705.    
  15706.  
  15707.    <div
  15708.      class="
  15709.        productitem__unit-price
  15710.        hidden
  15711.      "
  15712.      data-unit-price
  15713.    >
  15714.      <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>
  15715.    </div>
  15716.  
  15717.  
  15718.  
  15719. </div>
  15720.  
  15721.  
  15722.        
  15723.  
  15724.        <h2 class="productitem--title">
  15725.          <a href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m" data-product-page-link>
  15726.            Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M
  15727.          </a>
  15728.        </h2>
  15729.  
  15730.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15731.        <div class="star_container 4451281286"></div>
  15732.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15733.  
  15734.        
  15735.          
  15736.            <span class="productitem--vendor">
  15737.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15738.            </span>
  15739.          
  15740.        
  15741.  
  15742.        
  15743.  
  15744.        
  15745.          
  15746.            <div class="productitem__stock-level">
  15747.              <!--
  15748.  
  15749.  
  15750.  
  15751.  
  15752.  
  15753.  
  15754.  
  15755. <div class="product-stock-level-wrapper" >
  15756.  
  15757.    <span class="
  15758.  product-stock-level
  15759.  product-stock-level--continue-selling
  15760.  
  15761. ">
  15762.      
  15763.  
  15764.      <span class="product-stock-level__text">
  15765.        
  15766.        <div class="product-stock-level__badge-text">
  15767.          
  15768.  
  15769.    In stock
  15770.  
  15771.  
  15772.        </div>
  15773.      </span>
  15774.    </span>
  15775.  
  15776. </div>
  15777. -->
  15778.              
  15779.  
  15780.  
  15781.    
  15782.      <b style="color:green">In stock</b>
  15783.    
  15784.  
  15785.  
  15786.  
  15787.  
  15788.  
  15789.  
  15790.  
  15791.            </div>
  15792.          
  15793.  
  15794.          
  15795.            
  15796.          
  15797.        
  15798.  
  15799.        
  15800.          <div class="productitem--description">
  15801.            <p>Description: New genuine Acer laptop replacement keyboard. Canadian Bilingual layout. Part #'s: KB.I140A.114, KBI140A114, NSK-AM02M, 9J.N1P82.02M. ...</p>
  15802.  
  15803.            
  15804.              <a
  15805.                href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15806.                class="productitem--link"
  15807.                data-product-page-link
  15808.              >
  15809.                View full details
  15810.              </a>
  15811.            
  15812.          </div>
  15813.        
  15814.      </div>
  15815.  
  15816.      
  15817.        
  15818.          
  15819.          
  15820.          
  15821.  
  15822.          
  15823.          
  15824.  
  15825.          
  15826.  
  15827.          
  15828.  
  15829.          <div class="productitem--actions" data-product-actions>
  15830.            <div class="productitem--listview-price">
  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.  
  15862. <div class="price productitem__price ">
  15863.  
  15864.    <div
  15865.      class="price__compare-at visible"
  15866.      data-price-compare-container
  15867.    >
  15868.  
  15869.      
  15870.        <span class="money price__original" data-price-original></span>
  15871.      
  15872.    </div>
  15873.  
  15874.  
  15875.    
  15876.      
  15877.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15878.        
  15879.          <span class="visually-hidden">Original price</span>
  15880.          <span class="money price__compare-at--min" data-price-compare-min>
  15881.            $80.99
  15882.          </span>
  15883.          -
  15884.          <span class="visually-hidden">Original price</span>
  15885.          <span class="money price__compare-at--max" data-price-compare-max>
  15886.            $80.99
  15887.          </span>
  15888.        
  15889.      </div>
  15890.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15891.        <span class="visually-hidden">Original price</span>
  15892.        <span class="money price__compare-at--single" data-price-compare>
  15893.          
  15894.        </span>
  15895.      </div>
  15896.    
  15897.  
  15898.  
  15899.  <div class="price__current price__current--emphasize " data-price-container>
  15900.  
  15901.    
  15902.  
  15903.    
  15904.      
  15905.      
  15906.      <span class="money" data-price>
  15907.        $80.99
  15908.      </span>
  15909.    
  15910.    
  15911.  </div>
  15912.  
  15913.  
  15914.    
  15915.    <div class="price__current--hidden" data-current-price-range-hidden>
  15916.      
  15917.        <span class="money price__current--min" data-price-min>$80.99</span>
  15918.        -
  15919.        <span class="money price__current--max" data-price-max>$80.99</span>
  15920.      
  15921.    </div>
  15922.    <div class="price__current--hidden" data-current-price-hidden>
  15923.      <span class="visually-hidden">Current price</span>
  15924.      <span class="money" data-price>
  15925.        $80.99
  15926.      </span>
  15927.    </div>
  15928.  
  15929.  
  15930.  
  15931.    
  15932.    
  15933.    
  15934.    
  15935.  
  15936.    <div
  15937.      class="
  15938.        productitem__unit-price
  15939.        hidden
  15940.      "
  15941.      data-unit-price
  15942.    >
  15943.      <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>
  15944.    </div>
  15945.  
  15946.  
  15947.  
  15948. </div>
  15949.  
  15950.  
  15951.            </div>
  15952.  
  15953.            <div class="productitem--listview-badge">
  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.  
  15982.            </div>
  15983.  
  15984.            
  15985.              <div
  15986.                class="
  15987.                  productitem--action
  15988.                  quickshop-button
  15989.                  
  15990.                "
  15991.              >
  15992.                <button
  15993.                  class="productitem--action-trigger button-secondary"
  15994.                  data-quickshop-full
  15995.                  
  15996.                  
  15997.                  type="button"
  15998.                >
  15999.                  Quick shop
  16000.                </button>
  16001.              </div>
  16002.            
  16003.  
  16004.            
  16005.              <div
  16006.                class="
  16007.                  productitem--action
  16008.                  atc--button
  16009.                  
  16010.                "
  16011.              >
  16012.                <button
  16013.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16014.                  type="button"
  16015.                  aria-label="Add to cart"
  16016.                  
  16017.                    data-quick-buy
  16018.                  
  16019.                  data-variant-id="39666363793495"
  16020.                  
  16021.                >
  16022.                  <span class="atc-button--text">
  16023.                    Add to cart
  16024.                  </span>
  16025.                  <span class="atc-button--icon"><svg
  16026.  aria-hidden="true"
  16027.  focusable="false"
  16028.  role="presentation"
  16029.  width="26"
  16030.  height="26"
  16031.  viewBox="0 0 26 26"
  16032.  xmlns="http://www.w3.org/2000/svg"
  16033. >
  16034.  <g fill-rule="nonzero" fill="currentColor">
  16035.    <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"/>
  16036.  </g>
  16037. </svg></span>
  16038.                </button>
  16039.              </div>
  16040.            
  16041.          </div>
  16042.        
  16043.      
  16044.    </div>
  16045.  </div>
  16046.  
  16047.  
  16048.    <script type="application/json" data-quick-buy-settings>
  16049.      {
  16050.        "cart_redirection": true,
  16051.        "money_format": "${{amount}}"
  16052.      }
  16053.    </script>
  16054.  
  16055. </li>
  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.  
  16094. <li
  16095.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16096.  data-product-item
  16097.  data-product-quickshop-url="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16098.  
  16099. >
  16100.  <div class="productitem" data-product-item-content>
  16101.    
  16102.    
  16103.    
  16104.    
  16105.  
  16106.    
  16107.  
  16108.    
  16109.  
  16110.    <div class="productitem__container">
  16111.      
  16112.  
  16113.      <div class="productitem__image-container">
  16114.        <a target="_blank"
  16115.          class="productitem--image-link"
  16116.          href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16117.          aria-label="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16118.          tabindex="-1"
  16119.          data-product-page-link
  16120.        >
  16121.          <figure
  16122.            class="productitem--image"
  16123.            data-product-item-image
  16124.            
  16125.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  16126.            
  16127.          >
  16128.            
  16129.              
  16130.              
  16131.  
  16132.  
  16133.    <noscript data-rimg-noscript>
  16134.      <img loading="lazy"
  16135.        
  16136.          src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16137.        
  16138.  
  16139.        alt=""
  16140.        data-rimg="noscript"
  16141.        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"
  16142.        class="productitem--image-primary"
  16143.        
  16144.        
  16145.      >
  16146.    </noscript>
  16147.  
  16148.  
  16149.  <img loading="lazy"
  16150.    
  16151.      src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16152.    
  16153.    alt=""
  16154.  
  16155.    
  16156.      data-rimg="lazy"
  16157.      data-rimg-scale="1"
  16158.      data-rimg-template="//laptopparts.ca/cdn/shop/products/33.paa02.007_{size}.jpg?v=1697125255"
  16159.      data-rimg-max="655x655"
  16160.      data-rimg-crop="false"
  16161.      
  16162.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  16163.    
  16164.  
  16165.    class="productitem--image-primary"
  16166.    
  16167.    
  16168.  >
  16169.  
  16170.  
  16171.  
  16172.  <div data-rimg-canvas></div>
  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.  
  16205.          </figure>
  16206.        </a>
  16207.      </div><div class="productitem--info">
  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.  
  16245. <div class="price productitem__price ">
  16246.  
  16247.    <div
  16248.      class="price__compare-at visible"
  16249.      data-price-compare-container
  16250.    >
  16251.  
  16252.      
  16253.        <span class="money price__original" data-price-original></span>
  16254.      
  16255.    </div>
  16256.  
  16257.  
  16258.    
  16259.      
  16260.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16261.        
  16262.          <span class="visually-hidden">Original price</span>
  16263.          <span class="money price__compare-at--min" data-price-compare-min>
  16264.            $59.99
  16265.          </span>
  16266.          -
  16267.          <span class="visually-hidden">Original price</span>
  16268.          <span class="money price__compare-at--max" data-price-compare-max>
  16269.            $59.99
  16270.          </span>
  16271.        
  16272.      </div>
  16273.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16274.        <span class="visually-hidden">Original price</span>
  16275.        <span class="money price__compare-at--single" data-price-compare>
  16276.          
  16277.        </span>
  16278.      </div>
  16279.    
  16280.  
  16281.  
  16282.  <div class="price__current price__current--emphasize " data-price-container>
  16283.  
  16284.    
  16285.  
  16286.    
  16287.      
  16288.      
  16289.      <span class="money" data-price>
  16290.        $59.99
  16291.      </span>
  16292.    
  16293.    
  16294.  </div>
  16295.  
  16296.  
  16297.    
  16298.    <div class="price__current--hidden" data-current-price-range-hidden>
  16299.      
  16300.        <span class="money price__current--min" data-price-min>$59.99</span>
  16301.        -
  16302.        <span class="money price__current--max" data-price-max>$59.99</span>
  16303.      
  16304.    </div>
  16305.    <div class="price__current--hidden" data-current-price-hidden>
  16306.      <span class="visually-hidden">Current price</span>
  16307.      <span class="money" data-price>
  16308.        $59.99
  16309.      </span>
  16310.    </div>
  16311.  
  16312.  
  16313.  
  16314.    
  16315.    
  16316.    
  16317.    
  16318.  
  16319.    <div
  16320.      class="
  16321.        productitem__unit-price
  16322.        hidden
  16323.      "
  16324.      data-unit-price
  16325.    >
  16326.      <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>
  16327.    </div>
  16328.  
  16329.  
  16330.  
  16331. </div>
  16332.  
  16333.  
  16334.        
  16335.  
  16336.        <h2 class="productitem--title">
  16337.          <a href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210" data-product-page-link>
  16338.            Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210
  16339.          </a>
  16340.        </h2>
  16341.  
  16342.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16343.        <div class="star_container 243102056471"></div>
  16344.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16345.  
  16346.        
  16347.          
  16348.            <span class="productitem--vendor">
  16349.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16350.            </span>
  16351.          
  16352.        
  16353.  
  16354.        
  16355.  
  16356.        
  16357.          
  16358.            <div class="productitem__stock-level">
  16359.              <!--
  16360.  
  16361.  
  16362.  
  16363.  
  16364.  
  16365.  
  16366.  
  16367. <div class="product-stock-level-wrapper" >
  16368.  
  16369.    <span class="
  16370.  product-stock-level
  16371.  product-stock-level--continue-selling
  16372.  
  16373. ">
  16374.      
  16375.  
  16376.      <span class="product-stock-level__text">
  16377.        
  16378.        <div class="product-stock-level__badge-text">
  16379.          
  16380.  
  16381.    In stock
  16382.  
  16383.  
  16384.        </div>
  16385.      </span>
  16386.    </span>
  16387.  
  16388. </div>
  16389. -->
  16390.              
  16391.  
  16392.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  16393.  
  16394.  
  16395.  
  16396.  
  16397.  
  16398.  
  16399.  
  16400.            </div>
  16401.          
  16402.  
  16403.          
  16404.            
  16405.          
  16406.        
  16407.  
  16408.        
  16409.          <div class="productitem--description">
  16410.            <p>Description: New genuine Acer laptop hinge and bracket set.
  16411. Part #'s: 33.PAA02.007, 091203 240, 091221 210.
  16412. Compatible Models: Acer Aspire 4235, 42...</p>
  16413.  
  16414.            
  16415.              <a
  16416.                href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16417.                class="productitem--link"
  16418.                data-product-page-link
  16419.              >
  16420.                View full details
  16421.              </a>
  16422.            
  16423.          </div>
  16424.        
  16425.      </div>
  16426.  
  16427.      
  16428.        
  16429.          
  16430.          
  16431.          
  16432.  
  16433.          
  16434.          
  16435.  
  16436.          
  16437.  
  16438.          
  16439.  
  16440.          <div class="productitem--actions" data-product-actions>
  16441.            <div class="productitem--listview-price">
  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.  
  16473. <div class="price productitem__price ">
  16474.  
  16475.    <div
  16476.      class="price__compare-at visible"
  16477.      data-price-compare-container
  16478.    >
  16479.  
  16480.      
  16481.        <span class="money price__original" data-price-original></span>
  16482.      
  16483.    </div>
  16484.  
  16485.  
  16486.    
  16487.      
  16488.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16489.        
  16490.          <span class="visually-hidden">Original price</span>
  16491.          <span class="money price__compare-at--min" data-price-compare-min>
  16492.            $59.99
  16493.          </span>
  16494.          -
  16495.          <span class="visually-hidden">Original price</span>
  16496.          <span class="money price__compare-at--max" data-price-compare-max>
  16497.            $59.99
  16498.          </span>
  16499.        
  16500.      </div>
  16501.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16502.        <span class="visually-hidden">Original price</span>
  16503.        <span class="money price__compare-at--single" data-price-compare>
  16504.          
  16505.        </span>
  16506.      </div>
  16507.    
  16508.  
  16509.  
  16510.  <div class="price__current price__current--emphasize " data-price-container>
  16511.  
  16512.    
  16513.  
  16514.    
  16515.      
  16516.      
  16517.      <span class="money" data-price>
  16518.        $59.99
  16519.      </span>
  16520.    
  16521.    
  16522.  </div>
  16523.  
  16524.  
  16525.    
  16526.    <div class="price__current--hidden" data-current-price-range-hidden>
  16527.      
  16528.        <span class="money price__current--min" data-price-min>$59.99</span>
  16529.        -
  16530.        <span class="money price__current--max" data-price-max>$59.99</span>
  16531.      
  16532.    </div>
  16533.    <div class="price__current--hidden" data-current-price-hidden>
  16534.      <span class="visually-hidden">Current price</span>
  16535.      <span class="money" data-price>
  16536.        $59.99
  16537.      </span>
  16538.    </div>
  16539.  
  16540.  
  16541.  
  16542.    
  16543.    
  16544.    
  16545.    
  16546.  
  16547.    <div
  16548.      class="
  16549.        productitem__unit-price
  16550.        hidden
  16551.      "
  16552.      data-unit-price
  16553.    >
  16554.      <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>
  16555.    </div>
  16556.  
  16557.  
  16558.  
  16559. </div>
  16560.  
  16561.  
  16562.            </div>
  16563.  
  16564.            <div class="productitem--listview-badge">
  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.  
  16593.            </div>
  16594.  
  16595.            
  16596.              <div
  16597.                class="
  16598.                  productitem--action
  16599.                  quickshop-button
  16600.                  
  16601.                "
  16602.              >
  16603.                <button
  16604.                  class="productitem--action-trigger button-secondary"
  16605.                  data-quickshop-full
  16606.                  
  16607.                  
  16608.                  type="button"
  16609.                >
  16610.                  Quick shop
  16611.                </button>
  16612.              </div>
  16613.            
  16614.  
  16615.            
  16616.              <div
  16617.                class="
  16618.                  productitem--action
  16619.                  atc--button
  16620.                  
  16621.                "
  16622.              >
  16623.                <button
  16624.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16625.                  type="button"
  16626.                  aria-label="Add to cart"
  16627.                  
  16628.                    data-quick-buy
  16629.                  
  16630.                  data-variant-id="2838819504151"
  16631.                  
  16632.                >
  16633.                  <span class="atc-button--text">
  16634.                    Add to cart
  16635.                  </span>
  16636.                  <span class="atc-button--icon"><svg
  16637.  aria-hidden="true"
  16638.  focusable="false"
  16639.  role="presentation"
  16640.  width="26"
  16641.  height="26"
  16642.  viewBox="0 0 26 26"
  16643.  xmlns="http://www.w3.org/2000/svg"
  16644. >
  16645.  <g fill-rule="nonzero" fill="currentColor">
  16646.    <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"/>
  16647.  </g>
  16648. </svg></span>
  16649.                </button>
  16650.              </div>
  16651.            
  16652.          </div>
  16653.        
  16654.      
  16655.    </div>
  16656.  </div>
  16657.  
  16658.  
  16659.    <script type="application/json" data-quick-buy-settings>
  16660.      {
  16661.        "cart_redirection": true,
  16662.        "money_format": "${{amount}}"
  16663.      }
  16664.    </script>
  16665.  
  16666. </li>
  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.  
  16705. <li
  16706.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16707.  data-product-item
  16708.  data-product-quickshop-url="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16709.  
  16710. >
  16711.  <div class="productitem" data-product-item-content>
  16712.    
  16713.    
  16714.    
  16715.    
  16716.  
  16717.    
  16718.  
  16719.    
  16720.  
  16721.    <div class="productitem__container">
  16722.      
  16723.  
  16724.      <div class="productitem__image-container">
  16725.        <a target="_blank"
  16726.          class="productitem--image-link"
  16727.          href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16728.          aria-label="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16729.          tabindex="-1"
  16730.          data-product-page-link
  16731.        >
  16732.          <figure
  16733.            class="productitem--image"
  16734.            data-product-item-image
  16735.            
  16736.              style="--product-grid-item-image-aspect-ratio: 0.5231513476157568;"
  16737.            
  16738.          >
  16739.            
  16740.              
  16741.              
  16742.  
  16743.  
  16744.    <noscript data-rimg-noscript>
  16745.      <img loading="lazy"
  16746.        
  16747.          src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16748.        
  16749.  
  16750.        alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16751.        data-rimg="noscript"
  16752.        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"
  16753.        class="productitem--image-primary"
  16754.        
  16755.        
  16756.      >
  16757.    </noscript>
  16758.  
  16759.  
  16760.  <img loading="lazy"
  16761.    
  16762.      src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16763.    
  16764.    alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16765.  
  16766.    
  16767.      data-rimg="lazy"
  16768.      data-rimg-scale="1"
  16769.      data-rimg-template="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_{size}.jpg?v=1728212053"
  16770.      data-rimg-max="757x1447"
  16771.      data-rimg-crop="false"
  16772.      
  16773.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='979'></svg>"
  16774.    
  16775.  
  16776.    class="productitem--image-primary"
  16777.    
  16778.    
  16779.  >
  16780.  
  16781.  
  16782.  
  16783.  <div data-rimg-canvas></div>
  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.  
  16816.          </figure>
  16817.        </a>
  16818.      </div><div class="productitem--info">
  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.  
  16856. <div class="price productitem__price ">
  16857.  
  16858.    <div
  16859.      class="price__compare-at visible"
  16860.      data-price-compare-container
  16861.    >
  16862.  
  16863.      
  16864.        <span class="money price__original" data-price-original></span>
  16865.      
  16866.    </div>
  16867.  
  16868.  
  16869.    
  16870.      
  16871.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16872.        
  16873.          <span class="visually-hidden">Original price</span>
  16874.          <span class="money price__compare-at--min" data-price-compare-min>
  16875.            $44.98
  16876.          </span>
  16877.          -
  16878.          <span class="visually-hidden">Original price</span>
  16879.          <span class="money price__compare-at--max" data-price-compare-max>
  16880.            $44.98
  16881.          </span>
  16882.        
  16883.      </div>
  16884.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16885.        <span class="visually-hidden">Original price</span>
  16886.        <span class="money price__compare-at--single" data-price-compare>
  16887.          
  16888.        </span>
  16889.      </div>
  16890.    
  16891.  
  16892.  
  16893.  <div class="price__current price__current--emphasize " data-price-container>
  16894.  
  16895.    
  16896.  
  16897.    
  16898.      
  16899.      
  16900.      <span class="money" data-price>
  16901.        $44.98
  16902.      </span>
  16903.    
  16904.    
  16905.  </div>
  16906.  
  16907.  
  16908.    
  16909.    <div class="price__current--hidden" data-current-price-range-hidden>
  16910.      
  16911.        <span class="money price__current--min" data-price-min>$44.98</span>
  16912.        -
  16913.        <span class="money price__current--max" data-price-max>$44.98</span>
  16914.      
  16915.    </div>
  16916.    <div class="price__current--hidden" data-current-price-hidden>
  16917.      <span class="visually-hidden">Current price</span>
  16918.      <span class="money" data-price>
  16919.        $44.98
  16920.      </span>
  16921.    </div>
  16922.  
  16923.  
  16924.  
  16925.    
  16926.    
  16927.    
  16928.    
  16929.  
  16930.    <div
  16931.      class="
  16932.        productitem__unit-price
  16933.        hidden
  16934.      "
  16935.      data-unit-price
  16936.    >
  16937.      <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>
  16938.    </div>
  16939.  
  16940.  
  16941.  
  16942. </div>
  16943.  
  16944.  
  16945.        
  16946.  
  16947.        <h2 class="productitem--title">
  16948.          <a href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set" data-product-page-link>
  16949.            Acer Aspire 5 A515-41 A515-41G A515-51 A515-51G Right & Left Lcd Hinge Set 33.GP4N2.003
  16950.          </a>
  16951.        </h2>
  16952.  
  16953.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16954.        <div class="star_container 1468469608471"></div>
  16955.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16956.  
  16957.        
  16958.          
  16959.            <span class="productitem--vendor">
  16960.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16961.            </span>
  16962.          
  16963.        
  16964.  
  16965.        
  16966.  
  16967.        
  16968.          
  16969.            <div class="productitem__stock-level">
  16970.              <!--
  16971.  
  16972.  
  16973.  
  16974.  
  16975.  
  16976.  
  16977.  
  16978. <div class="product-stock-level-wrapper" >
  16979.  
  16980.    <span class="
  16981.  product-stock-level
  16982.  product-stock-level--continue-selling
  16983.  
  16984. ">
  16985.      
  16986.  
  16987.      <span class="product-stock-level__text">
  16988.        
  16989.        <div class="product-stock-level__badge-text">
  16990.          
  16991.  
  16992.    In stock
  16993.  
  16994.  
  16995.        </div>
  16996.      </span>
  16997.    </span>
  16998.  
  16999. </div>
  17000. -->
  17001.              
  17002.  
  17003.  
  17004.    
  17005.      <b style="color:green">In stock</b>
  17006.    
  17007.  
  17008.  
  17009.  
  17010.  
  17011.  
  17012.  
  17013.  
  17014.            </div>
  17015.          
  17016.  
  17017.          
  17018.            
  17019.          
  17020.        
  17021.  
  17022.        
  17023.          <div class="productitem--description">
  17024.            <p>
  17025. Description: New Acer right and left laptop lcd hinge set.
  17026.  
  17027.  
  17028. Compatible Part #'s: 33.GP4N2.003, 33.GP4N2.004Compatible Models:Acer Aspire 3 A315-...</p>
  17029.  
  17030.            
  17031.              <a
  17032.                href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  17033.                class="productitem--link"
  17034.                data-product-page-link
  17035.              >
  17036.                View full details
  17037.              </a>
  17038.            
  17039.          </div>
  17040.        
  17041.      </div>
  17042.  
  17043.      
  17044.        
  17045.          
  17046.          
  17047.          
  17048.  
  17049.          
  17050.          
  17051.  
  17052.          
  17053.  
  17054.          
  17055.  
  17056.          <div class="productitem--actions" data-product-actions>
  17057.            <div class="productitem--listview-price">
  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.  
  17089. <div class="price productitem__price ">
  17090.  
  17091.    <div
  17092.      class="price__compare-at visible"
  17093.      data-price-compare-container
  17094.    >
  17095.  
  17096.      
  17097.        <span class="money price__original" data-price-original></span>
  17098.      
  17099.    </div>
  17100.  
  17101.  
  17102.    
  17103.      
  17104.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17105.        
  17106.          <span class="visually-hidden">Original price</span>
  17107.          <span class="money price__compare-at--min" data-price-compare-min>
  17108.            $44.98
  17109.          </span>
  17110.          -
  17111.          <span class="visually-hidden">Original price</span>
  17112.          <span class="money price__compare-at--max" data-price-compare-max>
  17113.            $44.98
  17114.          </span>
  17115.        
  17116.      </div>
  17117.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17118.        <span class="visually-hidden">Original price</span>
  17119.        <span class="money price__compare-at--single" data-price-compare>
  17120.          
  17121.        </span>
  17122.      </div>
  17123.    
  17124.  
  17125.  
  17126.  <div class="price__current price__current--emphasize " data-price-container>
  17127.  
  17128.    
  17129.  
  17130.    
  17131.      
  17132.      
  17133.      <span class="money" data-price>
  17134.        $44.98
  17135.      </span>
  17136.    
  17137.    
  17138.  </div>
  17139.  
  17140.  
  17141.    
  17142.    <div class="price__current--hidden" data-current-price-range-hidden>
  17143.      
  17144.        <span class="money price__current--min" data-price-min>$44.98</span>
  17145.        -
  17146.        <span class="money price__current--max" data-price-max>$44.98</span>
  17147.      
  17148.    </div>
  17149.    <div class="price__current--hidden" data-current-price-hidden>
  17150.      <span class="visually-hidden">Current price</span>
  17151.      <span class="money" data-price>
  17152.        $44.98
  17153.      </span>
  17154.    </div>
  17155.  
  17156.  
  17157.  
  17158.    
  17159.    
  17160.    
  17161.    
  17162.  
  17163.    <div
  17164.      class="
  17165.        productitem__unit-price
  17166.        hidden
  17167.      "
  17168.      data-unit-price
  17169.    >
  17170.      <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>
  17171.    </div>
  17172.  
  17173.  
  17174.  
  17175. </div>
  17176.  
  17177.  
  17178.            </div>
  17179.  
  17180.            <div class="productitem--listview-badge">
  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.  
  17209.            </div>
  17210.  
  17211.            
  17212.              <div
  17213.                class="
  17214.                  productitem--action
  17215.                  quickshop-button
  17216.                  
  17217.                "
  17218.              >
  17219.                <button
  17220.                  class="productitem--action-trigger button-secondary"
  17221.                  data-quickshop-full
  17222.                  
  17223.                  
  17224.                  type="button"
  17225.                >
  17226.                  Quick shop
  17227.                </button>
  17228.              </div>
  17229.            
  17230.  
  17231.            
  17232.              <div
  17233.                class="
  17234.                  productitem--action
  17235.                  atc--button
  17236.                  
  17237.                "
  17238.              >
  17239.                <button
  17240.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17241.                  type="button"
  17242.                  aria-label="Add to cart"
  17243.                  
  17244.                    data-quick-buy
  17245.                  
  17246.                  data-variant-id="12807718895639"
  17247.                  
  17248.                >
  17249.                  <span class="atc-button--text">
  17250.                    Add to cart
  17251.                  </span>
  17252.                  <span class="atc-button--icon"><svg
  17253.  aria-hidden="true"
  17254.  focusable="false"
  17255.  role="presentation"
  17256.  width="26"
  17257.  height="26"
  17258.  viewBox="0 0 26 26"
  17259.  xmlns="http://www.w3.org/2000/svg"
  17260. >
  17261.  <g fill-rule="nonzero" fill="currentColor">
  17262.    <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"/>
  17263.  </g>
  17264. </svg></span>
  17265.                </button>
  17266.              </div>
  17267.            
  17268.          </div>
  17269.        
  17270.      
  17271.    </div>
  17272.  </div>
  17273.  
  17274.  
  17275.    <script type="application/json" data-quick-buy-settings>
  17276.      {
  17277.        "cart_redirection": true,
  17278.        "money_format": "${{amount}}"
  17279.      }
  17280.    </script>
  17281.  
  17282. </li>
  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.  
  17321. <li
  17322.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17323.  data-product-item
  17324.  data-product-quickshop-url="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17325.  
  17326. >
  17327.  <div class="productitem" data-product-item-content>
  17328.    
  17329.    
  17330.    
  17331.    
  17332.  
  17333.    
  17334.  
  17335.    
  17336.  
  17337.    <div class="productitem__container">
  17338.      
  17339.  
  17340.      <div class="productitem__image-container">
  17341.        <a target="_blank"
  17342.          class="productitem--image-link"
  17343.          href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17344.          aria-label="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17345.          tabindex="-1"
  17346.          data-product-page-link
  17347.        >
  17348.          <figure
  17349.            class="productitem--image"
  17350.            data-product-item-image
  17351.            
  17352.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17353.            
  17354.          >
  17355.            
  17356.              
  17357.              
  17358.  
  17359.  
  17360.    <noscript data-rimg-noscript>
  17361.      <img loading="lazy"
  17362.        
  17363.          src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17364.        
  17365.  
  17366.        alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17367.        data-rimg="noscript"
  17368.        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"
  17369.        class="productitem--image-primary"
  17370.        
  17371.        
  17372.      >
  17373.    </noscript>
  17374.  
  17375.  
  17376.  <img loading="lazy"
  17377.    
  17378.      src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17379.    
  17380.    alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17381.  
  17382.    
  17383.      data-rimg="lazy"
  17384.      data-rimg-scale="1"
  17385.      data-rimg-template="//laptopparts.ca/cdn/shop/products/23.apq0n.001_{size}.jpg?v=1715271966"
  17386.      data-rimg-max="600x600"
  17387.      data-rimg-crop="false"
  17388.      
  17389.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17390.    
  17391.  
  17392.    class="productitem--image-primary"
  17393.    
  17394.    
  17395.  >
  17396.  
  17397.  
  17398.  
  17399.  <div data-rimg-canvas></div>
  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.  
  17432.          </figure>
  17433.        </a>
  17434.      </div><div class="productitem--info">
  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.  
  17472. <div class="price productitem__price ">
  17473.  
  17474.    <div
  17475.      class="price__compare-at visible"
  17476.      data-price-compare-container
  17477.    >
  17478.  
  17479.      
  17480.        <span class="money price__original" data-price-original></span>
  17481.      
  17482.    </div>
  17483.  
  17484.  
  17485.    
  17486.      
  17487.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17488.        
  17489.          <span class="visually-hidden">Original price</span>
  17490.          <span class="money price__compare-at--min" data-price-compare-min>
  17491.            $52.99
  17492.          </span>
  17493.          -
  17494.          <span class="visually-hidden">Original price</span>
  17495.          <span class="money price__compare-at--max" data-price-compare-max>
  17496.            $52.99
  17497.          </span>
  17498.        
  17499.      </div>
  17500.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17501.        <span class="visually-hidden">Original price</span>
  17502.        <span class="money price__compare-at--single" data-price-compare>
  17503.          
  17504.        </span>
  17505.      </div>
  17506.    
  17507.  
  17508.  
  17509.  <div class="price__current price__current--emphasize " data-price-container>
  17510.  
  17511.    
  17512.  
  17513.    
  17514.      
  17515.      
  17516.      <span class="money" data-price>
  17517.        $52.99
  17518.      </span>
  17519.    
  17520.    
  17521.  </div>
  17522.  
  17523.  
  17524.    
  17525.    <div class="price__current--hidden" data-current-price-range-hidden>
  17526.      
  17527.        <span class="money price__current--min" data-price-min>$52.99</span>
  17528.        -
  17529.        <span class="money price__current--max" data-price-max>$52.99</span>
  17530.      
  17531.    </div>
  17532.    <div class="price__current--hidden" data-current-price-hidden>
  17533.      <span class="visually-hidden">Current price</span>
  17534.      <span class="money" data-price>
  17535.        $52.99
  17536.      </span>
  17537.    </div>
  17538.  
  17539.  
  17540.  
  17541.    
  17542.    
  17543.    
  17544.    
  17545.  
  17546.    <div
  17547.      class="
  17548.        productitem__unit-price
  17549.        hidden
  17550.      "
  17551.      data-unit-price
  17552.    >
  17553.      <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>
  17554.    </div>
  17555.  
  17556.  
  17557.  
  17558. </div>
  17559.  
  17560.  
  17561.        
  17562.  
  17563.        <h2 class="productitem--title">
  17564.          <a href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a" data-product-page-link>
  17565.            Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A
  17566.          </a>
  17567.        </h2>
  17568.  
  17569.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  17570.        <div class="star_container 4451325446"></div>
  17571.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  17572.  
  17573.        
  17574.          
  17575.            <span class="productitem--vendor">
  17576.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  17577.            </span>
  17578.          
  17579.        
  17580.  
  17581.        
  17582.  
  17583.        
  17584.          
  17585.            <div class="productitem__stock-level">
  17586.              <!--
  17587.  
  17588.  
  17589.  
  17590.  
  17591.  
  17592.  
  17593.  
  17594. <div class="product-stock-level-wrapper" >
  17595.  
  17596.    <span class="
  17597.  product-stock-level
  17598.  product-stock-level--continue-selling
  17599.  
  17600. ">
  17601.      
  17602.  
  17603.      <span class="product-stock-level__text">
  17604.        
  17605.        <div class="product-stock-level__badge-text">
  17606.          
  17607.  
  17608.    In stock
  17609.  
  17610.  
  17611.        </div>
  17612.      </span>
  17613.    </span>
  17614.  
  17615. </div>
  17616. -->
  17617.              
  17618.  
  17619.  
  17620.    
  17621.      <b style="color:green">In stock</b>
  17622.    
  17623.  
  17624.  
  17625.  
  17626.  
  17627.  
  17628.  
  17629.  
  17630.            </div>
  17631.          
  17632.  
  17633.          
  17634.            
  17635.          
  17636.        
  17637.  
  17638.        
  17639.          <div class="productitem--description">
  17640.            <p>Genuine Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A</p>
  17641.  
  17642.            
  17643.          </div>
  17644.        
  17645.      </div>
  17646.  
  17647.      
  17648.        
  17649.          
  17650.          
  17651.          
  17652.  
  17653.          
  17654.          
  17655.  
  17656.          
  17657.  
  17658.          
  17659.  
  17660.          <div class="productitem--actions" data-product-actions>
  17661.            <div class="productitem--listview-price">
  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.  
  17693. <div class="price productitem__price ">
  17694.  
  17695.    <div
  17696.      class="price__compare-at visible"
  17697.      data-price-compare-container
  17698.    >
  17699.  
  17700.      
  17701.        <span class="money price__original" data-price-original></span>
  17702.      
  17703.    </div>
  17704.  
  17705.  
  17706.    
  17707.      
  17708.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17709.        
  17710.          <span class="visually-hidden">Original price</span>
  17711.          <span class="money price__compare-at--min" data-price-compare-min>
  17712.            $52.99
  17713.          </span>
  17714.          -
  17715.          <span class="visually-hidden">Original price</span>
  17716.          <span class="money price__compare-at--max" data-price-compare-max>
  17717.            $52.99
  17718.          </span>
  17719.        
  17720.      </div>
  17721.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17722.        <span class="visually-hidden">Original price</span>
  17723.        <span class="money price__compare-at--single" data-price-compare>
  17724.          
  17725.        </span>
  17726.      </div>
  17727.    
  17728.  
  17729.  
  17730.  <div class="price__current price__current--emphasize " data-price-container>
  17731.  
  17732.    
  17733.  
  17734.    
  17735.      
  17736.      
  17737.      <span class="money" data-price>
  17738.        $52.99
  17739.      </span>
  17740.    
  17741.    
  17742.  </div>
  17743.  
  17744.  
  17745.    
  17746.    <div class="price__current--hidden" data-current-price-range-hidden>
  17747.      
  17748.        <span class="money price__current--min" data-price-min>$52.99</span>
  17749.        -
  17750.        <span class="money price__current--max" data-price-max>$52.99</span>
  17751.      
  17752.    </div>
  17753.    <div class="price__current--hidden" data-current-price-hidden>
  17754.      <span class="visually-hidden">Current price</span>
  17755.      <span class="money" data-price>
  17756.        $52.99
  17757.      </span>
  17758.    </div>
  17759.  
  17760.  
  17761.  
  17762.    
  17763.    
  17764.    
  17765.    
  17766.  
  17767.    <div
  17768.      class="
  17769.        productitem__unit-price
  17770.        hidden
  17771.      "
  17772.      data-unit-price
  17773.    >
  17774.      <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>
  17775.    </div>
  17776.  
  17777.  
  17778.  
  17779. </div>
  17780.  
  17781.  
  17782.            </div>
  17783.  
  17784.            <div class="productitem--listview-badge">
  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.  
  17813.            </div>
  17814.  
  17815.            
  17816.              <div
  17817.                class="
  17818.                  productitem--action
  17819.                  quickshop-button
  17820.                  
  17821.                "
  17822.              >
  17823.                <button
  17824.                  class="productitem--action-trigger button-secondary"
  17825.                  data-quickshop-full
  17826.                  
  17827.                  
  17828.                  type="button"
  17829.                >
  17830.                  Quick shop
  17831.                </button>
  17832.              </div>
  17833.            
  17834.  
  17835.            
  17836.              <div
  17837.                class="
  17838.                  productitem--action
  17839.                  atc--button
  17840.                  
  17841.                "
  17842.              >
  17843.                <button
  17844.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17845.                  type="button"
  17846.                  aria-label="Add to cart"
  17847.                  
  17848.                    data-quick-buy
  17849.                  
  17850.                  data-variant-id="39666095259735"
  17851.                  
  17852.                >
  17853.                  <span class="atc-button--text">
  17854.                    Add to cart
  17855.                  </span>
  17856.                  <span class="atc-button--icon"><svg
  17857.  aria-hidden="true"
  17858.  focusable="false"
  17859.  role="presentation"
  17860.  width="26"
  17861.  height="26"
  17862.  viewBox="0 0 26 26"
  17863.  xmlns="http://www.w3.org/2000/svg"
  17864. >
  17865.  <g fill-rule="nonzero" fill="currentColor">
  17866.    <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"/>
  17867.  </g>
  17868. </svg></span>
  17869.                </button>
  17870.              </div>
  17871.            
  17872.          </div>
  17873.        
  17874.      
  17875.    </div>
  17876.  </div>
  17877.  
  17878.  
  17879.    <script type="application/json" data-quick-buy-settings>
  17880.      {
  17881.        "cart_redirection": true,
  17882.        "money_format": "${{amount}}"
  17883.      }
  17884.    </script>
  17885.  
  17886. </li>
  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.  
  17925. <li
  17926.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17927.  data-product-item
  17928.  data-product-quickshop-url="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17929.  
  17930. >
  17931.  <div class="productitem" data-product-item-content>
  17932.    
  17933.    
  17934.    
  17935.    
  17936.  
  17937.    
  17938.  
  17939.    
  17940.  
  17941.    <div class="productitem__container">
  17942.      
  17943.  
  17944.      <div class="productitem__image-container">
  17945.        <a target="_blank"
  17946.          class="productitem--image-link"
  17947.          href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17948.          aria-label="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17949.          tabindex="-1"
  17950.          data-product-page-link
  17951.        >
  17952.          <figure
  17953.            class="productitem--image"
  17954.            data-product-item-image
  17955.            
  17956.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17957.            
  17958.          >
  17959.            
  17960.              
  17961.              
  17962.  
  17963.  
  17964.    <noscript data-rimg-noscript>
  17965.      <img loading="lazy"
  17966.        
  17967.          src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  17968.        
  17969.  
  17970.        alt=""
  17971.        data-rimg="noscript"
  17972.        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"
  17973.        class="productitem--image-primary"
  17974.        
  17975.        
  17976.      >
  17977.    </noscript>
  17978.  
  17979.  
  17980.  <img loading="lazy"
  17981.    
  17982.      src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  17983.    
  17984.    alt=""
  17985.  
  17986.    
  17987.      data-rimg="lazy"
  17988.      data-rimg-scale="1"
  17989.      data-rimg-template="//laptopparts.ca/cdn/shop/products/55.r4f02.002_{size}.png?v=1697125258"
  17990.      data-rimg-max="603x603"
  17991.      data-rimg-crop="false"
  17992.      
  17993.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17994.    
  17995.  
  17996.    class="productitem--image-primary"
  17997.    
  17998.    
  17999.  >
  18000.  
  18001.  
  18002.  
  18003.  <div data-rimg-canvas></div>
  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.  
  18036.          </figure>
  18037.        </a>
  18038.      </div><div class="productitem--info">
  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.  
  18076. <div class="price productitem__price ">
  18077.  
  18078.    <div
  18079.      class="price__compare-at visible"
  18080.      data-price-compare-container
  18081.    >
  18082.  
  18083.      
  18084.        <span class="money price__original" data-price-original></span>
  18085.      
  18086.    </div>
  18087.  
  18088.  
  18089.    
  18090.      
  18091.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18092.        
  18093.          <span class="visually-hidden">Original price</span>
  18094.          <span class="money price__compare-at--min" data-price-compare-min>
  18095.            $50.99
  18096.          </span>
  18097.          -
  18098.          <span class="visually-hidden">Original price</span>
  18099.          <span class="money price__compare-at--max" data-price-compare-max>
  18100.            $50.99
  18101.          </span>
  18102.        
  18103.      </div>
  18104.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18105.        <span class="visually-hidden">Original price</span>
  18106.        <span class="money price__compare-at--single" data-price-compare>
  18107.          
  18108.        </span>
  18109.      </div>
  18110.    
  18111.  
  18112.  
  18113.  <div class="price__current price__current--emphasize " data-price-container>
  18114.  
  18115.    
  18116.  
  18117.    
  18118.      
  18119.      
  18120.      <span class="money" data-price>
  18121.        $50.99
  18122.      </span>
  18123.    
  18124.    
  18125.  </div>
  18126.  
  18127.  
  18128.    
  18129.    <div class="price__current--hidden" data-current-price-range-hidden>
  18130.      
  18131.        <span class="money price__current--min" data-price-min>$50.99</span>
  18132.        -
  18133.        <span class="money price__current--max" data-price-max>$50.99</span>
  18134.      
  18135.    </div>
  18136.    <div class="price__current--hidden" data-current-price-hidden>
  18137.      <span class="visually-hidden">Current price</span>
  18138.      <span class="money" data-price>
  18139.        $50.99
  18140.      </span>
  18141.    </div>
  18142.  
  18143.  
  18144.  
  18145.    
  18146.    
  18147.    
  18148.    
  18149.  
  18150.    <div
  18151.      class="
  18152.        productitem__unit-price
  18153.        hidden
  18154.      "
  18155.      data-unit-price
  18156.    >
  18157.      <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>
  18158.    </div>
  18159.  
  18160.  
  18161.  
  18162. </div>
  18163.  
  18164.  
  18165.        
  18166.  
  18167.        <h2 class="productitem--title">
  18168.          <a href="/products/55-r4f02-002-acer-aspire-5742z-usb-board" data-product-page-link>
  18169.            Acer Aspire 5742Z USB Board 55.R4F02.002
  18170.          </a>
  18171.        </h2>
  18172.  
  18173.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18174.        <div class="star_container 4605263622"></div>
  18175.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18176.  
  18177.        
  18178.          
  18179.            <span class="productitem--vendor">
  18180.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18181.            </span>
  18182.          
  18183.        
  18184.  
  18185.        
  18186.  
  18187.        
  18188.          
  18189.            <div class="productitem__stock-level">
  18190.              <!--
  18191.  
  18192.  
  18193.  
  18194.  
  18195.  
  18196.  
  18197.  
  18198. <div class="product-stock-level-wrapper" >
  18199.  
  18200.    <span class="
  18201.  product-stock-level
  18202.  product-stock-level--continue-selling
  18203.  
  18204. ">
  18205.      
  18206.  
  18207.      <span class="product-stock-level__text">
  18208.        
  18209.        <div class="product-stock-level__badge-text">
  18210.          
  18211.  
  18212.    In stock
  18213.  
  18214.  
  18215.        </div>
  18216.      </span>
  18217.    </span>
  18218.  
  18219. </div>
  18220. -->
  18221.              
  18222.  
  18223.  
  18224.    
  18225.      <b style="color:green">In stock</b>
  18226.    
  18227.  
  18228.  
  18229.  
  18230.  
  18231.  
  18232.  
  18233.  
  18234.            </div>
  18235.          
  18236.  
  18237.          
  18238.            
  18239.          
  18240.        
  18241.  
  18242.        
  18243.          <div class="productitem--description">
  18244.            <p>55.R4F02.002 Acer Aspire 5742Z USB Board - Pulled from working laptops
  18245. Compatible Models:
  18246. Aspire 5252, 5333, 5336, 5552, 5733, 5736, 5742
  18247. Gateway N...</p>
  18248.  
  18249.            
  18250.              <a
  18251.                href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18252.                class="productitem--link"
  18253.                data-product-page-link
  18254.              >
  18255.                View full details
  18256.              </a>
  18257.            
  18258.          </div>
  18259.        
  18260.      </div>
  18261.  
  18262.      
  18263.        
  18264.          
  18265.          
  18266.          
  18267.  
  18268.          
  18269.          
  18270.  
  18271.          
  18272.  
  18273.          
  18274.  
  18275.          <div class="productitem--actions" data-product-actions>
  18276.            <div class="productitem--listview-price">
  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.  
  18308. <div class="price productitem__price ">
  18309.  
  18310.    <div
  18311.      class="price__compare-at visible"
  18312.      data-price-compare-container
  18313.    >
  18314.  
  18315.      
  18316.        <span class="money price__original" data-price-original></span>
  18317.      
  18318.    </div>
  18319.  
  18320.  
  18321.    
  18322.      
  18323.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18324.        
  18325.          <span class="visually-hidden">Original price</span>
  18326.          <span class="money price__compare-at--min" data-price-compare-min>
  18327.            $50.99
  18328.          </span>
  18329.          -
  18330.          <span class="visually-hidden">Original price</span>
  18331.          <span class="money price__compare-at--max" data-price-compare-max>
  18332.            $50.99
  18333.          </span>
  18334.        
  18335.      </div>
  18336.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18337.        <span class="visually-hidden">Original price</span>
  18338.        <span class="money price__compare-at--single" data-price-compare>
  18339.          
  18340.        </span>
  18341.      </div>
  18342.    
  18343.  
  18344.  
  18345.  <div class="price__current price__current--emphasize " data-price-container>
  18346.  
  18347.    
  18348.  
  18349.    
  18350.      
  18351.      
  18352.      <span class="money" data-price>
  18353.        $50.99
  18354.      </span>
  18355.    
  18356.    
  18357.  </div>
  18358.  
  18359.  
  18360.    
  18361.    <div class="price__current--hidden" data-current-price-range-hidden>
  18362.      
  18363.        <span class="money price__current--min" data-price-min>$50.99</span>
  18364.        -
  18365.        <span class="money price__current--max" data-price-max>$50.99</span>
  18366.      
  18367.    </div>
  18368.    <div class="price__current--hidden" data-current-price-hidden>
  18369.      <span class="visually-hidden">Current price</span>
  18370.      <span class="money" data-price>
  18371.        $50.99
  18372.      </span>
  18373.    </div>
  18374.  
  18375.  
  18376.  
  18377.    
  18378.    
  18379.    
  18380.    
  18381.  
  18382.    <div
  18383.      class="
  18384.        productitem__unit-price
  18385.        hidden
  18386.      "
  18387.      data-unit-price
  18388.    >
  18389.      <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>
  18390.    </div>
  18391.  
  18392.  
  18393.  
  18394. </div>
  18395.  
  18396.  
  18397.            </div>
  18398.  
  18399.            <div class="productitem--listview-badge">
  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.  
  18428.            </div>
  18429.  
  18430.            
  18431.              <div
  18432.                class="
  18433.                  productitem--action
  18434.                  quickshop-button
  18435.                  
  18436.                "
  18437.              >
  18438.                <button
  18439.                  class="productitem--action-trigger button-secondary"
  18440.                  data-quickshop-full
  18441.                  
  18442.                  
  18443.                  type="button"
  18444.                >
  18445.                  Quick shop
  18446.                </button>
  18447.              </div>
  18448.            
  18449.  
  18450.            
  18451.              <div
  18452.                class="
  18453.                  productitem--action
  18454.                  atc--button
  18455.                  
  18456.                "
  18457.              >
  18458.                <button
  18459.                  class="productitem--action-trigger productitem--action-atc button-primary"
  18460.                  type="button"
  18461.                  aria-label="Add to cart"
  18462.                  
  18463.                    data-quick-buy
  18464.                  
  18465.                  data-variant-id="15084894150"
  18466.                  
  18467.                >
  18468.                  <span class="atc-button--text">
  18469.                    Add to cart
  18470.                  </span>
  18471.                  <span class="atc-button--icon"><svg
  18472.  aria-hidden="true"
  18473.  focusable="false"
  18474.  role="presentation"
  18475.  width="26"
  18476.  height="26"
  18477.  viewBox="0 0 26 26"
  18478.  xmlns="http://www.w3.org/2000/svg"
  18479. >
  18480.  <g fill-rule="nonzero" fill="currentColor">
  18481.    <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"/>
  18482.  </g>
  18483. </svg></span>
  18484.                </button>
  18485.              </div>
  18486.            
  18487.          </div>
  18488.        
  18489.      
  18490.    </div>
  18491.  </div>
  18492.  
  18493.  
  18494.    <script type="application/json" data-quick-buy-settings>
  18495.      {
  18496.        "cart_redirection": true,
  18497.        "money_format": "${{amount}}"
  18498.      }
  18499.    </script>
  18500.  
  18501. </li>
  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.  
  18540. <li
  18541.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  18542.  data-product-item
  18543.  data-product-quickshop-url="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18544.  
  18545. >
  18546.  <div class="productitem" data-product-item-content>
  18547.    
  18548.    
  18549.    
  18550.    
  18551.  
  18552.    
  18553.  
  18554.    
  18555.  
  18556.    <div class="productitem__container">
  18557.      
  18558.  
  18559.      <div class="productitem__image-container">
  18560.        <a target="_blank"
  18561.          class="productitem--image-link"
  18562.          href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18563.          aria-label="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18564.          tabindex="-1"
  18565.          data-product-page-link
  18566.        >
  18567.          <figure
  18568.            class="productitem--image"
  18569.            data-product-item-image
  18570.            
  18571.              style="--product-grid-item-image-aspect-ratio: 1.3333333333333333;"
  18572.            
  18573.          >
  18574.            
  18575.              
  18576.              
  18577.  
  18578.  
  18579.    <noscript data-rimg-noscript>
  18580.      <img loading="lazy"
  18581.        
  18582.          src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18583.        
  18584.  
  18585.        alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18586.        data-rimg="noscript"
  18587.        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"
  18588.        class="productitem--image-primary"
  18589.        
  18590.        
  18591.      >
  18592.    </noscript>
  18593.  
  18594.  
  18595.  <img loading="lazy"
  18596.    
  18597.      src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18598.    
  18599.    alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18600.  
  18601.    
  18602.      data-rimg="lazy"
  18603.      data-rimg-scale="1"
  18604.      data-rimg-template="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_{size}.jpg?v=1729362531"
  18605.      data-rimg-max="1500x1125"
  18606.      data-rimg-crop="false"
  18607.      
  18608.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='384'></svg>"
  18609.    
  18610.  
  18611.    class="productitem--image-primary"
  18612.    
  18613.    
  18614.  >
  18615.  
  18616.  
  18617.  
  18618.  <div data-rimg-canvas></div>
  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.  
  18651.          </figure>
  18652.        </a>
  18653.      </div><div class="productitem--info">
  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.  
  18691. <div class="price productitem__price ">
  18692.  
  18693.    <div
  18694.      class="price__compare-at visible"
  18695.      data-price-compare-container
  18696.    >
  18697.  
  18698.      
  18699.        <span class="money price__original" data-price-original></span>
  18700.      
  18701.    </div>
  18702.  
  18703.  
  18704.    
  18705.      
  18706.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18707.        
  18708.          <span class="visually-hidden">Original price</span>
  18709.          <span class="money price__compare-at--min" data-price-compare-min>
  18710.            $50.99
  18711.          </span>
  18712.          -
  18713.          <span class="visually-hidden">Original price</span>
  18714.          <span class="money price__compare-at--max" data-price-compare-max>
  18715.            $50.99
  18716.          </span>
  18717.        
  18718.      </div>
  18719.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18720.        <span class="visually-hidden">Original price</span>
  18721.        <span class="money price__compare-at--single" data-price-compare>
  18722.          
  18723.        </span>
  18724.      </div>
  18725.    
  18726.  
  18727.  
  18728.  <div class="price__current price__current--emphasize " data-price-container>
  18729.  
  18730.    
  18731.  
  18732.    
  18733.      
  18734.      
  18735.      <span class="money" data-price>
  18736.        $50.99
  18737.      </span>
  18738.    
  18739.    
  18740.  </div>
  18741.  
  18742.  
  18743.    
  18744.    <div class="price__current--hidden" data-current-price-range-hidden>
  18745.      
  18746.        <span class="money price__current--min" data-price-min>$50.99</span>
  18747.        -
  18748.        <span class="money price__current--max" data-price-max>$50.99</span>
  18749.      
  18750.    </div>
  18751.    <div class="price__current--hidden" data-current-price-hidden>
  18752.      <span class="visually-hidden">Current price</span>
  18753.      <span class="money" data-price>
  18754.        $50.99
  18755.      </span>
  18756.    </div>
  18757.  
  18758.  
  18759.  
  18760.    
  18761.    
  18762.    
  18763.    
  18764.  
  18765.    <div
  18766.      class="
  18767.        productitem__unit-price
  18768.        hidden
  18769.      "
  18770.      data-unit-price
  18771.    >
  18772.      <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>
  18773.    </div>
  18774.  
  18775.  
  18776.  
  18777. </div>
  18778.  
  18779.  
  18780.        
  18781.  
  18782.        <h2 class="productitem--title">
  18783.          <a href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1" data-product-page-link>
  18784.            Acer Aspire 7 A715-72 A715-72G A717-72 A717-72G Laptop Cpu Fan 23.GXBN2.001
  18785.          </a>
  18786.        </h2>
  18787.  
  18788.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18789.        <div class="star_container 3929786187863"></div>
  18790.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18791.  
  18792.        
  18793.          
  18794.            <span class="productitem--vendor">
  18795.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18796.            </span>
  18797.          
  18798.        
  18799.  
  18800.        
  18801.  
  18802.        
  18803.          
  18804.            <div class="productitem__stock-level">
  18805.              <!--
  18806.  
  18807.  
  18808.  
  18809.  
  18810.  
  18811.  
  18812.  
  18813. <div class="product-stock-level-wrapper" >
  18814.  
  18815.    <span class="
  18816.  product-stock-level
  18817.  product-stock-level--continue-selling
  18818.  
  18819. ">
  18820.      
  18821.  
  18822.      <span class="product-stock-level__text">
  18823.        
  18824.        <div class="product-stock-level__badge-text">
  18825.          
  18826.  
  18827.    In stock
  18828.  
  18829.  
  18830.        </div>
  18831.      </span>
  18832.    </span>
  18833.  
  18834. </div>
  18835. -->
  18836.              
  18837.  
  18838.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  18839.  
  18840.  
  18841.  
  18842.  
  18843.  
  18844.  
  18845.  
  18846.            </div>
  18847.          
  18848.  
  18849.          
  18850.            
  18851.          
  18852.        
  18853.  
  18854.        
  18855.          <div class="productitem--description">
  18856.            <p>
  18857. Description: New Acer laptop cpu fan.
  18858.  
  18859. Compatible Part #'s: 23.GXBN2.001
  18860.  
  18861. Compatible Models:
  18862. Acer Aspire 7 A715-72, A715-72G
  18863. Acer Aspire 7 A717-7...</p>
  18864.  
  18865.            
  18866.              <a
  18867.                href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18868.                class="productitem--link"
  18869.                data-product-page-link
  18870.              >
  18871.                View full details
  18872.              </a>
  18873.            
  18874.          </div>
  18875.        
  18876.      </div>
  18877.  
  18878.      
  18879.        
  18880.          
  18881.          
  18882.          
  18883.  
  18884.          
  18885.          
  18886.  
  18887.          
  18888.  
  18889.          
  18890.  
  18891.          <div class="productitem--actions" data-product-actions>
  18892.            <div class="productitem--listview-price">
  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.  
  18924. <div class="price productitem__price ">
  18925.  
  18926.    <div
  18927.      class="price__compare-at visible"
  18928.      data-price-compare-container
  18929.    >
  18930.  
  18931.      
  18932.        <span class="money price__original" data-price-original></span>
  18933.      
  18934.    </div>
  18935.  
  18936.  
  18937.    
  18938.      
  18939.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18940.        
  18941.          <span class="visually-hidden">Original price</span>
  18942.          <span class="money price__compare-at--min" data-price-compare-min>
  18943.            $50.99
  18944.          </span>
  18945.          -
  18946.          <span class="visually-hidden">Original price</span>
  18947.          <span class="money price__compare-at--max" data-price-compare-max>
  18948.            $50.99
  18949.          </span>
  18950.        
  18951.      </div>
  18952.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18953.        <span class="visually-hidden">Original price</span>
  18954.        <span class="money price__compare-at--single" data-price-compare>
  18955.          
  18956.        </span>
  18957.      </div>
  18958.    
  18959.  
  18960.  
  18961.  <div class="price__current price__current--emphasize " data-price-container>
  18962.  
  18963.    
  18964.  
  18965.    
  18966.      
  18967.      
  18968.      <span class="money" data-price>
  18969.        $50.99
  18970.      </span>
  18971.    
  18972.    
  18973.  </div>
  18974.  
  18975.  
  18976.    
  18977.    <div class="price__current--hidden" data-current-price-range-hidden>
  18978.      
  18979.        <span class="money price__current--min" data-price-min>$50.99</span>
  18980.        -
  18981.        <span class="money price__current--max" data-price-max>$50.99</span>
  18982.      
  18983.    </div>
  18984.    <div class="price__current--hidden" data-current-price-hidden>
  18985.      <span class="visually-hidden">Current price</span>
  18986.      <span class="money" data-price>
  18987.        $50.99
  18988.      </span>
  18989.    </div>
  18990.  
  18991.  
  18992.  
  18993.    
  18994.    
  18995.    
  18996.    
  18997.  
  18998.    <div
  18999.      class="
  19000.        productitem__unit-price
  19001.        hidden
  19002.      "
  19003.      data-unit-price
  19004.    >
  19005.      <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>
  19006.    </div>
  19007.  
  19008.  
  19009.  
  19010. </div>
  19011.  
  19012.  
  19013.            </div>
  19014.  
  19015.            <div class="productitem--listview-badge">
  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.  
  19044.            </div>
  19045.  
  19046.            
  19047.              <div
  19048.                class="
  19049.                  productitem--action
  19050.                  quickshop-button
  19051.                  
  19052.                "
  19053.              >
  19054.                <button
  19055.                  class="productitem--action-trigger button-secondary"
  19056.                  data-quickshop-full
  19057.                  
  19058.                  
  19059.                  type="button"
  19060.                >
  19061.                  Quick shop
  19062.                </button>
  19063.              </div>
  19064.            
  19065.  
  19066.            
  19067.              <div
  19068.                class="
  19069.                  productitem--action
  19070.                  atc--button
  19071.                  
  19072.                "
  19073.              >
  19074.                <button
  19075.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19076.                  type="button"
  19077.                  aria-label="Add to cart"
  19078.                  
  19079.                    data-quick-buy
  19080.                  
  19081.                  data-variant-id="29440907575383"
  19082.                  
  19083.                >
  19084.                  <span class="atc-button--text">
  19085.                    Add to cart
  19086.                  </span>
  19087.                  <span class="atc-button--icon"><svg
  19088.  aria-hidden="true"
  19089.  focusable="false"
  19090.  role="presentation"
  19091.  width="26"
  19092.  height="26"
  19093.  viewBox="0 0 26 26"
  19094.  xmlns="http://www.w3.org/2000/svg"
  19095. >
  19096.  <g fill-rule="nonzero" fill="currentColor">
  19097.    <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"/>
  19098.  </g>
  19099. </svg></span>
  19100.                </button>
  19101.              </div>
  19102.            
  19103.          </div>
  19104.        
  19105.      
  19106.    </div>
  19107.  </div>
  19108.  
  19109.  
  19110.    <script type="application/json" data-quick-buy-settings>
  19111.      {
  19112.        "cart_redirection": true,
  19113.        "money_format": "${{amount}}"
  19114.      }
  19115.    </script>
  19116.  
  19117. </li>
  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.  
  19156. <li
  19157.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  19158.  data-product-item
  19159.  data-product-quickshop-url="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19160.  
  19161. >
  19162.  <div class="productitem" data-product-item-content>
  19163.    
  19164.    
  19165.    
  19166.    
  19167.  
  19168.    
  19169.  
  19170.    
  19171.  
  19172.    <div class="productitem__container">
  19173.      
  19174.  
  19175.      <div class="productitem__image-container">
  19176.        <a target="_blank"
  19177.          class="productitem--image-link"
  19178.          href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19179.          aria-label="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19180.          tabindex="-1"
  19181.          data-product-page-link
  19182.        >
  19183.          <figure
  19184.            class="productitem--image"
  19185.            data-product-item-image
  19186.            
  19187.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  19188.            
  19189.          >
  19190.            
  19191.              
  19192.              
  19193.  
  19194.  
  19195.    <noscript data-rimg-noscript>
  19196.      <img loading="lazy"
  19197.        
  19198.          src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19199.        
  19200.  
  19201.        alt=""
  19202.        data-rimg="noscript"
  19203.        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"
  19204.        class="productitem--image-primary"
  19205.        
  19206.        
  19207.      >
  19208.    </noscript>
  19209.  
  19210.  
  19211.  <img loading="lazy"
  19212.    
  19213.      src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19214.    
  19215.    alt=""
  19216.  
  19217.    
  19218.      data-rimg="lazy"
  19219.      data-rimg-scale="1"
  19220.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_{size}.jpg?v=1697125259"
  19221.      data-rimg-max="2048x2048"
  19222.      data-rimg-crop="false"
  19223.      
  19224.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  19225.    
  19226.  
  19227.    class="productitem--image-primary"
  19228.    
  19229.    
  19230.  >
  19231.  
  19232.  
  19233.  
  19234.  <div data-rimg-canvas></div>
  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.  
  19267.          </figure>
  19268.        </a>
  19269.      </div><div class="productitem--info">
  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.  
  19307. <div class="price productitem__price ">
  19308.  
  19309.    <div
  19310.      class="price__compare-at visible"
  19311.      data-price-compare-container
  19312.    >
  19313.  
  19314.      
  19315.        <span class="money price__original" data-price-original></span>
  19316.      
  19317.    </div>
  19318.  
  19319.  
  19320.    
  19321.      
  19322.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19323.        
  19324.          <span class="visually-hidden">Original price</span>
  19325.          <span class="money price__compare-at--min" data-price-compare-min>
  19326.            $58.99
  19327.          </span>
  19328.          -
  19329.          <span class="visually-hidden">Original price</span>
  19330.          <span class="money price__compare-at--max" data-price-compare-max>
  19331.            $58.99
  19332.          </span>
  19333.        
  19334.      </div>
  19335.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19336.        <span class="visually-hidden">Original price</span>
  19337.        <span class="money price__compare-at--single" data-price-compare>
  19338.          
  19339.        </span>
  19340.      </div>
  19341.    
  19342.  
  19343.  
  19344.  <div class="price__current price__current--emphasize " data-price-container>
  19345.  
  19346.    
  19347.  
  19348.    
  19349.      
  19350.      
  19351.      <span class="money" data-price>
  19352.        $58.99
  19353.      </span>
  19354.    
  19355.    
  19356.  </div>
  19357.  
  19358.  
  19359.    
  19360.    <div class="price__current--hidden" data-current-price-range-hidden>
  19361.      
  19362.        <span class="money price__current--min" data-price-min>$58.99</span>
  19363.        -
  19364.        <span class="money price__current--max" data-price-max>$58.99</span>
  19365.      
  19366.    </div>
  19367.    <div class="price__current--hidden" data-current-price-hidden>
  19368.      <span class="visually-hidden">Current price</span>
  19369.      <span class="money" data-price>
  19370.        $58.99
  19371.      </span>
  19372.    </div>
  19373.  
  19374.  
  19375.  
  19376.    
  19377.    
  19378.    
  19379.    
  19380.  
  19381.    <div
  19382.      class="
  19383.        productitem__unit-price
  19384.        hidden
  19385.      "
  19386.      data-unit-price
  19387.    >
  19388.      <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>
  19389.    </div>
  19390.  
  19391.  
  19392.  
  19393. </div>
  19394.  
  19395.  
  19396.        
  19397.  
  19398.        <h2 class="productitem--title">
  19399.          <a href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001" data-product-page-link>
  19400.            Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001
  19401.          </a>
  19402.        </h2>
  19403.  
  19404.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  19405.        <div class="star_container 3929790414935"></div>
  19406.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  19407.  
  19408.        
  19409.          
  19410.            <span class="productitem--vendor">
  19411.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  19412.            </span>
  19413.          
  19414.        
  19415.  
  19416.        
  19417.  
  19418.        
  19419.          
  19420.            <div class="productitem__stock-level">
  19421.              <!--
  19422.  
  19423.  
  19424.  
  19425.  
  19426.  
  19427.  
  19428.  
  19429. <div class="product-stock-level-wrapper" >
  19430.  
  19431.    <span class="
  19432.  product-stock-level
  19433.  product-stock-level--continue-selling
  19434.  
  19435. ">
  19436.      
  19437.  
  19438.      <span class="product-stock-level__text">
  19439.        
  19440.        <div class="product-stock-level__badge-text">
  19441.          
  19442.  
  19443.    In stock
  19444.  
  19445.  
  19446.        </div>
  19447.      </span>
  19448.    </span>
  19449.  
  19450. </div>
  19451. -->
  19452.              
  19453.  
  19454.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  19455.  
  19456.  
  19457.  
  19458.  
  19459.  
  19460.  
  19461.  
  19462.            </div>
  19463.          
  19464.  
  19465.          
  19466.            
  19467.          
  19468.        
  19469.  
  19470.        
  19471.          <div class="productitem--description">
  19472.            <p>
  19473. Description: New genuine Acer laptop dc jack cable. 45 watt version.
  19474.  
  19475. Compatible Part #'s: 50.GNSN7.001
  19476.  
  19477. Compatible Models:
  19478. Acer Aspire 1 A114-31
  19479. ...</p>
  19480.  
  19481.            
  19482.              <a
  19483.                href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19484.                class="productitem--link"
  19485.                data-product-page-link
  19486.              >
  19487.                View full details
  19488.              </a>
  19489.            
  19490.          </div>
  19491.        
  19492.      </div>
  19493.  
  19494.      
  19495.        
  19496.          
  19497.          
  19498.          
  19499.  
  19500.          
  19501.          
  19502.  
  19503.          
  19504.  
  19505.          
  19506.  
  19507.          <div class="productitem--actions" data-product-actions>
  19508.            <div class="productitem--listview-price">
  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.  
  19540. <div class="price productitem__price ">
  19541.  
  19542.    <div
  19543.      class="price__compare-at visible"
  19544.      data-price-compare-container
  19545.    >
  19546.  
  19547.      
  19548.        <span class="money price__original" data-price-original></span>
  19549.      
  19550.    </div>
  19551.  
  19552.  
  19553.    
  19554.      
  19555.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19556.        
  19557.          <span class="visually-hidden">Original price</span>
  19558.          <span class="money price__compare-at--min" data-price-compare-min>
  19559.            $58.99
  19560.          </span>
  19561.          -
  19562.          <span class="visually-hidden">Original price</span>
  19563.          <span class="money price__compare-at--max" data-price-compare-max>
  19564.            $58.99
  19565.          </span>
  19566.        
  19567.      </div>
  19568.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19569.        <span class="visually-hidden">Original price</span>
  19570.        <span class="money price__compare-at--single" data-price-compare>
  19571.          
  19572.        </span>
  19573.      </div>
  19574.    
  19575.  
  19576.  
  19577.  <div class="price__current price__current--emphasize " data-price-container>
  19578.  
  19579.    
  19580.  
  19581.    
  19582.      
  19583.      
  19584.      <span class="money" data-price>
  19585.        $58.99
  19586.      </span>
  19587.    
  19588.    
  19589.  </div>
  19590.  
  19591.  
  19592.    
  19593.    <div class="price__current--hidden" data-current-price-range-hidden>
  19594.      
  19595.        <span class="money price__current--min" data-price-min>$58.99</span>
  19596.        -
  19597.        <span class="money price__current--max" data-price-max>$58.99</span>
  19598.      
  19599.    </div>
  19600.    <div class="price__current--hidden" data-current-price-hidden>
  19601.      <span class="visually-hidden">Current price</span>
  19602.      <span class="money" data-price>
  19603.        $58.99
  19604.      </span>
  19605.    </div>
  19606.  
  19607.  
  19608.  
  19609.    
  19610.    
  19611.    
  19612.    
  19613.  
  19614.    <div
  19615.      class="
  19616.        productitem__unit-price
  19617.        hidden
  19618.      "
  19619.      data-unit-price
  19620.    >
  19621.      <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>
  19622.    </div>
  19623.  
  19624.  
  19625.  
  19626. </div>
  19627.  
  19628.  
  19629.            </div>
  19630.  
  19631.            <div class="productitem--listview-badge">
  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.  
  19660.            </div>
  19661.  
  19662.            
  19663.              <div
  19664.                class="
  19665.                  productitem--action
  19666.                  quickshop-button
  19667.                  
  19668.                "
  19669.              >
  19670.                <button
  19671.                  class="productitem--action-trigger button-secondary"
  19672.                  data-quickshop-full
  19673.                  
  19674.                  
  19675.                  type="button"
  19676.                >
  19677.                  Quick shop
  19678.                </button>
  19679.              </div>
  19680.            
  19681.  
  19682.            
  19683.              <div
  19684.                class="
  19685.                  productitem--action
  19686.                  atc--button
  19687.                  
  19688.                "
  19689.              >
  19690.                <button
  19691.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19692.                  type="button"
  19693.                  aria-label="Add to cart"
  19694.                  
  19695.                    data-quick-buy
  19696.                  
  19697.                  data-variant-id="29408090816599"
  19698.                  
  19699.                >
  19700.                  <span class="atc-button--text">
  19701.                    Add to cart
  19702.                  </span>
  19703.                  <span class="atc-button--icon"><svg
  19704.  aria-hidden="true"
  19705.  focusable="false"
  19706.  role="presentation"
  19707.  width="26"
  19708.  height="26"
  19709.  viewBox="0 0 26 26"
  19710.  xmlns="http://www.w3.org/2000/svg"
  19711. >
  19712.  <g fill-rule="nonzero" fill="currentColor">
  19713.    <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"/>
  19714.  </g>
  19715. </svg></span>
  19716.                </button>
  19717.              </div>
  19718.            
  19719.          </div>
  19720.        
  19721.      
  19722.    </div>
  19723.  </div>
  19724.  
  19725.  
  19726.    <script type="application/json" data-quick-buy-settings>
  19727.      {
  19728.        "cart_redirection": true,
  19729.        "money_format": "${{amount}}"
  19730.      }
  19731.    </script>
  19732.  
  19733. </li>
  19734.    
  19735.  
  19736.    
  19737.  </ul>
  19738.  
  19739.  
  19740.    
  19741.      <a
  19742.        class="
  19743.          button-primary
  19744.          featured-collection__button
  19745.        "
  19746.        href="/collections/shop-the-best-selling"
  19747.      >
  19748.        View All
  19749.      </a>
  19750.    
  19751.  
  19752. </section>
  19753.  
  19754.  
  19755. <div class="productitem-quickshop" data-product-quickshop>
  19756.  <span class="quickshop-spinner"><svg
  19757.  aria-hidden="true"
  19758.  focusable="false"
  19759.  role="presentation"
  19760.  width="26"
  19761.  height="26"
  19762.  viewBox="0 0 26 26"
  19763.  xmlns="http://www.w3.org/2000/svg"
  19764. >
  19765.  <g fill-rule="nonzero" fill="currentColor">
  19766.    <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"/>
  19767.  </g>
  19768. </svg></span>
  19769. </div>
  19770.  
  19771.  
  19772. </div><div id="shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114" class="shopify-section slideshow--section">
  19773.  
  19774.  
  19775.  
  19776. <script type="application/pxs-animation-mapping+json">
  19777.  {
  19778.    "blocks": [".slideshow-slide"],
  19779.    "elements": [
  19780.      ".slideshow-slide__heading",
  19781.      ".slideshow-slide__subheading",
  19782.      ".slideshow-slide__text",
  19783.      ".slideshow-slide__button"
  19784.    ]
  19785.  }
  19786. </script>
  19787.  
  19788. <style data-shopify>
  19789.  #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 {
  19790.    --autoplay-interval: 5s;
  19791.  }
  19792.  
  19793.  
  19794.    @media screen and (min-width: 720px) {
  19795.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19796.        height: vw;
  19797.      }
  19798.    }
  19799.  
  19800.  
  19801.  
  19802.    @media screen and (max-width: 719px) {
  19803.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19804.        
  19805.          height: vw;
  19806.        
  19807.      }
  19808.    }
  19809.  
  19810. </style>
  19811.  
  19812.  
  19813.  
  19814.  
  19815. <script
  19816.  type="application/json"
  19817.  data-section-type="pxs-slideshow"
  19818.  data-section-id="template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114"
  19819.  data-section-data
  19820. >
  19821.  {
  19822.    "enable_autoplay": true,
  19823.    "autoplay_interval": 5,
  19824.    "mobile_navigation_adjust": true,
  19825.    "transition_fade": null,
  19826.    "slide_attraction": null,
  19827.    "slide_friction": null,
  19828.    "next_text": "Next slide",
  19829.    "previous_text": "Previous slide"
  19830.  }
  19831. </script>
  19832.  
  19833. <section
  19834.  class="
  19835.    slideshow
  19836.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  19837.  "
  19838.  aria-label="Slideshow"
  19839.  data-autoplay="true"
  19840.  data-autoplay-interval="5"
  19841.  data-banner="false"
  19842.  data-slideshow
  19843. ><div
  19844.    class="slideshow__wrapper "
  19845.    data-slideshow-wrapper
  19846.  ></div><div
  19847.    class="slideshow__current-slide visually-hidden"
  19848.    aria-live="polite"
  19849.    aria-atomic="true"
  19850.    data-slide-counter
  19851.    data-counter-template="Slide {{ count }} of {{ total }}"
  19852.  >
  19853.  </div>
  19854. </section>
  19855.  
  19856.  
  19857.  
  19858. </div><div id="shopify-section-template--15492296147031__516e59b8-141e-43e3-8f1d-46287735da01" class="shopify-section logolist--section"><script type="application/pxs-animation-mapping+json">
  19859.  {
  19860.    "blocks": [".logolist--inner"],
  19861.    "elements": [
  19862.      ".logolist--item"
  19863.    ]
  19864.  }
  19865. </script>
  19866.  
  19867. <section class="logolist--container">
  19868.  
  19869.    <h2 class="home-section--title">
  19870.      Search By Brands
  19871.    </h2>
  19872.  
  19873.  
  19874.  <div class="home-section--content logolist--inner">
  19875.    
  19876.      <div class="logolist--item" >
  19877.        
  19878.          <a
  19879.            class="logolist--link"
  19880.            href="/collections/acer-parts-canada"
  19881.            target="_blank"
  19882.          >
  19883.        
  19884.  
  19885.        
  19886.          
  19887.  
  19888.  
  19889.    <noscript data-rimg-noscript>
  19890.      <img loading="lazy"
  19891.        
  19892.          src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19893.        
  19894.  
  19895.        alt=""
  19896.        data-rimg="noscript"
  19897.        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"
  19898.        class="logolist--image"
  19899.        style="
  19900.        object-fit:cover;object-position:50.0% 50.0%;
  19901.      
  19902. "
  19903.        
  19904.      >
  19905.    </noscript>
  19906.  
  19907.  
  19908.  <img loading="lazy"
  19909.    
  19910.      src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19911.    
  19912.    alt=""
  19913.  
  19914.    
  19915.      data-rimg="lazy"
  19916.      data-rimg-scale="1"
  19917.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Acer_{size}.png?v=1698309818"
  19918.      data-rimg-max="1024x247"
  19919.      data-rimg-crop="false"
  19920.      
  19921.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='39'></svg>"
  19922.    
  19923.  
  19924.    class="logolist--image"
  19925.    style="
  19926.        object-fit:cover;object-position:50.0% 50.0%;
  19927.      
  19928. "
  19929.    
  19930.  >
  19931.  
  19932.  
  19933.  
  19934.  <div data-rimg-canvas></div>
  19935.  
  19936.  
  19937.        
  19938.  
  19939.        
  19940.          </a>
  19941.        
  19942.      </div>
  19943.    
  19944.      <div class="logolist--item" >
  19945.        
  19946.          <a
  19947.            class="logolist--link"
  19948.            href="/collections/dell-laptop-batteries"
  19949.            target="_blank"
  19950.          >
  19951.        
  19952.  
  19953.        
  19954.          
  19955.  
  19956.  
  19957.    <noscript data-rimg-noscript>
  19958.      <img loading="lazy"
  19959.        
  19960.          src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  19961.        
  19962.  
  19963.        alt=""
  19964.        data-rimg="noscript"
  19965.        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"
  19966.        class="logolist--image"
  19967.        style="
  19968.        object-fit:cover;object-position:50.0% 50.0%;
  19969.      
  19970. "
  19971.        
  19972.      >
  19973.    </noscript>
  19974.  
  19975.  
  19976.  <img loading="lazy"
  19977.    
  19978.      src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  19979.    
  19980.    alt=""
  19981.  
  19982.    
  19983.      data-rimg="lazy"
  19984.      data-rimg-scale="1"
  19985.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_{size}.png?v=1698309835"
  19986.      data-rimg-max="2048x2048"
  19987.      data-rimg-crop="false"
  19988.      
  19989.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  19990.    
  19991.  
  19992.    class="logolist--image"
  19993.    style="
  19994.        object-fit:cover;object-position:50.0% 50.0%;
  19995.      
  19996. "
  19997.    
  19998.  >
  19999.  
  20000.  
  20001.  
  20002.  <div data-rimg-canvas></div>
  20003.  
  20004.  
  20005.        
  20006.  
  20007.        
  20008.          </a>
  20009.        
  20010.      </div>
  20011.    
  20012.      <div class="logolist--item" >
  20013.        
  20014.          <a
  20015.            class="logolist--link"
  20016.            href="/collections/asus"
  20017.            target="_blank"
  20018.          >
  20019.        
  20020.  
  20021.        
  20022.          
  20023.  
  20024.  
  20025.    <noscript data-rimg-noscript>
  20026.      <img loading="lazy"
  20027.        
  20028.          src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20029.        
  20030.  
  20031.        alt=""
  20032.        data-rimg="noscript"
  20033.        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"
  20034.        class="logolist--image"
  20035.        style="
  20036.        object-fit:cover;object-position:50.0% 50.0%;
  20037.      
  20038. "
  20039.        
  20040.      >
  20041.    </noscript>
  20042.  
  20043.  
  20044.  <img loading="lazy"
  20045.    
  20046.      src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20047.    
  20048.    alt=""
  20049.  
  20050.    
  20051.      data-rimg="lazy"
  20052.      data-rimg-scale="1"
  20053.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Asus_{size}.png?v=1698309865"
  20054.      data-rimg-max="504x100"
  20055.      data-rimg-crop="false"
  20056.      
  20057.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='32'></svg>"
  20058.    
  20059.  
  20060.    class="logolist--image"
  20061.    style="
  20062.        object-fit:cover;object-position:50.0% 50.0%;
  20063.      
  20064. "
  20065.    
  20066.  >
  20067.  
  20068.  
  20069.  
  20070.  <div data-rimg-canvas></div>
  20071.  
  20072.  
  20073.        
  20074.  
  20075.        
  20076.          </a>
  20077.        
  20078.      </div>
  20079.    
  20080.      <div class="logolist--item" >
  20081.        
  20082.          <a
  20083.            class="logolist--link"
  20084.            href="/collections/fujitsu"
  20085.            target="_blank"
  20086.          >
  20087.        
  20088.  
  20089.        
  20090.          
  20091.  
  20092.  
  20093.    <noscript data-rimg-noscript>
  20094.      <img loading="lazy"
  20095.        
  20096.          src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20097.        
  20098.  
  20099.        alt=""
  20100.        data-rimg="noscript"
  20101.        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"
  20102.        class="logolist--image"
  20103.        style="
  20104.        object-fit:cover;object-position:50.0% 50.0%;
  20105.      
  20106. "
  20107.        
  20108.      >
  20109.    </noscript>
  20110.  
  20111.  
  20112.  <img loading="lazy"
  20113.    
  20114.      src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20115.    
  20116.    alt=""
  20117.  
  20118.    
  20119.      data-rimg="lazy"
  20120.      data-rimg-scale="1"
  20121.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_{size}.png?v=1698309977"
  20122.      data-rimg-max="1280x602"
  20123.      data-rimg-crop="false"
  20124.      
  20125.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='76'></svg>"
  20126.    
  20127.  
  20128.    class="logolist--image"
  20129.    style="
  20130.        object-fit:cover;object-position:50.0% 50.0%;
  20131.      
  20132. "
  20133.    
  20134.  >
  20135.  
  20136.  
  20137.  
  20138.  <div data-rimg-canvas></div>
  20139.  
  20140.  
  20141.        
  20142.  
  20143.        
  20144.          </a>
  20145.        
  20146.      </div>
  20147.    
  20148.      <div class="logolist--item" >
  20149.        
  20150.          <a
  20151.            class="logolist--link"
  20152.            href="/collections/samsung"
  20153.            target="_blank"
  20154.          >
  20155.        
  20156.  
  20157.        
  20158.          
  20159.  
  20160.  
  20161.    <noscript data-rimg-noscript>
  20162.      <img loading="lazy"
  20163.        
  20164.          src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20165.        
  20166.  
  20167.        alt=""
  20168.        data-rimg="noscript"
  20169.        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"
  20170.        class="logolist--image"
  20171.        style="
  20172.        object-fit:cover;object-position:50.0% 50.0%;
  20173.      
  20174. "
  20175.        
  20176.      >
  20177.    </noscript>
  20178.  
  20179.  
  20180.  <img loading="lazy"
  20181.    
  20182.      src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20183.    
  20184.    alt=""
  20185.  
  20186.    
  20187.      data-rimg="lazy"
  20188.      data-rimg-scale="1"
  20189.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_{size}.png?v=1698309930"
  20190.      data-rimg-max="7051x1080"
  20191.      data-rimg-crop="false"
  20192.      
  20193.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20194.    
  20195.  
  20196.    class="logolist--image"
  20197.    style="
  20198.        object-fit:cover;object-position:50.0% 50.0%;
  20199.      
  20200. "
  20201.    
  20202.  >
  20203.  
  20204.  
  20205.  
  20206.  <div data-rimg-canvas></div>
  20207.  
  20208.  
  20209.        
  20210.  
  20211.        
  20212.          </a>
  20213.        
  20214.      </div>
  20215.    
  20216.      <div class="logolist--item" >
  20217.        
  20218.          <a
  20219.            class="logolist--link"
  20220.            href="/collections/apple"
  20221.            target="_blank"
  20222.          >
  20223.        
  20224.  
  20225.        
  20226.          
  20227.  
  20228.  
  20229.    <noscript data-rimg-noscript>
  20230.      <img loading="lazy"
  20231.        
  20232.          src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20233.        
  20234.  
  20235.        alt=""
  20236.        data-rimg="noscript"
  20237.        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"
  20238.        class="logolist--image"
  20239.        style="
  20240.        object-fit:cover;object-position:50.0% 50.0%;
  20241.      
  20242. "
  20243.        
  20244.      >
  20245.    </noscript>
  20246.  
  20247.  
  20248.  <img loading="lazy"
  20249.    
  20250.      src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20251.    
  20252.    alt=""
  20253.  
  20254.    
  20255.      data-rimg="lazy"
  20256.      data-rimg-scale="1"
  20257.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Apple-Logo_{size}.jpg?v=1698309948"
  20258.      data-rimg-max="3840x2160"
  20259.      data-rimg-crop="false"
  20260.      
  20261.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='90'></svg>"
  20262.    
  20263.  
  20264.    class="logolist--image"
  20265.    style="
  20266.        object-fit:cover;object-position:50.0% 50.0%;
  20267.      
  20268. "
  20269.    
  20270.  >
  20271.  
  20272.  
  20273.  
  20274.  <div data-rimg-canvas></div>
  20275.  
  20276.  
  20277.        
  20278.  
  20279.        
  20280.          </a>
  20281.        
  20282.      </div>
  20283.    
  20284.      <div class="logolist--item" >
  20285.        
  20286.          <a
  20287.            class="logolist--link"
  20288.            href="/collections/hp-laptop-battery"
  20289.            target="_blank"
  20290.          >
  20291.        
  20292.  
  20293.        
  20294.          
  20295.  
  20296.  
  20297.    <noscript data-rimg-noscript>
  20298.      <img loading="lazy"
  20299.        
  20300.          src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20301.        
  20302.  
  20303.        alt=""
  20304.        data-rimg="noscript"
  20305.        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"
  20306.        class="logolist--image"
  20307.        style="
  20308.        object-fit:cover;object-position:50.0% 50.0%;
  20309.      
  20310. "
  20311.        
  20312.      >
  20313.    </noscript>
  20314.  
  20315.  
  20316.  <img loading="lazy"
  20317.    
  20318.      src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20319.    
  20320.    alt=""
  20321.  
  20322.    
  20323.      data-rimg="lazy"
  20324.      data-rimg-scale="1"
  20325.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_{size}.png?v=1698310007"
  20326.      data-rimg-max="2048x2048"
  20327.      data-rimg-crop="false"
  20328.      
  20329.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20330.    
  20331.  
  20332.    class="logolist--image"
  20333.    style="
  20334.        object-fit:cover;object-position:50.0% 50.0%;
  20335.      
  20336. "
  20337.    
  20338.  >
  20339.  
  20340.  
  20341.  
  20342.  <div data-rimg-canvas></div>
  20343.  
  20344.  
  20345.        
  20346.  
  20347.        
  20348.          </a>
  20349.        
  20350.      </div>
  20351.    
  20352.      <div class="logolist--item" >
  20353.        
  20354.          <a
  20355.            class="logolist--link"
  20356.            href="/collections/all"
  20357.            target="_blank"
  20358.          >
  20359.        
  20360.  
  20361.        
  20362.          
  20363.  
  20364.  
  20365.    <noscript data-rimg-noscript>
  20366.      <img loading="lazy"
  20367.        
  20368.          src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20369.        
  20370.  
  20371.        alt=""
  20372.        data-rimg="noscript"
  20373.        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"
  20374.        class="logolist--image"
  20375.        style="
  20376.        object-fit:cover;object-position:50.0% 50.0%;
  20377.      
  20378. "
  20379.        
  20380.      >
  20381.    </noscript>
  20382.  
  20383.  
  20384.  <img loading="lazy"
  20385.    
  20386.      src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20387.    
  20388.    alt=""
  20389.  
  20390.    
  20391.      data-rimg="lazy"
  20392.      data-rimg-scale="1"
  20393.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_{size}.png?v=1698310074"
  20394.      data-rimg-max="5000x3125"
  20395.      data-rimg-crop="false"
  20396.      
  20397.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='100'></svg>"
  20398.    
  20399.  
  20400.    class="logolist--image"
  20401.    style="
  20402.        object-fit:cover;object-position:50.0% 50.0%;
  20403.      
  20404. "
  20405.    
  20406.  >
  20407.  
  20408.  
  20409.  
  20410.  <div data-rimg-canvas></div>
  20411.  
  20412.  
  20413.        
  20414.  
  20415.        
  20416.          </a>
  20417.        
  20418.      </div>
  20419.    
  20420.      <div class="logolist--item" >
  20421.        
  20422.          <a
  20423.            class="logolist--link"
  20424.            href="/collections/all"
  20425.            target="_blank"
  20426.          >
  20427.        
  20428.  
  20429.        
  20430.          
  20431.  
  20432.  
  20433.    <noscript data-rimg-noscript>
  20434.      <img loading="lazy"
  20435.        
  20436.          src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20437.        
  20438.  
  20439.        alt=""
  20440.        data-rimg="noscript"
  20441.        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"
  20442.        class="logolist--image"
  20443.        style="
  20444.        object-fit:cover;object-position:50.0% 50.0%;
  20445.      
  20446. "
  20447.        
  20448.      >
  20449.    </noscript>
  20450.  
  20451.  
  20452.  <img loading="lazy"
  20453.    
  20454.      src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20455.    
  20456.    alt=""
  20457.  
  20458.    
  20459.      data-rimg="lazy"
  20460.      data-rimg-scale="1"
  20461.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Alienware_{size}.png?v=1698310052"
  20462.      data-rimg-max="860x231"
  20463.      data-rimg-crop="false"
  20464.      
  20465.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='43'></svg>"
  20466.    
  20467.  
  20468.    class="logolist--image"
  20469.    style="
  20470.        object-fit:cover;object-position:50.0% 50.0%;
  20471.      
  20472. "
  20473.    
  20474.  >
  20475.  
  20476.  
  20477.  
  20478.  <div data-rimg-canvas></div>
  20479.  
  20480.  
  20481.        
  20482.  
  20483.        
  20484.          </a>
  20485.        
  20486.      </div>
  20487.    
  20488.      <div class="logolist--item" >
  20489.        
  20490.          <a
  20491.            class="logolist--link"
  20492.            href="/collections/all"
  20493.            target="_blank"
  20494.          >
  20495.        
  20496.  
  20497.        
  20498.          
  20499.  
  20500.  
  20501.    <noscript data-rimg-noscript>
  20502.      <img loading="lazy"
  20503.        
  20504.          src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20505.        
  20506.  
  20507.        alt=""
  20508.        data-rimg="noscript"
  20509.        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"
  20510.        class="logolist--image"
  20511.        style="
  20512.        object-fit:cover;object-position:50.0% 50.0%;
  20513.      
  20514. "
  20515.        
  20516.      >
  20517.    </noscript>
  20518.  
  20519.  
  20520.  <img loading="lazy"
  20521.    
  20522.      src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20523.    
  20524.    alt=""
  20525.  
  20526.    
  20527.      data-rimg="lazy"
  20528.      data-rimg-scale="1"
  20529.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_{size}.png?v=1698310106"
  20530.      data-rimg-max="1200x183"
  20531.      data-rimg-crop="false"
  20532.      
  20533.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20534.    
  20535.  
  20536.    class="logolist--image"
  20537.    style="
  20538.        object-fit:cover;object-position:50.0% 50.0%;
  20539.      
  20540. "
  20541.    
  20542.  >
  20543.  
  20544.  
  20545.  
  20546.  <div data-rimg-canvas></div>
  20547.  
  20548.  
  20549.        
  20550.  
  20551.        
  20552.          </a>
  20553.        
  20554.      </div>
  20555.    
  20556.      <div class="logolist--item" >
  20557.        
  20558.          <a
  20559.            class="logolist--link"
  20560.            href="/collections/all"
  20561.            target="_blank"
  20562.          >
  20563.        
  20564.  
  20565.        
  20566.          
  20567.  
  20568.  
  20569.    <noscript data-rimg-noscript>
  20570.      <img loading="lazy"
  20571.        
  20572.          src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20573.        
  20574.  
  20575.        alt=""
  20576.        data-rimg="noscript"
  20577.        srcset="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364 1x, //laptopparts.ca/cdn/shop/files/Panasonic_224x224.png?v=1698310364 1.4x"
  20578.        class="logolist--image"
  20579.        style="
  20580.        object-fit:cover;object-position:50.0% 50.0%;
  20581.      
  20582. "
  20583.        
  20584.      >
  20585.    </noscript>
  20586.  
  20587.  
  20588.  <img loading="lazy"
  20589.    
  20590.      src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20591.    
  20592.    alt=""
  20593.  
  20594.    
  20595.      data-rimg="lazy"
  20596.      data-rimg-scale="1"
  20597.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Panasonic_{size}.png?v=1698310364"
  20598.      data-rimg-max="225x225"
  20599.      data-rimg-crop="false"
  20600.      
  20601.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20602.    
  20603.  
  20604.    class="logolist--image"
  20605.    style="
  20606.        object-fit:cover;object-position:50.0% 50.0%;
  20607.      
  20608. "
  20609.    
  20610.  >
  20611.  
  20612.  
  20613.  
  20614.  <div data-rimg-canvas></div>
  20615.  
  20616.  
  20617.        
  20618.  
  20619.        
  20620.          </a>
  20621.        
  20622.      </div>
  20623.    
  20624.      <div class="logolist--item" >
  20625.        
  20626.          <a
  20627.            class="logolist--link"
  20628.            href="/collections/all"
  20629.            target="_blank"
  20630.          >
  20631.        
  20632.  
  20633.        
  20634.          
  20635.  
  20636.  
  20637.    <noscript data-rimg-noscript>
  20638.      <img loading="lazy"
  20639.        
  20640.          src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20641.        
  20642.  
  20643.        alt=""
  20644.        data-rimg="noscript"
  20645.        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"
  20646.        class="logolist--image"
  20647.        style="
  20648.        object-fit:cover;object-position:50.0% 50.0%;
  20649.      
  20650. "
  20651.        
  20652.      >
  20653.    </noscript>
  20654.  
  20655.  
  20656.  <img loading="lazy"
  20657.    
  20658.      src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20659.    
  20660.    alt=""
  20661.  
  20662.    
  20663.      data-rimg="lazy"
  20664.      data-rimg-scale="1"
  20665.      data-rimg-template="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_{size}.png?v=1698310433"
  20666.      data-rimg-max="666x375"
  20667.      data-rimg-crop="false"
  20668.      
  20669.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='91'></svg>"
  20670.    
  20671.  
  20672.    class="logolist--image"
  20673.    style="
  20674.        object-fit:cover;object-position:50.0% 50.0%;
  20675.      
  20676. "
  20677.    
  20678.  >
  20679.  
  20680.  
  20681.  
  20682.  <div data-rimg-canvas></div>
  20683.  
  20684.  
  20685.        
  20686.  
  20687.        
  20688.          </a>
  20689.        
  20690.      </div>
  20691.    
  20692.  </div>
  20693. </section>
  20694.  
  20695. </div><div id="shopify-section-template--15492296147031__16962663497dd9ec87" class="shopify-section"><div class="product-section--container">
  20696.  
  20697. </div>
  20698.  
  20699.  
  20700. </div><div id="shopify-section-template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706" class="shopify-section highlights-banner"><script
  20701.  type="application/json"
  20702.  data-section-type="dynamic-highlights-banner"
  20703.  data-section-id="template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706">
  20704. </script>
  20705.  
  20706. <style>
  20707.  
  20708.  
  20709.    .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706.highlights-banner__container {
  20710.      background-color: #000000;
  20711.    }
  20712.  
  20713.  
  20714.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:before {
  20715.    background: linear-gradient( to right, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20716.  }
  20717.  
  20718.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:after {
  20719.    background: linear-gradient( to left, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20720.  }
  20721.  
  20722.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__block {
  20723.    color: #ffffff;
  20724.  }
  20725.  
  20726.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__icon {
  20727.    color: #fe0000;
  20728.  }
  20729. </style>
  20730.  
  20731. <script type="application/pxs-animation-mapping+json">
  20732.  {
  20733.    "blocks": [".highlights-banners-block"],
  20734.    "elements": []
  20735.  }
  20736. </script>
  20737.  
  20738. <div class="
  20739.  highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706
  20740.  highlights-banner__container
  20741.  highlights-banner__mobile-layout--slider
  20742.  full-width
  20743.  "
  20744. >
  20745.  <div class="highlights-banner__content highlight-banner__count-4"
  20746.   data-highlights-slider
  20747.  >
  20748.    
  20749.      
  20750.        <div
  20751.          class="highlights-banner__block highlights-banner__align-left"
  20752.          
  20753.          data-highlights-block
  20754.        >
  20755.          
  20756.            <div class="highlights-banner__icon">
  20757.              
  20758.                
  20759.  
  20760.  
  20761.                                                                    <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>                                                
  20762.  
  20763.              
  20764.            </div>
  20765.          
  20766.  
  20767.          <div class="highlights-banner__text">
  20768.            
  20769.              <span class="highlights-banner__heading">
  20770.                Quality and Saving
  20771.              </span>
  20772.            
  20773.  
  20774.            
  20775.              <p>Comprehensive quality control and affordable prices</p>
  20776.            
  20777.          </div>
  20778.          
  20779.        </div>
  20780.      
  20781.    
  20782.      
  20783.        <div
  20784.          class="highlights-banner__block highlights-banner__align-left"
  20785.          
  20786.          data-highlights-block
  20787.        >
  20788.          
  20789.            <div class="highlights-banner__icon">
  20790.              
  20791.                
  20792.  
  20793.  
  20794.                                  <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>                                                                                  
  20795.  
  20796.              
  20797.            </div>
  20798.          
  20799.  
  20800.          <div class="highlights-banner__text">
  20801.            
  20802.              <span class="highlights-banner__heading">
  20803.                Huge Inventory
  20804.              </span>
  20805.            
  20806.  
  20807.            
  20808.              <p>largest available inventory of parts in Canada</p>
  20809.            
  20810.          </div>
  20811.          
  20812.        </div>
  20813.      
  20814.    
  20815.      
  20816.        <div
  20817.          class="highlights-banner__block highlights-banner__align-left"
  20818.          
  20819.          data-highlights-block
  20820.        >
  20821.          
  20822.            <div class="highlights-banner__icon">
  20823.              
  20824.                
  20825.  
  20826.  
  20827.                            <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>                                                                                        
  20828.  
  20829.              
  20830.            </div>
  20831.          
  20832.  
  20833.          <div class="highlights-banner__text">
  20834.            
  20835.              <span class="highlights-banner__heading">
  20836.                Fast Shipping
  20837.              </span>
  20838.            
  20839.  
  20840.            
  20841.              <p>Fast and convenient door to door delivery</p>
  20842.            
  20843.          </div>
  20844.          
  20845.        </div>
  20846.      
  20847.    
  20848.      
  20849.        <div
  20850.          class="highlights-banner__block highlights-banner__align-left"
  20851.          
  20852.          data-highlights-block
  20853.        >
  20854.          
  20855.            <div class="highlights-banner__icon">
  20856.              
  20857.                
  20858.  
  20859.  
  20860.                          <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>                                                                                          
  20861.  
  20862.              
  20863.            </div>
  20864.          
  20865.  
  20866.          <div class="highlights-banner__text">
  20867.            
  20868.              <span class="highlights-banner__heading">
  20869.                Payment Security
  20870.              </span>
  20871.            
  20872.  
  20873.            
  20874.              <p>We have secured payment methods</p>
  20875.            
  20876.          </div>
  20877.          
  20878.        </div>
  20879.      
  20880.    
  20881.  </div>
  20882. </div>
  20883.  
  20884. </div><div id="shopify-section-template--15492296147031__dynamic_html_knfnMB" class="shopify-section html--section"><script
  20885.  type="application/json"
  20886.  data-section-id="template--15492296147031__dynamic_html_knfnMB"
  20887.  data-section-type="dynamic-html"
  20888. ></script>
  20889.  
  20890. <section class="custom-html--container">
  20891.  
  20892.  <div class="rte" data-rte>
  20893.    <h1 style="text-align:center; margin-bottom:-50px">ABOUT US</h1>
  20894.  </div>
  20895. </section>
  20896.  
  20897. </div><div id="shopify-section-template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0" class="shopify-section rich-text--section"><script
  20898.  type="application/json"
  20899.  data-section-id="template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0"
  20900.  data-section-type="dynamic-rich-text"
  20901. ></script>
  20902.  
  20903. <script type="application/pxs-animation-mapping+json">
  20904.  {
  20905.    "blocks": [".rich-text-block"],
  20906.    "elements": []
  20907.  }
  20908. </script>
  20909.  
  20910. <section
  20911.  class="
  20912.    rich-text--container
  20913.    rich-text-full-width
  20914.  "
  20915. >
  20916.    <div
  20917.      class="
  20918.        rich-text-block
  20919.        rich-text-alignment-center
  20920.      "
  20921.      
  20922.    >
  20923.        
  20924.  
  20925.        
  20926.          <div class="rich-text-content rte" data-rte>
  20927.            <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>
  20928.          </div>
  20929.        
  20930.    </div>
  20931. </section>
  20932.  
  20933. </div><div id="shopify-section-template--15492296147031__dynamic_html_fKi4qq" class="shopify-section html--section"><script
  20934.  type="application/json"
  20935.  data-section-id="template--15492296147031__dynamic_html_fKi4qq"
  20936.  data-section-type="dynamic-html"
  20937. ></script>
  20938.  
  20939. <section class="custom-html--container">
  20940.  
  20941.  <div class="rte" data-rte>
  20942.    <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>
  20943.  </div>
  20944. </section>
  20945.  
  20946. </div>
  20947.    </main>
  20948.  
  20949.    <!-- BEGIN sections: footer-group -->
  20950. <div id="shopify-section-sections--15492291100759__footer" class="shopify-section shopify-section-group-footer-group"><script
  20951.  type="application/json"
  20952.  data-section-id="sections--15492291100759__footer"
  20953.  data-section-type="static-footer">
  20954. </script>
  20955.  
  20956.  
  20957.  
  20958.  
  20959.  
  20960. <footer role="contentinfo" aria-label="Footer">
  20961.  <section class="site-footer-wrapper">
  20962.    
  20963.      <div class="site-footer-item">
  20964.        <div class="site-footer-blocks column-count-4">
  20965.          <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  20966.  
  20967.  
  20968.      <h2 class="site-footer-block-title" data-accordion-trigger>
  20969.        FURTHER INFO.
  20970.  
  20971.        <span class="site-footer-block-icon accordion--icon">
  20972.          <svg
  20973.  aria-hidden="true"
  20974.  focusable="false"
  20975.  role="presentation"
  20976.  width="14"
  20977.  height="8"
  20978.  viewBox="0 0 14 8"
  20979.  fill="none"
  20980.  xmlns="http://www.w3.org/2000/svg"
  20981. >
  20982.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20983.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20984. </svg>
  20985.  
  20986.        </span>
  20987.      </h2>
  20988.  
  20989.      <div class="site-footer-block-content">
  20990.        
  20991.  
  20992.  
  20993.  
  20994.  
  20995.  
  20996.  
  20997.  
  20998.  
  20999.  
  21000.  
  21001.  
  21002.  
  21003. <ul
  21004.  class="
  21005.    navmenu
  21006.    navmenu-depth-1
  21007.    
  21008.    
  21009.  "
  21010.  data-navmenu
  21011.  data-accordion-content
  21012.  
  21013.  
  21014. >
  21015.  
  21016.    
  21017.  
  21018.    
  21019.    
  21020.  
  21021.    
  21022.    
  21023.  
  21024.    
  21025.  
  21026.    
  21027.      <li
  21028.        class="navmenu-item navmenu-id-home"
  21029.      >
  21030.        <a
  21031.        class="
  21032.          navmenu-link
  21033.          navmenu-link-depth-1
  21034.          navmenu-link-active
  21035.        "
  21036.        href="/"
  21037.        >
  21038.          
  21039.          Home
  21040. </a>
  21041.      </li>
  21042.    
  21043.  
  21044.    
  21045.  
  21046.    
  21047.    
  21048.  
  21049.    
  21050.    
  21051.  
  21052.    
  21053.  
  21054.    
  21055.      <li
  21056.        class="navmenu-item navmenu-id-search"
  21057.      >
  21058.        <a
  21059.        class="
  21060.          navmenu-link
  21061.          navmenu-link-depth-1
  21062.          
  21063.        "
  21064.        href="/search"
  21065.        >
  21066.          
  21067.          Search
  21068. </a>
  21069.      </li>
  21070.    
  21071.  
  21072.    
  21073.  
  21074.    
  21075.    
  21076.  
  21077.    
  21078.    
  21079.  
  21080.    
  21081.  
  21082.    
  21083.      <li
  21084.        class="navmenu-item navmenu-id-about-us"
  21085.      >
  21086.        <a
  21087.        class="
  21088.          navmenu-link
  21089.          navmenu-link-depth-1
  21090.          
  21091.        "
  21092.        href="/pages/about-us"
  21093.        >
  21094.          
  21095.          About Us
  21096. </a>
  21097.      </li>
  21098.    
  21099.  
  21100.    
  21101.  
  21102.    
  21103.    
  21104.  
  21105.    
  21106.    
  21107.  
  21108.    
  21109.  
  21110.    
  21111.      <li
  21112.        class="navmenu-item navmenu-id-parts-request"
  21113.      >
  21114.        <a
  21115.        class="
  21116.          navmenu-link
  21117.          navmenu-link-depth-1
  21118.          
  21119.        "
  21120.        href="/pages/part-request"
  21121.        >
  21122.          
  21123.          Parts Request
  21124. </a>
  21125.      </li>
  21126.    
  21127.  
  21128.    
  21129.  
  21130.    
  21131.    
  21132.  
  21133.    
  21134.    
  21135.  
  21136.    
  21137.  
  21138.    
  21139.      <li
  21140.        class="navmenu-item navmenu-id-repair-centers"
  21141.      >
  21142.        <a
  21143.        class="
  21144.          navmenu-link
  21145.          navmenu-link-depth-1
  21146.          
  21147.        "
  21148.        href="/pages/store-locator"
  21149.        >
  21150.          
  21151.          Repair Centers
  21152. </a>
  21153.      </li>
  21154.    
  21155.  
  21156.    
  21157.  
  21158.    
  21159.    
  21160.  
  21161.    
  21162.    
  21163.  
  21164.    
  21165.  
  21166.    
  21167.      <li
  21168.        class="navmenu-item navmenu-id-francais"
  21169.      >
  21170.        <a
  21171.        class="
  21172.          navmenu-link
  21173.          navmenu-link-depth-1
  21174.          
  21175.        "
  21176.        href="/pages/francais"
  21177.        >
  21178.          
  21179.          Français
  21180. </a>
  21181.      </li>
  21182.    
  21183.  
  21184.    
  21185.  
  21186.    
  21187.    
  21188.  
  21189.    
  21190.    
  21191.  
  21192.    
  21193.  
  21194.    
  21195.      <li
  21196.        class="navmenu-item navmenu-id-reviews"
  21197.      >
  21198.        <a
  21199.        class="
  21200.          navmenu-link
  21201.          navmenu-link-depth-1
  21202.          
  21203.        "
  21204.        href="/pages/reviews"
  21205.        >
  21206.          
  21207.          Reviews
  21208. </a>
  21209.      </li>
  21210.    
  21211.  
  21212. </ul>
  21213.  
  21214.  
  21215.        <!-- TG seal - snippets/footer.liquid -->
  21216.        
  21217.          <div style="margin-top: 2em;">
  21218.            <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>
  21219.            <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>
  21220.          </div>
  21221.        
  21222.        <!-- END TG seal - snippets/footer.liquid -->
  21223.      </div>
  21224.  
  21225. </div>
  21226. <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  21227.  
  21228.  
  21229.      <h2 class="site-footer-block-title" data-accordion-trigger>
  21230.        CUSTOMER SERVICE
  21231.  
  21232.        <span class="site-footer-block-icon accordion--icon">
  21233.          <svg
  21234.  aria-hidden="true"
  21235.  focusable="false"
  21236.  role="presentation"
  21237.  width="14"
  21238.  height="8"
  21239.  viewBox="0 0 14 8"
  21240.  fill="none"
  21241.  xmlns="http://www.w3.org/2000/svg"
  21242. >
  21243.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21244.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21245. </svg>
  21246.  
  21247.        </span>
  21248.      </h2>
  21249.  
  21250.      <div class="site-footer-block-content">
  21251.        
  21252.  
  21253.  
  21254.  
  21255.  
  21256.  
  21257.  
  21258.  
  21259.  
  21260.  
  21261.  
  21262.  
  21263.  
  21264. <ul
  21265.  class="
  21266.    navmenu
  21267.    navmenu-depth-1
  21268.    
  21269.    
  21270.  "
  21271.  data-navmenu
  21272.  data-accordion-content
  21273.  
  21274.  
  21275. >
  21276.  
  21277.    
  21278.  
  21279.    
  21280.    
  21281.  
  21282.    
  21283.    
  21284.  
  21285.    
  21286.  
  21287.    
  21288.      <li
  21289.        class="navmenu-item navmenu-id-privacy-policy"
  21290.      >
  21291.        <a
  21292.        class="
  21293.          navmenu-link
  21294.          navmenu-link-depth-1
  21295.          
  21296.        "
  21297.        href="/pages/privacy-policy"
  21298.        >
  21299.          
  21300.          Privacy Policy
  21301. </a>
  21302.      </li>
  21303.    
  21304.  
  21305.    
  21306.  
  21307.    
  21308.    
  21309.  
  21310.    
  21311.    
  21312.  
  21313.    
  21314.  
  21315.    
  21316.      <li
  21317.        class="navmenu-item navmenu-id-return-policy"
  21318.      >
  21319.        <a
  21320.        class="
  21321.          navmenu-link
  21322.          navmenu-link-depth-1
  21323.          
  21324.        "
  21325.        href="/pages/returns"
  21326.        >
  21327.          
  21328.          Return Policy
  21329. </a>
  21330.      </li>
  21331.    
  21332.  
  21333.    
  21334.  
  21335.    
  21336.    
  21337.  
  21338.    
  21339.    
  21340.  
  21341.    
  21342.  
  21343.    
  21344.      <li
  21345.        class="navmenu-item navmenu-id-shipping"
  21346.      >
  21347.        <a
  21348.        class="
  21349.          navmenu-link
  21350.          navmenu-link-depth-1
  21351.          
  21352.        "
  21353.        href="/pages/shipping"
  21354.        >
  21355.          
  21356.          Shipping
  21357. </a>
  21358.      </li>
  21359.    
  21360.  
  21361.    
  21362.  
  21363.    
  21364.    
  21365.  
  21366.    
  21367.    
  21368.  
  21369.    
  21370.  
  21371.    
  21372.      <li
  21373.        class="navmenu-item navmenu-id-warranty"
  21374.      >
  21375.        <a
  21376.        class="
  21377.          navmenu-link
  21378.          navmenu-link-depth-1
  21379.          
  21380.        "
  21381.        href="/pages/warranty"
  21382.        >
  21383.          
  21384.          Warranty
  21385. </a>
  21386.      </li>
  21387.    
  21388.  
  21389.    
  21390.  
  21391.    
  21392.    
  21393.  
  21394.    
  21395.    
  21396.  
  21397.    
  21398.  
  21399.    
  21400.      <li
  21401.        class="navmenu-item navmenu-id-blogs"
  21402.      >
  21403.        <a
  21404.        class="
  21405.          navmenu-link
  21406.          navmenu-link-depth-1
  21407.          
  21408.        "
  21409.        href="/blogs/news/how-to-enhance-your-laptops-performance-top-tips-for-optimization"
  21410.        >
  21411.          
  21412.          Blogs
  21413. </a>
  21414.      </li>
  21415.    
  21416.  
  21417. </ul>
  21418.  
  21419.  
  21420.        <!-- TG seal - snippets/footer.liquid -->
  21421.        
  21422.        <!-- END TG seal - snippets/footer.liquid -->
  21423.      </div>
  21424.  
  21425. </div>
  21426. <div class="site-footer-block-item  site-footer-block-social-accounts  " >
  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.  
  21458.    <h2 class="site-footer-block-title">
  21459.      Follow us
  21460.    </h2>
  21461.  
  21462.    <div class="site-footer-block-content">
  21463.  
  21464.  
  21465.  <div class="social-icons">
  21466.  
  21467.  
  21468. <a
  21469.  class="social-link"
  21470.  title="Facebook"
  21471.  href="https://web.facebook.com/laptopparts.ca/?_rdc=1&amp;_rdr"
  21472.  target="_blank">
  21473. <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>
  21474.  
  21475.    <span class="visually-hidden">Find us on Facebook</span>
  21476.  
  21477. </a>
  21478.  
  21479.  
  21480.  
  21481.  
  21482. <a
  21483.  class="social-link"
  21484.  title="Twitter"
  21485.  href="https://twitter.com/i/flow/login?redirect_after_login=%2FLaptopParts_ca"
  21486.  target="_blank">
  21487. <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>
  21488.  
  21489.    <span class="visually-hidden">Find us on Twitter</span>
  21490.  
  21491. </a>
  21492.  
  21493. </div>
  21494.  
  21495.  
  21496.    </div>
  21497.  
  21498.  
  21499.  
  21500.  
  21501. </div>
  21502. <div class="site-footer-block-item  site-footer-block-rich-text  " >
  21503.  
  21504.  
  21505.    
  21506.      <h2 class="site-footer-block-title">
  21507.        Contact Us
  21508.      </h2>
  21509.    
  21510.  
  21511.    
  21512.      <div class="site-footer-block-content rte">
  21513.        <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>
  21514.      </div>
  21515.    
  21516.  
  21517.    
  21518.  
  21519. </div>
  21520.  
  21521.        </div>
  21522.      </div>
  21523.    
  21524.  
  21525.    <div class="site-footer-item site-footer-item--information">
  21526.      <div class="site-footer__row site-footer__row--first">
  21527. <div class="site-footer-right ">
  21528.        <div class="shopify-cross-border">
  21529.          
  21530.        
  21531.          
  21532.        </div>
  21533.        
  21534. <ul class="payment-icons">
  21535.          
  21536.            <li class="payment-icons-item">
  21537.              <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>
  21538.  
  21539.            </li>
  21540.          
  21541.            <li class="payment-icons-item">
  21542.              <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>
  21543.  
  21544.            </li>
  21545.          
  21546.            <li class="payment-icons-item">
  21547.              <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>
  21548.            </li>
  21549.          
  21550.            <li class="payment-icons-item">
  21551.              <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>
  21552.            </li>
  21553.          
  21554.            <li class="payment-icons-item">
  21555.              <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>
  21556.  
  21557.            </li>
  21558.          
  21559.            <li class="payment-icons-item">
  21560.              <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>
  21561.            </li>
  21562.          
  21563.            <li class="payment-icons-item">
  21564.              <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>
  21565.            </li>
  21566.          
  21567.            <li class="payment-icons-item">
  21568.              <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>
  21569.  
  21570.            </li>
  21571.          
  21572.            <li class="payment-icons-item">
  21573.              <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>
  21574.            </li>
  21575.          
  21576.        </ul></div>
  21577.      </div>
  21578.  
  21579.      <div class="site-footer__row site-footer__row--second">
  21580.        <div class="site-footer__row-inner-wrapper-left"><p class="site-footer-credits">
  21581.            <b>LaptopParts.ca</b>
  21582.          </p>
  21583.  
  21584.          <p class="site-footer-credits" style="color:black;">Developed By <a href="https://searchaly.com" style="text-decoration:none;color:black;">Searchaly</a>
  21585.          </p>
  21586.        </div>
  21587.  
  21588.        
  21589. <div class="site-footer-right ">
  21590.        <div class="shopify-cross-border">
  21591.          
  21592.        
  21593.          
  21594.        </div>
  21595.        
  21596. <ul class="payment-icons">
  21597.          
  21598.            <li class="payment-icons-item">
  21599.              <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>
  21600.  
  21601.            </li>
  21602.          
  21603.            <li class="payment-icons-item">
  21604.              <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>
  21605.  
  21606.            </li>
  21607.          
  21608.            <li class="payment-icons-item">
  21609.              <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>
  21610.            </li>
  21611.          
  21612.            <li class="payment-icons-item">
  21613.              <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>
  21614.            </li>
  21615.          
  21616.            <li class="payment-icons-item">
  21617.              <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>
  21618.  
  21619.            </li>
  21620.          
  21621.            <li class="payment-icons-item">
  21622.              <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>
  21623.            </li>
  21624.          
  21625.            <li class="payment-icons-item">
  21626.              <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>
  21627.            </li>
  21628.          
  21629.            <li class="payment-icons-item">
  21630.              <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>
  21631.  
  21632.            </li>
  21633.          
  21634.            <li class="payment-icons-item">
  21635.              <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>
  21636.            </li>
  21637.          
  21638.        </ul></div>
  21639.      </div>
  21640.    </div>
  21641.  </section>
  21642. </footer>
  21643.  
  21644. </div>
  21645. <!-- END sections: footer-group -->
  21646.  
  21647.    
  21648.    <div style="display: none;" aria-hidden="true" data-templates>
  21649.      
  21650.      <div
  21651.        class="message-banner--container"
  21652.        role="alert"
  21653.        data-message-banner
  21654.      >
  21655.        <div class="message-banner--outer">
  21656.          <div class="message-banner--inner" data-message-banner-content></div>
  21657.  
  21658.          <button
  21659.            class="message-banner--close"
  21660.            type="button"
  21661.            aria-label="Close"
  21662.            data-message-banner-close
  21663.          ><svg
  21664.  aria-hidden="true"
  21665.  focusable="false"
  21666.  role="presentation"
  21667.  xmlns="http://www.w3.org/2000/svg"
  21668.  width="13"
  21669.  height="13"
  21670.  viewBox="0 0 13 13"
  21671. >
  21672.  <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"/>
  21673. </svg></button>
  21674.        </div>
  21675.      </div>
  21676.      
  21677.  
  21678.      
  21679.      <section class="atc-banner--container" role="log" data-atc-banner>
  21680.        <div class="atc-banner--outer">
  21681.          <div class="atc-banner--inner">
  21682.            <div class="atc-banner--product">
  21683.              <h2 class="atc-banner--product-title">
  21684.                <span class="atc-banner--product-title--icon">
  21685.                  
  21686.  
  21687.  
  21688.                <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>                                                                                                    
  21689.  
  21690.                </span>
  21691.                Added to your cart:
  21692.              </h2>
  21693.  
  21694.              <div class="atc--product">
  21695.                <div class="atc--product-image" data-atc-banner-product-image>
  21696.                  <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>
  21697.                </div>
  21698.                <div class="atc--product-details">
  21699.                  <h2 class="atc--product-details--title" data-atc-banner-product-title></h2>
  21700.                  <span class="atc--product-details--options" data-atc-banner-product-options></span>
  21701.                  <span class="atc--product-details--price">
  21702.                    <span class="atc--product-details--price-quantity" data-atc-banner-product-price-quantity></span>
  21703.                    <span class="atc--product-details--price-value money" data-atc-banner-product-price-value></span>
  21704.                    <span
  21705.                      class="atc--product-details--price-discounted money"
  21706.                      data-atc-banner-product-price-discounted
  21707.                    ></span>
  21708.                    <span class="atc--product-details--unit-price hidden" data-atc-banner-unit-price>
  21709.                      ** total_quantity ** | ** unit_price ** / ** unit_measure **
  21710.                    </span>
  21711.                  </span>
  21712.                  <ul class="discount-list" data-atc-banner-product-discounts>
  21713.                    <li class="discount-list-item">
  21714.                      
  21715.  
  21716.  
  21717.                                                                        <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>                                            
  21718.  
  21719.                      <span class="discount-title"></span>
  21720.                      (-<span class="money discount-amount"></span>)
  21721.                    </li>
  21722.                  </ul>
  21723.                  <span class="atc--line-item-subscriptions" data-atc-banner-product-subscription-title></span>
  21724.                </div>
  21725.              </div>
  21726.            </div>
  21727.  
  21728.            <div class="atc-banner--cart">
  21729.              <div class="atc-banner--cart-subtotal">
  21730.                <span class="atc-subtotal--label">
  21731.                  Cart subtotal
  21732.                </span>
  21733.                <span class="atc-subtotal--price money" data-atc-banner-cart-subtotal></span>
  21734.              </div>
  21735.  
  21736.              <footer class="atc-banner--cart-footer">
  21737.                <a
  21738.                  class="button-secondary atc-button--viewcart"
  21739.                  href="/cart"
  21740.                  data-atc-banner-cart-button
  21741.                >
  21742.                  View cart (<span></span>)
  21743.                </a>
  21744.                <form
  21745.                  action="/cart"
  21746.                  method="post"
  21747.                  aria-label="cart checkout"
  21748.                >
  21749.                  <button class="button-primary atc-button--checkout" type="submit" name="checkout">
  21750.                    
  21751.                      <svg
  21752. width="20"
  21753. height="20"
  21754. viewBox="0 0 20 20"
  21755. fill="none"
  21756. xmlns="http://www.w3.org/2000/svg">
  21757. <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"/>
  21758. <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"/>
  21759. </svg>
  21760.  
  21761.                    
  21762.                    <span>Checkout</span>
  21763.                  </button>
  21764.                </form>
  21765.              </footer>
  21766.            </div>
  21767.          </div>
  21768.  
  21769.          <button
  21770.            class="atc-banner--close"
  21771.            type="button"
  21772.            aria-label="Close"
  21773.            data-atc-banner-close
  21774.          ><svg
  21775.  aria-hidden="true"
  21776.  focusable="false"
  21777.  role="presentation"
  21778.  xmlns="http://www.w3.org/2000/svg"
  21779.  width="13"
  21780.  height="13"
  21781.  viewBox="0 0 13 13"
  21782. >
  21783.  <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"/>
  21784. </svg></button>
  21785.        </div>
  21786.      </section>
  21787.      
  21788.    </div>
  21789.  
  21790.    
  21791.    
  21792.    <div class="modal" data-modal-container aria-label="modal window" data-trap-focus>
  21793.      <div class="modal-inner" data-modal-inner>
  21794.        <button
  21795.          class="modal-close"
  21796.          type="button"
  21797.          aria-label="Close"
  21798.          data-modal-close
  21799.        >
  21800.          <svg
  21801.  aria-hidden="true"
  21802.  focusable="false"
  21803.  role="presentation"
  21804.  xmlns="http://www.w3.org/2000/svg"
  21805.  width="13"
  21806.  height="13"
  21807.  viewBox="0 0 13 13"
  21808. >
  21809.  <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"/>
  21810. </svg>
  21811.        </button>
  21812.        <div class="modal-content" data-modal-content></div>
  21813.      </div>
  21814.    </div>
  21815.  
  21816.    <div class="modal-1" data-modal-container-1 aria-label="modal window">
  21817.      <div class="modal-inner" data-modal-inner>
  21818.        <button
  21819.          class="modal-close"
  21820.          type="button"
  21821.          aria-label="Close"
  21822.          data-modal-1-close
  21823.        >
  21824.          <svg
  21825.  aria-hidden="true"
  21826.  focusable="false"
  21827.  role="presentation"
  21828.  xmlns="http://www.w3.org/2000/svg"
  21829.  width="13"
  21830.  height="13"
  21831.  viewBox="0 0 13 13"
  21832. >
  21833.  <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"/>
  21834. </svg>
  21835.        </button>
  21836.        <div class="modal-content" data-modal-content></div>
  21837.      </div>
  21838.    </div>
  21839.    
  21840.  
  21841.    
  21842.    
  21843.    
  21844.    <div
  21845.      class="pswp"
  21846.      tabindex="-1"
  21847.      role="dialog"
  21848.      aria-hidden="true"
  21849.      aria-label="Product zoom dialog"
  21850.      data-photoswipe
  21851.    >
  21852.      
  21853.      <div class="pswp__bg"></div>
  21854.  
  21855.      
  21856.      <div class="pswp__scroll-wrap">
  21857.        
  21858.        <div class="pswp__container" aria-hidden="true">
  21859.          <div class="pswp__item"></div>
  21860.          <div class="pswp__item"></div>
  21861.          <div class="pswp__item"></div>
  21862.        </div>
  21863.  
  21864.        
  21865.        <div class="pswp__ui pswp__ui--hidden">
  21866.          <div class="pswp__top-bar">
  21867.            
  21868.            <div class="pswp__counter"></div>
  21869.            <button class="pswp__button pswp__button--close" title="Close">
  21870.              <span tabindex="-1">
  21871.                
  21872.  
  21873.  
  21874.              <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>                                                                                                      
  21875.  
  21876.              </span>
  21877.            </button>
  21878.            <button class="pswp__button pswp__button--share" title="Share"></button>
  21879.            <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
  21880.            <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
  21881.  
  21882.            
  21883.            
  21884.            <div class="pswp__preloader">
  21885.              <div class="pswp__preloader__icn">
  21886.                <div class="pswp__preloader__cut">
  21887.                  <div class="pswp__preloader__donut"></div>
  21888.                </div>
  21889.              </div>
  21890.            </div>
  21891.          </div>
  21892.  
  21893.          <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
  21894.            <div class="pswp__share-tooltip"></div>
  21895.          </div>
  21896.  
  21897.          <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
  21898.          <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button>
  21899.  
  21900.          <div class="pswp__caption">
  21901.            <div class="pswp__caption__center"></div>
  21902.          </div>
  21903.        </div>
  21904.      </div>
  21905.      <div class="product-zoom--thumbnails" data-photoswipe-thumbs>
  21906.        <button
  21907.          class="gallery-navigation--scroll-button scroll-left"
  21908.          aria-label="Scroll thumbnails left"
  21909.          data-gallery-scroll-button
  21910.        >
  21911.          <svg
  21912.  aria-hidden="true"
  21913.  focusable="false"
  21914.  role="presentation"
  21915.  width="14"
  21916.  height="8"
  21917.  viewBox="0 0 14 8"
  21918.  fill="none"
  21919.  xmlns="http://www.w3.org/2000/svg"
  21920. >
  21921.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21922.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21923. </svg>
  21924.  
  21925.        </button>
  21926.        <button
  21927.          class="gallery-navigation--scroll-button scroll-right"
  21928.          aria-label="Scroll thumbnails right"
  21929.          data-gallery-scroll-button
  21930.        >
  21931.          <svg
  21932.  aria-hidden="true"
  21933.  focusable="false"
  21934.  role="presentation"
  21935.  width="14"
  21936.  height="8"
  21937.  viewBox="0 0 14 8"
  21938.  fill="none"
  21939.  xmlns="http://www.w3.org/2000/svg"
  21940. >
  21941.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21942.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21943. </svg>
  21944.  
  21945.        </button>
  21946.        <div class="product-zoom--thumb-scroller" data-photoswipe-thumb-scroller></div>
  21947.      </div>
  21948.    </div>
  21949.    
  21950.  
  21951.    
  21952.    
  21953.    
  21954.    
  21955.    
  21956.  
  21957.    
  21958.  
  21959.    
  21960.  
  21961.      <script>
  21962.        (
  21963.          function () {
  21964.            var classes = {
  21965.              block: 'pxu-lia-block',
  21966.              element: 'pxu-lia-element',
  21967.            };
  21968.  
  21969.            document
  21970.              .querySelectorAll('[type="application/pxs-animation-mapping+json"]')
  21971.              .forEach(function (mappingEl) {
  21972.                const section = mappingEl.parentNode;
  21973.                try {
  21974.                  const mapping = JSON.parse(mappingEl.innerHTML);
  21975.                  mapping.elements.forEach(function (elementSelector) {
  21976.                    section
  21977.                      .querySelectorAll(elementSelector)
  21978.                      .forEach(function (element) { element.classList.add(classes.element); });
  21979.                  });
  21980.  
  21981.                  mapping.blocks.forEach(function (blockSelector) {
  21982.                    section
  21983.                      .querySelectorAll(blockSelector)
  21984.                      .forEach(function (block) { block.classList.add(classes.block); });
  21985.                  });
  21986.                } catch (error) {
  21987.                  console.warn('Unable to parse animation mapping', mappingEl, error);
  21988.                }
  21989.            });
  21990.          }
  21991.        )()
  21992.      </script>
  21993.    
  21994.  
  21995.    <script
  21996.      src="//laptopparts.ca/cdn/shop/t/20/assets/empire.js?v=121528316695943026921712444022"
  21997.      data-scripts
  21998.      data-shopify-api-url="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/api.jquery-b0af070cfe3f5cf7c92f9e2a5da2665ee07ed2aad63bb408f8d6672f894a5996.js"
  21999.      data-shopify-countries="/services/javascripts/countries.js"
  22000.      data-shopify-common="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/shopify_common-33bb9d312118840468a53f36b59c62c1e8f2b7d1a0a77250db9e300441827470.js"
  22001.      data-shopify-cart="//laptopparts.ca/cdn/shop/t/20/assets/jquery.cart.js?67033"
  22002.      data-pxu-polyfills="//laptopparts.ca/cdn/shop/t/20/assets/polyfills.min.js?v=41774645620324957141712444022"
  22003.    ></script>
  22004.  
  22005.    
  22006.  
  22007.  
  22008.  
  22009.  
  22010.  
  22011.  
  22012.  
  22013.  
  22014.  
  22015.  
  22016.  
  22017.  
  22018.  
  22019.  
  22020. <script type="application/ld+json">
  22021.  {
  22022.    "@context": "http://schema.org",
  22023.    "@type": "WebSite",
  22024.    "name": "LaptopParts.ca",
  22025.    "url": "https://laptopparts.ca"
  22026.  }
  22027. </script>
  22028.  
  22029.  
  22030.    <script>
  22031.      (function () {
  22032.        function handleFirstTab(e) {
  22033.          if (e.keyCode === 9) { // the "I am a keyboard user" key
  22034.            document.body.classList.add('user-is-tabbing');
  22035.            window.removeEventListener('keydown', handleFirstTab);
  22036.          }
  22037.        }
  22038.        window.addEventListener('keydown', handleFirstTab);
  22039.      })();
  22040.    </script>
  22041.  
  22042.    
  22043.      <link href="//laptopparts.ca/cdn/shop/t/20/assets/ripple.css?v=100240391239311985871712444022" rel="stylesheet" type="text/css" media="all" />
  22044.    
  22045.  
  22046.    <script
  22047.      src="//laptopparts.ca/cdn/shop/t/20/assets/instantPage.min.js?v=75111080190164688561712444022"
  22048.      type="module"
  22049.      defer
  22050.    ></script>
  22051.    <script
  22052.      src="//clever-predictive-search.thesupportheroes.com/js/core/main.min.js?timestamp=1698326561&shop=laptoppartsatp.myshopify.com"
  22053.      defer
  22054.    ></script>
  22055. <!-- 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 -->
  22056.     <!-- Shopper Approved - layout/theme.liquid -->  
  22057.    <style>
  22058.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span{
  22059.        vertical-align: -1px;
  22060.      }
  22061.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span:last-child{
  22062.        vertical-align: -1px;
  22063.      }
  22064.      .star_container{
  22065.        height: 24px;
  22066.        margin-bottom: 5px;
  22067.      }
  22068.      .star_container .ind_cnt {
  22069.            display: inline;
  22070.            padding-left: 8px;
  22071.            font-size: 13px;
  22072.            vertical-align: 3px;
  22073.            text-align: center;
  22074.            width: 100%;
  22075.        }
  22076.      #product_just_stars .SA__rating_wrap, #product_just_stars .SA__total_reviews{
  22077.        display: inline !important;
  22078.    }
  22079.    #product_just_stars .SA__review_widget_item .SA__total_reviews a{
  22080.        font-size: 13px !important;
  22081.        vertical-align: 0px !important;
  22082.        /*border-right: 1px solid #000;
  22083.  padding-right: 10px;
  22084.  margin-right: 10px;*/
  22085.  text-decoration: underline;
  22086.    }
  22087.    </style>
  22088.    <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>
  22089.    <!-- END Shopper Approved - layout/theme.liquid -->
  22090.      <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>
  22091. <script type="text/javascript">window.Beacon('init', '4c7bc089-215e-4a80-9d06-25571d96425f')</script>
  22092.        <div id="shopify-block-AN2k5QkMvdUJ0UDFZd__8171265131012698934" class="shopify-block shopify-app-block">
  22093.  
  22094. <input class="OrichiAppEmbed" type="hidden">
  22095. <input
  22096.  class="OrichiCustomerTags"
  22097.  type="hidden"
  22098.  value="" />
  22099. <input
  22100.  class="OrichiCustomerEmail"
  22101.  type="hidden"
  22102.  value="" />
  22103.  
  22104.  
  22105.  
  22106.  
  22107.  <script async src="https://cdn.shopify.com/extensions/0f795fcb-6f58-409d-841d-ae2cb0eefc29/oc-quantity-breaks-limit-348/assets/front.min.js"></script>
  22108.  
  22109.  
  22110. <script>
  22111.  var orichiDiscount = {
  22112.    productJSPath: 'https://cdn.shopify.com/extensions/0f795fcb-6f58-409d-841d-ae2cb0eefc29/oc-quantity-breaks-limit-348/assets/productpage.min.js',
  22113.    cartJSPath: 'https://cdn.shopify.com/extensions/0f795fcb-6f58-409d-841d-ae2cb0eefc29/oc-quantity-breaks-limit-348/assets/cartajax.min.js'
  22114.  }
  22115. </script>
  22116.  
  22117.  
  22118.  
  22119. <script>
  22120.  
  22121.    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"}};
  22122.  
  22123. </script>
  22124.  
  22125. </div><div id="shopify-block-AcThYNTRkUW1SdzMyZ__6610233760104865948" class="shopify-block shopify-app-block"><script>
  22126.  window.pushowlSubdomain = "laptoppartsatp.myshopify.com".split(".")[0]
  22127.  window.isPushowlThemeAppExtentionEnabled = true
  22128.  window.pushowlGUID = "2ad56cc6-a094-42c7-becc-a37d957ccec6"
  22129.  window.pushowlEnvironment = "production"
  22130. </script>
  22131.  
  22132.  
  22133.  
  22134.  
  22135. </div><div id="shopify-block-AeXdFL3NiTloxRjRUY__14952540001915115444" class="shopify-block shopify-app-block">
  22136.  
  22137.  
  22138.  
  22139.  
  22140. <link id="upcart-stylesheet" rel="preload" href="https://cdn.shopify.com/extensions/cb3416ee-f201-46fa-a3da-873f2743dcbb/upcart-cart-drawer-111/assets/upcart-stylesheet.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
  22141.  
  22142.  
  22143.  
  22144.  <script defer type="text/javascript" src="https://cdn.shopify.com/extensions/cb3416ee-f201-46fa-a3da-873f2743dcbb/upcart-cart-drawer-111/assets/upcart-bundle.js"></script>
  22145.  
  22146.  
  22147. <script>
  22148.  
  22149.  function b64DecodeUnicode(str) {
  22150.    try {
  22151.        return decodeURIComponent(
  22152.        atob(str)
  22153.            .split('')
  22154.            .map(function (c) {
  22155.            return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
  22156.            })
  22157.            .join(''),
  22158.        );
  22159.    } catch {
  22160.        return str;
  22161.    }
  22162.  }
  22163. </script>
  22164.  
  22165.  
  22166. <script>
  22167. (function() {
  22168.    window.upcartSettings = {};
  22169.    window.upcartSettings.upcartSettings = {};
  22170.    window.upcartSettings.upcartEditorSettings = {};
  22171.    window.upcartSettings.stickyCartButtonEditorSettings = {};
  22172.  
  22173.    
  22174.    
  22175.    
  22176.  
  22177.    let val;
  22178.  
  22179.    val = b64DecodeUnicode("cmlnaHQ=");
  22180.    if (val === '') {
  22181.        val = b64DecodeUnicode("cmlnaHQ=");
  22182.    }
  22183.    window.upcartSettings.upcartSettings.cartPosition = val;
  22184.  
  22185.    val = b64DecodeUnicode("ZmFsc2U=");
  22186.    if (val === '') {
  22187.        val = b64DecodeUnicode("ZmFsc2U=");
  22188.    }
  22189.    val = JSON.parse(val);
  22190.    window.upcartSettings.upcartSettings.disableSticky = val;
  22191.  
  22192.    val = b64DecodeUnicode("dHJ1ZQ==");
  22193.    if (val === '') {
  22194.        val = b64DecodeUnicode("dHJ1ZQ==");
  22195.    }
  22196.    val = JSON.parse(val);
  22197.    window.upcartSettings.upcartSettings.openOnAddToCart = val;
  22198.  
  22199.    val = b64DecodeUnicode("ZmFsc2U=");
  22200.    if (val === '') {
  22201.        val = b64DecodeUnicode("ZmFsc2U=");
  22202.    }
  22203.    val = JSON.parse(val);
  22204.    window.upcartSettings.upcartSettings.redirectToCart = val;
  22205.  
  22206.    val = b64DecodeUnicode("dHJ1ZQ==");
  22207.    if (val === '') {
  22208.        val = b64DecodeUnicode("ZmFsc2U=");
  22209.    }
  22210.    val = JSON.parse(val);
  22211.    window.upcartSettings.upcartSettings.enableCartSkeletons = val;
  22212.  
  22213.    val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJZb3VyIFNob3BwaW5nIENhcnQiLCJjaGVja291dCI6IlNlY3VyZSBDaGVja291dCDigKIge3t0b3RhbF9wcmljZX19IiwiYWRkVGV4dCI6IkFkZCIsImVtcHR5Q2FydCI6IllvdXIgY2FydCBpcyBlbXB0eSIsImRpc2NvdW50U2F2aW5ncyI6IlNhdmUiLCJjb250aW51ZVNob3BwaW5nIjoiT3IgY29udGludWUgc2hvcHBpbmciLCJ0b3RhbFNhdmluZ3MiOiJEaXNjb3VudHMiLCJzdWJ0b3RhbCI6IlN1YnRvdGFsIn0=");
  22214.    if (val === '') {
  22215.        val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJDYXJ0IOKAoiB7e2NhcnRfcXVhbnRpdHl9fSIsImNoZWNrb3V0IjoiQ2hlY2tvdXQg4oCiIHt7dG90YWxfcHJpY2V9fSIsImFkZFRleHQiOiJBZGQiLCJlbXB0eUNhcnQiOiJZb3VyIGNhcnQgaXMgZW1wdHkiLCJkaXNjb3VudFNhdmluZ3MiOiJTYXZlIiwiY29udGludWVTaG9wcGluZyI6Ik9yIGNvbnRpbnVlIHNob3BwaW5nIiwidG90YWxTYXZpbmdzIjoiRGlzY291bnRzIiwic3VidG90YWwiOiJTdWJ0b3RhbCIsImJ1bmRsZUhpZGVTaW5ndWxhckl0ZW1UZXh0IjoiSGlkZSAxIGl0ZW0iLCJidW5kbGVTaG93U2luZ3VsYXJJdGVtVGV4dCI6IlNob3cgMSBpdGVtIiwiYnVuZGxlSGlkZU11bHRpcGxlSXRlbXNUZXh0IjoiSGlkZSB7TlVNQkVSX09GX0lURU1TfSBpdGVtcyIsImJ1bmRsZVNob3dNdWx0aXBsZUl0ZW1zVGV4dCI6IlNob3cge05VTUJFUl9PRl9JVEVNU30gaXRlbXMifQ==");
  22216.    }
  22217.    val = JSON.parse(val);
  22218.    window.upcartSettings.upcartSettings.translations = val;
  22219.  
  22220.    val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22221.    if (val === '') {
  22222.        val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22223.    }
  22224.    val = JSON.parse(val);
  22225.    window.upcartSettings.upcartSettings.htmlFields = val;
  22226.  
  22227.    val = b64DecodeUnicode("dHJ1ZQ==");
  22228.    if (val === '') {
  22229.        val = b64DecodeUnicode("dHJ1ZQ==");
  22230.    }
  22231.    val = JSON.parse(val);
  22232.    window.upcartSettings.upcartSettings.automaticDiscount = val;
  22233.  
  22234.    val = b64DecodeUnicode("ZmFsc2U=");
  22235.    if (val === '') {
  22236.        val = b64DecodeUnicode("ZmFsc2U=");
  22237.    }
  22238.    val = JSON.parse(val);
  22239.    window.upcartSettings.upcartSettings.basePriceForDiscount = val;
  22240.  
  22241.    val = b64DecodeUnicode("dHJ1ZQ==");
  22242.    if (val === '') {
  22243.        val = b64DecodeUnicode("ZmFsc2U=");
  22244.    }
  22245.    val = JSON.parse(val);
  22246.    window.upcartSettings.upcartSettings.hideSingleUnderscoredProperties = val;
  22247.  
  22248.    val = b64DecodeUnicode("ZmFsc2U=");
  22249.    if (val === '') {
  22250.        val = b64DecodeUnicode("ZmFsc2U=");
  22251.    }
  22252.    val = JSON.parse(val);
  22253.    window.upcartSettings.upcartSettings.showContinueShoppingButton = val;
  22254.  
  22255.    val = b64DecodeUnicode("ZmFsc2U=");
  22256.    if (val === '') {
  22257.        val = b64DecodeUnicode("ZmFsc2U=");
  22258.    }
  22259.    val = JSON.parse(val);
  22260.    window.upcartSettings.upcartSettings.ajaxRaceConditionPrevention = val;
  22261.  
  22262.    val = b64DecodeUnicode("ZmFsc2U=");
  22263.    if (val === '') {
  22264.        val = b64DecodeUnicode("ZmFsc2U=");
  22265.    }
  22266.    val = JSON.parse(val);
  22267.    window.upcartSettings.upcartSettings.htmlFieldForceReRender = val;
  22268.  
  22269.    val = b64DecodeUnicode("ZmFsc2U=");
  22270.    if (val === '') {
  22271.        val = b64DecodeUnicode("ZmFsc2U=");
  22272.    }
  22273.    val = JSON.parse(val);
  22274.    window.upcartSettings.upcartSettings.skipGoogleFonts = val;
  22275.  
  22276.    val = b64DecodeUnicode("ZmFsc2U=");
  22277.    if (val === '') {
  22278.        val = b64DecodeUnicode("ZmFsc2U=");
  22279.    }
  22280.    val = JSON.parse(val);
  22281.    window.upcartSettings.upcartSettings.overrideScrollLocking = val;
  22282.  
  22283.    val = b64DecodeUnicode("MTAw");
  22284.    if (val === '') {
  22285.        val = b64DecodeUnicode("MTAw");
  22286.    }
  22287.    window.upcartSettings.upcartSettings.trafficAllocationPercent = val;
  22288.  
  22289.    val = b64DecodeUnicode("dHJ1ZQ==");
  22290.    if (val === '') {
  22291.        val = b64DecodeUnicode("ZmFsc2U=");
  22292.    }
  22293.    val = JSON.parse(val);
  22294.    window.upcartSettings.upcartSettings.renderCartInShadowDom = val;
  22295.  
  22296.    val = b64DecodeUnicode("ZmFsc2U=");
  22297.    if (val === '') {
  22298.        val = b64DecodeUnicode("ZmFsc2U=");
  22299.    }
  22300.    val = JSON.parse(val);
  22301.    window.upcartSettings.upcartSettings.cartEventTracking = val;
  22302.  
  22303.    val = b64DecodeUnicode("bGluZQ==");
  22304.    if (val === '') {
  22305.        val = b64DecodeUnicode("bGluZQ==");
  22306.    }
  22307.    window.upcartSettings.upcartSettings.updateItemIdentifier = val;
  22308.  
  22309.    val = b64DecodeUnicode("Knt9");
  22310.    if (val === '') {
  22311.        val = b64DecodeUnicode("Knt9");
  22312.    }
  22313.    window.upcartSettings.upcartSettings.customCSS = val;
  22314.  
  22315.    val = b64DecodeUnicode("Knt9");
  22316.    if (val === '') {
  22317.        val = b64DecodeUnicode("Knt9");
  22318.    }
  22319.    window.upcartSettings.upcartSettings.customStickyCartCSS = val;
  22320.  
  22321.    val = b64DecodeUnicode("ZmFsc2U=");
  22322.    if (val === '') {
  22323.        val = b64DecodeUnicode("ZmFsc2U=");
  22324.    }
  22325.    val = JSON.parse(val);
  22326.    window.upcartSettings.upcartSettings.integrationZapietEnabled = val;
  22327.  
  22328.    val = b64DecodeUnicode("ZmFsc2U=");
  22329.    if (val === '') {
  22330.        val = b64DecodeUnicode("ZmFsc2U=");
  22331.    }
  22332.    val = JSON.parse(val);
  22333.    window.upcartSettings.upcartSettings.integrationYmqEnabled = val;
  22334.  
  22335.    val = b64DecodeUnicode("");
  22336.    if (val === '') {
  22337.        val = b64DecodeUnicode("eyJzdGF0dXMiOiJESVNBQkxFRCJ9");
  22338.    }
  22339.    val = JSON.parse(val);
  22340.    window.upcartSettings.upcartSettings.customCartBundleInfo = val;
  22341.  
  22342.    val = b64DecodeUnicode("dHJ1ZQ==");
  22343.    if (val === '') {
  22344.        val = b64DecodeUnicode("dHJ1ZQ==");
  22345.    }
  22346.    val = JSON.parse(val);
  22347.    window.upcartSettings.upcartEditorSettings.cartIsEnabled = val;
  22348.  
  22349.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwYTlkMWMiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCJ9fQ==");
  22350.    if (val === '') {
  22351.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwMDAwMDAiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCIsImNhcnRXaWR0aCI6eyJkZXNrdG9wIjoiYmFzZSIsIm1vYmlsZSI6ImZ1bGwifX19");
  22352.    }
  22353.    val = JSON.parse(val);
  22354.    window.upcartSettings.upcartEditorSettings.settingsModule = val;
  22355.  
  22356.    val = b64DecodeUnicode("");
  22357.    if (val === '') {
  22358.        val = b64DecodeUnicode("IzJlYTgxOA==");
  22359.    }
  22360.    window.upcartSettings.upcartEditorSettings.designSettingsCartSavingsTextColor = val;
  22361.  
  22362.    val = b64DecodeUnicode("");
  22363.    if (val === '') {
  22364.        val = b64DecodeUnicode("YmFzZQ==");
  22365.    }
  22366.    window.upcartSettings.upcartEditorSettings.headerBorderBottom = val;
  22367.  
  22368.    val = b64DecodeUnicode("");
  22369.    if (val === '') {
  22370.        val = b64DecodeUnicode("YmFzZQ==");
  22371.    }
  22372.    window.upcartSettings.upcartEditorSettings.headerHeight = val;
  22373.  
  22374.    val = b64DecodeUnicode("");
  22375.    if (val === '') {
  22376.        val = b64DecodeUnicode("I2ZmZmZmZjAw");
  22377.    }
  22378.    window.upcartSettings.upcartEditorSettings.headerBackgroundColor = val;
  22379.  
  22380.    val = b64DecodeUnicode("");
  22381.    if (val === '') {
  22382.        val = b64DecodeUnicode("eyJ0eXBlIjoiaW5oZXJpdEhlYWRpbmdTdHlsZXMiLCJoZWFkaW5nTGV2ZWwiOiJoMiJ9");
  22383.    }
  22384.    val = JSON.parse(val);
  22385.    window.upcartSettings.upcartEditorSettings.headerTitleContent = val;
  22386.  
  22387.    val = b64DecodeUnicode("");
  22388.    if (val === '') {
  22389.        val = b64DecodeUnicode("c2lkZQ==");
  22390.    }
  22391.    window.upcartSettings.upcartEditorSettings.headerTitleAlignment = val;
  22392.  
  22393.    val = b64DecodeUnicode("");
  22394.    if (val === '') {
  22395.        val = b64DecodeUnicode("dGl0bGVfX2Nsb3NlQnV0dG9u");
  22396.    }
  22397.    window.upcartSettings.upcartEditorSettings.headerElementArrangement = val;
  22398.  
  22399.    val = b64DecodeUnicode("");
  22400.    if (val === '') {
  22401.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMDBjIiwib25Ib3ZlciI6IiMwMDAwMDAxNCJ9");
  22402.    }
  22403.    val = JSON.parse(val);
  22404.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBackgroundColor = val;
  22405.  
  22406.    val = b64DecodeUnicode("");
  22407.    if (val === '') {
  22408.        val = b64DecodeUnicode("eyJiYXNlIjoiIzYzNzM4MSIsIm9uSG92ZXIiOm51bGx9");
  22409.    }
  22410.    val = JSON.parse(val);
  22411.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconColor = val;
  22412.  
  22413.    val = b64DecodeUnicode("");
  22414.    if (val === '') {
  22415.        val = b64DecodeUnicode("c21hbGw=");
  22416.    }
  22417.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconSize = val;
  22418.  
  22419.    val = b64DecodeUnicode("");
  22420.    if (val === '') {
  22421.        val = b64DecodeUnicode("YmFzZQ==");
  22422.    }
  22423.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconStrokeWidth = val;
  22424.  
  22425.    val = b64DecodeUnicode("");
  22426.    if (val === '') {
  22427.        val = b64DecodeUnicode("bm9uZQ==");
  22428.    }
  22429.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderWidth = val;
  22430.  
  22431.    val = b64DecodeUnicode("");
  22432.    if (val === '') {
  22433.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMCIsIm9uSG92ZXIiOm51bGx9");
  22434.    }
  22435.    val = JSON.parse(val);
  22436.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderColor = val;
  22437.  
  22438.    val = b64DecodeUnicode("dHJ1ZQ==");
  22439.    if (val === '') {
  22440.        val = b64DecodeUnicode("ZmFsc2U=");
  22441.    }
  22442.    val = JSON.parse(val);
  22443.    window.upcartSettings.upcartEditorSettings.announcementModule = val;
  22444.  
  22445.    val = b64DecodeUnicode("PHA+PHN0cm9uZz4qKioqKiAgRlJFRSBTSElQUElORyAqKioqKjwvc3Ryb25nPjwvcD4K");
  22446.    if (val === '') {
  22447.        val = b64DecodeUnicode("PHA+WW91ciBwcm9kdWN0cyBhcmUgcmVzZXJ2ZWQgZm9yIDxiPntUSU1FUn08L2I+IG1pbnV0ZXMhPC9wPg==");
  22448.    }
  22449.    window.upcartSettings.upcartEditorSettings.announcementEditor = val;
  22450.  
  22451.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22452.    if (val === '') {
  22453.        val = b64DecodeUnicode("I0NERTBFMA==");
  22454.    }
  22455.    window.upcartSettings.upcartEditorSettings.announcementBackgroundColor = val;
  22456.  
  22457.    val = b64DecodeUnicode("dG9w");
  22458.    if (val === '') {
  22459.        val = b64DecodeUnicode("dG9w");
  22460.    }
  22461.    window.upcartSettings.upcartEditorSettings.announcementModulePosition = val;
  22462.  
  22463.    val = b64DecodeUnicode("IzEwOWMxYw==");
  22464.    if (val === '') {
  22465.        val = b64DecodeUnicode("I0M1RTZGRA==");
  22466.    }
  22467.    window.upcartSettings.upcartEditorSettings.announcementBorderColor = val;
  22468.  
  22469.    val = b64DecodeUnicode("MA==");
  22470.    if (val === '') {
  22471.        val = b64DecodeUnicode("MDA6MDA=");
  22472.    }
  22473.    window.upcartSettings.upcartEditorSettings.announcementTimer = val;
  22474.  
  22475.    val = b64DecodeUnicode("");
  22476.    if (val === '') {
  22477.        val = b64DecodeUnicode("YmFzZQ==");
  22478.    }
  22479.    window.upcartSettings.upcartEditorSettings.announcementHeight = val;
  22480.  
  22481.    val = b64DecodeUnicode("");
  22482.    if (val === '') {
  22483.        val = b64DecodeUnicode("MTU=");
  22484.    }
  22485.    window.upcartSettings.upcartEditorSettings.announcementTextFontSizePx = val;
  22486.  
  22487.    val = b64DecodeUnicode("ZmFsc2U=");
  22488.    if (val === '') {
  22489.        val = b64DecodeUnicode("ZmFsc2U=");
  22490.    }
  22491.    val = JSON.parse(val);
  22492.    window.upcartSettings.upcartEditorSettings.rewardsModule = val;
  22493.  
  22494.    val = b64DecodeUnicode("I0UyRTJFMg==");
  22495.    if (val === '') {
  22496.        val = b64DecodeUnicode("I0UyRTJFMg==");
  22497.    }
  22498.    window.upcartSettings.upcartEditorSettings.rewardsBarBackgroundColor = val;
  22499.  
  22500.    val = b64DecodeUnicode("IzkzRDNGRg==");
  22501.    if (val === '') {
  22502.        val = b64DecodeUnicode("IzkzRDNGRg==");
  22503.    }
  22504.    window.upcartSettings.upcartEditorSettings.rewardsBarForegroundColor = val;
  22505.  
  22506.    val = b64DecodeUnicode("Y2FydFRvdGFs");
  22507.    if (val === '') {
  22508.        val = b64DecodeUnicode("Y2FydFRvdGFs");
  22509.    }
  22510.    window.upcartSettings.upcartEditorSettings.rewardsBasis = val;
  22511.  
  22512.    val = b64DecodeUnicode("ZmFsc2U=");
  22513.    if (val === '') {
  22514.        val = b64DecodeUnicode("ZmFsc2U=");
  22515.    }
  22516.    val = JSON.parse(val);
  22517.    window.upcartSettings.upcartEditorSettings.rewardsProductLinkVisible = val;
  22518.  
  22519.    val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22520.    if (val === '') {
  22521.        val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22522.    }
  22523.    window.upcartSettings.upcartEditorSettings.rewardsTargetType = val;
  22524.  
  22525.    val = b64DecodeUnicode("MTI1");
  22526.    if (val === '') {
  22527.        val = b64DecodeUnicode("MTI1");
  22528.    }
  22529.    window.upcartSettings.upcartEditorSettings.rewardsMinAmount = val;
  22530.  
  22531.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22532.    if (val === '') {
  22533.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22534.    }
  22535.    window.upcartSettings.upcartEditorSettings.rewardsEditor = val;
  22536.  
  22537.    val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22538.    if (val === '') {
  22539.        val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22540.    }
  22541.    window.upcartSettings.upcartEditorSettings.rewardsEditorAfterText = val;
  22542.  
  22543.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22544.    if (val === '') {
  22545.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22546.    }
  22547.    window.upcartSettings.upcartEditorSettings.rewardsEditorForItemCount = val;
  22548.  
  22549.    val = b64DecodeUnicode("NQ==");
  22550.    if (val === '') {
  22551.        val = b64DecodeUnicode("NQ==");
  22552.    }
  22553.    window.upcartSettings.upcartEditorSettings.rewardsItemCount = val;
  22554.  
  22555.    val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22556.    if (val === '') {
  22557.        val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22558.    }
  22559.    val = JSON.parse(val);
  22560.    window.upcartSettings.upcartEditorSettings.rewardsTiers = val;
  22561.  
  22562.    val = b64DecodeUnicode("W10=");
  22563.    if (val === '') {
  22564.        val = b64DecodeUnicode("W10=");
  22565.    }
  22566.    val = JSON.parse(val);
  22567.    window.upcartSettings.upcartEditorSettings.rewardsTierProducts = val;
  22568.  
  22569.    val = b64DecodeUnicode("ZmFsc2U=");
  22570.    if (val === '') {
  22571.        val = b64DecodeUnicode("ZmFsc2U=");
  22572.    }
  22573.    val = JSON.parse(val);
  22574.    window.upcartSettings.upcartEditorSettings.rewardsShowIconWithSingleTier = val;
  22575.  
  22576.    val = b64DecodeUnicode("dHJ1ZQ==");
  22577.    if (val === '') {
  22578.        val = b64DecodeUnicode("ZmFsc2U=");
  22579.    }
  22580.    val = JSON.parse(val);
  22581.    window.upcartSettings.upcartEditorSettings.rewardsShowOnEmptyCart = val;
  22582.  
  22583.    val = b64DecodeUnicode("ZmFsc2U=");
  22584.    if (val === '') {
  22585.        val = b64DecodeUnicode("ZmFsc2U=");
  22586.    }
  22587.    val = JSON.parse(val);
  22588.    window.upcartSettings.upcartEditorSettings.recommendationsModule = val;
  22589.  
  22590.    val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22591.    if (val === '') {
  22592.        val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22593.    }
  22594.    window.upcartSettings.upcartEditorSettings.recommendationsHeaderText = val;
  22595.  
  22596.    val = b64DecodeUnicode("ZmFsc2U=");
  22597.    if (val === '') {
  22598.        val = b64DecodeUnicode("ZmFsc2U=");
  22599.    }
  22600.    val = JSON.parse(val);
  22601.    window.upcartSettings.upcartEditorSettings.recommendationsEnableShopNowButton = val;
  22602.  
  22603.    val = b64DecodeUnicode("U2hvcCBOb3c=");
  22604.    if (val === '') {
  22605.        val = b64DecodeUnicode("U2hvcCBOb3c=");
  22606.    }
  22607.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonText = val;
  22608.  
  22609.    val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22610.    if (val === '') {
  22611.        val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22612.    }
  22613.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonURL = val;
  22614.  
  22615.    val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22616.    if (val === '') {
  22617.        val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22618.    }
  22619.    val = JSON.parse(val);
  22620.    window.upcartSettings.upcartEditorSettings.recommendationItems = val;
  22621.  
  22622.    val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22623.    if (val === '') {
  22624.        val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22625.    }
  22626.    window.upcartSettings.upcartEditorSettings.recommendationsProductRecommendationsHeaderText = val;
  22627.  
  22628.    val = b64DecodeUnicode("Mw==");
  22629.    if (val === '') {
  22630.        val = b64DecodeUnicode("Mw==");
  22631.    }
  22632.    window.upcartSettings.upcartEditorSettings.recommendationsMaxRecommendationsToShow = val;
  22633.  
  22634.    val = b64DecodeUnicode("dmVydGljYWw=");
  22635.    if (val === '') {
  22636.        val = b64DecodeUnicode("dmVydGljYWw=");
  22637.    }
  22638.    window.upcartSettings.upcartEditorSettings.recommendationsDirection = val;
  22639.  
  22640.    val = b64DecodeUnicode("dHJ1ZQ==");
  22641.    if (val === '') {
  22642.        val = b64DecodeUnicode("ZmFsc2U=");
  22643.    }
  22644.    val = JSON.parse(val);
  22645.    window.upcartSettings.upcartEditorSettings.upsellsModule = val;
  22646.  
  22647.    val = b64DecodeUnicode("dmVydGljYWw=");
  22648.    if (val === '') {
  22649.        val = b64DecodeUnicode("aG9yaXpvbnRhbA==");
  22650.    }
  22651.    window.upcartSettings.upcartEditorSettings.upsellsDirection = val;
  22652.  
  22653.    val = b64DecodeUnicode("PHA+PC9wPgo=");
  22654.    if (val === '') {
  22655.        val = b64DecodeUnicode("WW91J2xsIGxvdmUgdGhlc2U=");
  22656.    }
  22657.    window.upcartSettings.upcartEditorSettings.upsellsTitle = val;
  22658.  
  22659.    val = b64DecodeUnicode("Mw==");
  22660.    if (val === '') {
  22661.        val = b64DecodeUnicode("MTA=");
  22662.    }
  22663.    window.upcartSettings.upcartEditorSettings.maximumUpsellsToShow = val;
  22664.  
  22665.    val = b64DecodeUnicode("dHJ1ZQ==");
  22666.    if (val === '') {
  22667.        val = b64DecodeUnicode("ZmFsc2U=");
  22668.    }
  22669.    val = JSON.parse(val);
  22670.    window.upcartSettings.upcartEditorSettings.upsellsShouldLimit = val;
  22671.  
  22672.    val = b64DecodeUnicode("ZmFsc2U=");
  22673.    if (val === '') {
  22674.        val = b64DecodeUnicode("ZmFsc2U=");
  22675.    }
  22676.    val = JSON.parse(val);
  22677.    window.upcartSettings.upcartEditorSettings.upsellsTrigger = val;
  22678.  
  22679.    val = b64DecodeUnicode("ZmFsc2U=");
  22680.    if (val === '') {
  22681.        val = b64DecodeUnicode("ZmFsc2U=");
  22682.    }
  22683.    val = JSON.parse(val);
  22684.    window.upcartSettings.upcartEditorSettings.showUpsellItemsAlreadyInCart = val;
  22685.  
  22686.    val = b64DecodeUnicode("W3siaWQiOiIzNDM4MyIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzY1NzA2MjE1OTk4MzEiLCJzaG9ydElkIjoiNjU3MDYyMTU5OTgzMSIsInZhcmlhbnRzIjpbIjM5MzMzODE4MjY5NzgzIl0sImhhbmRsZSI6IjNtLXN0aWNrZXItZG91YmxlLXNpZGVkLXRhcGUtYWRoZXNpdmUtZm9yLWNlbGwtcGhvbmUtY29tcHV0ZXItcmVwYWlyIiwidGl0bGUiOiJOZXcgQmxhY2sgM00gU3RpY2tlciBEb3VibGUgU2lkZWQgVGFwZSBBZGhlc2l2ZSBGb3IgQ2VsbCBQaG9uZSAmIENvbXB1dGVyIFJlcGFpcnMiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvdGFwZTIuanBnP3Y9MTcyODkyMzA3MCJ9XX19LHsiaWQiOiI1NzA5NCIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzczMjM4ODQwMjc5OTEiLCJzaG9ydElkIjoiNzMyMzg4NDAyNzk5MSIsInZhcmlhbnRzIjpbIjQxMzYwNTgyOTM0NjE1Il0sImhhbmRsZSI6IjExNS1pbi0xLW1hZ25ldGljLXByZWNpc2lvbi1zY3Jld2RyaXZlci1zZXQtcGMtcGhvbmUtZWxlY3Ryb25pY3MtcmVwYWlyLXRvb2wta2l0IiwidGl0bGUiOiJOZXcgTGFwdG9wIFJlcGFpciBUb29sIGtpdCAxMTUgaW4gMSBNYWduZXRpYyBQcmVjaXNpb24gU2NyZXdkcml2ZXIgU2V0IiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL3MtbDEwMDBfNTE2ZTAyNjQtZGNmMy00NTdmLWI1MmItYjgwNzZmMTQwMGIyLndlYnA/dj0xNzMxNDIwNTQ4In1dfX1d");
  22687.    if (val === '') {
  22688.        val = b64DecodeUnicode("W3siX2lkIjoiIiwidHJpZ2dlciI6bnVsbCwidXBzZWxsIjpudWxsfV0=");
  22689.    }
  22690.    val = JSON.parse(val);
  22691.    window.upcartSettings.upcartEditorSettings.upsellsItems = val;
  22692.  
  22693.    val = b64DecodeUnicode("Ym90dG9t");
  22694.    if (val === '') {
  22695.        val = b64DecodeUnicode("Ym90dG9t");
  22696.    }
  22697.    window.upcartSettings.upcartEditorSettings.upsellsModulePosition = val;
  22698.  
  22699.    val = b64DecodeUnicode("ZmFsc2U=");
  22700.    if (val === '') {
  22701.        val = b64DecodeUnicode("ZmFsc2U=");
  22702.    }
  22703.    val = JSON.parse(val);
  22704.    window.upcartSettings.upcartEditorSettings.recommendedUpsells = val;
  22705.  
  22706.    val = b64DecodeUnicode("ZmFsc2U=");
  22707.    if (val === '') {
  22708.        val = b64DecodeUnicode("ZmFsc2U=");
  22709.    }
  22710.    val = JSON.parse(val);
  22711.    window.upcartSettings.upcartEditorSettings.smartVariantMatching = val;
  22712.  
  22713.    val = b64DecodeUnicode("cmVsYXRlZA==");
  22714.    if (val === '') {
  22715.        val = b64DecodeUnicode("cmVsYXRlZA==");
  22716.    }
  22717.    window.upcartSettings.upcartEditorSettings.upsellRecommendationIntent = val;
  22718.  
  22719.    val = b64DecodeUnicode("dHJ1ZQ==");
  22720.    if (val === '') {
  22721.        val = b64DecodeUnicode("ZmFsc2U=");
  22722.    }
  22723.    val = JSON.parse(val);
  22724.    window.upcartSettings.upcartEditorSettings.addonsModule = val;
  22725.  
  22726.    val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjp0cnVlLCJwcm9kdWN0SGFuZGxlIjoic2hpcHBpbmctcHJvdGVjdGlvbiIsImRlZmF1bHRCZWhhdmlvciI6dHJ1ZSwidGllcnMiOlt7Im1heENhcnRUb3RhbCI6OTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjIuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk0NDc5MSJ9LHsibWF4Q2FydFRvdGFsIjoxOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjMuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk3NzU1OSJ9LHsibWF4Q2FydFRvdGFsIjoyOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjQuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDAxMDMyNyJ9LHsibWF4Q2FydFRvdGFsIjozOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjUuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDA0MzA5NSJ9LHsibWF4Q2FydFRvdGFsIjpudWxsLCJ0ZW1wb3JhcnlEYXRhRm9yQWRtaW4iOnsidmFyaWFudFByaWNlIjo2Ljk5fSwidmFyaWFudElkIjoiNDEzNjU2MDAwNzU4NjMifV0sInVzZVByZURpc2NvdW50ZWRUb3RhbCI6dHJ1ZX0sInByb2R1Y3RBZGRvbiI6eyJhY3RpdmUiOmZhbHNlLCJwcm9kdWN0SGFuZGxlIjpudWxsLCJwcm9kdWN0IjpudWxsLCJkZWZhdWx0QmVoYXZpb3IiOmZhbHNlfX0=");
  22727.    if (val === '') {
  22728.        val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjpmYWxzZSwicHJvZHVjdEhhbmRsZSI6bnVsbCwidGllcnMiOltdLCJ1c2VQcmVEaXNjb3VudGVkVG90YWwiOmZhbHNlfSwicHJvZHVjdEFkZG9uIjp7ImFjdGl2ZSI6ZmFsc2UsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGx9fQ==");
  22729.    }
  22730.    val = JSON.parse(val);
  22731.    window.upcartSettings.upcartEditorSettings.addonsField = val;
  22732.  
  22733.    val = b64DecodeUnicode("dHJ1ZQ==");
  22734.    if (val === '') {
  22735.        val = b64DecodeUnicode("ZmFsc2U=");
  22736.    }
  22737.    val = JSON.parse(val);
  22738.    window.upcartSettings.upcartEditorSettings.addonsShouldBeCounted = val;
  22739.  
  22740.    val = b64DecodeUnicode("dHJ1ZQ==");
  22741.    if (val === '') {
  22742.        val = b64DecodeUnicode("ZmFsc2U=");
  22743.    }
  22744.    val = JSON.parse(val);
  22745.    window.upcartSettings.upcartEditorSettings.notesModule = val;
  22746.  
  22747.    val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zIC0gTGFwdG9wIG1vZGVsIE51bWJlcjwvcD4K");
  22748.    if (val === '') {
  22749.        val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zPC9wPg==");
  22750.    }
  22751.    window.upcartSettings.upcartEditorSettings.notesTitle = val;
  22752.  
  22753.    val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22754.    if (val === '') {
  22755.        val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22756.    }
  22757.    window.upcartSettings.upcartEditorSettings.notesPlaceholder = val;
  22758.  
  22759.    val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22760.    if (val === '') {
  22761.        val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22762.    }
  22763.    window.upcartSettings.upcartEditorSettings.notesPlacement = val;
  22764.  
  22765.    val = b64DecodeUnicode("dHJ1ZQ==");
  22766.    if (val === '') {
  22767.        val = b64DecodeUnicode("ZmFsc2U=");
  22768.    }
  22769.    val = JSON.parse(val);
  22770.    window.upcartSettings.upcartEditorSettings.trustBadgesModule = val;
  22771.  
  22772.    val = b64DecodeUnicode("eyJ1cmwiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL1VwY2FydF9UcnVzdF9CYWRnZV8xNzM5ODgzNjUyMjIxLmpwZz92PTE3Mzk4ODM2NjEiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  22773.    if (val === '') {
  22774.        val = b64DecodeUnicode("eyJ1cmwiOiIiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  22775.    }
  22776.    val = JSON.parse(val);
  22777.    window.upcartSettings.upcartEditorSettings.trustBadges = val;
  22778.  
  22779.    val = b64DecodeUnicode("dHJ1ZQ==");
  22780.    if (val === '') {
  22781.        val = b64DecodeUnicode("ZmFsc2U=");
  22782.    }
  22783.    val = JSON.parse(val);
  22784.    window.upcartSettings.upcartEditorSettings.discountCodeModule = val;
  22785.  
  22786.    val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  22787.    if (val === '') {
  22788.        val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  22789.    }
  22790.    window.upcartSettings.upcartEditorSettings.discountCodePlaceholder = val;
  22791.  
  22792.    val = b64DecodeUnicode("QXBwbHk=");
  22793.    if (val === '') {
  22794.        val = b64DecodeUnicode("QXBwbHk=");
  22795.    }
  22796.    window.upcartSettings.upcartEditorSettings.discountCodeButtonText = val;
  22797.  
  22798.    val = b64DecodeUnicode("ZmFsc2U=");
  22799.    if (val === '') {
  22800.        val = b64DecodeUnicode("ZmFsc2U=");
  22801.    }
  22802.    val = JSON.parse(val);
  22803.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesModule = val;
  22804.  
  22805.    val = b64DecodeUnicode("ZmFsc2U=");
  22806.    if (val === '') {
  22807.        val = b64DecodeUnicode("ZmFsc2U=");
  22808.    }
  22809.    val = JSON.parse(val);
  22810.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesPreventDowngrades = val;
  22811.  
  22812.    val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  22813.    if (val === '') {
  22814.        val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  22815.    }
  22816.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesButtonText = val;
  22817.  
  22818.    val = b64DecodeUnicode("ZmFsc2U=");
  22819.    if (val === '') {
  22820.        val = b64DecodeUnicode("ZmFsc2U=");
  22821.    }
  22822.    val = JSON.parse(val);
  22823.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsTextOverride = val;
  22824.  
  22825.    val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  22826.    if (val === '') {
  22827.        val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  22828.    }
  22829.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsText = val;
  22830.  
  22831.    val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  22832.    if (val === '') {
  22833.        val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  22834.    }
  22835.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOneTimePurchaseText = val;
  22836.  
  22837.    val = b64DecodeUnicode("dHJ1ZQ==");
  22838.    if (val === '') {
  22839.        val = b64DecodeUnicode("ZmFsc2U=");
  22840.    }
  22841.    val = JSON.parse(val);
  22842.    window.upcartSettings.upcartEditorSettings.expressPayModule = val;
  22843.  
  22844.    val = b64DecodeUnicode("W10=");
  22845.    if (val === '') {
  22846.        val = b64DecodeUnicode("W10=");
  22847.    }
  22848.    val = JSON.parse(val);
  22849.    window.upcartSettings.upcartEditorSettings.expressPayEnabledGateways = val;
  22850.  
  22851.    val = b64DecodeUnicode("MQ==");
  22852.    if (val === '') {
  22853.        val = b64DecodeUnicode("MQ==");
  22854.    }
  22855.    window.upcartSettings.upcartEditorSettings.expressPayVersion = val;
  22856.  
  22857.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  22858.    if (val === '') {
  22859.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  22860.    }
  22861.    val = JSON.parse(val);
  22862.    window.upcartSettings.upcartEditorSettings.expressPayAcceleratedCheckoutStyles = val;
  22863.  
  22864.    val = b64DecodeUnicode("dHJ1ZQ==");
  22865.    if (val === '') {
  22866.        val = b64DecodeUnicode("dHJ1ZQ==");
  22867.    }
  22868.    val = JSON.parse(val);
  22869.    window.upcartSettings.upcartEditorSettings.expressPayHideBuyerConsent = val;
  22870.  
  22871.    val = b64DecodeUnicode("ZmFsc2U=");
  22872.    if (val === '') {
  22873.        val = b64DecodeUnicode("ZmFsc2U=");
  22874.    }
  22875.    val = JSON.parse(val);
  22876.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartButtonIsEnabled = val;
  22877.  
  22878.    val = b64DecodeUnicode("IzQzYmUwYQ==");
  22879.    if (val === '') {
  22880.        val = b64DecodeUnicode("IzAwMDAwMA==");
  22881.    }
  22882.    window.upcartSettings.stickyCartButtonEditorSettings.backgroundColor = val;
  22883.  
  22884.    val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  22885.    if (val === '') {
  22886.        val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  22887.    }
  22888.    window.upcartSettings.stickyCartButtonEditorSettings.deviceSettings = val;
  22889.  
  22890.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22891.    if (val === '') {
  22892.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  22893.    }
  22894.    window.upcartSettings.stickyCartButtonEditorSettings.iconColor = val;
  22895.  
  22896.    val = b64DecodeUnicode("c3RhbmRhcmRDYXJ0");
  22897.    if (val === '') {
  22898.        val = b64DecodeUnicode("c3F1YXJlQmFn");
  22899.    }
  22900.    window.upcartSettings.stickyCartButtonEditorSettings.iconStyle = val;
  22901.  
  22902.    val = b64DecodeUnicode("I2U0MjYyNg==");
  22903.    if (val === '') {
  22904.        val = b64DecodeUnicode("I2U0MjYyNg==");
  22905.    }
  22906.    window.upcartSettings.stickyCartButtonEditorSettings.quantityBackgroundColor = val;
  22907.  
  22908.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22909.    if (val === '') {
  22910.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  22911.    }
  22912.    window.upcartSettings.stickyCartButtonEditorSettings.quantityTextColor = val;
  22913.  
  22914.    val = b64DecodeUnicode("Y2VudGVyUmlnaHQ=");
  22915.    if (val === '') {
  22916.        val = b64DecodeUnicode("Ym90dG9tUmlnaHQ=");
  22917.    }
  22918.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartPosition = val;
  22919.  
  22920. })();
  22921. </script>
  22922.  
  22923.  
  22924.  
  22925.  
  22926.  <div id="upcart-additional-checkout-buttons" style="position: absolute !important; margin-left: -9999px !important; display: block !important;" class="additional-checkout-buttons">
  22927.    
  22928.    <div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
  22929.    <div class="upcart-additional-checkout-buttons-svgs">
  22930.  
  22931.      
  22932.  
  22933.      
  22934.  
  22935.      
  22936.  
  22937.      
  22938.  
  22939.      
  22940.  
  22941.      
  22942.    </div>
  22943.  </div>
  22944.  
  22945.  
  22946.  
  22947.  
  22948. <script>
  22949.  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};
  22950.  window.upcartMoneyFormat = "${{amount}}";
  22951.  window.upcartStorefrontPublicAccessToken = '53e72a50badb7e504187b4c7431817bf' || undefined;
  22952.  window.upcartClientLocalizationCountry = {
  22953.    isoCode: 'CA',
  22954.    currency: 'CurrencyDrop',
  22955.    name: 'Canada'
  22956.  };
  22957.  window.upcartMyShopifyDomain = 'laptoppartsatp.myshopify.com';
  22958. </script>
  22959.  
  22960. <script>
  22961.  window.upcartPreloadedCart.items = window.upcartPreloadedCart.items.map((line) => {
  22962.    
  22963.  
  22964.    return line;
  22965.  });
  22966. </script>
  22967.  
  22968. <div id="upCart"></div>
  22969. <div id="upCartStickyButton"></div>
  22970.  
  22971. <style id="upCart-customCSS">
  22972.  *{}
  22973. </style>
  22974.  
  22975.  
  22976. </div></body>
  22977. </html>
  22978.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda