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.25d963ed46da26098ebeab731e90d8802d989fa5.woff2?h1=bGFwdG9wcGFydHMuY2E&h2=bGFwdG9wcGFydHNhdHAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=212bc52e2c90dc60ee3351ff747ed161ce425ebd2313c33978515f41d526c500" as="font" crossorigin="anonymous">
  659.    <link rel="preload" as="style" href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022">
  660.  
  661.    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="CrDzWSvAeMDFWNGBM_-BRbrjFQyoT_40-GZWV79wfbw">
  662. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/11386172/digital_wallets/dialog">
  663. <meta name="shopify-checkout-api-token" content="d20210e10f5cfcb163289d215c1a7239">
  664. <meta id="in-context-paypal-metadata" data-shop-id="11386172" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="CAD">
  665. <script async="async" src="/checkouts/internal/preloads.js?locale=en-CA&version=checkout-renderer"></script>
  666. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  667. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-CA&version=checkout-renderer&shop_id=11386172" crossorigin="anonymous"></script>
  668. <script id="apple-pay-shop-capabilities" type="application/json">{"shopId":11386172,"countryCode":"CA","currencyCode":"CAD","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/11386172","merchantName":"LaptopParts.ca","requiredBillingContactFields":["postalAddress","email"],"requiredShippingContactFields":["postalAddress","email"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","discover","interac","jcb"],"total":{"type":"pending","label":"LaptopParts.ca","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
  669. <script id="shopify-features" type="application/json">{"accessToken":"d20210e10f5cfcb163289d215c1a7239","betas":["rich-media-storefront-analytics"],"domain":"laptopparts.ca","predictiveSearch":true,"shopId":11386172,"locale":"en"}</script>
  670. <script>var Shopify = Shopify || {};
  671. Shopify.shop = "laptoppartsatp.myshopify.com";
  672. Shopify.locale = "en";
  673. Shopify.currency = {"active":"CAD","rate":"1.0"};
  674. Shopify.country = "CA";
  675. Shopify.theme = {"name":"LaptopParts.ca |- Optimized","id":126947917911,"schema_name":"Empire","schema_version":"9.1.1","theme_store_id":838,"role":"main"};
  676. Shopify.theme.handle = "null";
  677. Shopify.theme.style = {"id":null,"handle":null};
  678. Shopify.cdnHost = "laptopparts.ca/cdn";
  679. Shopify.routes = Shopify.routes || {};
  680. Shopify.routes.root = "/";</script>
  681. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  682. <script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
  683. <script>window.ShopifyPay = window.ShopifyPay || {};
  684. window.ShopifyPay.apiHost = "shop.app\/pay";</script>
  685. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  686. <script>
  687.  window.Shopify = window.Shopify || {};
  688.  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  689.  window.Shopify.featureAssets['shop-js'] = {"shop-cart-sync":["modules/v2/client.shop-cart-sync_CeZ9Odj2.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js"],"init-shop-cart-sync":["modules/v2/client.init-shop-cart-sync_B677afzU.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js"],"init-windoid":["modules/v2/client.init-windoid_C7ZPgsT6.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js"],"init-fed-cm":["modules/v2/client.init-fed-cm_B9_lyA-d.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js"],"shop-button":["modules/v2/client.shop-button_CPmlanHq.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_B_nQZ5pq.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_CIKnEhr3.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js","modules/v2/chunk.modal_CZBEEJMu.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_DhIktEt6.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js"],"pay-button":["modules/v2/client.pay-button_DZ_h_ORE.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_B9qHNu6T.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js","modules/v2/chunk.modal_CZBEEJMu.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_C-nTs_3T.en.esm.js","modules/v2/client.shop-login-button_1jr4Qj9d.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js","modules/v2/chunk.modal_CZBEEJMu.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_DN7ZbwkQ.en.esm.js","modules/v2/client.shop-login-button_1jr4Qj9d.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js","modules/v2/chunk.modal_CZBEEJMu.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_1jr4Qj9d.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js","modules/v2/chunk.modal_CZBEEJMu.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_CU1pkhwZ.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js","modules/v2/chunk.modal_CZBEEJMu.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_BhvAv3gu.en.esm.js","modules/v2/client.shop-login-button_1jr4Qj9d.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js","modules/v2/chunk.modal_CZBEEJMu.esm.js"],"lead-capture":["modules/v2/client.lead-capture_Czg2IOq0.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js","modules/v2/chunk.modal_CZBEEJMu.esm.js"],"payment-terms":["modules/v2/client.payment-terms_DxipNfj-.en.esm.js","modules/v2/chunk.common_DVh8c99L.esm.js","modules/v2/chunk.modal_CZBEEJMu.esm.js"]};
  690. </script>
  691. <script>(function() {
  692.  function asyncLoad() {
  693.    var urls = ["\/\/static.zotabox.com\/0\/9\/098c469a55b8508df7cc687731ea9d89\/widgets.js?shop=laptoppartsatp.myshopify.com","https:\/\/sociallogin-3cb0.kxcdn.com\/resource\/resource.js?cache_key=150634481676\u0026shop=laptoppartsatp.myshopify.com","https:\/\/requestquote.w3apps.co\/js\/app.js?shop=laptoppartsatp.myshopify.com","https:\/\/laptopparts.services.answerbase.com\/javascript\/widget\/full-featured-widget.min.js?p=s\u0026ia=%23abqa-widget\u0026iacp=%23cat-abqa-widget\u0026shop=laptoppartsatp.myshopify.com","https:\/\/laptopparts.services.answerbase.com\/javascript\/widget\/cta-widget.min.js?p=s\u0026ia=%23abcta-widget\u0026shop=laptoppartsatp.myshopify.com","https:\/\/cdn.hextom.com\/js\/quickannouncementbar.js?shop=laptoppartsatp.myshopify.com"];
  694.    for (var i = 0; i < urls.length; i++) {
  695.      var s = document.createElement('script');
  696.      s.type = 'text/javascript';
  697.      s.async = true;
  698.      s.src = urls[i];
  699.      var x = document.getElementsByTagName('script')[0];
  700.      x.parentNode.insertBefore(s, x);
  701.    }
  702.  };
  703.  if(window.attachEvent) {
  704.    window.attachEvent('onload', asyncLoad);
  705.  } else {
  706.    window.addEventListener('load', asyncLoad, false);
  707.  }
  708. })();</script>
  709. <script id="__st">var __st={"a":11386172,"offset":-14400,"reqid":"963e9f9a-9145-4313-a4c6-ad41bc605a47-1752211937","pageurl":"laptopparts.ca\/","u":"c4dae5f6e394","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-Wo99wkt4HAR3/Mf1MqbBNi878Cj2feweJNCEwQQAT7o=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/storefront/assets/storefront/load_feature-02966510.js" crossorigin="anonymous"></script>
  713. <script crossorigin="anonymous" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/storefront/assets/shopify_pay/storefront-d21ba94d.js?v=20220906"></script>
  714. <script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://laptopparts.ca/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
  715. </script>
  716. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  717.  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
  718. </script>
  719. <script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
  720. </script>
  721.  
  722. <link rel="stylesheet" media="screen" href="https://laptopparts.ca/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
  723.  
  724. <style id="shopify-accelerated-checkout-cart">
  725.        #shopify-buyer-consent {
  726.  margin-top: 1em;
  727.  display: inline-block;
  728.  width: 100%;
  729. }
  730.  
  731. #shopify-buyer-consent.hidden {
  732.  display: none;
  733. }
  734.  
  735. #shopify-subscription-policy-button {
  736.  background: none;
  737.  border: none;
  738.  padding: 0;
  739.  text-decoration: underline;
  740.  font-size: inherit;
  741.  cursor: pointer;
  742. }
  743.  
  744. #shopify-subscription-policy-button::before {
  745.  box-shadow: none;
  746. }
  747.  
  748.      </style>
  749. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  750.  
  751.    <link href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022" rel="stylesheet" type="text/css" media="all" />
  752.  
  753.    
  754.    <script>
  755.      window.Theme = window.Theme || {};
  756.      window.Theme.version = '9.1.1';
  757.      window.Theme.name = 'Empire';
  758.      window.Theme.routes = {
  759.        "root_url": "/",
  760.        "account_url": "/account",
  761.        "account_login_url": "/account/login",
  762.        "account_logout_url": "/account/logout",
  763.        "account_register_url": "/account/register",
  764.        "account_addresses_url": "/account/addresses",
  765.        "collections_url": "/collections",
  766.        "all_products_collection_url": "/collections/all",
  767.        "search_url": "/search",
  768.        "predictive_search_url": "/search/suggest",
  769.        "cart_url": "/cart",
  770.        "cart_add_url": "/cart/add",
  771.        "cart_change_url": "/cart/change",
  772.        "cart_clear_url": "/cart/clear",
  773.        "product_recommendations_url": "/recommendations/products",
  774.      };
  775.    </script>
  776.    
  777.  
  778.    
  779.  
  780.    
  781.    
  782.    
  783.    
  784.      ></script>
  785. <script id='merchantWidgetScript' src="https://www.gstatic.com/shopping/merchant/merchantwidget.js" defer></script>
  786. <script type="text/javascript">
  787.  merchantWidgetScript.addEventListener('load', function () {
  788.    merchantwidget.start({
  789.      position: 'LEFT_BOTTOM',
  790.      sideMargin: 21,
  791.      bottomMargin: 33,
  792.      mobileSideMargin: 11,
  793.      mobileBottomMargin: 19
  794.    });
  795.  });
  796. </script>    
  797.     <!-- BEGIN app block: shopify://apps/okas-live-search-filter/blocks/app-block/77de2d4b-51b0-46d6-9fa5-dbe675e819d8 --><script>
  798.  
  799.    
  800.      
  801.            const _0xY9yrmhE9 = {        "en": {                              "_ls_s_footer_text": "SEE ALL RESULTS",          "_ls_s_no_results_text": "No Results Found",          "_ls_s_sale_text": "Sale",          "_ls_s_products": "PRODUCTS",          "_ls_s_pages": "PAGES",          "_ls_s_blogs": "BLOGS",          "_ls_s_collections": "COLLECTIONS",          "_ls_s_popular": "POPULAR SUGGESTIONS"        }      }        
  802.    
  803.  
  804.  
  805.  if ("undefined" == typeof _ls_loaded) {
  806.    _ls_loaded = !0;
  807.    var e = document.createElement("script");
  808.    e.src = "https://cdn.shopify.com/s/files/1/0331/8097/files/livesearch.complete.min_5fd058c2-0401-4f72-a351-b5ec23e835ff.js?v=1735459337", e.async = !0, document.head.appendChild(e)    
  809.  }  
  810. </script>
  811.  
  812.  
  813.  
  814. <!-- END app block --><script src="https://cdn.shopify.com/extensions/c51c58c4-45be-47b3-8d53-688df0ba5496/pushowl-brevo-email-push-sms-118/assets/pushowl-shopify.js" type="text/javascript" defer="defer"></script>
  815. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  816. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {var session_token = document.cookie.match(/_shopify_s=([^;]*)/);function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 11386172,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token: session_token && session_token.length === 2 ? session_token[1] : "",page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
  817. <script id="web-pixels-manager-setup">(function e(e,d,r,n,o,i){if(void 0===i&&(i={}),!Boolean(null===(t=null===(a=window.Shopify)||void 0===a?void 0:a.analytics)||void 0===t?void 0:t.replayQueue)){var a,t;window.Shopify=window.Shopify||{};var s=window.Shopify;s.analytics=s.analytics||{};var l=s.analytics;l.replayQueue=[],l.publish=function(e,d,r){return l.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var u=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),c="modern"===u?"modern":"legacy",f=(null!=o?o:{modern:"",legacy:""})[c],m=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:r,hashVersion:n,buildTarget:c}),p=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:n,bundleTarget:u,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{i.browserTarget=u,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:m,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var r=window.webPixelsManager.init(e)||void 0;if(r){d(r);var n=window.Shopify.analytics;n.replayQueue.forEach((function(e){var d=e[0],n=e[1],o=e[2];r.publishCustomEvent(d,n,o)})),n.replayQueue=[],n.publish=r.publishCustomEvent,n.visitor=r.visitor,n.initialized=!0}}},onerror:function(){return p.emit({status:"failed",errorMsg:"".concat(m," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(f)?f:"",scriptDataAttributes:i}),p.emit({status:"loading"})}catch(e){p.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 11386172,storefrontBaseUrl: "https://laptopparts.ca",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["ac843a20"],webPixelsConfigList: [{"id":"560693335","configuration":"{\"subdomain\": \"laptoppartsatp\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"4b1503cefaacd403b3b8fbb6a9344c9b","type":"APP","apiClientId":1615517,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"392691799","configuration":"{\"config\":\"{\\\"pixel_id\\\":\\\"G-R766FMP28N\\\",\\\"google_tag_ids\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\",\\\"GT-MK9LHHN\\\"],\\\"target_country\\\":\\\"CA\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/GZ2ECPfhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/8pFiCPHhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/1qhMCO7hwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/K-jbCOjhwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/Pl4oCOvhwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/QncHCPrhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/b4EuCPThwI4YEJTzkNID\\\"]}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"e7cfe5f9bd42af3b18fc899c590e0023","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"328826967","configuration":"{\"accountID\":\"y3ihof\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"219ec19a744f4aff2da134bac3704727","type":"APP","apiClientId":5206611,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"43057239","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Shopper Approved TYP code"},{"id":"69697623","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"AnswerBase Conversion Tracking"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0420","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0420","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,effectiveTopLevelDomain: "ca",initData: {"shop":{"name":"LaptopParts.ca","paymentSettings":{"currencyCode":"CAD"},"myshopifyDomain":"laptoppartsatp.myshopify.com","countryCode":"CA","storefrontUrl":"https://laptopparts.ca"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://laptopparts.ca/cdn","d3d74626w61931864p9f14abe3mafb761cf",{"modern":"","legacy":""},{"shopId":"11386172","storefrontBaseUrl":"https://laptopparts.ca","extensionBaseUrl":"https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"ac843a20\"]","isMerchantRequest":"false","hashVersion":"d3d74626w61931864p9f14abe3mafb761cf"});</script><script>
  818.  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  819.  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  820.  window.ShopifyAnalytics.meta.currency = 'CAD';
  821.  var meta = {"page":{"pageType":"home"}};
  822.  for (var attr in meta) {
  823.    window.ShopifyAnalytics.meta[attr] = meta[attr];
  824.  }
  825. </script>
  826. <script class="analytics">
  827.  (function () {
  828.    var customDocumentWrite = function(content) {
  829.      var jquery = null;
  830.  
  831.      if (window.jQuery) {
  832.        jquery = window.jQuery;
  833.      } else if (window.Checkout && window.Checkout.$) {
  834.        jquery = window.Checkout.$;
  835.      }
  836.  
  837.      if (jquery) {
  838.        jquery('body').append(content);
  839.      }
  840.    };
  841.  
  842.    var hasLoggedConversion = function(token) {
  843.      if (token) {
  844.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  845.      }
  846.      return false;
  847.    }
  848.  
  849.    var setCookieIfConversion = function(token) {
  850.      if (token) {
  851.        var twoMonthsFromNow = new Date(Date.now());
  852.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  853.  
  854.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  855.      }
  856.    }
  857.  
  858.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  859.    if (trekkie.integrations) {
  860.      return;
  861.    }
  862.    trekkie.methods = [
  863.      'identify',
  864.      'page',
  865.      'ready',
  866.      'track',
  867.      'trackForm',
  868.      'trackLink'
  869.    ];
  870.    trekkie.factory = function(method) {
  871.      return function() {
  872.        var args = Array.prototype.slice.call(arguments);
  873.        args.unshift(method);
  874.        trekkie.push(args);
  875.        return trekkie;
  876.      };
  877.    };
  878.    for (var i = 0; i < trekkie.methods.length; i++) {
  879.      var key = trekkie.methods[i];
  880.      trekkie[key] = trekkie.factory(key);
  881.    }
  882.    trekkie.load = function(config) {
  883.      trekkie.config = config || {};
  884.      trekkie.config.initialDocumentCookie = document.cookie;
  885.      var first = document.getElementsByTagName('script')[0];
  886.      var script = document.createElement('script');
  887.      script.type = 'text/javascript';
  888.      script.onerror = function(e) {
  889.        var scriptFallback = document.createElement('script');
  890.        scriptFallback.type = 'text/javascript';
  891.        scriptFallback.onerror = function(error) {
  892.                var Monorail = {
  893.      produce: function produce(monorailDomain, schemaId, payload) {
  894.        var currentMs = new Date().getTime();
  895.        var event = {
  896.          schema_id: schemaId,
  897.          payload: payload,
  898.          metadata: {
  899.            event_created_at_ms: currentMs,
  900.            event_sent_at_ms: currentMs
  901.          }
  902.        };
  903.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  904.      },
  905.      sendRequest: function sendRequest(endpointUrl, payload) {
  906.        // Try the sendBeacon API
  907.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  908.          var blobData = new window.Blob([payload], {
  909.            type: 'text/plain'
  910.          });
  911.  
  912.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  913.            return true;
  914.          } // sendBeacon was not successful
  915.  
  916.        } // XHR beacon
  917.  
  918.        var xhr = new XMLHttpRequest();
  919.  
  920.        try {
  921.          xhr.open('POST', endpointUrl);
  922.          xhr.setRequestHeader('Content-Type', 'text/plain');
  923.          xhr.send(payload);
  924.        } catch (e) {
  925.          console.log(e);
  926.        }
  927.  
  928.        return false;
  929.      },
  930.      isIos12: function isIos12() {
  931.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  932.      }
  933.    };
  934.    Monorail.produce('monorail-edge.shopifysvc.com',
  935.      'trekkie_storefront_load_errors/1.1',
  936.      {shop_id: 11386172,
  937.      theme_id: 126947917911,
  938.      app_name: "storefront",
  939.      context_url: window.location.href,
  940.      source_url: "//laptopparts.ca/cdn/s/trekkie.storefront.e4b7dfbfa4ea6cc68d87e97829a12478d9c16c4b.min.js"});
  941.  
  942.        };
  943.        scriptFallback.async = true;
  944.        scriptFallback.src = '//laptopparts.ca/cdn/s/trekkie.storefront.e4b7dfbfa4ea6cc68d87e97829a12478d9c16c4b.min.js';
  945.        first.parentNode.insertBefore(scriptFallback, first);
  946.      };
  947.      script.async = true;
  948.      script.src = '//laptopparts.ca/cdn/s/trekkie.storefront.e4b7dfbfa4ea6cc68d87e97829a12478d9c16c4b.min.js';
  949.      first.parentNode.insertBefore(script, first);
  950.    };
  951.    trekkie.load(
  952.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":11386172,"isMerchantRequest":null,"themeId":126947917911,"themeCityHash":"16933963375368459860","contentLanguage":"en","currency":"CAD","eventMetadataId":"67d9d909-b3c7-4a43-84fe-b3b0c23e9721"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  953.    );
  954.  
  955.    var loaded = false;
  956.    trekkie.ready(function() {
  957.      if (loaded) return;
  958.      loaded = true;
  959.  
  960.      window.ShopifyAnalytics.lib = window.trekkie;
  961.  
  962.      var originalDocumentWrite = document.write;
  963.      document.write = customDocumentWrite;
  964.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  965.      document.write = originalDocumentWrite;
  966.  
  967.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  968.  
  969.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  970.      var token = match? match[1]: undefined;
  971.      if (!hasLoggedConversion(token)) {
  972.        setCookieIfConversion(token);
  973.        
  974.      }
  975.    });
  976.  
  977.  
  978.        var eventsListenerScript = document.createElement('script');
  979.        eventsListenerScript.async = true;
  980.        eventsListenerScript.src = "//laptopparts.ca/cdn/shopifycloud/storefront/assets/shop_events_listener-8675b082.js";
  981.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  982.  
  983. })();</script>
  984. <script
  985.  defer
  986.  src="https://laptopparts.ca/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.6.6.min.js"
  987.  data-application="storefront-renderer"
  988.  data-shop-id="11386172"
  989.  data-render-region="gcp-us-east1"
  990.  data-page-type="index"
  991.  data-theme-instance-id="126947917911"
  992.  data-theme-name="Empire"
  993.  data-theme-version="9.1.1"
  994.  data-monorail-region="shop_domain"
  995.  data-resource-timing-sampling-rate="10"
  996.  data-shs="true"
  997. ></script>
  998. </head>
  999.  
  1000.  <body
  1001.    class="template-index"
  1002.    data-instant-allow-query-string
  1003.    
  1004.  >
  1005.    <script>
  1006.      document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
  1007.      if(window.Shopify&&window.Shopify.designMode)document.documentElement.className+=' in-theme-editor';
  1008.      if(('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch)document.documentElement.className=document.documentElement.className.replace(/\bno-touch\b/,'has-touch');
  1009.    </script>
  1010.  
  1011.    <!-- Google Tag Manager (noscript) -->
  1012.    <noscript
  1013.      ><iframe
  1014.        loading="lazy"
  1015.        src="https://www.googletagmanager.com/ns.html?id=GTM-WDHHF23"
  1016.        height="0"
  1017.        width="0"
  1018.        style="display:none;visibility:hidden"
  1019.      ></iframe
  1020.    ></noscript>
  1021.    <!-- End Google Tag Manager (noscript) -->
  1022.  
  1023.    
  1024.    <svg
  1025.      class="icon-star-reference"
  1026.      aria-hidden="true"
  1027.      focusable="false"
  1028.      role="presentation"
  1029.      xmlns="http://www.w3.org/2000/svg"
  1030.      width="20"
  1031.      height="20"
  1032.      viewBox="3 3 17 17"
  1033.      fill="none"
  1034.    >
  1035.      <symbol id="icon-star">
  1036.        <rect class="icon-star-background" width="20" height="20" fill="currentColor"/>
  1037.        <path d="M10 3L12.163 7.60778L17 8.35121L13.5 11.9359L14.326 17L10 14.6078L5.674 17L6.5 11.9359L3 8.35121L7.837 7.60778L10 3Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  1038.      </symbol>
  1039.      <clipPath id="icon-star-clip">
  1040.        <path d="M10 3L12.163 7.60778L17 8.35121L13.5 11.9359L14.326 17L10 14.6078L5.674 17L6.5 11.9359L3 8.35121L7.837 7.60778L10 3Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  1041.      </clipPath>
  1042.    </svg>
  1043.    
  1044.  
  1045.    <a class="skip-to-main" href="#site-main">Skip to content</a>
  1046.  
  1047.    <!-- BEGIN sections: header-group -->
  1048. <div id="shopify-section-sections--15492291133527__announcement-bar" class="shopify-section shopify-section-group-header-group site-announcement"><script
  1049.  type="application/json"
  1050.  data-section-id="sections--15492291133527__announcement-bar"
  1051.  data-section-type="static-announcement">
  1052. </script>
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063.    <div
  1064.      class="
  1065.        announcement-bar
  1066.        
  1067.      "
  1068.      style="
  1069.        color: #ffffff;
  1070.        background: #fe0000;
  1071.      "
  1072.      data-announcement-bar
  1073.    >
  1074.      
  1075.  
  1076.      
  1077.        <div class="announcement-bar-text">
  1078.          📞 <b>Text us at 613-704-4708</b>
  1079.  
  1080. <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b>  Email us Service@laptopparts.ca</b>
  1081.        </div>
  1082.      
  1083.  
  1084.      <div class="announcement-bar-text-mobile">
  1085.        
  1086.          📞 <b>Text us at 613-704-4708</b>
  1087.  
  1088. <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b>  Email us Service@laptopparts.ca</b>
  1089.        
  1090.      </div>
  1091.    </div>
  1092.  
  1093.  
  1094.  
  1095. </div><div id="shopify-section-sections--15492291133527__header" class="shopify-section shopify-section-group-header-group site-header-wrapper">
  1096.  
  1097.  
  1098. <script
  1099.  type="application/json"
  1100.  data-section-id="sections--15492291133527__header"
  1101.  data-section-type="static-header"
  1102.  data-section-data>
  1103.  {
  1104.    "settings": {
  1105.      "sticky_header": false,
  1106.      "has_box_shadow": false,
  1107.      "live_search": {
  1108.        "enable": false,
  1109.        "money_format": "${{amount}}",
  1110.        "show_mobile_search_bar": false
  1111.      }
  1112.    }
  1113.  }
  1114. </script>
  1115.  
  1116.  
  1117.  
  1118.  
  1119.  
  1120. <style data-shopify>
  1121.  .site-logo {
  1122.    max-width: 250px;
  1123.  }
  1124.  
  1125.  .site-logo-image {
  1126.    max-height: 100px;
  1127.  }
  1128. </style>
  1129.  
  1130. <header
  1131.  class="site-header site-header-nav--open"
  1132.  role="banner"
  1133.  data-site-header
  1134. >
  1135.  <div
  1136.    class="
  1137.      site-header-main
  1138.      
  1139.        site-header--full-width
  1140.      
  1141.    "
  1142.    data-site-header-main
  1143.    
  1144.    
  1145.      data-site-header-mobile-search-button
  1146.    
  1147.  >
  1148.    <button class="site-header-menu-toggle" data-menu-toggle>
  1149.      <div class="site-header-menu-toggle--button" tabindex="-1">
  1150.        <span class="toggle-icon--bar toggle-icon--bar-top"></span>
  1151.        <span class="toggle-icon--bar toggle-icon--bar-middle"></span>
  1152.        <span class="toggle-icon--bar toggle-icon--bar-bottom"></span>
  1153.        <span class="visually-hidden">Menu</span>
  1154.      </div>
  1155.    </button>
  1156.  
  1157.    
  1158.      
  1159.      
  1160.        <a
  1161.          class="site-header-mobile-search-button"
  1162.          href="/search"
  1163.        >
  1164.          
  1165.        <div class="site-header-mobile-search-button--button" tabindex="-1">
  1166.          <svg
  1167.  aria-hidden="true"
  1168.  focusable="false"
  1169.  role="presentation"
  1170.  xmlns="http://www.w3.org/2000/svg"
  1171.  width="23"
  1172.  height="24"
  1173.  fill="none"
  1174.  viewBox="0 0 23 24"
  1175. >
  1176.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1177.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1178. </svg>
  1179.  
  1180.        </div>
  1181.      
  1182.        </a>
  1183.      
  1184.    
  1185.  
  1186.    <div
  1187.      class="
  1188.        site-header-main-content
  1189.        
  1190.      "
  1191.    >
  1192.      <div class="site-header-logo">
  1193.        <a
  1194.          class="site-logo"
  1195.          href="/">
  1196.          
  1197.            
  1198.            
  1199.  
  1200.            
  1201.  
  1202.  
  1203.  
  1204.  <img loading="lazy"
  1205.    
  1206.      src="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523"
  1207.    
  1208.    alt=""
  1209.  
  1210.    
  1211.      data-rimg
  1212.      srcset="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523 1x"
  1213.    
  1214.  
  1215.    class="site-logo-image"
  1216.    style="
  1217.        object-fit:cover;object-position:50.0% 50.0%;
  1218.      
  1219. "
  1220.    
  1221.  >
  1222.  
  1223.  
  1224.  
  1225.  
  1226.          
  1227.        </a>
  1228.      </div>
  1229.  
  1230.      
  1231.  
  1232.  
  1233.  
  1234.  
  1235.  
  1236. <div class="live-search" data-live-search><form
  1237.    class="
  1238.      live-search-form
  1239.      form-fields-inline
  1240.      
  1241.    "
  1242.    action="/search"
  1243.    method="get"
  1244.    role="search"
  1245.    aria-label="Product"
  1246.    data-live-search-form
  1247.  >
  1248.    <div class="form-field no-label"><span class="form-field-select-wrapper live-search-filter-wrapper">
  1249.          <select class="live-search-filter" data-live-search-filter data-filter-all="All categories">
  1250.            
  1251.            <option value="" selected>All categories</option>
  1252.            <option value="" disabled>------</option>
  1253.            
  1254.              
  1255.  
  1256. <option value="product_type:AC Adapters">AC Adapters</option>
  1257. <option value="product_type:Accessories">Accessories</option>
  1258. <option value="product_type:Adapter Card">Adapter Card</option>
  1259. <option value="product_type:Antennas">Antennas</option>
  1260. <option value="product_type:Appliances &gt; Fans">Appliances > Fans</option>
  1261. <option value="product_type:Batteries">Batteries</option>
  1262. <option value="product_type:Bezels Cases &amp; Covers">Bezels Cases & Covers</option>
  1263. <option value="product_type:Boards">Boards</option>
  1264. <option value="product_type:Cables">Cables</option>
  1265. <option value="product_type:Cases Covers &amp; Bezels">Cases Covers & Bezels</option>
  1266. <option value="product_type:Connectors">Connectors</option>
  1267. <option value="product_type:DC Jack Cables">DC Jack Cables</option>
  1268. <option value="product_type:Docking Station">Docking Station</option>
  1269. <option value="product_type:Drives">Drives</option>
  1270. <option value="product_type:Fans">Fans</option>
  1271. <option value="product_type:Hard Drive">Hard Drive</option>
  1272. <option value="product_type:Hard Drive Brackets">Hard Drive Brackets</option>
  1273. <option value="product_type:Hard Drive Disk Caddy">Hard Drive Disk Caddy</option>
  1274. <option value="product_type:Hard Drives">Hard Drives</option>
  1275. <option value="product_type:Hinges">Hinges</option>
  1276. <option value="product_type:Keyboards">Keyboards</option>
  1277. <option value="product_type:Memory">Memory</option>
  1278. <option value="product_type:Misc">Misc</option>
  1279. <option value="product_type:Motherboards">Motherboards</option>
  1280. <option value="product_type:Network Cards">Network Cards</option>
  1281. <option value="product_type:Optical Cables">Optical Cables</option>
  1282. <option value="product_type:Optical Drives">Optical Drives</option>
  1283. <option value="product_type:Palmrests">Palmrests</option>
  1284. <option value="product_type:Parts">Parts</option>
  1285. <option value="product_type:Phone Parts">Phone Parts</option>
  1286. <option value="product_type:Power Supplies">Power Supplies</option>
  1287. <option value="product_type:Printer Parts">Printer Parts</option>
  1288. <option value="product_type:Screens">Screens</option>
  1289. <option value="product_type:Screens - Touch Digitizers">Screens - Touch Digitizers</option>
  1290. <option value="product_type:Screws">Screws</option>
  1291. <option value="product_type:Server Parts">Server Parts</option>
  1292. <option value="product_type:Short Low Profile Bracket">Short Low Profile Bracket</option>
  1293. <option value="product_type:Speakers">Speakers</option>
  1294. <option value="product_type:Tablet Parts">Tablet Parts</option>
  1295. <option value="product_type:Touchpads">Touchpads</option>
  1296. <option value="product_type:UpCart - Shipping Protection">UpCart - Shipping Protection</option>
  1297. <option value="product_type:Wireless Mouse Receiver">Wireless Mouse Receiver</option>
  1298.            
  1299.          </select>
  1300.          <label class="live-search-filter-label form-field-select" data-live-search-filter-label>All categories
  1301. </label>
  1302.          <svg
  1303.  aria-hidden="true"
  1304.  focusable="false"
  1305.  role="presentation"
  1306.  width="8"
  1307.  height="6"
  1308.  viewBox="0 0 8 6"
  1309.  fill="none"
  1310.  xmlns="http://www.w3.org/2000/svg"
  1311.  class="icon-chevron-down"
  1312. >
  1313. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1314. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1315. </svg>
  1316.  
  1317.        </span><input
  1318.        class="form-field-input live-search-form-field"
  1319.        type="text"
  1320.        name="q"
  1321.        aria-label="Search"
  1322.        placeholder="What are you looking for?"
  1323.        
  1324.        autocomplete="off"
  1325.        data-live-search-input
  1326.      >
  1327.      <button
  1328.        class="live-search-takeover-cancel"
  1329.        type="button"
  1330.        data-live-search-takeover-cancel>
  1331.        Cancel
  1332.      </button>
  1333.  
  1334.      <button
  1335.        class="live-search-button"
  1336.        type="submit"
  1337.        aria-label="Search"
  1338.        data-live-search-submit
  1339.      >
  1340.        <span class="search-icon search-icon--inactive">
  1341.          <svg
  1342.  aria-hidden="true"
  1343.  focusable="false"
  1344.  role="presentation"
  1345.  xmlns="http://www.w3.org/2000/svg"
  1346.  width="23"
  1347.  height="24"
  1348.  fill="none"
  1349.  viewBox="0 0 23 24"
  1350. >
  1351.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1352.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1353. </svg>
  1354.  
  1355.        </span>
  1356.        <span class="search-icon search-icon--active">
  1357.          <svg
  1358.  aria-hidden="true"
  1359.  focusable="false"
  1360.  role="presentation"
  1361.  width="26"
  1362.  height="26"
  1363.  viewBox="0 0 26 26"
  1364.  xmlns="http://www.w3.org/2000/svg"
  1365. >
  1366.  <g fill-rule="nonzero" fill="currentColor">
  1367.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  1368.  </g>
  1369. </svg>
  1370.        </span>
  1371.      </button>
  1372.    </div>
  1373.  
  1374.    <div class="search-flydown" data-live-search-flydown>
  1375.      <div class="search-flydown--placeholder" data-live-search-placeholder>
  1376.        <div class="search-flydown--product-items">
  1377.          
  1378.            <a class="search-flydown--product search-flydown--product" href="#">
  1379.              
  1380.  
  1381.              <div class="search-flydown--product-text">
  1382.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1383.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1384.              </div>
  1385.            </a>
  1386.          
  1387.            <a class="search-flydown--product search-flydown--product" href="#">
  1388.              
  1389.  
  1390.              <div class="search-flydown--product-text">
  1391.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1392.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1393.              </div>
  1394.            </a>
  1395.          
  1396.            <a class="search-flydown--product search-flydown--product" href="#">
  1397.              
  1398.  
  1399.              <div class="search-flydown--product-text">
  1400.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1401.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1402.              </div>
  1403.            </a>
  1404.          
  1405.        </div>
  1406.      </div>
  1407.  
  1408.      <div
  1409.        class="
  1410.          search-flydown--results
  1411.          search-flydown--results--no-images
  1412.        "
  1413.        data-live-search-results
  1414.      ></div>
  1415.  
  1416.      
  1417.    </div>
  1418.  </form>
  1419. </div>
  1420.  
  1421.  
  1422.      
  1423.    </div>
  1424.  
  1425.    <div class="site-header-right">
  1426.      <ul class="site-header-actions" data-header-actions>
  1427.  
  1428.    
  1429.      <li class="site-header-actions__account-link">
  1430.        <a
  1431.          class="site-header_account-link-anchor"
  1432.          href="/account/login"
  1433.        >
  1434.          <span class="site-header__account-icon">
  1435.            
  1436.  
  1437.  
  1438.    <svg class="icon-account "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 26" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M11.3336 14.4447C14.7538 14.4447 17.5264 11.6417 17.5264 8.18392C17.5264 4.72616 14.7538 1.9231 11.3336 1.9231C7.91347 1.9231 5.14087 4.72616 5.14087 8.18392C5.14087 11.6417 7.91347 14.4447 11.3336 14.4447Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M20.9678 24.0769C19.5098 20.0278 15.7026 17.3329 11.4404 17.3329C7.17822 17.3329 3.37107 20.0278 1.91309 24.0769" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                                                
  1439.  
  1440.          </span>
  1441.          
  1442.          <span class="site-header_account-link-text">
  1443.            Login
  1444.          </span>
  1445.        </a>
  1446.      </li>
  1447.    
  1448.  
  1449. </ul>
  1450.  
  1451.  
  1452.      <div class="site-header-cart">
  1453.        <a class="site-header-cart--button" href="/cart">
  1454.          <span
  1455.            class="site-header-cart--count "
  1456.            data-header-cart-count="">
  1457.          </span>
  1458.          <span class="site-header-cart-icon site-header-cart-icon--svg">
  1459.            
  1460.              
  1461.  
  1462.  
  1463.            <svg width="25" height="24" viewBox="0 0 25 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">      <path fill-rule="evenodd" clip-rule="evenodd" d="M1 0C0.447715 0 0 0.447715 0 1C0 1.55228 0.447715 2 1 2H1.33877H1.33883C1.61048 2.00005 2.00378 2.23945 2.10939 2.81599L2.10937 2.816L2.11046 2.82171L5.01743 18.1859C5.12011 18.7286 5.64325 19.0852 6.18591 18.9826C6.21078 18.9779 6.23526 18.9723 6.25933 18.9658C6.28646 18.968 6.31389 18.9692 6.34159 18.9692H18.8179H18.8181C19.0302 18.9691 19.2141 18.9765 19.4075 18.9842L19.4077 18.9842C19.5113 18.9884 19.6175 18.9926 19.7323 18.9959C20.0255 19.0043 20.3767 19.0061 20.7177 18.9406C21.08 18.871 21.4685 18.7189 21.8028 18.3961C22.1291 18.081 22.3266 17.6772 22.4479 17.2384C22.4569 17.2058 22.4642 17.1729 22.4699 17.1396L23.944 8.46865C24.2528 7.20993 23.2684 5.99987 21.9896 6H21.9894H4.74727L4.07666 2.45562L4.07608 2.4525C3.83133 1.12381 2.76159 8.49962e-05 1.33889 0H1.33883H1ZM5.12568 8L6.8227 16.9692H18.8178H18.8179C19.0686 16.9691 19.3257 16.9793 19.5406 16.9877L19.5413 16.9877C19.633 16.9913 19.7171 16.9947 19.7896 16.9967C20.0684 17.0047 20.2307 16.9976 20.3403 16.9766C20.3841 16.9681 20.4059 16.96 20.4151 16.9556C20.4247 16.9443 20.4639 16.8918 20.5077 16.7487L21.9794 8.09186C21.9842 8.06359 21.9902 8.03555 21.9974 8.0078C21.9941 8.00358 21.9908 8.00108 21.989 8H5.12568ZM20.416 16.9552C20.4195 16.9534 20.4208 16.9524 20.4205 16.9523C20.4204 16.9523 20.4199 16.9525 20.4191 16.953L20.416 16.9552ZM10.8666 22.4326C10.8666 23.2982 10.195 24 9.36658 24C8.53815 24 7.86658 23.2982 7.86658 22.4326C7.86658 21.567 8.53815 20.8653 9.36658 20.8653C10.195 20.8653 10.8666 21.567 10.8666 22.4326ZM18.0048 24C18.8332 24 19.5048 23.2982 19.5048 22.4326C19.5048 21.567 18.8332 20.8653 18.0048 20.8653C17.1763 20.8653 16.5048 21.567 16.5048 22.4326C16.5048 23.2982 17.1763 24 18.0048 24Z" fill="currentColor"/>    </svg>                                                                                                        
  1464.  
  1465.            
  1466.          </span>
  1467.          <span class="visually-hidden">View cart</span>
  1468.        </a>
  1469.      </div>
  1470.    </div>
  1471.  </div>
  1472.  
  1473.  <div
  1474.    class="
  1475.      site-navigation-wrapper
  1476.      
  1477.        site-navigation--has-actions
  1478.      
  1479.      
  1480.        site-header--full-width
  1481.      
  1482.    "
  1483.    data-site-navigation
  1484.    id="site-header-nav"
  1485.  >
  1486.    <nav
  1487.      class="site-navigation"
  1488.      aria-label="Main"
  1489.    >
  1490.      
  1491.  
  1492.  
  1493.  
  1494.  
  1495. <ul
  1496.  class="navmenu navmenu-depth-1"
  1497.  data-navmenu
  1498.  aria-label="Main Menu 02"
  1499. >
  1500.  
  1501.    
  1502.    
  1503.  
  1504.    
  1505.    
  1506.    
  1507.    
  1508. <li
  1509.      class="navmenu-item              navmenu-basic__item                  navmenu-id-home"
  1510.      
  1511.      
  1512.      
  1513.    >
  1514.      
  1515.        <a
  1516.      
  1517.        class="
  1518.          navmenu-link
  1519.          navmenu-link-depth-1
  1520.          
  1521.          navmenu-link-active
  1522.        "
  1523.        
  1524.          href="/"
  1525.        
  1526.      >
  1527.        Home
  1528.        
  1529.      
  1530.        </a>
  1531.      
  1532.  
  1533.      
  1534.      </details>
  1535.    </li>
  1536.  
  1537.    
  1538.    
  1539.  
  1540.    
  1541.    
  1542.    
  1543.    
  1544. <li
  1545.      class="navmenu-item                    navmenu-item-parent                  navmenu-meganav__item-parent                    navmenu-id-shop"
  1546.      
  1547.        data-navmenu-meganav-trigger
  1548.        data-navmenu-meganav-type="multi-column-menu"
  1549.      
  1550.      data-navmenu-parent
  1551.      
  1552.    >
  1553.      
  1554.        <details data-navmenu-details>
  1555.        <summary
  1556.      
  1557.        class="
  1558.          navmenu-link
  1559.          navmenu-link-depth-1
  1560.          navmenu-link-parent
  1561.          
  1562.        "
  1563.        
  1564.          aria-haspopup="true"
  1565.          aria-expanded="false"
  1566.          data-href="/collections/all"
  1567.        
  1568.      >
  1569.        Shop
  1570.        
  1571.          <span
  1572.            class="navmenu-icon navmenu-icon-depth-1"
  1573.            data-navmenu-trigger
  1574.          >
  1575.            <svg
  1576.  aria-hidden="true"
  1577.  focusable="false"
  1578.  role="presentation"
  1579.  width="8"
  1580.  height="6"
  1581.  viewBox="0 0 8 6"
  1582.  fill="none"
  1583.  xmlns="http://www.w3.org/2000/svg"
  1584.  class="icon-chevron-down"
  1585. >
  1586. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1587. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1588. </svg>
  1589.  
  1590.          </span>
  1591.        
  1592.      
  1593.        </summary>
  1594.      
  1595.  
  1596.      
  1597.        
  1598.            
  1599.  
  1600.  
  1601.  
  1602.  
  1603.  
  1604.  
  1605.  
  1606. <div
  1607.  class="navmenu-submenu  navmenu-meganav  navmenu-meganav--desktop"
  1608.  data-navmenu-submenu
  1609.  data-meganav-menu
  1610.  data-meganav-id="3b13d0a4-b646-40a2-af69-91c68056aced"
  1611. >
  1612.  <div class="navmenu-meganav-wrapper navmenu-multi-column-items">
  1613.    <ul class="navmenu navmenu-depth-2 multi-column-count-5">
  1614.      
  1615.        
  1616.          <li class="navmenu-item">
  1617.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1618.              Laptop Components
  1619.            </a>
  1620.            <ul>
  1621.            
  1622.              <li class="navmenu-item">
  1623.                <a href="/collections/ac-adapters" class="navmenu-link">
  1624.                  AC Adapters
  1625.                </a>
  1626.              </li>
  1627.            
  1628.              <li class="navmenu-item">
  1629.                <a href="/collections/batteries" class="navmenu-link">
  1630.                  Batteries
  1631.                </a>
  1632.              </li>
  1633.            
  1634.              <li class="navmenu-item">
  1635.                <a href="/collections/cases-covers-bezels" class="navmenu-link">
  1636.                  Bezels Cases & Covers
  1637.                </a>
  1638.              </li>
  1639.            
  1640.              <li class="navmenu-item">
  1641.                <a href="/collections/boards" class="navmenu-link">
  1642.                  Boards
  1643.                </a>
  1644.              </li>
  1645.            
  1646.              <li class="navmenu-item">
  1647.                <a href="/collections/cables" class="navmenu-link">
  1648.                  Cables
  1649.                </a>
  1650.              </li>
  1651.            
  1652.              <li class="navmenu-item">
  1653.                <a href="/collections/dc-jack-cables" class="navmenu-link">
  1654.                  DC Jack Cables
  1655.                </a>
  1656.              </li>
  1657.            
  1658.              <li class="navmenu-item">
  1659.                <a href="/collections/fans" class="navmenu-link">
  1660.                  Fans
  1661.                </a>
  1662.              </li>
  1663.            
  1664.              <li class="navmenu-item">
  1665.                <a href="/collections/hard-drive-brackets" class="navmenu-link">
  1666.                  Hard Drive Brackets
  1667.                </a>
  1668.              </li>
  1669.            
  1670.              <li class="navmenu-item">
  1671.                <a href="/collections/laptop-hard-drive" class="navmenu-link">
  1672.                  Hard Drives
  1673.                </a>
  1674.              </li>
  1675.            
  1676.              <li class="navmenu-item">
  1677.                <a href="/collections/laptop-case-parts" class="navmenu-link">
  1678.                  - Laptop Case Parts
  1679.                </a>
  1680.              </li>
  1681.            
  1682.              <li class="navmenu-item">
  1683.                <a href="/collections/hinges" class="navmenu-link">
  1684.                  Hinges
  1685.                </a>
  1686.              </li>
  1687.            
  1688.              <li class="navmenu-item">
  1689.                <a href="/collections/laptop-case" class="navmenu-link">
  1690.                  Laptop Case
  1691.                </a>
  1692.              </li>
  1693.            
  1694.              <li class="navmenu-item">
  1695.                <a href="/collections/laptop-cover" class="navmenu-link">
  1696.                  Laptop Cover
  1697.                </a>
  1698.              </li>
  1699.            
  1700.              <li class="navmenu-item">
  1701.                <a href="/collections/thermal-printer" class="navmenu-link">
  1702.                  Thermal Printer
  1703.                </a>
  1704.              </li>
  1705.            
  1706.            </ul>
  1707.          </li>
  1708.        
  1709.      
  1710.        
  1711.          <li class="navmenu-item">
  1712.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1713.              .....
  1714.            </a>
  1715.            <ul>
  1716.            
  1717.              <li class="navmenu-item">
  1718.                <a href="/collections/keyboards-1" class="navmenu-link">
  1719.                  Keyboards
  1720.                </a>
  1721.              </li>
  1722.            
  1723.              <li class="navmenu-item">
  1724.                <a href="/collections/acer-keyboard" class="navmenu-link">
  1725.                  - Acer keyboard
  1726.                </a>
  1727.              </li>
  1728.            
  1729.              <li class="navmenu-item">
  1730.                <a href="/collections/asus-keyboard" class="navmenu-link">
  1731.                  - Asus keyboards
  1732.                </a>
  1733.              </li>
  1734.            
  1735.              <li class="navmenu-item">
  1736.                <a href="/collections/dell-keyboard" class="navmenu-link">
  1737.                  - Dell keyboard
  1738.                </a>
  1739.              </li>
  1740.            
  1741.              <li class="navmenu-item">
  1742.                <a href="/collections/lenovo-keyboard" class="navmenu-link">
  1743.                  - Lenovo keyboard
  1744.                </a>
  1745.              </li>
  1746.            
  1747.              <li class="navmenu-item">
  1748.                <a href="/collections/hp-keyboard" class="navmenu-link">
  1749.                  - Hp Keyboard
  1750.                </a>
  1751.              </li>
  1752.            
  1753.              <li class="navmenu-item">
  1754.                <a href="/collections/backlit-keyboard" class="navmenu-link">
  1755.                  - Backlit Keyboards
  1756.                </a>
  1757.              </li>
  1758.            
  1759.              <li class="navmenu-item">
  1760.                <a href="/collections/memory" class="navmenu-link">
  1761.                  Memory
  1762.                </a>
  1763.              </li>
  1764.            
  1765.              <li class="navmenu-item">
  1766.                <a href="/collections/motherboards" class="navmenu-link">
  1767.                  Motherboards
  1768.                </a>
  1769.              </li>
  1770.            
  1771.              <li class="navmenu-item">
  1772.                <a href="/collections/optical-drives" class="navmenu-link">
  1773.                  Optical Drives
  1774.                </a>
  1775.              </li>
  1776.            
  1777.              <li class="navmenu-item">
  1778.                <a href="/collections/power-supplies" class="navmenu-link">
  1779.                  Power Supplies
  1780.                </a>
  1781.              </li>
  1782.            
  1783.              <li class="navmenu-item">
  1784.                <a href="/collections/screens" class="navmenu-link">
  1785.                  Screens
  1786.                </a>
  1787.              </li>
  1788.            
  1789.              <li class="navmenu-item">
  1790.                <a href="/collections/touch-screen-laptop" class="navmenu-link">
  1791.                  - Touch Screen Laptop
  1792.                </a>
  1793.              </li>
  1794.            
  1795.              <li class="navmenu-item">
  1796.                <a href="/collections/screens-touch-digitizers" class="navmenu-link">
  1797.                  Screens - Touch Digitizers
  1798.                </a>
  1799.              </li>
  1800.            
  1801.              <li class="navmenu-item">
  1802.                <a href="/collections/speakers" class="navmenu-link">
  1803.                  Speakers
  1804.                </a>
  1805.              </li>
  1806.            
  1807.              <li class="navmenu-item">
  1808.                <a href="/collections/touchpads" class="navmenu-link">
  1809.                  Touchpads
  1810.                </a>
  1811.              </li>
  1812.            
  1813.            </ul>
  1814.          </li>
  1815.        
  1816.      
  1817.        
  1818.          <li class="navmenu-item">
  1819.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1820.              Other Components
  1821.            </a>
  1822.            <ul>
  1823.            
  1824.              <li class="navmenu-item">
  1825.                <a href="/collections/accessories" class="navmenu-link">
  1826.                  Accessories
  1827.                </a>
  1828.              </li>
  1829.            
  1830.              <li class="navmenu-item">
  1831.                <a href="/collections/phone-parts" class="navmenu-link">
  1832.                  Phone Parts
  1833.                </a>
  1834.              </li>
  1835.            
  1836.              <li class="navmenu-item">
  1837.                <a href="/collections/printer-parts" class="navmenu-link">
  1838.                  Printer Parts
  1839.                </a>
  1840.              </li>
  1841.            
  1842.              <li class="navmenu-item">
  1843.                <a href="/collections/server-parts" class="navmenu-link">
  1844.                  Server Parts
  1845.                </a>
  1846.              </li>
  1847.            
  1848.              <li class="navmenu-item">
  1849.                <a href="/collections/tablet-parts" class="navmenu-link">
  1850.                  Tablet Parts
  1851.                </a>
  1852.              </li>
  1853.            
  1854.            </ul>
  1855.          </li>
  1856.        
  1857.      
  1858.    </ul>
  1859.  </div>
  1860. </div>
  1861.  
  1862.          
  1863.      
  1864.      </details>
  1865.    </li>
  1866.  
  1867.    
  1868.    
  1869.  
  1870.    
  1871.    
  1872.    
  1873.    
  1874. <li
  1875.      class="navmenu-item              navmenu-basic__item                  navmenu-id-about-us"
  1876.      
  1877.      
  1878.      
  1879.    >
  1880.      
  1881.        <a
  1882.      
  1883.        class="
  1884.          navmenu-link
  1885.          navmenu-link-depth-1
  1886.          
  1887.          
  1888.        "
  1889.        
  1890.          href="/pages/about-us"
  1891.        
  1892.      >
  1893.        About Us
  1894.        
  1895.      
  1896.        </a>
  1897.      
  1898.  
  1899.      
  1900.      </details>
  1901.    </li>
  1902.  
  1903.    
  1904.    
  1905.  
  1906.    
  1907.    
  1908.    
  1909.    
  1910. <li
  1911.      class="navmenu-item              navmenu-basic__item                  navmenu-id-repair-centers"
  1912.      
  1913.      
  1914.      
  1915.    >
  1916.      
  1917.        <a
  1918.      
  1919.        class="
  1920.          navmenu-link
  1921.          navmenu-link-depth-1
  1922.          
  1923.          
  1924.        "
  1925.        
  1926.          href="/pages/store-locator"
  1927.        
  1928.      >
  1929.        Repair Centers
  1930.        
  1931.      
  1932.        </a>
  1933.      
  1934.  
  1935.      
  1936.      </details>
  1937.    </li>
  1938.  
  1939.    
  1940.    
  1941.  
  1942.    
  1943.    
  1944.    
  1945.    
  1946. <li
  1947.      class="navmenu-item              navmenu-basic__item                  navmenu-id-parts-request"
  1948.      
  1949.      
  1950.      
  1951.    >
  1952.      
  1953.        <a
  1954.      
  1955.        class="
  1956.          navmenu-link
  1957.          navmenu-link-depth-1
  1958.          
  1959.          
  1960.        "
  1961.        
  1962.          href="/pages/part-request"
  1963.        
  1964.      >
  1965.        Parts Request
  1966.        
  1967.      
  1968.        </a>
  1969.      
  1970.  
  1971.      
  1972.      </details>
  1973.    </li>
  1974.  
  1975.    
  1976.    
  1977.  
  1978.    
  1979.    
  1980.    
  1981.    
  1982. <li
  1983.      class="navmenu-item              navmenu-basic__item                  navmenu-id-shipping"
  1984.      
  1985.      
  1986.      
  1987.    >
  1988.      
  1989.        <a
  1990.      
  1991.        class="
  1992.          navmenu-link
  1993.          navmenu-link-depth-1
  1994.          
  1995.          
  1996.        "
  1997.        
  1998.          href="/pages/shipping"
  1999.        
  2000.      >
  2001.        Shipping
  2002.        
  2003.      
  2004.        </a>
  2005.      
  2006.  
  2007.      
  2008.      </details>
  2009.    </li>
  2010.  
  2011.    
  2012.    
  2013.  
  2014.    
  2015.    
  2016.    
  2017.    
  2018. <li
  2019.      class="navmenu-item              navmenu-basic__item                  navmenu-id-francais"
  2020.      
  2021.      
  2022.      
  2023.    >
  2024.      
  2025.        <a
  2026.      
  2027.        class="
  2028.          navmenu-link
  2029.          navmenu-link-depth-1
  2030.          
  2031.          
  2032.        "
  2033.        
  2034.          href="/pages/francais"
  2035.        
  2036.      >
  2037.        Français
  2038.        
  2039.      
  2040.        </a>
  2041.      
  2042.  
  2043.      
  2044.      </details>
  2045.    </li>
  2046.  
  2047. </ul>
  2048.  
  2049.  
  2050.      
  2051.    </nav>
  2052.  </div>
  2053.  
  2054.  <div class="site-mobile-nav" id="site-mobile-nav" data-mobile-nav tabindex="0">
  2055.  <div class="mobile-nav-panel" data-mobile-nav-panel>
  2056.  
  2057.    <ul class="site-header-actions" data-header-actions>
  2058.  
  2059.    
  2060.      <li class="site-header-actions__account-link">
  2061.        <a
  2062.          class="site-header_account-link-anchor"
  2063.          href="/account/login"
  2064.        >
  2065.          <span class="site-header__account-icon">
  2066.            
  2067.  
  2068.  
  2069.    <svg class="icon-account "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 26" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M11.3336 14.4447C14.7538 14.4447 17.5264 11.6417 17.5264 8.18392C17.5264 4.72616 14.7538 1.9231 11.3336 1.9231C7.91347 1.9231 5.14087 4.72616 5.14087 8.18392C5.14087 11.6417 7.91347 14.4447 11.3336 14.4447Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M20.9678 24.0769C19.5098 20.0278 15.7026 17.3329 11.4404 17.3329C7.17822 17.3329 3.37107 20.0278 1.91309 24.0769" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                                                
  2070.  
  2071.          </span>
  2072.          
  2073.          <span class="site-header_account-link-text">
  2074.            Login
  2075.          </span>
  2076.        </a>
  2077.      </li>
  2078.    
  2079.  
  2080. </ul>
  2081.  
  2082.  
  2083.    <a
  2084.      class="mobile-nav-close"
  2085.      href="#site-header-nav"
  2086.      data-mobile-nav-close>
  2087.      <svg
  2088.  aria-hidden="true"
  2089.  focusable="false"
  2090.  role="presentation"
  2091.  xmlns="http://www.w3.org/2000/svg"
  2092.  width="13"
  2093.  height="13"
  2094.  viewBox="0 0 13 13"
  2095. >
  2096.  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
  2097. </svg>
  2098.      <span class="visually-hidden">Close</span>
  2099.    </a>
  2100.  
  2101.    <div class="mobile-nav-content" data-mobile-nav-content>
  2102.      
  2103.  
  2104.  
  2105.  
  2106.  
  2107. <ul
  2108.  class="navmenu navmenu-depth-1"
  2109.  data-navmenu
  2110.  aria-label="Main Menu 02"
  2111. >
  2112.  
  2113.    
  2114.    
  2115.  
  2116.    
  2117.    
  2118.    
  2119. <li
  2120.      class="navmenu-item            navmenu-id-home"
  2121.      
  2122.    >
  2123.      <a
  2124.        class="navmenu-link  navmenu-link-active"
  2125.        href="/"
  2126.        
  2127.      >
  2128.        Home
  2129.      </a>
  2130.  
  2131.      
  2132.  
  2133.      
  2134.      
  2135.  
  2136.      
  2137.  
  2138.      
  2139.    </li>
  2140.  
  2141.    
  2142.    
  2143.  
  2144.    
  2145.    
  2146.    
  2147. <li
  2148.      class="navmenu-item      navmenu-item-parent      navmenu-id-shop"
  2149.      data-navmenu-parent
  2150.    >
  2151.      <a
  2152.        class="navmenu-link navmenu-link-parent "
  2153.        href="/collections/all"
  2154.        
  2155.          aria-haspopup="true"
  2156.          aria-expanded="false"
  2157.        
  2158.      >
  2159.        Shop
  2160.      </a>
  2161.  
  2162.      
  2163.        
  2164.  
  2165.  
  2166.  
  2167. <button
  2168.  class="navmenu-button"
  2169.  data-navmenu-trigger
  2170.  aria-expanded="false"
  2171. >
  2172.  <div class="navmenu-button-wrapper" tabindex="-1">
  2173.    <span class="navmenu-icon ">
  2174.      <svg
  2175.  aria-hidden="true"
  2176.  focusable="false"
  2177.  role="presentation"
  2178.  width="8"
  2179.  height="6"
  2180.  viewBox="0 0 8 6"
  2181.  fill="none"
  2182.  xmlns="http://www.w3.org/2000/svg"
  2183.  class="icon-chevron-down"
  2184. >
  2185. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2186. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2187. </svg>
  2188.  
  2189.    </span>
  2190.    <span class="visually-hidden">Shop</span>
  2191.  </div>
  2192. </button>
  2193.  
  2194.      
  2195.  
  2196.      
  2197.      
  2198.  
  2199.      
  2200.        
  2201.  
  2202.  
  2203.  
  2204.  
  2205.  
  2206.  
  2207.  
  2208.  
  2209.  
  2210.  
  2211.  
  2212.  
  2213. <ul
  2214.  class="
  2215.    navmenu
  2216.    navmenu-depth-2
  2217.    navmenu-submenu
  2218.    
  2219.  "
  2220.  data-navmenu
  2221.  data-accordion-content
  2222.  data-navmenu-submenu
  2223.  aria-label="Main Menu 02"
  2224. >
  2225.  
  2226.    
  2227.  
  2228.    
  2229.    
  2230.  
  2231.    
  2232.    
  2233.  
  2234.    
  2235.  
  2236.    
  2237. <li
  2238.        class="navmenu-item        navmenu-item-parent        navmenu-id-laptop-components"
  2239.        data-navmenu-parent
  2240.      >
  2241.        
  2242.          <a
  2243.            href="/collections/all"
  2244.        
  2245.          class="navmenu-link navmenu-link-parent "
  2246.          
  2247.            aria-haspopup="true"
  2248.            aria-expanded="false"
  2249.          
  2250.        >
  2251.          
  2252.          Laptop Components
  2253.  
  2254.        
  2255.          </a>
  2256.        
  2257.  
  2258.        
  2259.          
  2260.  
  2261.  
  2262.  
  2263. <button
  2264.  class="navmenu-button"
  2265.  data-navmenu-trigger
  2266.  aria-expanded="false"
  2267. >
  2268.  <div class="navmenu-button-wrapper" tabindex="-1">
  2269.    <span class="navmenu-icon navmenu-icon-depth-2">
  2270.      <svg
  2271.  aria-hidden="true"
  2272.  focusable="false"
  2273.  role="presentation"
  2274.  width="8"
  2275.  height="6"
  2276.  viewBox="0 0 8 6"
  2277.  fill="none"
  2278.  xmlns="http://www.w3.org/2000/svg"
  2279.  class="icon-chevron-down"
  2280. >
  2281. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2282. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2283. </svg>
  2284.  
  2285.    </span>
  2286.    <span class="visually-hidden">Laptop Components</span>
  2287.  </div>
  2288. </button>
  2289.  
  2290.        
  2291.  
  2292.        
  2293.          
  2294.  
  2295.  
  2296.  
  2297.  
  2298.  
  2299.  
  2300.  
  2301.  
  2302.  
  2303.  
  2304.  
  2305.  
  2306. <ul
  2307.  class="
  2308.    navmenu
  2309.    navmenu-depth-3
  2310.    navmenu-submenu
  2311.    
  2312.  "
  2313.  data-navmenu
  2314.  data-accordion-content
  2315.  data-navmenu-submenu
  2316.  aria-label="Main Menu 02"
  2317. >
  2318.  
  2319.    
  2320.  
  2321.    
  2322.    
  2323.  
  2324.    
  2325.    
  2326.  
  2327.    
  2328.  
  2329.    
  2330.      <li
  2331.        class="navmenu-item navmenu-id-ac-adapters"
  2332.      >
  2333.        <a
  2334.        class="
  2335.          navmenu-link
  2336.          navmenu-link-depth-3
  2337.          
  2338.        "
  2339.        href="/collections/ac-adapters"
  2340.        >
  2341.          
  2342.          AC Adapters
  2343. </a>
  2344.      </li>
  2345.    
  2346.  
  2347.    
  2348.  
  2349.    
  2350.    
  2351.  
  2352.    
  2353.    
  2354.  
  2355.    
  2356.  
  2357.    
  2358.      <li
  2359.        class="navmenu-item navmenu-id-batteries"
  2360.      >
  2361.        <a
  2362.        class="
  2363.          navmenu-link
  2364.          navmenu-link-depth-3
  2365.          
  2366.        "
  2367.        href="/collections/batteries"
  2368.        >
  2369.          
  2370.          Batteries
  2371. </a>
  2372.      </li>
  2373.    
  2374.  
  2375.    
  2376.  
  2377.    
  2378.    
  2379.  
  2380.    
  2381.    
  2382.  
  2383.    
  2384.  
  2385.    
  2386.      <li
  2387.        class="navmenu-item navmenu-id-bezels-cases-covers"
  2388.      >
  2389.        <a
  2390.        class="
  2391.          navmenu-link
  2392.          navmenu-link-depth-3
  2393.          
  2394.        "
  2395.        href="/collections/cases-covers-bezels"
  2396.        >
  2397.          
  2398.          Bezels Cases & Covers
  2399. </a>
  2400.      </li>
  2401.    
  2402.  
  2403.    
  2404.  
  2405.    
  2406.    
  2407.  
  2408.    
  2409.    
  2410.  
  2411.    
  2412.  
  2413.    
  2414.      <li
  2415.        class="navmenu-item navmenu-id-boards"
  2416.      >
  2417.        <a
  2418.        class="
  2419.          navmenu-link
  2420.          navmenu-link-depth-3
  2421.          
  2422.        "
  2423.        href="/collections/boards"
  2424.        >
  2425.          
  2426.          Boards
  2427. </a>
  2428.      </li>
  2429.    
  2430.  
  2431.    
  2432.  
  2433.    
  2434.    
  2435.  
  2436.    
  2437.    
  2438.  
  2439.    
  2440.  
  2441.    
  2442.      <li
  2443.        class="navmenu-item navmenu-id-cables"
  2444.      >
  2445.        <a
  2446.        class="
  2447.          navmenu-link
  2448.          navmenu-link-depth-3
  2449.          
  2450.        "
  2451.        href="/collections/cables"
  2452.        >
  2453.          
  2454.          Cables
  2455. </a>
  2456.      </li>
  2457.    
  2458.  
  2459.    
  2460.  
  2461.    
  2462.    
  2463.  
  2464.    
  2465.    
  2466.  
  2467.    
  2468.  
  2469.    
  2470.      <li
  2471.        class="navmenu-item navmenu-id-dc-jack-cables"
  2472.      >
  2473.        <a
  2474.        class="
  2475.          navmenu-link
  2476.          navmenu-link-depth-3
  2477.          
  2478.        "
  2479.        href="/collections/dc-jack-cables"
  2480.        >
  2481.          
  2482.          DC Jack Cables
  2483. </a>
  2484.      </li>
  2485.    
  2486.  
  2487.    
  2488.  
  2489.    
  2490.    
  2491.  
  2492.    
  2493.    
  2494.  
  2495.    
  2496.  
  2497.    
  2498.      <li
  2499.        class="navmenu-item navmenu-id-fans"
  2500.      >
  2501.        <a
  2502.        class="
  2503.          navmenu-link
  2504.          navmenu-link-depth-3
  2505.          
  2506.        "
  2507.        href="/collections/fans"
  2508.        >
  2509.          
  2510.          Fans
  2511. </a>
  2512.      </li>
  2513.    
  2514.  
  2515.    
  2516.  
  2517.    
  2518.    
  2519.  
  2520.    
  2521.    
  2522.  
  2523.    
  2524.  
  2525.    
  2526.      <li
  2527.        class="navmenu-item navmenu-id-hard-drive-brackets"
  2528.      >
  2529.        <a
  2530.        class="
  2531.          navmenu-link
  2532.          navmenu-link-depth-3
  2533.          
  2534.        "
  2535.        href="/collections/hard-drive-brackets"
  2536.        >
  2537.          
  2538.          Hard Drive Brackets
  2539. </a>
  2540.      </li>
  2541.    
  2542.  
  2543.    
  2544.  
  2545.    
  2546.    
  2547.  
  2548.    
  2549.    
  2550.  
  2551.    
  2552.  
  2553.    
  2554.      <li
  2555.        class="navmenu-item navmenu-id-hard-drives"
  2556.      >
  2557.        <a
  2558.        class="
  2559.          navmenu-link
  2560.          navmenu-link-depth-3
  2561.          
  2562.        "
  2563.        href="/collections/laptop-hard-drive"
  2564.        >
  2565.          
  2566.          Hard Drives
  2567. </a>
  2568.      </li>
  2569.    
  2570.  
  2571.    
  2572.  
  2573.    
  2574.    
  2575.  
  2576.    
  2577.    
  2578.  
  2579.    
  2580.  
  2581.    
  2582.      <li
  2583.        class="navmenu-item navmenu-id-laptop-case-parts"
  2584.      >
  2585.        <a
  2586.        class="
  2587.          navmenu-link
  2588.          navmenu-link-depth-3
  2589.          
  2590.        "
  2591.        href="/collections/laptop-case-parts"
  2592.        >
  2593.          
  2594.          - Laptop Case Parts
  2595. </a>
  2596.      </li>
  2597.    
  2598.  
  2599.    
  2600.  
  2601.    
  2602.    
  2603.  
  2604.    
  2605.    
  2606.  
  2607.    
  2608.  
  2609.    
  2610.      <li
  2611.        class="navmenu-item navmenu-id-hinges"
  2612.      >
  2613.        <a
  2614.        class="
  2615.          navmenu-link
  2616.          navmenu-link-depth-3
  2617.          
  2618.        "
  2619.        href="/collections/hinges"
  2620.        >
  2621.          
  2622.          Hinges
  2623. </a>
  2624.      </li>
  2625.    
  2626.  
  2627.    
  2628.  
  2629.    
  2630.    
  2631.  
  2632.    
  2633.    
  2634.  
  2635.    
  2636.  
  2637.    
  2638.      <li
  2639.        class="navmenu-item navmenu-id-laptop-case"
  2640.      >
  2641.        <a
  2642.        class="
  2643.          navmenu-link
  2644.          navmenu-link-depth-3
  2645.          
  2646.        "
  2647.        href="/collections/laptop-case"
  2648.        >
  2649.          
  2650.          Laptop Case
  2651. </a>
  2652.      </li>
  2653.    
  2654.  
  2655.    
  2656.  
  2657.    
  2658.    
  2659.  
  2660.    
  2661.    
  2662.  
  2663.    
  2664.  
  2665.    
  2666.      <li
  2667.        class="navmenu-item navmenu-id-laptop-cover"
  2668.      >
  2669.        <a
  2670.        class="
  2671.          navmenu-link
  2672.          navmenu-link-depth-3
  2673.          
  2674.        "
  2675.        href="/collections/laptop-cover"
  2676.        >
  2677.          
  2678.          Laptop Cover
  2679. </a>
  2680.      </li>
  2681.    
  2682.  
  2683.    
  2684.  
  2685.    
  2686.    
  2687.  
  2688.    
  2689.    
  2690.  
  2691.    
  2692.  
  2693.    
  2694.      <li
  2695.        class="navmenu-item navmenu-id-thermal-printer"
  2696.      >
  2697.        <a
  2698.        class="
  2699.          navmenu-link
  2700.          navmenu-link-depth-3
  2701.          
  2702.        "
  2703.        href="/collections/thermal-printer"
  2704.        >
  2705.          
  2706.          Thermal Printer
  2707. </a>
  2708.      </li>
  2709.    
  2710.  
  2711. </ul>
  2712.  
  2713.        
  2714.        
  2715.      </li>
  2716.    
  2717.  
  2718.    
  2719.  
  2720.    
  2721.    
  2722.  
  2723.    
  2724.    
  2725.  
  2726.    
  2727.  
  2728.    
  2729. <li
  2730.        class="navmenu-item        navmenu-item-parent        navmenu-id-"
  2731.        data-navmenu-parent
  2732.      >
  2733.        
  2734.          <a
  2735.            href="/collections/all"
  2736.        
  2737.          class="navmenu-link navmenu-link-parent "
  2738.          
  2739.            aria-haspopup="true"
  2740.            aria-expanded="false"
  2741.          
  2742.        >
  2743.          
  2744.          .....
  2745.  
  2746.        
  2747.          </a>
  2748.        
  2749.  
  2750.        
  2751.          
  2752.  
  2753.  
  2754.  
  2755. <button
  2756.  class="navmenu-button"
  2757.  data-navmenu-trigger
  2758.  aria-expanded="false"
  2759. >
  2760.  <div class="navmenu-button-wrapper" tabindex="-1">
  2761.    <span class="navmenu-icon navmenu-icon-depth-2">
  2762.      <svg
  2763.  aria-hidden="true"
  2764.  focusable="false"
  2765.  role="presentation"
  2766.  width="8"
  2767.  height="6"
  2768.  viewBox="0 0 8 6"
  2769.  fill="none"
  2770.  xmlns="http://www.w3.org/2000/svg"
  2771.  class="icon-chevron-down"
  2772. >
  2773. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2774. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2775. </svg>
  2776.  
  2777.    </span>
  2778.    <span class="visually-hidden">.....</span>
  2779.  </div>
  2780. </button>
  2781.  
  2782.        
  2783.  
  2784.        
  2785.          
  2786.  
  2787.  
  2788.  
  2789.  
  2790.  
  2791.  
  2792.  
  2793.  
  2794.  
  2795.  
  2796.  
  2797.  
  2798. <ul
  2799.  class="
  2800.    navmenu
  2801.    navmenu-depth-3
  2802.    navmenu-submenu
  2803.    
  2804.  "
  2805.  data-navmenu
  2806.  data-accordion-content
  2807.  data-navmenu-submenu
  2808.  aria-label="Main Menu 02"
  2809. >
  2810.  
  2811.    
  2812.  
  2813.    
  2814.    
  2815.  
  2816.    
  2817.    
  2818.  
  2819.    
  2820.  
  2821.    
  2822.      <li
  2823.        class="navmenu-item navmenu-id-keyboards"
  2824.      >
  2825.        <a
  2826.        class="
  2827.          navmenu-link
  2828.          navmenu-link-depth-3
  2829.          
  2830.        "
  2831.        href="/collections/keyboards-1"
  2832.        >
  2833.          
  2834.          Keyboards
  2835. </a>
  2836.      </li>
  2837.    
  2838.  
  2839.    
  2840.  
  2841.    
  2842.    
  2843.  
  2844.    
  2845.    
  2846.  
  2847.    
  2848.  
  2849.    
  2850.      <li
  2851.        class="navmenu-item navmenu-id-acer-keyboard"
  2852.      >
  2853.        <a
  2854.        class="
  2855.          navmenu-link
  2856.          navmenu-link-depth-3
  2857.          
  2858.        "
  2859.        href="/collections/acer-keyboard"
  2860.        >
  2861.          
  2862.          - Acer keyboard
  2863. </a>
  2864.      </li>
  2865.    
  2866.  
  2867.    
  2868.  
  2869.    
  2870.    
  2871.  
  2872.    
  2873.    
  2874.  
  2875.    
  2876.  
  2877.    
  2878.      <li
  2879.        class="navmenu-item navmenu-id-asus-keyboards"
  2880.      >
  2881.        <a
  2882.        class="
  2883.          navmenu-link
  2884.          navmenu-link-depth-3
  2885.          
  2886.        "
  2887.        href="/collections/asus-keyboard"
  2888.        >
  2889.          
  2890.          - Asus keyboards
  2891. </a>
  2892.      </li>
  2893.    
  2894.  
  2895.    
  2896.  
  2897.    
  2898.    
  2899.  
  2900.    
  2901.    
  2902.  
  2903.    
  2904.  
  2905.    
  2906.      <li
  2907.        class="navmenu-item navmenu-id-dell-keyboard"
  2908.      >
  2909.        <a
  2910.        class="
  2911.          navmenu-link
  2912.          navmenu-link-depth-3
  2913.          
  2914.        "
  2915.        href="/collections/dell-keyboard"
  2916.        >
  2917.          
  2918.          - Dell keyboard
  2919. </a>
  2920.      </li>
  2921.    
  2922.  
  2923.    
  2924.  
  2925.    
  2926.    
  2927.  
  2928.    
  2929.    
  2930.  
  2931.    
  2932.  
  2933.    
  2934.      <li
  2935.        class="navmenu-item navmenu-id-lenovo-keyboard"
  2936.      >
  2937.        <a
  2938.        class="
  2939.          navmenu-link
  2940.          navmenu-link-depth-3
  2941.          
  2942.        "
  2943.        href="/collections/lenovo-keyboard"
  2944.        >
  2945.          
  2946.          - Lenovo keyboard
  2947. </a>
  2948.      </li>
  2949.    
  2950.  
  2951.    
  2952.  
  2953.    
  2954.    
  2955.  
  2956.    
  2957.    
  2958.  
  2959.    
  2960.  
  2961.    
  2962.      <li
  2963.        class="navmenu-item navmenu-id-hp-keyboard"
  2964.      >
  2965.        <a
  2966.        class="
  2967.          navmenu-link
  2968.          navmenu-link-depth-3
  2969.          
  2970.        "
  2971.        href="/collections/hp-keyboard"
  2972.        >
  2973.          
  2974.          - Hp Keyboard
  2975. </a>
  2976.      </li>
  2977.    
  2978.  
  2979.    
  2980.  
  2981.    
  2982.    
  2983.  
  2984.    
  2985.    
  2986.  
  2987.    
  2988.  
  2989.    
  2990.      <li
  2991.        class="navmenu-item navmenu-id-backlit-keyboards"
  2992.      >
  2993.        <a
  2994.        class="
  2995.          navmenu-link
  2996.          navmenu-link-depth-3
  2997.          
  2998.        "
  2999.        href="/collections/backlit-keyboard"
  3000.        >
  3001.          
  3002.          - Backlit Keyboards
  3003. </a>
  3004.      </li>
  3005.    
  3006.  
  3007.    
  3008.  
  3009.    
  3010.    
  3011.  
  3012.    
  3013.    
  3014.  
  3015.    
  3016.  
  3017.    
  3018.      <li
  3019.        class="navmenu-item navmenu-id-memory"
  3020.      >
  3021.        <a
  3022.        class="
  3023.          navmenu-link
  3024.          navmenu-link-depth-3
  3025.          
  3026.        "
  3027.        href="/collections/memory"
  3028.        >
  3029.          
  3030.          Memory
  3031. </a>
  3032.      </li>
  3033.    
  3034.  
  3035.    
  3036.  
  3037.    
  3038.    
  3039.  
  3040.    
  3041.    
  3042.  
  3043.    
  3044.  
  3045.    
  3046.      <li
  3047.        class="navmenu-item navmenu-id-motherboards"
  3048.      >
  3049.        <a
  3050.        class="
  3051.          navmenu-link
  3052.          navmenu-link-depth-3
  3053.          
  3054.        "
  3055.        href="/collections/motherboards"
  3056.        >
  3057.          
  3058.          Motherboards
  3059. </a>
  3060.      </li>
  3061.    
  3062.  
  3063.    
  3064.  
  3065.    
  3066.    
  3067.  
  3068.    
  3069.    
  3070.  
  3071.    
  3072.  
  3073.    
  3074.      <li
  3075.        class="navmenu-item navmenu-id-optical-drives"
  3076.      >
  3077.        <a
  3078.        class="
  3079.          navmenu-link
  3080.          navmenu-link-depth-3
  3081.          
  3082.        "
  3083.        href="/collections/optical-drives"
  3084.        >
  3085.          
  3086.          Optical Drives
  3087. </a>
  3088.      </li>
  3089.    
  3090.  
  3091.    
  3092.  
  3093.    
  3094.    
  3095.  
  3096.    
  3097.    
  3098.  
  3099.    
  3100.  
  3101.    
  3102.      <li
  3103.        class="navmenu-item navmenu-id-power-supplies"
  3104.      >
  3105.        <a
  3106.        class="
  3107.          navmenu-link
  3108.          navmenu-link-depth-3
  3109.          
  3110.        "
  3111.        href="/collections/power-supplies"
  3112.        >
  3113.          
  3114.          Power Supplies
  3115. </a>
  3116.      </li>
  3117.    
  3118.  
  3119.    
  3120.  
  3121.    
  3122.    
  3123.  
  3124.    
  3125.    
  3126.  
  3127.    
  3128.  
  3129.    
  3130.      <li
  3131.        class="navmenu-item navmenu-id-screens"
  3132.      >
  3133.        <a
  3134.        class="
  3135.          navmenu-link
  3136.          navmenu-link-depth-3
  3137.          
  3138.        "
  3139.        href="/collections/screens"
  3140.        >
  3141.          
  3142.          Screens
  3143. </a>
  3144.      </li>
  3145.    
  3146.  
  3147.    
  3148.  
  3149.    
  3150.    
  3151.  
  3152.    
  3153.    
  3154.  
  3155.    
  3156.  
  3157.    
  3158.      <li
  3159.        class="navmenu-item navmenu-id-touch-screen-laptop"
  3160.      >
  3161.        <a
  3162.        class="
  3163.          navmenu-link
  3164.          navmenu-link-depth-3
  3165.          
  3166.        "
  3167.        href="/collections/touch-screen-laptop"
  3168.        >
  3169.          
  3170.          - Touch Screen Laptop
  3171. </a>
  3172.      </li>
  3173.    
  3174.  
  3175.    
  3176.  
  3177.    
  3178.    
  3179.  
  3180.    
  3181.    
  3182.  
  3183.    
  3184.  
  3185.    
  3186.      <li
  3187.        class="navmenu-item navmenu-id-screens-touch-digitizers"
  3188.      >
  3189.        <a
  3190.        class="
  3191.          navmenu-link
  3192.          navmenu-link-depth-3
  3193.          
  3194.        "
  3195.        href="/collections/screens-touch-digitizers"
  3196.        >
  3197.          
  3198.          Screens - Touch Digitizers
  3199. </a>
  3200.      </li>
  3201.    
  3202.  
  3203.    
  3204.  
  3205.    
  3206.    
  3207.  
  3208.    
  3209.    
  3210.  
  3211.    
  3212.  
  3213.    
  3214.      <li
  3215.        class="navmenu-item navmenu-id-speakers"
  3216.      >
  3217.        <a
  3218.        class="
  3219.          navmenu-link
  3220.          navmenu-link-depth-3
  3221.          
  3222.        "
  3223.        href="/collections/speakers"
  3224.        >
  3225.          
  3226.          Speakers
  3227. </a>
  3228.      </li>
  3229.    
  3230.  
  3231.    
  3232.  
  3233.    
  3234.    
  3235.  
  3236.    
  3237.    
  3238.  
  3239.    
  3240.  
  3241.    
  3242.      <li
  3243.        class="navmenu-item navmenu-id-touchpads"
  3244.      >
  3245.        <a
  3246.        class="
  3247.          navmenu-link
  3248.          navmenu-link-depth-3
  3249.          
  3250.        "
  3251.        href="/collections/touchpads"
  3252.        >
  3253.          
  3254.          Touchpads
  3255. </a>
  3256.      </li>
  3257.    
  3258.  
  3259. </ul>
  3260.  
  3261.        
  3262.        
  3263.      </li>
  3264.    
  3265.  
  3266.    
  3267.  
  3268.    
  3269.    
  3270.  
  3271.    
  3272.    
  3273.  
  3274.    
  3275.  
  3276.    
  3277. <li
  3278.        class="navmenu-item        navmenu-item-parent        navmenu-id-other-components"
  3279.        data-navmenu-parent
  3280.      >
  3281.        
  3282.          <a
  3283.            href="/collections/all"
  3284.        
  3285.          class="navmenu-link navmenu-link-parent "
  3286.          
  3287.            aria-haspopup="true"
  3288.            aria-expanded="false"
  3289.          
  3290.        >
  3291.          
  3292.          Other Components
  3293.  
  3294.        
  3295.          </a>
  3296.        
  3297.  
  3298.        
  3299.          
  3300.  
  3301.  
  3302.  
  3303. <button
  3304.  class="navmenu-button"
  3305.  data-navmenu-trigger
  3306.  aria-expanded="false"
  3307. >
  3308.  <div class="navmenu-button-wrapper" tabindex="-1">
  3309.    <span class="navmenu-icon navmenu-icon-depth-2">
  3310.      <svg
  3311.  aria-hidden="true"
  3312.  focusable="false"
  3313.  role="presentation"
  3314.  width="8"
  3315.  height="6"
  3316.  viewBox="0 0 8 6"
  3317.  fill="none"
  3318.  xmlns="http://www.w3.org/2000/svg"
  3319.  class="icon-chevron-down"
  3320. >
  3321. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3322. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3323. </svg>
  3324.  
  3325.    </span>
  3326.    <span class="visually-hidden">Other Components</span>
  3327.  </div>
  3328. </button>
  3329.  
  3330.        
  3331.  
  3332.        
  3333.          
  3334.  
  3335.  
  3336.  
  3337.  
  3338.  
  3339.  
  3340.  
  3341.  
  3342.  
  3343.  
  3344.  
  3345.  
  3346. <ul
  3347.  class="
  3348.    navmenu
  3349.    navmenu-depth-3
  3350.    navmenu-submenu
  3351.    
  3352.  "
  3353.  data-navmenu
  3354.  data-accordion-content
  3355.  data-navmenu-submenu
  3356.  aria-label="Main Menu 02"
  3357. >
  3358.  
  3359.    
  3360.  
  3361.    
  3362.    
  3363.  
  3364.    
  3365.    
  3366.  
  3367.    
  3368.  
  3369.    
  3370.      <li
  3371.        class="navmenu-item navmenu-id-accessories"
  3372.      >
  3373.        <a
  3374.        class="
  3375.          navmenu-link
  3376.          navmenu-link-depth-3
  3377.          
  3378.        "
  3379.        href="/collections/accessories"
  3380.        >
  3381.          
  3382.          Accessories
  3383. </a>
  3384.      </li>
  3385.    
  3386.  
  3387.    
  3388.  
  3389.    
  3390.    
  3391.  
  3392.    
  3393.    
  3394.  
  3395.    
  3396.  
  3397.    
  3398.      <li
  3399.        class="navmenu-item navmenu-id-phone-parts"
  3400.      >
  3401.        <a
  3402.        class="
  3403.          navmenu-link
  3404.          navmenu-link-depth-3
  3405.          
  3406.        "
  3407.        href="/collections/phone-parts"
  3408.        >
  3409.          
  3410.          Phone Parts
  3411. </a>
  3412.      </li>
  3413.    
  3414.  
  3415.    
  3416.  
  3417.    
  3418.    
  3419.  
  3420.    
  3421.    
  3422.  
  3423.    
  3424.  
  3425.    
  3426.      <li
  3427.        class="navmenu-item navmenu-id-printer-parts"
  3428.      >
  3429.        <a
  3430.        class="
  3431.          navmenu-link
  3432.          navmenu-link-depth-3
  3433.          
  3434.        "
  3435.        href="/collections/printer-parts"
  3436.        >
  3437.          
  3438.          Printer Parts
  3439. </a>
  3440.      </li>
  3441.    
  3442.  
  3443.    
  3444.  
  3445.    
  3446.    
  3447.  
  3448.    
  3449.    
  3450.  
  3451.    
  3452.  
  3453.    
  3454.      <li
  3455.        class="navmenu-item navmenu-id-server-parts"
  3456.      >
  3457.        <a
  3458.        class="
  3459.          navmenu-link
  3460.          navmenu-link-depth-3
  3461.          
  3462.        "
  3463.        href="/collections/server-parts"
  3464.        >
  3465.          
  3466.          Server Parts
  3467. </a>
  3468.      </li>
  3469.    
  3470.  
  3471.    
  3472.  
  3473.    
  3474.    
  3475.  
  3476.    
  3477.    
  3478.  
  3479.    
  3480.  
  3481.    
  3482.      <li
  3483.        class="navmenu-item navmenu-id-tablet-parts"
  3484.      >
  3485.        <a
  3486.        class="
  3487.          navmenu-link
  3488.          navmenu-link-depth-3
  3489.          
  3490.        "
  3491.        href="/collections/tablet-parts"
  3492.        >
  3493.          
  3494.          Tablet Parts
  3495. </a>
  3496.      </li>
  3497.    
  3498.  
  3499. </ul>
  3500.  
  3501.        
  3502.        
  3503.      </li>
  3504.    
  3505.  
  3506. </ul>
  3507.  
  3508.      
  3509.  
  3510.      
  3511.    </li>
  3512.  
  3513.    
  3514.    
  3515.  
  3516.    
  3517.    
  3518.    
  3519. <li
  3520.      class="navmenu-item            navmenu-id-about-us"
  3521.      
  3522.    >
  3523.      <a
  3524.        class="navmenu-link  "
  3525.        href="/pages/about-us"
  3526.        
  3527.      >
  3528.        About Us
  3529.      </a>
  3530.  
  3531.      
  3532.  
  3533.      
  3534.      
  3535.  
  3536.      
  3537.  
  3538.      
  3539.    </li>
  3540.  
  3541.    
  3542.    
  3543.  
  3544.    
  3545.    
  3546.    
  3547. <li
  3548.      class="navmenu-item            navmenu-id-repair-centers"
  3549.      
  3550.    >
  3551.      <a
  3552.        class="navmenu-link  "
  3553.        href="/pages/store-locator"
  3554.        
  3555.      >
  3556.        Repair Centers
  3557.      </a>
  3558.  
  3559.      
  3560.  
  3561.      
  3562.      
  3563.  
  3564.      
  3565.  
  3566.      
  3567.    </li>
  3568.  
  3569.    
  3570.    
  3571.  
  3572.    
  3573.    
  3574.    
  3575. <li
  3576.      class="navmenu-item            navmenu-id-parts-request"
  3577.      
  3578.    >
  3579.      <a
  3580.        class="navmenu-link  "
  3581.        href="/pages/part-request"
  3582.        
  3583.      >
  3584.        Parts Request
  3585.      </a>
  3586.  
  3587.      
  3588.  
  3589.      
  3590.      
  3591.  
  3592.      
  3593.  
  3594.      
  3595.    </li>
  3596.  
  3597.    
  3598.    
  3599.  
  3600.    
  3601.    
  3602.    
  3603. <li
  3604.      class="navmenu-item            navmenu-id-shipping"
  3605.      
  3606.    >
  3607.      <a
  3608.        class="navmenu-link  "
  3609.        href="/pages/shipping"
  3610.        
  3611.      >
  3612.        Shipping
  3613.      </a>
  3614.  
  3615.      
  3616.  
  3617.      
  3618.      
  3619.  
  3620.      
  3621.  
  3622.      
  3623.    </li>
  3624.  
  3625.    
  3626.    
  3627.  
  3628.    
  3629.    
  3630.    
  3631. <li
  3632.      class="navmenu-item            navmenu-id-francais"
  3633.      
  3634.    >
  3635.      <a
  3636.        class="navmenu-link  "
  3637.        href="/pages/francais"
  3638.        
  3639.      >
  3640.        Français
  3641.      </a>
  3642.  
  3643.      
  3644.  
  3645.      
  3646.      
  3647.  
  3648.      
  3649.  
  3650.      
  3651.    </li>
  3652.  
  3653. </ul>
  3654.  
  3655.  
  3656.      
  3657.    </div>
  3658.    <div class="utility-bar__mobile-disclosure" data-utility-mobile></div>
  3659.  </div>
  3660.  
  3661.  <div class="mobile-nav-overlay" data-mobile-nav-overlay></div>
  3662. </div>
  3663.  
  3664. </header>
  3665.  
  3666. </div>
  3667. <!-- END sections: header-group -->
  3668.  
  3669.    <div style="--background-color: #fff">
  3670.      
  3671.  
  3672.  
  3673.    </div>
  3674.  
  3675.    <div class="intersection-target" data-header-intersection-target></div>
  3676.    <div class="site-main-dimmer" data-site-main-dimmer></div>
  3677.    <main id="site-main" class="site-main" aria-label="Main content" tabindex="-1">
  3678.      <div id="shopify-section-template--15492296147031__dynamic_slideshow" class="shopify-section slideshow--section">
  3679.  
  3680.  
  3681.  
  3682. <script type="application/pxs-animation-mapping+json">
  3683.  {
  3684.    "blocks": [".slideshow-slide"],
  3685.    "elements": [
  3686.      ".slideshow-slide__heading",
  3687.      ".slideshow-slide__subheading",
  3688.      ".slideshow-slide__text",
  3689.      ".slideshow-slide__button"
  3690.    ]
  3691.  }
  3692. </script>
  3693.  
  3694. <style data-shopify>
  3695.  #shopify-section-template--15492296147031__dynamic_slideshow {
  3696.    --autoplay-interval: 5s;
  3697.  }
  3698.  
  3699.  
  3700.    @media screen and (min-width: 720px) {
  3701.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3702.        height: 55.55555555555556vw;
  3703.      }
  3704.    }
  3705.  
  3706.  
  3707.  
  3708.    @media screen and (max-width: 719px) {
  3709.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3710.        
  3711.          height: 55.55555555555556vw;
  3712.        
  3713.      }
  3714.    }
  3715.  
  3716. </style>
  3717.  
  3718.  
  3719.  
  3720.  
  3721. <script
  3722.  type="application/json"
  3723.  data-section-type="pxs-slideshow"
  3724.  data-section-id="template--15492296147031__dynamic_slideshow"
  3725.  data-section-data
  3726. >
  3727.  {
  3728.    "enable_autoplay": true,
  3729.    "autoplay_interval": 5,
  3730.    "mobile_navigation_adjust": true,
  3731.    "transition_fade": null,
  3732.    "slide_attraction": null,
  3733.    "slide_friction": null,
  3734.    "next_text": "Next slide",
  3735.    "previous_text": "Previous slide"
  3736.  }
  3737. </script>
  3738.  
  3739. <section
  3740.  class="
  3741.    slideshow
  3742.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  3743.  "
  3744.  aria-label="Slideshow"
  3745.  data-autoplay="true"
  3746.  data-autoplay-interval="5"
  3747.  data-banner="false"
  3748.  data-slideshow
  3749. ><div
  3750.    class="slideshow__wrapper "
  3751.    data-slideshow-wrapper
  3752.  >
  3753.  
  3754.  
  3755. <div
  3756.  class="slideshow-slide  "
  3757.  aria-label="Slide 1 of 5"
  3758.  data-text-color="#FFFFFF"
  3759.  tabindex="-1"
  3760.  data-slideshow-slide
  3761.  data-slide-index="0"
  3762.  
  3763. ><div
  3764.      class="
  3765.        slideshow-slide__image-wrapper
  3766.        
  3767.      "
  3768.      data-slide-image-wrapper
  3769.    >
  3770.  
  3771.  
  3772.    <noscript data-rimg-noscript>
  3773.      <img loading="lazy"
  3774.        
  3775.          src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3776.        
  3777.  
  3778.        alt=""
  3779.        data-rimg="noscript"
  3780.        srcset="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850 1x"
  3781.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3782.        style="
  3783.        object-fit:cover;object-position:50.0% 50.0%;
  3784.      
  3785. "
  3786.        
  3787.      >
  3788.    </noscript>
  3789.  
  3790.  
  3791.  <img loading="lazy"
  3792.    
  3793.      src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3794.    
  3795.    alt=""
  3796.  
  3797.    
  3798.      data-rimg="lazy"
  3799.      data-rimg-scale="1"
  3800.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2_1_{size}.jpg?v=1739722850"
  3801.      data-rimg-max="1800x1000"
  3802.      data-rimg-crop="false"
  3803.      
  3804.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3805.    
  3806.  
  3807.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3808.    style="
  3809.        object-fit:cover;object-position:50.0% 50.0%;
  3810.      
  3811. "
  3812.    
  3813.  >
  3814.  
  3815.  
  3816.  
  3817.  <div data-rimg-canvas></div>
  3818.  
  3819.  
  3820. <div
  3821.          class="
  3822.            slideshow-slide__overlay
  3823.            
  3824.          "
  3825.          style="
  3826.            
  3827.              background-color: #000000;
  3828.            
  3829.            opacity: 0.01;
  3830.          "
  3831.        ></div></div><div
  3832.    class="
  3833.      slideshow-slide__content
  3834.      slideshow-slide__content--slide_tJp4ET
  3835.      slideshow-slide__content--text-center
  3836.    "
  3837.    data-slide-content
  3838.  ></div>
  3839. </div>
  3840.  
  3841.  
  3842.  
  3843.  
  3844. <div
  3845.  class="slideshow-slide  "
  3846.  aria-label="Slide 2 of 5"
  3847.  data-text-color="#FFFFFF"
  3848.  tabindex="-1"
  3849.  data-slideshow-slide
  3850.  data-slide-index="1"
  3851.  
  3852. ><div
  3853.      class="
  3854.        slideshow-slide__image-wrapper
  3855.        
  3856.      "
  3857.      data-slide-image-wrapper
  3858.    >
  3859.  
  3860.  
  3861.    <noscript data-rimg-noscript>
  3862.      <img loading="lazy"
  3863.        
  3864.          src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3865.        
  3866.  
  3867.        alt=""
  3868.        data-rimg="noscript"
  3869.        srcset="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692 1x"
  3870.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3871.        style="
  3872.        object-fit:cover;object-position:50.0% 50.0%;
  3873.      
  3874. "
  3875.        
  3876.      >
  3877.    </noscript>
  3878.  
  3879.  
  3880.  <img loading="lazy"
  3881.    
  3882.      src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3883.    
  3884.    alt=""
  3885.  
  3886.    
  3887.      data-rimg="lazy"
  3888.      data-rimg-scale="1"
  3889.      data-rimg-template="//laptopparts.ca/cdn/shop/files/3_1_{size}.jpg?v=1739722692"
  3890.      data-rimg-max="1800x1000"
  3891.      data-rimg-crop="false"
  3892.      
  3893.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3894.    
  3895.  
  3896.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3897.    style="
  3898.        object-fit:cover;object-position:50.0% 50.0%;
  3899.      
  3900. "
  3901.    
  3902.  >
  3903.  
  3904.  
  3905.  
  3906.  <div data-rimg-canvas></div>
  3907.  
  3908.  
  3909. <div
  3910.          class="
  3911.            slideshow-slide__overlay
  3912.            
  3913.          "
  3914.          style="
  3915.            
  3916.              background-color: #000000;
  3917.            
  3918.            opacity: 0.01;
  3919.          "
  3920.        ></div></div><div
  3921.    class="
  3922.      slideshow-slide__content
  3923.      slideshow-slide__content--slide_QztrPf
  3924.      slideshow-slide__content--text-center
  3925.    "
  3926.    data-slide-content
  3927.  ></div>
  3928. </div>
  3929.  
  3930.  
  3931.  
  3932.  
  3933. <div
  3934.  class="slideshow-slide  "
  3935.  aria-label="Slide 3 of 5"
  3936.  data-text-color="#FFFFFF"
  3937.  tabindex="-1"
  3938.  data-slideshow-slide
  3939.  data-slide-index="2"
  3940.  
  3941. ><div
  3942.      class="
  3943.        slideshow-slide__image-wrapper
  3944.        
  3945.      "
  3946.      data-slide-image-wrapper
  3947.    >
  3948.  
  3949.  
  3950.    <noscript data-rimg-noscript>
  3951.      <img loading="lazy"
  3952.        
  3953.          src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  3954.        
  3955.  
  3956.        alt=""
  3957.        data-rimg="noscript"
  3958.        srcset="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085 1x"
  3959.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3960.        style="
  3961.        object-fit:cover;object-position:50.0% 50.0%;
  3962.      
  3963. "
  3964.        
  3965.      >
  3966.    </noscript>
  3967.  
  3968.  
  3969.  <img loading="lazy"
  3970.    
  3971.      src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  3972.    
  3973.    alt=""
  3974.  
  3975.    
  3976.      data-rimg="lazy"
  3977.      data-rimg-scale="1"
  3978.      data-rimg-template="//laptopparts.ca/cdn/shop/files/1_1_{size}.jpg?v=1739723085"
  3979.      data-rimg-max="1800x1000"
  3980.      data-rimg-crop="false"
  3981.      
  3982.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3983.    
  3984.  
  3985.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3986.    style="
  3987.        object-fit:cover;object-position:50.0% 50.0%;
  3988.      
  3989. "
  3990.    
  3991.  >
  3992.  
  3993.  
  3994.  
  3995.  <div data-rimg-canvas></div>
  3996.  
  3997.  
  3998. <div
  3999.          class="
  4000.            slideshow-slide__overlay
  4001.            
  4002.          "
  4003.          style="
  4004.            
  4005.              background-color: #000000;
  4006.            
  4007.            opacity: 0.01;
  4008.          "
  4009.        ></div></div><div
  4010.    class="
  4011.      slideshow-slide__content
  4012.      slideshow-slide__content--slide_UPfjBG
  4013.      slideshow-slide__content--text-center
  4014.    "
  4015.    data-slide-content
  4016.  ></div>
  4017. </div>
  4018.  
  4019.  
  4020.  
  4021.  
  4022. <div
  4023.  class="slideshow-slide  "
  4024.  aria-label="Slide 4 of 5"
  4025.  data-text-color="#ffffff"
  4026.  tabindex="-1"
  4027.  data-slideshow-slide
  4028.  data-slide-index="3"
  4029.  
  4030. ><div
  4031.      class="
  4032.        slideshow-slide__image-wrapper
  4033.        
  4034.      "
  4035.      data-slide-image-wrapper
  4036.    >
  4037.  
  4038.  
  4039.    <noscript data-rimg-noscript>
  4040.      <img loading="lazy"
  4041.        
  4042.          src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4043.        
  4044.  
  4045.        alt=""
  4046.        data-rimg="noscript"
  4047.        srcset="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350 1x"
  4048.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4049.        style="
  4050.        object-fit:cover;object-position:50.0% 50.0%;
  4051.      
  4052. "
  4053.        
  4054.      >
  4055.    </noscript>
  4056.  
  4057.  
  4058.  <img loading="lazy"
  4059.    
  4060.      src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4061.    
  4062.    alt=""
  4063.  
  4064.    
  4065.      data-rimg="lazy"
  4066.      data-rimg-scale="1"
  4067.      data-rimg-template="//laptopparts.ca/cdn/shop/files/5_{size}.jpg?v=1739723350"
  4068.      data-rimg-max="1800x1000"
  4069.      data-rimg-crop="false"
  4070.      
  4071.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4072.    
  4073.  
  4074.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4075.    style="
  4076.        object-fit:cover;object-position:50.0% 50.0%;
  4077.      
  4078. "
  4079.    
  4080.  >
  4081.  
  4082.  
  4083.  
  4084.  <div data-rimg-canvas></div>
  4085.  
  4086.  
  4087. <div
  4088.          class="
  4089.            slideshow-slide__overlay
  4090.            
  4091.          "
  4092.          style="
  4093.            
  4094.              background-color: #000000;
  4095.            
  4096.            opacity: 0.01;
  4097.          "
  4098.        ></div></div><div
  4099.    class="
  4100.      slideshow-slide__content
  4101.      slideshow-slide__content--slide_MbNDbx
  4102.      slideshow-slide__content--text-center
  4103.    "
  4104.    data-slide-content
  4105.  ></div>
  4106. </div>
  4107.  
  4108.  
  4109.  
  4110.  
  4111. <div
  4112.  class="slideshow-slide  "
  4113.  aria-label="Slide 5 of 5"
  4114.  data-text-color="#FFFFFF"
  4115.  tabindex="-1"
  4116.  data-slideshow-slide
  4117.  data-slide-index="4"
  4118.  
  4119. ><div
  4120.      class="
  4121.        slideshow-slide__image-wrapper
  4122.        
  4123.      "
  4124.      data-slide-image-wrapper
  4125.    >
  4126.  
  4127.  
  4128.    <noscript data-rimg-noscript>
  4129.      <img loading="lazy"
  4130.        
  4131.          src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4132.        
  4133.  
  4134.        alt=""
  4135.        data-rimg="noscript"
  4136.        srcset="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234 1x"
  4137.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4138.        style="
  4139.        object-fit:cover;object-position:50.0% 50.0%;
  4140.      
  4141. "
  4142.        
  4143.      >
  4144.    </noscript>
  4145.  
  4146.  
  4147.  <img loading="lazy"
  4148.    
  4149.      src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4150.    
  4151.    alt=""
  4152.  
  4153.    
  4154.      data-rimg="lazy"
  4155.      data-rimg-scale="1"
  4156.      data-rimg-template="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_{size}.jpg?v=1739723234"
  4157.      data-rimg-max="1800x1000"
  4158.      data-rimg-crop="false"
  4159.      
  4160.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4161.    
  4162.  
  4163.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4164.    style="
  4165.        object-fit:cover;object-position:50.0% 50.0%;
  4166.      
  4167. "
  4168.    
  4169.  >
  4170.  
  4171.  
  4172.  
  4173.  <div data-rimg-canvas></div>
  4174.  
  4175.  
  4176. <div
  4177.          class="
  4178.            slideshow-slide__overlay
  4179.            
  4180.          "
  4181.          style="
  4182.            
  4183.              background-color: #000000;
  4184.            
  4185.            opacity: 0.01;
  4186.          "
  4187.        ></div></div><div
  4188.    class="
  4189.      slideshow-slide__content
  4190.      slideshow-slide__content--slide_eGUxJ7
  4191.      slideshow-slide__content--text-center
  4192.    "
  4193.    data-slide-content
  4194.  ></div>
  4195. </div>
  4196.  
  4197. </div><ol
  4198.      class="slideshow-pagination"
  4199.      data-slideshow-pagination
  4200.    ><li class="slideshow-pagination__dot">
  4201.          <button
  4202.            class="slideshow-pagination__button"
  4203.            data-selected="true"
  4204.            data-slide-button="0"
  4205.          >
  4206.            
  4207.              
  4208.    <div class="circle-timer">
  4209.      <svg class="circle-timer__svg">
  4210.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4211.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4212.      </svg>
  4213.    </div>
  4214.  
  4215.            
  4216.            <span class="visually-hidden">Slide 1</span>
  4217.          </button>
  4218.        </li><li class="slideshow-pagination__dot">
  4219.          <button
  4220.            class="slideshow-pagination__button"
  4221.            data-selected="false"
  4222.            data-slide-button="1"
  4223.          >
  4224.            
  4225.              
  4226.    <div class="circle-timer">
  4227.      <svg class="circle-timer__svg">
  4228.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4229.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4230.      </svg>
  4231.    </div>
  4232.  
  4233.            
  4234.            <span class="visually-hidden">Slide 2</span>
  4235.          </button>
  4236.        </li><li class="slideshow-pagination__dot">
  4237.          <button
  4238.            class="slideshow-pagination__button"
  4239.            data-selected="false"
  4240.            data-slide-button="2"
  4241.          >
  4242.            
  4243.              
  4244.    <div class="circle-timer">
  4245.      <svg class="circle-timer__svg">
  4246.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4247.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4248.      </svg>
  4249.    </div>
  4250.  
  4251.            
  4252.            <span class="visually-hidden">Slide 3</span>
  4253.          </button>
  4254.        </li><li class="slideshow-pagination__dot">
  4255.          <button
  4256.            class="slideshow-pagination__button"
  4257.            data-selected="false"
  4258.            data-slide-button="3"
  4259.          >
  4260.            
  4261.              
  4262.    <div class="circle-timer">
  4263.      <svg class="circle-timer__svg">
  4264.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4265.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4266.      </svg>
  4267.    </div>
  4268.  
  4269.            
  4270.            <span class="visually-hidden">Slide 4</span>
  4271.          </button>
  4272.        </li><li class="slideshow-pagination__dot">
  4273.          <button
  4274.            class="slideshow-pagination__button"
  4275.            data-selected="false"
  4276.            data-slide-button="4"
  4277.          >
  4278.            
  4279.              
  4280.    <div class="circle-timer">
  4281.      <svg class="circle-timer__svg">
  4282.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4283.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4284.      </svg>
  4285.    </div>
  4286.  
  4287.            
  4288.            <span class="visually-hidden">Slide 5</span>
  4289.          </button>
  4290.        </li></ol><div
  4291.    class="slideshow__current-slide visually-hidden"
  4292.    aria-live="polite"
  4293.    aria-atomic="true"
  4294.    data-slide-counter
  4295.    data-counter-template="Slide {{ count }} of {{ total }}"
  4296.  >
  4297.  </div>
  4298. </section>
  4299.  
  4300.  
  4301.  
  4302. </div><div id="shopify-section-template--15492296147031__dynamic_featured_collection" class="shopify-section featured-collection--section"><script
  4303.  type="application/json"
  4304.  data-section-id="template--15492296147031__dynamic_featured_collection"
  4305.  data-section-type="dynamic-featured-collection"
  4306. ></script>
  4307.  
  4308. <script type="application/pxs-animation-mapping+json">
  4309.  {
  4310.    "blocks": [
  4311.      ".featured-collection__title-card"
  4312.    ],
  4313.    "elements": [
  4314.      ".featured-collection__title-card-pre-heading",
  4315.      ".featured-collection__title-card-heading",
  4316.      ".featured-collection__title-card-button"
  4317.    ]
  4318.  }
  4319. </script>
  4320.  
  4321.  
  4322.  
  4323.  
  4324.  
  4325.  
  4326.  
  4327.  
  4328.  
  4329.  
  4330.  
  4331.  
  4332.  
  4333.  
  4334.  
  4335. <style data-shopify>
  4336.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card {
  4337.    color: ;
  4338.  }
  4339.  
  4340.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card-outer::before {
  4341.    background-color: ;
  4342.    opacity: 0.0;
  4343.  }
  4344.  
  4345.  @media screen and (min-width: 1080px) {
  4346.    #shopify-section-template--15492296147031__dynamic_featured_collection [data-layout="grid"] .featured-collection__title-card {
  4347.      
  4348.    }
  4349.  }
  4350. </style>
  4351.  
  4352.  
  4353.  
  4354.  
  4355.  
  4356.  
  4357.  
  4358.  
  4359.  
  4360.  
  4361.  
  4362.  
  4363.  
  4364.  
  4365.  
  4366. <section class="featured-collection__container" data-featured-collection>
  4367.  
  4368.    <h2 class="home-section--title">
  4369.      Shop The Best Selling
  4370.    </h2>
  4371.  
  4372.  
  4373.  <ul
  4374.    class="home-section--content featured-collection__content"
  4375.    data-content
  4376.    data-layout="slideshow"
  4377.  >
  4378.    
  4379.  
  4380.    
  4381.      
  4382.  
  4383.  
  4384.  
  4385.  
  4386.  
  4387.  
  4388.  
  4389.  
  4390.  
  4391.  
  4392.  
  4393.  
  4394.  
  4395.  
  4396.  
  4397.  
  4398.  
  4399.  
  4400.  
  4401.  
  4402.  
  4403.  
  4404.  
  4405.  
  4406.  
  4407.  
  4408.  
  4409.  
  4410.  
  4411.  
  4412.  
  4413.  
  4414.    
  4415.  
  4416.  
  4417.  
  4418. <li
  4419.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  4420.  data-product-item
  4421.  data-product-quickshop-url="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4422.  
  4423. >
  4424.  <div class="productitem" data-product-item-content>
  4425.    
  4426.    
  4427.    
  4428.    
  4429.  
  4430.    
  4431.  
  4432.    
  4433.  
  4434.    <div class="productitem__container">
  4435.      
  4436.  
  4437.      <div class="productitem__image-container">
  4438.        <a target="_blank"
  4439.          class="productitem--image-link"
  4440.          href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4441.          aria-label="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4442.          tabindex="-1"
  4443.          data-product-page-link
  4444.        >
  4445.          <figure
  4446.            class="productitem--image"
  4447.            data-product-item-image
  4448.            
  4449.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  4450.            
  4451.          >
  4452.            
  4453.              
  4454.              
  4455.  
  4456.  
  4457.    <noscript data-rimg-noscript>
  4458.      <img loading="lazy"
  4459.        
  4460.          src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4461.        
  4462.  
  4463.        alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4464.        data-rimg="noscript"
  4465.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033 1x, //laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_998x998.jpg?v=1729018033 1.95x"
  4466.        class="productitem--image-primary"
  4467.        
  4468.        
  4469.      >
  4470.    </noscript>
  4471.  
  4472.  
  4473.  <img loading="lazy"
  4474.    
  4475.      src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4476.    
  4477.    alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4478.  
  4479.    
  4480.      data-rimg="lazy"
  4481.      data-rimg-scale="1"
  4482.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_{size}.jpg?v=1729018033"
  4483.      data-rimg-max="1000x1000"
  4484.      data-rimg-crop="false"
  4485.      
  4486.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  4487.    
  4488.  
  4489.    class="productitem--image-primary"
  4490.    
  4491.    
  4492.  >
  4493.  
  4494.  
  4495.  
  4496.  <div data-rimg-canvas></div>
  4497.  
  4498.  
  4499.            
  4500.  
  4501.            
  4502.  
  4503.  
  4504.  
  4505.  
  4506.  
  4507.  
  4508.  
  4509.  
  4510.  
  4511.  
  4512.  
  4513.  
  4514.  
  4515.  
  4516.  
  4517.  
  4518.  
  4519.  
  4520.  
  4521.  
  4522.  
  4523.  
  4524.  
  4525.  
  4526.  
  4527.  
  4528.  
  4529.          </figure>
  4530.        </a>
  4531.      </div><div class="productitem--info">
  4532.        
  4533.          
  4534.  
  4535.        
  4536.  
  4537.        
  4538.          
  4539.  
  4540.  
  4541.  
  4542.  
  4543.  
  4544.  
  4545.  
  4546.  
  4547.  
  4548.  
  4549.  
  4550.  
  4551.  
  4552.  
  4553.  
  4554.  
  4555.  
  4556.  
  4557.  
  4558.  
  4559.  
  4560.  
  4561.  
  4562.  
  4563.  
  4564.  
  4565.  
  4566.  
  4567.  
  4568.  
  4569. <div class="price productitem__price ">
  4570.  
  4571.    <div
  4572.      class="price__compare-at visible"
  4573.      data-price-compare-container
  4574.    >
  4575.  
  4576.      
  4577.        <span class="money price__original" data-price-original></span>
  4578.      
  4579.    </div>
  4580.  
  4581.  
  4582.    
  4583.      
  4584.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4585.        
  4586.          <span class="visually-hidden">Original price</span>
  4587.          <span class="money price__compare-at--min" data-price-compare-min>
  4588.            $115.98
  4589.          </span>
  4590.          -
  4591.          <span class="visually-hidden">Original price</span>
  4592.          <span class="money price__compare-at--max" data-price-compare-max>
  4593.            $115.98
  4594.          </span>
  4595.        
  4596.      </div>
  4597.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4598.        <span class="visually-hidden">Original price</span>
  4599.        <span class="money price__compare-at--single" data-price-compare>
  4600.          
  4601.        </span>
  4602.      </div>
  4603.    
  4604.  
  4605.  
  4606.  <div class="price__current price__current--emphasize " data-price-container>
  4607.  
  4608.    
  4609.  
  4610.    
  4611.      
  4612.      
  4613.      <span class="money" data-price>
  4614.        $115.98
  4615.      </span>
  4616.    
  4617.    
  4618.  </div>
  4619.  
  4620.  
  4621.    
  4622.    <div class="price__current--hidden" data-current-price-range-hidden>
  4623.      
  4624.        <span class="money price__current--min" data-price-min>$115.98</span>
  4625.        -
  4626.        <span class="money price__current--max" data-price-max>$115.98</span>
  4627.      
  4628.    </div>
  4629.    <div class="price__current--hidden" data-current-price-hidden>
  4630.      <span class="visually-hidden">Current price</span>
  4631.      <span class="money" data-price>
  4632.        $115.98
  4633.      </span>
  4634.    </div>
  4635.  
  4636.  
  4637.  
  4638.    
  4639.    
  4640.    
  4641.    
  4642.  
  4643.    <div
  4644.      class="
  4645.        productitem__unit-price
  4646.        hidden
  4647.      "
  4648.      data-unit-price
  4649.    >
  4650.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  4651.    </div>
  4652.  
  4653.  
  4654.  
  4655. </div>
  4656.  
  4657.  
  4658.        
  4659.  
  4660.        <h2 class="productitem--title">
  4661.          <a href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen" data-product-page-link>
  4662.            14 Lcd Screen for Dell Latitude 7480 7490 Laptops - FHD Only B140HAN03.3 KW8T4
  4663.          </a>
  4664.        </h2>
  4665.  
  4666.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  4667.        <div class="star_container 3959626498135"></div>
  4668.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  4669.  
  4670.        
  4671.          
  4672.            <span class="productitem--vendor">
  4673.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  4674.            </span>
  4675.          
  4676.        
  4677.  
  4678.        
  4679.  
  4680.        
  4681.          
  4682.            <div class="productitem__stock-level">
  4683.              <!--
  4684.  
  4685.  
  4686.  
  4687.  
  4688.  
  4689.  
  4690.  
  4691. <div class="product-stock-level-wrapper" >
  4692.  
  4693.    <span class="
  4694.  product-stock-level
  4695.  product-stock-level--continue-selling
  4696.  
  4697. ">
  4698.      
  4699.  
  4700.      <span class="product-stock-level__text">
  4701.        
  4702.        <div class="product-stock-level__badge-text">
  4703.          
  4704.  
  4705.    In stock
  4706.  
  4707.  
  4708.        </div>
  4709.      </span>
  4710.    </span>
  4711.  
  4712. </div>
  4713. -->
  4714.              
  4715.  
  4716.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  4717.  
  4718.  
  4719.  
  4720.  
  4721.  
  4722.  
  4723.  
  4724.            </div>
  4725.          
  4726.  
  4727.          
  4728.            
  4729.          
  4730.        
  4731.  
  4732.        
  4733.          <div class="productitem--description">
  4734.            <p>
  4735. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  4736.  
  4737. Compatible Part #s: B140HAN03.3, KW8T4
  4738.  
  4739. Compatible Models:
  4740. Dell Latitude 74...</p>
  4741.  
  4742.            
  4743.              <a
  4744.                href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4745.                class="productitem--link"
  4746.                data-product-page-link
  4747.              >
  4748.                View full details
  4749.              </a>
  4750.            
  4751.          </div>
  4752.        
  4753.      </div>
  4754.  
  4755.      
  4756.        
  4757.          
  4758.          
  4759.          
  4760.  
  4761.          
  4762.          
  4763.  
  4764.          
  4765.  
  4766.          
  4767.  
  4768.          <div class="productitem--actions" data-product-actions>
  4769.            <div class="productitem--listview-price">
  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.  
  4799.  
  4800.  
  4801. <div class="price productitem__price ">
  4802.  
  4803.    <div
  4804.      class="price__compare-at visible"
  4805.      data-price-compare-container
  4806.    >
  4807.  
  4808.      
  4809.        <span class="money price__original" data-price-original></span>
  4810.      
  4811.    </div>
  4812.  
  4813.  
  4814.    
  4815.      
  4816.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4817.        
  4818.          <span class="visually-hidden">Original price</span>
  4819.          <span class="money price__compare-at--min" data-price-compare-min>
  4820.            $115.98
  4821.          </span>
  4822.          -
  4823.          <span class="visually-hidden">Original price</span>
  4824.          <span class="money price__compare-at--max" data-price-compare-max>
  4825.            $115.98
  4826.          </span>
  4827.        
  4828.      </div>
  4829.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4830.        <span class="visually-hidden">Original price</span>
  4831.        <span class="money price__compare-at--single" data-price-compare>
  4832.          
  4833.        </span>
  4834.      </div>
  4835.    
  4836.  
  4837.  
  4838.  <div class="price__current price__current--emphasize " data-price-container>
  4839.  
  4840.    
  4841.  
  4842.    
  4843.      
  4844.      
  4845.      <span class="money" data-price>
  4846.        $115.98
  4847.      </span>
  4848.    
  4849.    
  4850.  </div>
  4851.  
  4852.  
  4853.    
  4854.    <div class="price__current--hidden" data-current-price-range-hidden>
  4855.      
  4856.        <span class="money price__current--min" data-price-min>$115.98</span>
  4857.        -
  4858.        <span class="money price__current--max" data-price-max>$115.98</span>
  4859.      
  4860.    </div>
  4861.    <div class="price__current--hidden" data-current-price-hidden>
  4862.      <span class="visually-hidden">Current price</span>
  4863.      <span class="money" data-price>
  4864.        $115.98
  4865.      </span>
  4866.    </div>
  4867.  
  4868.  
  4869.  
  4870.    
  4871.    
  4872.    
  4873.    
  4874.  
  4875.    <div
  4876.      class="
  4877.        productitem__unit-price
  4878.        hidden
  4879.      "
  4880.      data-unit-price
  4881.    >
  4882.      <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>
  4883.    </div>
  4884.  
  4885.  
  4886.  
  4887. </div>
  4888.  
  4889.  
  4890.            </div>
  4891.  
  4892.            <div class="productitem--listview-badge">
  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.  
  4919.  
  4920.  
  4921.            </div>
  4922.  
  4923.            
  4924.              <div
  4925.                class="
  4926.                  productitem--action
  4927.                  quickshop-button
  4928.                  
  4929.                "
  4930.              >
  4931.                <button
  4932.                  class="productitem--action-trigger button-secondary"
  4933.                  data-quickshop-full
  4934.                  
  4935.                  
  4936.                  type="button"
  4937.                >
  4938.                  Quick shop
  4939.                </button>
  4940.              </div>
  4941.            
  4942.  
  4943.            
  4944.              <div
  4945.                class="
  4946.                  productitem--action
  4947.                  atc--button
  4948.                  
  4949.                "
  4950.              >
  4951.                <button
  4952.                  class="productitem--action-trigger productitem--action-atc button-primary"
  4953.                  type="button"
  4954.                  aria-label="Add to cart"
  4955.                  
  4956.                    data-quick-buy
  4957.                  
  4958.                  data-variant-id="29564289744983"
  4959.                  
  4960.                >
  4961.                  <span class="atc-button--text">
  4962.                    Add to cart
  4963.                  </span>
  4964.                  <span class="atc-button--icon"><svg
  4965.  aria-hidden="true"
  4966.  focusable="false"
  4967.  role="presentation"
  4968.  width="26"
  4969.  height="26"
  4970.  viewBox="0 0 26 26"
  4971.  xmlns="http://www.w3.org/2000/svg"
  4972. >
  4973.  <g fill-rule="nonzero" fill="currentColor">
  4974.    <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"/>
  4975.  </g>
  4976. </svg></span>
  4977.                </button>
  4978.              </div>
  4979.            
  4980.          </div>
  4981.        
  4982.      
  4983.    </div>
  4984.  </div>
  4985.  
  4986.  
  4987.    <script type="application/json" data-quick-buy-settings>
  4988.      {
  4989.        "cart_redirection": true,
  4990.        "money_format": "${{amount}}"
  4991.      }
  4992.    </script>
  4993.  
  4994. </li>
  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.  
  5031.  
  5032.  
  5033. <li
  5034.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  5035.  data-product-item
  5036.  data-product-quickshop-url="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5037.  
  5038. >
  5039.  <div class="productitem" data-product-item-content>
  5040.    
  5041.    
  5042.    
  5043.    
  5044.  
  5045.    
  5046.  
  5047.    
  5048.  
  5049.    <div class="productitem__container">
  5050.      
  5051.  
  5052.      <div class="productitem__image-container">
  5053.        <a target="_blank"
  5054.          class="productitem--image-link"
  5055.          href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5056.          aria-label="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5057.          tabindex="-1"
  5058.          data-product-page-link
  5059.        >
  5060.          <figure
  5061.            class="productitem--image"
  5062.            data-product-item-image
  5063.            
  5064.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5065.            
  5066.          >
  5067.            
  5068.              
  5069.              
  5070.  
  5071.  
  5072.    <noscript data-rimg-noscript>
  5073.      <img loading="lazy"
  5074.        
  5075.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5076.        
  5077.  
  5078.        alt=""
  5079.        data-rimg="noscript"
  5080.        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"
  5081.        class="productitem--image-primary"
  5082.        
  5083.        
  5084.      >
  5085.    </noscript>
  5086.  
  5087.  
  5088.  <img loading="lazy"
  5089.    
  5090.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5091.    
  5092.    alt=""
  5093.  
  5094.    
  5095.      data-rimg="lazy"
  5096.      data-rimg-scale="1"
  5097.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_{size}.jpg?v=1648053872"
  5098.      data-rimg-max="600x600"
  5099.      data-rimg-crop="false"
  5100.      
  5101.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  5102.    
  5103.  
  5104.    class="productitem--image-primary"
  5105.    
  5106.    
  5107.  >
  5108.  
  5109.  
  5110.  
  5111.  <div data-rimg-canvas></div>
  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.  
  5142.  
  5143.  
  5144.          </figure>
  5145.        </a>
  5146.      </div><div class="productitem--info">
  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.  
  5182.  
  5183.  
  5184. <div class="price productitem__price ">
  5185.  
  5186.    <div
  5187.      class="price__compare-at visible"
  5188.      data-price-compare-container
  5189.    >
  5190.  
  5191.      
  5192.        <span class="money price__original" data-price-original></span>
  5193.      
  5194.    </div>
  5195.  
  5196.  
  5197.    
  5198.      
  5199.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5200.        
  5201.          <span class="visually-hidden">Original price</span>
  5202.          <span class="money price__compare-at--min" data-price-compare-min>
  5203.            $90.99
  5204.          </span>
  5205.          -
  5206.          <span class="visually-hidden">Original price</span>
  5207.          <span class="money price__compare-at--max" data-price-compare-max>
  5208.            $90.99
  5209.          </span>
  5210.        
  5211.      </div>
  5212.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5213.        <span class="visually-hidden">Original price</span>
  5214.        <span class="money price__compare-at--single" data-price-compare>
  5215.          
  5216.        </span>
  5217.      </div>
  5218.    
  5219.  
  5220.  
  5221.  <div class="price__current price__current--emphasize " data-price-container>
  5222.  
  5223.    
  5224.  
  5225.    
  5226.      
  5227.      
  5228.      <span class="money" data-price>
  5229.        $90.99
  5230.      </span>
  5231.    
  5232.    
  5233.  </div>
  5234.  
  5235.  
  5236.    
  5237.    <div class="price__current--hidden" data-current-price-range-hidden>
  5238.      
  5239.        <span class="money price__current--min" data-price-min>$90.99</span>
  5240.        -
  5241.        <span class="money price__current--max" data-price-max>$90.99</span>
  5242.      
  5243.    </div>
  5244.    <div class="price__current--hidden" data-current-price-hidden>
  5245.      <span class="visually-hidden">Current price</span>
  5246.      <span class="money" data-price>
  5247.        $90.99
  5248.      </span>
  5249.    </div>
  5250.  
  5251.  
  5252.  
  5253.    
  5254.    
  5255.    
  5256.    
  5257.  
  5258.    <div
  5259.      class="
  5260.        productitem__unit-price
  5261.        hidden
  5262.      "
  5263.      data-unit-price
  5264.    >
  5265.      <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>
  5266.    </div>
  5267.  
  5268.  
  5269.  
  5270. </div>
  5271.  
  5272.  
  5273.        
  5274.  
  5275.        <h2 class="productitem--title">
  5276.          <a href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  5277.            20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  5278.          </a>
  5279.        </h2>
  5280.  
  5281.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5282.        <div class="star_container 3483510112343"></div>
  5283.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5284.  
  5285.        
  5286.          
  5287.            <span class="productitem--vendor">
  5288.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  5289.            </span>
  5290.          
  5291.        
  5292.  
  5293.        
  5294.  
  5295.        
  5296.          
  5297.            <div class="productitem__stock-level">
  5298.              <!--
  5299.  
  5300.  
  5301.  
  5302.  
  5303.  
  5304.  
  5305.  
  5306. <div class="product-stock-level-wrapper" >
  5307.  
  5308.    <span class="
  5309.  product-stock-level
  5310.  product-stock-level--continue-selling
  5311.  
  5312. ">
  5313.      
  5314.  
  5315.      <span class="product-stock-level__text">
  5316.        
  5317.        <div class="product-stock-level__badge-text">
  5318.          
  5319.  
  5320.    In stock
  5321.  
  5322.  
  5323.        </div>
  5324.      </span>
  5325.    </span>
  5326.  
  5327. </div>
  5328. -->
  5329.              
  5330.  
  5331.  
  5332.    
  5333.      <b style="color:green">In stock</b>
  5334.    
  5335.  
  5336.  
  5337.  
  5338.  
  5339.  
  5340.  
  5341.  
  5342.            </div>
  5343.          
  5344.  
  5345.          
  5346.            
  5347.          
  5348.        
  5349.  
  5350.        
  5351.          <div class="productitem--description">
  5352.            <p>Plugs directly into AC outlet.
  5353.  
  5354. Input: 100-240V ~ 50-60Hz
  5355. Output: 12V – 1.5A 18W
  5356. Connector Tip: mini USB
  5357. Colour: Black
  5358.  
  5359. Compatible Part #s: KP.01...</p>
  5360.  
  5361.            
  5362.              <a
  5363.                href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5364.                class="productitem--link"
  5365.                data-product-page-link
  5366.              >
  5367.                View full details
  5368.              </a>
  5369.            
  5370.          </div>
  5371.        
  5372.      </div>
  5373.  
  5374.      
  5375.        
  5376.          
  5377.          
  5378.          
  5379.  
  5380.          
  5381.          
  5382.  
  5383.          
  5384.  
  5385.          
  5386.  
  5387.          <div class="productitem--actions" data-product-actions>
  5388.            <div class="productitem--listview-price">
  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.  
  5418.  
  5419.  
  5420. <div class="price productitem__price ">
  5421.  
  5422.    <div
  5423.      class="price__compare-at visible"
  5424.      data-price-compare-container
  5425.    >
  5426.  
  5427.      
  5428.        <span class="money price__original" data-price-original></span>
  5429.      
  5430.    </div>
  5431.  
  5432.  
  5433.    
  5434.      
  5435.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5436.        
  5437.          <span class="visually-hidden">Original price</span>
  5438.          <span class="money price__compare-at--min" data-price-compare-min>
  5439.            $90.99
  5440.          </span>
  5441.          -
  5442.          <span class="visually-hidden">Original price</span>
  5443.          <span class="money price__compare-at--max" data-price-compare-max>
  5444.            $90.99
  5445.          </span>
  5446.        
  5447.      </div>
  5448.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5449.        <span class="visually-hidden">Original price</span>
  5450.        <span class="money price__compare-at--single" data-price-compare>
  5451.          
  5452.        </span>
  5453.      </div>
  5454.    
  5455.  
  5456.  
  5457.  <div class="price__current price__current--emphasize " data-price-container>
  5458.  
  5459.    
  5460.  
  5461.    
  5462.      
  5463.      
  5464.      <span class="money" data-price>
  5465.        $90.99
  5466.      </span>
  5467.    
  5468.    
  5469.  </div>
  5470.  
  5471.  
  5472.    
  5473.    <div class="price__current--hidden" data-current-price-range-hidden>
  5474.      
  5475.        <span class="money price__current--min" data-price-min>$90.99</span>
  5476.        -
  5477.        <span class="money price__current--max" data-price-max>$90.99</span>
  5478.      
  5479.    </div>
  5480.    <div class="price__current--hidden" data-current-price-hidden>
  5481.      <span class="visually-hidden">Current price</span>
  5482.      <span class="money" data-price>
  5483.        $90.99
  5484.      </span>
  5485.    </div>
  5486.  
  5487.  
  5488.  
  5489.    
  5490.    
  5491.    
  5492.    
  5493.  
  5494.    <div
  5495.      class="
  5496.        productitem__unit-price
  5497.        hidden
  5498.      "
  5499.      data-unit-price
  5500.    >
  5501.      <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>
  5502.    </div>
  5503.  
  5504.  
  5505.  
  5506. </div>
  5507.  
  5508.  
  5509.            </div>
  5510.  
  5511.            <div class="productitem--listview-badge">
  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.  
  5538.  
  5539.  
  5540.            </div>
  5541.  
  5542.            
  5543.              <div
  5544.                class="
  5545.                  productitem--action
  5546.                  quickshop-button
  5547.                  
  5548.                "
  5549.              >
  5550.                <button
  5551.                  class="productitem--action-trigger button-secondary"
  5552.                  data-quickshop-full
  5553.                  
  5554.                  
  5555.                  type="button"
  5556.                >
  5557.                  Quick shop
  5558.                </button>
  5559.              </div>
  5560.            
  5561.  
  5562.            
  5563.              <div
  5564.                class="
  5565.                  productitem--action
  5566.                  atc--button
  5567.                  
  5568.                "
  5569.              >
  5570.                <button
  5571.                  class="productitem--action-trigger productitem--action-atc button-primary"
  5572.                  type="button"
  5573.                  aria-label="Add to cart"
  5574.                  
  5575.                    data-quick-buy
  5576.                  
  5577.                  data-variant-id="39666212798551"
  5578.                  
  5579.                >
  5580.                  <span class="atc-button--text">
  5581.                    Add to cart
  5582.                  </span>
  5583.                  <span class="atc-button--icon"><svg
  5584.  aria-hidden="true"
  5585.  focusable="false"
  5586.  role="presentation"
  5587.  width="26"
  5588.  height="26"
  5589.  viewBox="0 0 26 26"
  5590.  xmlns="http://www.w3.org/2000/svg"
  5591. >
  5592.  <g fill-rule="nonzero" fill="currentColor">
  5593.    <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"/>
  5594.  </g>
  5595. </svg></span>
  5596.                </button>
  5597.              </div>
  5598.            
  5599.          </div>
  5600.        
  5601.      
  5602.    </div>
  5603.  </div>
  5604.  
  5605.  
  5606.    <script type="application/json" data-quick-buy-settings>
  5607.      {
  5608.        "cart_redirection": true,
  5609.        "money_format": "${{amount}}"
  5610.      }
  5611.    </script>
  5612.  
  5613. </li>
  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.  
  5651.  
  5652.  
  5653. <li
  5654.  class="productgrid--item  imagestyle--natural    productitem--sale  productitem--emphasis      show-actions--mobile"
  5655.  data-product-item
  5656.  data-product-quickshop-url="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5657.  
  5658. >
  5659.  <div class="productitem" data-product-item-content>
  5660.    
  5661.    
  5662.    
  5663.    
  5664.  
  5665.    
  5666.  
  5667.    
  5668.  
  5669.    <div class="productitem__container">
  5670.      
  5671.  
  5672.      <div class="productitem__image-container">
  5673.        <a target="_blank"
  5674.          class="productitem--image-link"
  5675.          href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5676.          aria-label="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5677.          tabindex="-1"
  5678.          data-product-page-link
  5679.        >
  5680.          <figure
  5681.            class="productitem--image"
  5682.            data-product-item-image
  5683.            
  5684.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5685.            
  5686.          >
  5687.            
  5688.              
  5689.              
  5690.  
  5691.  
  5692.    <noscript data-rimg-noscript>
  5693.      <img loading="lazy"
  5694.        
  5695.          src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  5696.        
  5697.  
  5698.        alt="B156HTN03.6"
  5699.        data-rimg="noscript"
  5700.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945 1x"
  5701.        class="productitem--image-primary"
  5702.        
  5703.        
  5704.      >
  5705.    </noscript>
  5706.  
  5707.  
  5708.  <img loading="lazy"
  5709.    
  5710.      src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  5711.    
  5712.    alt="B156HTN03.6"
  5713.  
  5714.    
  5715.      data-rimg="lazy"
  5716.      data-rimg-scale="1"
  5717.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_{size}.jpg?v=1725475945"
  5718.      data-rimg-max="500x500"
  5719.      data-rimg-crop="false"
  5720.      
  5721.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  5722.    
  5723.  
  5724.    class="productitem--image-primary"
  5725.    
  5726.    
  5727.  >
  5728.  
  5729.  
  5730.  
  5731.  <div data-rimg-canvas></div>
  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.  
  5766.  
  5767.  
  5768.  <span class="productitem__badge productitem__badge--sale"
  5769.    data-badge-sales
  5770.    
  5771.  >
  5772.    <span data-badge-sales-range>
  5773.      
  5774.        
  5775.          Save <span data-price-percent-saved>28</span>%
  5776.        
  5777.      
  5778.    </span>
  5779.    <span data-badge-sales-single style="display: none;">
  5780.      
  5781.        Save <span data-price-percent-saved></span>%
  5782.      
  5783.    </span>
  5784.  </span>
  5785.          </figure>
  5786.        </a>
  5787.      </div><div class="productitem--info">
  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.  
  5823.  
  5824.  
  5825. <div class="price productitem__price ">
  5826.  
  5827.    <div
  5828.      class="price__compare-at visible"
  5829.      data-price-compare-container
  5830.    >
  5831.  
  5832.      
  5833.        <span class="visually-hidden">Original price</span>
  5834.        <span class="money price__compare-at--single" data-price-compare>
  5835.          $147.99
  5836.        </span>
  5837.      
  5838.    </div>
  5839.  
  5840.  
  5841.    
  5842.      
  5843.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5844.        
  5845.          <span class="visually-hidden">Original price</span>
  5846.          <span class="money price__compare-at--min" data-price-compare-min>
  5847.            $147.99
  5848.          </span>
  5849.          -
  5850.          <span class="visually-hidden">Original price</span>
  5851.          <span class="money price__compare-at--max" data-price-compare-max>
  5852.            $147.99
  5853.          </span>
  5854.        
  5855.      </div>
  5856.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5857.        <span class="visually-hidden">Original price</span>
  5858.        <span class="money price__compare-at--single" data-price-compare>
  5859.          $147.99
  5860.        </span>
  5861.      </div>
  5862.    
  5863.  
  5864.  
  5865.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  5866.  
  5867.    
  5868.  
  5869.    
  5870.      
  5871.      
  5872.        <span class="visually-hidden">Current price</span>
  5873.      
  5874.      <span class="money" data-price>
  5875.        $105.98
  5876.      </span>
  5877.    
  5878.    
  5879.  </div>
  5880.  
  5881.  
  5882.    
  5883.    <div class="price__current--hidden" data-current-price-range-hidden>
  5884.      
  5885.        <span class="money price__current--min" data-price-min>$105.98</span>
  5886.        -
  5887.        <span class="money price__current--max" data-price-max>$105.98</span>
  5888.      
  5889.    </div>
  5890.    <div class="price__current--hidden" data-current-price-hidden>
  5891.      <span class="visually-hidden">Current price</span>
  5892.      <span class="money" data-price>
  5893.        $105.98
  5894.      </span>
  5895.    </div>
  5896.  
  5897.  
  5898.  
  5899.    
  5900.    
  5901.    
  5902.    
  5903.  
  5904.    <div
  5905.      class="
  5906.        productitem__unit-price
  5907.        hidden
  5908.      "
  5909.      data-unit-price
  5910.    >
  5911.      <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>
  5912.    </div>
  5913.  
  5914.  
  5915.  
  5916. </div>
  5917.  
  5918.  
  5919.        
  5920.  
  5921.        <h2 class="productitem--title">
  5922.          <a href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops" data-product-page-link>
  5923.            15.6 FHD 1920x1080 Lcd Led Screen Lenovo Y50-70 Laptops B156HTN03.6
  5924.          </a>
  5925.        </h2>
  5926.  
  5927.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5928.        <div class="star_container 3929811353687"></div>
  5929.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5930.  
  5931.        
  5932.          
  5933.            <span class="productitem--vendor">
  5934.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  5935.            </span>
  5936.          
  5937.        
  5938.  
  5939.        
  5940.  
  5941.        
  5942.          
  5943.            <div class="productitem__stock-level">
  5944.              <!--
  5945.  
  5946.  
  5947.  
  5948.  
  5949.  
  5950.  
  5951.  
  5952. <div class="product-stock-level-wrapper" >
  5953.  
  5954.    <span class="
  5955.  product-stock-level
  5956.  product-stock-level--continue-selling
  5957.  
  5958. ">
  5959.      
  5960.  
  5961.      <span class="product-stock-level__text">
  5962.        
  5963.        <div class="product-stock-level__badge-text">
  5964.          
  5965.  
  5966.    In stock
  5967.  
  5968.  
  5969.        </div>
  5970.      </span>
  5971.    </span>
  5972.  
  5973. </div>
  5974. -->
  5975.              
  5976.  
  5977.  
  5978.    
  5979.      <b style="color:green">In stock</b>
  5980.    
  5981.  
  5982.  
  5983.  
  5984.  
  5985.  
  5986.  
  5987.  
  5988.            </div>
  5989.          
  5990.  
  5991.          
  5992.            
  5993.          
  5994.        
  5995.  
  5996.        
  5997.          <div class="productitem--description">
  5998.            <p>
  5999. 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>
  6000.  
  6001.            
  6002.              <a
  6003.                href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  6004.                class="productitem--link"
  6005.                data-product-page-link
  6006.              >
  6007.                View full details
  6008.              </a>
  6009.            
  6010.          </div>
  6011.        
  6012.      </div>
  6013.  
  6014.      
  6015.        
  6016.          
  6017.          
  6018.          
  6019.  
  6020.          
  6021.          
  6022.  
  6023.          
  6024.  
  6025.          
  6026.  
  6027.          <div class="productitem--actions" data-product-actions>
  6028.            <div class="productitem--listview-price">
  6029.              
  6030.  
  6031.  
  6032.  
  6033.  
  6034.  
  6035.  
  6036.  
  6037.  
  6038.  
  6039.  
  6040.  
  6041.  
  6042.  
  6043.  
  6044.  
  6045.  
  6046.  
  6047.  
  6048.  
  6049.  
  6050.  
  6051.  
  6052.  
  6053.  
  6054.  
  6055.  
  6056.  
  6057.  
  6058.  
  6059.  
  6060. <div class="price productitem__price ">
  6061.  
  6062.    <div
  6063.      class="price__compare-at visible"
  6064.      data-price-compare-container
  6065.    >
  6066.  
  6067.      
  6068.        <span class="visually-hidden">Original price</span>
  6069.        <span class="money price__compare-at--single" data-price-compare>
  6070.          $147.99
  6071.        </span>
  6072.      
  6073.    </div>
  6074.  
  6075.  
  6076.    
  6077.      
  6078.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6079.        
  6080.          <span class="visually-hidden">Original price</span>
  6081.          <span class="money price__compare-at--min" data-price-compare-min>
  6082.            $147.99
  6083.          </span>
  6084.          -
  6085.          <span class="visually-hidden">Original price</span>
  6086.          <span class="money price__compare-at--max" data-price-compare-max>
  6087.            $147.99
  6088.          </span>
  6089.        
  6090.      </div>
  6091.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6092.        <span class="visually-hidden">Original price</span>
  6093.        <span class="money price__compare-at--single" data-price-compare>
  6094.          $147.99
  6095.        </span>
  6096.      </div>
  6097.    
  6098.  
  6099.  
  6100.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  6101.  
  6102.    
  6103.  
  6104.    
  6105.      
  6106.      
  6107.        <span class="visually-hidden">Current price</span>
  6108.      
  6109.      <span class="money" data-price>
  6110.        $105.98
  6111.      </span>
  6112.    
  6113.    
  6114.  </div>
  6115.  
  6116.  
  6117.    
  6118.    <div class="price__current--hidden" data-current-price-range-hidden>
  6119.      
  6120.        <span class="money price__current--min" data-price-min>$105.98</span>
  6121.        -
  6122.        <span class="money price__current--max" data-price-max>$105.98</span>
  6123.      
  6124.    </div>
  6125.    <div class="price__current--hidden" data-current-price-hidden>
  6126.      <span class="visually-hidden">Current price</span>
  6127.      <span class="money" data-price>
  6128.        $105.98
  6129.      </span>
  6130.    </div>
  6131.  
  6132.  
  6133.  
  6134.    
  6135.    
  6136.    
  6137.    
  6138.  
  6139.    <div
  6140.      class="
  6141.        productitem__unit-price
  6142.        hidden
  6143.      "
  6144.      data-unit-price
  6145.    >
  6146.      <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>
  6147.    </div>
  6148.  
  6149.  
  6150.  
  6151. </div>
  6152.  
  6153.  
  6154.            </div>
  6155.  
  6156.            <div class="productitem--listview-badge">
  6157.              
  6158.  
  6159.  
  6160.  
  6161.  
  6162.  
  6163.  
  6164.  
  6165.  
  6166.  
  6167.  
  6168.  
  6169.  
  6170.  
  6171.  
  6172.  
  6173.  
  6174.  
  6175.  
  6176.  
  6177.  
  6178.  
  6179.  
  6180.  
  6181.  
  6182.  
  6183.  
  6184.  
  6185.  
  6186.  
  6187.  
  6188.  
  6189.  <span class="productitem__badge productitem__badge--sale"
  6190.    data-badge-sales
  6191.    
  6192.  >
  6193.    <span data-badge-sales-range>
  6194.      
  6195.        
  6196.          Save <span data-price-percent-saved>28</span>%
  6197.        
  6198.      
  6199.    </span>
  6200.    <span data-badge-sales-single style="display: none;">
  6201.      
  6202.        Save <span data-price-percent-saved></span>%
  6203.      
  6204.    </span>
  6205.  </span>
  6206.            </div>
  6207.  
  6208.            
  6209.              <div
  6210.                class="
  6211.                  productitem--action
  6212.                  quickshop-button
  6213.                  
  6214.                "
  6215.              >
  6216.                <button
  6217.                  class="productitem--action-trigger button-secondary"
  6218.                  data-quickshop-full
  6219.                  
  6220.                  
  6221.                  type="button"
  6222.                >
  6223.                  Quick shop
  6224.                </button>
  6225.              </div>
  6226.            
  6227.  
  6228.            
  6229.              <div
  6230.                class="
  6231.                  productitem--action
  6232.                  atc--button
  6233.                  
  6234.                "
  6235.              >
  6236.                <button
  6237.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6238.                  type="button"
  6239.                  aria-label="Add to cart"
  6240.                  
  6241.                    data-quick-buy
  6242.                  
  6243.                  data-variant-id="29564283551831"
  6244.                  
  6245.                >
  6246.                  <span class="atc-button--text">
  6247.                    Add to cart
  6248.                  </span>
  6249.                  <span class="atc-button--icon"><svg
  6250.  aria-hidden="true"
  6251.  focusable="false"
  6252.  role="presentation"
  6253.  width="26"
  6254.  height="26"
  6255.  viewBox="0 0 26 26"
  6256.  xmlns="http://www.w3.org/2000/svg"
  6257. >
  6258.  <g fill-rule="nonzero" fill="currentColor">
  6259.    <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"/>
  6260.  </g>
  6261. </svg></span>
  6262.                </button>
  6263.              </div>
  6264.            
  6265.          </div>
  6266.        
  6267.      
  6268.    </div>
  6269.  </div>
  6270.  
  6271.  
  6272.    <script type="application/json" data-quick-buy-settings>
  6273.      {
  6274.        "cart_redirection": true,
  6275.        "money_format": "${{amount}}"
  6276.      }
  6277.    </script>
  6278.  
  6279. </li>
  6280.    
  6281.      
  6282.  
  6283.  
  6284.  
  6285.  
  6286.  
  6287.  
  6288.  
  6289.  
  6290.  
  6291.  
  6292.  
  6293.  
  6294.  
  6295.  
  6296.  
  6297.  
  6298.  
  6299.  
  6300.  
  6301.  
  6302.  
  6303.  
  6304.  
  6305.  
  6306.  
  6307.  
  6308.  
  6309.  
  6310.  
  6311.  
  6312.  
  6313.  
  6314.    
  6315.  
  6316.  
  6317.  
  6318. <li
  6319.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6320.  data-product-item
  6321.  data-product-quickshop-url="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6322.  
  6323. >
  6324.  <div class="productitem" data-product-item-content>
  6325.    
  6326.    
  6327.    
  6328.    
  6329.  
  6330.    
  6331.  
  6332.    
  6333.  
  6334.    <div class="productitem__container">
  6335.      
  6336.  
  6337.      <div class="productitem__image-container">
  6338.        <a target="_blank"
  6339.          class="productitem--image-link"
  6340.          href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6341.          aria-label="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6342.          tabindex="-1"
  6343.          data-product-page-link
  6344.        >
  6345.          <figure
  6346.            class="productitem--image"
  6347.            data-product-item-image
  6348.            
  6349.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6350.            
  6351.          >
  6352.            
  6353.              
  6354.              
  6355.  
  6356.  
  6357.    <noscript data-rimg-noscript>
  6358.      <img loading="lazy"
  6359.        
  6360.          src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6361.        
  6362.  
  6363.        alt=""
  6364.        data-rimg="noscript"
  6365.        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"
  6366.        class="productitem--image-primary"
  6367.        
  6368.        
  6369.      >
  6370.    </noscript>
  6371.  
  6372.  
  6373.  <img loading="lazy"
  6374.    
  6375.      src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6376.    
  6377.    alt=""
  6378.  
  6379.    
  6380.      data-rimg="lazy"
  6381.      data-rimg-scale="1"
  6382.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_{size}.jpg?v=1648038527"
  6383.      data-rimg-max="1000x1000"
  6384.      data-rimg-crop="false"
  6385.      
  6386.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  6387.    
  6388.  
  6389.    class="productitem--image-primary"
  6390.    
  6391.    
  6392.  >
  6393.  
  6394.  
  6395.  
  6396.  <div data-rimg-canvas></div>
  6397.  
  6398.  
  6399.            
  6400.  
  6401.            
  6402.  
  6403.  
  6404.  
  6405.  
  6406.  
  6407.  
  6408.  
  6409.  
  6410.  
  6411.  
  6412.  
  6413.  
  6414.  
  6415.  
  6416.  
  6417.  
  6418.  
  6419.  
  6420.  
  6421.  
  6422.  
  6423.  
  6424.  
  6425.  
  6426.  
  6427.  
  6428.  
  6429.          </figure>
  6430.        </a>
  6431.      </div><div class="productitem--info">
  6432.        
  6433.          
  6434.  
  6435.        
  6436.  
  6437.        
  6438.          
  6439.  
  6440.  
  6441.  
  6442.  
  6443.  
  6444.  
  6445.  
  6446.  
  6447.  
  6448.  
  6449.  
  6450.  
  6451.  
  6452.  
  6453.  
  6454.  
  6455.  
  6456.  
  6457.  
  6458.  
  6459.  
  6460.  
  6461.  
  6462.  
  6463.  
  6464.  
  6465.  
  6466.  
  6467.  
  6468.  
  6469. <div class="price productitem__price ">
  6470.  
  6471.    <div
  6472.      class="price__compare-at visible"
  6473.      data-price-compare-container
  6474.    >
  6475.  
  6476.      
  6477.        <span class="money price__original" data-price-original></span>
  6478.      
  6479.    </div>
  6480.  
  6481.  
  6482.    
  6483.      
  6484.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6485.        
  6486.          <span class="visually-hidden">Original price</span>
  6487.          <span class="money price__compare-at--min" data-price-compare-min>
  6488.            $115.98
  6489.          </span>
  6490.          -
  6491.          <span class="visually-hidden">Original price</span>
  6492.          <span class="money price__compare-at--max" data-price-compare-max>
  6493.            $115.98
  6494.          </span>
  6495.        
  6496.      </div>
  6497.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6498.        <span class="visually-hidden">Original price</span>
  6499.        <span class="money price__compare-at--single" data-price-compare>
  6500.          
  6501.        </span>
  6502.      </div>
  6503.    
  6504.  
  6505.  
  6506.  <div class="price__current price__current--emphasize " data-price-container>
  6507.  
  6508.    
  6509.  
  6510.    
  6511.      
  6512.      
  6513.      <span class="money" data-price>
  6514.        $115.98
  6515.      </span>
  6516.    
  6517.    
  6518.  </div>
  6519.  
  6520.  
  6521.    
  6522.    <div class="price__current--hidden" data-current-price-range-hidden>
  6523.      
  6524.        <span class="money price__current--min" data-price-min>$115.98</span>
  6525.        -
  6526.        <span class="money price__current--max" data-price-max>$115.98</span>
  6527.      
  6528.    </div>
  6529.    <div class="price__current--hidden" data-current-price-hidden>
  6530.      <span class="visually-hidden">Current price</span>
  6531.      <span class="money" data-price>
  6532.        $115.98
  6533.      </span>
  6534.    </div>
  6535.  
  6536.  
  6537.  
  6538.    
  6539.    
  6540.    
  6541.    
  6542.  
  6543.    <div
  6544.      class="
  6545.        productitem__unit-price
  6546.        hidden
  6547.      "
  6548.      data-unit-price
  6549.    >
  6550.      <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>
  6551.    </div>
  6552.  
  6553.  
  6554.  
  6555. </div>
  6556.  
  6557.  
  6558.        
  6559.  
  6560.        <h2 class="productitem--title">
  6561.          <a href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw" data-product-page-link>
  6562.            Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW
  6563.          </a>
  6564.        </h2>
  6565.  
  6566.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  6567.        <div class="star_container 3929789694039"></div>
  6568.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  6569.  
  6570.        
  6571.          
  6572.            <span class="productitem--vendor">
  6573.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  6574.            </span>
  6575.          
  6576.        
  6577.  
  6578.        
  6579.  
  6580.        
  6581.          
  6582.            <div class="productitem__stock-level">
  6583.              <!--
  6584.  
  6585.  
  6586.  
  6587.  
  6588.  
  6589.  
  6590.  
  6591. <div class="product-stock-level-wrapper" >
  6592.  
  6593.    <span class="
  6594.  product-stock-level
  6595.  product-stock-level--continue-selling
  6596.  
  6597. ">
  6598.      
  6599.  
  6600.      <span class="product-stock-level__text">
  6601.        
  6602.        <div class="product-stock-level__badge-text">
  6603.          
  6604.  
  6605.    In stock
  6606.  
  6607.  
  6608.        </div>
  6609.      </span>
  6610.    </span>
  6611.  
  6612. </div>
  6613. -->
  6614.              
  6615.  
  6616.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  6617.  
  6618.  
  6619.  
  6620.  
  6621.  
  6622.  
  6623.  
  6624.            </div>
  6625.          
  6626.  
  6627.          
  6628.            
  6629.          
  6630.        
  6631.  
  6632.        
  6633.          <div class="productitem--description">
  6634.            <p>
  6635. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  6636.  
  6637. Compatible Part #s: KGYYH, 48DGW, N140HCE-G52
  6638.  
  6639. Compatible Models:
  6640. Dell Lati...</p>
  6641.  
  6642.            
  6643.              <a
  6644.                href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6645.                class="productitem--link"
  6646.                data-product-page-link
  6647.              >
  6648.                View full details
  6649.              </a>
  6650.            
  6651.          </div>
  6652.        
  6653.      </div>
  6654.  
  6655.      
  6656.        
  6657.          
  6658.          
  6659.          
  6660.  
  6661.          
  6662.          
  6663.  
  6664.          
  6665.  
  6666.          
  6667.  
  6668.          <div class="productitem--actions" data-product-actions>
  6669.            <div class="productitem--listview-price">
  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.  
  6699.  
  6700.  
  6701. <div class="price productitem__price ">
  6702.  
  6703.    <div
  6704.      class="price__compare-at visible"
  6705.      data-price-compare-container
  6706.    >
  6707.  
  6708.      
  6709.        <span class="money price__original" data-price-original></span>
  6710.      
  6711.    </div>
  6712.  
  6713.  
  6714.    
  6715.      
  6716.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6717.        
  6718.          <span class="visually-hidden">Original price</span>
  6719.          <span class="money price__compare-at--min" data-price-compare-min>
  6720.            $115.98
  6721.          </span>
  6722.          -
  6723.          <span class="visually-hidden">Original price</span>
  6724.          <span class="money price__compare-at--max" data-price-compare-max>
  6725.            $115.98
  6726.          </span>
  6727.        
  6728.      </div>
  6729.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6730.        <span class="visually-hidden">Original price</span>
  6731.        <span class="money price__compare-at--single" data-price-compare>
  6732.          
  6733.        </span>
  6734.      </div>
  6735.    
  6736.  
  6737.  
  6738.  <div class="price__current price__current--emphasize " data-price-container>
  6739.  
  6740.    
  6741.  
  6742.    
  6743.      
  6744.      
  6745.      <span class="money" data-price>
  6746.        $115.98
  6747.      </span>
  6748.    
  6749.    
  6750.  </div>
  6751.  
  6752.  
  6753.    
  6754.    <div class="price__current--hidden" data-current-price-range-hidden>
  6755.      
  6756.        <span class="money price__current--min" data-price-min>$115.98</span>
  6757.        -
  6758.        <span class="money price__current--max" data-price-max>$115.98</span>
  6759.      
  6760.    </div>
  6761.    <div class="price__current--hidden" data-current-price-hidden>
  6762.      <span class="visually-hidden">Current price</span>
  6763.      <span class="money" data-price>
  6764.        $115.98
  6765.      </span>
  6766.    </div>
  6767.  
  6768.  
  6769.  
  6770.    
  6771.    
  6772.    
  6773.    
  6774.  
  6775.    <div
  6776.      class="
  6777.        productitem__unit-price
  6778.        hidden
  6779.      "
  6780.      data-unit-price
  6781.    >
  6782.      <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>
  6783.    </div>
  6784.  
  6785.  
  6786.  
  6787. </div>
  6788.  
  6789.  
  6790.            </div>
  6791.  
  6792.            <div class="productitem--listview-badge">
  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.  
  6819.  
  6820.  
  6821.            </div>
  6822.  
  6823.            
  6824.              <div
  6825.                class="
  6826.                  productitem--action
  6827.                  quickshop-button
  6828.                  
  6829.                "
  6830.              >
  6831.                <button
  6832.                  class="productitem--action-trigger button-secondary"
  6833.                  data-quickshop-full
  6834.                  
  6835.                  
  6836.                  type="button"
  6837.                >
  6838.                  Quick shop
  6839.                </button>
  6840.              </div>
  6841.            
  6842.  
  6843.            
  6844.              <div
  6845.                class="
  6846.                  productitem--action
  6847.                  atc--button
  6848.                  
  6849.                "
  6850.              >
  6851.                <button
  6852.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6853.                  type="button"
  6854.                  aria-label="Add to cart"
  6855.                  
  6856.                    data-quick-buy
  6857.                  
  6858.                  data-variant-id="29462328246359"
  6859.                  
  6860.                >
  6861.                  <span class="atc-button--text">
  6862.                    Add to cart
  6863.                  </span>
  6864.                  <span class="atc-button--icon"><svg
  6865.  aria-hidden="true"
  6866.  focusable="false"
  6867.  role="presentation"
  6868.  width="26"
  6869.  height="26"
  6870.  viewBox="0 0 26 26"
  6871.  xmlns="http://www.w3.org/2000/svg"
  6872. >
  6873.  <g fill-rule="nonzero" fill="currentColor">
  6874.    <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"/>
  6875.  </g>
  6876. </svg></span>
  6877.                </button>
  6878.              </div>
  6879.            
  6880.          </div>
  6881.        
  6882.      
  6883.    </div>
  6884.  </div>
  6885.  
  6886.  
  6887.    <script type="application/json" data-quick-buy-settings>
  6888.      {
  6889.        "cart_redirection": true,
  6890.        "money_format": "${{amount}}"
  6891.      }
  6892.    </script>
  6893.  
  6894. </li>
  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.  
  6931.  
  6932.  
  6933. <li
  6934.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6935.  data-product-item
  6936.  data-product-quickshop-url="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6937.  
  6938. >
  6939.  <div class="productitem" data-product-item-content>
  6940.    
  6941.    
  6942.    
  6943.    
  6944.  
  6945.    
  6946.  
  6947.    
  6948.  
  6949.    <div class="productitem__container">
  6950.      
  6951.  
  6952.      <div class="productitem__image-container">
  6953.        <a target="_blank"
  6954.          class="productitem--image-link"
  6955.          href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6956.          aria-label="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6957.          tabindex="-1"
  6958.          data-product-page-link
  6959.        >
  6960.          <figure
  6961.            class="productitem--image"
  6962.            data-product-item-image
  6963.            
  6964.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6965.            
  6966.          >
  6967.            
  6968.              
  6969.              
  6970.  
  6971.  
  6972.    <noscript data-rimg-noscript>
  6973.      <img loading="lazy"
  6974.        
  6975.          src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  6976.        
  6977.  
  6978.        alt=""
  6979.        data-rimg="noscript"
  6980.        srcset="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251 1x, //laptopparts.ca/cdn/shop/products/molex1_599x599.jpg?v=1697125251 1.17x"
  6981.        class="productitem--image-primary"
  6982.        
  6983.        
  6984.      >
  6985.    </noscript>
  6986.  
  6987.  
  6988.  <img loading="lazy"
  6989.    
  6990.      src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  6991.    
  6992.    alt=""
  6993.  
  6994.    
  6995.      data-rimg="lazy"
  6996.      data-rimg-scale="1"
  6997.      data-rimg-template="//laptopparts.ca/cdn/shop/products/molex1_{size}.jpg?v=1697125251"
  6998.      data-rimg-max="603x603"
  6999.      data-rimg-crop="false"
  7000.      
  7001.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7002.    
  7003.  
  7004.    class="productitem--image-primary"
  7005.    
  7006.    
  7007.  >
  7008.  
  7009.  
  7010.  
  7011.  <div data-rimg-canvas></div>
  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.  
  7042.  
  7043.  
  7044.          </figure>
  7045.        </a>
  7046.      </div><div class="productitem--info">
  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.  
  7082.  
  7083.  
  7084. <div class="price productitem__price ">
  7085.  
  7086.    <div
  7087.      class="price__compare-at visible"
  7088.      data-price-compare-container
  7089.    >
  7090.  
  7091.      
  7092.        <span class="money price__original" data-price-original></span>
  7093.      
  7094.    </div>
  7095.  
  7096.  
  7097.    
  7098.      
  7099.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7100.        
  7101.          <span class="visually-hidden">Original price</span>
  7102.          <span class="money price__compare-at--min" data-price-compare-min>
  7103.            $36.99
  7104.          </span>
  7105.          -
  7106.          <span class="visually-hidden">Original price</span>
  7107.          <span class="money price__compare-at--max" data-price-compare-max>
  7108.            $36.99
  7109.          </span>
  7110.        
  7111.      </div>
  7112.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7113.        <span class="visually-hidden">Original price</span>
  7114.        <span class="money price__compare-at--single" data-price-compare>
  7115.          
  7116.        </span>
  7117.      </div>
  7118.    
  7119.  
  7120.  
  7121.  <div class="price__current price__current--emphasize " data-price-container>
  7122.  
  7123.    
  7124.  
  7125.    
  7126.      
  7127.      
  7128.      <span class="money" data-price>
  7129.        $36.99
  7130.      </span>
  7131.    
  7132.    
  7133.  </div>
  7134.  
  7135.  
  7136.    
  7137.    <div class="price__current--hidden" data-current-price-range-hidden>
  7138.      
  7139.        <span class="money price__current--min" data-price-min>$36.99</span>
  7140.        -
  7141.        <span class="money price__current--max" data-price-max>$36.99</span>
  7142.      
  7143.    </div>
  7144.    <div class="price__current--hidden" data-current-price-hidden>
  7145.      <span class="visually-hidden">Current price</span>
  7146.      <span class="money" data-price>
  7147.        $36.99
  7148.      </span>
  7149.    </div>
  7150.  
  7151.  
  7152.  
  7153.    
  7154.    
  7155.    
  7156.    
  7157.  
  7158.    <div
  7159.      class="
  7160.        productitem__unit-price
  7161.        hidden
  7162.      "
  7163.      data-unit-price
  7164.    >
  7165.      <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>
  7166.    </div>
  7167.  
  7168.  
  7169.  
  7170. </div>
  7171.  
  7172.  
  7173.        
  7174.  
  7175.        <h2 class="productitem--title">
  7176.          <a href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable" data-product-page-link>
  7177.            4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable
  7178.          </a>
  7179.        </h2>
  7180.  
  7181.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7182.        <div class="star_container 1416490647575"></div>
  7183.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7184.  
  7185.        
  7186.          
  7187.            <span class="productitem--vendor">
  7188.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  7189.            </span>
  7190.          
  7191.        
  7192.  
  7193.        
  7194.  
  7195.        
  7196.          
  7197.            <div class="productitem__stock-level">
  7198.              <!--
  7199.  
  7200.  
  7201.  
  7202.  
  7203.  
  7204.  
  7205.  
  7206. <div class="product-stock-level-wrapper" >
  7207.  
  7208.    <span class="
  7209.  product-stock-level
  7210.  product-stock-level--continue-selling
  7211.  
  7212. ">
  7213.      
  7214.  
  7215.      <span class="product-stock-level__text">
  7216.        
  7217.        <div class="product-stock-level__badge-text">
  7218.          
  7219.  
  7220.    In stock
  7221.  
  7222.  
  7223.        </div>
  7224.      </span>
  7225.    </span>
  7226.  
  7227. </div>
  7228. -->
  7229.              
  7230.  
  7231.  
  7232.    
  7233.      <b style="color:green">In stock</b>
  7234.    
  7235.  
  7236.  
  7237.  
  7238.  
  7239.  
  7240.  
  7241.  
  7242.            </div>
  7243.          
  7244.  
  7245.          
  7246.            
  7247.          
  7248.        
  7249.  
  7250.        
  7251.          <div class="productitem--description">
  7252.            <p>4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable</p>
  7253.  
  7254.            
  7255.          </div>
  7256.        
  7257.      </div>
  7258.  
  7259.      
  7260.        
  7261.          
  7262.          
  7263.          
  7264.  
  7265.          
  7266.          
  7267.  
  7268.          
  7269.  
  7270.          
  7271.  
  7272.          <div class="productitem--actions" data-product-actions>
  7273.            <div class="productitem--listview-price">
  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.  
  7303.  
  7304.  
  7305. <div class="price productitem__price ">
  7306.  
  7307.    <div
  7308.      class="price__compare-at visible"
  7309.      data-price-compare-container
  7310.    >
  7311.  
  7312.      
  7313.        <span class="money price__original" data-price-original></span>
  7314.      
  7315.    </div>
  7316.  
  7317.  
  7318.    
  7319.      
  7320.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7321.        
  7322.          <span class="visually-hidden">Original price</span>
  7323.          <span class="money price__compare-at--min" data-price-compare-min>
  7324.            $36.99
  7325.          </span>
  7326.          -
  7327.          <span class="visually-hidden">Original price</span>
  7328.          <span class="money price__compare-at--max" data-price-compare-max>
  7329.            $36.99
  7330.          </span>
  7331.        
  7332.      </div>
  7333.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7334.        <span class="visually-hidden">Original price</span>
  7335.        <span class="money price__compare-at--single" data-price-compare>
  7336.          
  7337.        </span>
  7338.      </div>
  7339.    
  7340.  
  7341.  
  7342.  <div class="price__current price__current--emphasize " data-price-container>
  7343.  
  7344.    
  7345.  
  7346.    
  7347.      
  7348.      
  7349.      <span class="money" data-price>
  7350.        $36.99
  7351.      </span>
  7352.    
  7353.    
  7354.  </div>
  7355.  
  7356.  
  7357.    
  7358.    <div class="price__current--hidden" data-current-price-range-hidden>
  7359.      
  7360.        <span class="money price__current--min" data-price-min>$36.99</span>
  7361.        -
  7362.        <span class="money price__current--max" data-price-max>$36.99</span>
  7363.      
  7364.    </div>
  7365.    <div class="price__current--hidden" data-current-price-hidden>
  7366.      <span class="visually-hidden">Current price</span>
  7367.      <span class="money" data-price>
  7368.        $36.99
  7369.      </span>
  7370.    </div>
  7371.  
  7372.  
  7373.  
  7374.    
  7375.    
  7376.    
  7377.    
  7378.  
  7379.    <div
  7380.      class="
  7381.        productitem__unit-price
  7382.        hidden
  7383.      "
  7384.      data-unit-price
  7385.    >
  7386.      <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>
  7387.    </div>
  7388.  
  7389.  
  7390.  
  7391. </div>
  7392.  
  7393.  
  7394.            </div>
  7395.  
  7396.            <div class="productitem--listview-badge">
  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.  
  7423.  
  7424.  
  7425.            </div>
  7426.  
  7427.            
  7428.              <div
  7429.                class="
  7430.                  productitem--action
  7431.                  quickshop-button
  7432.                  
  7433.                "
  7434.              >
  7435.                <button
  7436.                  class="productitem--action-trigger button-secondary"
  7437.                  data-quickshop-full
  7438.                  
  7439.                  
  7440.                  type="button"
  7441.                >
  7442.                  Quick shop
  7443.                </button>
  7444.              </div>
  7445.            
  7446.  
  7447.            
  7448.              <div
  7449.                class="
  7450.                  productitem--action
  7451.                  atc--button
  7452.                  
  7453.                "
  7454.              >
  7455.                <button
  7456.                  class="productitem--action-trigger productitem--action-atc button-primary"
  7457.                  type="button"
  7458.                  aria-label="Add to cart"
  7459.                  
  7460.                    data-quick-buy
  7461.                  
  7462.                  data-variant-id="12583329333271"
  7463.                  
  7464.                >
  7465.                  <span class="atc-button--text">
  7466.                    Add to cart
  7467.                  </span>
  7468.                  <span class="atc-button--icon"><svg
  7469.  aria-hidden="true"
  7470.  focusable="false"
  7471.  role="presentation"
  7472.  width="26"
  7473.  height="26"
  7474.  viewBox="0 0 26 26"
  7475.  xmlns="http://www.w3.org/2000/svg"
  7476. >
  7477.  <g fill-rule="nonzero" fill="currentColor">
  7478.    <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"/>
  7479.  </g>
  7480. </svg></span>
  7481.                </button>
  7482.              </div>
  7483.            
  7484.          </div>
  7485.        
  7486.      
  7487.    </div>
  7488.  </div>
  7489.  
  7490.  
  7491.    <script type="application/json" data-quick-buy-settings>
  7492.      {
  7493.        "cart_redirection": true,
  7494.        "money_format": "${{amount}}"
  7495.      }
  7496.    </script>
  7497.  
  7498. </li>
  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.  
  7535.  
  7536.  
  7537. <li
  7538.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  7539.  data-product-item
  7540.  data-product-quickshop-url="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7541.  
  7542. >
  7543.  <div class="productitem" data-product-item-content>
  7544.    
  7545.    
  7546.    
  7547.    
  7548.  
  7549.    
  7550.  
  7551.    
  7552.  
  7553.    <div class="productitem__container">
  7554.      
  7555.  
  7556.      <div class="productitem__image-container">
  7557.        <a target="_blank"
  7558.          class="productitem--image-link"
  7559.          href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7560.          aria-label="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7561.          tabindex="-1"
  7562.          data-product-page-link
  7563.        >
  7564.          <figure
  7565.            class="productitem--image"
  7566.            data-product-item-image
  7567.            
  7568.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7569.            
  7570.          >
  7571.            
  7572.              
  7573.              
  7574.  
  7575.  
  7576.    <noscript data-rimg-noscript>
  7577.      <img loading="lazy"
  7578.        
  7579.          src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7580.        
  7581.  
  7582.        alt="MacBook Pro"
  7583.        data-rimg="noscript"
  7584.        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"
  7585.        class="productitem--image-primary"
  7586.        
  7587.        
  7588.      >
  7589.    </noscript>
  7590.  
  7591.  
  7592.  <img loading="lazy"
  7593.    
  7594.      src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7595.    
  7596.    alt="MacBook Pro"
  7597.  
  7598.    
  7599.      data-rimg="lazy"
  7600.      data-rimg-scale="1"
  7601.      data-rimg-template="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_{size}.jpg?v=1726123088"
  7602.      data-rimg-max="1000x1000"
  7603.      data-rimg-crop="false"
  7604.      
  7605.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7606.    
  7607.  
  7608.    class="productitem--image-primary"
  7609.    
  7610.    
  7611.  >
  7612.  
  7613.  
  7614.  
  7615.  <div data-rimg-canvas></div>
  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.  
  7646.  
  7647.  
  7648.          </figure>
  7649.        </a>
  7650.      </div><div class="productitem--info">
  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.  
  7686.  
  7687.  
  7688. <div class="price productitem__price ">
  7689.  
  7690.    <div
  7691.      class="price__compare-at visible"
  7692.      data-price-compare-container
  7693.    >
  7694.  
  7695.      
  7696.        <span class="money price__original" data-price-original></span>
  7697.      
  7698.    </div>
  7699.  
  7700.  
  7701.    
  7702.      
  7703.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7704.        
  7705.          <span class="visually-hidden">Original price</span>
  7706.          <span class="money price__compare-at--min" data-price-compare-min>
  7707.            $40.98
  7708.          </span>
  7709.          -
  7710.          <span class="visually-hidden">Original price</span>
  7711.          <span class="money price__compare-at--max" data-price-compare-max>
  7712.            $40.98
  7713.          </span>
  7714.        
  7715.      </div>
  7716.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7717.        <span class="visually-hidden">Original price</span>
  7718.        <span class="money price__compare-at--single" data-price-compare>
  7719.          
  7720.        </span>
  7721.      </div>
  7722.    
  7723.  
  7724.  
  7725.  <div class="price__current price__current--emphasize " data-price-container>
  7726.  
  7727.    
  7728.  
  7729.    
  7730.      
  7731.      
  7732.      <span class="money" data-price>
  7733.        $40.98
  7734.      </span>
  7735.    
  7736.    
  7737.  </div>
  7738.  
  7739.  
  7740.    
  7741.    <div class="price__current--hidden" data-current-price-range-hidden>
  7742.      
  7743.        <span class="money price__current--min" data-price-min>$40.98</span>
  7744.        -
  7745.        <span class="money price__current--max" data-price-max>$40.98</span>
  7746.      
  7747.    </div>
  7748.    <div class="price__current--hidden" data-current-price-hidden>
  7749.      <span class="visually-hidden">Current price</span>
  7750.      <span class="money" data-price>
  7751.        $40.98
  7752.      </span>
  7753.    </div>
  7754.  
  7755.  
  7756.  
  7757.    
  7758.    
  7759.    
  7760.    
  7761.  
  7762.    <div
  7763.      class="
  7764.        productitem__unit-price
  7765.        hidden
  7766.      "
  7767.      data-unit-price
  7768.    >
  7769.      <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>
  7770.    </div>
  7771.  
  7772.  
  7773.  
  7774. </div>
  7775.  
  7776.  
  7777.        
  7778.  
  7779.        <h2 class="productitem--title">
  7780.          <a href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011" data-product-page-link>
  7781.            60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011
  7782.          </a>
  7783.        </h2>
  7784.  
  7785.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7786.        <div class="star_container 6872720015447"></div>
  7787.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7788.  
  7789.        
  7790.          
  7791.            <span class="productitem--vendor">
  7792.              <a href="/collections/vendors?q=Apple" title="Apple">Apple</a>
  7793.            </span>
  7794.          
  7795.        
  7796.  
  7797.        
  7798.  
  7799.        
  7800.          
  7801.            <div class="productitem__stock-level">
  7802.              <!--
  7803.  
  7804.  
  7805.  
  7806.  
  7807.  
  7808.  
  7809.  
  7810. <div class="product-stock-level-wrapper" >
  7811.  
  7812.    <span class="
  7813.  product-stock-level
  7814.  product-stock-level--continue-selling
  7815.  
  7816. ">
  7817.      
  7818.  
  7819.      <span class="product-stock-level__text">
  7820.        
  7821.        <div class="product-stock-level__badge-text">
  7822.          
  7823.  
  7824.    In stock
  7825.  
  7826.  
  7827.        </div>
  7828.      </span>
  7829.    </span>
  7830.  
  7831. </div>
  7832. -->
  7833.              
  7834.  
  7835.  
  7836.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  7837.  
  7838.  
  7839.  
  7840.  
  7841.            </div>
  7842.          
  7843.  
  7844.          
  7845.            
  7846.          
  7847.        
  7848.  
  7849.        
  7850.          <div class="productitem--description">
  7851.            <p>Plugs directly into AC outlet.
  7852. 60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011 
  7853. Input: 100-240V ~ 50-60Hz
  7854. Output: 1...</p>
  7855.  
  7856.            
  7857.              <a
  7858.                href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7859.                class="productitem--link"
  7860.                data-product-page-link
  7861.              >
  7862.                View full details
  7863.              </a>
  7864.            
  7865.          </div>
  7866.        
  7867.      </div>
  7868.  
  7869.      
  7870.        
  7871.          
  7872.          
  7873.          
  7874.  
  7875.          
  7876.          
  7877.  
  7878.          
  7879.  
  7880.          
  7881.  
  7882.          <div class="productitem--actions" data-product-actions>
  7883.            <div class="productitem--listview-price">
  7884.              
  7885.  
  7886.  
  7887.  
  7888.  
  7889.  
  7890.  
  7891.  
  7892.  
  7893.  
  7894.  
  7895.  
  7896.  
  7897.  
  7898.  
  7899.  
  7900.  
  7901.  
  7902.  
  7903.  
  7904.  
  7905.  
  7906.  
  7907.  
  7908.  
  7909.  
  7910.  
  7911.  
  7912.  
  7913.  
  7914.  
  7915. <div class="price productitem__price ">
  7916.  
  7917.    <div
  7918.      class="price__compare-at visible"
  7919.      data-price-compare-container
  7920.    >
  7921.  
  7922.      
  7923.        <span class="money price__original" data-price-original></span>
  7924.      
  7925.    </div>
  7926.  
  7927.  
  7928.    
  7929.      
  7930.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7931.        
  7932.          <span class="visually-hidden">Original price</span>
  7933.          <span class="money price__compare-at--min" data-price-compare-min>
  7934.            $40.98
  7935.          </span>
  7936.          -
  7937.          <span class="visually-hidden">Original price</span>
  7938.          <span class="money price__compare-at--max" data-price-compare-max>
  7939.            $40.98
  7940.          </span>
  7941.        
  7942.      </div>
  7943.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7944.        <span class="visually-hidden">Original price</span>
  7945.        <span class="money price__compare-at--single" data-price-compare>
  7946.          
  7947.        </span>
  7948.      </div>
  7949.    
  7950.  
  7951.  
  7952.  <div class="price__current price__current--emphasize " data-price-container>
  7953.  
  7954.    
  7955.  
  7956.    
  7957.      
  7958.      
  7959.      <span class="money" data-price>
  7960.        $40.98
  7961.      </span>
  7962.    
  7963.    
  7964.  </div>
  7965.  
  7966.  
  7967.    
  7968.    <div class="price__current--hidden" data-current-price-range-hidden>
  7969.      
  7970.        <span class="money price__current--min" data-price-min>$40.98</span>
  7971.        -
  7972.        <span class="money price__current--max" data-price-max>$40.98</span>
  7973.      
  7974.    </div>
  7975.    <div class="price__current--hidden" data-current-price-hidden>
  7976.      <span class="visually-hidden">Current price</span>
  7977.      <span class="money" data-price>
  7978.        $40.98
  7979.      </span>
  7980.    </div>
  7981.  
  7982.  
  7983.  
  7984.    
  7985.    
  7986.    
  7987.    
  7988.  
  7989.    <div
  7990.      class="
  7991.        productitem__unit-price
  7992.        hidden
  7993.      "
  7994.      data-unit-price
  7995.    >
  7996.      <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>
  7997.    </div>
  7998.  
  7999.  
  8000.  
  8001. </div>
  8002.  
  8003.  
  8004.            </div>
  8005.  
  8006.            <div class="productitem--listview-badge">
  8007.              
  8008.  
  8009.  
  8010.  
  8011.  
  8012.  
  8013.  
  8014.  
  8015.  
  8016.  
  8017.  
  8018.  
  8019.  
  8020.  
  8021.  
  8022.  
  8023.  
  8024.  
  8025.  
  8026.  
  8027.  
  8028.  
  8029.  
  8030.  
  8031.  
  8032.  
  8033.  
  8034.  
  8035.            </div>
  8036.  
  8037.            
  8038.              <div
  8039.                class="
  8040.                  productitem--action
  8041.                  quickshop-button
  8042.                  
  8043.                "
  8044.              >
  8045.                <button
  8046.                  class="productitem--action-trigger button-secondary"
  8047.                  data-quickshop-full
  8048.                  
  8049.                  
  8050.                  type="button"
  8051.                >
  8052.                  Quick shop
  8053.                </button>
  8054.              </div>
  8055.            
  8056.  
  8057.            
  8058.              <div
  8059.                class="
  8060.                  productitem--action
  8061.                  atc--button
  8062.                  
  8063.                "
  8064.              >
  8065.                <button
  8066.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8067.                  type="button"
  8068.                  aria-label="Add to cart"
  8069.                  
  8070.                    data-quick-buy
  8071.                  
  8072.                  data-variant-id="40156967370839"
  8073.                  
  8074.                >
  8075.                  <span class="atc-button--text">
  8076.                    Add to cart
  8077.                  </span>
  8078.                  <span class="atc-button--icon"><svg
  8079.  aria-hidden="true"
  8080.  focusable="false"
  8081.  role="presentation"
  8082.  width="26"
  8083.  height="26"
  8084.  viewBox="0 0 26 26"
  8085.  xmlns="http://www.w3.org/2000/svg"
  8086. >
  8087.  <g fill-rule="nonzero" fill="currentColor">
  8088.    <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"/>
  8089.  </g>
  8090. </svg></span>
  8091.                </button>
  8092.              </div>
  8093.            
  8094.          </div>
  8095.        
  8096.      
  8097.    </div>
  8098.  </div>
  8099.  
  8100.  
  8101.    <script type="application/json" data-quick-buy-settings>
  8102.      {
  8103.        "cart_redirection": true,
  8104.        "money_format": "${{amount}}"
  8105.      }
  8106.    </script>
  8107.  
  8108. </li>
  8109.    
  8110.      
  8111.  
  8112.  
  8113.  
  8114.  
  8115.  
  8116.  
  8117.  
  8118.  
  8119.  
  8120.  
  8121.  
  8122.  
  8123.  
  8124.  
  8125.  
  8126.  
  8127.  
  8128.  
  8129.  
  8130.  
  8131.  
  8132.  
  8133.  
  8134.  
  8135.  
  8136.  
  8137.  
  8138.  
  8139.  
  8140.  
  8141.  
  8142.  
  8143.    
  8144.  
  8145.  
  8146.  
  8147. <li
  8148.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8149.  data-product-item
  8150.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8151.  
  8152. >
  8153.  <div class="productitem" data-product-item-content>
  8154.    
  8155.    
  8156.    
  8157.    
  8158.  
  8159.    
  8160.  
  8161.    
  8162.  
  8163.    <div class="productitem__container">
  8164.      
  8165.  
  8166.      <div class="productitem__image-container">
  8167.        <a target="_blank"
  8168.          class="productitem--image-link"
  8169.          href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8170.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8171.          tabindex="-1"
  8172.          data-product-page-link
  8173.        >
  8174.          <figure
  8175.            class="productitem--image"
  8176.            data-product-item-image
  8177.            
  8178.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8179.            
  8180.          >
  8181.            
  8182.              
  8183.              
  8184.  
  8185.  
  8186.    <noscript data-rimg-noscript>
  8187.      <img loading="lazy"
  8188.        
  8189.          src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8190.        
  8191.  
  8192.        alt=""
  8193.        data-rimg="noscript"
  8194.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953 1x"
  8195.        class="productitem--image-primary"
  8196.        
  8197.        
  8198.      >
  8199.    </noscript>
  8200.  
  8201.  
  8202.  <img loading="lazy"
  8203.    
  8204.      src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8205.    
  8206.    alt=""
  8207.  
  8208.    
  8209.      data-rimg="lazy"
  8210.      data-rimg-scale="1"
  8211.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_{size}.jpg?v=1648096953"
  8212.      data-rimg-max="500x500"
  8213.      data-rimg-crop="false"
  8214.      
  8215.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8216.    
  8217.  
  8218.    class="productitem--image-primary"
  8219.    
  8220.    
  8221.  >
  8222.  
  8223.  
  8224.  
  8225.  <div data-rimg-canvas></div>
  8226.  
  8227.  
  8228.            
  8229.  
  8230.            
  8231.  
  8232.  
  8233.  
  8234.  
  8235.  
  8236.  
  8237.  
  8238.  
  8239.  
  8240.  
  8241.  
  8242.  
  8243.  
  8244.  
  8245.  
  8246.  
  8247.  
  8248.  
  8249.  
  8250.  
  8251.  
  8252.  
  8253.  
  8254.  
  8255.  
  8256.  
  8257.  
  8258.          </figure>
  8259.        </a>
  8260.      </div><div class="productitem--info">
  8261.        
  8262.          
  8263.  
  8264.        
  8265.  
  8266.        
  8267.          
  8268.  
  8269.  
  8270.  
  8271.  
  8272.  
  8273.  
  8274.  
  8275.  
  8276.  
  8277.  
  8278.  
  8279.  
  8280.  
  8281.  
  8282.  
  8283.  
  8284.  
  8285.  
  8286.  
  8287.  
  8288.  
  8289.  
  8290.  
  8291.  
  8292.  
  8293.  
  8294.  
  8295.  
  8296.  
  8297.  
  8298. <div class="price productitem__price ">
  8299.  
  8300.    <div
  8301.      class="price__compare-at visible"
  8302.      data-price-compare-container
  8303.    >
  8304.  
  8305.      
  8306.        <span class="money price__original" data-price-original></span>
  8307.      
  8308.    </div>
  8309.  
  8310.  
  8311.    
  8312.      
  8313.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8314.        
  8315.          <span class="visually-hidden">Original price</span>
  8316.          <span class="money price__compare-at--min" data-price-compare-min>
  8317.            $253.99
  8318.          </span>
  8319.          -
  8320.          <span class="visually-hidden">Original price</span>
  8321.          <span class="money price__compare-at--max" data-price-compare-max>
  8322.            $253.99
  8323.          </span>
  8324.        
  8325.      </div>
  8326.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8327.        <span class="visually-hidden">Original price</span>
  8328.        <span class="money price__compare-at--single" data-price-compare>
  8329.          
  8330.        </span>
  8331.      </div>
  8332.    
  8333.  
  8334.  
  8335.  <div class="price__current price__current--emphasize " data-price-container>
  8336.  
  8337.    
  8338.  
  8339.    
  8340.      
  8341.      
  8342.      <span class="money" data-price>
  8343.        $253.99
  8344.      </span>
  8345.    
  8346.    
  8347.  </div>
  8348.  
  8349.  
  8350.    
  8351.    <div class="price__current--hidden" data-current-price-range-hidden>
  8352.      
  8353.        <span class="money price__current--min" data-price-min>$253.99</span>
  8354.        -
  8355.        <span class="money price__current--max" data-price-max>$253.99</span>
  8356.      
  8357.    </div>
  8358.    <div class="price__current--hidden" data-current-price-hidden>
  8359.      <span class="visually-hidden">Current price</span>
  8360.      <span class="money" data-price>
  8361.        $253.99
  8362.      </span>
  8363.    </div>
  8364.  
  8365.  
  8366.  
  8367.    
  8368.    
  8369.    
  8370.    
  8371.  
  8372.    <div
  8373.      class="
  8374.        productitem__unit-price
  8375.        hidden
  8376.      "
  8377.      data-unit-price
  8378.    >
  8379.      <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>
  8380.    </div>
  8381.  
  8382.  
  8383.  
  8384. </div>
  8385.  
  8386.  
  8387.        
  8388.  
  8389.        <h2 class="productitem--title">
  8390.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8" data-product-page-link>
  8391.            15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8
  8392.          </a>
  8393.        </h2>
  8394.  
  8395.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8396.        <div class="star_container 3933207593047"></div>
  8397.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8398.  
  8399.        
  8400.          
  8401.            <span class="productitem--vendor">
  8402.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  8403.            </span>
  8404.          
  8405.        
  8406.  
  8407.        
  8408.  
  8409.        
  8410.          
  8411.            <div class="productitem__stock-level">
  8412.              <!--
  8413.  
  8414.  
  8415.  
  8416.  
  8417.  
  8418.  
  8419.  
  8420. <div class="product-stock-level-wrapper" >
  8421.  
  8422.    <span class="
  8423.  product-stock-level
  8424.  product-stock-level--continue-selling
  8425.  
  8426. ">
  8427.      
  8428.  
  8429.      <span class="product-stock-level__text">
  8430.        
  8431.        <div class="product-stock-level__badge-text">
  8432.          
  8433.  
  8434.    In stock
  8435.  
  8436.  
  8437.        </div>
  8438.      </span>
  8439.    </span>
  8440.  
  8441. </div>
  8442. -->
  8443.              
  8444.  
  8445.  
  8446.    
  8447.      <b style="color:green">In stock</b>
  8448.    
  8449.  
  8450.  
  8451.  
  8452.  
  8453.  
  8454.  
  8455.  
  8456.            </div>
  8457.          
  8458.  
  8459.          
  8460.            
  8461.          
  8462.        
  8463.  
  8464.        
  8465.          <div class="productitem--description">
  8466.            <p>
  8467. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  8468.  
  8469. **This screen will only work if your laptop is one of the models below that ca...</p>
  8470.  
  8471.            
  8472.              <a
  8473.                href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8474.                class="productitem--link"
  8475.                data-product-page-link
  8476.              >
  8477.                View full details
  8478.              </a>
  8479.            
  8480.          </div>
  8481.        
  8482.      </div>
  8483.  
  8484.      
  8485.        
  8486.          
  8487.          
  8488.          
  8489.  
  8490.          
  8491.          
  8492.  
  8493.          
  8494.  
  8495.          
  8496.  
  8497.          <div class="productitem--actions" data-product-actions>
  8498.            <div class="productitem--listview-price">
  8499.              
  8500.  
  8501.  
  8502.  
  8503.  
  8504.  
  8505.  
  8506.  
  8507.  
  8508.  
  8509.  
  8510.  
  8511.  
  8512.  
  8513.  
  8514.  
  8515.  
  8516.  
  8517.  
  8518.  
  8519.  
  8520.  
  8521.  
  8522.  
  8523.  
  8524.  
  8525.  
  8526.  
  8527.  
  8528.  
  8529.  
  8530. <div class="price productitem__price ">
  8531.  
  8532.    <div
  8533.      class="price__compare-at visible"
  8534.      data-price-compare-container
  8535.    >
  8536.  
  8537.      
  8538.        <span class="money price__original" data-price-original></span>
  8539.      
  8540.    </div>
  8541.  
  8542.  
  8543.    
  8544.      
  8545.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8546.        
  8547.          <span class="visually-hidden">Original price</span>
  8548.          <span class="money price__compare-at--min" data-price-compare-min>
  8549.            $253.99
  8550.          </span>
  8551.          -
  8552.          <span class="visually-hidden">Original price</span>
  8553.          <span class="money price__compare-at--max" data-price-compare-max>
  8554.            $253.99
  8555.          </span>
  8556.        
  8557.      </div>
  8558.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8559.        <span class="visually-hidden">Original price</span>
  8560.        <span class="money price__compare-at--single" data-price-compare>
  8561.          
  8562.        </span>
  8563.      </div>
  8564.    
  8565.  
  8566.  
  8567.  <div class="price__current price__current--emphasize " data-price-container>
  8568.  
  8569.    
  8570.  
  8571.    
  8572.      
  8573.      
  8574.      <span class="money" data-price>
  8575.        $253.99
  8576.      </span>
  8577.    
  8578.    
  8579.  </div>
  8580.  
  8581.  
  8582.    
  8583.    <div class="price__current--hidden" data-current-price-range-hidden>
  8584.      
  8585.        <span class="money price__current--min" data-price-min>$253.99</span>
  8586.        -
  8587.        <span class="money price__current--max" data-price-max>$253.99</span>
  8588.      
  8589.    </div>
  8590.    <div class="price__current--hidden" data-current-price-hidden>
  8591.      <span class="visually-hidden">Current price</span>
  8592.      <span class="money" data-price>
  8593.        $253.99
  8594.      </span>
  8595.    </div>
  8596.  
  8597.  
  8598.  
  8599.    
  8600.    
  8601.    
  8602.    
  8603.  
  8604.    <div
  8605.      class="
  8606.        productitem__unit-price
  8607.        hidden
  8608.      "
  8609.      data-unit-price
  8610.    >
  8611.      <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>
  8612.    </div>
  8613.  
  8614.  
  8615.  
  8616. </div>
  8617.  
  8618.  
  8619.            </div>
  8620.  
  8621.            <div class="productitem--listview-badge">
  8622.              
  8623.  
  8624.  
  8625.  
  8626.  
  8627.  
  8628.  
  8629.  
  8630.  
  8631.  
  8632.  
  8633.  
  8634.  
  8635.  
  8636.  
  8637.  
  8638.  
  8639.  
  8640.  
  8641.  
  8642.  
  8643.  
  8644.  
  8645.  
  8646.  
  8647.  
  8648.  
  8649.  
  8650.            </div>
  8651.  
  8652.            
  8653.              <div
  8654.                class="
  8655.                  productitem--action
  8656.                  quickshop-button
  8657.                  
  8658.                "
  8659.              >
  8660.                <button
  8661.                  class="productitem--action-trigger button-secondary"
  8662.                  data-quickshop-full
  8663.                  
  8664.                  
  8665.                  type="button"
  8666.                >
  8667.                  Quick shop
  8668.                </button>
  8669.              </div>
  8670.            
  8671.  
  8672.            
  8673.              <div
  8674.                class="
  8675.                  productitem--action
  8676.                  atc--button
  8677.                  
  8678.                "
  8679.              >
  8680.                <button
  8681.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8682.                  type="button"
  8683.                  aria-label="Add to cart"
  8684.                  
  8685.                    data-quick-buy
  8686.                  
  8687.                  data-variant-id="29531492974679"
  8688.                  
  8689.                >
  8690.                  <span class="atc-button--text">
  8691.                    Add to cart
  8692.                  </span>
  8693.                  <span class="atc-button--icon"><svg
  8694.  aria-hidden="true"
  8695.  focusable="false"
  8696.  role="presentation"
  8697.  width="26"
  8698.  height="26"
  8699.  viewBox="0 0 26 26"
  8700.  xmlns="http://www.w3.org/2000/svg"
  8701. >
  8702.  <g fill-rule="nonzero" fill="currentColor">
  8703.    <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"/>
  8704.  </g>
  8705. </svg></span>
  8706.                </button>
  8707.              </div>
  8708.            
  8709.          </div>
  8710.        
  8711.      
  8712.    </div>
  8713.  </div>
  8714.  
  8715.  
  8716.    <script type="application/json" data-quick-buy-settings>
  8717.      {
  8718.        "cart_redirection": true,
  8719.        "money_format": "${{amount}}"
  8720.      }
  8721.    </script>
  8722.  
  8723. </li>
  8724.    
  8725.      
  8726.  
  8727.  
  8728.  
  8729.  
  8730.  
  8731.  
  8732.  
  8733.  
  8734.  
  8735.  
  8736.  
  8737.  
  8738.  
  8739.  
  8740.  
  8741.  
  8742.  
  8743.  
  8744.  
  8745.  
  8746.  
  8747.  
  8748.  
  8749.  
  8750.  
  8751.  
  8752.  
  8753.  
  8754.  
  8755.  
  8756.  
  8757.  
  8758.    
  8759.  
  8760.  
  8761.  
  8762. <li
  8763.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8764.  data-product-item
  8765.  data-product-quickshop-url="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8766.  
  8767. >
  8768.  <div class="productitem" data-product-item-content>
  8769.    
  8770.    
  8771.    
  8772.    
  8773.  
  8774.    
  8775.  
  8776.    
  8777.  
  8778.    <div class="productitem__container">
  8779.      
  8780.  
  8781.      <div class="productitem__image-container">
  8782.        <a target="_blank"
  8783.          class="productitem--image-link"
  8784.          href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8785.          aria-label="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8786.          tabindex="-1"
  8787.          data-product-page-link
  8788.        >
  8789.          <figure
  8790.            class="productitem--image"
  8791.            data-product-item-image
  8792.            
  8793.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8794.            
  8795.          >
  8796.            
  8797.              
  8798.              
  8799.  
  8800.  
  8801.    <noscript data-rimg-noscript>
  8802.      <img loading="lazy"
  8803.        
  8804.          src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  8805.        
  8806.  
  8807.        alt="Updated alt text"
  8808.        data-rimg="noscript"
  8809.        srcset="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908 1x"
  8810.        class="productitem--image-primary"
  8811.        
  8812.        
  8813.      >
  8814.    </noscript>
  8815.  
  8816.  
  8817.  <img loading="lazy"
  8818.    
  8819.      src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  8820.    
  8821.    alt="Updated alt text"
  8822.  
  8823.    
  8824.      data-rimg="lazy"
  8825.      data-rimg-scale="1"
  8826.      data-rimg-template="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_{size}.jpg?v=1680602908"
  8827.      data-rimg-max="500x500"
  8828.      data-rimg-crop="false"
  8829.      
  8830.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8831.    
  8832.  
  8833.    class="productitem--image-primary"
  8834.    
  8835.    
  8836.  >
  8837.  
  8838.  
  8839.  
  8840.  <div data-rimg-canvas></div>
  8841.  
  8842.  
  8843.            
  8844.  
  8845.            
  8846.  
  8847.  
  8848.  
  8849.  
  8850.  
  8851.  
  8852.  
  8853.  
  8854.  
  8855.  
  8856.  
  8857.  
  8858.  
  8859.  
  8860.  
  8861.  
  8862.  
  8863.  
  8864.  
  8865.  
  8866.  
  8867.  
  8868.  
  8869.  
  8870.  
  8871.  
  8872.  
  8873.          </figure>
  8874.        </a>
  8875.      </div><div class="productitem--info">
  8876.        
  8877.          
  8878.  
  8879.        
  8880.  
  8881.        
  8882.          
  8883.  
  8884.  
  8885.  
  8886.  
  8887.  
  8888.  
  8889.  
  8890.  
  8891.  
  8892.  
  8893.  
  8894.  
  8895.  
  8896.  
  8897.  
  8898.  
  8899.  
  8900.  
  8901.  
  8902.  
  8903.  
  8904.  
  8905.  
  8906.  
  8907.  
  8908.  
  8909.  
  8910.  
  8911.  
  8912.  
  8913. <div class="price productitem__price ">
  8914.  
  8915.    <div
  8916.      class="price__compare-at visible"
  8917.      data-price-compare-container
  8918.    >
  8919.  
  8920.      
  8921.        <span class="money price__original" data-price-original></span>
  8922.      
  8923.    </div>
  8924.  
  8925.  
  8926.    
  8927.      
  8928.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8929.        
  8930.          <span class="visually-hidden">Original price</span>
  8931.          <span class="money price__compare-at--min" data-price-compare-min>
  8932.            $53.97
  8933.          </span>
  8934.          -
  8935.          <span class="visually-hidden">Original price</span>
  8936.          <span class="money price__compare-at--max" data-price-compare-max>
  8937.            $53.97
  8938.          </span>
  8939.        
  8940.      </div>
  8941.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8942.        <span class="visually-hidden">Original price</span>
  8943.        <span class="money price__compare-at--single" data-price-compare>
  8944.          
  8945.        </span>
  8946.      </div>
  8947.    
  8948.  
  8949.  
  8950.  <div class="price__current price__current--emphasize " data-price-container>
  8951.  
  8952.    
  8953.  
  8954.    
  8955.      
  8956.      
  8957.      <span class="money" data-price>
  8958.        $53.97
  8959.      </span>
  8960.    
  8961.    
  8962.  </div>
  8963.  
  8964.  
  8965.    
  8966.    <div class="price__current--hidden" data-current-price-range-hidden>
  8967.      
  8968.        <span class="money price__current--min" data-price-min>$53.97</span>
  8969.        -
  8970.        <span class="money price__current--max" data-price-max>$53.97</span>
  8971.      
  8972.    </div>
  8973.    <div class="price__current--hidden" data-current-price-hidden>
  8974.      <span class="visually-hidden">Current price</span>
  8975.      <span class="money" data-price>
  8976.        $53.97
  8977.      </span>
  8978.    </div>
  8979.  
  8980.  
  8981.  
  8982.    
  8983.    
  8984.    
  8985.    
  8986.  
  8987.    <div
  8988.      class="
  8989.        productitem__unit-price
  8990.        hidden
  8991.      "
  8992.      data-unit-price
  8993.    >
  8994.      <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>
  8995.    </div>
  8996.  
  8997.  
  8998.  
  8999. </div>
  9000.  
  9001.  
  9002.        
  9003.  
  9004.        <h2 class="productitem--title">
  9005.          <a href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23" data-product-page-link>
  9006.            19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9007.          </a>
  9008.        </h2>
  9009.  
  9010.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9011.        <div class="star_container 6872273420375"></div>
  9012.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9013.  
  9014.        
  9015.          
  9016.            <span class="productitem--vendor">
  9017.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  9018.            </span>
  9019.          
  9020.        
  9021.  
  9022.        
  9023.  
  9024.        
  9025.          
  9026.            <div class="productitem__stock-level">
  9027.              <!--
  9028.  
  9029.  
  9030.  
  9031.  
  9032.  
  9033.  
  9034.  
  9035. <div class="product-stock-level-wrapper" >
  9036.  
  9037.    <span class="
  9038.  product-stock-level
  9039.  product-stock-level--continue-selling
  9040.  
  9041. ">
  9042.      
  9043.  
  9044.      <span class="product-stock-level__text">
  9045.        
  9046.        <div class="product-stock-level__badge-text">
  9047.          
  9048.  
  9049.    In stock
  9050.  
  9051.  
  9052.        </div>
  9053.      </span>
  9054.    </span>
  9055.  
  9056. </div>
  9057. -->
  9058.              
  9059.  
  9060.  
  9061.    
  9062.      <b style="color:green">In stock</b>
  9063.    
  9064.  
  9065.  
  9066.  
  9067.  
  9068.  
  9069.  
  9070.  
  9071.            </div>
  9072.          
  9073.  
  9074.          
  9075.            
  9076.          
  9077.        
  9078.  
  9079.        
  9080.          <div class="productitem--description">
  9081.            <p>19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9082. Includes power cord.
  9083.  
  9084. Input: 100-240V ~ 50-60Hz
  9085. Output: 19V –...</p>
  9086.  
  9087.            
  9088.              <a
  9089.                href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9090.                class="productitem--link"
  9091.                data-product-page-link
  9092.              >
  9093.                View full details
  9094.              </a>
  9095.            
  9096.          </div>
  9097.        
  9098.      </div>
  9099.  
  9100.      
  9101.        
  9102.          
  9103.          
  9104.          
  9105.  
  9106.          
  9107.          
  9108.  
  9109.          
  9110.  
  9111.          
  9112.  
  9113.          <div class="productitem--actions" data-product-actions>
  9114.            <div class="productitem--listview-price">
  9115.              
  9116.  
  9117.  
  9118.  
  9119.  
  9120.  
  9121.  
  9122.  
  9123.  
  9124.  
  9125.  
  9126.  
  9127.  
  9128.  
  9129.  
  9130.  
  9131.  
  9132.  
  9133.  
  9134.  
  9135.  
  9136.  
  9137.  
  9138.  
  9139.  
  9140.  
  9141.  
  9142.  
  9143.  
  9144.  
  9145.  
  9146. <div class="price productitem__price ">
  9147.  
  9148.    <div
  9149.      class="price__compare-at visible"
  9150.      data-price-compare-container
  9151.    >
  9152.  
  9153.      
  9154.        <span class="money price__original" data-price-original></span>
  9155.      
  9156.    </div>
  9157.  
  9158.  
  9159.    
  9160.      
  9161.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9162.        
  9163.          <span class="visually-hidden">Original price</span>
  9164.          <span class="money price__compare-at--min" data-price-compare-min>
  9165.            $53.97
  9166.          </span>
  9167.          -
  9168.          <span class="visually-hidden">Original price</span>
  9169.          <span class="money price__compare-at--max" data-price-compare-max>
  9170.            $53.97
  9171.          </span>
  9172.        
  9173.      </div>
  9174.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9175.        <span class="visually-hidden">Original price</span>
  9176.        <span class="money price__compare-at--single" data-price-compare>
  9177.          
  9178.        </span>
  9179.      </div>
  9180.    
  9181.  
  9182.  
  9183.  <div class="price__current price__current--emphasize " data-price-container>
  9184.  
  9185.    
  9186.  
  9187.    
  9188.      
  9189.      
  9190.      <span class="money" data-price>
  9191.        $53.97
  9192.      </span>
  9193.    
  9194.    
  9195.  </div>
  9196.  
  9197.  
  9198.    
  9199.    <div class="price__current--hidden" data-current-price-range-hidden>
  9200.      
  9201.        <span class="money price__current--min" data-price-min>$53.97</span>
  9202.        -
  9203.        <span class="money price__current--max" data-price-max>$53.97</span>
  9204.      
  9205.    </div>
  9206.    <div class="price__current--hidden" data-current-price-hidden>
  9207.      <span class="visually-hidden">Current price</span>
  9208.      <span class="money" data-price>
  9209.        $53.97
  9210.      </span>
  9211.    </div>
  9212.  
  9213.  
  9214.  
  9215.    
  9216.    
  9217.    
  9218.    
  9219.  
  9220.    <div
  9221.      class="
  9222.        productitem__unit-price
  9223.        hidden
  9224.      "
  9225.      data-unit-price
  9226.    >
  9227.      <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>
  9228.    </div>
  9229.  
  9230.  
  9231.  
  9232. </div>
  9233.  
  9234.  
  9235.            </div>
  9236.  
  9237.            <div class="productitem--listview-badge">
  9238.              
  9239.  
  9240.  
  9241.  
  9242.  
  9243.  
  9244.  
  9245.  
  9246.  
  9247.  
  9248.  
  9249.  
  9250.  
  9251.  
  9252.  
  9253.  
  9254.  
  9255.  
  9256.  
  9257.  
  9258.  
  9259.  
  9260.  
  9261.  
  9262.  
  9263.  
  9264.  
  9265.  
  9266.            </div>
  9267.  
  9268.            
  9269.              <div
  9270.                class="
  9271.                  productitem--action
  9272.                  quickshop-button
  9273.                  
  9274.                "
  9275.              >
  9276.                <button
  9277.                  class="productitem--action-trigger button-secondary"
  9278.                  data-quickshop-full
  9279.                  
  9280.                  
  9281.                  type="button"
  9282.                >
  9283.                  Quick shop
  9284.                </button>
  9285.              </div>
  9286.            
  9287.  
  9288.            
  9289.              <div
  9290.                class="
  9291.                  productitem--action
  9292.                  atc--button
  9293.                  
  9294.                "
  9295.              >
  9296.                <button
  9297.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9298.                  type="button"
  9299.                  aria-label="Add to cart"
  9300.                  
  9301.                    data-quick-buy
  9302.                  
  9303.                  data-variant-id="40155858534487"
  9304.                  
  9305.                >
  9306.                  <span class="atc-button--text">
  9307.                    Add to cart
  9308.                  </span>
  9309.                  <span class="atc-button--icon"><svg
  9310.  aria-hidden="true"
  9311.  focusable="false"
  9312.  role="presentation"
  9313.  width="26"
  9314.  height="26"
  9315.  viewBox="0 0 26 26"
  9316.  xmlns="http://www.w3.org/2000/svg"
  9317. >
  9318.  <g fill-rule="nonzero" fill="currentColor">
  9319.    <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"/>
  9320.  </g>
  9321. </svg></span>
  9322.                </button>
  9323.              </div>
  9324.            
  9325.          </div>
  9326.        
  9327.      
  9328.    </div>
  9329.  </div>
  9330.  
  9331.  
  9332.    <script type="application/json" data-quick-buy-settings>
  9333.      {
  9334.        "cart_redirection": true,
  9335.        "money_format": "${{amount}}"
  9336.      }
  9337.    </script>
  9338.  
  9339. </li>
  9340.    
  9341.      
  9342.  
  9343.  
  9344.  
  9345.  
  9346.  
  9347.  
  9348.  
  9349.  
  9350.  
  9351.  
  9352.  
  9353.  
  9354.  
  9355.  
  9356.  
  9357.  
  9358.  
  9359.  
  9360.  
  9361.  
  9362.  
  9363.  
  9364.  
  9365.  
  9366.  
  9367.  
  9368.  
  9369.  
  9370.  
  9371.  
  9372.  
  9373.  
  9374.    
  9375.  
  9376.  
  9377.  
  9378. <li
  9379.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9380.  data-product-item
  9381.  data-product-quickshop-url="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9382.  
  9383. >
  9384.  <div class="productitem" data-product-item-content>
  9385.    
  9386.    
  9387.    
  9388.    
  9389.  
  9390.    
  9391.  
  9392.    
  9393.  
  9394.    <div class="productitem__container">
  9395.      
  9396.  
  9397.      <div class="productitem__image-container">
  9398.        <a target="_blank"
  9399.          class="productitem--image-link"
  9400.          href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9401.          aria-label="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9402.          tabindex="-1"
  9403.          data-product-page-link
  9404.        >
  9405.          <figure
  9406.            class="productitem--image"
  9407.            data-product-item-image
  9408.            
  9409.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9410.            
  9411.          >
  9412.            
  9413.              
  9414.              
  9415.  
  9416.  
  9417.    <noscript data-rimg-noscript>
  9418.      <img loading="lazy"
  9419.        
  9420.          src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9421.        
  9422.  
  9423.        alt=""
  9424.        data-rimg="noscript"
  9425.        srcset="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747 1x, //laptopparts.ca/cdn/shop/products/z1_799x799.jpg?v=1648128747 1.56x"
  9426.        class="productitem--image-primary"
  9427.        
  9428.        
  9429.      >
  9430.    </noscript>
  9431.  
  9432.  
  9433.  <img loading="lazy"
  9434.    
  9435.      src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9436.    
  9437.    alt=""
  9438.  
  9439.    
  9440.      data-rimg="lazy"
  9441.      data-rimg-scale="1"
  9442.      data-rimg-template="//laptopparts.ca/cdn/shop/products/z1_{size}.jpg?v=1648128747"
  9443.      data-rimg-max="800x800"
  9444.      data-rimg-crop="false"
  9445.      
  9446.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  9447.    
  9448.  
  9449.    class="productitem--image-primary"
  9450.    
  9451.    
  9452.  >
  9453.  
  9454.  
  9455.  
  9456.  <div data-rimg-canvas></div>
  9457.  
  9458.  
  9459.            
  9460.  
  9461.            
  9462.  
  9463.  
  9464.  
  9465.  
  9466.  
  9467.  
  9468.  
  9469.  
  9470.  
  9471.  
  9472.  
  9473.  
  9474.  
  9475.  
  9476.  
  9477.  
  9478.  
  9479.  
  9480.  
  9481.  
  9482.  
  9483.  
  9484.  
  9485.  
  9486.  
  9487.  
  9488.  
  9489.          </figure>
  9490.        </a>
  9491.      </div><div class="productitem--info">
  9492.        
  9493.          
  9494.  
  9495.        
  9496.  
  9497.        
  9498.          
  9499.  
  9500.  
  9501.  
  9502.  
  9503.  
  9504.  
  9505.  
  9506.  
  9507.  
  9508.  
  9509.  
  9510.  
  9511.  
  9512.  
  9513.  
  9514.  
  9515.  
  9516.  
  9517.  
  9518.  
  9519.  
  9520.  
  9521.  
  9522.  
  9523.  
  9524.  
  9525.  
  9526.  
  9527.  
  9528.  
  9529. <div class="price productitem__price ">
  9530.  
  9531.    <div
  9532.      class="price__compare-at visible"
  9533.      data-price-compare-container
  9534.    >
  9535.  
  9536.      
  9537.        <span class="money price__original" data-price-original></span>
  9538.      
  9539.    </div>
  9540.  
  9541.  
  9542.    
  9543.      
  9544.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9545.        
  9546.          <span class="visually-hidden">Original price</span>
  9547.          <span class="money price__compare-at--min" data-price-compare-min>
  9548.            $38.99
  9549.          </span>
  9550.          -
  9551.          <span class="visually-hidden">Original price</span>
  9552.          <span class="money price__compare-at--max" data-price-compare-max>
  9553.            $38.99
  9554.          </span>
  9555.        
  9556.      </div>
  9557.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9558.        <span class="visually-hidden">Original price</span>
  9559.        <span class="money price__compare-at--single" data-price-compare>
  9560.          
  9561.        </span>
  9562.      </div>
  9563.    
  9564.  
  9565.  
  9566.  <div class="price__current price__current--emphasize " data-price-container>
  9567.  
  9568.    
  9569.  
  9570.    
  9571.      
  9572.      
  9573.      <span class="money" data-price>
  9574.        $38.99
  9575.      </span>
  9576.    
  9577.    
  9578.  </div>
  9579.  
  9580.  
  9581.    
  9582.    <div class="price__current--hidden" data-current-price-range-hidden>
  9583.      
  9584.        <span class="money price__current--min" data-price-min>$38.99</span>
  9585.        -
  9586.        <span class="money price__current--max" data-price-max>$38.99</span>
  9587.      
  9588.    </div>
  9589.    <div class="price__current--hidden" data-current-price-hidden>
  9590.      <span class="visually-hidden">Current price</span>
  9591.      <span class="money" data-price>
  9592.        $38.99
  9593.      </span>
  9594.    </div>
  9595.  
  9596.  
  9597.  
  9598.    
  9599.    
  9600.    
  9601.    
  9602.  
  9603.    <div
  9604.      class="
  9605.        productitem__unit-price
  9606.        hidden
  9607.      "
  9608.      data-unit-price
  9609.    >
  9610.      <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>
  9611.    </div>
  9612.  
  9613.  
  9614.  
  9615. </div>
  9616.  
  9617.  
  9618.        
  9619.  
  9620.        <h2 class="productitem--title">
  9621.          <a href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable" data-product-page-link>
  9622.            2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable
  9623.          </a>
  9624.        </h2>
  9625.  
  9626.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9627.        <div class="star_container 4421896306775"></div>
  9628.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9629.  
  9630.        
  9631.          
  9632.            <span class="productitem--vendor">
  9633.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  9634.            </span>
  9635.          
  9636.        
  9637.  
  9638.        
  9639.  
  9640.        
  9641.          
  9642.            <div class="productitem__stock-level">
  9643.              <!--
  9644.  
  9645.  
  9646.  
  9647.  
  9648.  
  9649.  
  9650.  
  9651. <div class="product-stock-level-wrapper" >
  9652.  
  9653.    <span class="
  9654.  product-stock-level
  9655.  product-stock-level--continue-selling
  9656.  
  9657. ">
  9658.      
  9659.  
  9660.      <span class="product-stock-level__text">
  9661.        
  9662.        <div class="product-stock-level__badge-text">
  9663.          
  9664.  
  9665.    In stock
  9666.  
  9667.  
  9668.        </div>
  9669.      </span>
  9670.    </span>
  9671.  
  9672. </div>
  9673. -->
  9674.              
  9675.  
  9676.  
  9677.    
  9678.      <b style="color:green">In stock</b>
  9679.    
  9680.  
  9681.  
  9682.  
  9683.  
  9684.  
  9685.  
  9686.  
  9687.            </div>
  9688.          
  9689.  
  9690.          
  9691.            
  9692.          
  9693.        
  9694.  
  9695.        
  9696.          <div class="productitem--description">
  9697.            <p>Cable Length(approx.): 15cm ± 10% (Just Cable)Connector Type: 1.x SATA Power 15-pin, Male2 x Molex IDE 4-pin, Female</p>
  9698.  
  9699.            
  9700.          </div>
  9701.        
  9702.      </div>
  9703.  
  9704.      
  9705.        
  9706.          
  9707.          
  9708.          
  9709.  
  9710.          
  9711.          
  9712.  
  9713.          
  9714.  
  9715.          
  9716.  
  9717.          <div class="productitem--actions" data-product-actions>
  9718.            <div class="productitem--listview-price">
  9719.              
  9720.  
  9721.  
  9722.  
  9723.  
  9724.  
  9725.  
  9726.  
  9727.  
  9728.  
  9729.  
  9730.  
  9731.  
  9732.  
  9733.  
  9734.  
  9735.  
  9736.  
  9737.  
  9738.  
  9739.  
  9740.  
  9741.  
  9742.  
  9743.  
  9744.  
  9745.  
  9746.  
  9747.  
  9748.  
  9749.  
  9750. <div class="price productitem__price ">
  9751.  
  9752.    <div
  9753.      class="price__compare-at visible"
  9754.      data-price-compare-container
  9755.    >
  9756.  
  9757.      
  9758.        <span class="money price__original" data-price-original></span>
  9759.      
  9760.    </div>
  9761.  
  9762.  
  9763.    
  9764.      
  9765.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9766.        
  9767.          <span class="visually-hidden">Original price</span>
  9768.          <span class="money price__compare-at--min" data-price-compare-min>
  9769.            $38.99
  9770.          </span>
  9771.          -
  9772.          <span class="visually-hidden">Original price</span>
  9773.          <span class="money price__compare-at--max" data-price-compare-max>
  9774.            $38.99
  9775.          </span>
  9776.        
  9777.      </div>
  9778.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9779.        <span class="visually-hidden">Original price</span>
  9780.        <span class="money price__compare-at--single" data-price-compare>
  9781.          
  9782.        </span>
  9783.      </div>
  9784.    
  9785.  
  9786.  
  9787.  <div class="price__current price__current--emphasize " data-price-container>
  9788.  
  9789.    
  9790.  
  9791.    
  9792.      
  9793.      
  9794.      <span class="money" data-price>
  9795.        $38.99
  9796.      </span>
  9797.    
  9798.    
  9799.  </div>
  9800.  
  9801.  
  9802.    
  9803.    <div class="price__current--hidden" data-current-price-range-hidden>
  9804.      
  9805.        <span class="money price__current--min" data-price-min>$38.99</span>
  9806.        -
  9807.        <span class="money price__current--max" data-price-max>$38.99</span>
  9808.      
  9809.    </div>
  9810.    <div class="price__current--hidden" data-current-price-hidden>
  9811.      <span class="visually-hidden">Current price</span>
  9812.      <span class="money" data-price>
  9813.        $38.99
  9814.      </span>
  9815.    </div>
  9816.  
  9817.  
  9818.  
  9819.    
  9820.    
  9821.    
  9822.    
  9823.  
  9824.    <div
  9825.      class="
  9826.        productitem__unit-price
  9827.        hidden
  9828.      "
  9829.      data-unit-price
  9830.    >
  9831.      <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>
  9832.    </div>
  9833.  
  9834.  
  9835.  
  9836. </div>
  9837.  
  9838.  
  9839.            </div>
  9840.  
  9841.            <div class="productitem--listview-badge">
  9842.              
  9843.  
  9844.  
  9845.  
  9846.  
  9847.  
  9848.  
  9849.  
  9850.  
  9851.  
  9852.  
  9853.  
  9854.  
  9855.  
  9856.  
  9857.  
  9858.  
  9859.  
  9860.  
  9861.  
  9862.  
  9863.  
  9864.  
  9865.  
  9866.  
  9867.  
  9868.  
  9869.  
  9870.            </div>
  9871.  
  9872.            
  9873.              <div
  9874.                class="
  9875.                  productitem--action
  9876.                  quickshop-button
  9877.                  
  9878.                "
  9879.              >
  9880.                <button
  9881.                  class="productitem--action-trigger button-secondary"
  9882.                  data-quickshop-full
  9883.                  
  9884.                  
  9885.                  type="button"
  9886.                >
  9887.                  Quick shop
  9888.                </button>
  9889.              </div>
  9890.            
  9891.  
  9892.            
  9893.              <div
  9894.                class="
  9895.                  productitem--action
  9896.                  atc--button
  9897.                  
  9898.                "
  9899.              >
  9900.                <button
  9901.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9902.                  type="button"
  9903.                  aria-label="Add to cart"
  9904.                  
  9905.                    data-quick-buy
  9906.                  
  9907.                  data-variant-id="31550087692375"
  9908.                  
  9909.                >
  9910.                  <span class="atc-button--text">
  9911.                    Add to cart
  9912.                  </span>
  9913.                  <span class="atc-button--icon"><svg
  9914.  aria-hidden="true"
  9915.  focusable="false"
  9916.  role="presentation"
  9917.  width="26"
  9918.  height="26"
  9919.  viewBox="0 0 26 26"
  9920.  xmlns="http://www.w3.org/2000/svg"
  9921. >
  9922.  <g fill-rule="nonzero" fill="currentColor">
  9923.    <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"/>
  9924.  </g>
  9925. </svg></span>
  9926.                </button>
  9927.              </div>
  9928.            
  9929.          </div>
  9930.        
  9931.      
  9932.    </div>
  9933.  </div>
  9934.  
  9935.  
  9936.    <script type="application/json" data-quick-buy-settings>
  9937.      {
  9938.        "cart_redirection": true,
  9939.        "money_format": "${{amount}}"
  9940.      }
  9941.    </script>
  9942.  
  9943. </li>
  9944.    
  9945.      
  9946.  
  9947.  
  9948.  
  9949.  
  9950.  
  9951.  
  9952.  
  9953.  
  9954.  
  9955.  
  9956.  
  9957.  
  9958.  
  9959.  
  9960.  
  9961.  
  9962.  
  9963.  
  9964.  
  9965.  
  9966.  
  9967.  
  9968.  
  9969.  
  9970.  
  9971.  
  9972.  
  9973.  
  9974.  
  9975.  
  9976.  
  9977.  
  9978.    
  9979.  
  9980.  
  9981.  
  9982. <li
  9983.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9984.  data-product-item
  9985.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  9986.  
  9987. >
  9988.  <div class="productitem" data-product-item-content>
  9989.    
  9990.    
  9991.    
  9992.    
  9993.  
  9994.    
  9995.  
  9996.    
  9997.  
  9998.    <div class="productitem__container">
  9999.      
  10000.  
  10001.      <div class="productitem__image-container">
  10002.        <a target="_blank"
  10003.          class="productitem--image-link"
  10004.          href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10005.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10006.          tabindex="-1"
  10007.          data-product-page-link
  10008.        >
  10009.          <figure
  10010.            class="productitem--image"
  10011.            data-product-item-image
  10012.            
  10013.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10014.            
  10015.          >
  10016.            
  10017.              
  10018.              
  10019.  
  10020.  
  10021.    <noscript data-rimg-noscript>
  10022.      <img loading="lazy"
  10023.        
  10024.          src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10025.        
  10026.  
  10027.        alt=""
  10028.        data-rimg="noscript"
  10029.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824 1x"
  10030.        class="productitem--image-primary"
  10031.        
  10032.        
  10033.      >
  10034.    </noscript>
  10035.  
  10036.  
  10037.  <img loading="lazy"
  10038.    
  10039.      src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10040.    
  10041.    alt=""
  10042.  
  10043.    
  10044.      data-rimg="lazy"
  10045.      data-rimg-scale="1"
  10046.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_{size}.jpg?v=1648039824"
  10047.      data-rimg-max="500x500"
  10048.      data-rimg-crop="false"
  10049.      
  10050.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  10051.    
  10052.  
  10053.    class="productitem--image-primary"
  10054.    
  10055.    
  10056.  >
  10057.  
  10058.  
  10059.  
  10060.  <div data-rimg-canvas></div>
  10061.  
  10062.  
  10063.            
  10064.  
  10065.            
  10066.  
  10067.  
  10068.  
  10069.  
  10070.  
  10071.  
  10072.  
  10073.  
  10074.  
  10075.  
  10076.  
  10077.  
  10078.  
  10079.  
  10080.  
  10081.  
  10082.  
  10083.  
  10084.  
  10085.  
  10086.  
  10087.  
  10088.  
  10089.  
  10090.  
  10091.  
  10092.  
  10093.          </figure>
  10094.        </a>
  10095.      </div><div class="productitem--info">
  10096.        
  10097.          
  10098.  
  10099.        
  10100.  
  10101.        
  10102.          
  10103.  
  10104.  
  10105.  
  10106.  
  10107.  
  10108.  
  10109.  
  10110.  
  10111.  
  10112.  
  10113.  
  10114.  
  10115.  
  10116.  
  10117.  
  10118.  
  10119.  
  10120.  
  10121.  
  10122.  
  10123.  
  10124.  
  10125.  
  10126.  
  10127.  
  10128.  
  10129.  
  10130.  
  10131.  
  10132.  
  10133. <div class="price productitem__price ">
  10134.  
  10135.    <div
  10136.      class="price__compare-at visible"
  10137.      data-price-compare-container
  10138.    >
  10139.  
  10140.      
  10141.        <span class="money price__original" data-price-original></span>
  10142.      
  10143.    </div>
  10144.  
  10145.  
  10146.    
  10147.      
  10148.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10149.        
  10150.          <span class="visually-hidden">Original price</span>
  10151.          <span class="money price__compare-at--min" data-price-compare-min>
  10152.            $253.99
  10153.          </span>
  10154.          -
  10155.          <span class="visually-hidden">Original price</span>
  10156.          <span class="money price__compare-at--max" data-price-compare-max>
  10157.            $253.99
  10158.          </span>
  10159.        
  10160.      </div>
  10161.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10162.        <span class="visually-hidden">Original price</span>
  10163.        <span class="money price__compare-at--single" data-price-compare>
  10164.          
  10165.        </span>
  10166.      </div>
  10167.    
  10168.  
  10169.  
  10170.  <div class="price__current price__current--emphasize " data-price-container>
  10171.  
  10172.    
  10173.  
  10174.    
  10175.      
  10176.      
  10177.      <span class="money" data-price>
  10178.        $253.99
  10179.      </span>
  10180.    
  10181.    
  10182.  </div>
  10183.  
  10184.  
  10185.    
  10186.    <div class="price__current--hidden" data-current-price-range-hidden>
  10187.      
  10188.        <span class="money price__current--min" data-price-min>$253.99</span>
  10189.        -
  10190.        <span class="money price__current--max" data-price-max>$253.99</span>
  10191.      
  10192.    </div>
  10193.    <div class="price__current--hidden" data-current-price-hidden>
  10194.      <span class="visually-hidden">Current price</span>
  10195.      <span class="money" data-price>
  10196.        $253.99
  10197.      </span>
  10198.    </div>
  10199.  
  10200.  
  10201.  
  10202.    
  10203.    
  10204.    
  10205.    
  10206.  
  10207.    <div
  10208.      class="
  10209.        productitem__unit-price
  10210.        hidden
  10211.      "
  10212.      data-unit-price
  10213.    >
  10214.      <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>
  10215.    </div>
  10216.  
  10217.  
  10218.  
  10219. </div>
  10220.  
  10221.  
  10222.        
  10223.  
  10224.        <h2 class="productitem--title">
  10225.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops" data-product-page-link>
  10226.            15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0
  10227.          </a>
  10228.        </h2>
  10229.  
  10230.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10231.        <div class="star_container 3929811091543"></div>
  10232.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10233.  
  10234.        
  10235.          
  10236.            <span class="productitem--vendor">
  10237.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  10238.            </span>
  10239.          
  10240.        
  10241.  
  10242.        
  10243.  
  10244.        
  10245.          
  10246.            <div class="productitem__stock-level">
  10247.              <!--
  10248.  
  10249.  
  10250.  
  10251.  
  10252.  
  10253.  
  10254.  
  10255. <div class="product-stock-level-wrapper" >
  10256.  
  10257.    <span class="
  10258.  product-stock-level
  10259.  product-stock-level--continue-selling
  10260.  
  10261. ">
  10262.      
  10263.  
  10264.      <span class="product-stock-level__text">
  10265.        
  10266.        <div class="product-stock-level__badge-text">
  10267.          
  10268.  
  10269.    In stock
  10270.  
  10271.  
  10272.        </div>
  10273.      </span>
  10274.    </span>
  10275.  
  10276. </div>
  10277. -->
  10278.              
  10279.  
  10280.  
  10281.    
  10282.      <b style="color:green">In stock</b>
  10283.    
  10284.  
  10285.  
  10286.  
  10287.  
  10288.  
  10289.  
  10290.  
  10291.            </div>
  10292.          
  10293.  
  10294.          
  10295.            
  10296.          
  10297.        
  10298.  
  10299.        
  10300.          <div class="productitem--description">
  10301.            <p>
  10302. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  10303.  
  10304. **This screen will only work if your laptop is one of the models below that ca...</p>
  10305.  
  10306.            
  10307.              <a
  10308.                href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10309.                class="productitem--link"
  10310.                data-product-page-link
  10311.              >
  10312.                View full details
  10313.              </a>
  10314.            
  10315.          </div>
  10316.        
  10317.      </div>
  10318.  
  10319.      
  10320.        
  10321.          
  10322.          
  10323.          
  10324.  
  10325.          
  10326.          
  10327.  
  10328.          
  10329.  
  10330.          
  10331.  
  10332.          <div class="productitem--actions" data-product-actions>
  10333.            <div class="productitem--listview-price">
  10334.              
  10335.  
  10336.  
  10337.  
  10338.  
  10339.  
  10340.  
  10341.  
  10342.  
  10343.  
  10344.  
  10345.  
  10346.  
  10347.  
  10348.  
  10349.  
  10350.  
  10351.  
  10352.  
  10353.  
  10354.  
  10355.  
  10356.  
  10357.  
  10358.  
  10359.  
  10360.  
  10361.  
  10362.  
  10363.  
  10364.  
  10365. <div class="price productitem__price ">
  10366.  
  10367.    <div
  10368.      class="price__compare-at visible"
  10369.      data-price-compare-container
  10370.    >
  10371.  
  10372.      
  10373.        <span class="money price__original" data-price-original></span>
  10374.      
  10375.    </div>
  10376.  
  10377.  
  10378.    
  10379.      
  10380.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10381.        
  10382.          <span class="visually-hidden">Original price</span>
  10383.          <span class="money price__compare-at--min" data-price-compare-min>
  10384.            $253.99
  10385.          </span>
  10386.          -
  10387.          <span class="visually-hidden">Original price</span>
  10388.          <span class="money price__compare-at--max" data-price-compare-max>
  10389.            $253.99
  10390.          </span>
  10391.        
  10392.      </div>
  10393.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10394.        <span class="visually-hidden">Original price</span>
  10395.        <span class="money price__compare-at--single" data-price-compare>
  10396.          
  10397.        </span>
  10398.      </div>
  10399.    
  10400.  
  10401.  
  10402.  <div class="price__current price__current--emphasize " data-price-container>
  10403.  
  10404.    
  10405.  
  10406.    
  10407.      
  10408.      
  10409.      <span class="money" data-price>
  10410.        $253.99
  10411.      </span>
  10412.    
  10413.    
  10414.  </div>
  10415.  
  10416.  
  10417.    
  10418.    <div class="price__current--hidden" data-current-price-range-hidden>
  10419.      
  10420.        <span class="money price__current--min" data-price-min>$253.99</span>
  10421.        -
  10422.        <span class="money price__current--max" data-price-max>$253.99</span>
  10423.      
  10424.    </div>
  10425.    <div class="price__current--hidden" data-current-price-hidden>
  10426.      <span class="visually-hidden">Current price</span>
  10427.      <span class="money" data-price>
  10428.        $253.99
  10429.      </span>
  10430.    </div>
  10431.  
  10432.  
  10433.  
  10434.    
  10435.    
  10436.    
  10437.    
  10438.  
  10439.    <div
  10440.      class="
  10441.        productitem__unit-price
  10442.        hidden
  10443.      "
  10444.      data-unit-price
  10445.    >
  10446.      <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>
  10447.    </div>
  10448.  
  10449.  
  10450.  
  10451. </div>
  10452.  
  10453.  
  10454.            </div>
  10455.  
  10456.            <div class="productitem--listview-badge">
  10457.              
  10458.  
  10459.  
  10460.  
  10461.  
  10462.  
  10463.  
  10464.  
  10465.  
  10466.  
  10467.  
  10468.  
  10469.  
  10470.  
  10471.  
  10472.  
  10473.  
  10474.  
  10475.  
  10476.  
  10477.  
  10478.  
  10479.  
  10480.  
  10481.  
  10482.  
  10483.  
  10484.  
  10485.            </div>
  10486.  
  10487.            
  10488.              <div
  10489.                class="
  10490.                  productitem--action
  10491.                  quickshop-button
  10492.                  
  10493.                "
  10494.              >
  10495.                <button
  10496.                  class="productitem--action-trigger button-secondary"
  10497.                  data-quickshop-full
  10498.                  
  10499.                  
  10500.                  type="button"
  10501.                >
  10502.                  Quick shop
  10503.                </button>
  10504.              </div>
  10505.            
  10506.  
  10507.            
  10508.              <div
  10509.                class="
  10510.                  productitem--action
  10511.                  atc--button
  10512.                  
  10513.                "
  10514.              >
  10515.                <button
  10516.                  class="productitem--action-trigger productitem--action-atc button-primary"
  10517.                  type="button"
  10518.                  aria-label="Add to cart"
  10519.                  
  10520.                    data-quick-buy
  10521.                  
  10522.                  data-variant-id="29564283224151"
  10523.                  
  10524.                >
  10525.                  <span class="atc-button--text">
  10526.                    Add to cart
  10527.                  </span>
  10528.                  <span class="atc-button--icon"><svg
  10529.  aria-hidden="true"
  10530.  focusable="false"
  10531.  role="presentation"
  10532.  width="26"
  10533.  height="26"
  10534.  viewBox="0 0 26 26"
  10535.  xmlns="http://www.w3.org/2000/svg"
  10536. >
  10537.  <g fill-rule="nonzero" fill="currentColor">
  10538.    <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"/>
  10539.  </g>
  10540. </svg></span>
  10541.                </button>
  10542.              </div>
  10543.            
  10544.          </div>
  10545.        
  10546.      
  10547.    </div>
  10548.  </div>
  10549.  
  10550.  
  10551.    <script type="application/json" data-quick-buy-settings>
  10552.      {
  10553.        "cart_redirection": true,
  10554.        "money_format": "${{amount}}"
  10555.      }
  10556.    </script>
  10557.  
  10558. </li>
  10559.    
  10560.      
  10561.  
  10562.  
  10563.  
  10564.  
  10565.  
  10566.  
  10567.  
  10568.  
  10569.  
  10570.  
  10571.  
  10572.  
  10573.  
  10574.  
  10575.  
  10576.  
  10577.  
  10578.  
  10579.  
  10580.  
  10581.  
  10582.  
  10583.  
  10584.  
  10585.  
  10586.  
  10587.  
  10588.  
  10589.  
  10590.  
  10591.  
  10592.  
  10593.    
  10594.  
  10595.  
  10596.  
  10597. <li
  10598.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  10599.  data-product-item
  10600.  data-product-quickshop-url="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10601.  
  10602. >
  10603.  <div class="productitem" data-product-item-content>
  10604.    
  10605.    
  10606.    
  10607.    
  10608.  
  10609.    
  10610.  
  10611.    
  10612.  
  10613.    <div class="productitem__container">
  10614.      
  10615.  
  10616.      <div class="productitem__image-container">
  10617.        <a target="_blank"
  10618.          class="productitem--image-link"
  10619.          href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10620.          aria-label="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10621.          tabindex="-1"
  10622.          data-product-page-link
  10623.        >
  10624.          <figure
  10625.            class="productitem--image"
  10626.            data-product-item-image
  10627.            
  10628.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10629.            
  10630.          >
  10631.            
  10632.              
  10633.              
  10634.  
  10635.  
  10636.    <noscript data-rimg-noscript>
  10637.      <img loading="lazy"
  10638.        
  10639.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10640.        
  10641.  
  10642.        alt=""
  10643.        data-rimg="noscript"
  10644.        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"
  10645.        class="productitem--image-primary"
  10646.        
  10647.        
  10648.      >
  10649.    </noscript>
  10650.  
  10651.  
  10652.  <img loading="lazy"
  10653.    
  10654.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10655.    
  10656.    alt=""
  10657.  
  10658.    
  10659.      data-rimg="lazy"
  10660.      data-rimg-scale="1"
  10661.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_{size}.jpg?v=1648053007"
  10662.      data-rimg-max="600x600"
  10663.      data-rimg-crop="false"
  10664.      
  10665.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  10666.    
  10667.  
  10668.    class="productitem--image-primary"
  10669.    
  10670.    
  10671.  >
  10672.  
  10673.  
  10674.  
  10675.  <div data-rimg-canvas></div>
  10676.  
  10677.  
  10678.            
  10679.  
  10680.            
  10681.  
  10682.  
  10683.  
  10684.  
  10685.  
  10686.  
  10687.  
  10688.  
  10689.  
  10690.  
  10691.  
  10692.  
  10693.  
  10694.  
  10695.  
  10696.  
  10697.  
  10698.  
  10699.  
  10700.  
  10701.  
  10702.  
  10703.  
  10704.  
  10705.  
  10706.  
  10707.  
  10708.          </figure>
  10709.        </a>
  10710.      </div><div class="productitem--info">
  10711.        
  10712.          
  10713.  
  10714.        
  10715.  
  10716.        
  10717.          
  10718.  
  10719.  
  10720.  
  10721.  
  10722.  
  10723.  
  10724.  
  10725.  
  10726.  
  10727.  
  10728.  
  10729.  
  10730.  
  10731.  
  10732.  
  10733.  
  10734.  
  10735.  
  10736.  
  10737.  
  10738.  
  10739.  
  10740.  
  10741.  
  10742.  
  10743.  
  10744.  
  10745.  
  10746.  
  10747.  
  10748. <div class="price productitem__price ">
  10749.  
  10750.    <div
  10751.      class="price__compare-at visible"
  10752.      data-price-compare-container
  10753.    >
  10754.  
  10755.      
  10756.        <span class="money price__original" data-price-original></span>
  10757.      
  10758.    </div>
  10759.  
  10760.  
  10761.    
  10762.      
  10763.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10764.        
  10765.          <span class="visually-hidden">Original price</span>
  10766.          <span class="money price__compare-at--min" data-price-compare-min>
  10767.            $38.99
  10768.          </span>
  10769.          -
  10770.          <span class="visually-hidden">Original price</span>
  10771.          <span class="money price__compare-at--max" data-price-compare-max>
  10772.            $38.99
  10773.          </span>
  10774.        
  10775.      </div>
  10776.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10777.        <span class="visually-hidden">Original price</span>
  10778.        <span class="money price__compare-at--single" data-price-compare>
  10779.          
  10780.        </span>
  10781.      </div>
  10782.    
  10783.  
  10784.  
  10785.  <div class="price__current price__current--emphasize " data-price-container>
  10786.  
  10787.    
  10788.  
  10789.    
  10790.      
  10791.      
  10792.      <span class="money" data-price>
  10793.        $38.99
  10794.      </span>
  10795.    
  10796.    
  10797.  </div>
  10798.  
  10799.  
  10800.    
  10801.    <div class="price__current--hidden" data-current-price-range-hidden>
  10802.      
  10803.        <span class="money price__current--min" data-price-min>$38.99</span>
  10804.        -
  10805.        <span class="money price__current--max" data-price-max>$38.99</span>
  10806.      
  10807.    </div>
  10808.    <div class="price__current--hidden" data-current-price-hidden>
  10809.      <span class="visually-hidden">Current price</span>
  10810.      <span class="money" data-price>
  10811.        $38.99
  10812.      </span>
  10813.    </div>
  10814.  
  10815.  
  10816.  
  10817.    
  10818.    
  10819.    
  10820.    
  10821.  
  10822.    <div
  10823.      class="
  10824.        productitem__unit-price
  10825.        hidden
  10826.      "
  10827.      data-unit-price
  10828.    >
  10829.      <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>
  10830.    </div>
  10831.  
  10832.  
  10833.  
  10834. </div>
  10835.  
  10836.  
  10837.        
  10838.  
  10839.        <h2 class="productitem--title">
  10840.          <a href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  10841.            5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  10842.          </a>
  10843.        </h2>
  10844.  
  10845.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10846.        <div class="star_container 3483509915735"></div>
  10847.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10848.  
  10849.        
  10850.          
  10851.            <span class="productitem--vendor">
  10852.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  10853.            </span>
  10854.          
  10855.        
  10856.  
  10857.        
  10858.  
  10859.        
  10860.          
  10861.            <div class="productitem__stock-level">
  10862.              <!--
  10863.  
  10864.  
  10865.  
  10866.  
  10867.  
  10868.  
  10869.  
  10870. <div class="product-stock-level-wrapper" >
  10871.  
  10872.    <span class="
  10873.  product-stock-level
  10874.  product-stock-level--continue-selling
  10875.  
  10876. ">
  10877.      
  10878.  
  10879.      <span class="product-stock-level__text">
  10880.        
  10881.        <div class="product-stock-level__badge-text">
  10882.          
  10883.  
  10884.    In stock
  10885.  
  10886.  
  10887.        </div>
  10888.      </span>
  10889.    </span>
  10890.  
  10891. </div>
  10892. -->
  10893.              
  10894.  
  10895.  
  10896.    
  10897.      <b style="color:green">In stock</b>
  10898.    
  10899.  
  10900.  
  10901.  
  10902.  
  10903.  
  10904.  
  10905.  
  10906.            </div>
  10907.          
  10908.  
  10909.          
  10910.            
  10911.          
  10912.        
  10913.  
  10914.        
  10915.          <div class="productitem--description">
  10916.            <p>Plugs directly into AC outlet.
  10917.  
  10918. Input: 100-240V ~ 50-60Hz
  10919. Output: 12V – 1.5A 18W
  10920. Connector Tip: mini USB
  10921. Colour: Black
  10922.  
  10923. Compatible Part #s: KP.01...</p>
  10924.  
  10925.            
  10926.              <a
  10927.                href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10928.                class="productitem--link"
  10929.                data-product-page-link
  10930.              >
  10931.                View full details
  10932.              </a>
  10933.            
  10934.          </div>
  10935.        
  10936.      </div>
  10937.  
  10938.      
  10939.        
  10940.          
  10941.          
  10942.          
  10943.  
  10944.          
  10945.          
  10946.  
  10947.          
  10948.  
  10949.          
  10950.  
  10951.          <div class="productitem--actions" data-product-actions>
  10952.            <div class="productitem--listview-price">
  10953.              
  10954.  
  10955.  
  10956.  
  10957.  
  10958.  
  10959.  
  10960.  
  10961.  
  10962.  
  10963.  
  10964.  
  10965.  
  10966.  
  10967.  
  10968.  
  10969.  
  10970.  
  10971.  
  10972.  
  10973.  
  10974.  
  10975.  
  10976.  
  10977.  
  10978.  
  10979.  
  10980.  
  10981.  
  10982.  
  10983.  
  10984. <div class="price productitem__price ">
  10985.  
  10986.    <div
  10987.      class="price__compare-at visible"
  10988.      data-price-compare-container
  10989.    >
  10990.  
  10991.      
  10992.        <span class="money price__original" data-price-original></span>
  10993.      
  10994.    </div>
  10995.  
  10996.  
  10997.    
  10998.      
  10999.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11000.        
  11001.          <span class="visually-hidden">Original price</span>
  11002.          <span class="money price__compare-at--min" data-price-compare-min>
  11003.            $38.99
  11004.          </span>
  11005.          -
  11006.          <span class="visually-hidden">Original price</span>
  11007.          <span class="money price__compare-at--max" data-price-compare-max>
  11008.            $38.99
  11009.          </span>
  11010.        
  11011.      </div>
  11012.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11013.        <span class="visually-hidden">Original price</span>
  11014.        <span class="money price__compare-at--single" data-price-compare>
  11015.          
  11016.        </span>
  11017.      </div>
  11018.    
  11019.  
  11020.  
  11021.  <div class="price__current price__current--emphasize " data-price-container>
  11022.  
  11023.    
  11024.  
  11025.    
  11026.      
  11027.      
  11028.      <span class="money" data-price>
  11029.        $38.99
  11030.      </span>
  11031.    
  11032.    
  11033.  </div>
  11034.  
  11035.  
  11036.    
  11037.    <div class="price__current--hidden" data-current-price-range-hidden>
  11038.      
  11039.        <span class="money price__current--min" data-price-min>$38.99</span>
  11040.        -
  11041.        <span class="money price__current--max" data-price-max>$38.99</span>
  11042.      
  11043.    </div>
  11044.    <div class="price__current--hidden" data-current-price-hidden>
  11045.      <span class="visually-hidden">Current price</span>
  11046.      <span class="money" data-price>
  11047.        $38.99
  11048.      </span>
  11049.    </div>
  11050.  
  11051.  
  11052.  
  11053.    
  11054.    
  11055.    
  11056.    
  11057.  
  11058.    <div
  11059.      class="
  11060.        productitem__unit-price
  11061.        hidden
  11062.      "
  11063.      data-unit-price
  11064.    >
  11065.      <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>
  11066.    </div>
  11067.  
  11068.  
  11069.  
  11070. </div>
  11071.  
  11072.  
  11073.            </div>
  11074.  
  11075.            <div class="productitem--listview-badge">
  11076.              
  11077.  
  11078.  
  11079.  
  11080.  
  11081.  
  11082.  
  11083.  
  11084.  
  11085.  
  11086.  
  11087.  
  11088.  
  11089.  
  11090.  
  11091.  
  11092.  
  11093.  
  11094.  
  11095.  
  11096.  
  11097.  
  11098.  
  11099.  
  11100.  
  11101.  
  11102.  
  11103.  
  11104.            </div>
  11105.  
  11106.            
  11107.              <div
  11108.                class="
  11109.                  productitem--action
  11110.                  quickshop-button
  11111.                  
  11112.                "
  11113.              >
  11114.                <button
  11115.                  class="productitem--action-trigger button-secondary"
  11116.                  data-quickshop-full
  11117.                  
  11118.                  
  11119.                  type="button"
  11120.                >
  11121.                  Quick shop
  11122.                </button>
  11123.              </div>
  11124.            
  11125.  
  11126.            
  11127.              <div
  11128.                class="
  11129.                  productitem--action
  11130.                  atc--button
  11131.                  
  11132.                "
  11133.              >
  11134.                <button
  11135.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11136.                  type="button"
  11137.                  aria-label="Add to cart"
  11138.                  
  11139.                    data-quick-buy
  11140.                  
  11141.                  data-variant-id="39666212831319"
  11142.                  
  11143.                >
  11144.                  <span class="atc-button--text">
  11145.                    Add to cart
  11146.                  </span>
  11147.                  <span class="atc-button--icon"><svg
  11148.  aria-hidden="true"
  11149.  focusable="false"
  11150.  role="presentation"
  11151.  width="26"
  11152.  height="26"
  11153.  viewBox="0 0 26 26"
  11154.  xmlns="http://www.w3.org/2000/svg"
  11155. >
  11156.  <g fill-rule="nonzero" fill="currentColor">
  11157.    <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"/>
  11158.  </g>
  11159. </svg></span>
  11160.                </button>
  11161.              </div>
  11162.            
  11163.          </div>
  11164.        
  11165.      
  11166.    </div>
  11167.  </div>
  11168.  
  11169.  
  11170.    <script type="application/json" data-quick-buy-settings>
  11171.      {
  11172.        "cart_redirection": true,
  11173.        "money_format": "${{amount}}"
  11174.      }
  11175.    </script>
  11176.  
  11177. </li>
  11178.    
  11179.      
  11180.  
  11181.  
  11182.  
  11183.  
  11184.  
  11185.  
  11186.  
  11187.  
  11188.  
  11189.  
  11190.  
  11191.  
  11192.  
  11193.  
  11194.  
  11195.  
  11196.  
  11197.  
  11198.  
  11199.  
  11200.  
  11201.  
  11202.  
  11203.  
  11204.  
  11205.  
  11206.  
  11207.  
  11208.  
  11209.  
  11210.  
  11211.  
  11212.    
  11213.  
  11214.  
  11215.  
  11216. <li
  11217.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11218.  data-product-item
  11219.  data-product-quickshop-url="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11220.  
  11221. >
  11222.  <div class="productitem" data-product-item-content>
  11223.    
  11224.    
  11225.    
  11226.    
  11227.  
  11228.    
  11229.  
  11230.    
  11231.  
  11232.    <div class="productitem__container">
  11233.      
  11234.  
  11235.      <div class="productitem__image-container">
  11236.        <a target="_blank"
  11237.          class="productitem--image-link"
  11238.          href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11239.          aria-label="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11240.          tabindex="-1"
  11241.          data-product-page-link
  11242.        >
  11243.          <figure
  11244.            class="productitem--image"
  11245.            data-product-item-image
  11246.            
  11247.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11248.            
  11249.          >
  11250.            
  11251.              
  11252.              
  11253.  
  11254.  
  11255.    <noscript data-rimg-noscript>
  11256.      <img loading="lazy"
  11257.        
  11258.          src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11259.        
  11260.  
  11261.        alt=""
  11262.        data-rimg="noscript"
  11263.        srcset="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863 1x"
  11264.        class="productitem--image-primary"
  11265.        
  11266.        
  11267.      >
  11268.    </noscript>
  11269.  
  11270.  
  11271.  <img loading="lazy"
  11272.    
  11273.      src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11274.    
  11275.    alt=""
  11276.  
  11277.    
  11278.      data-rimg="lazy"
  11279.      data-rimg-scale="1"
  11280.      data-rimg-template="//laptopparts.ca/cdn/shop/products/8291_{size}.jpg?v=1648090863"
  11281.      data-rimg-max="500x500"
  11282.      data-rimg-crop="false"
  11283.      
  11284.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  11285.    
  11286.  
  11287.    class="productitem--image-primary"
  11288.    
  11289.    
  11290.  >
  11291.  
  11292.  
  11293.  
  11294.  <div data-rimg-canvas></div>
  11295.  
  11296.  
  11297.            
  11298.  
  11299.            
  11300.  
  11301.  
  11302.  
  11303.  
  11304.  
  11305.  
  11306.  
  11307.  
  11308.  
  11309.  
  11310.  
  11311.  
  11312.  
  11313.  
  11314.  
  11315.  
  11316.  
  11317.  
  11318.  
  11319.  
  11320.  
  11321.  
  11322.  
  11323.  
  11324.  
  11325.  
  11326.  
  11327.          </figure>
  11328.        </a>
  11329.      </div><div class="productitem--info">
  11330.        
  11331.          
  11332.  
  11333.        
  11334.  
  11335.        
  11336.          
  11337.  
  11338.  
  11339.  
  11340.  
  11341.  
  11342.  
  11343.  
  11344.  
  11345.  
  11346.  
  11347.  
  11348.  
  11349.  
  11350.  
  11351.  
  11352.  
  11353.  
  11354.  
  11355.  
  11356.  
  11357.  
  11358.  
  11359.  
  11360.  
  11361.  
  11362.  
  11363.  
  11364.  
  11365.  
  11366.  
  11367. <div class="price productitem__price ">
  11368.  
  11369.    <div
  11370.      class="price__compare-at visible"
  11371.      data-price-compare-container
  11372.    >
  11373.  
  11374.      
  11375.        <span class="money price__original" data-price-original></span>
  11376.      
  11377.    </div>
  11378.  
  11379.  
  11380.    
  11381.      
  11382.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11383.        
  11384.          <span class="visually-hidden">Original price</span>
  11385.          <span class="money price__compare-at--min" data-price-compare-min>
  11386.            $106.99
  11387.          </span>
  11388.          -
  11389.          <span class="visually-hidden">Original price</span>
  11390.          <span class="money price__compare-at--max" data-price-compare-max>
  11391.            $106.99
  11392.          </span>
  11393.        
  11394.      </div>
  11395.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11396.        <span class="visually-hidden">Original price</span>
  11397.        <span class="money price__compare-at--single" data-price-compare>
  11398.          
  11399.        </span>
  11400.      </div>
  11401.    
  11402.  
  11403.  
  11404.  <div class="price__current price__current--emphasize " data-price-container>
  11405.  
  11406.    
  11407.  
  11408.    
  11409.      
  11410.      
  11411.      <span class="money" data-price>
  11412.        $106.99
  11413.      </span>
  11414.    
  11415.    
  11416.  </div>
  11417.  
  11418.  
  11419.    
  11420.    <div class="price__current--hidden" data-current-price-range-hidden>
  11421.      
  11422.        <span class="money price__current--min" data-price-min>$106.99</span>
  11423.        -
  11424.        <span class="money price__current--max" data-price-max>$106.99</span>
  11425.      
  11426.    </div>
  11427.    <div class="price__current--hidden" data-current-price-hidden>
  11428.      <span class="visually-hidden">Current price</span>
  11429.      <span class="money" data-price>
  11430.        $106.99
  11431.      </span>
  11432.    </div>
  11433.  
  11434.  
  11435.  
  11436.    
  11437.    
  11438.    
  11439.    
  11440.  
  11441.    <div
  11442.      class="
  11443.        productitem__unit-price
  11444.        hidden
  11445.      "
  11446.      data-unit-price
  11447.    >
  11448.      <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>
  11449.    </div>
  11450.  
  11451.  
  11452.  
  11453. </div>
  11454.  
  11455.  
  11456.        
  11457.  
  11458.        <h2 class="productitem--title">
  11459.          <a href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a" data-product-page-link>
  11460.            5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A
  11461.          </a>
  11462.        </h2>
  11463.  
  11464.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  11465.        <div class="star_container 592337698839"></div>
  11466.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  11467.  
  11468.        
  11469.          
  11470.            <span class="productitem--vendor">
  11471.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  11472.            </span>
  11473.          
  11474.        
  11475.  
  11476.        
  11477.  
  11478.        
  11479.          
  11480.            <div class="productitem__stock-level">
  11481.              <!--
  11482.  
  11483.  
  11484.  
  11485.  
  11486.  
  11487.  
  11488.  
  11489. <div class="product-stock-level-wrapper" >
  11490.  
  11491.    <span class="
  11492.  product-stock-level
  11493.  product-stock-level--continue-selling
  11494.  
  11495. ">
  11496.      
  11497.  
  11498.      <span class="product-stock-level__text">
  11499.        
  11500.        <div class="product-stock-level__badge-text">
  11501.          
  11502.  
  11503.    In stock
  11504.  
  11505.  
  11506.        </div>
  11507.      </span>
  11508.    </span>
  11509.  
  11510. </div>
  11511. -->
  11512.              
  11513.  
  11514.  
  11515.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  11516.  
  11517.  
  11518.  
  11519.  
  11520.            </div>
  11521.          
  11522.  
  11523.          
  11524.            
  11525.          
  11526.        
  11527.  
  11528.        
  11529.          <div class="productitem--description">
  11530.            <p>
  11531. Description: 5 slot printhead for select HP printers. This item is refurbished.  Compatible Part #'s: CB326-30002, CN642A.  Compatible Models: HP ...</p>
  11532.  
  11533.            
  11534.              <a
  11535.                href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11536.                class="productitem--link"
  11537.                data-product-page-link
  11538.              >
  11539.                View full details
  11540.              </a>
  11541.            
  11542.          </div>
  11543.        
  11544.      </div>
  11545.  
  11546.      
  11547.        
  11548.          
  11549.          
  11550.          
  11551.  
  11552.          
  11553.          
  11554.  
  11555.          
  11556.  
  11557.          
  11558.  
  11559.          <div class="productitem--actions" data-product-actions>
  11560.            <div class="productitem--listview-price">
  11561.              
  11562.  
  11563.  
  11564.  
  11565.  
  11566.  
  11567.  
  11568.  
  11569.  
  11570.  
  11571.  
  11572.  
  11573.  
  11574.  
  11575.  
  11576.  
  11577.  
  11578.  
  11579.  
  11580.  
  11581.  
  11582.  
  11583.  
  11584.  
  11585.  
  11586.  
  11587.  
  11588.  
  11589.  
  11590.  
  11591.  
  11592. <div class="price productitem__price ">
  11593.  
  11594.    <div
  11595.      class="price__compare-at visible"
  11596.      data-price-compare-container
  11597.    >
  11598.  
  11599.      
  11600.        <span class="money price__original" data-price-original></span>
  11601.      
  11602.    </div>
  11603.  
  11604.  
  11605.    
  11606.      
  11607.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11608.        
  11609.          <span class="visually-hidden">Original price</span>
  11610.          <span class="money price__compare-at--min" data-price-compare-min>
  11611.            $106.99
  11612.          </span>
  11613.          -
  11614.          <span class="visually-hidden">Original price</span>
  11615.          <span class="money price__compare-at--max" data-price-compare-max>
  11616.            $106.99
  11617.          </span>
  11618.        
  11619.      </div>
  11620.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11621.        <span class="visually-hidden">Original price</span>
  11622.        <span class="money price__compare-at--single" data-price-compare>
  11623.          
  11624.        </span>
  11625.      </div>
  11626.    
  11627.  
  11628.  
  11629.  <div class="price__current price__current--emphasize " data-price-container>
  11630.  
  11631.    
  11632.  
  11633.    
  11634.      
  11635.      
  11636.      <span class="money" data-price>
  11637.        $106.99
  11638.      </span>
  11639.    
  11640.    
  11641.  </div>
  11642.  
  11643.  
  11644.    
  11645.    <div class="price__current--hidden" data-current-price-range-hidden>
  11646.      
  11647.        <span class="money price__current--min" data-price-min>$106.99</span>
  11648.        -
  11649.        <span class="money price__current--max" data-price-max>$106.99</span>
  11650.      
  11651.    </div>
  11652.    <div class="price__current--hidden" data-current-price-hidden>
  11653.      <span class="visually-hidden">Current price</span>
  11654.      <span class="money" data-price>
  11655.        $106.99
  11656.      </span>
  11657.    </div>
  11658.  
  11659.  
  11660.  
  11661.    
  11662.    
  11663.    
  11664.    
  11665.  
  11666.    <div
  11667.      class="
  11668.        productitem__unit-price
  11669.        hidden
  11670.      "
  11671.      data-unit-price
  11672.    >
  11673.      <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>
  11674.    </div>
  11675.  
  11676.  
  11677.  
  11678. </div>
  11679.  
  11680.  
  11681.            </div>
  11682.  
  11683.            <div class="productitem--listview-badge">
  11684.              
  11685.  
  11686.  
  11687.  
  11688.  
  11689.  
  11690.  
  11691.  
  11692.  
  11693.  
  11694.  
  11695.  
  11696.  
  11697.  
  11698.  
  11699.  
  11700.  
  11701.  
  11702.  
  11703.  
  11704.  
  11705.  
  11706.  
  11707.  
  11708.  
  11709.  
  11710.  
  11711.  
  11712.            </div>
  11713.  
  11714.            
  11715.              <div
  11716.                class="
  11717.                  productitem--action
  11718.                  quickshop-button
  11719.                  
  11720.                "
  11721.              >
  11722.                <button
  11723.                  class="productitem--action-trigger button-secondary"
  11724.                  data-quickshop-full
  11725.                  
  11726.                  
  11727.                  type="button"
  11728.                >
  11729.                  Quick shop
  11730.                </button>
  11731.              </div>
  11732.            
  11733.  
  11734.            
  11735.              <div
  11736.                class="
  11737.                  productitem--action
  11738.                  atc--button
  11739.                  
  11740.                "
  11741.              >
  11742.                <button
  11743.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11744.                  type="button"
  11745.                  aria-label="Add to cart"
  11746.                  
  11747.                    data-quick-buy
  11748.                  
  11749.                  data-variant-id="6936707596311"
  11750.                  
  11751.                >
  11752.                  <span class="atc-button--text">
  11753.                    Add to cart
  11754.                  </span>
  11755.                  <span class="atc-button--icon"><svg
  11756.  aria-hidden="true"
  11757.  focusable="false"
  11758.  role="presentation"
  11759.  width="26"
  11760.  height="26"
  11761.  viewBox="0 0 26 26"
  11762.  xmlns="http://www.w3.org/2000/svg"
  11763. >
  11764.  <g fill-rule="nonzero" fill="currentColor">
  11765.    <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"/>
  11766.  </g>
  11767. </svg></span>
  11768.                </button>
  11769.              </div>
  11770.            
  11771.          </div>
  11772.        
  11773.      
  11774.    </div>
  11775.  </div>
  11776.  
  11777.  
  11778.    <script type="application/json" data-quick-buy-settings>
  11779.      {
  11780.        "cart_redirection": true,
  11781.        "money_format": "${{amount}}"
  11782.      }
  11783.    </script>
  11784.  
  11785. </li>
  11786.    
  11787.      
  11788.  
  11789.  
  11790.  
  11791.  
  11792.  
  11793.  
  11794.  
  11795.  
  11796.  
  11797.  
  11798.  
  11799.  
  11800.  
  11801.  
  11802.  
  11803.  
  11804.  
  11805.  
  11806.  
  11807.  
  11808.  
  11809.  
  11810.  
  11811.  
  11812.  
  11813.  
  11814.  
  11815.  
  11816.  
  11817.  
  11818.  
  11819.  
  11820.    
  11821.  
  11822.  
  11823.  
  11824. <li
  11825.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11826.  data-product-item
  11827.  data-product-quickshop-url="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11828.  
  11829. >
  11830.  <div class="productitem" data-product-item-content>
  11831.    
  11832.    
  11833.    
  11834.    
  11835.  
  11836.    
  11837.  
  11838.    
  11839.  
  11840.    <div class="productitem__container">
  11841.      
  11842.  
  11843.      <div class="productitem__image-container">
  11844.        <a target="_blank"
  11845.          class="productitem--image-link"
  11846.          href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11847.          aria-label="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11848.          tabindex="-1"
  11849.          data-product-page-link
  11850.        >
  11851.          <figure
  11852.            class="productitem--image"
  11853.            data-product-item-image
  11854.            
  11855.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11856.            
  11857.          >
  11858.            
  11859.              
  11860.              
  11861.  
  11862.  
  11863.    <noscript data-rimg-noscript>
  11864.      <img loading="lazy"
  11865.        
  11866.          src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  11867.        
  11868.  
  11869.        alt=""
  11870.        data-rimg="noscript"
  11871.        srcset="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253 1x, //laptopparts.ca/cdn/shop/products/500gb_998x998.jpg?v=1697125253 1.95x"
  11872.        class="productitem--image-primary"
  11873.        
  11874.        
  11875.      >
  11876.    </noscript>
  11877.  
  11878.  
  11879.  <img loading="lazy"
  11880.    
  11881.      src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  11882.    
  11883.    alt=""
  11884.  
  11885.    
  11886.      data-rimg="lazy"
  11887.      data-rimg-scale="1"
  11888.      data-rimg-template="//laptopparts.ca/cdn/shop/products/500gb_{size}.jpg?v=1697125253"
  11889.      data-rimg-max="1000x1000"
  11890.      data-rimg-crop="false"
  11891.      
  11892.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  11893.    
  11894.  
  11895.    class="productitem--image-primary"
  11896.    
  11897.    
  11898.  >
  11899.  
  11900.  
  11901.  
  11902.  <div data-rimg-canvas></div>
  11903.  
  11904.  
  11905.            
  11906.  
  11907.            
  11908.  
  11909.  
  11910.  
  11911.  
  11912.  
  11913.  
  11914.  
  11915.  
  11916.  
  11917.  
  11918.  
  11919.  
  11920.  
  11921.  
  11922.  
  11923.  
  11924.  
  11925.  
  11926.  
  11927.  
  11928.  
  11929.  
  11930.  
  11931.  
  11932.  
  11933.  
  11934.  
  11935.          </figure>
  11936.        </a>
  11937.      </div><div class="productitem--info">
  11938.        
  11939.          
  11940.  
  11941.        
  11942.  
  11943.        
  11944.          
  11945.  
  11946.  
  11947.  
  11948.  
  11949.  
  11950.  
  11951.  
  11952.  
  11953.  
  11954.  
  11955.  
  11956.  
  11957.  
  11958.  
  11959.  
  11960.  
  11961.  
  11962.  
  11963.  
  11964.  
  11965.  
  11966.  
  11967.  
  11968.  
  11969.  
  11970.  
  11971.  
  11972.  
  11973.  
  11974.  
  11975. <div class="price productitem__price ">
  11976.  
  11977.    <div
  11978.      class="price__compare-at visible"
  11979.      data-price-compare-container
  11980.    >
  11981.  
  11982.      
  11983.        <span class="money price__original" data-price-original></span>
  11984.      
  11985.    </div>
  11986.  
  11987.  
  11988.    
  11989.      
  11990.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11991.        
  11992.          <span class="visually-hidden">Original price</span>
  11993.          <span class="money price__compare-at--min" data-price-compare-min>
  11994.            $62.99
  11995.          </span>
  11996.          -
  11997.          <span class="visually-hidden">Original price</span>
  11998.          <span class="money price__compare-at--max" data-price-compare-max>
  11999.            $62.99
  12000.          </span>
  12001.        
  12002.      </div>
  12003.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12004.        <span class="visually-hidden">Original price</span>
  12005.        <span class="money price__compare-at--single" data-price-compare>
  12006.          
  12007.        </span>
  12008.      </div>
  12009.    
  12010.  
  12011.  
  12012.  <div class="price__current price__current--emphasize " data-price-container>
  12013.  
  12014.    
  12015.  
  12016.    
  12017.      
  12018.      
  12019.      <span class="money" data-price>
  12020.        $62.99
  12021.      </span>
  12022.    
  12023.    
  12024.  </div>
  12025.  
  12026.  
  12027.    
  12028.    <div class="price__current--hidden" data-current-price-range-hidden>
  12029.      
  12030.        <span class="money price__current--min" data-price-min>$62.99</span>
  12031.        -
  12032.        <span class="money price__current--max" data-price-max>$62.99</span>
  12033.      
  12034.    </div>
  12035.    <div class="price__current--hidden" data-current-price-hidden>
  12036.      <span class="visually-hidden">Current price</span>
  12037.      <span class="money" data-price>
  12038.        $62.99
  12039.      </span>
  12040.    </div>
  12041.  
  12042.  
  12043.  
  12044.    
  12045.    
  12046.    
  12047.    
  12048.  
  12049.    <div
  12050.      class="
  12051.        productitem__unit-price
  12052.        hidden
  12053.      "
  12054.      data-unit-price
  12055.    >
  12056.      <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>
  12057.    </div>
  12058.  
  12059.  
  12060.  
  12061. </div>
  12062.  
  12063.  
  12064.        
  12065.  
  12066.        <h2 class="productitem--title">
  12067.          <a href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo" data-product-page-link>
  12068.            500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo
  12069.          </a>
  12070.        </h2>
  12071.  
  12072.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12073.        <div class="star_container 1362179063831"></div>
  12074.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12075.  
  12076.        
  12077.          
  12078.            <span class="productitem--vendor">
  12079.              <a href="/collections/vendors?q=Lenovo" title="Lenovo">Lenovo</a>
  12080.            </span>
  12081.          
  12082.        
  12083.  
  12084.        
  12085.  
  12086.        
  12087.          
  12088.            <div class="productitem__stock-level">
  12089.              <!--
  12090.  
  12091.  
  12092.  
  12093.  
  12094.  
  12095.  
  12096.  
  12097. <div class="product-stock-level-wrapper" >
  12098.  
  12099.    <span class="
  12100.  product-stock-level
  12101.  product-stock-level--continue-selling
  12102.  
  12103. ">
  12104.      
  12105.  
  12106.      <span class="product-stock-level__text">
  12107.        
  12108.        <div class="product-stock-level__badge-text">
  12109.          
  12110.  
  12111.    In stock
  12112.  
  12113.  
  12114.        </div>
  12115.      </span>
  12116.    </span>
  12117.  
  12118. </div>
  12119. -->
  12120.              
  12121.  
  12122.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12123.  
  12124.  
  12125.  
  12126.  
  12127.  
  12128.  
  12129.  
  12130.            </div>
  12131.          
  12132.  
  12133.          
  12134.            
  12135.          
  12136.        
  12137.  
  12138.        
  12139.          <div class="productitem--description">
  12140.            <p>500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo</p>
  12141.  
  12142.            
  12143.          </div>
  12144.        
  12145.      </div>
  12146.  
  12147.      
  12148.        
  12149.          
  12150.          
  12151.          
  12152.  
  12153.          
  12154.          
  12155.  
  12156.          
  12157.  
  12158.          
  12159.  
  12160.          <div class="productitem--actions" data-product-actions>
  12161.            <div class="productitem--listview-price">
  12162.              
  12163.  
  12164.  
  12165.  
  12166.  
  12167.  
  12168.  
  12169.  
  12170.  
  12171.  
  12172.  
  12173.  
  12174.  
  12175.  
  12176.  
  12177.  
  12178.  
  12179.  
  12180.  
  12181.  
  12182.  
  12183.  
  12184.  
  12185.  
  12186.  
  12187.  
  12188.  
  12189.  
  12190.  
  12191.  
  12192.  
  12193. <div class="price productitem__price ">
  12194.  
  12195.    <div
  12196.      class="price__compare-at visible"
  12197.      data-price-compare-container
  12198.    >
  12199.  
  12200.      
  12201.        <span class="money price__original" data-price-original></span>
  12202.      
  12203.    </div>
  12204.  
  12205.  
  12206.    
  12207.      
  12208.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12209.        
  12210.          <span class="visually-hidden">Original price</span>
  12211.          <span class="money price__compare-at--min" data-price-compare-min>
  12212.            $62.99
  12213.          </span>
  12214.          -
  12215.          <span class="visually-hidden">Original price</span>
  12216.          <span class="money price__compare-at--max" data-price-compare-max>
  12217.            $62.99
  12218.          </span>
  12219.        
  12220.      </div>
  12221.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12222.        <span class="visually-hidden">Original price</span>
  12223.        <span class="money price__compare-at--single" data-price-compare>
  12224.          
  12225.        </span>
  12226.      </div>
  12227.    
  12228.  
  12229.  
  12230.  <div class="price__current price__current--emphasize " data-price-container>
  12231.  
  12232.    
  12233.  
  12234.    
  12235.      
  12236.      
  12237.      <span class="money" data-price>
  12238.        $62.99
  12239.      </span>
  12240.    
  12241.    
  12242.  </div>
  12243.  
  12244.  
  12245.    
  12246.    <div class="price__current--hidden" data-current-price-range-hidden>
  12247.      
  12248.        <span class="money price__current--min" data-price-min>$62.99</span>
  12249.        -
  12250.        <span class="money price__current--max" data-price-max>$62.99</span>
  12251.      
  12252.    </div>
  12253.    <div class="price__current--hidden" data-current-price-hidden>
  12254.      <span class="visually-hidden">Current price</span>
  12255.      <span class="money" data-price>
  12256.        $62.99
  12257.      </span>
  12258.    </div>
  12259.  
  12260.  
  12261.  
  12262.    
  12263.    
  12264.    
  12265.    
  12266.  
  12267.    <div
  12268.      class="
  12269.        productitem__unit-price
  12270.        hidden
  12271.      "
  12272.      data-unit-price
  12273.    >
  12274.      <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>
  12275.    </div>
  12276.  
  12277.  
  12278.  
  12279. </div>
  12280.  
  12281.  
  12282.            </div>
  12283.  
  12284.            <div class="productitem--listview-badge">
  12285.              
  12286.  
  12287.  
  12288.  
  12289.  
  12290.  
  12291.  
  12292.  
  12293.  
  12294.  
  12295.  
  12296.  
  12297.  
  12298.  
  12299.  
  12300.  
  12301.  
  12302.  
  12303.  
  12304.  
  12305.  
  12306.  
  12307.  
  12308.  
  12309.  
  12310.  
  12311.  
  12312.  
  12313.            </div>
  12314.  
  12315.            
  12316.              <div
  12317.                class="
  12318.                  productitem--action
  12319.                  quickshop-button
  12320.                  
  12321.                "
  12322.              >
  12323.                <button
  12324.                  class="productitem--action-trigger button-secondary"
  12325.                  data-quickshop-full
  12326.                  
  12327.                  
  12328.                  type="button"
  12329.                >
  12330.                  Quick shop
  12331.                </button>
  12332.              </div>
  12333.            
  12334.  
  12335.            
  12336.              <div
  12337.                class="
  12338.                  productitem--action
  12339.                  atc--button
  12340.                  
  12341.                "
  12342.              >
  12343.                <button
  12344.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12345.                  type="button"
  12346.                  aria-label="Add to cart"
  12347.                  
  12348.                    data-quick-buy
  12349.                  
  12350.                  data-variant-id="12366737309719"
  12351.                  
  12352.                >
  12353.                  <span class="atc-button--text">
  12354.                    Add to cart
  12355.                  </span>
  12356.                  <span class="atc-button--icon"><svg
  12357.  aria-hidden="true"
  12358.  focusable="false"
  12359.  role="presentation"
  12360.  width="26"
  12361.  height="26"
  12362.  viewBox="0 0 26 26"
  12363.  xmlns="http://www.w3.org/2000/svg"
  12364. >
  12365.  <g fill-rule="nonzero" fill="currentColor">
  12366.    <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"/>
  12367.  </g>
  12368. </svg></span>
  12369.                </button>
  12370.              </div>
  12371.            
  12372.          </div>
  12373.        
  12374.      
  12375.    </div>
  12376.  </div>
  12377.  
  12378.  
  12379.    <script type="application/json" data-quick-buy-settings>
  12380.      {
  12381.        "cart_redirection": true,
  12382.        "money_format": "${{amount}}"
  12383.      }
  12384.    </script>
  12385.  
  12386. </li>
  12387.    
  12388.      
  12389.  
  12390.  
  12391.  
  12392.  
  12393.  
  12394.  
  12395.  
  12396.  
  12397.  
  12398.  
  12399.  
  12400.  
  12401.  
  12402.  
  12403.  
  12404.  
  12405.  
  12406.  
  12407.  
  12408.  
  12409.  
  12410.  
  12411.  
  12412.  
  12413.  
  12414.  
  12415.  
  12416.  
  12417.  
  12418.  
  12419.  
  12420.  
  12421.    
  12422.  
  12423.  
  12424.  
  12425. <li
  12426.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  12427.  data-product-item
  12428.  data-product-quickshop-url="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12429.  
  12430. >
  12431.  <div class="productitem" data-product-item-content>
  12432.    
  12433.    
  12434.    
  12435.    
  12436.  
  12437.    
  12438.  
  12439.    
  12440.  
  12441.    <div class="productitem__container">
  12442.      
  12443.  
  12444.      <div class="productitem__image-container">
  12445.        <a target="_blank"
  12446.          class="productitem--image-link"
  12447.          href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12448.          aria-label="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12449.          tabindex="-1"
  12450.          data-product-page-link
  12451.        >
  12452.          <figure
  12453.            class="productitem--image"
  12454.            data-product-item-image
  12455.            
  12456.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  12457.            
  12458.          >
  12459.            
  12460.              
  12461.              
  12462.  
  12463.  
  12464.    <noscript data-rimg-noscript>
  12465.      <img loading="lazy"
  12466.        
  12467.          src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12468.        
  12469.  
  12470.        alt=""
  12471.        data-rimg="noscript"
  12472.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700 1x"
  12473.        class="productitem--image-primary"
  12474.        
  12475.        
  12476.      >
  12477.    </noscript>
  12478.  
  12479.  
  12480.  <img loading="lazy"
  12481.    
  12482.      src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12483.    
  12484.    alt=""
  12485.  
  12486.    
  12487.      data-rimg="lazy"
  12488.      data-rimg-scale="1"
  12489.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_{size}.jpg?v=1648042700"
  12490.      data-rimg-max="500x500"
  12491.      data-rimg-crop="false"
  12492.      
  12493.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  12494.    
  12495.  
  12496.    class="productitem--image-primary"
  12497.    
  12498.    
  12499.  >
  12500.  
  12501.  
  12502.  
  12503.  <div data-rimg-canvas></div>
  12504.  
  12505.  
  12506.            
  12507.  
  12508.            
  12509.  
  12510.  
  12511.  
  12512.  
  12513.  
  12514.  
  12515.  
  12516.  
  12517.  
  12518.  
  12519.  
  12520.  
  12521.  
  12522.  
  12523.  
  12524.  
  12525.  
  12526.  
  12527.  
  12528.  
  12529.  
  12530.  
  12531.  
  12532.  
  12533.  
  12534.  
  12535.  
  12536.          </figure>
  12537.        </a>
  12538.      </div><div class="productitem--info">
  12539.        
  12540.          
  12541.  
  12542.        
  12543.  
  12544.        
  12545.          
  12546.  
  12547.  
  12548.  
  12549.  
  12550.  
  12551.  
  12552.  
  12553.  
  12554.  
  12555.  
  12556.  
  12557.  
  12558.  
  12559.  
  12560.  
  12561.  
  12562.  
  12563.  
  12564.  
  12565.  
  12566.  
  12567.  
  12568.  
  12569.  
  12570.  
  12571.  
  12572.  
  12573.  
  12574.  
  12575.  
  12576. <div class="price productitem__price ">
  12577.  
  12578.    <div
  12579.      class="price__compare-at visible"
  12580.      data-price-compare-container
  12581.    >
  12582.  
  12583.      
  12584.        <span class="money price__original" data-price-original></span>
  12585.      
  12586.    </div>
  12587.  
  12588.  
  12589.    
  12590.      
  12591.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12592.        
  12593.          <span class="visually-hidden">Original price</span>
  12594.          <span class="money price__compare-at--min" data-price-compare-min>
  12595.            $54.99
  12596.          </span>
  12597.          -
  12598.          <span class="visually-hidden">Original price</span>
  12599.          <span class="money price__compare-at--max" data-price-compare-max>
  12600.            $54.99
  12601.          </span>
  12602.        
  12603.      </div>
  12604.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12605.        <span class="visually-hidden">Original price</span>
  12606.        <span class="money price__compare-at--single" data-price-compare>
  12607.          
  12608.        </span>
  12609.      </div>
  12610.    
  12611.  
  12612.  
  12613.  <div class="price__current price__current--emphasize " data-price-container>
  12614.  
  12615.    
  12616.  
  12617.    
  12618.      
  12619.      
  12620.      <span class="money" data-price>
  12621.        $54.99
  12622.      </span>
  12623.    
  12624.    
  12625.  </div>
  12626.  
  12627.  
  12628.    
  12629.    <div class="price__current--hidden" data-current-price-range-hidden>
  12630.      
  12631.        <span class="money price__current--min" data-price-min>$54.99</span>
  12632.        -
  12633.        <span class="money price__current--max" data-price-max>$54.99</span>
  12634.      
  12635.    </div>
  12636.    <div class="price__current--hidden" data-current-price-hidden>
  12637.      <span class="visually-hidden">Current price</span>
  12638.      <span class="money" data-price>
  12639.        $54.99
  12640.      </span>
  12641.    </div>
  12642.  
  12643.  
  12644.  
  12645.    
  12646.    
  12647.    
  12648.    
  12649.  
  12650.    <div
  12651.      class="
  12652.        productitem__unit-price
  12653.        hidden
  12654.      "
  12655.      data-unit-price
  12656.    >
  12657.      <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>
  12658.    </div>
  12659.  
  12660.  
  12661.  
  12662. </div>
  12663.  
  12664.  
  12665.        
  12666.  
  12667.        <h2 class="productitem--title">
  12668.          <a href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10" data-product-page-link>
  12669.            4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10
  12670.          </a>
  12671.        </h2>
  12672.  
  12673.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12674.        <div class="star_container 3929813123159"></div>
  12675.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12676.  
  12677.        
  12678.          
  12679.            <span class="productitem--vendor">
  12680.              <a href="/collections/vendors?q=Dell" title="Dell">Dell</a>
  12681.            </span>
  12682.          
  12683.        
  12684.  
  12685.        
  12686.  
  12687.        
  12688.          
  12689.            <div class="productitem__stock-level">
  12690.              <!--
  12691.  
  12692.  
  12693.  
  12694.  
  12695.  
  12696.  
  12697.  
  12698. <div class="product-stock-level-wrapper" >
  12699.  
  12700.    <span class="
  12701.  product-stock-level
  12702.  product-stock-level--continue-selling
  12703.  
  12704. ">
  12705.      
  12706.  
  12707.      <span class="product-stock-level__text">
  12708.        
  12709.        <div class="product-stock-level__badge-text">
  12710.          
  12711.  
  12712.    In stock
  12713.  
  12714.  
  12715.        </div>
  12716.      </span>
  12717.    </span>
  12718.  
  12719. </div>
  12720. -->
  12721.              
  12722.  
  12723.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12724.  
  12725.  
  12726.  
  12727.  
  12728.  
  12729.  
  12730.  
  12731.            </div>
  12732.          
  12733.  
  12734.          
  12735.            
  12736.          
  12737.        
  12738.  
  12739.        
  12740.          <div class="productitem--description">
  12741.            <p>
  12742. 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>
  12743.  
  12744.            
  12745.              <a
  12746.                href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12747.                class="productitem--link"
  12748.                data-product-page-link
  12749.              >
  12750.                View full details
  12751.              </a>
  12752.            
  12753.          </div>
  12754.        
  12755.      </div>
  12756.  
  12757.      
  12758.        
  12759.          
  12760.          
  12761.          
  12762.  
  12763.          
  12764.          
  12765.  
  12766.          
  12767.  
  12768.          
  12769.  
  12770.          <div class="productitem--actions" data-product-actions>
  12771.            <div class="productitem--listview-price">
  12772.              
  12773.  
  12774.  
  12775.  
  12776.  
  12777.  
  12778.  
  12779.  
  12780.  
  12781.  
  12782.  
  12783.  
  12784.  
  12785.  
  12786.  
  12787.  
  12788.  
  12789.  
  12790.  
  12791.  
  12792.  
  12793.  
  12794.  
  12795.  
  12796.  
  12797.  
  12798.  
  12799.  
  12800.  
  12801.  
  12802.  
  12803. <div class="price productitem__price ">
  12804.  
  12805.    <div
  12806.      class="price__compare-at visible"
  12807.      data-price-compare-container
  12808.    >
  12809.  
  12810.      
  12811.        <span class="money price__original" data-price-original></span>
  12812.      
  12813.    </div>
  12814.  
  12815.  
  12816.    
  12817.      
  12818.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12819.        
  12820.          <span class="visually-hidden">Original price</span>
  12821.          <span class="money price__compare-at--min" data-price-compare-min>
  12822.            $54.99
  12823.          </span>
  12824.          -
  12825.          <span class="visually-hidden">Original price</span>
  12826.          <span class="money price__compare-at--max" data-price-compare-max>
  12827.            $54.99
  12828.          </span>
  12829.        
  12830.      </div>
  12831.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12832.        <span class="visually-hidden">Original price</span>
  12833.        <span class="money price__compare-at--single" data-price-compare>
  12834.          
  12835.        </span>
  12836.      </div>
  12837.    
  12838.  
  12839.  
  12840.  <div class="price__current price__current--emphasize " data-price-container>
  12841.  
  12842.    
  12843.  
  12844.    
  12845.      
  12846.      
  12847.      <span class="money" data-price>
  12848.        $54.99
  12849.      </span>
  12850.    
  12851.    
  12852.  </div>
  12853.  
  12854.  
  12855.    
  12856.    <div class="price__current--hidden" data-current-price-range-hidden>
  12857.      
  12858.        <span class="money price__current--min" data-price-min>$54.99</span>
  12859.        -
  12860.        <span class="money price__current--max" data-price-max>$54.99</span>
  12861.      
  12862.    </div>
  12863.    <div class="price__current--hidden" data-current-price-hidden>
  12864.      <span class="visually-hidden">Current price</span>
  12865.      <span class="money" data-price>
  12866.        $54.99
  12867.      </span>
  12868.    </div>
  12869.  
  12870.  
  12871.  
  12872.    
  12873.    
  12874.    
  12875.    
  12876.  
  12877.    <div
  12878.      class="
  12879.        productitem__unit-price
  12880.        hidden
  12881.      "
  12882.      data-unit-price
  12883.    >
  12884.      <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>
  12885.    </div>
  12886.  
  12887.  
  12888.  
  12889. </div>
  12890.  
  12891.  
  12892.            </div>
  12893.  
  12894.            <div class="productitem--listview-badge">
  12895.              
  12896.  
  12897.  
  12898.  
  12899.  
  12900.  
  12901.  
  12902.  
  12903.  
  12904.  
  12905.  
  12906.  
  12907.  
  12908.  
  12909.  
  12910.  
  12911.  
  12912.  
  12913.  
  12914.  
  12915.  
  12916.  
  12917.  
  12918.  
  12919.  
  12920.  
  12921.  
  12922.  
  12923.            </div>
  12924.  
  12925.            
  12926.              <div
  12927.                class="
  12928.                  productitem--action
  12929.                  quickshop-button
  12930.                  
  12931.                "
  12932.              >
  12933.                <button
  12934.                  class="productitem--action-trigger button-secondary"
  12935.                  data-quickshop-full
  12936.                  
  12937.                  
  12938.                  type="button"
  12939.                >
  12940.                  Quick shop
  12941.                </button>
  12942.              </div>
  12943.            
  12944.  
  12945.            
  12946.              <div
  12947.                class="
  12948.                  productitem--action
  12949.                  atc--button
  12950.                  
  12951.                "
  12952.              >
  12953.                <button
  12954.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12955.                  type="button"
  12956.                  aria-label="Add to cart"
  12957.                  
  12958.                    data-quick-buy
  12959.                  
  12960.                  data-variant-id="29531497529431"
  12961.                  
  12962.                >
  12963.                  <span class="atc-button--text">
  12964.                    Add to cart
  12965.                  </span>
  12966.                  <span class="atc-button--icon"><svg
  12967.  aria-hidden="true"
  12968.  focusable="false"
  12969.  role="presentation"
  12970.  width="26"
  12971.  height="26"
  12972.  viewBox="0 0 26 26"
  12973.  xmlns="http://www.w3.org/2000/svg"
  12974. >
  12975.  <g fill-rule="nonzero" fill="currentColor">
  12976.    <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"/>
  12977.  </g>
  12978. </svg></span>
  12979.                </button>
  12980.              </div>
  12981.            
  12982.          </div>
  12983.        
  12984.      
  12985.    </div>
  12986.  </div>
  12987.  
  12988.  
  12989.    <script type="application/json" data-quick-buy-settings>
  12990.      {
  12991.        "cart_redirection": true,
  12992.        "money_format": "${{amount}}"
  12993.      }
  12994.    </script>
  12995.  
  12996. </li>
  12997.    
  12998.      
  12999.  
  13000.  
  13001.  
  13002.  
  13003.  
  13004.  
  13005.  
  13006.  
  13007.  
  13008.  
  13009.  
  13010.  
  13011.  
  13012.  
  13013.  
  13014.  
  13015.  
  13016.  
  13017.  
  13018.  
  13019.  
  13020.  
  13021.  
  13022.  
  13023.  
  13024.  
  13025.  
  13026.  
  13027.  
  13028.  
  13029.  
  13030.  
  13031.    
  13032.  
  13033.  
  13034.  
  13035. <li
  13036.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13037.  data-product-item
  13038.  data-product-quickshop-url="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13039.  
  13040. >
  13041.  <div class="productitem" data-product-item-content>
  13042.    
  13043.    
  13044.    
  13045.    
  13046.  
  13047.    
  13048.  
  13049.    
  13050.  
  13051.    <div class="productitem__container">
  13052.      
  13053.  
  13054.      <div class="productitem__image-container">
  13055.        <a target="_blank"
  13056.          class="productitem--image-link"
  13057.          href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13058.          aria-label="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13059.          tabindex="-1"
  13060.          data-product-page-link
  13061.        >
  13062.          <figure
  13063.            class="productitem--image"
  13064.            data-product-item-image
  13065.            
  13066.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13067.            
  13068.          >
  13069.            
  13070.              
  13071.              
  13072.  
  13073.  
  13074.    <noscript data-rimg-noscript>
  13075.      <img loading="lazy"
  13076.        
  13077.          src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13078.        
  13079.  
  13080.        alt="925740-002"
  13081.        data-rimg="noscript"
  13082.        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"
  13083.        class="productitem--image-primary"
  13084.        
  13085.        
  13086.      >
  13087.    </noscript>
  13088.  
  13089.  
  13090.  <img loading="lazy"
  13091.    
  13092.      src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13093.    
  13094.    alt="925740-002"
  13095.  
  13096.    
  13097.      data-rimg="lazy"
  13098.      data-rimg-scale="1"
  13099.      data-rimg-template="//laptopparts.ca/cdn/shop/files/tpn-ca06_{size}.jpg?v=1721171198"
  13100.      data-rimg-max="1043x1043"
  13101.      data-rimg-crop="false"
  13102.      
  13103.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  13104.    
  13105.  
  13106.    class="productitem--image-primary"
  13107.    
  13108.    
  13109.  >
  13110.  
  13111.  
  13112.  
  13113.  <div data-rimg-canvas></div>
  13114.  
  13115.  
  13116.            
  13117.  
  13118.            
  13119.  
  13120.  
  13121.  
  13122.  
  13123.  
  13124.  
  13125.  
  13126.  
  13127.  
  13128.  
  13129.  
  13130.  
  13131.  
  13132.  
  13133.  
  13134.  
  13135.  
  13136.  
  13137.  
  13138.  
  13139.  
  13140.  
  13141.  
  13142.  
  13143.  
  13144.  
  13145.  
  13146.          </figure>
  13147.        </a>
  13148.      </div><div class="productitem--info">
  13149.        
  13150.          
  13151.  
  13152.        
  13153.  
  13154.        
  13155.          
  13156.  
  13157.  
  13158.  
  13159.  
  13160.  
  13161.  
  13162.  
  13163.  
  13164.  
  13165.  
  13166.  
  13167.  
  13168.  
  13169.  
  13170.  
  13171.  
  13172.  
  13173.  
  13174.  
  13175.  
  13176.  
  13177.  
  13178.  
  13179.  
  13180.  
  13181.  
  13182.  
  13183.  
  13184.  
  13185.  
  13186. <div class="price productitem__price ">
  13187.  
  13188.    <div
  13189.      class="price__compare-at visible"
  13190.      data-price-compare-container
  13191.    >
  13192.  
  13193.      
  13194.        <span class="money price__original" data-price-original></span>
  13195.      
  13196.    </div>
  13197.  
  13198.  
  13199.    
  13200.      
  13201.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13202.        
  13203.          <span class="visually-hidden">Original price</span>
  13204.          <span class="money price__compare-at--min" data-price-compare-min>
  13205.            $65.98
  13206.          </span>
  13207.          -
  13208.          <span class="visually-hidden">Original price</span>
  13209.          <span class="money price__compare-at--max" data-price-compare-max>
  13210.            $65.98
  13211.          </span>
  13212.        
  13213.      </div>
  13214.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13215.        <span class="visually-hidden">Original price</span>
  13216.        <span class="money price__compare-at--single" data-price-compare>
  13217.          
  13218.        </span>
  13219.      </div>
  13220.    
  13221.  
  13222.  
  13223.  <div class="price__current price__current--emphasize " data-price-container>
  13224.  
  13225.    
  13226.  
  13227.    
  13228.      
  13229.      
  13230.      <span class="money" data-price>
  13231.        $65.98
  13232.      </span>
  13233.    
  13234.    
  13235.  </div>
  13236.  
  13237.  
  13238.    
  13239.    <div class="price__current--hidden" data-current-price-range-hidden>
  13240.      
  13241.        <span class="money price__current--min" data-price-min>$65.98</span>
  13242.        -
  13243.        <span class="money price__current--max" data-price-max>$65.98</span>
  13244.      
  13245.    </div>
  13246.    <div class="price__current--hidden" data-current-price-hidden>
  13247.      <span class="visually-hidden">Current price</span>
  13248.      <span class="money" data-price>
  13249.        $65.98
  13250.      </span>
  13251.    </div>
  13252.  
  13253.  
  13254.  
  13255.    
  13256.    
  13257.    
  13258.    
  13259.  
  13260.    <div
  13261.      class="
  13262.        productitem__unit-price
  13263.        hidden
  13264.      "
  13265.      data-unit-price
  13266.    >
  13267.      <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>
  13268.    </div>
  13269.  
  13270.  
  13271.  
  13272. </div>
  13273.  
  13274.  
  13275.        
  13276.  
  13277.        <h2 class="productitem--title">
  13278.          <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>
  13279.            925740-002 Genuine 65W USB Type-C Adapter Charger for HP Elite X2 1012 G2 Elitebook x360
  13280.          </a>
  13281.        </h2>
  13282.  
  13283.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13284.        <div class="star_container 6881873985623"></div>
  13285.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13286.  
  13287.        
  13288.          
  13289.            <span class="productitem--vendor">
  13290.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  13291.            </span>
  13292.          
  13293.        
  13294.  
  13295.        
  13296.  
  13297.        
  13298.          
  13299.            <div class="productitem__stock-level">
  13300.              <!--
  13301.  
  13302.  
  13303.  
  13304.  
  13305.  
  13306.  
  13307.  
  13308. <div class="product-stock-level-wrapper" >
  13309.  
  13310.    <span class="
  13311.  product-stock-level
  13312.  product-stock-level--continue-selling
  13313.  
  13314. ">
  13315.      
  13316.  
  13317.      <span class="product-stock-level__text">
  13318.        
  13319.        <div class="product-stock-level__badge-text">
  13320.          
  13321.  
  13322.    In stock
  13323.  
  13324.  
  13325.        </div>
  13326.      </span>
  13327.    </span>
  13328.  
  13329. </div>
  13330. -->
  13331.              
  13332.  
  13333.  
  13334.    
  13335.      <b style="color:green">In stock</b>
  13336.    
  13337.  
  13338.  
  13339.  
  13340.  
  13341.  
  13342.  
  13343.  
  13344.            </div>
  13345.          
  13346.  
  13347.          
  13348.            
  13349.          
  13350.        
  13351.  
  13352.        
  13353.          <div class="productitem--description">
  13354.            <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>
  13355.  
  13356.            
  13357.              <a
  13358.                href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13359.                class="productitem--link"
  13360.                data-product-page-link
  13361.              >
  13362.                View full details
  13363.              </a>
  13364.            
  13365.          </div>
  13366.        
  13367.      </div>
  13368.  
  13369.      
  13370.        
  13371.          
  13372.          
  13373.          
  13374.  
  13375.          
  13376.          
  13377.  
  13378.          
  13379.  
  13380.          
  13381.  
  13382.          <div class="productitem--actions" data-product-actions>
  13383.            <div class="productitem--listview-price">
  13384.              
  13385.  
  13386.  
  13387.  
  13388.  
  13389.  
  13390.  
  13391.  
  13392.  
  13393.  
  13394.  
  13395.  
  13396.  
  13397.  
  13398.  
  13399.  
  13400.  
  13401.  
  13402.  
  13403.  
  13404.  
  13405.  
  13406.  
  13407.  
  13408.  
  13409.  
  13410.  
  13411.  
  13412.  
  13413.  
  13414.  
  13415. <div class="price productitem__price ">
  13416.  
  13417.    <div
  13418.      class="price__compare-at visible"
  13419.      data-price-compare-container
  13420.    >
  13421.  
  13422.      
  13423.        <span class="money price__original" data-price-original></span>
  13424.      
  13425.    </div>
  13426.  
  13427.  
  13428.    
  13429.      
  13430.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13431.        
  13432.          <span class="visually-hidden">Original price</span>
  13433.          <span class="money price__compare-at--min" data-price-compare-min>
  13434.            $65.98
  13435.          </span>
  13436.          -
  13437.          <span class="visually-hidden">Original price</span>
  13438.          <span class="money price__compare-at--max" data-price-compare-max>
  13439.            $65.98
  13440.          </span>
  13441.        
  13442.      </div>
  13443.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13444.        <span class="visually-hidden">Original price</span>
  13445.        <span class="money price__compare-at--single" data-price-compare>
  13446.          
  13447.        </span>
  13448.      </div>
  13449.    
  13450.  
  13451.  
  13452.  <div class="price__current price__current--emphasize " data-price-container>
  13453.  
  13454.    
  13455.  
  13456.    
  13457.      
  13458.      
  13459.      <span class="money" data-price>
  13460.        $65.98
  13461.      </span>
  13462.    
  13463.    
  13464.  </div>
  13465.  
  13466.  
  13467.    
  13468.    <div class="price__current--hidden" data-current-price-range-hidden>
  13469.      
  13470.        <span class="money price__current--min" data-price-min>$65.98</span>
  13471.        -
  13472.        <span class="money price__current--max" data-price-max>$65.98</span>
  13473.      
  13474.    </div>
  13475.    <div class="price__current--hidden" data-current-price-hidden>
  13476.      <span class="visually-hidden">Current price</span>
  13477.      <span class="money" data-price>
  13478.        $65.98
  13479.      </span>
  13480.    </div>
  13481.  
  13482.  
  13483.  
  13484.    
  13485.    
  13486.    
  13487.    
  13488.  
  13489.    <div
  13490.      class="
  13491.        productitem__unit-price
  13492.        hidden
  13493.      "
  13494.      data-unit-price
  13495.    >
  13496.      <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>
  13497.    </div>
  13498.  
  13499.  
  13500.  
  13501. </div>
  13502.  
  13503.  
  13504.            </div>
  13505.  
  13506.            <div class="productitem--listview-badge">
  13507.              
  13508.  
  13509.  
  13510.  
  13511.  
  13512.  
  13513.  
  13514.  
  13515.  
  13516.  
  13517.  
  13518.  
  13519.  
  13520.  
  13521.  
  13522.  
  13523.  
  13524.  
  13525.  
  13526.  
  13527.  
  13528.  
  13529.  
  13530.  
  13531.  
  13532.  
  13533.  
  13534.  
  13535.            </div>
  13536.  
  13537.            
  13538.              <div
  13539.                class="
  13540.                  productitem--action
  13541.                  quickshop-button
  13542.                  
  13543.                "
  13544.              >
  13545.                <button
  13546.                  class="productitem--action-trigger button-secondary"
  13547.                  data-quickshop-full
  13548.                  
  13549.                  
  13550.                  type="button"
  13551.                >
  13552.                  Quick shop
  13553.                </button>
  13554.              </div>
  13555.            
  13556.  
  13557.            
  13558.              <div
  13559.                class="
  13560.                  productitem--action
  13561.                  atc--button
  13562.                  
  13563.                "
  13564.              >
  13565.                <button
  13566.                  class="productitem--action-trigger productitem--action-atc button-primary"
  13567.                  type="button"
  13568.                  aria-label="Add to cart"
  13569.                  
  13570.                    data-quick-buy
  13571.                  
  13572.                  data-variant-id="40183331749975"
  13573.                  
  13574.                >
  13575.                  <span class="atc-button--text">
  13576.                    Add to cart
  13577.                  </span>
  13578.                  <span class="atc-button--icon"><svg
  13579.  aria-hidden="true"
  13580.  focusable="false"
  13581.  role="presentation"
  13582.  width="26"
  13583.  height="26"
  13584.  viewBox="0 0 26 26"
  13585.  xmlns="http://www.w3.org/2000/svg"
  13586. >
  13587.  <g fill-rule="nonzero" fill="currentColor">
  13588.    <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"/>
  13589.  </g>
  13590. </svg></span>
  13591.                </button>
  13592.              </div>
  13593.            
  13594.          </div>
  13595.        
  13596.      
  13597.    </div>
  13598.  </div>
  13599.  
  13600.  
  13601.    <script type="application/json" data-quick-buy-settings>
  13602.      {
  13603.        "cart_redirection": true,
  13604.        "money_format": "${{amount}}"
  13605.      }
  13606.    </script>
  13607.  
  13608. </li>
  13609.    
  13610.      
  13611.  
  13612.  
  13613.  
  13614.  
  13615.  
  13616.  
  13617.  
  13618.  
  13619.  
  13620.  
  13621.  
  13622.  
  13623.  
  13624.  
  13625.  
  13626.  
  13627.  
  13628.  
  13629.  
  13630.  
  13631.  
  13632.  
  13633.  
  13634.  
  13635.  
  13636.  
  13637.  
  13638.  
  13639.  
  13640.  
  13641.  
  13642.  
  13643.    
  13644.  
  13645.  
  13646.  
  13647. <li
  13648.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13649.  data-product-item
  13650.  data-product-quickshop-url="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13651.  
  13652. >
  13653.  <div class="productitem" data-product-item-content>
  13654.    
  13655.    
  13656.    
  13657.    
  13658.  
  13659.    
  13660.  
  13661.    
  13662.  
  13663.    <div class="productitem__container">
  13664.      
  13665.  
  13666.      <div class="productitem__image-container">
  13667.        <a target="_blank"
  13668.          class="productitem--image-link"
  13669.          href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13670.          aria-label="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13671.          tabindex="-1"
  13672.          data-product-page-link
  13673.        >
  13674.          <figure
  13675.            class="productitem--image"
  13676.            data-product-item-image
  13677.            
  13678.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13679.            
  13680.          >
  13681.            
  13682.              
  13683.              
  13684.  
  13685.  
  13686.    <noscript data-rimg-noscript>
  13687.      <img loading="lazy"
  13688.        
  13689.          src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  13690.        
  13691.  
  13692.        alt=""
  13693.        data-rimg="noscript"
  13694.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166 1x"
  13695.        class="productitem--image-primary"
  13696.        
  13697.        
  13698.      >
  13699.    </noscript>
  13700.  
  13701.  
  13702.  <img loading="lazy"
  13703.    
  13704.      src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  13705.    
  13706.    alt=""
  13707.  
  13708.    
  13709.      data-rimg="lazy"
  13710.      data-rimg-scale="1"
  13711.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_{size}.jpg?v=1648046166"
  13712.      data-rimg-max="500x500"
  13713.      data-rimg-crop="false"
  13714.      
  13715.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  13716.    
  13717.  
  13718.    class="productitem--image-primary"
  13719.    
  13720.    
  13721.  >
  13722.  
  13723.  
  13724.  
  13725.  <div data-rimg-canvas></div>
  13726.  
  13727.  
  13728.            
  13729.  
  13730.            
  13731.  
  13732.  
  13733.  
  13734.  
  13735.  
  13736.  
  13737.  
  13738.  
  13739.  
  13740.  
  13741.  
  13742.  
  13743.  
  13744.  
  13745.  
  13746.  
  13747.  
  13748.  
  13749.  
  13750.  
  13751.  
  13752.  
  13753.  
  13754.  
  13755.  
  13756.  
  13757.  
  13758.          </figure>
  13759.        </a>
  13760.      </div><div class="productitem--info">
  13761.        
  13762.          
  13763.  
  13764.        
  13765.  
  13766.        
  13767.          
  13768.  
  13769.  
  13770.  
  13771.  
  13772.  
  13773.  
  13774.  
  13775.  
  13776.  
  13777.  
  13778.  
  13779.  
  13780.  
  13781.  
  13782.  
  13783.  
  13784.  
  13785.  
  13786.  
  13787.  
  13788.  
  13789.  
  13790.  
  13791.  
  13792.  
  13793.  
  13794.  
  13795.  
  13796.  
  13797.  
  13798. <div class="price productitem__price ">
  13799.  
  13800.    <div
  13801.      class="price__compare-at visible"
  13802.      data-price-compare-container
  13803.    >
  13804.  
  13805.      
  13806.        <span class="money price__original" data-price-original></span>
  13807.      
  13808.    </div>
  13809.  
  13810.  
  13811.    
  13812.      
  13813.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13814.        
  13815.          <span class="visually-hidden">Original price</span>
  13816.          <span class="money price__compare-at--min" data-price-compare-min>
  13817.            $54.99
  13818.          </span>
  13819.          -
  13820.          <span class="visually-hidden">Original price</span>
  13821.          <span class="money price__compare-at--max" data-price-compare-max>
  13822.            $54.99
  13823.          </span>
  13824.        
  13825.      </div>
  13826.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13827.        <span class="visually-hidden">Original price</span>
  13828.        <span class="money price__compare-at--single" data-price-compare>
  13829.          
  13830.        </span>
  13831.      </div>
  13832.    
  13833.  
  13834.  
  13835.  <div class="price__current price__current--emphasize " data-price-container>
  13836.  
  13837.    
  13838.  
  13839.    
  13840.      
  13841.      
  13842.      <span class="money" data-price>
  13843.        $54.99
  13844.      </span>
  13845.    
  13846.    
  13847.  </div>
  13848.  
  13849.  
  13850.    
  13851.    <div class="price__current--hidden" data-current-price-range-hidden>
  13852.      
  13853.        <span class="money price__current--min" data-price-min>$54.99</span>
  13854.        -
  13855.        <span class="money price__current--max" data-price-max>$54.99</span>
  13856.      
  13857.    </div>
  13858.    <div class="price__current--hidden" data-current-price-hidden>
  13859.      <span class="visually-hidden">Current price</span>
  13860.      <span class="money" data-price>
  13861.        $54.99
  13862.      </span>
  13863.    </div>
  13864.  
  13865.  
  13866.  
  13867.    
  13868.    
  13869.    
  13870.    
  13871.  
  13872.    <div
  13873.      class="
  13874.        productitem__unit-price
  13875.        hidden
  13876.      "
  13877.      data-unit-price
  13878.    >
  13879.      <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>
  13880.    </div>
  13881.  
  13882.  
  13883.  
  13884. </div>
  13885.  
  13886.  
  13887.        
  13888.  
  13889.        <h2 class="productitem--title">
  13890.          <a href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001" data-product-page-link>
  13891.            Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001
  13892.          </a>
  13893.        </h2>
  13894.  
  13895.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13896.        <div class="star_container 3929815122007"></div>
  13897.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13898.  
  13899.        
  13900.          
  13901.            <span class="productitem--vendor">
  13902.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  13903.            </span>
  13904.          
  13905.        
  13906.  
  13907.        
  13908.  
  13909.        
  13910.          
  13911.            <div class="productitem__stock-level">
  13912.              <!--
  13913.  
  13914.  
  13915.  
  13916.  
  13917.  
  13918.  
  13919.  
  13920. <div class="product-stock-level-wrapper" >
  13921.  
  13922.    <span class="
  13923.  product-stock-level
  13924.  product-stock-level--continue-selling
  13925.  
  13926. ">
  13927.      
  13928.  
  13929.      <span class="product-stock-level__text">
  13930.        
  13931.        <div class="product-stock-level__badge-text">
  13932.          
  13933.  
  13934.    In stock
  13935.  
  13936.  
  13937.        </div>
  13938.      </span>
  13939.    </span>
  13940.  
  13941. </div>
  13942. -->
  13943.              
  13944.  
  13945.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  13946.  
  13947.  
  13948.  
  13949.  
  13950.  
  13951.  
  13952.  
  13953.            </div>
  13954.          
  13955.  
  13956.          
  13957.            
  13958.          
  13959.        
  13960.  
  13961.        
  13962.          <div class="productitem--description">
  13963.            <p>
  13964. Description: New Acer server replacement case cooling fan.
  13965.  
  13966. Compatible Part #'s: HI.R4300.001, DS09225B12UP021.
  13967.  
  13968. Compatible Models:
  13969. Acer Altos AT1...</p>
  13970.  
  13971.            
  13972.              <a
  13973.                href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13974.                class="productitem--link"
  13975.                data-product-page-link
  13976.              >
  13977.                View full details
  13978.              </a>
  13979.            
  13980.          </div>
  13981.        
  13982.      </div>
  13983.  
  13984.      
  13985.        
  13986.          
  13987.          
  13988.          
  13989.  
  13990.          
  13991.          
  13992.  
  13993.          
  13994.  
  13995.          
  13996.  
  13997.          <div class="productitem--actions" data-product-actions>
  13998.            <div class="productitem--listview-price">
  13999.              
  14000.  
  14001.  
  14002.  
  14003.  
  14004.  
  14005.  
  14006.  
  14007.  
  14008.  
  14009.  
  14010.  
  14011.  
  14012.  
  14013.  
  14014.  
  14015.  
  14016.  
  14017.  
  14018.  
  14019.  
  14020.  
  14021.  
  14022.  
  14023.  
  14024.  
  14025.  
  14026.  
  14027.  
  14028.  
  14029.  
  14030. <div class="price productitem__price ">
  14031.  
  14032.    <div
  14033.      class="price__compare-at visible"
  14034.      data-price-compare-container
  14035.    >
  14036.  
  14037.      
  14038.        <span class="money price__original" data-price-original></span>
  14039.      
  14040.    </div>
  14041.  
  14042.  
  14043.    
  14044.      
  14045.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14046.        
  14047.          <span class="visually-hidden">Original price</span>
  14048.          <span class="money price__compare-at--min" data-price-compare-min>
  14049.            $54.99
  14050.          </span>
  14051.          -
  14052.          <span class="visually-hidden">Original price</span>
  14053.          <span class="money price__compare-at--max" data-price-compare-max>
  14054.            $54.99
  14055.          </span>
  14056.        
  14057.      </div>
  14058.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14059.        <span class="visually-hidden">Original price</span>
  14060.        <span class="money price__compare-at--single" data-price-compare>
  14061.          
  14062.        </span>
  14063.      </div>
  14064.    
  14065.  
  14066.  
  14067.  <div class="price__current price__current--emphasize " data-price-container>
  14068.  
  14069.    
  14070.  
  14071.    
  14072.      
  14073.      
  14074.      <span class="money" data-price>
  14075.        $54.99
  14076.      </span>
  14077.    
  14078.    
  14079.  </div>
  14080.  
  14081.  
  14082.    
  14083.    <div class="price__current--hidden" data-current-price-range-hidden>
  14084.      
  14085.        <span class="money price__current--min" data-price-min>$54.99</span>
  14086.        -
  14087.        <span class="money price__current--max" data-price-max>$54.99</span>
  14088.      
  14089.    </div>
  14090.    <div class="price__current--hidden" data-current-price-hidden>
  14091.      <span class="visually-hidden">Current price</span>
  14092.      <span class="money" data-price>
  14093.        $54.99
  14094.      </span>
  14095.    </div>
  14096.  
  14097.  
  14098.  
  14099.    
  14100.    
  14101.    
  14102.    
  14103.  
  14104.    <div
  14105.      class="
  14106.        productitem__unit-price
  14107.        hidden
  14108.      "
  14109.      data-unit-price
  14110.    >
  14111.      <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>
  14112.    </div>
  14113.  
  14114.  
  14115.  
  14116. </div>
  14117.  
  14118.  
  14119.            </div>
  14120.  
  14121.            <div class="productitem--listview-badge">
  14122.              
  14123.  
  14124.  
  14125.  
  14126.  
  14127.  
  14128.  
  14129.  
  14130.  
  14131.  
  14132.  
  14133.  
  14134.  
  14135.  
  14136.  
  14137.  
  14138.  
  14139.  
  14140.  
  14141.  
  14142.  
  14143.  
  14144.  
  14145.  
  14146.  
  14147.  
  14148.  
  14149.  
  14150.            </div>
  14151.  
  14152.            
  14153.              <div
  14154.                class="
  14155.                  productitem--action
  14156.                  quickshop-button
  14157.                  
  14158.                "
  14159.              >
  14160.                <button
  14161.                  class="productitem--action-trigger button-secondary"
  14162.                  data-quickshop-full
  14163.                  
  14164.                  
  14165.                  type="button"
  14166.                >
  14167.                  Quick shop
  14168.                </button>
  14169.              </div>
  14170.            
  14171.  
  14172.            
  14173.              <div
  14174.                class="
  14175.                  productitem--action
  14176.                  atc--button
  14177.                  
  14178.                "
  14179.              >
  14180.                <button
  14181.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14182.                  type="button"
  14183.                  aria-label="Add to cart"
  14184.                  
  14185.                    data-quick-buy
  14186.                  
  14187.                  data-variant-id="29507473014871"
  14188.                  
  14189.                >
  14190.                  <span class="atc-button--text">
  14191.                    Add to cart
  14192.                  </span>
  14193.                  <span class="atc-button--icon"><svg
  14194.  aria-hidden="true"
  14195.  focusable="false"
  14196.  role="presentation"
  14197.  width="26"
  14198.  height="26"
  14199.  viewBox="0 0 26 26"
  14200.  xmlns="http://www.w3.org/2000/svg"
  14201. >
  14202.  <g fill-rule="nonzero" fill="currentColor">
  14203.    <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"/>
  14204.  </g>
  14205. </svg></span>
  14206.                </button>
  14207.              </div>
  14208.            
  14209.          </div>
  14210.        
  14211.      
  14212.    </div>
  14213.  </div>
  14214.  
  14215.  
  14216.    <script type="application/json" data-quick-buy-settings>
  14217.      {
  14218.        "cart_redirection": true,
  14219.        "money_format": "${{amount}}"
  14220.      }
  14221.    </script>
  14222.  
  14223. </li>
  14224.    
  14225.      
  14226.  
  14227.  
  14228.  
  14229.  
  14230.  
  14231.  
  14232.  
  14233.  
  14234.  
  14235.  
  14236.  
  14237.  
  14238.  
  14239.  
  14240.  
  14241.  
  14242.  
  14243.  
  14244.  
  14245.  
  14246.  
  14247.  
  14248.  
  14249.  
  14250.  
  14251.  
  14252.  
  14253.  
  14254.  
  14255.  
  14256.  
  14257.  
  14258.    
  14259.  
  14260.  
  14261.  
  14262. <li
  14263.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14264.  data-product-item
  14265.  data-product-quickshop-url="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14266.  
  14267. >
  14268.  <div class="productitem" data-product-item-content>
  14269.    
  14270.    
  14271.    
  14272.    
  14273.  
  14274.    
  14275.  
  14276.    
  14277.  
  14278.    <div class="productitem__container">
  14279.      
  14280.  
  14281.      <div class="productitem__image-container">
  14282.        <a target="_blank"
  14283.          class="productitem--image-link"
  14284.          href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14285.          aria-label="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14286.          tabindex="-1"
  14287.          data-product-page-link
  14288.        >
  14289.          <figure
  14290.            class="productitem--image"
  14291.            data-product-item-image
  14292.            
  14293.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14294.            
  14295.          >
  14296.            
  14297.              
  14298.              
  14299.  
  14300.  
  14301.    <noscript data-rimg-noscript>
  14302.      <img loading="lazy"
  14303.        
  14304.          src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14305.        
  14306.  
  14307.        alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14308.        data-rimg="noscript"
  14309.        srcset="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372 1x"
  14310.        class="productitem--image-primary"
  14311.        
  14312.        
  14313.      >
  14314.    </noscript>
  14315.  
  14316.  
  14317.  <img loading="lazy"
  14318.    
  14319.      src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14320.    
  14321.    alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14322.  
  14323.    
  14324.      data-rimg="lazy"
  14325.      data-rimg-scale="1"
  14326.      data-rimg-template="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_{size}.jpg?v=1715271372"
  14327.      data-rimg-max="500x500"
  14328.      data-rimg-crop="false"
  14329.      
  14330.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14331.    
  14332.  
  14333.    class="productitem--image-primary"
  14334.    
  14335.    
  14336.  >
  14337.  
  14338.  
  14339.  
  14340.  <div data-rimg-canvas></div>
  14341.  
  14342.  
  14343.            
  14344.  
  14345.            
  14346.  
  14347.  
  14348.  
  14349.  
  14350.  
  14351.  
  14352.  
  14353.  
  14354.  
  14355.  
  14356.  
  14357.  
  14358.  
  14359.  
  14360.  
  14361.  
  14362.  
  14363.  
  14364.  
  14365.  
  14366.  
  14367.  
  14368.  
  14369.  
  14370.  
  14371.  
  14372.  
  14373.          </figure>
  14374.        </a>
  14375.      </div><div class="productitem--info">
  14376.        
  14377.          
  14378.  
  14379.        
  14380.  
  14381.        
  14382.          
  14383.  
  14384.  
  14385.  
  14386.  
  14387.  
  14388.  
  14389.  
  14390.  
  14391.  
  14392.  
  14393.  
  14394.  
  14395.  
  14396.  
  14397.  
  14398.  
  14399.  
  14400.  
  14401.  
  14402.  
  14403.  
  14404.  
  14405.  
  14406.  
  14407.  
  14408.  
  14409.  
  14410.  
  14411.  
  14412.  
  14413. <div class="price productitem__price ">
  14414.  
  14415.    <div
  14416.      class="price__compare-at visible"
  14417.      data-price-compare-container
  14418.    >
  14419.  
  14420.      
  14421.        <span class="money price__original" data-price-original></span>
  14422.      
  14423.    </div>
  14424.  
  14425.  
  14426.    
  14427.      
  14428.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14429.        
  14430.          <span class="visually-hidden">Original price</span>
  14431.          <span class="money price__compare-at--min" data-price-compare-min>
  14432.            $106.99
  14433.          </span>
  14434.          -
  14435.          <span class="visually-hidden">Original price</span>
  14436.          <span class="money price__compare-at--max" data-price-compare-max>
  14437.            $106.99
  14438.          </span>
  14439.        
  14440.      </div>
  14441.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14442.        <span class="visually-hidden">Original price</span>
  14443.        <span class="money price__compare-at--single" data-price-compare>
  14444.          
  14445.        </span>
  14446.      </div>
  14447.    
  14448.  
  14449.  
  14450.  <div class="price__current price__current--emphasize " data-price-container>
  14451.  
  14452.    
  14453.  
  14454.    
  14455.      
  14456.      
  14457.      <span class="money" data-price>
  14458.        $106.99
  14459.      </span>
  14460.    
  14461.    
  14462.  </div>
  14463.  
  14464.  
  14465.    
  14466.    <div class="price__current--hidden" data-current-price-range-hidden>
  14467.      
  14468.        <span class="money price__current--min" data-price-min>$106.99</span>
  14469.        -
  14470.        <span class="money price__current--max" data-price-max>$106.99</span>
  14471.      
  14472.    </div>
  14473.    <div class="price__current--hidden" data-current-price-hidden>
  14474.      <span class="visually-hidden">Current price</span>
  14475.      <span class="money" data-price>
  14476.        $106.99
  14477.      </span>
  14478.    </div>
  14479.  
  14480.  
  14481.  
  14482.    
  14483.    
  14484.    
  14485.    
  14486.  
  14487.    <div
  14488.      class="
  14489.        productitem__unit-price
  14490.        hidden
  14491.      "
  14492.      data-unit-price
  14493.    >
  14494.      <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>
  14495.    </div>
  14496.  
  14497.  
  14498.  
  14499. </div>
  14500.  
  14501.  
  14502.        
  14503.  
  14504.        <h2 class="productitem--title">
  14505.          <a href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  14506.            Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual
  14507.          </a>
  14508.        </h2>
  14509.  
  14510.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  14511.        <div class="star_container 4451279622"></div>
  14512.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  14513.  
  14514.        
  14515.          
  14516.            <span class="productitem--vendor">
  14517.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  14518.            </span>
  14519.          
  14520.        
  14521.  
  14522.        
  14523.  
  14524.        
  14525.          
  14526.            <div class="productitem__stock-level">
  14527.              <!--
  14528.  
  14529.  
  14530.  
  14531.  
  14532.  
  14533.  
  14534.  
  14535. <div class="product-stock-level-wrapper" >
  14536.  
  14537.    <span class="
  14538.  product-stock-level
  14539.  product-stock-level--continue-selling
  14540.  
  14541. ">
  14542.      
  14543.  
  14544.      <span class="product-stock-level__text">
  14545.        
  14546.        <div class="product-stock-level__badge-text">
  14547.          
  14548.  
  14549.    In stock
  14550.  
  14551.  
  14552.        </div>
  14553.      </span>
  14554.    </span>
  14555.  
  14556. </div>
  14557. -->
  14558.              
  14559.  
  14560.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  14561.  
  14562.  
  14563.  
  14564.  
  14565.  
  14566.  
  14567.  
  14568.            </div>
  14569.          
  14570.  
  14571.          
  14572.            
  14573.          
  14574.        
  14575.  
  14576.        
  14577.          <div class="productitem--description">
  14578.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  14579.  
  14580.            
  14581.              <a
  14582.                href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14583.                class="productitem--link"
  14584.                data-product-page-link
  14585.              >
  14586.                View full details
  14587.              </a>
  14588.            
  14589.          </div>
  14590.        
  14591.      </div>
  14592.  
  14593.      
  14594.        
  14595.          
  14596.          
  14597.          
  14598.  
  14599.          
  14600.          
  14601.  
  14602.          
  14603.  
  14604.          
  14605.  
  14606.          <div class="productitem--actions" data-product-actions>
  14607.            <div class="productitem--listview-price">
  14608.              
  14609.  
  14610.  
  14611.  
  14612.  
  14613.  
  14614.  
  14615.  
  14616.  
  14617.  
  14618.  
  14619.  
  14620.  
  14621.  
  14622.  
  14623.  
  14624.  
  14625.  
  14626.  
  14627.  
  14628.  
  14629.  
  14630.  
  14631.  
  14632.  
  14633.  
  14634.  
  14635.  
  14636.  
  14637.  
  14638.  
  14639. <div class="price productitem__price ">
  14640.  
  14641.    <div
  14642.      class="price__compare-at visible"
  14643.      data-price-compare-container
  14644.    >
  14645.  
  14646.      
  14647.        <span class="money price__original" data-price-original></span>
  14648.      
  14649.    </div>
  14650.  
  14651.  
  14652.    
  14653.      
  14654.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14655.        
  14656.          <span class="visually-hidden">Original price</span>
  14657.          <span class="money price__compare-at--min" data-price-compare-min>
  14658.            $106.99
  14659.          </span>
  14660.          -
  14661.          <span class="visually-hidden">Original price</span>
  14662.          <span class="money price__compare-at--max" data-price-compare-max>
  14663.            $106.99
  14664.          </span>
  14665.        
  14666.      </div>
  14667.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14668.        <span class="visually-hidden">Original price</span>
  14669.        <span class="money price__compare-at--single" data-price-compare>
  14670.          
  14671.        </span>
  14672.      </div>
  14673.    
  14674.  
  14675.  
  14676.  <div class="price__current price__current--emphasize " data-price-container>
  14677.  
  14678.    
  14679.  
  14680.    
  14681.      
  14682.      
  14683.      <span class="money" data-price>
  14684.        $106.99
  14685.      </span>
  14686.    
  14687.    
  14688.  </div>
  14689.  
  14690.  
  14691.    
  14692.    <div class="price__current--hidden" data-current-price-range-hidden>
  14693.      
  14694.        <span class="money price__current--min" data-price-min>$106.99</span>
  14695.        -
  14696.        <span class="money price__current--max" data-price-max>$106.99</span>
  14697.      
  14698.    </div>
  14699.    <div class="price__current--hidden" data-current-price-hidden>
  14700.      <span class="visually-hidden">Current price</span>
  14701.      <span class="money" data-price>
  14702.        $106.99
  14703.      </span>
  14704.    </div>
  14705.  
  14706.  
  14707.  
  14708.    
  14709.    
  14710.    
  14711.    
  14712.  
  14713.    <div
  14714.      class="
  14715.        productitem__unit-price
  14716.        hidden
  14717.      "
  14718.      data-unit-price
  14719.    >
  14720.      <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>
  14721.    </div>
  14722.  
  14723.  
  14724.  
  14725. </div>
  14726.  
  14727.  
  14728.            </div>
  14729.  
  14730.            <div class="productitem--listview-badge">
  14731.              
  14732.  
  14733.  
  14734.  
  14735.  
  14736.  
  14737.  
  14738.  
  14739.  
  14740.  
  14741.  
  14742.  
  14743.  
  14744.  
  14745.  
  14746.  
  14747.  
  14748.  
  14749.  
  14750.  
  14751.  
  14752.  
  14753.  
  14754.  
  14755.  
  14756.  
  14757.  
  14758.  
  14759.            </div>
  14760.  
  14761.            
  14762.              <div
  14763.                class="
  14764.                  productitem--action
  14765.                  quickshop-button
  14766.                  
  14767.                "
  14768.              >
  14769.                <button
  14770.                  class="productitem--action-trigger button-secondary"
  14771.                  data-quickshop-full
  14772.                  
  14773.                  
  14774.                  type="button"
  14775.                >
  14776.                  Quick shop
  14777.                </button>
  14778.              </div>
  14779.            
  14780.  
  14781.            
  14782.              <div
  14783.                class="
  14784.                  productitem--action
  14785.                  atc--button
  14786.                  
  14787.                "
  14788.              >
  14789.                <button
  14790.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14791.                  type="button"
  14792.                  aria-label="Add to cart"
  14793.                  
  14794.                    data-quick-buy
  14795.                  
  14796.                  data-variant-id="39666365366359"
  14797.                  
  14798.                >
  14799.                  <span class="atc-button--text">
  14800.                    Add to cart
  14801.                  </span>
  14802.                  <span class="atc-button--icon"><svg
  14803.  aria-hidden="true"
  14804.  focusable="false"
  14805.  role="presentation"
  14806.  width="26"
  14807.  height="26"
  14808.  viewBox="0 0 26 26"
  14809.  xmlns="http://www.w3.org/2000/svg"
  14810. >
  14811.  <g fill-rule="nonzero" fill="currentColor">
  14812.    <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"/>
  14813.  </g>
  14814. </svg></span>
  14815.                </button>
  14816.              </div>
  14817.            
  14818.          </div>
  14819.        
  14820.      
  14821.    </div>
  14822.  </div>
  14823.  
  14824.  
  14825.    <script type="application/json" data-quick-buy-settings>
  14826.      {
  14827.        "cart_redirection": true,
  14828.        "money_format": "${{amount}}"
  14829.      }
  14830.    </script>
  14831.  
  14832. </li>
  14833.    
  14834.      
  14835.  
  14836.  
  14837.  
  14838.  
  14839.  
  14840.  
  14841.  
  14842.  
  14843.  
  14844.  
  14845.  
  14846.  
  14847.  
  14848.  
  14849.  
  14850.  
  14851.  
  14852.  
  14853.  
  14854.  
  14855.  
  14856.  
  14857.  
  14858.  
  14859.  
  14860.  
  14861.  
  14862.  
  14863.  
  14864.  
  14865.  
  14866.  
  14867.    
  14868.  
  14869.  
  14870.  
  14871. <li
  14872.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14873.  data-product-item
  14874.  data-product-quickshop-url="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14875.  
  14876. >
  14877.  <div class="productitem" data-product-item-content>
  14878.    
  14879.    
  14880.    
  14881.    
  14882.  
  14883.    
  14884.  
  14885.    
  14886.  
  14887.    <div class="productitem__container">
  14888.      
  14889.  
  14890.      <div class="productitem__image-container">
  14891.        <a target="_blank"
  14892.          class="productitem--image-link"
  14893.          href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14894.          aria-label="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14895.          tabindex="-1"
  14896.          data-product-page-link
  14897.        >
  14898.          <figure
  14899.            class="productitem--image"
  14900.            data-product-item-image
  14901.            
  14902.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14903.            
  14904.          >
  14905.            
  14906.              
  14907.              
  14908.  
  14909.  
  14910.    <noscript data-rimg-noscript>
  14911.      <img loading="lazy"
  14912.        
  14913.          src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14914.        
  14915.  
  14916.        alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14917.        data-rimg="noscript"
  14918.        srcset="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378 1x"
  14919.        class="productitem--image-primary"
  14920.        
  14921.        
  14922.      >
  14923.    </noscript>
  14924.  
  14925.  
  14926.  <img loading="lazy"
  14927.    
  14928.      src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14929.    
  14930.    alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14931.  
  14932.    
  14933.      data-rimg="lazy"
  14934.      data-rimg-scale="1"
  14935.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_{size}.jpg?v=1715271378"
  14936.      data-rimg-max="500x500"
  14937.      data-rimg-crop="false"
  14938.      
  14939.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14940.    
  14941.  
  14942.    class="productitem--image-primary"
  14943.    
  14944.    
  14945.  >
  14946.  
  14947.  
  14948.  
  14949.  <div data-rimg-canvas></div>
  14950.  
  14951.  
  14952.            
  14953.  
  14954.            
  14955.  
  14956.  
  14957.  
  14958.  
  14959.  
  14960.  
  14961.  
  14962.  
  14963.  
  14964.  
  14965.  
  14966.  
  14967.  
  14968.  
  14969.  
  14970.  
  14971.  
  14972.  
  14973.  
  14974.  
  14975.  
  14976.  
  14977.  
  14978.  
  14979.  
  14980.  
  14981.  
  14982.          </figure>
  14983.        </a>
  14984.      </div><div class="productitem--info">
  14985.        
  14986.          
  14987.  
  14988.        
  14989.  
  14990.        
  14991.          
  14992.  
  14993.  
  14994.  
  14995.  
  14996.  
  14997.  
  14998.  
  14999.  
  15000.  
  15001.  
  15002.  
  15003.  
  15004.  
  15005.  
  15006.  
  15007.  
  15008.  
  15009.  
  15010.  
  15011.  
  15012.  
  15013.  
  15014.  
  15015.  
  15016.  
  15017.  
  15018.  
  15019.  
  15020.  
  15021.  
  15022. <div class="price productitem__price ">
  15023.  
  15024.    <div
  15025.      class="price__compare-at visible"
  15026.      data-price-compare-container
  15027.    >
  15028.  
  15029.      
  15030.        <span class="money price__original" data-price-original></span>
  15031.      
  15032.    </div>
  15033.  
  15034.  
  15035.    
  15036.      
  15037.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15038.        
  15039.          <span class="visually-hidden">Original price</span>
  15040.          <span class="money price__compare-at--min" data-price-compare-min>
  15041.            $106.99
  15042.          </span>
  15043.          -
  15044.          <span class="visually-hidden">Original price</span>
  15045.          <span class="money price__compare-at--max" data-price-compare-max>
  15046.            $106.99
  15047.          </span>
  15048.        
  15049.      </div>
  15050.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15051.        <span class="visually-hidden">Original price</span>
  15052.        <span class="money price__compare-at--single" data-price-compare>
  15053.          
  15054.        </span>
  15055.      </div>
  15056.    
  15057.  
  15058.  
  15059.  <div class="price__current price__current--emphasize " data-price-container>
  15060.  
  15061.    
  15062.  
  15063.    
  15064.      
  15065.      
  15066.      <span class="money" data-price>
  15067.        $106.99
  15068.      </span>
  15069.    
  15070.    
  15071.  </div>
  15072.  
  15073.  
  15074.    
  15075.    <div class="price__current--hidden" data-current-price-range-hidden>
  15076.      
  15077.        <span class="money price__current--min" data-price-min>$106.99</span>
  15078.        -
  15079.        <span class="money price__current--max" data-price-max>$106.99</span>
  15080.      
  15081.    </div>
  15082.    <div class="price__current--hidden" data-current-price-hidden>
  15083.      <span class="visually-hidden">Current price</span>
  15084.      <span class="money" data-price>
  15085.        $106.99
  15086.      </span>
  15087.    </div>
  15088.  
  15089.  
  15090.  
  15091.    
  15092.    
  15093.    
  15094.    
  15095.  
  15096.    <div
  15097.      class="
  15098.        productitem__unit-price
  15099.        hidden
  15100.      "
  15101.      data-unit-price
  15102.    >
  15103.      <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>
  15104.    </div>
  15105.  
  15106.  
  15107.  
  15108. </div>
  15109.  
  15110.  
  15111.        
  15112.  
  15113.        <h2 class="productitem--title">
  15114.          <a href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  15115.            Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual
  15116.          </a>
  15117.        </h2>
  15118.  
  15119.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15120.        <div class="star_container 4451280006"></div>
  15121.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15122.  
  15123.        
  15124.          
  15125.            <span class="productitem--vendor">
  15126.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15127.            </span>
  15128.          
  15129.        
  15130.  
  15131.        
  15132.  
  15133.        
  15134.          
  15135.            <div class="productitem__stock-level">
  15136.              <!--
  15137.  
  15138.  
  15139.  
  15140.  
  15141.  
  15142.  
  15143.  
  15144. <div class="product-stock-level-wrapper" >
  15145.  
  15146.    <span class="
  15147.  product-stock-level
  15148.  product-stock-level--continue-selling
  15149.  
  15150. ">
  15151.      
  15152.  
  15153.      <span class="product-stock-level__text">
  15154.        
  15155.        <div class="product-stock-level__badge-text">
  15156.          
  15157.  
  15158.    In stock
  15159.  
  15160.  
  15161.        </div>
  15162.      </span>
  15163.    </span>
  15164.  
  15165. </div>
  15166. -->
  15167.              
  15168.  
  15169.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  15170.  
  15171.  
  15172.  
  15173.  
  15174.  
  15175.  
  15176.  
  15177.            </div>
  15178.          
  15179.  
  15180.          
  15181.            
  15182.          
  15183.        
  15184.  
  15185.        
  15186.          <div class="productitem--description">
  15187.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  15188.  
  15189.            
  15190.              <a
  15191.                href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  15192.                class="productitem--link"
  15193.                data-product-page-link
  15194.              >
  15195.                View full details
  15196.              </a>
  15197.            
  15198.          </div>
  15199.        
  15200.      </div>
  15201.  
  15202.      
  15203.        
  15204.          
  15205.          
  15206.          
  15207.  
  15208.          
  15209.          
  15210.  
  15211.          
  15212.  
  15213.          
  15214.  
  15215.          <div class="productitem--actions" data-product-actions>
  15216.            <div class="productitem--listview-price">
  15217.              
  15218.  
  15219.  
  15220.  
  15221.  
  15222.  
  15223.  
  15224.  
  15225.  
  15226.  
  15227.  
  15228.  
  15229.  
  15230.  
  15231.  
  15232.  
  15233.  
  15234.  
  15235.  
  15236.  
  15237.  
  15238.  
  15239.  
  15240.  
  15241.  
  15242.  
  15243.  
  15244.  
  15245.  
  15246.  
  15247.  
  15248. <div class="price productitem__price ">
  15249.  
  15250.    <div
  15251.      class="price__compare-at visible"
  15252.      data-price-compare-container
  15253.    >
  15254.  
  15255.      
  15256.        <span class="money price__original" data-price-original></span>
  15257.      
  15258.    </div>
  15259.  
  15260.  
  15261.    
  15262.      
  15263.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15264.        
  15265.          <span class="visually-hidden">Original price</span>
  15266.          <span class="money price__compare-at--min" data-price-compare-min>
  15267.            $106.99
  15268.          </span>
  15269.          -
  15270.          <span class="visually-hidden">Original price</span>
  15271.          <span class="money price__compare-at--max" data-price-compare-max>
  15272.            $106.99
  15273.          </span>
  15274.        
  15275.      </div>
  15276.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15277.        <span class="visually-hidden">Original price</span>
  15278.        <span class="money price__compare-at--single" data-price-compare>
  15279.          
  15280.        </span>
  15281.      </div>
  15282.    
  15283.  
  15284.  
  15285.  <div class="price__current price__current--emphasize " data-price-container>
  15286.  
  15287.    
  15288.  
  15289.    
  15290.      
  15291.      
  15292.      <span class="money" data-price>
  15293.        $106.99
  15294.      </span>
  15295.    
  15296.    
  15297.  </div>
  15298.  
  15299.  
  15300.    
  15301.    <div class="price__current--hidden" data-current-price-range-hidden>
  15302.      
  15303.        <span class="money price__current--min" data-price-min>$106.99</span>
  15304.        -
  15305.        <span class="money price__current--max" data-price-max>$106.99</span>
  15306.      
  15307.    </div>
  15308.    <div class="price__current--hidden" data-current-price-hidden>
  15309.      <span class="visually-hidden">Current price</span>
  15310.      <span class="money" data-price>
  15311.        $106.99
  15312.      </span>
  15313.    </div>
  15314.  
  15315.  
  15316.  
  15317.    
  15318.    
  15319.    
  15320.    
  15321.  
  15322.    <div
  15323.      class="
  15324.        productitem__unit-price
  15325.        hidden
  15326.      "
  15327.      data-unit-price
  15328.    >
  15329.      <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>
  15330.    </div>
  15331.  
  15332.  
  15333.  
  15334. </div>
  15335.  
  15336.  
  15337.            </div>
  15338.  
  15339.            <div class="productitem--listview-badge">
  15340.              
  15341.  
  15342.  
  15343.  
  15344.  
  15345.  
  15346.  
  15347.  
  15348.  
  15349.  
  15350.  
  15351.  
  15352.  
  15353.  
  15354.  
  15355.  
  15356.  
  15357.  
  15358.  
  15359.  
  15360.  
  15361.  
  15362.  
  15363.  
  15364.  
  15365.  
  15366.  
  15367.  
  15368.            </div>
  15369.  
  15370.            
  15371.              <div
  15372.                class="
  15373.                  productitem--action
  15374.                  quickshop-button
  15375.                  
  15376.                "
  15377.              >
  15378.                <button
  15379.                  class="productitem--action-trigger button-secondary"
  15380.                  data-quickshop-full
  15381.                  
  15382.                  
  15383.                  type="button"
  15384.                >
  15385.                  Quick shop
  15386.                </button>
  15387.              </div>
  15388.            
  15389.  
  15390.            
  15391.              <div
  15392.                class="
  15393.                  productitem--action
  15394.                  atc--button
  15395.                  
  15396.                "
  15397.              >
  15398.                <button
  15399.                  class="productitem--action-trigger productitem--action-atc button-primary"
  15400.                  type="button"
  15401.                  aria-label="Add to cart"
  15402.                  
  15403.                    data-quick-buy
  15404.                  
  15405.                  data-variant-id="39666365268055"
  15406.                  
  15407.                >
  15408.                  <span class="atc-button--text">
  15409.                    Add to cart
  15410.                  </span>
  15411.                  <span class="atc-button--icon"><svg
  15412.  aria-hidden="true"
  15413.  focusable="false"
  15414.  role="presentation"
  15415.  width="26"
  15416.  height="26"
  15417.  viewBox="0 0 26 26"
  15418.  xmlns="http://www.w3.org/2000/svg"
  15419. >
  15420.  <g fill-rule="nonzero" fill="currentColor">
  15421.    <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"/>
  15422.  </g>
  15423. </svg></span>
  15424.                </button>
  15425.              </div>
  15426.            
  15427.          </div>
  15428.        
  15429.      
  15430.    </div>
  15431.  </div>
  15432.  
  15433.  
  15434.    <script type="application/json" data-quick-buy-settings>
  15435.      {
  15436.        "cart_redirection": true,
  15437.        "money_format": "${{amount}}"
  15438.      }
  15439.    </script>
  15440.  
  15441. </li>
  15442.    
  15443.      
  15444.  
  15445.  
  15446.  
  15447.  
  15448.  
  15449.  
  15450.  
  15451.  
  15452.  
  15453.  
  15454.  
  15455.  
  15456.  
  15457.  
  15458.  
  15459.  
  15460.  
  15461.  
  15462.  
  15463.  
  15464.  
  15465.  
  15466.  
  15467.  
  15468.  
  15469.  
  15470.  
  15471.  
  15472.  
  15473.  
  15474.  
  15475.  
  15476.    
  15477.  
  15478.  
  15479.  
  15480. <li
  15481.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  15482.  data-product-item
  15483.  data-product-quickshop-url="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15484.  
  15485. >
  15486.  <div class="productitem" data-product-item-content>
  15487.    
  15488.    
  15489.    
  15490.    
  15491.  
  15492.    
  15493.  
  15494.    
  15495.  
  15496.    <div class="productitem__container">
  15497.      
  15498.  
  15499.      <div class="productitem__image-container">
  15500.        <a target="_blank"
  15501.          class="productitem--image-link"
  15502.          href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15503.          aria-label="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15504.          tabindex="-1"
  15505.          data-product-page-link
  15506.        >
  15507.          <figure
  15508.            class="productitem--image"
  15509.            data-product-item-image
  15510.            
  15511.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  15512.            
  15513.          >
  15514.            
  15515.              
  15516.              
  15517.  
  15518.  
  15519.    <noscript data-rimg-noscript>
  15520.      <img loading="lazy"
  15521.        
  15522.          src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15523.        
  15524.  
  15525.        alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15526.        data-rimg="noscript"
  15527.        srcset="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427 1x"
  15528.        class="productitem--image-primary"
  15529.        
  15530.        
  15531.      >
  15532.    </noscript>
  15533.  
  15534.  
  15535.  <img loading="lazy"
  15536.    
  15537.      src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15538.    
  15539.    alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15540.  
  15541.    
  15542.      data-rimg="lazy"
  15543.      data-rimg-scale="1"
  15544.      data-rimg-template="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_{size}.jpg?v=1715271427"
  15545.      data-rimg-max="500x500"
  15546.      data-rimg-crop="false"
  15547.      
  15548.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  15549.    
  15550.  
  15551.    class="productitem--image-primary"
  15552.    
  15553.    
  15554.  >
  15555.  
  15556.  
  15557.  
  15558.  <div data-rimg-canvas></div>
  15559.  
  15560.  
  15561.            
  15562.  
  15563.            
  15564.  
  15565.  
  15566.  
  15567.  
  15568.  
  15569.  
  15570.  
  15571.  
  15572.  
  15573.  
  15574.  
  15575.  
  15576.  
  15577.  
  15578.  
  15579.  
  15580.  
  15581.  
  15582.  
  15583.  
  15584.  
  15585.  
  15586.  
  15587.  
  15588.  
  15589.  
  15590.  
  15591.          </figure>
  15592.        </a>
  15593.      </div><div class="productitem--info">
  15594.        
  15595.          
  15596.  
  15597.        
  15598.  
  15599.        
  15600.          
  15601.  
  15602.  
  15603.  
  15604.  
  15605.  
  15606.  
  15607.  
  15608.  
  15609.  
  15610.  
  15611.  
  15612.  
  15613.  
  15614.  
  15615.  
  15616.  
  15617.  
  15618.  
  15619.  
  15620.  
  15621.  
  15622.  
  15623.  
  15624.  
  15625.  
  15626.  
  15627.  
  15628.  
  15629.  
  15630.  
  15631. <div class="price productitem__price ">
  15632.  
  15633.    <div
  15634.      class="price__compare-at visible"
  15635.      data-price-compare-container
  15636.    >
  15637.  
  15638.      
  15639.        <span class="money price__original" data-price-original></span>
  15640.      
  15641.    </div>
  15642.  
  15643.  
  15644.    
  15645.      
  15646.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15647.        
  15648.          <span class="visually-hidden">Original price</span>
  15649.          <span class="money price__compare-at--min" data-price-compare-min>
  15650.            $86.99
  15651.          </span>
  15652.          -
  15653.          <span class="visually-hidden">Original price</span>
  15654.          <span class="money price__compare-at--max" data-price-compare-max>
  15655.            $86.99
  15656.          </span>
  15657.        
  15658.      </div>
  15659.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15660.        <span class="visually-hidden">Original price</span>
  15661.        <span class="money price__compare-at--single" data-price-compare>
  15662.          
  15663.        </span>
  15664.      </div>
  15665.    
  15666.  
  15667.  
  15668.  <div class="price__current price__current--emphasize " data-price-container>
  15669.  
  15670.    
  15671.  
  15672.    
  15673.      
  15674.      
  15675.      <span class="money" data-price>
  15676.        $86.99
  15677.      </span>
  15678.    
  15679.    
  15680.  </div>
  15681.  
  15682.  
  15683.    
  15684.    <div class="price__current--hidden" data-current-price-range-hidden>
  15685.      
  15686.        <span class="money price__current--min" data-price-min>$86.99</span>
  15687.        -
  15688.        <span class="money price__current--max" data-price-max>$86.99</span>
  15689.      
  15690.    </div>
  15691.    <div class="price__current--hidden" data-current-price-hidden>
  15692.      <span class="visually-hidden">Current price</span>
  15693.      <span class="money" data-price>
  15694.        $86.99
  15695.      </span>
  15696.    </div>
  15697.  
  15698.  
  15699.  
  15700.    
  15701.    
  15702.    
  15703.    
  15704.  
  15705.    <div
  15706.      class="
  15707.        productitem__unit-price
  15708.        hidden
  15709.      "
  15710.      data-unit-price
  15711.    >
  15712.      <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>
  15713.    </div>
  15714.  
  15715.  
  15716.  
  15717. </div>
  15718.  
  15719.  
  15720.        
  15721.  
  15722.        <h2 class="productitem--title">
  15723.          <a href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m" data-product-page-link>
  15724.            Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M
  15725.          </a>
  15726.        </h2>
  15727.  
  15728.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15729.        <div class="star_container 4451281286"></div>
  15730.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15731.  
  15732.        
  15733.          
  15734.            <span class="productitem--vendor">
  15735.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15736.            </span>
  15737.          
  15738.        
  15739.  
  15740.        
  15741.  
  15742.        
  15743.          
  15744.            <div class="productitem__stock-level">
  15745.              <!--
  15746.  
  15747.  
  15748.  
  15749.  
  15750.  
  15751.  
  15752.  
  15753. <div class="product-stock-level-wrapper" >
  15754.  
  15755.    <span class="
  15756.  product-stock-level
  15757.  product-stock-level--continue-selling
  15758.  
  15759. ">
  15760.      
  15761.  
  15762.      <span class="product-stock-level__text">
  15763.        
  15764.        <div class="product-stock-level__badge-text">
  15765.          
  15766.  
  15767.    In stock
  15768.  
  15769.  
  15770.        </div>
  15771.      </span>
  15772.    </span>
  15773.  
  15774. </div>
  15775. -->
  15776.              
  15777.  
  15778.  
  15779.    
  15780.      <b style="color:green">In stock</b>
  15781.    
  15782.  
  15783.  
  15784.  
  15785.  
  15786.  
  15787.  
  15788.  
  15789.            </div>
  15790.          
  15791.  
  15792.          
  15793.            
  15794.          
  15795.        
  15796.  
  15797.        
  15798.          <div class="productitem--description">
  15799.            <p>Description: New genuine Acer laptop replacement keyboard. Canadian Bilingual layout. Part #'s: KB.I140A.114, KBI140A114, NSK-AM02M, 9J.N1P82.02M. ...</p>
  15800.  
  15801.            
  15802.              <a
  15803.                href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15804.                class="productitem--link"
  15805.                data-product-page-link
  15806.              >
  15807.                View full details
  15808.              </a>
  15809.            
  15810.          </div>
  15811.        
  15812.      </div>
  15813.  
  15814.      
  15815.        
  15816.          
  15817.          
  15818.          
  15819.  
  15820.          
  15821.          
  15822.  
  15823.          
  15824.  
  15825.          
  15826.  
  15827.          <div class="productitem--actions" data-product-actions>
  15828.            <div class="productitem--listview-price">
  15829.              
  15830.  
  15831.  
  15832.  
  15833.  
  15834.  
  15835.  
  15836.  
  15837.  
  15838.  
  15839.  
  15840.  
  15841.  
  15842.  
  15843.  
  15844.  
  15845.  
  15846.  
  15847.  
  15848.  
  15849.  
  15850.  
  15851.  
  15852.  
  15853.  
  15854.  
  15855.  
  15856.  
  15857.  
  15858.  
  15859.  
  15860. <div class="price productitem__price ">
  15861.  
  15862.    <div
  15863.      class="price__compare-at visible"
  15864.      data-price-compare-container
  15865.    >
  15866.  
  15867.      
  15868.        <span class="money price__original" data-price-original></span>
  15869.      
  15870.    </div>
  15871.  
  15872.  
  15873.    
  15874.      
  15875.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15876.        
  15877.          <span class="visually-hidden">Original price</span>
  15878.          <span class="money price__compare-at--min" data-price-compare-min>
  15879.            $86.99
  15880.          </span>
  15881.          -
  15882.          <span class="visually-hidden">Original price</span>
  15883.          <span class="money price__compare-at--max" data-price-compare-max>
  15884.            $86.99
  15885.          </span>
  15886.        
  15887.      </div>
  15888.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15889.        <span class="visually-hidden">Original price</span>
  15890.        <span class="money price__compare-at--single" data-price-compare>
  15891.          
  15892.        </span>
  15893.      </div>
  15894.    
  15895.  
  15896.  
  15897.  <div class="price__current price__current--emphasize " data-price-container>
  15898.  
  15899.    
  15900.  
  15901.    
  15902.      
  15903.      
  15904.      <span class="money" data-price>
  15905.        $86.99
  15906.      </span>
  15907.    
  15908.    
  15909.  </div>
  15910.  
  15911.  
  15912.    
  15913.    <div class="price__current--hidden" data-current-price-range-hidden>
  15914.      
  15915.        <span class="money price__current--min" data-price-min>$86.99</span>
  15916.        -
  15917.        <span class="money price__current--max" data-price-max>$86.99</span>
  15918.      
  15919.    </div>
  15920.    <div class="price__current--hidden" data-current-price-hidden>
  15921.      <span class="visually-hidden">Current price</span>
  15922.      <span class="money" data-price>
  15923.        $86.99
  15924.      </span>
  15925.    </div>
  15926.  
  15927.  
  15928.  
  15929.    
  15930.    
  15931.    
  15932.    
  15933.  
  15934.    <div
  15935.      class="
  15936.        productitem__unit-price
  15937.        hidden
  15938.      "
  15939.      data-unit-price
  15940.    >
  15941.      <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>
  15942.    </div>
  15943.  
  15944.  
  15945.  
  15946. </div>
  15947.  
  15948.  
  15949.            </div>
  15950.  
  15951.            <div class="productitem--listview-badge">
  15952.              
  15953.  
  15954.  
  15955.  
  15956.  
  15957.  
  15958.  
  15959.  
  15960.  
  15961.  
  15962.  
  15963.  
  15964.  
  15965.  
  15966.  
  15967.  
  15968.  
  15969.  
  15970.  
  15971.  
  15972.  
  15973.  
  15974.  
  15975.  
  15976.  
  15977.  
  15978.  
  15979.  
  15980.            </div>
  15981.  
  15982.            
  15983.              <div
  15984.                class="
  15985.                  productitem--action
  15986.                  quickshop-button
  15987.                  
  15988.                "
  15989.              >
  15990.                <button
  15991.                  class="productitem--action-trigger button-secondary"
  15992.                  data-quickshop-full
  15993.                  
  15994.                  
  15995.                  type="button"
  15996.                >
  15997.                  Quick shop
  15998.                </button>
  15999.              </div>
  16000.            
  16001.  
  16002.            
  16003.              <div
  16004.                class="
  16005.                  productitem--action
  16006.                  atc--button
  16007.                  
  16008.                "
  16009.              >
  16010.                <button
  16011.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16012.                  type="button"
  16013.                  aria-label="Add to cart"
  16014.                  
  16015.                    data-quick-buy
  16016.                  
  16017.                  data-variant-id="39666363793495"
  16018.                  
  16019.                >
  16020.                  <span class="atc-button--text">
  16021.                    Add to cart
  16022.                  </span>
  16023.                  <span class="atc-button--icon"><svg
  16024.  aria-hidden="true"
  16025.  focusable="false"
  16026.  role="presentation"
  16027.  width="26"
  16028.  height="26"
  16029.  viewBox="0 0 26 26"
  16030.  xmlns="http://www.w3.org/2000/svg"
  16031. >
  16032.  <g fill-rule="nonzero" fill="currentColor">
  16033.    <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"/>
  16034.  </g>
  16035. </svg></span>
  16036.                </button>
  16037.              </div>
  16038.            
  16039.          </div>
  16040.        
  16041.      
  16042.    </div>
  16043.  </div>
  16044.  
  16045.  
  16046.    <script type="application/json" data-quick-buy-settings>
  16047.      {
  16048.        "cart_redirection": true,
  16049.        "money_format": "${{amount}}"
  16050.      }
  16051.    </script>
  16052.  
  16053. </li>
  16054.    
  16055.      
  16056.  
  16057.  
  16058.  
  16059.  
  16060.  
  16061.  
  16062.  
  16063.  
  16064.  
  16065.  
  16066.  
  16067.  
  16068.  
  16069.  
  16070.  
  16071.  
  16072.  
  16073.  
  16074.  
  16075.  
  16076.  
  16077.  
  16078.  
  16079.  
  16080.  
  16081.  
  16082.  
  16083.  
  16084.  
  16085.  
  16086.  
  16087.  
  16088.    
  16089.  
  16090.  
  16091.  
  16092. <li
  16093.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16094.  data-product-item
  16095.  data-product-quickshop-url="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16096.  
  16097. >
  16098.  <div class="productitem" data-product-item-content>
  16099.    
  16100.    
  16101.    
  16102.    
  16103.  
  16104.    
  16105.  
  16106.    
  16107.  
  16108.    <div class="productitem__container">
  16109.      
  16110.  
  16111.      <div class="productitem__image-container">
  16112.        <a target="_blank"
  16113.          class="productitem--image-link"
  16114.          href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16115.          aria-label="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16116.          tabindex="-1"
  16117.          data-product-page-link
  16118.        >
  16119.          <figure
  16120.            class="productitem--image"
  16121.            data-product-item-image
  16122.            
  16123.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  16124.            
  16125.          >
  16126.            
  16127.              
  16128.              
  16129.  
  16130.  
  16131.    <noscript data-rimg-noscript>
  16132.      <img loading="lazy"
  16133.        
  16134.          src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16135.        
  16136.  
  16137.        alt=""
  16138.        data-rimg="noscript"
  16139.        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"
  16140.        class="productitem--image-primary"
  16141.        
  16142.        
  16143.      >
  16144.    </noscript>
  16145.  
  16146.  
  16147.  <img loading="lazy"
  16148.    
  16149.      src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16150.    
  16151.    alt=""
  16152.  
  16153.    
  16154.      data-rimg="lazy"
  16155.      data-rimg-scale="1"
  16156.      data-rimg-template="//laptopparts.ca/cdn/shop/products/33.paa02.007_{size}.jpg?v=1697125255"
  16157.      data-rimg-max="655x655"
  16158.      data-rimg-crop="false"
  16159.      
  16160.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  16161.    
  16162.  
  16163.    class="productitem--image-primary"
  16164.    
  16165.    
  16166.  >
  16167.  
  16168.  
  16169.  
  16170.  <div data-rimg-canvas></div>
  16171.  
  16172.  
  16173.            
  16174.  
  16175.            
  16176.  
  16177.  
  16178.  
  16179.  
  16180.  
  16181.  
  16182.  
  16183.  
  16184.  
  16185.  
  16186.  
  16187.  
  16188.  
  16189.  
  16190.  
  16191.  
  16192.  
  16193.  
  16194.  
  16195.  
  16196.  
  16197.  
  16198.  
  16199.  
  16200.  
  16201.  
  16202.  
  16203.          </figure>
  16204.        </a>
  16205.      </div><div class="productitem--info">
  16206.        
  16207.          
  16208.  
  16209.        
  16210.  
  16211.        
  16212.          
  16213.  
  16214.  
  16215.  
  16216.  
  16217.  
  16218.  
  16219.  
  16220.  
  16221.  
  16222.  
  16223.  
  16224.  
  16225.  
  16226.  
  16227.  
  16228.  
  16229.  
  16230.  
  16231.  
  16232.  
  16233.  
  16234.  
  16235.  
  16236.  
  16237.  
  16238.  
  16239.  
  16240.  
  16241.  
  16242.  
  16243. <div class="price productitem__price ">
  16244.  
  16245.    <div
  16246.      class="price__compare-at visible"
  16247.      data-price-compare-container
  16248.    >
  16249.  
  16250.      
  16251.        <span class="money price__original" data-price-original></span>
  16252.      
  16253.    </div>
  16254.  
  16255.  
  16256.    
  16257.      
  16258.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16259.        
  16260.          <span class="visually-hidden">Original price</span>
  16261.          <span class="money price__compare-at--min" data-price-compare-min>
  16262.            $65.99
  16263.          </span>
  16264.          -
  16265.          <span class="visually-hidden">Original price</span>
  16266.          <span class="money price__compare-at--max" data-price-compare-max>
  16267.            $65.99
  16268.          </span>
  16269.        
  16270.      </div>
  16271.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16272.        <span class="visually-hidden">Original price</span>
  16273.        <span class="money price__compare-at--single" data-price-compare>
  16274.          
  16275.        </span>
  16276.      </div>
  16277.    
  16278.  
  16279.  
  16280.  <div class="price__current price__current--emphasize " data-price-container>
  16281.  
  16282.    
  16283.  
  16284.    
  16285.      
  16286.      
  16287.      <span class="money" data-price>
  16288.        $65.99
  16289.      </span>
  16290.    
  16291.    
  16292.  </div>
  16293.  
  16294.  
  16295.    
  16296.    <div class="price__current--hidden" data-current-price-range-hidden>
  16297.      
  16298.        <span class="money price__current--min" data-price-min>$65.99</span>
  16299.        -
  16300.        <span class="money price__current--max" data-price-max>$65.99</span>
  16301.      
  16302.    </div>
  16303.    <div class="price__current--hidden" data-current-price-hidden>
  16304.      <span class="visually-hidden">Current price</span>
  16305.      <span class="money" data-price>
  16306.        $65.99
  16307.      </span>
  16308.    </div>
  16309.  
  16310.  
  16311.  
  16312.    
  16313.    
  16314.    
  16315.    
  16316.  
  16317.    <div
  16318.      class="
  16319.        productitem__unit-price
  16320.        hidden
  16321.      "
  16322.      data-unit-price
  16323.    >
  16324.      <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>
  16325.    </div>
  16326.  
  16327.  
  16328.  
  16329. </div>
  16330.  
  16331.  
  16332.        
  16333.  
  16334.        <h2 class="productitem--title">
  16335.          <a href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210" data-product-page-link>
  16336.            Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210
  16337.          </a>
  16338.        </h2>
  16339.  
  16340.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16341.        <div class="star_container 243102056471"></div>
  16342.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16343.  
  16344.        
  16345.          
  16346.            <span class="productitem--vendor">
  16347.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16348.            </span>
  16349.          
  16350.        
  16351.  
  16352.        
  16353.  
  16354.        
  16355.          
  16356.            <div class="productitem__stock-level">
  16357.              <!--
  16358.  
  16359.  
  16360.  
  16361.  
  16362.  
  16363.  
  16364.  
  16365. <div class="product-stock-level-wrapper" >
  16366.  
  16367.    <span class="
  16368.  product-stock-level
  16369.  product-stock-level--continue-selling
  16370.  
  16371. ">
  16372.      
  16373.  
  16374.      <span class="product-stock-level__text">
  16375.        
  16376.        <div class="product-stock-level__badge-text">
  16377.          
  16378.  
  16379.    In stock
  16380.  
  16381.  
  16382.        </div>
  16383.      </span>
  16384.    </span>
  16385.  
  16386. </div>
  16387. -->
  16388.              
  16389.  
  16390.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  16391.  
  16392.  
  16393.  
  16394.  
  16395.  
  16396.  
  16397.  
  16398.            </div>
  16399.          
  16400.  
  16401.          
  16402.            
  16403.          
  16404.        
  16405.  
  16406.        
  16407.          <div class="productitem--description">
  16408.            <p>Description: New genuine Acer laptop hinge and bracket set.
  16409. Part #'s: 33.PAA02.007, 091203 240, 091221 210.
  16410. Compatible Models: Acer Aspire 4235, 42...</p>
  16411.  
  16412.            
  16413.              <a
  16414.                href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16415.                class="productitem--link"
  16416.                data-product-page-link
  16417.              >
  16418.                View full details
  16419.              </a>
  16420.            
  16421.          </div>
  16422.        
  16423.      </div>
  16424.  
  16425.      
  16426.        
  16427.          
  16428.          
  16429.          
  16430.  
  16431.          
  16432.          
  16433.  
  16434.          
  16435.  
  16436.          
  16437.  
  16438.          <div class="productitem--actions" data-product-actions>
  16439.            <div class="productitem--listview-price">
  16440.              
  16441.  
  16442.  
  16443.  
  16444.  
  16445.  
  16446.  
  16447.  
  16448.  
  16449.  
  16450.  
  16451.  
  16452.  
  16453.  
  16454.  
  16455.  
  16456.  
  16457.  
  16458.  
  16459.  
  16460.  
  16461.  
  16462.  
  16463.  
  16464.  
  16465.  
  16466.  
  16467.  
  16468.  
  16469.  
  16470.  
  16471. <div class="price productitem__price ">
  16472.  
  16473.    <div
  16474.      class="price__compare-at visible"
  16475.      data-price-compare-container
  16476.    >
  16477.  
  16478.      
  16479.        <span class="money price__original" data-price-original></span>
  16480.      
  16481.    </div>
  16482.  
  16483.  
  16484.    
  16485.      
  16486.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16487.        
  16488.          <span class="visually-hidden">Original price</span>
  16489.          <span class="money price__compare-at--min" data-price-compare-min>
  16490.            $65.99
  16491.          </span>
  16492.          -
  16493.          <span class="visually-hidden">Original price</span>
  16494.          <span class="money price__compare-at--max" data-price-compare-max>
  16495.            $65.99
  16496.          </span>
  16497.        
  16498.      </div>
  16499.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16500.        <span class="visually-hidden">Original price</span>
  16501.        <span class="money price__compare-at--single" data-price-compare>
  16502.          
  16503.        </span>
  16504.      </div>
  16505.    
  16506.  
  16507.  
  16508.  <div class="price__current price__current--emphasize " data-price-container>
  16509.  
  16510.    
  16511.  
  16512.    
  16513.      
  16514.      
  16515.      <span class="money" data-price>
  16516.        $65.99
  16517.      </span>
  16518.    
  16519.    
  16520.  </div>
  16521.  
  16522.  
  16523.    
  16524.    <div class="price__current--hidden" data-current-price-range-hidden>
  16525.      
  16526.        <span class="money price__current--min" data-price-min>$65.99</span>
  16527.        -
  16528.        <span class="money price__current--max" data-price-max>$65.99</span>
  16529.      
  16530.    </div>
  16531.    <div class="price__current--hidden" data-current-price-hidden>
  16532.      <span class="visually-hidden">Current price</span>
  16533.      <span class="money" data-price>
  16534.        $65.99
  16535.      </span>
  16536.    </div>
  16537.  
  16538.  
  16539.  
  16540.    
  16541.    
  16542.    
  16543.    
  16544.  
  16545.    <div
  16546.      class="
  16547.        productitem__unit-price
  16548.        hidden
  16549.      "
  16550.      data-unit-price
  16551.    >
  16552.      <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>
  16553.    </div>
  16554.  
  16555.  
  16556.  
  16557. </div>
  16558.  
  16559.  
  16560.            </div>
  16561.  
  16562.            <div class="productitem--listview-badge">
  16563.              
  16564.  
  16565.  
  16566.  
  16567.  
  16568.  
  16569.  
  16570.  
  16571.  
  16572.  
  16573.  
  16574.  
  16575.  
  16576.  
  16577.  
  16578.  
  16579.  
  16580.  
  16581.  
  16582.  
  16583.  
  16584.  
  16585.  
  16586.  
  16587.  
  16588.  
  16589.  
  16590.  
  16591.            </div>
  16592.  
  16593.            
  16594.              <div
  16595.                class="
  16596.                  productitem--action
  16597.                  quickshop-button
  16598.                  
  16599.                "
  16600.              >
  16601.                <button
  16602.                  class="productitem--action-trigger button-secondary"
  16603.                  data-quickshop-full
  16604.                  
  16605.                  
  16606.                  type="button"
  16607.                >
  16608.                  Quick shop
  16609.                </button>
  16610.              </div>
  16611.            
  16612.  
  16613.            
  16614.              <div
  16615.                class="
  16616.                  productitem--action
  16617.                  atc--button
  16618.                  
  16619.                "
  16620.              >
  16621.                <button
  16622.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16623.                  type="button"
  16624.                  aria-label="Add to cart"
  16625.                  
  16626.                    data-quick-buy
  16627.                  
  16628.                  data-variant-id="2838819504151"
  16629.                  
  16630.                >
  16631.                  <span class="atc-button--text">
  16632.                    Add to cart
  16633.                  </span>
  16634.                  <span class="atc-button--icon"><svg
  16635.  aria-hidden="true"
  16636.  focusable="false"
  16637.  role="presentation"
  16638.  width="26"
  16639.  height="26"
  16640.  viewBox="0 0 26 26"
  16641.  xmlns="http://www.w3.org/2000/svg"
  16642. >
  16643.  <g fill-rule="nonzero" fill="currentColor">
  16644.    <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"/>
  16645.  </g>
  16646. </svg></span>
  16647.                </button>
  16648.              </div>
  16649.            
  16650.          </div>
  16651.        
  16652.      
  16653.    </div>
  16654.  </div>
  16655.  
  16656.  
  16657.    <script type="application/json" data-quick-buy-settings>
  16658.      {
  16659.        "cart_redirection": true,
  16660.        "money_format": "${{amount}}"
  16661.      }
  16662.    </script>
  16663.  
  16664. </li>
  16665.    
  16666.      
  16667.  
  16668.  
  16669.  
  16670.  
  16671.  
  16672.  
  16673.  
  16674.  
  16675.  
  16676.  
  16677.  
  16678.  
  16679.  
  16680.  
  16681.  
  16682.  
  16683.  
  16684.  
  16685.  
  16686.  
  16687.  
  16688.  
  16689.  
  16690.  
  16691.  
  16692.  
  16693.  
  16694.  
  16695.  
  16696.  
  16697.  
  16698.  
  16699.    
  16700.  
  16701.  
  16702.  
  16703. <li
  16704.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16705.  data-product-item
  16706.  data-product-quickshop-url="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16707.  
  16708. >
  16709.  <div class="productitem" data-product-item-content>
  16710.    
  16711.    
  16712.    
  16713.    
  16714.  
  16715.    
  16716.  
  16717.    
  16718.  
  16719.    <div class="productitem__container">
  16720.      
  16721.  
  16722.      <div class="productitem__image-container">
  16723.        <a target="_blank"
  16724.          class="productitem--image-link"
  16725.          href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16726.          aria-label="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16727.          tabindex="-1"
  16728.          data-product-page-link
  16729.        >
  16730.          <figure
  16731.            class="productitem--image"
  16732.            data-product-item-image
  16733.            
  16734.              style="--product-grid-item-image-aspect-ratio: 0.5231513476157568;"
  16735.            
  16736.          >
  16737.            
  16738.              
  16739.              
  16740.  
  16741.  
  16742.    <noscript data-rimg-noscript>
  16743.      <img loading="lazy"
  16744.        
  16745.          src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16746.        
  16747.  
  16748.        alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16749.        data-rimg="noscript"
  16750.        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"
  16751.        class="productitem--image-primary"
  16752.        
  16753.        
  16754.      >
  16755.    </noscript>
  16756.  
  16757.  
  16758.  <img loading="lazy"
  16759.    
  16760.      src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16761.    
  16762.    alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16763.  
  16764.    
  16765.      data-rimg="lazy"
  16766.      data-rimg-scale="1"
  16767.      data-rimg-template="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_{size}.jpg?v=1728212053"
  16768.      data-rimg-max="757x1447"
  16769.      data-rimg-crop="false"
  16770.      
  16771.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='979'></svg>"
  16772.    
  16773.  
  16774.    class="productitem--image-primary"
  16775.    
  16776.    
  16777.  >
  16778.  
  16779.  
  16780.  
  16781.  <div data-rimg-canvas></div>
  16782.  
  16783.  
  16784.            
  16785.  
  16786.            
  16787.  
  16788.  
  16789.  
  16790.  
  16791.  
  16792.  
  16793.  
  16794.  
  16795.  
  16796.  
  16797.  
  16798.  
  16799.  
  16800.  
  16801.  
  16802.  
  16803.  
  16804.  
  16805.  
  16806.  
  16807.  
  16808.  
  16809.  
  16810.  
  16811.  
  16812.  
  16813.  
  16814.          </figure>
  16815.        </a>
  16816.      </div><div class="productitem--info">
  16817.        
  16818.          
  16819.  
  16820.        
  16821.  
  16822.        
  16823.          
  16824.  
  16825.  
  16826.  
  16827.  
  16828.  
  16829.  
  16830.  
  16831.  
  16832.  
  16833.  
  16834.  
  16835.  
  16836.  
  16837.  
  16838.  
  16839.  
  16840.  
  16841.  
  16842.  
  16843.  
  16844.  
  16845.  
  16846.  
  16847.  
  16848.  
  16849.  
  16850.  
  16851.  
  16852.  
  16853.  
  16854. <div class="price productitem__price ">
  16855.  
  16856.    <div
  16857.      class="price__compare-at visible"
  16858.      data-price-compare-container
  16859.    >
  16860.  
  16861.      
  16862.        <span class="money price__original" data-price-original></span>
  16863.      
  16864.    </div>
  16865.  
  16866.  
  16867.    
  16868.      
  16869.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16870.        
  16871.          <span class="visually-hidden">Original price</span>
  16872.          <span class="money price__compare-at--min" data-price-compare-min>
  16873.            $50.98
  16874.          </span>
  16875.          -
  16876.          <span class="visually-hidden">Original price</span>
  16877.          <span class="money price__compare-at--max" data-price-compare-max>
  16878.            $50.98
  16879.          </span>
  16880.        
  16881.      </div>
  16882.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16883.        <span class="visually-hidden">Original price</span>
  16884.        <span class="money price__compare-at--single" data-price-compare>
  16885.          
  16886.        </span>
  16887.      </div>
  16888.    
  16889.  
  16890.  
  16891.  <div class="price__current price__current--emphasize " data-price-container>
  16892.  
  16893.    
  16894.  
  16895.    
  16896.      
  16897.      
  16898.      <span class="money" data-price>
  16899.        $50.98
  16900.      </span>
  16901.    
  16902.    
  16903.  </div>
  16904.  
  16905.  
  16906.    
  16907.    <div class="price__current--hidden" data-current-price-range-hidden>
  16908.      
  16909.        <span class="money price__current--min" data-price-min>$50.98</span>
  16910.        -
  16911.        <span class="money price__current--max" data-price-max>$50.98</span>
  16912.      
  16913.    </div>
  16914.    <div class="price__current--hidden" data-current-price-hidden>
  16915.      <span class="visually-hidden">Current price</span>
  16916.      <span class="money" data-price>
  16917.        $50.98
  16918.      </span>
  16919.    </div>
  16920.  
  16921.  
  16922.  
  16923.    
  16924.    
  16925.    
  16926.    
  16927.  
  16928.    <div
  16929.      class="
  16930.        productitem__unit-price
  16931.        hidden
  16932.      "
  16933.      data-unit-price
  16934.    >
  16935.      <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>
  16936.    </div>
  16937.  
  16938.  
  16939.  
  16940. </div>
  16941.  
  16942.  
  16943.        
  16944.  
  16945.        <h2 class="productitem--title">
  16946.          <a href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set" data-product-page-link>
  16947.            Acer Aspire 5 A515-41 A515-41G A515-51 A515-51G Right & Left Lcd Hinge Set 33.GP4N2.003
  16948.          </a>
  16949.        </h2>
  16950.  
  16951.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16952.        <div class="star_container 1468469608471"></div>
  16953.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16954.  
  16955.        
  16956.          
  16957.            <span class="productitem--vendor">
  16958.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16959.            </span>
  16960.          
  16961.        
  16962.  
  16963.        
  16964.  
  16965.        
  16966.          
  16967.            <div class="productitem__stock-level">
  16968.              <!--
  16969.  
  16970.  
  16971.  
  16972.  
  16973.  
  16974.  
  16975.  
  16976. <div class="product-stock-level-wrapper" >
  16977.  
  16978.    <span class="
  16979.  product-stock-level
  16980.  product-stock-level--continue-selling
  16981.  
  16982. ">
  16983.      
  16984.  
  16985.      <span class="product-stock-level__text">
  16986.        
  16987.        <div class="product-stock-level__badge-text">
  16988.          
  16989.  
  16990.    In stock
  16991.  
  16992.  
  16993.        </div>
  16994.      </span>
  16995.    </span>
  16996.  
  16997. </div>
  16998. -->
  16999.              
  17000.  
  17001.  
  17002.    
  17003.      <b style="color:green">In stock</b>
  17004.    
  17005.  
  17006.  
  17007.  
  17008.  
  17009.  
  17010.  
  17011.  
  17012.            </div>
  17013.          
  17014.  
  17015.          
  17016.            
  17017.          
  17018.        
  17019.  
  17020.        
  17021.          <div class="productitem--description">
  17022.            <p>
  17023. Description: New Acer right and left laptop lcd hinge set.
  17024.  
  17025.  
  17026. Compatible Part #'s: 33.GP4N2.003, 33.GP4N2.004Compatible Models:Acer Aspire 3 A315-...</p>
  17027.  
  17028.            
  17029.              <a
  17030.                href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  17031.                class="productitem--link"
  17032.                data-product-page-link
  17033.              >
  17034.                View full details
  17035.              </a>
  17036.            
  17037.          </div>
  17038.        
  17039.      </div>
  17040.  
  17041.      
  17042.        
  17043.          
  17044.          
  17045.          
  17046.  
  17047.          
  17048.          
  17049.  
  17050.          
  17051.  
  17052.          
  17053.  
  17054.          <div class="productitem--actions" data-product-actions>
  17055.            <div class="productitem--listview-price">
  17056.              
  17057.  
  17058.  
  17059.  
  17060.  
  17061.  
  17062.  
  17063.  
  17064.  
  17065.  
  17066.  
  17067.  
  17068.  
  17069.  
  17070.  
  17071.  
  17072.  
  17073.  
  17074.  
  17075.  
  17076.  
  17077.  
  17078.  
  17079.  
  17080.  
  17081.  
  17082.  
  17083.  
  17084.  
  17085.  
  17086.  
  17087. <div class="price productitem__price ">
  17088.  
  17089.    <div
  17090.      class="price__compare-at visible"
  17091.      data-price-compare-container
  17092.    >
  17093.  
  17094.      
  17095.        <span class="money price__original" data-price-original></span>
  17096.      
  17097.    </div>
  17098.  
  17099.  
  17100.    
  17101.      
  17102.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17103.        
  17104.          <span class="visually-hidden">Original price</span>
  17105.          <span class="money price__compare-at--min" data-price-compare-min>
  17106.            $50.98
  17107.          </span>
  17108.          -
  17109.          <span class="visually-hidden">Original price</span>
  17110.          <span class="money price__compare-at--max" data-price-compare-max>
  17111.            $50.98
  17112.          </span>
  17113.        
  17114.      </div>
  17115.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17116.        <span class="visually-hidden">Original price</span>
  17117.        <span class="money price__compare-at--single" data-price-compare>
  17118.          
  17119.        </span>
  17120.      </div>
  17121.    
  17122.  
  17123.  
  17124.  <div class="price__current price__current--emphasize " data-price-container>
  17125.  
  17126.    
  17127.  
  17128.    
  17129.      
  17130.      
  17131.      <span class="money" data-price>
  17132.        $50.98
  17133.      </span>
  17134.    
  17135.    
  17136.  </div>
  17137.  
  17138.  
  17139.    
  17140.    <div class="price__current--hidden" data-current-price-range-hidden>
  17141.      
  17142.        <span class="money price__current--min" data-price-min>$50.98</span>
  17143.        -
  17144.        <span class="money price__current--max" data-price-max>$50.98</span>
  17145.      
  17146.    </div>
  17147.    <div class="price__current--hidden" data-current-price-hidden>
  17148.      <span class="visually-hidden">Current price</span>
  17149.      <span class="money" data-price>
  17150.        $50.98
  17151.      </span>
  17152.    </div>
  17153.  
  17154.  
  17155.  
  17156.    
  17157.    
  17158.    
  17159.    
  17160.  
  17161.    <div
  17162.      class="
  17163.        productitem__unit-price
  17164.        hidden
  17165.      "
  17166.      data-unit-price
  17167.    >
  17168.      <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>
  17169.    </div>
  17170.  
  17171.  
  17172.  
  17173. </div>
  17174.  
  17175.  
  17176.            </div>
  17177.  
  17178.            <div class="productitem--listview-badge">
  17179.              
  17180.  
  17181.  
  17182.  
  17183.  
  17184.  
  17185.  
  17186.  
  17187.  
  17188.  
  17189.  
  17190.  
  17191.  
  17192.  
  17193.  
  17194.  
  17195.  
  17196.  
  17197.  
  17198.  
  17199.  
  17200.  
  17201.  
  17202.  
  17203.  
  17204.  
  17205.  
  17206.  
  17207.            </div>
  17208.  
  17209.            
  17210.              <div
  17211.                class="
  17212.                  productitem--action
  17213.                  quickshop-button
  17214.                  
  17215.                "
  17216.              >
  17217.                <button
  17218.                  class="productitem--action-trigger button-secondary"
  17219.                  data-quickshop-full
  17220.                  
  17221.                  
  17222.                  type="button"
  17223.                >
  17224.                  Quick shop
  17225.                </button>
  17226.              </div>
  17227.            
  17228.  
  17229.            
  17230.              <div
  17231.                class="
  17232.                  productitem--action
  17233.                  atc--button
  17234.                  
  17235.                "
  17236.              >
  17237.                <button
  17238.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17239.                  type="button"
  17240.                  aria-label="Add to cart"
  17241.                  
  17242.                    data-quick-buy
  17243.                  
  17244.                  data-variant-id="12807718895639"
  17245.                  
  17246.                >
  17247.                  <span class="atc-button--text">
  17248.                    Add to cart
  17249.                  </span>
  17250.                  <span class="atc-button--icon"><svg
  17251.  aria-hidden="true"
  17252.  focusable="false"
  17253.  role="presentation"
  17254.  width="26"
  17255.  height="26"
  17256.  viewBox="0 0 26 26"
  17257.  xmlns="http://www.w3.org/2000/svg"
  17258. >
  17259.  <g fill-rule="nonzero" fill="currentColor">
  17260.    <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"/>
  17261.  </g>
  17262. </svg></span>
  17263.                </button>
  17264.              </div>
  17265.            
  17266.          </div>
  17267.        
  17268.      
  17269.    </div>
  17270.  </div>
  17271.  
  17272.  
  17273.    <script type="application/json" data-quick-buy-settings>
  17274.      {
  17275.        "cart_redirection": true,
  17276.        "money_format": "${{amount}}"
  17277.      }
  17278.    </script>
  17279.  
  17280. </li>
  17281.    
  17282.      
  17283.  
  17284.  
  17285.  
  17286.  
  17287.  
  17288.  
  17289.  
  17290.  
  17291.  
  17292.  
  17293.  
  17294.  
  17295.  
  17296.  
  17297.  
  17298.  
  17299.  
  17300.  
  17301.  
  17302.  
  17303.  
  17304.  
  17305.  
  17306.  
  17307.  
  17308.  
  17309.  
  17310.  
  17311.  
  17312.  
  17313.  
  17314.  
  17315.    
  17316.  
  17317.  
  17318.  
  17319. <li
  17320.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17321.  data-product-item
  17322.  data-product-quickshop-url="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17323.  
  17324. >
  17325.  <div class="productitem" data-product-item-content>
  17326.    
  17327.    
  17328.    
  17329.    
  17330.  
  17331.    
  17332.  
  17333.    
  17334.  
  17335.    <div class="productitem__container">
  17336.      
  17337.  
  17338.      <div class="productitem__image-container">
  17339.        <a target="_blank"
  17340.          class="productitem--image-link"
  17341.          href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17342.          aria-label="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17343.          tabindex="-1"
  17344.          data-product-page-link
  17345.        >
  17346.          <figure
  17347.            class="productitem--image"
  17348.            data-product-item-image
  17349.            
  17350.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17351.            
  17352.          >
  17353.            
  17354.              
  17355.              
  17356.  
  17357.  
  17358.    <noscript data-rimg-noscript>
  17359.      <img loading="lazy"
  17360.        
  17361.          src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17362.        
  17363.  
  17364.        alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17365.        data-rimg="noscript"
  17366.        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"
  17367.        class="productitem--image-primary"
  17368.        
  17369.        
  17370.      >
  17371.    </noscript>
  17372.  
  17373.  
  17374.  <img loading="lazy"
  17375.    
  17376.      src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17377.    
  17378.    alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17379.  
  17380.    
  17381.      data-rimg="lazy"
  17382.      data-rimg-scale="1"
  17383.      data-rimg-template="//laptopparts.ca/cdn/shop/products/23.apq0n.001_{size}.jpg?v=1715271966"
  17384.      data-rimg-max="600x600"
  17385.      data-rimg-crop="false"
  17386.      
  17387.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17388.    
  17389.  
  17390.    class="productitem--image-primary"
  17391.    
  17392.    
  17393.  >
  17394.  
  17395.  
  17396.  
  17397.  <div data-rimg-canvas></div>
  17398.  
  17399.  
  17400.            
  17401.  
  17402.            
  17403.  
  17404.  
  17405.  
  17406.  
  17407.  
  17408.  
  17409.  
  17410.  
  17411.  
  17412.  
  17413.  
  17414.  
  17415.  
  17416.  
  17417.  
  17418.  
  17419.  
  17420.  
  17421.  
  17422.  
  17423.  
  17424.  
  17425.  
  17426.  
  17427.  
  17428.  
  17429.  
  17430.          </figure>
  17431.        </a>
  17432.      </div><div class="productitem--info">
  17433.        
  17434.          
  17435.  
  17436.        
  17437.  
  17438.        
  17439.          
  17440.  
  17441.  
  17442.  
  17443.  
  17444.  
  17445.  
  17446.  
  17447.  
  17448.  
  17449.  
  17450.  
  17451.  
  17452.  
  17453.  
  17454.  
  17455.  
  17456.  
  17457.  
  17458.  
  17459.  
  17460.  
  17461.  
  17462.  
  17463.  
  17464.  
  17465.  
  17466.  
  17467.  
  17468.  
  17469.  
  17470. <div class="price productitem__price ">
  17471.  
  17472.    <div
  17473.      class="price__compare-at visible"
  17474.      data-price-compare-container
  17475.    >
  17476.  
  17477.      
  17478.        <span class="money price__original" data-price-original></span>
  17479.      
  17480.    </div>
  17481.  
  17482.  
  17483.    
  17484.      
  17485.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17486.        
  17487.          <span class="visually-hidden">Original price</span>
  17488.          <span class="money price__compare-at--min" data-price-compare-min>
  17489.            $58.99
  17490.          </span>
  17491.          -
  17492.          <span class="visually-hidden">Original price</span>
  17493.          <span class="money price__compare-at--max" data-price-compare-max>
  17494.            $58.99
  17495.          </span>
  17496.        
  17497.      </div>
  17498.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17499.        <span class="visually-hidden">Original price</span>
  17500.        <span class="money price__compare-at--single" data-price-compare>
  17501.          
  17502.        </span>
  17503.      </div>
  17504.    
  17505.  
  17506.  
  17507.  <div class="price__current price__current--emphasize " data-price-container>
  17508.  
  17509.    
  17510.  
  17511.    
  17512.      
  17513.      
  17514.      <span class="money" data-price>
  17515.        $58.99
  17516.      </span>
  17517.    
  17518.    
  17519.  </div>
  17520.  
  17521.  
  17522.    
  17523.    <div class="price__current--hidden" data-current-price-range-hidden>
  17524.      
  17525.        <span class="money price__current--min" data-price-min>$58.99</span>
  17526.        -
  17527.        <span class="money price__current--max" data-price-max>$58.99</span>
  17528.      
  17529.    </div>
  17530.    <div class="price__current--hidden" data-current-price-hidden>
  17531.      <span class="visually-hidden">Current price</span>
  17532.      <span class="money" data-price>
  17533.        $58.99
  17534.      </span>
  17535.    </div>
  17536.  
  17537.  
  17538.  
  17539.    
  17540.    
  17541.    
  17542.    
  17543.  
  17544.    <div
  17545.      class="
  17546.        productitem__unit-price
  17547.        hidden
  17548.      "
  17549.      data-unit-price
  17550.    >
  17551.      <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>
  17552.    </div>
  17553.  
  17554.  
  17555.  
  17556. </div>
  17557.  
  17558.  
  17559.        
  17560.  
  17561.        <h2 class="productitem--title">
  17562.          <a href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a" data-product-page-link>
  17563.            Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A
  17564.          </a>
  17565.        </h2>
  17566.  
  17567.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  17568.        <div class="star_container 4451325446"></div>
  17569.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  17570.  
  17571.        
  17572.          
  17573.            <span class="productitem--vendor">
  17574.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  17575.            </span>
  17576.          
  17577.        
  17578.  
  17579.        
  17580.  
  17581.        
  17582.          
  17583.            <div class="productitem__stock-level">
  17584.              <!--
  17585.  
  17586.  
  17587.  
  17588.  
  17589.  
  17590.  
  17591.  
  17592. <div class="product-stock-level-wrapper" >
  17593.  
  17594.    <span class="
  17595.  product-stock-level
  17596.  product-stock-level--continue-selling
  17597.  
  17598. ">
  17599.      
  17600.  
  17601.      <span class="product-stock-level__text">
  17602.        
  17603.        <div class="product-stock-level__badge-text">
  17604.          
  17605.  
  17606.    In stock
  17607.  
  17608.  
  17609.        </div>
  17610.      </span>
  17611.    </span>
  17612.  
  17613. </div>
  17614. -->
  17615.              
  17616.  
  17617.  
  17618.    
  17619.      <b style="color:green">In stock</b>
  17620.    
  17621.  
  17622.  
  17623.  
  17624.  
  17625.  
  17626.  
  17627.  
  17628.            </div>
  17629.          
  17630.  
  17631.          
  17632.            
  17633.          
  17634.        
  17635.  
  17636.        
  17637.          <div class="productitem--description">
  17638.            <p>Genuine Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A</p>
  17639.  
  17640.            
  17641.          </div>
  17642.        
  17643.      </div>
  17644.  
  17645.      
  17646.        
  17647.          
  17648.          
  17649.          
  17650.  
  17651.          
  17652.          
  17653.  
  17654.          
  17655.  
  17656.          
  17657.  
  17658.          <div class="productitem--actions" data-product-actions>
  17659.            <div class="productitem--listview-price">
  17660.              
  17661.  
  17662.  
  17663.  
  17664.  
  17665.  
  17666.  
  17667.  
  17668.  
  17669.  
  17670.  
  17671.  
  17672.  
  17673.  
  17674.  
  17675.  
  17676.  
  17677.  
  17678.  
  17679.  
  17680.  
  17681.  
  17682.  
  17683.  
  17684.  
  17685.  
  17686.  
  17687.  
  17688.  
  17689.  
  17690.  
  17691. <div class="price productitem__price ">
  17692.  
  17693.    <div
  17694.      class="price__compare-at visible"
  17695.      data-price-compare-container
  17696.    >
  17697.  
  17698.      
  17699.        <span class="money price__original" data-price-original></span>
  17700.      
  17701.    </div>
  17702.  
  17703.  
  17704.    
  17705.      
  17706.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17707.        
  17708.          <span class="visually-hidden">Original price</span>
  17709.          <span class="money price__compare-at--min" data-price-compare-min>
  17710.            $58.99
  17711.          </span>
  17712.          -
  17713.          <span class="visually-hidden">Original price</span>
  17714.          <span class="money price__compare-at--max" data-price-compare-max>
  17715.            $58.99
  17716.          </span>
  17717.        
  17718.      </div>
  17719.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17720.        <span class="visually-hidden">Original price</span>
  17721.        <span class="money price__compare-at--single" data-price-compare>
  17722.          
  17723.        </span>
  17724.      </div>
  17725.    
  17726.  
  17727.  
  17728.  <div class="price__current price__current--emphasize " data-price-container>
  17729.  
  17730.    
  17731.  
  17732.    
  17733.      
  17734.      
  17735.      <span class="money" data-price>
  17736.        $58.99
  17737.      </span>
  17738.    
  17739.    
  17740.  </div>
  17741.  
  17742.  
  17743.    
  17744.    <div class="price__current--hidden" data-current-price-range-hidden>
  17745.      
  17746.        <span class="money price__current--min" data-price-min>$58.99</span>
  17747.        -
  17748.        <span class="money price__current--max" data-price-max>$58.99</span>
  17749.      
  17750.    </div>
  17751.    <div class="price__current--hidden" data-current-price-hidden>
  17752.      <span class="visually-hidden">Current price</span>
  17753.      <span class="money" data-price>
  17754.        $58.99
  17755.      </span>
  17756.    </div>
  17757.  
  17758.  
  17759.  
  17760.    
  17761.    
  17762.    
  17763.    
  17764.  
  17765.    <div
  17766.      class="
  17767.        productitem__unit-price
  17768.        hidden
  17769.      "
  17770.      data-unit-price
  17771.    >
  17772.      <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>
  17773.    </div>
  17774.  
  17775.  
  17776.  
  17777. </div>
  17778.  
  17779.  
  17780.            </div>
  17781.  
  17782.            <div class="productitem--listview-badge">
  17783.              
  17784.  
  17785.  
  17786.  
  17787.  
  17788.  
  17789.  
  17790.  
  17791.  
  17792.  
  17793.  
  17794.  
  17795.  
  17796.  
  17797.  
  17798.  
  17799.  
  17800.  
  17801.  
  17802.  
  17803.  
  17804.  
  17805.  
  17806.  
  17807.  
  17808.  
  17809.  
  17810.  
  17811.            </div>
  17812.  
  17813.            
  17814.              <div
  17815.                class="
  17816.                  productitem--action
  17817.                  quickshop-button
  17818.                  
  17819.                "
  17820.              >
  17821.                <button
  17822.                  class="productitem--action-trigger button-secondary"
  17823.                  data-quickshop-full
  17824.                  
  17825.                  
  17826.                  type="button"
  17827.                >
  17828.                  Quick shop
  17829.                </button>
  17830.              </div>
  17831.            
  17832.  
  17833.            
  17834.              <div
  17835.                class="
  17836.                  productitem--action
  17837.                  atc--button
  17838.                  
  17839.                "
  17840.              >
  17841.                <button
  17842.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17843.                  type="button"
  17844.                  aria-label="Add to cart"
  17845.                  
  17846.                    data-quick-buy
  17847.                  
  17848.                  data-variant-id="39666095259735"
  17849.                  
  17850.                >
  17851.                  <span class="atc-button--text">
  17852.                    Add to cart
  17853.                  </span>
  17854.                  <span class="atc-button--icon"><svg
  17855.  aria-hidden="true"
  17856.  focusable="false"
  17857.  role="presentation"
  17858.  width="26"
  17859.  height="26"
  17860.  viewBox="0 0 26 26"
  17861.  xmlns="http://www.w3.org/2000/svg"
  17862. >
  17863.  <g fill-rule="nonzero" fill="currentColor">
  17864.    <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"/>
  17865.  </g>
  17866. </svg></span>
  17867.                </button>
  17868.              </div>
  17869.            
  17870.          </div>
  17871.        
  17872.      
  17873.    </div>
  17874.  </div>
  17875.  
  17876.  
  17877.    <script type="application/json" data-quick-buy-settings>
  17878.      {
  17879.        "cart_redirection": true,
  17880.        "money_format": "${{amount}}"
  17881.      }
  17882.    </script>
  17883.  
  17884. </li>
  17885.    
  17886.      
  17887.  
  17888.  
  17889.  
  17890.  
  17891.  
  17892.  
  17893.  
  17894.  
  17895.  
  17896.  
  17897.  
  17898.  
  17899.  
  17900.  
  17901.  
  17902.  
  17903.  
  17904.  
  17905.  
  17906.  
  17907.  
  17908.  
  17909.  
  17910.  
  17911.  
  17912.  
  17913.  
  17914.  
  17915.  
  17916.  
  17917.  
  17918.  
  17919.    
  17920.  
  17921.  
  17922.  
  17923. <li
  17924.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17925.  data-product-item
  17926.  data-product-quickshop-url="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17927.  
  17928. >
  17929.  <div class="productitem" data-product-item-content>
  17930.    
  17931.    
  17932.    
  17933.    
  17934.  
  17935.    
  17936.  
  17937.    
  17938.  
  17939.    <div class="productitem__container">
  17940.      
  17941.  
  17942.      <div class="productitem__image-container">
  17943.        <a target="_blank"
  17944.          class="productitem--image-link"
  17945.          href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17946.          aria-label="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17947.          tabindex="-1"
  17948.          data-product-page-link
  17949.        >
  17950.          <figure
  17951.            class="productitem--image"
  17952.            data-product-item-image
  17953.            
  17954.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17955.            
  17956.          >
  17957.            
  17958.              
  17959.              
  17960.  
  17961.  
  17962.    <noscript data-rimg-noscript>
  17963.      <img loading="lazy"
  17964.        
  17965.          src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  17966.        
  17967.  
  17968.        alt=""
  17969.        data-rimg="noscript"
  17970.        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"
  17971.        class="productitem--image-primary"
  17972.        
  17973.        
  17974.      >
  17975.    </noscript>
  17976.  
  17977.  
  17978.  <img loading="lazy"
  17979.    
  17980.      src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  17981.    
  17982.    alt=""
  17983.  
  17984.    
  17985.      data-rimg="lazy"
  17986.      data-rimg-scale="1"
  17987.      data-rimg-template="//laptopparts.ca/cdn/shop/products/55.r4f02.002_{size}.png?v=1697125258"
  17988.      data-rimg-max="603x603"
  17989.      data-rimg-crop="false"
  17990.      
  17991.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17992.    
  17993.  
  17994.    class="productitem--image-primary"
  17995.    
  17996.    
  17997.  >
  17998.  
  17999.  
  18000.  
  18001.  <div data-rimg-canvas></div>
  18002.  
  18003.  
  18004.            
  18005.  
  18006.            
  18007.  
  18008.  
  18009.  
  18010.  
  18011.  
  18012.  
  18013.  
  18014.  
  18015.  
  18016.  
  18017.  
  18018.  
  18019.  
  18020.  
  18021.  
  18022.  
  18023.  
  18024.  
  18025.  
  18026.  
  18027.  
  18028.  
  18029.  
  18030.  
  18031.  
  18032.  
  18033.  
  18034.          </figure>
  18035.        </a>
  18036.      </div><div class="productitem--info">
  18037.        
  18038.          
  18039.  
  18040.        
  18041.  
  18042.        
  18043.          
  18044.  
  18045.  
  18046.  
  18047.  
  18048.  
  18049.  
  18050.  
  18051.  
  18052.  
  18053.  
  18054.  
  18055.  
  18056.  
  18057.  
  18058.  
  18059.  
  18060.  
  18061.  
  18062.  
  18063.  
  18064.  
  18065.  
  18066.  
  18067.  
  18068.  
  18069.  
  18070.  
  18071.  
  18072.  
  18073.  
  18074. <div class="price productitem__price ">
  18075.  
  18076.    <div
  18077.      class="price__compare-at visible"
  18078.      data-price-compare-container
  18079.    >
  18080.  
  18081.      
  18082.        <span class="money price__original" data-price-original></span>
  18083.      
  18084.    </div>
  18085.  
  18086.  
  18087.    
  18088.      
  18089.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18090.        
  18091.          <span class="visually-hidden">Original price</span>
  18092.          <span class="money price__compare-at--min" data-price-compare-min>
  18093.            $56.99
  18094.          </span>
  18095.          -
  18096.          <span class="visually-hidden">Original price</span>
  18097.          <span class="money price__compare-at--max" data-price-compare-max>
  18098.            $56.99
  18099.          </span>
  18100.        
  18101.      </div>
  18102.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18103.        <span class="visually-hidden">Original price</span>
  18104.        <span class="money price__compare-at--single" data-price-compare>
  18105.          
  18106.        </span>
  18107.      </div>
  18108.    
  18109.  
  18110.  
  18111.  <div class="price__current price__current--emphasize " data-price-container>
  18112.  
  18113.    
  18114.  
  18115.    
  18116.      
  18117.      
  18118.      <span class="money" data-price>
  18119.        $56.99
  18120.      </span>
  18121.    
  18122.    
  18123.  </div>
  18124.  
  18125.  
  18126.    
  18127.    <div class="price__current--hidden" data-current-price-range-hidden>
  18128.      
  18129.        <span class="money price__current--min" data-price-min>$56.99</span>
  18130.        -
  18131.        <span class="money price__current--max" data-price-max>$56.99</span>
  18132.      
  18133.    </div>
  18134.    <div class="price__current--hidden" data-current-price-hidden>
  18135.      <span class="visually-hidden">Current price</span>
  18136.      <span class="money" data-price>
  18137.        $56.99
  18138.      </span>
  18139.    </div>
  18140.  
  18141.  
  18142.  
  18143.    
  18144.    
  18145.    
  18146.    
  18147.  
  18148.    <div
  18149.      class="
  18150.        productitem__unit-price
  18151.        hidden
  18152.      "
  18153.      data-unit-price
  18154.    >
  18155.      <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>
  18156.    </div>
  18157.  
  18158.  
  18159.  
  18160. </div>
  18161.  
  18162.  
  18163.        
  18164.  
  18165.        <h2 class="productitem--title">
  18166.          <a href="/products/55-r4f02-002-acer-aspire-5742z-usb-board" data-product-page-link>
  18167.            Acer Aspire 5742Z USB Board 55.R4F02.002
  18168.          </a>
  18169.        </h2>
  18170.  
  18171.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18172.        <div class="star_container 4605263622"></div>
  18173.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18174.  
  18175.        
  18176.          
  18177.            <span class="productitem--vendor">
  18178.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18179.            </span>
  18180.          
  18181.        
  18182.  
  18183.        
  18184.  
  18185.        
  18186.          
  18187.            <div class="productitem__stock-level">
  18188.              <!--
  18189.  
  18190.  
  18191.  
  18192.  
  18193.  
  18194.  
  18195.  
  18196. <div class="product-stock-level-wrapper" >
  18197.  
  18198.    <span class="
  18199.  product-stock-level
  18200.  product-stock-level--continue-selling
  18201.  
  18202. ">
  18203.      
  18204.  
  18205.      <span class="product-stock-level__text">
  18206.        
  18207.        <div class="product-stock-level__badge-text">
  18208.          
  18209.  
  18210.    In stock
  18211.  
  18212.  
  18213.        </div>
  18214.      </span>
  18215.    </span>
  18216.  
  18217. </div>
  18218. -->
  18219.              
  18220.  
  18221.  
  18222.    
  18223.      <b style="color:green">In stock</b>
  18224.    
  18225.  
  18226.  
  18227.  
  18228.  
  18229.  
  18230.  
  18231.  
  18232.            </div>
  18233.          
  18234.  
  18235.          
  18236.            
  18237.          
  18238.        
  18239.  
  18240.        
  18241.          <div class="productitem--description">
  18242.            <p>55.R4F02.002 Acer Aspire 5742Z USB Board - Pulled from working laptops
  18243. Compatible Models:
  18244. Aspire 5252, 5333, 5336, 5552, 5733, 5736, 5742
  18245. Gateway N...</p>
  18246.  
  18247.            
  18248.              <a
  18249.                href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18250.                class="productitem--link"
  18251.                data-product-page-link
  18252.              >
  18253.                View full details
  18254.              </a>
  18255.            
  18256.          </div>
  18257.        
  18258.      </div>
  18259.  
  18260.      
  18261.        
  18262.          
  18263.          
  18264.          
  18265.  
  18266.          
  18267.          
  18268.  
  18269.          
  18270.  
  18271.          
  18272.  
  18273.          <div class="productitem--actions" data-product-actions>
  18274.            <div class="productitem--listview-price">
  18275.              
  18276.  
  18277.  
  18278.  
  18279.  
  18280.  
  18281.  
  18282.  
  18283.  
  18284.  
  18285.  
  18286.  
  18287.  
  18288.  
  18289.  
  18290.  
  18291.  
  18292.  
  18293.  
  18294.  
  18295.  
  18296.  
  18297.  
  18298.  
  18299.  
  18300.  
  18301.  
  18302.  
  18303.  
  18304.  
  18305.  
  18306. <div class="price productitem__price ">
  18307.  
  18308.    <div
  18309.      class="price__compare-at visible"
  18310.      data-price-compare-container
  18311.    >
  18312.  
  18313.      
  18314.        <span class="money price__original" data-price-original></span>
  18315.      
  18316.    </div>
  18317.  
  18318.  
  18319.    
  18320.      
  18321.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18322.        
  18323.          <span class="visually-hidden">Original price</span>
  18324.          <span class="money price__compare-at--min" data-price-compare-min>
  18325.            $56.99
  18326.          </span>
  18327.          -
  18328.          <span class="visually-hidden">Original price</span>
  18329.          <span class="money price__compare-at--max" data-price-compare-max>
  18330.            $56.99
  18331.          </span>
  18332.        
  18333.      </div>
  18334.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18335.        <span class="visually-hidden">Original price</span>
  18336.        <span class="money price__compare-at--single" data-price-compare>
  18337.          
  18338.        </span>
  18339.      </div>
  18340.    
  18341.  
  18342.  
  18343.  <div class="price__current price__current--emphasize " data-price-container>
  18344.  
  18345.    
  18346.  
  18347.    
  18348.      
  18349.      
  18350.      <span class="money" data-price>
  18351.        $56.99
  18352.      </span>
  18353.    
  18354.    
  18355.  </div>
  18356.  
  18357.  
  18358.    
  18359.    <div class="price__current--hidden" data-current-price-range-hidden>
  18360.      
  18361.        <span class="money price__current--min" data-price-min>$56.99</span>
  18362.        -
  18363.        <span class="money price__current--max" data-price-max>$56.99</span>
  18364.      
  18365.    </div>
  18366.    <div class="price__current--hidden" data-current-price-hidden>
  18367.      <span class="visually-hidden">Current price</span>
  18368.      <span class="money" data-price>
  18369.        $56.99
  18370.      </span>
  18371.    </div>
  18372.  
  18373.  
  18374.  
  18375.    
  18376.    
  18377.    
  18378.    
  18379.  
  18380.    <div
  18381.      class="
  18382.        productitem__unit-price
  18383.        hidden
  18384.      "
  18385.      data-unit-price
  18386.    >
  18387.      <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>
  18388.    </div>
  18389.  
  18390.  
  18391.  
  18392. </div>
  18393.  
  18394.  
  18395.            </div>
  18396.  
  18397.            <div class="productitem--listview-badge">
  18398.              
  18399.  
  18400.  
  18401.  
  18402.  
  18403.  
  18404.  
  18405.  
  18406.  
  18407.  
  18408.  
  18409.  
  18410.  
  18411.  
  18412.  
  18413.  
  18414.  
  18415.  
  18416.  
  18417.  
  18418.  
  18419.  
  18420.  
  18421.  
  18422.  
  18423.  
  18424.  
  18425.  
  18426.            </div>
  18427.  
  18428.            
  18429.              <div
  18430.                class="
  18431.                  productitem--action
  18432.                  quickshop-button
  18433.                  
  18434.                "
  18435.              >
  18436.                <button
  18437.                  class="productitem--action-trigger button-secondary"
  18438.                  data-quickshop-full
  18439.                  
  18440.                  
  18441.                  type="button"
  18442.                >
  18443.                  Quick shop
  18444.                </button>
  18445.              </div>
  18446.            
  18447.  
  18448.            
  18449.              <div
  18450.                class="
  18451.                  productitem--action
  18452.                  atc--button
  18453.                  
  18454.                "
  18455.              >
  18456.                <button
  18457.                  class="productitem--action-trigger productitem--action-atc button-primary"
  18458.                  type="button"
  18459.                  aria-label="Add to cart"
  18460.                  
  18461.                    data-quick-buy
  18462.                  
  18463.                  data-variant-id="15084894150"
  18464.                  
  18465.                >
  18466.                  <span class="atc-button--text">
  18467.                    Add to cart
  18468.                  </span>
  18469.                  <span class="atc-button--icon"><svg
  18470.  aria-hidden="true"
  18471.  focusable="false"
  18472.  role="presentation"
  18473.  width="26"
  18474.  height="26"
  18475.  viewBox="0 0 26 26"
  18476.  xmlns="http://www.w3.org/2000/svg"
  18477. >
  18478.  <g fill-rule="nonzero" fill="currentColor">
  18479.    <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"/>
  18480.  </g>
  18481. </svg></span>
  18482.                </button>
  18483.              </div>
  18484.            
  18485.          </div>
  18486.        
  18487.      
  18488.    </div>
  18489.  </div>
  18490.  
  18491.  
  18492.    <script type="application/json" data-quick-buy-settings>
  18493.      {
  18494.        "cart_redirection": true,
  18495.        "money_format": "${{amount}}"
  18496.      }
  18497.    </script>
  18498.  
  18499. </li>
  18500.    
  18501.      
  18502.  
  18503.  
  18504.  
  18505.  
  18506.  
  18507.  
  18508.  
  18509.  
  18510.  
  18511.  
  18512.  
  18513.  
  18514.  
  18515.  
  18516.  
  18517.  
  18518.  
  18519.  
  18520.  
  18521.  
  18522.  
  18523.  
  18524.  
  18525.  
  18526.  
  18527.  
  18528.  
  18529.  
  18530.  
  18531.  
  18532.  
  18533.  
  18534.    
  18535.  
  18536.  
  18537.  
  18538. <li
  18539.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  18540.  data-product-item
  18541.  data-product-quickshop-url="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18542.  
  18543. >
  18544.  <div class="productitem" data-product-item-content>
  18545.    
  18546.    
  18547.    
  18548.    
  18549.  
  18550.    
  18551.  
  18552.    
  18553.  
  18554.    <div class="productitem__container">
  18555.      
  18556.  
  18557.      <div class="productitem__image-container">
  18558.        <a target="_blank"
  18559.          class="productitem--image-link"
  18560.          href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18561.          aria-label="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18562.          tabindex="-1"
  18563.          data-product-page-link
  18564.        >
  18565.          <figure
  18566.            class="productitem--image"
  18567.            data-product-item-image
  18568.            
  18569.              style="--product-grid-item-image-aspect-ratio: 1.3333333333333333;"
  18570.            
  18571.          >
  18572.            
  18573.              
  18574.              
  18575.  
  18576.  
  18577.    <noscript data-rimg-noscript>
  18578.      <img loading="lazy"
  18579.        
  18580.          src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18581.        
  18582.  
  18583.        alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18584.        data-rimg="noscript"
  18585.        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"
  18586.        class="productitem--image-primary"
  18587.        
  18588.        
  18589.      >
  18590.    </noscript>
  18591.  
  18592.  
  18593.  <img loading="lazy"
  18594.    
  18595.      src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18596.    
  18597.    alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18598.  
  18599.    
  18600.      data-rimg="lazy"
  18601.      data-rimg-scale="1"
  18602.      data-rimg-template="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_{size}.jpg?v=1729362531"
  18603.      data-rimg-max="1500x1125"
  18604.      data-rimg-crop="false"
  18605.      
  18606.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='384'></svg>"
  18607.    
  18608.  
  18609.    class="productitem--image-primary"
  18610.    
  18611.    
  18612.  >
  18613.  
  18614.  
  18615.  
  18616.  <div data-rimg-canvas></div>
  18617.  
  18618.  
  18619.            
  18620.  
  18621.            
  18622.  
  18623.  
  18624.  
  18625.  
  18626.  
  18627.  
  18628.  
  18629.  
  18630.  
  18631.  
  18632.  
  18633.  
  18634.  
  18635.  
  18636.  
  18637.  
  18638.  
  18639.  
  18640.  
  18641.  
  18642.  
  18643.  
  18644.  
  18645.  
  18646.  
  18647.  
  18648.  
  18649.          </figure>
  18650.        </a>
  18651.      </div><div class="productitem--info">
  18652.        
  18653.          
  18654.  
  18655.        
  18656.  
  18657.        
  18658.          
  18659.  
  18660.  
  18661.  
  18662.  
  18663.  
  18664.  
  18665.  
  18666.  
  18667.  
  18668.  
  18669.  
  18670.  
  18671.  
  18672.  
  18673.  
  18674.  
  18675.  
  18676.  
  18677.  
  18678.  
  18679.  
  18680.  
  18681.  
  18682.  
  18683.  
  18684.  
  18685.  
  18686.  
  18687.  
  18688.  
  18689. <div class="price productitem__price ">
  18690.  
  18691.    <div
  18692.      class="price__compare-at visible"
  18693.      data-price-compare-container
  18694.    >
  18695.  
  18696.      
  18697.        <span class="money price__original" data-price-original></span>
  18698.      
  18699.    </div>
  18700.  
  18701.  
  18702.    
  18703.      
  18704.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18705.        
  18706.          <span class="visually-hidden">Original price</span>
  18707.          <span class="money price__compare-at--min" data-price-compare-min>
  18708.            $56.99
  18709.          </span>
  18710.          -
  18711.          <span class="visually-hidden">Original price</span>
  18712.          <span class="money price__compare-at--max" data-price-compare-max>
  18713.            $56.99
  18714.          </span>
  18715.        
  18716.      </div>
  18717.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18718.        <span class="visually-hidden">Original price</span>
  18719.        <span class="money price__compare-at--single" data-price-compare>
  18720.          
  18721.        </span>
  18722.      </div>
  18723.    
  18724.  
  18725.  
  18726.  <div class="price__current price__current--emphasize " data-price-container>
  18727.  
  18728.    
  18729.  
  18730.    
  18731.      
  18732.      
  18733.      <span class="money" data-price>
  18734.        $56.99
  18735.      </span>
  18736.    
  18737.    
  18738.  </div>
  18739.  
  18740.  
  18741.    
  18742.    <div class="price__current--hidden" data-current-price-range-hidden>
  18743.      
  18744.        <span class="money price__current--min" data-price-min>$56.99</span>
  18745.        -
  18746.        <span class="money price__current--max" data-price-max>$56.99</span>
  18747.      
  18748.    </div>
  18749.    <div class="price__current--hidden" data-current-price-hidden>
  18750.      <span class="visually-hidden">Current price</span>
  18751.      <span class="money" data-price>
  18752.        $56.99
  18753.      </span>
  18754.    </div>
  18755.  
  18756.  
  18757.  
  18758.    
  18759.    
  18760.    
  18761.    
  18762.  
  18763.    <div
  18764.      class="
  18765.        productitem__unit-price
  18766.        hidden
  18767.      "
  18768.      data-unit-price
  18769.    >
  18770.      <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>
  18771.    </div>
  18772.  
  18773.  
  18774.  
  18775. </div>
  18776.  
  18777.  
  18778.        
  18779.  
  18780.        <h2 class="productitem--title">
  18781.          <a href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1" data-product-page-link>
  18782.            Acer Aspire 7 A715-72 A715-72G A717-72 A717-72G Laptop Cpu Fan 23.GXBN2.001
  18783.          </a>
  18784.        </h2>
  18785.  
  18786.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18787.        <div class="star_container 3929786187863"></div>
  18788.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18789.  
  18790.        
  18791.          
  18792.            <span class="productitem--vendor">
  18793.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18794.            </span>
  18795.          
  18796.        
  18797.  
  18798.        
  18799.  
  18800.        
  18801.          
  18802.            <div class="productitem__stock-level">
  18803.              <!--
  18804.  
  18805.  
  18806.  
  18807.  
  18808.  
  18809.  
  18810.  
  18811. <div class="product-stock-level-wrapper" >
  18812.  
  18813.    <span class="
  18814.  product-stock-level
  18815.  product-stock-level--continue-selling
  18816.  
  18817. ">
  18818.      
  18819.  
  18820.      <span class="product-stock-level__text">
  18821.        
  18822.        <div class="product-stock-level__badge-text">
  18823.          
  18824.  
  18825.    In stock
  18826.  
  18827.  
  18828.        </div>
  18829.      </span>
  18830.    </span>
  18831.  
  18832. </div>
  18833. -->
  18834.              
  18835.  
  18836.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  18837.  
  18838.  
  18839.  
  18840.  
  18841.  
  18842.  
  18843.  
  18844.            </div>
  18845.          
  18846.  
  18847.          
  18848.            
  18849.          
  18850.        
  18851.  
  18852.        
  18853.          <div class="productitem--description">
  18854.            <p>
  18855. Description: New Acer laptop cpu fan.
  18856.  
  18857. Compatible Part #'s: 23.GXBN2.001
  18858.  
  18859. Compatible Models:
  18860. Acer Aspire 7 A715-72, A715-72G
  18861. Acer Aspire 7 A717-7...</p>
  18862.  
  18863.            
  18864.              <a
  18865.                href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18866.                class="productitem--link"
  18867.                data-product-page-link
  18868.              >
  18869.                View full details
  18870.              </a>
  18871.            
  18872.          </div>
  18873.        
  18874.      </div>
  18875.  
  18876.      
  18877.        
  18878.          
  18879.          
  18880.          
  18881.  
  18882.          
  18883.          
  18884.  
  18885.          
  18886.  
  18887.          
  18888.  
  18889.          <div class="productitem--actions" data-product-actions>
  18890.            <div class="productitem--listview-price">
  18891.              
  18892.  
  18893.  
  18894.  
  18895.  
  18896.  
  18897.  
  18898.  
  18899.  
  18900.  
  18901.  
  18902.  
  18903.  
  18904.  
  18905.  
  18906.  
  18907.  
  18908.  
  18909.  
  18910.  
  18911.  
  18912.  
  18913.  
  18914.  
  18915.  
  18916.  
  18917.  
  18918.  
  18919.  
  18920.  
  18921.  
  18922. <div class="price productitem__price ">
  18923.  
  18924.    <div
  18925.      class="price__compare-at visible"
  18926.      data-price-compare-container
  18927.    >
  18928.  
  18929.      
  18930.        <span class="money price__original" data-price-original></span>
  18931.      
  18932.    </div>
  18933.  
  18934.  
  18935.    
  18936.      
  18937.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18938.        
  18939.          <span class="visually-hidden">Original price</span>
  18940.          <span class="money price__compare-at--min" data-price-compare-min>
  18941.            $56.99
  18942.          </span>
  18943.          -
  18944.          <span class="visually-hidden">Original price</span>
  18945.          <span class="money price__compare-at--max" data-price-compare-max>
  18946.            $56.99
  18947.          </span>
  18948.        
  18949.      </div>
  18950.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18951.        <span class="visually-hidden">Original price</span>
  18952.        <span class="money price__compare-at--single" data-price-compare>
  18953.          
  18954.        </span>
  18955.      </div>
  18956.    
  18957.  
  18958.  
  18959.  <div class="price__current price__current--emphasize " data-price-container>
  18960.  
  18961.    
  18962.  
  18963.    
  18964.      
  18965.      
  18966.      <span class="money" data-price>
  18967.        $56.99
  18968.      </span>
  18969.    
  18970.    
  18971.  </div>
  18972.  
  18973.  
  18974.    
  18975.    <div class="price__current--hidden" data-current-price-range-hidden>
  18976.      
  18977.        <span class="money price__current--min" data-price-min>$56.99</span>
  18978.        -
  18979.        <span class="money price__current--max" data-price-max>$56.99</span>
  18980.      
  18981.    </div>
  18982.    <div class="price__current--hidden" data-current-price-hidden>
  18983.      <span class="visually-hidden">Current price</span>
  18984.      <span class="money" data-price>
  18985.        $56.99
  18986.      </span>
  18987.    </div>
  18988.  
  18989.  
  18990.  
  18991.    
  18992.    
  18993.    
  18994.    
  18995.  
  18996.    <div
  18997.      class="
  18998.        productitem__unit-price
  18999.        hidden
  19000.      "
  19001.      data-unit-price
  19002.    >
  19003.      <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>
  19004.    </div>
  19005.  
  19006.  
  19007.  
  19008. </div>
  19009.  
  19010.  
  19011.            </div>
  19012.  
  19013.            <div class="productitem--listview-badge">
  19014.              
  19015.  
  19016.  
  19017.  
  19018.  
  19019.  
  19020.  
  19021.  
  19022.  
  19023.  
  19024.  
  19025.  
  19026.  
  19027.  
  19028.  
  19029.  
  19030.  
  19031.  
  19032.  
  19033.  
  19034.  
  19035.  
  19036.  
  19037.  
  19038.  
  19039.  
  19040.  
  19041.  
  19042.            </div>
  19043.  
  19044.            
  19045.              <div
  19046.                class="
  19047.                  productitem--action
  19048.                  quickshop-button
  19049.                  
  19050.                "
  19051.              >
  19052.                <button
  19053.                  class="productitem--action-trigger button-secondary"
  19054.                  data-quickshop-full
  19055.                  
  19056.                  
  19057.                  type="button"
  19058.                >
  19059.                  Quick shop
  19060.                </button>
  19061.              </div>
  19062.            
  19063.  
  19064.            
  19065.              <div
  19066.                class="
  19067.                  productitem--action
  19068.                  atc--button
  19069.                  
  19070.                "
  19071.              >
  19072.                <button
  19073.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19074.                  type="button"
  19075.                  aria-label="Add to cart"
  19076.                  
  19077.                    data-quick-buy
  19078.                  
  19079.                  data-variant-id="29440907575383"
  19080.                  
  19081.                >
  19082.                  <span class="atc-button--text">
  19083.                    Add to cart
  19084.                  </span>
  19085.                  <span class="atc-button--icon"><svg
  19086.  aria-hidden="true"
  19087.  focusable="false"
  19088.  role="presentation"
  19089.  width="26"
  19090.  height="26"
  19091.  viewBox="0 0 26 26"
  19092.  xmlns="http://www.w3.org/2000/svg"
  19093. >
  19094.  <g fill-rule="nonzero" fill="currentColor">
  19095.    <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"/>
  19096.  </g>
  19097. </svg></span>
  19098.                </button>
  19099.              </div>
  19100.            
  19101.          </div>
  19102.        
  19103.      
  19104.    </div>
  19105.  </div>
  19106.  
  19107.  
  19108.    <script type="application/json" data-quick-buy-settings>
  19109.      {
  19110.        "cart_redirection": true,
  19111.        "money_format": "${{amount}}"
  19112.      }
  19113.    </script>
  19114.  
  19115. </li>
  19116.    
  19117.      
  19118.  
  19119.  
  19120.  
  19121.  
  19122.  
  19123.  
  19124.  
  19125.  
  19126.  
  19127.  
  19128.  
  19129.  
  19130.  
  19131.  
  19132.  
  19133.  
  19134.  
  19135.  
  19136.  
  19137.  
  19138.  
  19139.  
  19140.  
  19141.  
  19142.  
  19143.  
  19144.  
  19145.  
  19146.  
  19147.  
  19148.  
  19149.  
  19150.    
  19151.  
  19152.  
  19153.  
  19154. <li
  19155.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  19156.  data-product-item
  19157.  data-product-quickshop-url="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19158.  
  19159. >
  19160.  <div class="productitem" data-product-item-content>
  19161.    
  19162.    
  19163.    
  19164.    
  19165.  
  19166.    
  19167.  
  19168.    
  19169.  
  19170.    <div class="productitem__container">
  19171.      
  19172.  
  19173.      <div class="productitem__image-container">
  19174.        <a target="_blank"
  19175.          class="productitem--image-link"
  19176.          href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19177.          aria-label="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19178.          tabindex="-1"
  19179.          data-product-page-link
  19180.        >
  19181.          <figure
  19182.            class="productitem--image"
  19183.            data-product-item-image
  19184.            
  19185.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  19186.            
  19187.          >
  19188.            
  19189.              
  19190.              
  19191.  
  19192.  
  19193.    <noscript data-rimg-noscript>
  19194.      <img loading="lazy"
  19195.        
  19196.          src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19197.        
  19198.  
  19199.        alt=""
  19200.        data-rimg="noscript"
  19201.        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"
  19202.        class="productitem--image-primary"
  19203.        
  19204.        
  19205.      >
  19206.    </noscript>
  19207.  
  19208.  
  19209.  <img loading="lazy"
  19210.    
  19211.      src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19212.    
  19213.    alt=""
  19214.  
  19215.    
  19216.      data-rimg="lazy"
  19217.      data-rimg-scale="1"
  19218.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_{size}.jpg?v=1697125259"
  19219.      data-rimg-max="2048x2048"
  19220.      data-rimg-crop="false"
  19221.      
  19222.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  19223.    
  19224.  
  19225.    class="productitem--image-primary"
  19226.    
  19227.    
  19228.  >
  19229.  
  19230.  
  19231.  
  19232.  <div data-rimg-canvas></div>
  19233.  
  19234.  
  19235.            
  19236.  
  19237.            
  19238.  
  19239.  
  19240.  
  19241.  
  19242.  
  19243.  
  19244.  
  19245.  
  19246.  
  19247.  
  19248.  
  19249.  
  19250.  
  19251.  
  19252.  
  19253.  
  19254.  
  19255.  
  19256.  
  19257.  
  19258.  
  19259.  
  19260.  
  19261.  
  19262.  
  19263.  
  19264.  
  19265.          </figure>
  19266.        </a>
  19267.      </div><div class="productitem--info">
  19268.        
  19269.          
  19270.  
  19271.        
  19272.  
  19273.        
  19274.          
  19275.  
  19276.  
  19277.  
  19278.  
  19279.  
  19280.  
  19281.  
  19282.  
  19283.  
  19284.  
  19285.  
  19286.  
  19287.  
  19288.  
  19289.  
  19290.  
  19291.  
  19292.  
  19293.  
  19294.  
  19295.  
  19296.  
  19297.  
  19298.  
  19299.  
  19300.  
  19301.  
  19302.  
  19303.  
  19304.  
  19305. <div class="price productitem__price ">
  19306.  
  19307.    <div
  19308.      class="price__compare-at visible"
  19309.      data-price-compare-container
  19310.    >
  19311.  
  19312.      
  19313.        <span class="money price__original" data-price-original></span>
  19314.      
  19315.    </div>
  19316.  
  19317.  
  19318.    
  19319.      
  19320.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19321.        
  19322.          <span class="visually-hidden">Original price</span>
  19323.          <span class="money price__compare-at--min" data-price-compare-min>
  19324.            $64.99
  19325.          </span>
  19326.          -
  19327.          <span class="visually-hidden">Original price</span>
  19328.          <span class="money price__compare-at--max" data-price-compare-max>
  19329.            $64.99
  19330.          </span>
  19331.        
  19332.      </div>
  19333.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19334.        <span class="visually-hidden">Original price</span>
  19335.        <span class="money price__compare-at--single" data-price-compare>
  19336.          
  19337.        </span>
  19338.      </div>
  19339.    
  19340.  
  19341.  
  19342.  <div class="price__current price__current--emphasize " data-price-container>
  19343.  
  19344.    
  19345.  
  19346.    
  19347.      
  19348.      
  19349.      <span class="money" data-price>
  19350.        $64.99
  19351.      </span>
  19352.    
  19353.    
  19354.  </div>
  19355.  
  19356.  
  19357.    
  19358.    <div class="price__current--hidden" data-current-price-range-hidden>
  19359.      
  19360.        <span class="money price__current--min" data-price-min>$64.99</span>
  19361.        -
  19362.        <span class="money price__current--max" data-price-max>$64.99</span>
  19363.      
  19364.    </div>
  19365.    <div class="price__current--hidden" data-current-price-hidden>
  19366.      <span class="visually-hidden">Current price</span>
  19367.      <span class="money" data-price>
  19368.        $64.99
  19369.      </span>
  19370.    </div>
  19371.  
  19372.  
  19373.  
  19374.    
  19375.    
  19376.    
  19377.    
  19378.  
  19379.    <div
  19380.      class="
  19381.        productitem__unit-price
  19382.        hidden
  19383.      "
  19384.      data-unit-price
  19385.    >
  19386.      <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>
  19387.    </div>
  19388.  
  19389.  
  19390.  
  19391. </div>
  19392.  
  19393.  
  19394.        
  19395.  
  19396.        <h2 class="productitem--title">
  19397.          <a href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001" data-product-page-link>
  19398.            Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001
  19399.          </a>
  19400.        </h2>
  19401.  
  19402.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  19403.        <div class="star_container 3929790414935"></div>
  19404.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  19405.  
  19406.        
  19407.          
  19408.            <span class="productitem--vendor">
  19409.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  19410.            </span>
  19411.          
  19412.        
  19413.  
  19414.        
  19415.  
  19416.        
  19417.          
  19418.            <div class="productitem__stock-level">
  19419.              <!--
  19420.  
  19421.  
  19422.  
  19423.  
  19424.  
  19425.  
  19426.  
  19427. <div class="product-stock-level-wrapper" >
  19428.  
  19429.    <span class="
  19430.  product-stock-level
  19431.  product-stock-level--continue-selling
  19432.  
  19433. ">
  19434.      
  19435.  
  19436.      <span class="product-stock-level__text">
  19437.        
  19438.        <div class="product-stock-level__badge-text">
  19439.          
  19440.  
  19441.    In stock
  19442.  
  19443.  
  19444.        </div>
  19445.      </span>
  19446.    </span>
  19447.  
  19448. </div>
  19449. -->
  19450.              
  19451.  
  19452.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  19453.  
  19454.  
  19455.  
  19456.  
  19457.  
  19458.  
  19459.  
  19460.            </div>
  19461.          
  19462.  
  19463.          
  19464.            
  19465.          
  19466.        
  19467.  
  19468.        
  19469.          <div class="productitem--description">
  19470.            <p>
  19471. Description: New genuine Acer laptop dc jack cable. 45 watt version.
  19472.  
  19473. Compatible Part #'s: 50.GNSN7.001
  19474.  
  19475. Compatible Models:
  19476. Acer Aspire 1 A114-31
  19477. ...</p>
  19478.  
  19479.            
  19480.              <a
  19481.                href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19482.                class="productitem--link"
  19483.                data-product-page-link
  19484.              >
  19485.                View full details
  19486.              </a>
  19487.            
  19488.          </div>
  19489.        
  19490.      </div>
  19491.  
  19492.      
  19493.        
  19494.          
  19495.          
  19496.          
  19497.  
  19498.          
  19499.          
  19500.  
  19501.          
  19502.  
  19503.          
  19504.  
  19505.          <div class="productitem--actions" data-product-actions>
  19506.            <div class="productitem--listview-price">
  19507.              
  19508.  
  19509.  
  19510.  
  19511.  
  19512.  
  19513.  
  19514.  
  19515.  
  19516.  
  19517.  
  19518.  
  19519.  
  19520.  
  19521.  
  19522.  
  19523.  
  19524.  
  19525.  
  19526.  
  19527.  
  19528.  
  19529.  
  19530.  
  19531.  
  19532.  
  19533.  
  19534.  
  19535.  
  19536.  
  19537.  
  19538. <div class="price productitem__price ">
  19539.  
  19540.    <div
  19541.      class="price__compare-at visible"
  19542.      data-price-compare-container
  19543.    >
  19544.  
  19545.      
  19546.        <span class="money price__original" data-price-original></span>
  19547.      
  19548.    </div>
  19549.  
  19550.  
  19551.    
  19552.      
  19553.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19554.        
  19555.          <span class="visually-hidden">Original price</span>
  19556.          <span class="money price__compare-at--min" data-price-compare-min>
  19557.            $64.99
  19558.          </span>
  19559.          -
  19560.          <span class="visually-hidden">Original price</span>
  19561.          <span class="money price__compare-at--max" data-price-compare-max>
  19562.            $64.99
  19563.          </span>
  19564.        
  19565.      </div>
  19566.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19567.        <span class="visually-hidden">Original price</span>
  19568.        <span class="money price__compare-at--single" data-price-compare>
  19569.          
  19570.        </span>
  19571.      </div>
  19572.    
  19573.  
  19574.  
  19575.  <div class="price__current price__current--emphasize " data-price-container>
  19576.  
  19577.    
  19578.  
  19579.    
  19580.      
  19581.      
  19582.      <span class="money" data-price>
  19583.        $64.99
  19584.      </span>
  19585.    
  19586.    
  19587.  </div>
  19588.  
  19589.  
  19590.    
  19591.    <div class="price__current--hidden" data-current-price-range-hidden>
  19592.      
  19593.        <span class="money price__current--min" data-price-min>$64.99</span>
  19594.        -
  19595.        <span class="money price__current--max" data-price-max>$64.99</span>
  19596.      
  19597.    </div>
  19598.    <div class="price__current--hidden" data-current-price-hidden>
  19599.      <span class="visually-hidden">Current price</span>
  19600.      <span class="money" data-price>
  19601.        $64.99
  19602.      </span>
  19603.    </div>
  19604.  
  19605.  
  19606.  
  19607.    
  19608.    
  19609.    
  19610.    
  19611.  
  19612.    <div
  19613.      class="
  19614.        productitem__unit-price
  19615.        hidden
  19616.      "
  19617.      data-unit-price
  19618.    >
  19619.      <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>
  19620.    </div>
  19621.  
  19622.  
  19623.  
  19624. </div>
  19625.  
  19626.  
  19627.            </div>
  19628.  
  19629.            <div class="productitem--listview-badge">
  19630.              
  19631.  
  19632.  
  19633.  
  19634.  
  19635.  
  19636.  
  19637.  
  19638.  
  19639.  
  19640.  
  19641.  
  19642.  
  19643.  
  19644.  
  19645.  
  19646.  
  19647.  
  19648.  
  19649.  
  19650.  
  19651.  
  19652.  
  19653.  
  19654.  
  19655.  
  19656.  
  19657.  
  19658.            </div>
  19659.  
  19660.            
  19661.              <div
  19662.                class="
  19663.                  productitem--action
  19664.                  quickshop-button
  19665.                  
  19666.                "
  19667.              >
  19668.                <button
  19669.                  class="productitem--action-trigger button-secondary"
  19670.                  data-quickshop-full
  19671.                  
  19672.                  
  19673.                  type="button"
  19674.                >
  19675.                  Quick shop
  19676.                </button>
  19677.              </div>
  19678.            
  19679.  
  19680.            
  19681.              <div
  19682.                class="
  19683.                  productitem--action
  19684.                  atc--button
  19685.                  
  19686.                "
  19687.              >
  19688.                <button
  19689.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19690.                  type="button"
  19691.                  aria-label="Add to cart"
  19692.                  
  19693.                    data-quick-buy
  19694.                  
  19695.                  data-variant-id="29408090816599"
  19696.                  
  19697.                >
  19698.                  <span class="atc-button--text">
  19699.                    Add to cart
  19700.                  </span>
  19701.                  <span class="atc-button--icon"><svg
  19702.  aria-hidden="true"
  19703.  focusable="false"
  19704.  role="presentation"
  19705.  width="26"
  19706.  height="26"
  19707.  viewBox="0 0 26 26"
  19708.  xmlns="http://www.w3.org/2000/svg"
  19709. >
  19710.  <g fill-rule="nonzero" fill="currentColor">
  19711.    <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"/>
  19712.  </g>
  19713. </svg></span>
  19714.                </button>
  19715.              </div>
  19716.            
  19717.          </div>
  19718.        
  19719.      
  19720.    </div>
  19721.  </div>
  19722.  
  19723.  
  19724.    <script type="application/json" data-quick-buy-settings>
  19725.      {
  19726.        "cart_redirection": true,
  19727.        "money_format": "${{amount}}"
  19728.      }
  19729.    </script>
  19730.  
  19731. </li>
  19732.    
  19733.  
  19734.    
  19735.  </ul>
  19736.  
  19737.  
  19738.    
  19739.      <a
  19740.        class="
  19741.          button-primary
  19742.          featured-collection__button
  19743.        "
  19744.        href="/collections/shop-the-best-selling"
  19745.      >
  19746.        View All
  19747.      </a>
  19748.    
  19749.  
  19750. </section>
  19751.  
  19752.  
  19753. <div class="productitem-quickshop" data-product-quickshop>
  19754.  <span class="quickshop-spinner"><svg
  19755.  aria-hidden="true"
  19756.  focusable="false"
  19757.  role="presentation"
  19758.  width="26"
  19759.  height="26"
  19760.  viewBox="0 0 26 26"
  19761.  xmlns="http://www.w3.org/2000/svg"
  19762. >
  19763.  <g fill-rule="nonzero" fill="currentColor">
  19764.    <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"/>
  19765.  </g>
  19766. </svg></span>
  19767. </div>
  19768.  
  19769.  
  19770. </div><div id="shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114" class="shopify-section slideshow--section">
  19771.  
  19772.  
  19773.  
  19774. <script type="application/pxs-animation-mapping+json">
  19775.  {
  19776.    "blocks": [".slideshow-slide"],
  19777.    "elements": [
  19778.      ".slideshow-slide__heading",
  19779.      ".slideshow-slide__subheading",
  19780.      ".slideshow-slide__text",
  19781.      ".slideshow-slide__button"
  19782.    ]
  19783.  }
  19784. </script>
  19785.  
  19786. <style data-shopify>
  19787.  #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 {
  19788.    --autoplay-interval: 5s;
  19789.  }
  19790.  
  19791.  
  19792.    @media screen and (min-width: 720px) {
  19793.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19794.        height: vw;
  19795.      }
  19796.    }
  19797.  
  19798.  
  19799.  
  19800.    @media screen and (max-width: 719px) {
  19801.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19802.        
  19803.          height: vw;
  19804.        
  19805.      }
  19806.    }
  19807.  
  19808. </style>
  19809.  
  19810.  
  19811.  
  19812.  
  19813. <script
  19814.  type="application/json"
  19815.  data-section-type="pxs-slideshow"
  19816.  data-section-id="template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114"
  19817.  data-section-data
  19818. >
  19819.  {
  19820.    "enable_autoplay": true,
  19821.    "autoplay_interval": 5,
  19822.    "mobile_navigation_adjust": true,
  19823.    "transition_fade": null,
  19824.    "slide_attraction": null,
  19825.    "slide_friction": null,
  19826.    "next_text": "Next slide",
  19827.    "previous_text": "Previous slide"
  19828.  }
  19829. </script>
  19830.  
  19831. <section
  19832.  class="
  19833.    slideshow
  19834.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  19835.  "
  19836.  aria-label="Slideshow"
  19837.  data-autoplay="true"
  19838.  data-autoplay-interval="5"
  19839.  data-banner="false"
  19840.  data-slideshow
  19841. ><div
  19842.    class="slideshow__wrapper "
  19843.    data-slideshow-wrapper
  19844.  ></div><div
  19845.    class="slideshow__current-slide visually-hidden"
  19846.    aria-live="polite"
  19847.    aria-atomic="true"
  19848.    data-slide-counter
  19849.    data-counter-template="Slide {{ count }} of {{ total }}"
  19850.  >
  19851.  </div>
  19852. </section>
  19853.  
  19854.  
  19855.  
  19856. </div><div id="shopify-section-template--15492296147031__516e59b8-141e-43e3-8f1d-46287735da01" class="shopify-section logolist--section"><script type="application/pxs-animation-mapping+json">
  19857.  {
  19858.    "blocks": [".logolist--inner"],
  19859.    "elements": [
  19860.      ".logolist--item"
  19861.    ]
  19862.  }
  19863. </script>
  19864.  
  19865. <section class="logolist--container">
  19866.  
  19867.    <h2 class="home-section--title">
  19868.      Search By Brands
  19869.    </h2>
  19870.  
  19871.  
  19872.  <div class="home-section--content logolist--inner">
  19873.    
  19874.      <div class="logolist--item" >
  19875.        
  19876.          <a
  19877.            class="logolist--link"
  19878.            href="/collections/acer-parts-canada"
  19879.            target="_blank"
  19880.          >
  19881.        
  19882.  
  19883.        
  19884.          
  19885.  
  19886.  
  19887.    <noscript data-rimg-noscript>
  19888.      <img loading="lazy"
  19889.        
  19890.          src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19891.        
  19892.  
  19893.        alt=""
  19894.        data-rimg="noscript"
  19895.        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"
  19896.        class="logolist--image"
  19897.        style="
  19898.        object-fit:cover;object-position:50.0% 50.0%;
  19899.      
  19900. "
  19901.        
  19902.      >
  19903.    </noscript>
  19904.  
  19905.  
  19906.  <img loading="lazy"
  19907.    
  19908.      src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19909.    
  19910.    alt=""
  19911.  
  19912.    
  19913.      data-rimg="lazy"
  19914.      data-rimg-scale="1"
  19915.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Acer_{size}.png?v=1698309818"
  19916.      data-rimg-max="1024x247"
  19917.      data-rimg-crop="false"
  19918.      
  19919.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='39'></svg>"
  19920.    
  19921.  
  19922.    class="logolist--image"
  19923.    style="
  19924.        object-fit:cover;object-position:50.0% 50.0%;
  19925.      
  19926. "
  19927.    
  19928.  >
  19929.  
  19930.  
  19931.  
  19932.  <div data-rimg-canvas></div>
  19933.  
  19934.  
  19935.        
  19936.  
  19937.        
  19938.          </a>
  19939.        
  19940.      </div>
  19941.    
  19942.      <div class="logolist--item" >
  19943.        
  19944.          <a
  19945.            class="logolist--link"
  19946.            href="/collections/dell-laptop-batteries"
  19947.            target="_blank"
  19948.          >
  19949.        
  19950.  
  19951.        
  19952.          
  19953.  
  19954.  
  19955.    <noscript data-rimg-noscript>
  19956.      <img loading="lazy"
  19957.        
  19958.          src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  19959.        
  19960.  
  19961.        alt=""
  19962.        data-rimg="noscript"
  19963.        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"
  19964.        class="logolist--image"
  19965.        style="
  19966.        object-fit:cover;object-position:50.0% 50.0%;
  19967.      
  19968. "
  19969.        
  19970.      >
  19971.    </noscript>
  19972.  
  19973.  
  19974.  <img loading="lazy"
  19975.    
  19976.      src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  19977.    
  19978.    alt=""
  19979.  
  19980.    
  19981.      data-rimg="lazy"
  19982.      data-rimg-scale="1"
  19983.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_{size}.png?v=1698309835"
  19984.      data-rimg-max="2048x2048"
  19985.      data-rimg-crop="false"
  19986.      
  19987.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  19988.    
  19989.  
  19990.    class="logolist--image"
  19991.    style="
  19992.        object-fit:cover;object-position:50.0% 50.0%;
  19993.      
  19994. "
  19995.    
  19996.  >
  19997.  
  19998.  
  19999.  
  20000.  <div data-rimg-canvas></div>
  20001.  
  20002.  
  20003.        
  20004.  
  20005.        
  20006.          </a>
  20007.        
  20008.      </div>
  20009.    
  20010.      <div class="logolist--item" >
  20011.        
  20012.          <a
  20013.            class="logolist--link"
  20014.            href="/collections/asus"
  20015.            target="_blank"
  20016.          >
  20017.        
  20018.  
  20019.        
  20020.          
  20021.  
  20022.  
  20023.    <noscript data-rimg-noscript>
  20024.      <img loading="lazy"
  20025.        
  20026.          src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20027.        
  20028.  
  20029.        alt=""
  20030.        data-rimg="noscript"
  20031.        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"
  20032.        class="logolist--image"
  20033.        style="
  20034.        object-fit:cover;object-position:50.0% 50.0%;
  20035.      
  20036. "
  20037.        
  20038.      >
  20039.    </noscript>
  20040.  
  20041.  
  20042.  <img loading="lazy"
  20043.    
  20044.      src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20045.    
  20046.    alt=""
  20047.  
  20048.    
  20049.      data-rimg="lazy"
  20050.      data-rimg-scale="1"
  20051.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Asus_{size}.png?v=1698309865"
  20052.      data-rimg-max="504x100"
  20053.      data-rimg-crop="false"
  20054.      
  20055.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='32'></svg>"
  20056.    
  20057.  
  20058.    class="logolist--image"
  20059.    style="
  20060.        object-fit:cover;object-position:50.0% 50.0%;
  20061.      
  20062. "
  20063.    
  20064.  >
  20065.  
  20066.  
  20067.  
  20068.  <div data-rimg-canvas></div>
  20069.  
  20070.  
  20071.        
  20072.  
  20073.        
  20074.          </a>
  20075.        
  20076.      </div>
  20077.    
  20078.      <div class="logolist--item" >
  20079.        
  20080.          <a
  20081.            class="logolist--link"
  20082.            href="/collections/fujitsu"
  20083.            target="_blank"
  20084.          >
  20085.        
  20086.  
  20087.        
  20088.          
  20089.  
  20090.  
  20091.    <noscript data-rimg-noscript>
  20092.      <img loading="lazy"
  20093.        
  20094.          src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20095.        
  20096.  
  20097.        alt=""
  20098.        data-rimg="noscript"
  20099.        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"
  20100.        class="logolist--image"
  20101.        style="
  20102.        object-fit:cover;object-position:50.0% 50.0%;
  20103.      
  20104. "
  20105.        
  20106.      >
  20107.    </noscript>
  20108.  
  20109.  
  20110.  <img loading="lazy"
  20111.    
  20112.      src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20113.    
  20114.    alt=""
  20115.  
  20116.    
  20117.      data-rimg="lazy"
  20118.      data-rimg-scale="1"
  20119.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_{size}.png?v=1698309977"
  20120.      data-rimg-max="1280x602"
  20121.      data-rimg-crop="false"
  20122.      
  20123.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='76'></svg>"
  20124.    
  20125.  
  20126.    class="logolist--image"
  20127.    style="
  20128.        object-fit:cover;object-position:50.0% 50.0%;
  20129.      
  20130. "
  20131.    
  20132.  >
  20133.  
  20134.  
  20135.  
  20136.  <div data-rimg-canvas></div>
  20137.  
  20138.  
  20139.        
  20140.  
  20141.        
  20142.          </a>
  20143.        
  20144.      </div>
  20145.    
  20146.      <div class="logolist--item" >
  20147.        
  20148.          <a
  20149.            class="logolist--link"
  20150.            href="/collections/samsung"
  20151.            target="_blank"
  20152.          >
  20153.        
  20154.  
  20155.        
  20156.          
  20157.  
  20158.  
  20159.    <noscript data-rimg-noscript>
  20160.      <img loading="lazy"
  20161.        
  20162.          src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20163.        
  20164.  
  20165.        alt=""
  20166.        data-rimg="noscript"
  20167.        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"
  20168.        class="logolist--image"
  20169.        style="
  20170.        object-fit:cover;object-position:50.0% 50.0%;
  20171.      
  20172. "
  20173.        
  20174.      >
  20175.    </noscript>
  20176.  
  20177.  
  20178.  <img loading="lazy"
  20179.    
  20180.      src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20181.    
  20182.    alt=""
  20183.  
  20184.    
  20185.      data-rimg="lazy"
  20186.      data-rimg-scale="1"
  20187.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_{size}.png?v=1698309930"
  20188.      data-rimg-max="7051x1080"
  20189.      data-rimg-crop="false"
  20190.      
  20191.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20192.    
  20193.  
  20194.    class="logolist--image"
  20195.    style="
  20196.        object-fit:cover;object-position:50.0% 50.0%;
  20197.      
  20198. "
  20199.    
  20200.  >
  20201.  
  20202.  
  20203.  
  20204.  <div data-rimg-canvas></div>
  20205.  
  20206.  
  20207.        
  20208.  
  20209.        
  20210.          </a>
  20211.        
  20212.      </div>
  20213.    
  20214.      <div class="logolist--item" >
  20215.        
  20216.          <a
  20217.            class="logolist--link"
  20218.            href="/collections/apple"
  20219.            target="_blank"
  20220.          >
  20221.        
  20222.  
  20223.        
  20224.          
  20225.  
  20226.  
  20227.    <noscript data-rimg-noscript>
  20228.      <img loading="lazy"
  20229.        
  20230.          src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20231.        
  20232.  
  20233.        alt=""
  20234.        data-rimg="noscript"
  20235.        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"
  20236.        class="logolist--image"
  20237.        style="
  20238.        object-fit:cover;object-position:50.0% 50.0%;
  20239.      
  20240. "
  20241.        
  20242.      >
  20243.    </noscript>
  20244.  
  20245.  
  20246.  <img loading="lazy"
  20247.    
  20248.      src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20249.    
  20250.    alt=""
  20251.  
  20252.    
  20253.      data-rimg="lazy"
  20254.      data-rimg-scale="1"
  20255.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Apple-Logo_{size}.jpg?v=1698309948"
  20256.      data-rimg-max="3840x2160"
  20257.      data-rimg-crop="false"
  20258.      
  20259.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='90'></svg>"
  20260.    
  20261.  
  20262.    class="logolist--image"
  20263.    style="
  20264.        object-fit:cover;object-position:50.0% 50.0%;
  20265.      
  20266. "
  20267.    
  20268.  >
  20269.  
  20270.  
  20271.  
  20272.  <div data-rimg-canvas></div>
  20273.  
  20274.  
  20275.        
  20276.  
  20277.        
  20278.          </a>
  20279.        
  20280.      </div>
  20281.    
  20282.      <div class="logolist--item" >
  20283.        
  20284.          <a
  20285.            class="logolist--link"
  20286.            href="/collections/hp-laptop-battery"
  20287.            target="_blank"
  20288.          >
  20289.        
  20290.  
  20291.        
  20292.          
  20293.  
  20294.  
  20295.    <noscript data-rimg-noscript>
  20296.      <img loading="lazy"
  20297.        
  20298.          src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20299.        
  20300.  
  20301.        alt=""
  20302.        data-rimg="noscript"
  20303.        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"
  20304.        class="logolist--image"
  20305.        style="
  20306.        object-fit:cover;object-position:50.0% 50.0%;
  20307.      
  20308. "
  20309.        
  20310.      >
  20311.    </noscript>
  20312.  
  20313.  
  20314.  <img loading="lazy"
  20315.    
  20316.      src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20317.    
  20318.    alt=""
  20319.  
  20320.    
  20321.      data-rimg="lazy"
  20322.      data-rimg-scale="1"
  20323.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_{size}.png?v=1698310007"
  20324.      data-rimg-max="2048x2048"
  20325.      data-rimg-crop="false"
  20326.      
  20327.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20328.    
  20329.  
  20330.    class="logolist--image"
  20331.    style="
  20332.        object-fit:cover;object-position:50.0% 50.0%;
  20333.      
  20334. "
  20335.    
  20336.  >
  20337.  
  20338.  
  20339.  
  20340.  <div data-rimg-canvas></div>
  20341.  
  20342.  
  20343.        
  20344.  
  20345.        
  20346.          </a>
  20347.        
  20348.      </div>
  20349.    
  20350.      <div class="logolist--item" >
  20351.        
  20352.          <a
  20353.            class="logolist--link"
  20354.            href="/collections/all"
  20355.            target="_blank"
  20356.          >
  20357.        
  20358.  
  20359.        
  20360.          
  20361.  
  20362.  
  20363.    <noscript data-rimg-noscript>
  20364.      <img loading="lazy"
  20365.        
  20366.          src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20367.        
  20368.  
  20369.        alt=""
  20370.        data-rimg="noscript"
  20371.        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"
  20372.        class="logolist--image"
  20373.        style="
  20374.        object-fit:cover;object-position:50.0% 50.0%;
  20375.      
  20376. "
  20377.        
  20378.      >
  20379.    </noscript>
  20380.  
  20381.  
  20382.  <img loading="lazy"
  20383.    
  20384.      src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20385.    
  20386.    alt=""
  20387.  
  20388.    
  20389.      data-rimg="lazy"
  20390.      data-rimg-scale="1"
  20391.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_{size}.png?v=1698310074"
  20392.      data-rimg-max="5000x3125"
  20393.      data-rimg-crop="false"
  20394.      
  20395.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='100'></svg>"
  20396.    
  20397.  
  20398.    class="logolist--image"
  20399.    style="
  20400.        object-fit:cover;object-position:50.0% 50.0%;
  20401.      
  20402. "
  20403.    
  20404.  >
  20405.  
  20406.  
  20407.  
  20408.  <div data-rimg-canvas></div>
  20409.  
  20410.  
  20411.        
  20412.  
  20413.        
  20414.          </a>
  20415.        
  20416.      </div>
  20417.    
  20418.      <div class="logolist--item" >
  20419.        
  20420.          <a
  20421.            class="logolist--link"
  20422.            href="/collections/all"
  20423.            target="_blank"
  20424.          >
  20425.        
  20426.  
  20427.        
  20428.          
  20429.  
  20430.  
  20431.    <noscript data-rimg-noscript>
  20432.      <img loading="lazy"
  20433.        
  20434.          src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20435.        
  20436.  
  20437.        alt=""
  20438.        data-rimg="noscript"
  20439.        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"
  20440.        class="logolist--image"
  20441.        style="
  20442.        object-fit:cover;object-position:50.0% 50.0%;
  20443.      
  20444. "
  20445.        
  20446.      >
  20447.    </noscript>
  20448.  
  20449.  
  20450.  <img loading="lazy"
  20451.    
  20452.      src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20453.    
  20454.    alt=""
  20455.  
  20456.    
  20457.      data-rimg="lazy"
  20458.      data-rimg-scale="1"
  20459.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Alienware_{size}.png?v=1698310052"
  20460.      data-rimg-max="860x231"
  20461.      data-rimg-crop="false"
  20462.      
  20463.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='43'></svg>"
  20464.    
  20465.  
  20466.    class="logolist--image"
  20467.    style="
  20468.        object-fit:cover;object-position:50.0% 50.0%;
  20469.      
  20470. "
  20471.    
  20472.  >
  20473.  
  20474.  
  20475.  
  20476.  <div data-rimg-canvas></div>
  20477.  
  20478.  
  20479.        
  20480.  
  20481.        
  20482.          </a>
  20483.        
  20484.      </div>
  20485.    
  20486.      <div class="logolist--item" >
  20487.        
  20488.          <a
  20489.            class="logolist--link"
  20490.            href="/collections/all"
  20491.            target="_blank"
  20492.          >
  20493.        
  20494.  
  20495.        
  20496.          
  20497.  
  20498.  
  20499.    <noscript data-rimg-noscript>
  20500.      <img loading="lazy"
  20501.        
  20502.          src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20503.        
  20504.  
  20505.        alt=""
  20506.        data-rimg="noscript"
  20507.        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"
  20508.        class="logolist--image"
  20509.        style="
  20510.        object-fit:cover;object-position:50.0% 50.0%;
  20511.      
  20512. "
  20513.        
  20514.      >
  20515.    </noscript>
  20516.  
  20517.  
  20518.  <img loading="lazy"
  20519.    
  20520.      src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20521.    
  20522.    alt=""
  20523.  
  20524.    
  20525.      data-rimg="lazy"
  20526.      data-rimg-scale="1"
  20527.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_{size}.png?v=1698310106"
  20528.      data-rimg-max="1200x183"
  20529.      data-rimg-crop="false"
  20530.      
  20531.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20532.    
  20533.  
  20534.    class="logolist--image"
  20535.    style="
  20536.        object-fit:cover;object-position:50.0% 50.0%;
  20537.      
  20538. "
  20539.    
  20540.  >
  20541.  
  20542.  
  20543.  
  20544.  <div data-rimg-canvas></div>
  20545.  
  20546.  
  20547.        
  20548.  
  20549.        
  20550.          </a>
  20551.        
  20552.      </div>
  20553.    
  20554.      <div class="logolist--item" >
  20555.        
  20556.          <a
  20557.            class="logolist--link"
  20558.            href="/collections/all"
  20559.            target="_blank"
  20560.          >
  20561.        
  20562.  
  20563.        
  20564.          
  20565.  
  20566.  
  20567.    <noscript data-rimg-noscript>
  20568.      <img loading="lazy"
  20569.        
  20570.          src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20571.        
  20572.  
  20573.        alt=""
  20574.        data-rimg="noscript"
  20575.        srcset="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364 1x, //laptopparts.ca/cdn/shop/files/Panasonic_224x224.png?v=1698310364 1.4x"
  20576.        class="logolist--image"
  20577.        style="
  20578.        object-fit:cover;object-position:50.0% 50.0%;
  20579.      
  20580. "
  20581.        
  20582.      >
  20583.    </noscript>
  20584.  
  20585.  
  20586.  <img loading="lazy"
  20587.    
  20588.      src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20589.    
  20590.    alt=""
  20591.  
  20592.    
  20593.      data-rimg="lazy"
  20594.      data-rimg-scale="1"
  20595.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Panasonic_{size}.png?v=1698310364"
  20596.      data-rimg-max="225x225"
  20597.      data-rimg-crop="false"
  20598.      
  20599.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20600.    
  20601.  
  20602.    class="logolist--image"
  20603.    style="
  20604.        object-fit:cover;object-position:50.0% 50.0%;
  20605.      
  20606. "
  20607.    
  20608.  >
  20609.  
  20610.  
  20611.  
  20612.  <div data-rimg-canvas></div>
  20613.  
  20614.  
  20615.        
  20616.  
  20617.        
  20618.          </a>
  20619.        
  20620.      </div>
  20621.    
  20622.      <div class="logolist--item" >
  20623.        
  20624.          <a
  20625.            class="logolist--link"
  20626.            href="/collections/all"
  20627.            target="_blank"
  20628.          >
  20629.        
  20630.  
  20631.        
  20632.          
  20633.  
  20634.  
  20635.    <noscript data-rimg-noscript>
  20636.      <img loading="lazy"
  20637.        
  20638.          src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20639.        
  20640.  
  20641.        alt=""
  20642.        data-rimg="noscript"
  20643.        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"
  20644.        class="logolist--image"
  20645.        style="
  20646.        object-fit:cover;object-position:50.0% 50.0%;
  20647.      
  20648. "
  20649.        
  20650.      >
  20651.    </noscript>
  20652.  
  20653.  
  20654.  <img loading="lazy"
  20655.    
  20656.      src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20657.    
  20658.    alt=""
  20659.  
  20660.    
  20661.      data-rimg="lazy"
  20662.      data-rimg-scale="1"
  20663.      data-rimg-template="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_{size}.png?v=1698310433"
  20664.      data-rimg-max="666x375"
  20665.      data-rimg-crop="false"
  20666.      
  20667.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='91'></svg>"
  20668.    
  20669.  
  20670.    class="logolist--image"
  20671.    style="
  20672.        object-fit:cover;object-position:50.0% 50.0%;
  20673.      
  20674. "
  20675.    
  20676.  >
  20677.  
  20678.  
  20679.  
  20680.  <div data-rimg-canvas></div>
  20681.  
  20682.  
  20683.        
  20684.  
  20685.        
  20686.          </a>
  20687.        
  20688.      </div>
  20689.    
  20690.  </div>
  20691. </section>
  20692.  
  20693. </div><div id="shopify-section-template--15492296147031__16962663497dd9ec87" class="shopify-section"><div class="product-section--container">
  20694.  
  20695. </div>
  20696.  
  20697.  
  20698. </div><div id="shopify-section-template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706" class="shopify-section highlights-banner"><script
  20699.  type="application/json"
  20700.  data-section-type="dynamic-highlights-banner"
  20701.  data-section-id="template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706">
  20702. </script>
  20703.  
  20704. <style>
  20705.  
  20706.  
  20707.    .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706.highlights-banner__container {
  20708.      background-color: #000000;
  20709.    }
  20710.  
  20711.  
  20712.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:before {
  20713.    background: linear-gradient( to right, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20714.  }
  20715.  
  20716.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:after {
  20717.    background: linear-gradient( to left, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20718.  }
  20719.  
  20720.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__block {
  20721.    color: #ffffff;
  20722.  }
  20723.  
  20724.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__icon {
  20725.    color: #fe0000;
  20726.  }
  20727. </style>
  20728.  
  20729. <script type="application/pxs-animation-mapping+json">
  20730.  {
  20731.    "blocks": [".highlights-banners-block"],
  20732.    "elements": []
  20733.  }
  20734. </script>
  20735.  
  20736. <div class="
  20737.  highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706
  20738.  highlights-banner__container
  20739.  highlights-banner__mobile-layout--slider
  20740.  full-width
  20741.  "
  20742. >
  20743.  <div class="highlights-banner__content highlight-banner__count-4"
  20744.   data-highlights-slider
  20745.  >
  20746.    
  20747.      
  20748.        <div
  20749.          class="highlights-banner__block highlights-banner__align-left"
  20750.          
  20751.          data-highlights-block
  20752.        >
  20753.          
  20754.            <div class="highlights-banner__icon">
  20755.              
  20756.                
  20757.  
  20758.  
  20759.                                                                    <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>                                                
  20760.  
  20761.              
  20762.            </div>
  20763.          
  20764.  
  20765.          <div class="highlights-banner__text">
  20766.            
  20767.              <span class="highlights-banner__heading">
  20768.                Quality and Saving
  20769.              </span>
  20770.            
  20771.  
  20772.            
  20773.              <p>Comprehensive quality control and affordable prices</p>
  20774.            
  20775.          </div>
  20776.          
  20777.        </div>
  20778.      
  20779.    
  20780.      
  20781.        <div
  20782.          class="highlights-banner__block highlights-banner__align-left"
  20783.          
  20784.          data-highlights-block
  20785.        >
  20786.          
  20787.            <div class="highlights-banner__icon">
  20788.              
  20789.                
  20790.  
  20791.  
  20792.                                  <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>                                                                                  
  20793.  
  20794.              
  20795.            </div>
  20796.          
  20797.  
  20798.          <div class="highlights-banner__text">
  20799.            
  20800.              <span class="highlights-banner__heading">
  20801.                Huge Inventory
  20802.              </span>
  20803.            
  20804.  
  20805.            
  20806.              <p>largest available inventory of parts in Canada</p>
  20807.            
  20808.          </div>
  20809.          
  20810.        </div>
  20811.      
  20812.    
  20813.      
  20814.        <div
  20815.          class="highlights-banner__block highlights-banner__align-left"
  20816.          
  20817.          data-highlights-block
  20818.        >
  20819.          
  20820.            <div class="highlights-banner__icon">
  20821.              
  20822.                
  20823.  
  20824.  
  20825.                            <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>                                                                                        
  20826.  
  20827.              
  20828.            </div>
  20829.          
  20830.  
  20831.          <div class="highlights-banner__text">
  20832.            
  20833.              <span class="highlights-banner__heading">
  20834.                Fast Shipping
  20835.              </span>
  20836.            
  20837.  
  20838.            
  20839.              <p>Fast and convenient door to door delivery</p>
  20840.            
  20841.          </div>
  20842.          
  20843.        </div>
  20844.      
  20845.    
  20846.      
  20847.        <div
  20848.          class="highlights-banner__block highlights-banner__align-left"
  20849.          
  20850.          data-highlights-block
  20851.        >
  20852.          
  20853.            <div class="highlights-banner__icon">
  20854.              
  20855.                
  20856.  
  20857.  
  20858.                          <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>                                                                                          
  20859.  
  20860.              
  20861.            </div>
  20862.          
  20863.  
  20864.          <div class="highlights-banner__text">
  20865.            
  20866.              <span class="highlights-banner__heading">
  20867.                Payment Security
  20868.              </span>
  20869.            
  20870.  
  20871.            
  20872.              <p>We have secured payment methods</p>
  20873.            
  20874.          </div>
  20875.          
  20876.        </div>
  20877.      
  20878.    
  20879.  </div>
  20880. </div>
  20881.  
  20882. </div><div id="shopify-section-template--15492296147031__dynamic_html_knfnMB" class="shopify-section html--section"><script
  20883.  type="application/json"
  20884.  data-section-id="template--15492296147031__dynamic_html_knfnMB"
  20885.  data-section-type="dynamic-html"
  20886. ></script>
  20887.  
  20888. <section class="custom-html--container">
  20889.  
  20890.  <div class="rte" data-rte>
  20891.    <h1 style="text-align:center; margin-bottom:-50px">ABOUT US</h1>
  20892.  </div>
  20893. </section>
  20894.  
  20895. </div><div id="shopify-section-template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0" class="shopify-section rich-text--section"><script
  20896.  type="application/json"
  20897.  data-section-id="template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0"
  20898.  data-section-type="dynamic-rich-text"
  20899. ></script>
  20900.  
  20901. <script type="application/pxs-animation-mapping+json">
  20902.  {
  20903.    "blocks": [".rich-text-block"],
  20904.    "elements": []
  20905.  }
  20906. </script>
  20907.  
  20908. <section
  20909.  class="
  20910.    rich-text--container
  20911.    rich-text-full-width
  20912.  "
  20913. >
  20914.    <div
  20915.      class="
  20916.        rich-text-block
  20917.        rich-text-alignment-center
  20918.      "
  20919.      
  20920.    >
  20921.        
  20922.  
  20923.        
  20924.          <div class="rich-text-content rte" data-rte>
  20925.            <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>
  20926.          </div>
  20927.        
  20928.    </div>
  20929. </section>
  20930.  
  20931. </div><div id="shopify-section-template--15492296147031__dynamic_html_fKi4qq" class="shopify-section html--section"><script
  20932.  type="application/json"
  20933.  data-section-id="template--15492296147031__dynamic_html_fKi4qq"
  20934.  data-section-type="dynamic-html"
  20935. ></script>
  20936.  
  20937. <section class="custom-html--container">
  20938.  
  20939.  <div class="rte" data-rte>
  20940.    <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>
  20941.  </div>
  20942. </section>
  20943.  
  20944. </div>
  20945.    </main>
  20946.  
  20947.    <!-- BEGIN sections: footer-group -->
  20948. <div id="shopify-section-sections--15492291100759__footer" class="shopify-section shopify-section-group-footer-group"><script
  20949.  type="application/json"
  20950.  data-section-id="sections--15492291100759__footer"
  20951.  data-section-type="static-footer">
  20952. </script>
  20953.  
  20954.  
  20955.  
  20956.  
  20957.  
  20958. <footer role="contentinfo" aria-label="Footer">
  20959.  <section class="site-footer-wrapper">
  20960.    
  20961.      <div class="site-footer-item">
  20962.        <div class="site-footer-blocks column-count-4">
  20963.          <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  20964.  
  20965.  
  20966.      <h2 class="site-footer-block-title" data-accordion-trigger>
  20967.        FURTHER INFO.
  20968.  
  20969.        <span class="site-footer-block-icon accordion--icon">
  20970.          <svg
  20971.  aria-hidden="true"
  20972.  focusable="false"
  20973.  role="presentation"
  20974.  width="14"
  20975.  height="8"
  20976.  viewBox="0 0 14 8"
  20977.  fill="none"
  20978.  xmlns="http://www.w3.org/2000/svg"
  20979. >
  20980.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20981.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20982. </svg>
  20983.  
  20984.        </span>
  20985.      </h2>
  20986.  
  20987.      <div class="site-footer-block-content">
  20988.        
  20989.  
  20990.  
  20991.  
  20992.  
  20993.  
  20994.  
  20995.  
  20996.  
  20997.  
  20998.  
  20999.  
  21000.  
  21001. <ul
  21002.  class="
  21003.    navmenu
  21004.    navmenu-depth-1
  21005.    
  21006.    
  21007.  "
  21008.  data-navmenu
  21009.  data-accordion-content
  21010.  
  21011.  
  21012. >
  21013.  
  21014.    
  21015.  
  21016.    
  21017.    
  21018.  
  21019.    
  21020.    
  21021.  
  21022.    
  21023.  
  21024.    
  21025.      <li
  21026.        class="navmenu-item navmenu-id-home"
  21027.      >
  21028.        <a
  21029.        class="
  21030.          navmenu-link
  21031.          navmenu-link-depth-1
  21032.          navmenu-link-active
  21033.        "
  21034.        href="/"
  21035.        >
  21036.          
  21037.          Home
  21038. </a>
  21039.      </li>
  21040.    
  21041.  
  21042.    
  21043.  
  21044.    
  21045.    
  21046.  
  21047.    
  21048.    
  21049.  
  21050.    
  21051.  
  21052.    
  21053.      <li
  21054.        class="navmenu-item navmenu-id-search"
  21055.      >
  21056.        <a
  21057.        class="
  21058.          navmenu-link
  21059.          navmenu-link-depth-1
  21060.          
  21061.        "
  21062.        href="/search"
  21063.        >
  21064.          
  21065.          Search
  21066. </a>
  21067.      </li>
  21068.    
  21069.  
  21070.    
  21071.  
  21072.    
  21073.    
  21074.  
  21075.    
  21076.    
  21077.  
  21078.    
  21079.  
  21080.    
  21081.      <li
  21082.        class="navmenu-item navmenu-id-about-us"
  21083.      >
  21084.        <a
  21085.        class="
  21086.          navmenu-link
  21087.          navmenu-link-depth-1
  21088.          
  21089.        "
  21090.        href="/pages/about-us"
  21091.        >
  21092.          
  21093.          About Us
  21094. </a>
  21095.      </li>
  21096.    
  21097.  
  21098.    
  21099.  
  21100.    
  21101.    
  21102.  
  21103.    
  21104.    
  21105.  
  21106.    
  21107.  
  21108.    
  21109.      <li
  21110.        class="navmenu-item navmenu-id-parts-request"
  21111.      >
  21112.        <a
  21113.        class="
  21114.          navmenu-link
  21115.          navmenu-link-depth-1
  21116.          
  21117.        "
  21118.        href="/pages/part-request"
  21119.        >
  21120.          
  21121.          Parts Request
  21122. </a>
  21123.      </li>
  21124.    
  21125.  
  21126.    
  21127.  
  21128.    
  21129.    
  21130.  
  21131.    
  21132.    
  21133.  
  21134.    
  21135.  
  21136.    
  21137.      <li
  21138.        class="navmenu-item navmenu-id-repair-centers"
  21139.      >
  21140.        <a
  21141.        class="
  21142.          navmenu-link
  21143.          navmenu-link-depth-1
  21144.          
  21145.        "
  21146.        href="/pages/store-locator"
  21147.        >
  21148.          
  21149.          Repair Centers
  21150. </a>
  21151.      </li>
  21152.    
  21153.  
  21154.    
  21155.  
  21156.    
  21157.    
  21158.  
  21159.    
  21160.    
  21161.  
  21162.    
  21163.  
  21164.    
  21165.      <li
  21166.        class="navmenu-item navmenu-id-francais"
  21167.      >
  21168.        <a
  21169.        class="
  21170.          navmenu-link
  21171.          navmenu-link-depth-1
  21172.          
  21173.        "
  21174.        href="/pages/francais"
  21175.        >
  21176.          
  21177.          Français
  21178. </a>
  21179.      </li>
  21180.    
  21181.  
  21182.    
  21183.  
  21184.    
  21185.    
  21186.  
  21187.    
  21188.    
  21189.  
  21190.    
  21191.  
  21192.    
  21193.      <li
  21194.        class="navmenu-item navmenu-id-reviews"
  21195.      >
  21196.        <a
  21197.        class="
  21198.          navmenu-link
  21199.          navmenu-link-depth-1
  21200.          
  21201.        "
  21202.        href="/pages/reviews"
  21203.        >
  21204.          
  21205.          Reviews
  21206. </a>
  21207.      </li>
  21208.    
  21209.  
  21210. </ul>
  21211.  
  21212.  
  21213.        <!-- TG seal - snippets/footer.liquid -->
  21214.        
  21215.          <div style="margin-top: 2em;">
  21216.            <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>
  21217.            <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>
  21218.          </div>
  21219.        
  21220.        <!-- END TG seal - snippets/footer.liquid -->
  21221.      </div>
  21222.  
  21223. </div>
  21224. <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  21225.  
  21226.  
  21227.      <h2 class="site-footer-block-title" data-accordion-trigger>
  21228.        CUSTOMER SERVICE
  21229.  
  21230.        <span class="site-footer-block-icon accordion--icon">
  21231.          <svg
  21232.  aria-hidden="true"
  21233.  focusable="false"
  21234.  role="presentation"
  21235.  width="14"
  21236.  height="8"
  21237.  viewBox="0 0 14 8"
  21238.  fill="none"
  21239.  xmlns="http://www.w3.org/2000/svg"
  21240. >
  21241.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21242.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21243. </svg>
  21244.  
  21245.        </span>
  21246.      </h2>
  21247.  
  21248.      <div class="site-footer-block-content">
  21249.        
  21250.  
  21251.  
  21252.  
  21253.  
  21254.  
  21255.  
  21256.  
  21257.  
  21258.  
  21259.  
  21260.  
  21261.  
  21262. <ul
  21263.  class="
  21264.    navmenu
  21265.    navmenu-depth-1
  21266.    
  21267.    
  21268.  "
  21269.  data-navmenu
  21270.  data-accordion-content
  21271.  
  21272.  
  21273. >
  21274.  
  21275.    
  21276.  
  21277.    
  21278.    
  21279.  
  21280.    
  21281.    
  21282.  
  21283.    
  21284.  
  21285.    
  21286.      <li
  21287.        class="navmenu-item navmenu-id-privacy-policy"
  21288.      >
  21289.        <a
  21290.        class="
  21291.          navmenu-link
  21292.          navmenu-link-depth-1
  21293.          
  21294.        "
  21295.        href="/pages/privacy-policy"
  21296.        >
  21297.          
  21298.          Privacy Policy
  21299. </a>
  21300.      </li>
  21301.    
  21302.  
  21303.    
  21304.  
  21305.    
  21306.    
  21307.  
  21308.    
  21309.    
  21310.  
  21311.    
  21312.  
  21313.    
  21314.      <li
  21315.        class="navmenu-item navmenu-id-return-policy"
  21316.      >
  21317.        <a
  21318.        class="
  21319.          navmenu-link
  21320.          navmenu-link-depth-1
  21321.          
  21322.        "
  21323.        href="/pages/returns"
  21324.        >
  21325.          
  21326.          Return Policy
  21327. </a>
  21328.      </li>
  21329.    
  21330.  
  21331.    
  21332.  
  21333.    
  21334.    
  21335.  
  21336.    
  21337.    
  21338.  
  21339.    
  21340.  
  21341.    
  21342.      <li
  21343.        class="navmenu-item navmenu-id-shipping"
  21344.      >
  21345.        <a
  21346.        class="
  21347.          navmenu-link
  21348.          navmenu-link-depth-1
  21349.          
  21350.        "
  21351.        href="/pages/shipping"
  21352.        >
  21353.          
  21354.          Shipping
  21355. </a>
  21356.      </li>
  21357.    
  21358.  
  21359.    
  21360.  
  21361.    
  21362.    
  21363.  
  21364.    
  21365.    
  21366.  
  21367.    
  21368.  
  21369.    
  21370.      <li
  21371.        class="navmenu-item navmenu-id-warranty"
  21372.      >
  21373.        <a
  21374.        class="
  21375.          navmenu-link
  21376.          navmenu-link-depth-1
  21377.          
  21378.        "
  21379.        href="/pages/warranty"
  21380.        >
  21381.          
  21382.          Warranty
  21383. </a>
  21384.      </li>
  21385.    
  21386.  
  21387.    
  21388.  
  21389.    
  21390.    
  21391.  
  21392.    
  21393.    
  21394.  
  21395.    
  21396.  
  21397.    
  21398.      <li
  21399.        class="navmenu-item navmenu-id-blogs"
  21400.      >
  21401.        <a
  21402.        class="
  21403.          navmenu-link
  21404.          navmenu-link-depth-1
  21405.          
  21406.        "
  21407.        href="/blogs/news/how-to-enhance-your-laptops-performance-top-tips-for-optimization"
  21408.        >
  21409.          
  21410.          Blogs
  21411. </a>
  21412.      </li>
  21413.    
  21414.  
  21415. </ul>
  21416.  
  21417.  
  21418.        <!-- TG seal - snippets/footer.liquid -->
  21419.        
  21420.        <!-- END TG seal - snippets/footer.liquid -->
  21421.      </div>
  21422.  
  21423. </div>
  21424. <div class="site-footer-block-item  site-footer-block-social-accounts  " >
  21425.  
  21426.  
  21427.    
  21428.  
  21429.  
  21430.  
  21431.  
  21432.  
  21433.  
  21434.  
  21435.  
  21436.  
  21437.  
  21438.  
  21439.  
  21440.  
  21441.  
  21442.  
  21443.  
  21444.  
  21445.  
  21446.  
  21447.  
  21448.  
  21449.  
  21450.    
  21451.    
  21452.  
  21453.  
  21454.  
  21455.  
  21456.    <h2 class="site-footer-block-title">
  21457.      Follow us
  21458.    </h2>
  21459.  
  21460.    <div class="site-footer-block-content">
  21461.  
  21462.  
  21463.  <div class="social-icons">
  21464.  
  21465.  
  21466. <a
  21467.  class="social-link"
  21468.  title="Facebook"
  21469.  href="https://web.facebook.com/laptopparts.ca/?_rdc=1&amp;_rdr"
  21470.  target="_blank">
  21471. <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>
  21472.  
  21473.    <span class="visually-hidden">Find us on Facebook</span>
  21474.  
  21475. </a>
  21476.  
  21477.  
  21478.  
  21479.  
  21480. <a
  21481.  class="social-link"
  21482.  title="Twitter"
  21483.  href="https://twitter.com/i/flow/login?redirect_after_login=%2FLaptopParts_ca"
  21484.  target="_blank">
  21485. <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>
  21486.  
  21487.    <span class="visually-hidden">Find us on Twitter</span>
  21488.  
  21489. </a>
  21490.  
  21491. </div>
  21492.  
  21493.  
  21494.    </div>
  21495.  
  21496.  
  21497.  
  21498.  
  21499. </div>
  21500. <div class="site-footer-block-item  site-footer-block-rich-text  " >
  21501.  
  21502.  
  21503.    
  21504.      <h2 class="site-footer-block-title">
  21505.        Contact Us
  21506.      </h2>
  21507.    
  21508.  
  21509.    
  21510.      <div class="site-footer-block-content rte">
  21511.        <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>
  21512.      </div>
  21513.    
  21514.  
  21515.    
  21516.  
  21517. </div>
  21518.  
  21519.        </div>
  21520.      </div>
  21521.    
  21522.  
  21523.    <div class="site-footer-item site-footer-item--information">
  21524.      <div class="site-footer__row site-footer__row--first">
  21525. <div class="site-footer-right ">
  21526.        <div class="shopify-cross-border">
  21527.          
  21528.        
  21529.          
  21530.        </div>
  21531.        
  21532. <ul class="payment-icons">
  21533.          
  21534.            <li class="payment-icons-item">
  21535.              <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>
  21536.  
  21537.            </li>
  21538.          
  21539.            <li class="payment-icons-item">
  21540.              <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>
  21541.  
  21542.            </li>
  21543.          
  21544.            <li class="payment-icons-item">
  21545.              <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>
  21546.            </li>
  21547.          
  21548.            <li class="payment-icons-item">
  21549.              <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>
  21550.            </li>
  21551.          
  21552.            <li class="payment-icons-item">
  21553.              <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>
  21554.  
  21555.            </li>
  21556.          
  21557.            <li class="payment-icons-item">
  21558.              <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>
  21559.            </li>
  21560.          
  21561.            <li class="payment-icons-item">
  21562.              <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>
  21563.            </li>
  21564.          
  21565.            <li class="payment-icons-item">
  21566.              <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>
  21567.  
  21568.            </li>
  21569.          
  21570.            <li class="payment-icons-item">
  21571.              <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>
  21572.            </li>
  21573.          
  21574.        </ul></div>
  21575.      </div>
  21576.  
  21577.      <div class="site-footer__row site-footer__row--second">
  21578.        <div class="site-footer__row-inner-wrapper-left"><p class="site-footer-credits">
  21579.            <b>LaptopParts.ca</b>
  21580.          </p>
  21581.  
  21582.          <p class="site-footer-credits" style="color:black;">Developed By <a href="https://searchaly.com" style="text-decoration:none;color:black;">Searchaly</a>
  21583.          </p>
  21584.        </div>
  21585.  
  21586.        
  21587. <div class="site-footer-right ">
  21588.        <div class="shopify-cross-border">
  21589.          
  21590.        
  21591.          
  21592.        </div>
  21593.        
  21594. <ul class="payment-icons">
  21595.          
  21596.            <li class="payment-icons-item">
  21597.              <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>
  21598.  
  21599.            </li>
  21600.          
  21601.            <li class="payment-icons-item">
  21602.              <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>
  21603.  
  21604.            </li>
  21605.          
  21606.            <li class="payment-icons-item">
  21607.              <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>
  21608.            </li>
  21609.          
  21610.            <li class="payment-icons-item">
  21611.              <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>
  21612.            </li>
  21613.          
  21614.            <li class="payment-icons-item">
  21615.              <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>
  21616.  
  21617.            </li>
  21618.          
  21619.            <li class="payment-icons-item">
  21620.              <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>
  21621.            </li>
  21622.          
  21623.            <li class="payment-icons-item">
  21624.              <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>
  21625.            </li>
  21626.          
  21627.            <li class="payment-icons-item">
  21628.              <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>
  21629.  
  21630.            </li>
  21631.          
  21632.            <li class="payment-icons-item">
  21633.              <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>
  21634.            </li>
  21635.          
  21636.        </ul></div>
  21637.      </div>
  21638.    </div>
  21639.  </section>
  21640. </footer>
  21641.  
  21642. </div>
  21643. <!-- END sections: footer-group -->
  21644.  
  21645.    
  21646.    <div style="display: none;" aria-hidden="true" data-templates>
  21647.      
  21648.      <div
  21649.        class="message-banner--container"
  21650.        role="alert"
  21651.        data-message-banner
  21652.      >
  21653.        <div class="message-banner--outer">
  21654.          <div class="message-banner--inner" data-message-banner-content></div>
  21655.  
  21656.          <button
  21657.            class="message-banner--close"
  21658.            type="button"
  21659.            aria-label="Close"
  21660.            data-message-banner-close
  21661.          ><svg
  21662.  aria-hidden="true"
  21663.  focusable="false"
  21664.  role="presentation"
  21665.  xmlns="http://www.w3.org/2000/svg"
  21666.  width="13"
  21667.  height="13"
  21668.  viewBox="0 0 13 13"
  21669. >
  21670.  <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"/>
  21671. </svg></button>
  21672.        </div>
  21673.      </div>
  21674.      
  21675.  
  21676.      
  21677.      <section class="atc-banner--container" role="log" data-atc-banner>
  21678.        <div class="atc-banner--outer">
  21679.          <div class="atc-banner--inner">
  21680.            <div class="atc-banner--product">
  21681.              <h2 class="atc-banner--product-title">
  21682.                <span class="atc-banner--product-title--icon">
  21683.                  
  21684.  
  21685.  
  21686.                <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>                                                                                                    
  21687.  
  21688.                </span>
  21689.                Added to your cart:
  21690.              </h2>
  21691.  
  21692.              <div class="atc--product">
  21693.                <div class="atc--product-image" data-atc-banner-product-image>
  21694.                  <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>
  21695.                </div>
  21696.                <div class="atc--product-details">
  21697.                  <h2 class="atc--product-details--title" data-atc-banner-product-title></h2>
  21698.                  <span class="atc--product-details--options" data-atc-banner-product-options></span>
  21699.                  <span class="atc--product-details--price">
  21700.                    <span class="atc--product-details--price-quantity" data-atc-banner-product-price-quantity></span>
  21701.                    <span class="atc--product-details--price-value money" data-atc-banner-product-price-value></span>
  21702.                    <span
  21703.                      class="atc--product-details--price-discounted money"
  21704.                      data-atc-banner-product-price-discounted
  21705.                    ></span>
  21706.                    <span class="atc--product-details--unit-price hidden" data-atc-banner-unit-price>
  21707.                      ** total_quantity ** | ** unit_price ** / ** unit_measure **
  21708.                    </span>
  21709.                  </span>
  21710.                  <ul class="discount-list" data-atc-banner-product-discounts>
  21711.                    <li class="discount-list-item">
  21712.                      
  21713.  
  21714.  
  21715.                                                                        <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>                                            
  21716.  
  21717.                      <span class="discount-title"></span>
  21718.                      (-<span class="money discount-amount"></span>)
  21719.                    </li>
  21720.                  </ul>
  21721.                  <span class="atc--line-item-subscriptions" data-atc-banner-product-subscription-title></span>
  21722.                </div>
  21723.              </div>
  21724.            </div>
  21725.  
  21726.            <div class="atc-banner--cart">
  21727.              <div class="atc-banner--cart-subtotal">
  21728.                <span class="atc-subtotal--label">
  21729.                  Cart subtotal
  21730.                </span>
  21731.                <span class="atc-subtotal--price money" data-atc-banner-cart-subtotal></span>
  21732.              </div>
  21733.  
  21734.              <footer class="atc-banner--cart-footer">
  21735.                <a
  21736.                  class="button-secondary atc-button--viewcart"
  21737.                  href="/cart"
  21738.                  data-atc-banner-cart-button
  21739.                >
  21740.                  View cart (<span></span>)
  21741.                </a>
  21742.                <form
  21743.                  action="/cart"
  21744.                  method="post"
  21745.                  aria-label="cart checkout"
  21746.                >
  21747.                  <button class="button-primary atc-button--checkout" type="submit" name="checkout">
  21748.                    
  21749.                      <svg
  21750. width="20"
  21751. height="20"
  21752. viewBox="0 0 20 20"
  21753. fill="none"
  21754. xmlns="http://www.w3.org/2000/svg">
  21755. <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"/>
  21756. <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"/>
  21757. </svg>
  21758.  
  21759.                    
  21760.                    <span>Checkout</span>
  21761.                  </button>
  21762.                </form>
  21763.              </footer>
  21764.            </div>
  21765.          </div>
  21766.  
  21767.          <button
  21768.            class="atc-banner--close"
  21769.            type="button"
  21770.            aria-label="Close"
  21771.            data-atc-banner-close
  21772.          ><svg
  21773.  aria-hidden="true"
  21774.  focusable="false"
  21775.  role="presentation"
  21776.  xmlns="http://www.w3.org/2000/svg"
  21777.  width="13"
  21778.  height="13"
  21779.  viewBox="0 0 13 13"
  21780. >
  21781.  <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"/>
  21782. </svg></button>
  21783.        </div>
  21784.      </section>
  21785.      
  21786.    </div>
  21787.  
  21788.    
  21789.    
  21790.    <div class="modal" data-modal-container aria-label="modal window" data-trap-focus>
  21791.      <div class="modal-inner" data-modal-inner>
  21792.        <button
  21793.          class="modal-close"
  21794.          type="button"
  21795.          aria-label="Close"
  21796.          data-modal-close
  21797.        >
  21798.          <svg
  21799.  aria-hidden="true"
  21800.  focusable="false"
  21801.  role="presentation"
  21802.  xmlns="http://www.w3.org/2000/svg"
  21803.  width="13"
  21804.  height="13"
  21805.  viewBox="0 0 13 13"
  21806. >
  21807.  <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"/>
  21808. </svg>
  21809.        </button>
  21810.        <div class="modal-content" data-modal-content></div>
  21811.      </div>
  21812.    </div>
  21813.  
  21814.    <div class="modal-1" data-modal-container-1 aria-label="modal window">
  21815.      <div class="modal-inner" data-modal-inner>
  21816.        <button
  21817.          class="modal-close"
  21818.          type="button"
  21819.          aria-label="Close"
  21820.          data-modal-1-close
  21821.        >
  21822.          <svg
  21823.  aria-hidden="true"
  21824.  focusable="false"
  21825.  role="presentation"
  21826.  xmlns="http://www.w3.org/2000/svg"
  21827.  width="13"
  21828.  height="13"
  21829.  viewBox="0 0 13 13"
  21830. >
  21831.  <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"/>
  21832. </svg>
  21833.        </button>
  21834.        <div class="modal-content" data-modal-content></div>
  21835.      </div>
  21836.    </div>
  21837.    
  21838.  
  21839.    
  21840.    
  21841.    
  21842.    <div
  21843.      class="pswp"
  21844.      tabindex="-1"
  21845.      role="dialog"
  21846.      aria-hidden="true"
  21847.      aria-label="Product zoom dialog"
  21848.      data-photoswipe
  21849.    >
  21850.      
  21851.      <div class="pswp__bg"></div>
  21852.  
  21853.      
  21854.      <div class="pswp__scroll-wrap">
  21855.        
  21856.        <div class="pswp__container" aria-hidden="true">
  21857.          <div class="pswp__item"></div>
  21858.          <div class="pswp__item"></div>
  21859.          <div class="pswp__item"></div>
  21860.        </div>
  21861.  
  21862.        
  21863.        <div class="pswp__ui pswp__ui--hidden">
  21864.          <div class="pswp__top-bar">
  21865.            
  21866.            <div class="pswp__counter"></div>
  21867.            <button class="pswp__button pswp__button--close" title="Close">
  21868.              <span tabindex="-1">
  21869.                
  21870.  
  21871.  
  21872.              <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>                                                                                                      
  21873.  
  21874.              </span>
  21875.            </button>
  21876.            <button class="pswp__button pswp__button--share" title="Share"></button>
  21877.            <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
  21878.            <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
  21879.  
  21880.            
  21881.            
  21882.            <div class="pswp__preloader">
  21883.              <div class="pswp__preloader__icn">
  21884.                <div class="pswp__preloader__cut">
  21885.                  <div class="pswp__preloader__donut"></div>
  21886.                </div>
  21887.              </div>
  21888.            </div>
  21889.          </div>
  21890.  
  21891.          <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
  21892.            <div class="pswp__share-tooltip"></div>
  21893.          </div>
  21894.  
  21895.          <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
  21896.          <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button>
  21897.  
  21898.          <div class="pswp__caption">
  21899.            <div class="pswp__caption__center"></div>
  21900.          </div>
  21901.        </div>
  21902.      </div>
  21903.      <div class="product-zoom--thumbnails" data-photoswipe-thumbs>
  21904.        <button
  21905.          class="gallery-navigation--scroll-button scroll-left"
  21906.          aria-label="Scroll thumbnails left"
  21907.          data-gallery-scroll-button
  21908.        >
  21909.          <svg
  21910.  aria-hidden="true"
  21911.  focusable="false"
  21912.  role="presentation"
  21913.  width="14"
  21914.  height="8"
  21915.  viewBox="0 0 14 8"
  21916.  fill="none"
  21917.  xmlns="http://www.w3.org/2000/svg"
  21918. >
  21919.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21920.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21921. </svg>
  21922.  
  21923.        </button>
  21924.        <button
  21925.          class="gallery-navigation--scroll-button scroll-right"
  21926.          aria-label="Scroll thumbnails right"
  21927.          data-gallery-scroll-button
  21928.        >
  21929.          <svg
  21930.  aria-hidden="true"
  21931.  focusable="false"
  21932.  role="presentation"
  21933.  width="14"
  21934.  height="8"
  21935.  viewBox="0 0 14 8"
  21936.  fill="none"
  21937.  xmlns="http://www.w3.org/2000/svg"
  21938. >
  21939.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21940.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21941. </svg>
  21942.  
  21943.        </button>
  21944.        <div class="product-zoom--thumb-scroller" data-photoswipe-thumb-scroller></div>
  21945.      </div>
  21946.    </div>
  21947.    
  21948.  
  21949.    
  21950.    
  21951.    
  21952.    
  21953.    
  21954.  
  21955.    
  21956.  
  21957.    
  21958.  
  21959.      <script>
  21960.        (
  21961.          function () {
  21962.            var classes = {
  21963.              block: 'pxu-lia-block',
  21964.              element: 'pxu-lia-element',
  21965.            };
  21966.  
  21967.            document
  21968.              .querySelectorAll('[type="application/pxs-animation-mapping+json"]')
  21969.              .forEach(function (mappingEl) {
  21970.                const section = mappingEl.parentNode;
  21971.                try {
  21972.                  const mapping = JSON.parse(mappingEl.innerHTML);
  21973.                  mapping.elements.forEach(function (elementSelector) {
  21974.                    section
  21975.                      .querySelectorAll(elementSelector)
  21976.                      .forEach(function (element) { element.classList.add(classes.element); });
  21977.                  });
  21978.  
  21979.                  mapping.blocks.forEach(function (blockSelector) {
  21980.                    section
  21981.                      .querySelectorAll(blockSelector)
  21982.                      .forEach(function (block) { block.classList.add(classes.block); });
  21983.                  });
  21984.                } catch (error) {
  21985.                  console.warn('Unable to parse animation mapping', mappingEl, error);
  21986.                }
  21987.            });
  21988.          }
  21989.        )()
  21990.      </script>
  21991.    
  21992.  
  21993.    <script
  21994.      src="//laptopparts.ca/cdn/shop/t/20/assets/empire.js?v=101264981332624388091749821448"
  21995.      data-scripts
  21996.      data-shopify-api-url="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/api.jquery-5c7ec8e704495947a6ad26f717237512a227840fb65bdc0a32b7de1521602445.js"
  21997.      data-shopify-countries="/services/javascripts/countries.js"
  21998.      data-shopify-common="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/shopify_common-33bb9d312118840468a53f36b59c62c1e8f2b7d1a0a77250db9e300441827470.js"
  21999.      data-shopify-cart="//laptopparts.ca/cdn/shop/t/20/assets/jquery.cart.js?67476"
  22000.      data-pxu-polyfills="//laptopparts.ca/cdn/shop/t/20/assets/polyfills.min.js?v=41774645620324957141712444022"
  22001.    ></script>
  22002.  
  22003.    
  22004.  
  22005.  
  22006.  
  22007.  
  22008.  
  22009.  
  22010.  
  22011.  
  22012.  
  22013.  
  22014.  
  22015.  
  22016.  
  22017.  
  22018. <script type="application/ld+json">
  22019.  {
  22020.    "@context": "http://schema.org",
  22021.    "@type": "WebSite",
  22022.    "name": "LaptopParts.ca",
  22023.    "url": "https://laptopparts.ca"
  22024.  }
  22025. </script>
  22026.  
  22027.  
  22028.    <script>
  22029.      (function () {
  22030.        function handleFirstTab(e) {
  22031.          if (e.keyCode === 9) { // the "I am a keyboard user" key
  22032.            document.body.classList.add('user-is-tabbing');
  22033.            window.removeEventListener('keydown', handleFirstTab);
  22034.          }
  22035.        }
  22036.        window.addEventListener('keydown', handleFirstTab);
  22037.      })();
  22038.    </script>
  22039.  
  22040.    
  22041.      <link href="//laptopparts.ca/cdn/shop/t/20/assets/ripple.css?v=100240391239311985871712444022" rel="stylesheet" type="text/css" media="all" />
  22042.    
  22043.  
  22044.    <script
  22045.      src="//laptopparts.ca/cdn/shop/t/20/assets/instantPage.min.js?v=75111080190164688561712444022"
  22046.      type="module"
  22047.      defer
  22048.    ></script>
  22049.    <script
  22050.      src="//clever-predictive-search.thesupportheroes.com/js/core/main.min.js?timestamp=1698326561&shop=laptoppartsatp.myshopify.com"
  22051.      defer
  22052.    ></script>
  22053. <!-- 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 -->
  22054.     <!-- Shopper Approved - layout/theme.liquid -->  
  22055.    <style>
  22056.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span{
  22057.        vertical-align: -1px;
  22058.      }
  22059.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span:last-child{
  22060.        vertical-align: -1px;
  22061.      }
  22062.      .star_container{
  22063.        height: 24px;
  22064.        margin-bottom: 5px;
  22065.      }
  22066.      .star_container .ind_cnt {
  22067.            display: inline;
  22068.            padding-left: 8px;
  22069.            font-size: 13px;
  22070.            vertical-align: 3px;
  22071.            text-align: center;
  22072.            width: 100%;
  22073.        }
  22074.      #product_just_stars .SA__rating_wrap, #product_just_stars .SA__total_reviews{
  22075.        display: inline !important;
  22076.    }
  22077.    #product_just_stars .SA__review_widget_item .SA__total_reviews a{
  22078.        font-size: 13px !important;
  22079.        vertical-align: 0px !important;
  22080.        /*border-right: 1px solid #000;
  22081.  padding-right: 10px;
  22082.  margin-right: 10px;*/
  22083.  text-decoration: underline;
  22084.    }
  22085.    </style>
  22086.    <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>
  22087.    <!-- END Shopper Approved - layout/theme.liquid -->
  22088.      <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>
  22089. <script type="text/javascript">window.Beacon('init', '4c7bc089-215e-4a80-9d06-25571d96425f')</script>
  22090.        <div id="shopify-block-AN2k5QkMvdUJ0UDFZd__8171265131012698934" class="shopify-block shopify-app-block">
  22091.  
  22092. <input class="OrichiAppEmbed" type="hidden">
  22093. <input
  22094.  class="OrichiCustomerTags"
  22095.  type="hidden"
  22096.  value="" />
  22097. <input
  22098.  class="OrichiCustomerEmail"
  22099.  type="hidden"
  22100.  value="" />
  22101.  
  22102.  
  22103.  
  22104.  
  22105.  
  22106. <script>
  22107.  var orichiDiscount = {
  22108.    productJSPath:
  22109.      'https://cdn.shopify.com/extensions/dffb2068-31d5-4e64-a4e7-30da8b0f9e01/oc-quantity-breaks-limit-612/assets/productpage.min.js'
  22110.    ,
  22111.    cartJSPath:
  22112.      'https://cdn.shopify.com/extensions/dffb2068-31d5-4e64-a4e7-30da8b0f9e01/oc-quantity-breaks-limit-612/assets/cartajax.min.js'
  22113.    ,
  22114.    currencyFormat: "${{amount}}",
  22115.  }
  22116. </script>
  22117.  
  22118.  
  22119.  
  22120.  
  22121.  <script async src="https://cdn.shopify.com/extensions/dffb2068-31d5-4e64-a4e7-30da8b0f9e01/oc-quantity-breaks-limit-612/assets/front.min.js"></script>
  22122.  
  22123.  
  22124. <script>
  22125.  
  22126.    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"}};
  22127.  
  22128. </script>
  22129.  
  22130. </div><div id="shopify-block-AeXdFL3NiTloxRjRUY__14952540001915115444" class="shopify-block shopify-app-block">
  22131.  
  22132.  
  22133.  
  22134.  
  22135. <link id="upcart-stylesheet" rel="preload" href="https://cdn.shopify.com/extensions/bccfb202-2510-4063-93e7-02192eb90e7c/upcart-cart-drawer-147/assets/upcart-stylesheet.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
  22136.  
  22137.  
  22138.  
  22139.  <script defer type="text/javascript" src="https://cdn.shopify.com/extensions/bccfb202-2510-4063-93e7-02192eb90e7c/upcart-cart-drawer-147/assets/upcart-bundle.js"></script>
  22140.  
  22141.  
  22142. <script>
  22143.  
  22144.  function b64DecodeUnicode(str) {
  22145.    try {
  22146.        return decodeURIComponent(
  22147.        atob(str)
  22148.            .split('')
  22149.            .map(function (c) {
  22150.            return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
  22151.            })
  22152.            .join(''),
  22153.        );
  22154.    } catch {
  22155.        return str;
  22156.    }
  22157.  }
  22158. </script>
  22159.  
  22160.  
  22161. <script>
  22162. (function() {
  22163.    window.upcartSettings = {};
  22164.    window.upcartSettings.upcartSettings = {};
  22165.    window.upcartSettings.upcartEditorSettings = {};
  22166.    window.upcartSettings.stickyCartButtonEditorSettings = {};
  22167.  
  22168.    
  22169.    
  22170.    
  22171.  
  22172.    let val;
  22173.  
  22174.    val = b64DecodeUnicode("cmlnaHQ=");
  22175.    if (val === '') {
  22176.        val = b64DecodeUnicode("cmlnaHQ=");
  22177.    }
  22178.    window.upcartSettings.upcartSettings.cartPosition = val;
  22179.  
  22180.    val = b64DecodeUnicode("ZmFsc2U=");
  22181.    if (val === '') {
  22182.        val = b64DecodeUnicode("ZmFsc2U=");
  22183.    }
  22184.    val = JSON.parse(val);
  22185.    window.upcartSettings.upcartSettings.disableSticky = val;
  22186.  
  22187.    val = b64DecodeUnicode("dHJ1ZQ==");
  22188.    if (val === '') {
  22189.        val = b64DecodeUnicode("dHJ1ZQ==");
  22190.    }
  22191.    val = JSON.parse(val);
  22192.    window.upcartSettings.upcartSettings.openOnAddToCart = val;
  22193.  
  22194.    val = b64DecodeUnicode("ZmFsc2U=");
  22195.    if (val === '') {
  22196.        val = b64DecodeUnicode("ZmFsc2U=");
  22197.    }
  22198.    val = JSON.parse(val);
  22199.    window.upcartSettings.upcartSettings.redirectToCart = val;
  22200.  
  22201.    val = b64DecodeUnicode("dHJ1ZQ==");
  22202.    if (val === '') {
  22203.        val = b64DecodeUnicode("ZmFsc2U=");
  22204.    }
  22205.    val = JSON.parse(val);
  22206.    window.upcartSettings.upcartSettings.enableCartSkeletons = val;
  22207.  
  22208.    val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJZb3VyIFNob3BwaW5nIENhcnQiLCJjaGVja291dCI6IlNlY3VyZSBDaGVja291dCDigKIge3t0b3RhbF9wcmljZX19IiwiYWRkVGV4dCI6IkFkZCIsImVtcHR5Q2FydCI6IllvdXIgY2FydCBpcyBlbXB0eSIsImRpc2NvdW50U2F2aW5ncyI6IlNhdmUiLCJjb250aW51ZVNob3BwaW5nIjoiT3IgY29udGludWUgc2hvcHBpbmciLCJ0b3RhbFNhdmluZ3MiOiJEaXNjb3VudHMiLCJzdWJ0b3RhbCI6IlN1YnRvdGFsIn0=");
  22209.    if (val === '') {
  22210.        val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJDYXJ0IOKAoiB7e2NhcnRfcXVhbnRpdHl9fSIsImNoZWNrb3V0IjoiQ2hlY2tvdXQg4oCiIHt7dG90YWxfcHJpY2V9fSIsImFkZFRleHQiOiJBZGQiLCJlbXB0eUNhcnQiOiJZb3VyIGNhcnQgaXMgZW1wdHkiLCJkaXNjb3VudFNhdmluZ3MiOiJTYXZlIiwiY29udGludWVTaG9wcGluZyI6Ik9yIGNvbnRpbnVlIHNob3BwaW5nIiwidG90YWxTYXZpbmdzIjoiRGlzY291bnRzIiwic3VidG90YWwiOiJTdWJ0b3RhbCIsImJ1bmRsZUhpZGVTaW5ndWxhckl0ZW1UZXh0IjoiSGlkZSAxIGl0ZW0iLCJidW5kbGVTaG93U2luZ3VsYXJJdGVtVGV4dCI6IlNob3cgMSBpdGVtIiwiYnVuZGxlSGlkZU11bHRpcGxlSXRlbXNUZXh0IjoiSGlkZSB7TlVNQkVSX09GX0lURU1TfSBpdGVtcyIsImJ1bmRsZVNob3dNdWx0aXBsZUl0ZW1zVGV4dCI6IlNob3cge05VTUJFUl9PRl9JVEVNU30gaXRlbXMifQ==");
  22211.    }
  22212.    val = JSON.parse(val);
  22213.    window.upcartSettings.upcartSettings.translations = val;
  22214.  
  22215.    val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22216.    if (val === '') {
  22217.        val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22218.    }
  22219.    val = JSON.parse(val);
  22220.    window.upcartSettings.upcartSettings.htmlFields = val;
  22221.  
  22222.    val = b64DecodeUnicode("dHJ1ZQ==");
  22223.    if (val === '') {
  22224.        val = b64DecodeUnicode("dHJ1ZQ==");
  22225.    }
  22226.    val = JSON.parse(val);
  22227.    window.upcartSettings.upcartSettings.automaticDiscount = val;
  22228.  
  22229.    val = b64DecodeUnicode("ZmFsc2U=");
  22230.    if (val === '') {
  22231.        val = b64DecodeUnicode("ZmFsc2U=");
  22232.    }
  22233.    val = JSON.parse(val);
  22234.    window.upcartSettings.upcartSettings.basePriceForDiscount = val;
  22235.  
  22236.    val = b64DecodeUnicode("dHJ1ZQ==");
  22237.    if (val === '') {
  22238.        val = b64DecodeUnicode("ZmFsc2U=");
  22239.    }
  22240.    val = JSON.parse(val);
  22241.    window.upcartSettings.upcartSettings.hideSingleUnderscoredProperties = val;
  22242.  
  22243.    val = b64DecodeUnicode("ZmFsc2U=");
  22244.    if (val === '') {
  22245.        val = b64DecodeUnicode("ZmFsc2U=");
  22246.    }
  22247.    val = JSON.parse(val);
  22248.    window.upcartSettings.upcartSettings.showContinueShoppingButton = val;
  22249.  
  22250.    val = b64DecodeUnicode("ZmFsc2U=");
  22251.    if (val === '') {
  22252.        val = b64DecodeUnicode("ZmFsc2U=");
  22253.    }
  22254.    val = JSON.parse(val);
  22255.    window.upcartSettings.upcartSettings.ajaxRaceConditionPrevention = val;
  22256.  
  22257.    val = b64DecodeUnicode("ZmFsc2U=");
  22258.    if (val === '') {
  22259.        val = b64DecodeUnicode("ZmFsc2U=");
  22260.    }
  22261.    val = JSON.parse(val);
  22262.    window.upcartSettings.upcartSettings.htmlFieldForceReRender = val;
  22263.  
  22264.    val = b64DecodeUnicode("ZmFsc2U=");
  22265.    if (val === '') {
  22266.        val = b64DecodeUnicode("ZmFsc2U=");
  22267.    }
  22268.    val = JSON.parse(val);
  22269.    window.upcartSettings.upcartSettings.skipGoogleFonts = val;
  22270.  
  22271.    val = b64DecodeUnicode("ZmFsc2U=");
  22272.    if (val === '') {
  22273.        val = b64DecodeUnicode("ZmFsc2U=");
  22274.    }
  22275.    val = JSON.parse(val);
  22276.    window.upcartSettings.upcartSettings.overrideScrollLocking = val;
  22277.  
  22278.    val = b64DecodeUnicode("MTAw");
  22279.    if (val === '') {
  22280.        val = b64DecodeUnicode("MTAw");
  22281.    }
  22282.    window.upcartSettings.upcartSettings.trafficAllocationPercent = val;
  22283.  
  22284.    val = b64DecodeUnicode("dHJ1ZQ==");
  22285.    if (val === '') {
  22286.        val = b64DecodeUnicode("ZmFsc2U=");
  22287.    }
  22288.    val = JSON.parse(val);
  22289.    window.upcartSettings.upcartSettings.renderCartInShadowDom = val;
  22290.  
  22291.    val = b64DecodeUnicode("dHJ1ZQ==");
  22292.    if (val === '') {
  22293.        val = b64DecodeUnicode("ZmFsc2U=");
  22294.    }
  22295.    val = JSON.parse(val);
  22296.    window.upcartSettings.upcartSettings.cartEventTracking = val;
  22297.  
  22298.    val = b64DecodeUnicode("");
  22299.    if (val === '') {
  22300.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  22301.    }
  22302.    val = JSON.parse(val);
  22303.    window.upcartSettings.upcartSettings.openCartButtonSelection = val;
  22304.  
  22305.    val = b64DecodeUnicode("");
  22306.    if (val === '') {
  22307.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  22308.    }
  22309.    val = JSON.parse(val);
  22310.    window.upcartSettings.upcartSettings.addToCartButtonSelection = val;
  22311.  
  22312.    val = b64DecodeUnicode("bGluZQ==");
  22313.    if (val === '') {
  22314.        val = b64DecodeUnicode("bGluZQ==");
  22315.    }
  22316.    window.upcartSettings.upcartSettings.updateItemIdentifier = val;
  22317.  
  22318.    val = b64DecodeUnicode("Knt9");
  22319.    if (val === '') {
  22320.        val = b64DecodeUnicode("Knt9");
  22321.    }
  22322.    window.upcartSettings.upcartSettings.customCSS = val;
  22323.  
  22324.    val = b64DecodeUnicode("Knt9");
  22325.    if (val === '') {
  22326.        val = b64DecodeUnicode("Knt9");
  22327.    }
  22328.    window.upcartSettings.upcartSettings.customStickyCartCSS = val;
  22329.  
  22330.    val = b64DecodeUnicode("ZmFsc2U=");
  22331.    if (val === '') {
  22332.        val = b64DecodeUnicode("ZmFsc2U=");
  22333.    }
  22334.    val = JSON.parse(val);
  22335.    window.upcartSettings.upcartSettings.integrationZapietEnabled = val;
  22336.  
  22337.    val = b64DecodeUnicode("ZmFsc2U=");
  22338.    if (val === '') {
  22339.        val = b64DecodeUnicode("ZmFsc2U=");
  22340.    }
  22341.    val = JSON.parse(val);
  22342.    window.upcartSettings.upcartSettings.integrationYmqEnabled = val;
  22343.  
  22344.    val = b64DecodeUnicode("");
  22345.    if (val === '') {
  22346.        val = b64DecodeUnicode("eyJzdGF0dXMiOiJESVNBQkxFRCJ9");
  22347.    }
  22348.    val = JSON.parse(val);
  22349.    window.upcartSettings.upcartSettings.customCartBundleInfo = val;
  22350.  
  22351.    val = b64DecodeUnicode("dHJ1ZQ==");
  22352.    if (val === '') {
  22353.        val = b64DecodeUnicode("dHJ1ZQ==");
  22354.    }
  22355.    val = JSON.parse(val);
  22356.    window.upcartSettings.upcartEditorSettings.cartIsEnabled = val;
  22357.  
  22358.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwYTlkMWMiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCJ9fQ==");
  22359.    if (val === '') {
  22360.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwMDAwMDAiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCIsImNhcnRXaWR0aCI6eyJkZXNrdG9wIjoiYmFzZSIsIm1vYmlsZSI6ImZ1bGwifX19");
  22361.    }
  22362.    val = JSON.parse(val);
  22363.    window.upcartSettings.upcartEditorSettings.settingsModule = val;
  22364.  
  22365.    val = b64DecodeUnicode("");
  22366.    if (val === '') {
  22367.        val = b64DecodeUnicode("IzJlYTgxOA==");
  22368.    }
  22369.    window.upcartSettings.upcartEditorSettings.designSettingsCartSavingsTextColor = val;
  22370.  
  22371.    val = b64DecodeUnicode("");
  22372.    if (val === '') {
  22373.        val = b64DecodeUnicode("MS4wLjA=");
  22374.    }
  22375.    window.upcartSettings.upcartEditorSettings.headerModuleVersion = val;
  22376.  
  22377.    val = b64DecodeUnicode("");
  22378.    if (val === '') {
  22379.        val = b64DecodeUnicode("MS4wLjA=");
  22380.    }
  22381.    window.upcartSettings.upcartEditorSettings.announcementModuleVersion = val;
  22382.  
  22383.    val = b64DecodeUnicode("");
  22384.    if (val === '') {
  22385.        val = b64DecodeUnicode("MS4wLjA=");
  22386.    }
  22387.    window.upcartSettings.upcartEditorSettings.upsellsModuleVersion = val;
  22388.  
  22389.    val = b64DecodeUnicode("");
  22390.    if (val === '') {
  22391.        val = b64DecodeUnicode("MS4wLjA=");
  22392.    }
  22393.    window.upcartSettings.upcartEditorSettings.recommendationsModuleVersion = val;
  22394.  
  22395.    val = b64DecodeUnicode("");
  22396.    if (val === '') {
  22397.        val = b64DecodeUnicode("MS4wLjA=");
  22398.    }
  22399.    window.upcartSettings.upcartEditorSettings.notesModuleVersion = val;
  22400.  
  22401.    val = b64DecodeUnicode("");
  22402.    if (val === '') {
  22403.        val = b64DecodeUnicode("MS4wLjA=");
  22404.    }
  22405.    window.upcartSettings.upcartEditorSettings.discountCodeModuleVersion = val;
  22406.  
  22407.    val = b64DecodeUnicode("");
  22408.    if (val === '') {
  22409.        val = b64DecodeUnicode("MS4wLjA=");
  22410.    }
  22411.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleVersion = val;
  22412.  
  22413.    val = b64DecodeUnicode("");
  22414.    if (val === '') {
  22415.        val = b64DecodeUnicode("MS4wLjA=");
  22416.    }
  22417.    window.upcartSettings.upcartEditorSettings.rewardsModuleVersion = val;
  22418.  
  22419.    val = b64DecodeUnicode("");
  22420.    if (val === '') {
  22421.        val = b64DecodeUnicode("MS4wLjA=");
  22422.    }
  22423.    window.upcartSettings.upcartEditorSettings.cartItemsModuleVersion = val;
  22424.  
  22425.    val = b64DecodeUnicode("");
  22426.    if (val === '') {
  22427.        val = b64DecodeUnicode("MS4wLjA=");
  22428.    }
  22429.    window.upcartSettings.upcartEditorSettings.addonsModuleVersion = val;
  22430.  
  22431.    val = b64DecodeUnicode("");
  22432.    if (val === '') {
  22433.        val = b64DecodeUnicode("MS4wLjA=");
  22434.    }
  22435.    window.upcartSettings.upcartEditorSettings.expressPayModuleVersion = val;
  22436.  
  22437.    val = b64DecodeUnicode("");
  22438.    if (val === '') {
  22439.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22440.    }
  22441.    val = JSON.parse(val);
  22442.    window.upcartSettings.upcartEditorSettings.headerModuleCustomJsxTemplates = val;
  22443.  
  22444.    val = b64DecodeUnicode("");
  22445.    if (val === '') {
  22446.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22447.    }
  22448.    val = JSON.parse(val);
  22449.    window.upcartSettings.upcartEditorSettings.announcementModuleCustomJsxTemplates = val;
  22450.  
  22451.    val = b64DecodeUnicode("");
  22452.    if (val === '') {
  22453.        val = b64DecodeUnicode("eyJ1cHNlbGxUaWxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22454.    }
  22455.    val = JSON.parse(val);
  22456.    window.upcartSettings.upcartEditorSettings.upsellsModuleCustomJsxTemplates = val;
  22457.  
  22458.    val = b64DecodeUnicode("");
  22459.    if (val === '') {
  22460.        val = b64DecodeUnicode("eyJyZWNvbW1lbmRhdGlvblRpbGUiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwic2tlbGV0b24iOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfX0=");
  22461.    }
  22462.    val = JSON.parse(val);
  22463.    window.upcartSettings.upcartEditorSettings.recommendationsModuleCustomJsxTemplates = val;
  22464.  
  22465.    val = b64DecodeUnicode("");
  22466.    if (val === '') {
  22467.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22468.    }
  22469.    val = JSON.parse(val);
  22470.    window.upcartSettings.upcartEditorSettings.notesModuleCustomJsxTemplates = val;
  22471.  
  22472.    val = b64DecodeUnicode("");
  22473.    if (val === '') {
  22474.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22475.    }
  22476.    val = JSON.parse(val);
  22477.    window.upcartSettings.upcartEditorSettings.discountModuleCustomJsxTemplates = val;
  22478.  
  22479.    val = b64DecodeUnicode("");
  22480.    if (val === '') {
  22481.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22482.    }
  22483.    val = JSON.parse(val);
  22484.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleCustomJsxTemplates = val;
  22485.  
  22486.    val = b64DecodeUnicode("");
  22487.    if (val === '') {
  22488.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22489.    }
  22490.    val = JSON.parse(val);
  22491.    window.upcartSettings.upcartEditorSettings.rewardsModuleCustomJsxTemplates = val;
  22492.  
  22493.    val = b64DecodeUnicode("");
  22494.    if (val === '') {
  22495.        val = b64DecodeUnicode("eyJza2VsZXRvbiI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJwcm9kdWN0VGlsZSI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJ2YXJpYW50Ijp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByb3BlcnRpZXMiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwiYnVuZGxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByaWNlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22496.    }
  22497.    val = JSON.parse(val);
  22498.    window.upcartSettings.upcartEditorSettings.cartItemsModuleCustomJsxTemplates = val;
  22499.  
  22500.    val = b64DecodeUnicode("");
  22501.    if (val === '') {
  22502.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22503.    }
  22504.    val = JSON.parse(val);
  22505.    window.upcartSettings.upcartEditorSettings.addonsModuleCustomJsxTemplates = val;
  22506.  
  22507.    val = b64DecodeUnicode("");
  22508.    if (val === '') {
  22509.        val = b64DecodeUnicode("YmFzZQ==");
  22510.    }
  22511.    window.upcartSettings.upcartEditorSettings.headerBorderBottom = val;
  22512.  
  22513.    val = b64DecodeUnicode("");
  22514.    if (val === '') {
  22515.        val = b64DecodeUnicode("YmFzZQ==");
  22516.    }
  22517.    window.upcartSettings.upcartEditorSettings.headerHeight = val;
  22518.  
  22519.    val = b64DecodeUnicode("");
  22520.    if (val === '') {
  22521.        val = b64DecodeUnicode("I2ZmZmZmZjAw");
  22522.    }
  22523.    window.upcartSettings.upcartEditorSettings.headerBackgroundColor = val;
  22524.  
  22525.    val = b64DecodeUnicode("");
  22526.    if (val === '') {
  22527.        val = b64DecodeUnicode("eyJ0eXBlIjoiaW5oZXJpdEhlYWRpbmdTdHlsZXMiLCJoZWFkaW5nTGV2ZWwiOiJoMiJ9");
  22528.    }
  22529.    val = JSON.parse(val);
  22530.    window.upcartSettings.upcartEditorSettings.headerTitleContent = val;
  22531.  
  22532.    val = b64DecodeUnicode("");
  22533.    if (val === '') {
  22534.        val = b64DecodeUnicode("c2lkZQ==");
  22535.    }
  22536.    window.upcartSettings.upcartEditorSettings.headerTitleAlignment = val;
  22537.  
  22538.    val = b64DecodeUnicode("");
  22539.    if (val === '') {
  22540.        val = b64DecodeUnicode("dGl0bGVfX2Nsb3NlQnV0dG9u");
  22541.    }
  22542.    window.upcartSettings.upcartEditorSettings.headerElementArrangement = val;
  22543.  
  22544.    val = b64DecodeUnicode("");
  22545.    if (val === '') {
  22546.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMDBjIiwib25Ib3ZlciI6IiMwMDAwMDAxNCJ9");
  22547.    }
  22548.    val = JSON.parse(val);
  22549.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBackgroundColor = val;
  22550.  
  22551.    val = b64DecodeUnicode("");
  22552.    if (val === '') {
  22553.        val = b64DecodeUnicode("eyJiYXNlIjoiIzYzNzM4MSIsIm9uSG92ZXIiOm51bGx9");
  22554.    }
  22555.    val = JSON.parse(val);
  22556.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconColor = val;
  22557.  
  22558.    val = b64DecodeUnicode("");
  22559.    if (val === '') {
  22560.        val = b64DecodeUnicode("c21hbGw=");
  22561.    }
  22562.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconSize = val;
  22563.  
  22564.    val = b64DecodeUnicode("");
  22565.    if (val === '') {
  22566.        val = b64DecodeUnicode("YmFzZQ==");
  22567.    }
  22568.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconStrokeWidth = val;
  22569.  
  22570.    val = b64DecodeUnicode("");
  22571.    if (val === '') {
  22572.        val = b64DecodeUnicode("bm9uZQ==");
  22573.    }
  22574.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderWidth = val;
  22575.  
  22576.    val = b64DecodeUnicode("");
  22577.    if (val === '') {
  22578.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMCIsIm9uSG92ZXIiOm51bGx9");
  22579.    }
  22580.    val = JSON.parse(val);
  22581.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderColor = val;
  22582.  
  22583.    val = b64DecodeUnicode("dHJ1ZQ==");
  22584.    if (val === '') {
  22585.        val = b64DecodeUnicode("ZmFsc2U=");
  22586.    }
  22587.    val = JSON.parse(val);
  22588.    window.upcartSettings.upcartEditorSettings.announcementModule = val;
  22589.  
  22590.    val = b64DecodeUnicode("PHA+PHN0cm9uZz4qKioqKiAgRlJFRSBTSElQUElORyAqKioqKjwvc3Ryb25nPjwvcD4K");
  22591.    if (val === '') {
  22592.        val = b64DecodeUnicode("PHA+WW91ciBwcm9kdWN0cyBhcmUgcmVzZXJ2ZWQgZm9yIDxiPntUSU1FUn08L2I+IG1pbnV0ZXMhPC9wPg==");
  22593.    }
  22594.    window.upcartSettings.upcartEditorSettings.announcementEditor = val;
  22595.  
  22596.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22597.    if (val === '') {
  22598.        val = b64DecodeUnicode("I0NERTBFMA==");
  22599.    }
  22600.    window.upcartSettings.upcartEditorSettings.announcementBackgroundColor = val;
  22601.  
  22602.    val = b64DecodeUnicode("dG9w");
  22603.    if (val === '') {
  22604.        val = b64DecodeUnicode("dG9w");
  22605.    }
  22606.    window.upcartSettings.upcartEditorSettings.announcementModulePosition = val;
  22607.  
  22608.    val = b64DecodeUnicode("IzEwOWMxYw==");
  22609.    if (val === '') {
  22610.        val = b64DecodeUnicode("I0M1RTZGRA==");
  22611.    }
  22612.    window.upcartSettings.upcartEditorSettings.announcementBorderColor = val;
  22613.  
  22614.    val = b64DecodeUnicode("MA==");
  22615.    if (val === '') {
  22616.        val = b64DecodeUnicode("MDA6MDA=");
  22617.    }
  22618.    window.upcartSettings.upcartEditorSettings.announcementTimer = val;
  22619.  
  22620.    val = b64DecodeUnicode("");
  22621.    if (val === '') {
  22622.        val = b64DecodeUnicode("YmFzZQ==");
  22623.    }
  22624.    window.upcartSettings.upcartEditorSettings.announcementHeight = val;
  22625.  
  22626.    val = b64DecodeUnicode("");
  22627.    if (val === '') {
  22628.        val = b64DecodeUnicode("MTU=");
  22629.    }
  22630.    window.upcartSettings.upcartEditorSettings.announcementTextFontSizePx = val;
  22631.  
  22632.    val = b64DecodeUnicode("ZmFsc2U=");
  22633.    if (val === '') {
  22634.        val = b64DecodeUnicode("ZmFsc2U=");
  22635.    }
  22636.    val = JSON.parse(val);
  22637.    window.upcartSettings.upcartEditorSettings.rewardsModule = val;
  22638.  
  22639.    val = b64DecodeUnicode("I0UyRTJFMg==");
  22640.    if (val === '') {
  22641.        val = b64DecodeUnicode("I0UyRTJFMg==");
  22642.    }
  22643.    window.upcartSettings.upcartEditorSettings.rewardsBarBackgroundColor = val;
  22644.  
  22645.    val = b64DecodeUnicode("IzkzRDNGRg==");
  22646.    if (val === '') {
  22647.        val = b64DecodeUnicode("IzkzRDNGRg==");
  22648.    }
  22649.    window.upcartSettings.upcartEditorSettings.rewardsBarForegroundColor = val;
  22650.  
  22651.    val = b64DecodeUnicode("Y2FydFRvdGFs");
  22652.    if (val === '') {
  22653.        val = b64DecodeUnicode("Y2FydFRvdGFs");
  22654.    }
  22655.    window.upcartSettings.upcartEditorSettings.rewardsBasis = val;
  22656.  
  22657.    val = b64DecodeUnicode("ZmFsc2U=");
  22658.    if (val === '') {
  22659.        val = b64DecodeUnicode("ZmFsc2U=");
  22660.    }
  22661.    val = JSON.parse(val);
  22662.    window.upcartSettings.upcartEditorSettings.rewardsProductLinkVisible = val;
  22663.  
  22664.    val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22665.    if (val === '') {
  22666.        val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22667.    }
  22668.    window.upcartSettings.upcartEditorSettings.rewardsTargetType = val;
  22669.  
  22670.    val = b64DecodeUnicode("MTI1");
  22671.    if (val === '') {
  22672.        val = b64DecodeUnicode("MTI1");
  22673.    }
  22674.    window.upcartSettings.upcartEditorSettings.rewardsMinAmount = val;
  22675.  
  22676.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22677.    if (val === '') {
  22678.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22679.    }
  22680.    window.upcartSettings.upcartEditorSettings.rewardsEditor = val;
  22681.  
  22682.    val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22683.    if (val === '') {
  22684.        val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22685.    }
  22686.    window.upcartSettings.upcartEditorSettings.rewardsEditorAfterText = val;
  22687.  
  22688.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22689.    if (val === '') {
  22690.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22691.    }
  22692.    window.upcartSettings.upcartEditorSettings.rewardsEditorForItemCount = val;
  22693.  
  22694.    val = b64DecodeUnicode("NQ==");
  22695.    if (val === '') {
  22696.        val = b64DecodeUnicode("NQ==");
  22697.    }
  22698.    window.upcartSettings.upcartEditorSettings.rewardsItemCount = val;
  22699.  
  22700.    val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22701.    if (val === '') {
  22702.        val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22703.    }
  22704.    val = JSON.parse(val);
  22705.    window.upcartSettings.upcartEditorSettings.rewardsTiers = val;
  22706.  
  22707.    val = b64DecodeUnicode("W10=");
  22708.    if (val === '') {
  22709.        val = b64DecodeUnicode("W10=");
  22710.    }
  22711.    val = JSON.parse(val);
  22712.    window.upcartSettings.upcartEditorSettings.rewardsTierProducts = val;
  22713.  
  22714.    val = b64DecodeUnicode("ZmFsc2U=");
  22715.    if (val === '') {
  22716.        val = b64DecodeUnicode("ZmFsc2U=");
  22717.    }
  22718.    val = JSON.parse(val);
  22719.    window.upcartSettings.upcartEditorSettings.rewardsShowIconWithSingleTier = val;
  22720.  
  22721.    val = b64DecodeUnicode("dHJ1ZQ==");
  22722.    if (val === '') {
  22723.        val = b64DecodeUnicode("ZmFsc2U=");
  22724.    }
  22725.    val = JSON.parse(val);
  22726.    window.upcartSettings.upcartEditorSettings.rewardsShowOnEmptyCart = val;
  22727.  
  22728.    val = b64DecodeUnicode("");
  22729.    if (val === '') {
  22730.        val = b64DecodeUnicode("ZmFsc2U=");
  22731.    }
  22732.    val = JSON.parse(val);
  22733.    window.upcartSettings.upcartEditorSettings.rewardsRemovePreviousProducts = val;
  22734.  
  22735.    val = b64DecodeUnicode("ZmFsc2U=");
  22736.    if (val === '') {
  22737.        val = b64DecodeUnicode("ZmFsc2U=");
  22738.    }
  22739.    val = JSON.parse(val);
  22740.    window.upcartSettings.upcartEditorSettings.recommendationsModule = val;
  22741.  
  22742.    val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22743.    if (val === '') {
  22744.        val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22745.    }
  22746.    window.upcartSettings.upcartEditorSettings.recommendationsHeaderText = val;
  22747.  
  22748.    val = b64DecodeUnicode("ZmFsc2U=");
  22749.    if (val === '') {
  22750.        val = b64DecodeUnicode("ZmFsc2U=");
  22751.    }
  22752.    val = JSON.parse(val);
  22753.    window.upcartSettings.upcartEditorSettings.recommendationsEnableShopNowButton = val;
  22754.  
  22755.    val = b64DecodeUnicode("U2hvcCBOb3c=");
  22756.    if (val === '') {
  22757.        val = b64DecodeUnicode("U2hvcCBOb3c=");
  22758.    }
  22759.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonText = val;
  22760.  
  22761.    val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22762.    if (val === '') {
  22763.        val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22764.    }
  22765.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonURL = val;
  22766.  
  22767.    val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22768.    if (val === '') {
  22769.        val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22770.    }
  22771.    val = JSON.parse(val);
  22772.    window.upcartSettings.upcartEditorSettings.recommendationItems = val;
  22773.  
  22774.    val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22775.    if (val === '') {
  22776.        val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22777.    }
  22778.    window.upcartSettings.upcartEditorSettings.recommendationsProductRecommendationsHeaderText = val;
  22779.  
  22780.    val = b64DecodeUnicode("Mw==");
  22781.    if (val === '') {
  22782.        val = b64DecodeUnicode("Mw==");
  22783.    }
  22784.    window.upcartSettings.upcartEditorSettings.recommendationsMaxRecommendationsToShow = val;
  22785.  
  22786.    val = b64DecodeUnicode("dmVydGljYWw=");
  22787.    if (val === '') {
  22788.        val = b64DecodeUnicode("dmVydGljYWw=");
  22789.    }
  22790.    window.upcartSettings.upcartEditorSettings.recommendationsDirection = val;
  22791.  
  22792.    val = b64DecodeUnicode("dHJ1ZQ==");
  22793.    if (val === '') {
  22794.        val = b64DecodeUnicode("ZmFsc2U=");
  22795.    }
  22796.    val = JSON.parse(val);
  22797.    window.upcartSettings.upcartEditorSettings.upsellsModule = val;
  22798.  
  22799.    val = b64DecodeUnicode("dmVydGljYWw=");
  22800.    if (val === '') {
  22801.        val = b64DecodeUnicode("aG9yaXpvbnRhbA==");
  22802.    }
  22803.    window.upcartSettings.upcartEditorSettings.upsellsDirection = val;
  22804.  
  22805.    val = b64DecodeUnicode("PHA+PC9wPgo=");
  22806.    if (val === '') {
  22807.        val = b64DecodeUnicode("WW91J2xsIGxvdmUgdGhlc2U=");
  22808.    }
  22809.    window.upcartSettings.upcartEditorSettings.upsellsTitle = val;
  22810.  
  22811.    val = b64DecodeUnicode("Mw==");
  22812.    if (val === '') {
  22813.        val = b64DecodeUnicode("MTA=");
  22814.    }
  22815.    window.upcartSettings.upcartEditorSettings.maximumUpsellsToShow = val;
  22816.  
  22817.    val = b64DecodeUnicode("dHJ1ZQ==");
  22818.    if (val === '') {
  22819.        val = b64DecodeUnicode("ZmFsc2U=");
  22820.    }
  22821.    val = JSON.parse(val);
  22822.    window.upcartSettings.upcartEditorSettings.upsellsShouldLimit = val;
  22823.  
  22824.    val = b64DecodeUnicode("ZmFsc2U=");
  22825.    if (val === '') {
  22826.        val = b64DecodeUnicode("ZmFsc2U=");
  22827.    }
  22828.    val = JSON.parse(val);
  22829.    window.upcartSettings.upcartEditorSettings.upsellsTrigger = val;
  22830.  
  22831.    val = b64DecodeUnicode("ZmFsc2U=");
  22832.    if (val === '') {
  22833.        val = b64DecodeUnicode("ZmFsc2U=");
  22834.    }
  22835.    val = JSON.parse(val);
  22836.    window.upcartSettings.upcartEditorSettings.showUpsellItemsAlreadyInCart = val;
  22837.  
  22838.    val = b64DecodeUnicode("W3siaWQiOiI1MjM2MyIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzczODc4NDc3ODY1ODMiLCJzaG9ydElkIjoiNzM4Nzg0Nzc4NjU4MyIsInZhcmlhbnRzIjpbIjQxNjE0OTYwODg1ODQ3Il0sImhhbmRsZSI6IjEtMTAtMTAwcGNzLXVzYi0yLTAtMmdiLTRnYi04Z2ItMTZnYi0zMmdiLTY0Z2ItMTI4Z2ItdXNiLWZsYXNoLWRyaXZlcy1sb3QiLCJ0aXRsZSI6Ik5ldyAxMjhHQiBVU0IgRmxhc2ggRHJpdmVzIFVTQiAyLjAgQmxhY2sgYW5kIFNpbHZlciAtIExJUVVJREFUSU9OIFNBTEUiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvcy1sMTAwMF8yODUxNWNhZC1lMjNlLTRjNWItOGU4YS05OTUxNjY3ZDVjZDgud2VicD92PTE3NDIzMjMyNjYifV19fSx7ImlkIjoiMzQzODMiLCJ2IjoyLCJ0cmlnZ2VyIjp7Im9uIjoiYWxsIn0sInVwc2VsbCI6eyJ0eXBlIjoiUHJvZHVjdCIsInByb2R1Y3RzIjpbeyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC82NTcwNjIxNTk5ODMxIiwic2hvcnRJZCI6IjY1NzA2MjE1OTk4MzEiLCJ2YXJpYW50cyI6WyIzOTMzMzgxODI2OTc4MyJdLCJoYW5kbGUiOiIzbS1zdGlja2VyLWRvdWJsZS1zaWRlZC10YXBlLWFkaGVzaXZlLWZvci1jZWxsLXBob25lLWNvbXB1dGVyLXJlcGFpciIsInRpdGxlIjoiTmV3IEJsYWNrIDNNIFN0aWNrZXIgRG91YmxlIFNpZGVkIFRhcGUgQWRoZXNpdmUgRm9yIENlbGwgUGhvbmUgJiBDb21wdXRlciBSZXBhaXJzIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL3RhcGUyLmpwZz92PTE3Mjg5MjMwNzAifV19fSx7ImlkIjoiNTcwOTQiLCJ2IjoyLCJ0cmlnZ2VyIjp7Im9uIjoiYWxsIn0sInVwc2VsbCI6eyJ0eXBlIjoiUHJvZHVjdCIsInByb2R1Y3RzIjpbeyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC83MzIzODg0MDI3OTkxIiwic2hvcnRJZCI6IjczMjM4ODQwMjc5OTEiLCJ2YXJpYW50cyI6WyI0MTM2MDU4MjkzNDYxNSJdLCJoYW5kbGUiOiIxMTUtaW4tMS1tYWduZXRpYy1wcmVjaXNpb24tc2NyZXdkcml2ZXItc2V0LXBjLXBob25lLWVsZWN0cm9uaWNzLXJlcGFpci10b29sLWtpdCIsInRpdGxlIjoiTmV3IExhcHRvcCBSZXBhaXIgVG9vbCBraXQgMTE1IGluIDEgTWFnbmV0aWMgUHJlY2lzaW9uIFNjcmV3ZHJpdmVyIFNldCIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9zLWwxMDAwXzUxNmUwMjY0LWRjZjMtNDU3Zi1iNTJiLWI4MDc2ZjE0MDBiMi53ZWJwP3Y9MTczMTQyMDU0OCJ9XX19XQ==");
  22839.    if (val === '') {
  22840.        val = b64DecodeUnicode("W3siX2lkIjoiIiwidHJpZ2dlciI6bnVsbCwidXBzZWxsIjpudWxsfV0=");
  22841.    }
  22842.    val = JSON.parse(val);
  22843.    window.upcartSettings.upcartEditorSettings.upsellsItems = val;
  22844.  
  22845.    val = b64DecodeUnicode("Ym90dG9t");
  22846.    if (val === '') {
  22847.        val = b64DecodeUnicode("Ym90dG9t");
  22848.    }
  22849.    window.upcartSettings.upcartEditorSettings.upsellsModulePosition = val;
  22850.  
  22851.    val = b64DecodeUnicode("ZmFsc2U=");
  22852.    if (val === '') {
  22853.        val = b64DecodeUnicode("ZmFsc2U=");
  22854.    }
  22855.    val = JSON.parse(val);
  22856.    window.upcartSettings.upcartEditorSettings.recommendedUpsells = val;
  22857.  
  22858.    val = b64DecodeUnicode("ZmFsc2U=");
  22859.    if (val === '') {
  22860.        val = b64DecodeUnicode("ZmFsc2U=");
  22861.    }
  22862.    val = JSON.parse(val);
  22863.    window.upcartSettings.upcartEditorSettings.smartVariantMatching = val;
  22864.  
  22865.    val = b64DecodeUnicode("cmVsYXRlZA==");
  22866.    if (val === '') {
  22867.        val = b64DecodeUnicode("cmVsYXRlZA==");
  22868.    }
  22869.    window.upcartSettings.upcartEditorSettings.upsellRecommendationIntent = val;
  22870.  
  22871.    val = b64DecodeUnicode("");
  22872.    if (val === '') {
  22873.        val = b64DecodeUnicode("bm8tcHJvZHVjdHM=");
  22874.    }
  22875.    window.upcartSettings.upcartEditorSettings.upsellProductReviews = val;
  22876.  
  22877.    val = b64DecodeUnicode("");
  22878.    if (val === '') {
  22879.        val = b64DecodeUnicode("KHt7UkVWSUVXX0NPVU5UfX0gcmV2aWV3cyk=");
  22880.    }
  22881.    window.upcartSettings.upcartEditorSettings.upsellProductReviewsTextTemplate = val;
  22882.  
  22883.    val = b64DecodeUnicode("dHJ1ZQ==");
  22884.    if (val === '') {
  22885.        val = b64DecodeUnicode("ZmFsc2U=");
  22886.    }
  22887.    val = JSON.parse(val);
  22888.    window.upcartSettings.upcartEditorSettings.addonsModule = val;
  22889.  
  22890.    val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjp0cnVlLCJwcm9kdWN0SGFuZGxlIjoic2hpcHBpbmctcHJvdGVjdGlvbiIsImRlZmF1bHRCZWhhdmlvciI6dHJ1ZSwidGllcnMiOlt7Im1heENhcnRUb3RhbCI6OTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjMuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk0NDc5MSJ9LHsibWF4Q2FydFRvdGFsIjoxOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjQuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk3NzU1OSJ9LHsibWF4Q2FydFRvdGFsIjoyOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjUuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDAxMDMyNyJ9LHsibWF4Q2FydFRvdGFsIjozOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjYuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDA0MzA5NSJ9LHsibWF4Q2FydFRvdGFsIjpudWxsLCJ0ZW1wb3JhcnlEYXRhRm9yQWRtaW4iOnsidmFyaWFudFByaWNlIjo3Ljk5fSwidmFyaWFudElkIjoiNDEzNjU2MDAwNzU4NjMifV0sInVzZVByZURpc2NvdW50ZWRUb3RhbCI6dHJ1ZX0sInByb2R1Y3RBZGRvbiI6eyJhY3RpdmUiOmZhbHNlLCJwcm9kdWN0SGFuZGxlIjpudWxsLCJwcm9kdWN0IjpudWxsLCJkZWZhdWx0QmVoYXZpb3IiOmZhbHNlfX0=");
  22891.    if (val === '') {
  22892.        val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjpmYWxzZSwicHJvZHVjdEhhbmRsZSI6bnVsbCwidGllcnMiOltdLCJ1c2VQcmVEaXNjb3VudGVkVG90YWwiOmZhbHNlfSwicHJvZHVjdEFkZG9uIjp7ImFjdGl2ZSI6ZmFsc2UsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGx9fQ==");
  22893.    }
  22894.    val = JSON.parse(val);
  22895.    window.upcartSettings.upcartEditorSettings.addonsField = val;
  22896.  
  22897.    val = b64DecodeUnicode("dHJ1ZQ==");
  22898.    if (val === '') {
  22899.        val = b64DecodeUnicode("ZmFsc2U=");
  22900.    }
  22901.    val = JSON.parse(val);
  22902.    window.upcartSettings.upcartEditorSettings.addonsShouldBeCounted = val;
  22903.  
  22904.    val = b64DecodeUnicode("dHJ1ZQ==");
  22905.    if (val === '') {
  22906.        val = b64DecodeUnicode("ZmFsc2U=");
  22907.    }
  22908.    val = JSON.parse(val);
  22909.    window.upcartSettings.upcartEditorSettings.notesModule = val;
  22910.  
  22911.    val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zIC0gTGFwdG9wIG1vZGVsIE51bWJlcjwvcD4K");
  22912.    if (val === '') {
  22913.        val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zPC9wPg==");
  22914.    }
  22915.    window.upcartSettings.upcartEditorSettings.notesTitle = val;
  22916.  
  22917.    val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22918.    if (val === '') {
  22919.        val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22920.    }
  22921.    window.upcartSettings.upcartEditorSettings.notesPlaceholder = val;
  22922.  
  22923.    val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22924.    if (val === '') {
  22925.        val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22926.    }
  22927.    window.upcartSettings.upcartEditorSettings.notesPlacement = val;
  22928.  
  22929.    val = b64DecodeUnicode("dHJ1ZQ==");
  22930.    if (val === '') {
  22931.        val = b64DecodeUnicode("ZmFsc2U=");
  22932.    }
  22933.    val = JSON.parse(val);
  22934.    window.upcartSettings.upcartEditorSettings.trustBadgesModule = val;
  22935.  
  22936.    val = b64DecodeUnicode("eyJ1cmwiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL1VwY2FydF9UcnVzdF9CYWRnZV8xNzM5ODgzNjUyMjIxLmpwZz92PTE3Mzk4ODM2NjEiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  22937.    if (val === '') {
  22938.        val = b64DecodeUnicode("eyJ1cmwiOiIiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  22939.    }
  22940.    val = JSON.parse(val);
  22941.    window.upcartSettings.upcartEditorSettings.trustBadges = val;
  22942.  
  22943.    val = b64DecodeUnicode("dHJ1ZQ==");
  22944.    if (val === '') {
  22945.        val = b64DecodeUnicode("ZmFsc2U=");
  22946.    }
  22947.    val = JSON.parse(val);
  22948.    window.upcartSettings.upcartEditorSettings.discountCodeModule = val;
  22949.  
  22950.    val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  22951.    if (val === '') {
  22952.        val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  22953.    }
  22954.    window.upcartSettings.upcartEditorSettings.discountCodePlaceholder = val;
  22955.  
  22956.    val = b64DecodeUnicode("QXBwbHk=");
  22957.    if (val === '') {
  22958.        val = b64DecodeUnicode("QXBwbHk=");
  22959.    }
  22960.    window.upcartSettings.upcartEditorSettings.discountCodeButtonText = val;
  22961.  
  22962.    val = b64DecodeUnicode("ZmFsc2U=");
  22963.    if (val === '') {
  22964.        val = b64DecodeUnicode("ZmFsc2U=");
  22965.    }
  22966.    val = JSON.parse(val);
  22967.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesModule = val;
  22968.  
  22969.    val = b64DecodeUnicode("ZmFsc2U=");
  22970.    if (val === '') {
  22971.        val = b64DecodeUnicode("ZmFsc2U=");
  22972.    }
  22973.    val = JSON.parse(val);
  22974.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesPreventDowngrades = val;
  22975.  
  22976.    val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  22977.    if (val === '') {
  22978.        val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  22979.    }
  22980.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesButtonText = val;
  22981.  
  22982.    val = b64DecodeUnicode("ZmFsc2U=");
  22983.    if (val === '') {
  22984.        val = b64DecodeUnicode("ZmFsc2U=");
  22985.    }
  22986.    val = JSON.parse(val);
  22987.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsTextOverride = val;
  22988.  
  22989.    val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  22990.    if (val === '') {
  22991.        val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  22992.    }
  22993.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsText = val;
  22994.  
  22995.    val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  22996.    if (val === '') {
  22997.        val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  22998.    }
  22999.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOneTimePurchaseText = val;
  23000.  
  23001.    val = b64DecodeUnicode("dHJ1ZQ==");
  23002.    if (val === '') {
  23003.        val = b64DecodeUnicode("ZmFsc2U=");
  23004.    }
  23005.    val = JSON.parse(val);
  23006.    window.upcartSettings.upcartEditorSettings.expressPayModule = val;
  23007.  
  23008.    val = b64DecodeUnicode("W10=");
  23009.    if (val === '') {
  23010.        val = b64DecodeUnicode("W10=");
  23011.    }
  23012.    val = JSON.parse(val);
  23013.    window.upcartSettings.upcartEditorSettings.expressPayEnabledGateways = val;
  23014.  
  23015.    val = b64DecodeUnicode("MQ==");
  23016.    if (val === '') {
  23017.        val = b64DecodeUnicode("MQ==");
  23018.    }
  23019.    window.upcartSettings.upcartEditorSettings.expressPayVersion = val;
  23020.  
  23021.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  23022.    if (val === '') {
  23023.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  23024.    }
  23025.    val = JSON.parse(val);
  23026.    window.upcartSettings.upcartEditorSettings.expressPayAcceleratedCheckoutStyles = val;
  23027.  
  23028.    val = b64DecodeUnicode("dHJ1ZQ==");
  23029.    if (val === '') {
  23030.        val = b64DecodeUnicode("dHJ1ZQ==");
  23031.    }
  23032.    val = JSON.parse(val);
  23033.    window.upcartSettings.upcartEditorSettings.expressPayHideBuyerConsent = val;
  23034.  
  23035.    val = b64DecodeUnicode("ZmFsc2U=");
  23036.    if (val === '') {
  23037.        val = b64DecodeUnicode("ZmFsc2U=");
  23038.    }
  23039.    val = JSON.parse(val);
  23040.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartButtonIsEnabled = val;
  23041.  
  23042.    val = b64DecodeUnicode("IzQzYmUwYQ==");
  23043.    if (val === '') {
  23044.        val = b64DecodeUnicode("IzAwMDAwMA==");
  23045.    }
  23046.    window.upcartSettings.stickyCartButtonEditorSettings.backgroundColor = val;
  23047.  
  23048.    val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23049.    if (val === '') {
  23050.        val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23051.    }
  23052.    window.upcartSettings.stickyCartButtonEditorSettings.deviceSettings = val;
  23053.  
  23054.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23055.    if (val === '') {
  23056.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23057.    }
  23058.    window.upcartSettings.stickyCartButtonEditorSettings.iconColor = val;
  23059.  
  23060.    val = b64DecodeUnicode("c3RhbmRhcmRDYXJ0");
  23061.    if (val === '') {
  23062.        val = b64DecodeUnicode("c3F1YXJlQmFn");
  23063.    }
  23064.    window.upcartSettings.stickyCartButtonEditorSettings.iconStyle = val;
  23065.  
  23066.    val = b64DecodeUnicode("I2U0MjYyNg==");
  23067.    if (val === '') {
  23068.        val = b64DecodeUnicode("I2U0MjYyNg==");
  23069.    }
  23070.    window.upcartSettings.stickyCartButtonEditorSettings.quantityBackgroundColor = val;
  23071.  
  23072.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23073.    if (val === '') {
  23074.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23075.    }
  23076.    window.upcartSettings.stickyCartButtonEditorSettings.quantityTextColor = val;
  23077.  
  23078.    val = b64DecodeUnicode("Y2VudGVyUmlnaHQ=");
  23079.    if (val === '') {
  23080.        val = b64DecodeUnicode("Ym90dG9tUmlnaHQ=");
  23081.    }
  23082.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartPosition = val;
  23083.  
  23084. })();
  23085. </script>
  23086.  
  23087.  
  23088.  
  23089.  
  23090.  <div id="upcart-additional-checkout-buttons" style="position: absolute !important; margin-left: -9999px !important; display: block !important;" class="additional-checkout-buttons">
  23091.    
  23092.    <div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
  23093.    <div class="upcart-additional-checkout-buttons-svgs">
  23094.  
  23095.      
  23096.  
  23097.      
  23098.  
  23099.      
  23100.  
  23101.      
  23102.  
  23103.      
  23104.  
  23105.      
  23106.    </div>
  23107.  </div>
  23108.  
  23109.  
  23110.  
  23111.  
  23112. <script>
  23113.  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};
  23114.  window.upcartMoneyFormat = "${{amount}}";
  23115.  window.upcartStorefrontPublicAccessToken = '53e72a50badb7e504187b4c7431817bf' || undefined;
  23116.  window.upcartClientLocalizationCountry = {
  23117.    isoCode: 'CA',
  23118.    currency: 'CurrencyDrop',
  23119.    name: 'Canada'
  23120.  };
  23121.  window.upcartMyShopifyDomain = 'laptoppartsatp.myshopify.com';
  23122. </script>
  23123.  
  23124. <script>
  23125.  window.upcartPreloadedCart.items = window.upcartPreloadedCart.items.map((line) => {
  23126.    
  23127.  
  23128.    return line;
  23129.  });
  23130. </script>
  23131.  
  23132. <div id="upCart"></div>
  23133. <div id="upCartStickyButton"></div>
  23134.  
  23135. <style id="upCart-customCSS">
  23136.  *{}
  23137. </style>
  23138.  
  23139.  
  23140. </div><div id="shopify-block-AcThYNTRkUW1SdzMyZ__6610233760104865948" class="shopify-block shopify-app-block"><script>
  23141.  window.pushowlSubdomain = "laptoppartsatp.myshopify.com".split(".")[0]
  23142.  window.isPushowlThemeAppExtentionEnabled = true
  23143.  window.pushowlGUID = "3c58d84c-8b16-4e81-aa63-9d393b1c8bb2"
  23144.  window.pushowlEnvironment = "production"
  23145. </script>
  23146.  
  23147.  
  23148.  
  23149.  
  23150. </div></body>
  23151. </html>
  23152.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda