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

Source: https://laptopparts.ca

  1. <!doctype html>
  2. <html class="no-js no-touch" lang="en">
  3.  <head>
  4.    <!-- Google tag (gtag.js) -->
  5.    <script async src="https://www.googletagmanager.com/gtag/js?id=AW-977549716"></script>
  6.    <script>
  7.      window.dataLayer = window.dataLayer || [];
  8.      function gtag(){dataLayer.push(arguments);}
  9.      gtag('js', new Date());
  10.  
  11.      gtag('config', 'AW-977549716');
  12.    </script>
  13.    <!-- Google Tag Manager -->
  14.    <script>
  15.      (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  16.      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  17.      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  18.      'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  19.      })(window,document,'script','dataLayer','GTM-WDHHF23');
  20.    </script>
  21.    <!-- End Google Tag Manager -->
  22.    <script>  
  23.  /**
  24.  * Author: shipon islam
  25.  * Version: 1.1.0
  26.  * Last Update: 17 Sep 2023
  27.  */
  28.  
  29.  (function() {
  30.      class GTM_DataLayer {
  31.        constructor() {
  32.          window.dataLayer = window.dataLayer || [];
  33.          this.formattedItemId = true;
  34.  
  35.          this.miniCartButtonSelector = [
  36.            // 'a[href="/cart"]',
  37.          ];
  38.  
  39.          this.beginCheckoutbuttons = [
  40.            'button[name="checkout"]',
  41.            '.additional-checkout-buttons',
  42.          ];
  43.  
  44.          this.shopifyDeirectPaymentButtonLink = [
  45.            '.shopify-payment-button'
  46.          ]
  47.  
  48.          this.isAjaxCartIncrementDecrement = true;
  49.  
  50.          this.addToWishListSelectors = {
  51.            'addWishListIcon': '',
  52.            'gridItemSelector': '',
  53.            'productLinkSelector': ''
  54.          }
  55.  
  56.          this.quickViewSelector = {
  57.            'quickViewElement': '',
  58.            'gridItemSelector': '',
  59.            'productLinkSelector': ''
  60.          }
  61.          this.cart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"CAD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
  62.          this.countryCode = "CA";
  63.          this.collectData();          
  64.        }
  65.  
  66.        updateCart() {
  67.          fetch("/cart.js")
  68.          .then((response) => response.json())
  69.          .then((data) => {
  70.            this.cart = data;
  71.          });
  72.        }
  73.  
  74.        collectData() {
  75.            this.customerData();
  76.            this.ajaxRequestData();
  77.            this.miniCartData();
  78.            this.beginCheckoutData();
  79.  
  80.            
  81.  
  82.            
  83.  
  84.            
  85.            
  86.            this.addToWishListData();
  87.            this.quickViewData();
  88.            this.newsletterSignupData();
  89.        }
  90.  
  91.        //logged in customer data
  92.        customerData() {
  93.            const currentUser = {};
  94.            
  95.  
  96.            window.dataLayer = window.dataLayer || [];
  97.            dataLayer.push({
  98.              customer: currentUser
  99.            })
  100.        }
  101.  
  102.        // shipon_add_to_cart, shipon_remove_from_cart
  103.        ajaxRequestData() {
  104.          const self = this;
  105.          let originalFetch = window.fetch;
  106.          
  107.          window.fetch = function () {
  108.            return originalFetch.apply(this, arguments).then((response) => {
  109.              if (response.ok) {
  110.                let cloneResponse = response.clone();
  111.                // add to cart
  112.                if (arguments[0].includes("/cart/add.js") || arguments[0].includes("/cart/add")) {
  113.                  cloneResponse.text().then((text) => {
  114.                    let item = JSON.parse(text);
  115.                    self.singleCartItemDataLayer('shipon_add_to_cart', item);
  116.                    self.updateCart();
  117.                  });
  118.                }else if(arguments[0].includes("/cart/change")) {
  119.                   cloneResponse.text().then((text) => {
  120.                    let newCart = JSON.parse(text);
  121.                    let newCartItems = newCart.items;
  122.                    let oldCartItems = self.cart.items;
  123.  
  124.                    for(let i = 0; i < oldCartItems.length; i++) {
  125.                      let item = oldCartItems[i];
  126.                      let newItem = newCartItems.find(newItems => newItems.id === item.id);
  127.  
  128.  
  129.                      if(newItem) {
  130.  
  131.                        if(newItem.quantity > item.quantity) {
  132.                          // cart item increment
  133.                          let quantity = (newItem.quantity - item.quantity);
  134.                          let updatedItem = {...item, quantity}
  135.                          self.singleCartItemDataLayer('shipon_add_to_cart', updatedItem);
  136.                          self.updateCart();
  137.  
  138.                        }else if(newItem.quantity < item.quantity) {
  139.                          // cart item decrement
  140.                          let quantity = (item.quantity - newItem.quantity);
  141.                          let updatedItem = {...item, quantity}
  142.                          self.singleCartItemDataLayer('shipon_remove_from_cart', updatedItem);
  143.                          self.updateCart();
  144.                        }
  145.                        
  146.  
  147.                      }else {
  148.                        self.singleCartItemDataLayer('shipon_remove_from_cart', item);
  149.                        self.updateCart();
  150.                      }
  151.                    }
  152.                  });
  153.                }
  154.              }
  155.              return response;
  156.            });
  157.          }
  158.        }
  159.  
  160.        // shipon_view_cart
  161.        miniCartData() {
  162.          if(this.miniCartButtonSelector.length) {
  163.            let self = this;
  164.            this.miniCartButtonSelector.forEach((selector) => {
  165.              let miniCartButton = document.querySelector(selector);
  166.              if(miniCartButton) {
  167.                miniCartButton.addEventListener('click', () => {
  168.                  self.cartItemsDataLayer('shipon_view_cart', self.cart);
  169.                });
  170.              }
  171.            });
  172.          }
  173.        }
  174.  
  175.        // shipon_begin_checkout
  176.        beginCheckoutData() {
  177.          let self = this;
  178.          document.addEventListener('click', () => {
  179.            let targetElement = event.target.closest(self.beginCheckoutbuttons.join(', '));
  180.            if(targetElement) {
  181.              self.cartItemsDataLayer('shipon_begin_checkout', self.cart);
  182.            }
  183.          });
  184.        }
  185.  
  186.        // shipon_view_cart, shipon_add_to_cart, shipon_remove_from_cart
  187.        viewCartPageData() {
  188.          
  189.          this.cartItemsDataLayer('shipon_view_cart', this.cart);
  190.  
  191.          //if cart quantity chagne reload page
  192.          if(!this.isAjaxCartIncrementDecrement) {
  193.            const self = this;
  194.            document.addEventListener('pointerdown', (event) => {
  195.              const target = event.target.closest('a[href*="/cart/change?"]');
  196.              if(target) {
  197.                const linkUrl = target.getAttribute('href');
  198.                const queryString = linkUrl.split("?")[1];
  199.                const urlParams = new URLSearchParams(queryString);
  200.                const newQuantity = urlParams.get("quantity");
  201.                const line = urlParams.get("line");
  202.                const cart_id = urlParams.get("id");
  203.        
  204.                
  205.                if(newQuantity && (line || cart_id)) {
  206.                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
  207.        
  208.                  let event = 'shipon_add_to_cart';
  209.                  if(newQuantity < item.quantity) {
  210.                    event = 'shipon_remove_from_cart';
  211.                  }
  212.        
  213.                  let quantity = Math.abs(newQuantity - item.quantity);
  214.                  item['quantity'] = quantity;
  215.        
  216.                  self.singleCartItemDataLayer(event, item);
  217.                }
  218.              }
  219.            });
  220.          }
  221.        }
  222.  
  223.        productSinglePage() {
  224.        
  225.        }
  226.  
  227.        collectionsPageData() {
  228.          var ecommerce = {
  229.            'items': [
  230.              
  231.              ]
  232.          };
  233.  
  234.          ecommerce['item_list_id'] = null
  235.          ecommerce['item_list_name'] = null
  236.  
  237.          this.cartItemsDataLayer('shipon_view_item_list', ecommerce);
  238.        }
  239.        
  240.        
  241.        // add to wishlist
  242.        addToWishListData() {
  243.          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
  244.            const self = this;
  245.            document.addEventListener('pointerdown', (event) => {
  246.              let target = event.target;
  247.              
  248.              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
  249.                let pageULR = window.location.href.replace(/\?.+/, '');
  250.                let requestURL = undefined;
  251.          
  252.                if(/\/products\/[^/]+$/.test(pageULR)) {
  253.                  requestURL = pageULR;
  254.                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
  255.                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
  256.                  if(itemElement) {
  257.                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
  258.                    if(linkElement) {
  259.                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  260.                      if(link && /\/products\/[^/]+$/.test(link)) {
  261.                        requestURL = link;
  262.                      }
  263.                    }
  264.                  }
  265.                }
  266.  
  267.                if(requestURL) {
  268.                  fetch(requestURL + '.json')
  269.                    .then(res => res.json())
  270.                    .then(result => {
  271.                      let data = result.product;                    
  272.                      if(data) {
  273.                        let dataLayerData = {
  274.                         product_id: data.id,
  275.                            variant_id: data.variants[0].id,
  276.                            product_title: data.title,
  277.                         quantity: 1,
  278.                         final_price: parseFloat(data.variants[0].price) * 100,
  279.                         total_discount: 0,
  280.                         product_type: data.product_type,
  281.                         vendor: data.vendor,
  282.                         variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  283.                         sku: data.variants[0].sku,
  284.                        }
  285.  
  286.                        self.singleCartItemDataLayer('shipon_add_to_wishlist', dataLayerData);
  287.                      }
  288.                    });
  289.                }
  290.              }
  291.            });
  292.          }
  293.        }
  294.  
  295.        quickViewData() {
  296.          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
  297.            const self = this;
  298.            document.addEventListener('pointerdown', (event) => {
  299.              let target = event.target;
  300.              if(target.closest(self.quickViewSelector.quickViewElement)) {
  301.                let requestURL = undefined;
  302.                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
  303.                
  304.                if(itemElement) {
  305.                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
  306.                  if(linkElement) {
  307.                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  308.                    if(link && /\/products\/[^/]+$/.test(link)) {
  309.                      requestURL = link;
  310.                    }
  311.                  }
  312.                }  
  313.                
  314.                if(requestURL) {
  315.                    fetch(requestURL + '.json')
  316.                      .then(res => res.json())
  317.                      .then(result => {
  318.                        let data = result.product;                    
  319.                        if(data) {
  320.                          let dataLayerData = {
  321.                           product_id: data.id,
  322.                            variant_id: data.variants[0].id,
  323.                            product_title: data.title,
  324.                           quantity: 1,
  325.                           final_price: parseFloat(data.variants[0].price) * 100,
  326.                           total_discount: 0,
  327.                           product_type: data.product_type,
  328.                           vendor: data.vendor,
  329.                           variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  330.                           sku: data.variants[0].sku,
  331.                          }
  332.  
  333.                          self.singleCartItemDataLayer('shipon_view_item', dataLayerData);
  334.                          self.quickViewVariants = data.variants;
  335.                          self.quickViewedItem = dataLayerData;
  336.                        }
  337.                      });
  338.                  }
  339.              }
  340.            });
  341.  
  342.            
  343.              if(this.shopifyDeirectPaymentButtonLink.length) {
  344.                let self = this;
  345.                document.addEventListener('pointerdown', (event) => {
  346.                  let target = event.target;
  347.                  let checkoutButton = event.target.closest(this.shopifyDeirectPaymentButtonLink.join(', '));
  348.                  
  349.                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
  350.  
  351.                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
  352.                    if(checkoutForm) {
  353.                        let quantity = 1;
  354.                        let varientInput = checkoutForm.querySelector('input[name="id"]');
  355.                        let quantitySelector = checkoutForm.getAttribute('id');
  356.  
  357.                        if(quantitySelector) {
  358.                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
  359.                          if(quentityInput) {
  360.                              quantity = +quentityInput.value;
  361.                          }
  362.                        }
  363.  
  364.                        if(varientInput) {
  365.                            let variant_id = parseInt(varientInput.value);
  366.  
  367.                            if(variant_id) {
  368.                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
  369.                                if(variant && self.quickViewedItem) {
  370.                                    self.quickViewedItem['variant_id'] = variant_id;
  371.                                    self.quickViewedItem['variant_title'] = variant.title;
  372.                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
  373.                                    self.quickViewedItem['quantity'] = quantity;
  374.    
  375.                                    self.singleCartItemDataLayer('shipon_add_to_cart', self.quickViewedItem);
  376.                                    self.singleCartItemDataLayer('shipon_begin_checkout', self.quickViewedItem);
  377.                                }
  378.                            }
  379.                        }
  380.                    }
  381.  
  382.                  }
  383.                });
  384.            }
  385.            
  386.          }
  387.        }
  388.  
  389.        // single item add in dataLyaer
  390.        singleCartItemDataLayer(event, item) {
  391.          dataLayer.push({ "ecommerce": null });
  392.          const dataLayerData = {
  393.            "event": event,
  394.            "ecommerce": {
  395.              "currency": this.cart.currency,
  396.              "value": +(((item.final_price / 100) * item.quantity).toFixed(2)),
  397.              "items": [{
  398.                  "item_id": this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id,
  399.                  "variant_id": item.variant_id.toString(),
  400.                  "item_name": item.product_title,
  401.                  "quantity": item.quantity,
  402.                  "price": +((item.final_price / 100).toFixed(2)),
  403.                  "discount": item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  404.              }]
  405.            }
  406.          }
  407.  
  408.          if(item.product_type) {
  409.            dataLayerData.ecommerce['items'][0]['item_category'] = item.product_type;
  410.          }
  411.  
  412.          if(item.vendor) {
  413.            dataLayerData.ecommerce['items'][0]['item_brand'] = item.vendor;
  414.          }
  415.  
  416.          if(item.variant_title && item.variant_title !== 'Default Title') {
  417.            dataLayerData.ecommerce['items'][0]['item_variant'] = item.variant_title;
  418.          }
  419.  
  420.          if(item.sku) {
  421.            dataLayerData.ecommerce['items'][0]['sku'] = item.sku;
  422.          }
  423.  
  424.          if(item.item_list_id) {
  425.            dataLayerData.ecommerce['items'][0]['item_list_id'] = item.item_list_id;
  426.          }
  427.          
  428.          if(item.item_list_name) {
  429.            dataLayerData.ecommerce['items'][0]['item_list_name'] = item.item_list_name;
  430.          }
  431.          
  432.          dataLayer.push(dataLayerData);
  433.        };
  434.  
  435.        // multiple items add in dataLayer
  436.        cartItemsDataLayer(event, cart) {
  437.          dataLayer.push({ 'ecommerce': null });
  438.          const dataLayerData = {
  439.            'event': event,
  440.            'ecommerce': {
  441.               'currency': this.cart.currency,
  442.               'items': cart.items.map((item, index) => {
  443.                 const itemDataLayerData = {
  444.                    'index': index,
  445.                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
  446.                    'variant_id': item.variant_id.toString(),
  447.                    'item_name': item.product_title,
  448.                    'quantity': item.quantity,
  449.                    'price': +((item.final_price / 100).toFixed(2)),
  450.                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  451.                }
  452.  
  453.                if(item.product_type) {
  454.                  itemDataLayerData['item_category'] = item.product_type;
  455.                }
  456.                
  457.                 if(item.vendor) {
  458.                  itemDataLayerData['item_brand'] = item.vendor;
  459.                }
  460.  
  461.                                
  462.                if(item.variant_title && item.variant_title !== 'Default Title') {
  463.                  itemDataLayerData['item_variant'] = item.variant_title;
  464.                }
  465.              
  466.                if(item.sku) {
  467.                  itemDataLayerData['sku'] = item.sku;
  468.                }
  469.  
  470.                if(item.item_list_name) {
  471.                  itemDataLayerData['item_list_name'] = item.item_list_name;
  472.                }
  473.  
  474.                if(item.item_list_id) {
  475.                  itemDataLayerData['item_list_id'] = item.item_list_id;
  476.                }
  477.  
  478.                return itemDataLayerData;
  479.              })
  480.            }
  481.          }
  482.  
  483.          if(cart.total_price) {
  484.            dataLayerData['ecommerce']['value'] = +((cart.total_price / 100).toFixed(2))
  485.          }
  486.          
  487.          if(cart.item_list_id) {
  488.            dataLayerData['ecommerce']['item_list_id'] = cart.item_list_id;
  489.          }
  490.          
  491.          if(cart.item_list_name) {
  492.            dataLayerData['ecommerce']['item_list_name'] = cart.item_list_name;
  493.          }
  494.          
  495.          dataLayer.push(dataLayerData);
  496.        }
  497.  
  498.        
  499.        // newsletters signup
  500.        newsletterSignupData() {
  501.        document.addEventListener('click', function(event) {
  502.          let target = event.target.closest('form[action^="/contact"] button[type="submit"]');
  503.          let targetForm = event.target.closest('form[action^="/contact"]');
  504.          if(target && targetForm) {
  505.            let email = targetForm.querySelector('input[type="email"]').value;
  506.            let formType = targetForm.querySelector('input[name="contact[tags]"]');
  507.            if(formType && formType.value === 'newsletter') {
  508.              let form_location = window.location.href;
  509.              let form_id = targetForm.getAttribute('id');
  510.              let form_classes = targetForm.getAttribute('class');
  511.        
  512.              dataLayer.push({
  513.                event: 'newsletter_signup',
  514.                email: email,
  515.                form_location,
  516.                form_id,
  517.                form_classes
  518.              });
  519.            }
  520.          }
  521.        });
  522.      }
  523.      }
  524.      
  525.  
  526.      document.addEventListener('DOMContentLoaded', function() {
  527.        try{
  528.          new GTM_DataLayer();
  529.        }catch(error) {
  530.          console.log(error);
  531.        }
  532.      });
  533.    
  534.  })();
  535. </script>
  536.  
  537.  
  538.  
  539.    <script>
  540.      window.Store = window.Store || {};
  541.      window.Store.id = 11386172;
  542.    </script>
  543.    <meta charset="utf-8">
  544.    <meta http-equiv="x-ua-compatible" content="IE=edge">
  545.  
  546.    <link rel="preconnect" href="https://cdn.shopify.com">
  547.    <link rel="preconnect" href="https://fonts.shopifycdn.com">
  548.    <link rel="preconnect" href="https://v.shopify.com">
  549.    <link rel="preconnect" href="https://cdn.shopifycloud.com">
  550.  
  551.    <title>Original Laptop &amp; Tablet Parts in Canada — LaptopParts.ca</title>
  552.  
  553.    
  554.      <meta name="description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  555.    
  556.  
  557.    
  558.  <link rel="shortcut icon" href="//laptopparts.ca/cdn/shop/files/favicon_32x32.png?v=1635931652" type="image/png">
  559.  
  560.  
  561.    
  562.      <link rel="canonical" href="https://laptopparts.ca/">
  563.    
  564.  
  565.    <meta name="viewport" content="width=device-width">
  566.  
  567.    
  568.    
  569.  
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584. <meta property="og:site_name" content="LaptopParts.ca">
  585. <meta property="og:url" content="https://laptopparts.ca/">
  586. <meta property="og:title" content="Original Laptop &amp; Tablet Parts in Canada">
  587. <meta property="og:type" content="website">
  588. <meta property="og:description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  589.  
  590.  
  591.  
  592.  
  593.    
  594.    
  595.    
  596.  
  597.    
  598.    
  599.    <meta
  600.      property="og:image"
  601.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  602.    />
  603.    <meta
  604.      property="og:image:secure_url"
  605.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  606.    />
  607.    <meta property="og:image:width" content="2540" />
  608.    <meta property="og:image:height" content="630" />
  609.    
  610.    
  611.    <meta property="og:image:alt" content="Social media image" />
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  <meta name="twitter:site" content="@i/flow/login?redirect_after_login=%2FLaptopParts_ca">
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631. <meta name="twitter:title" content="Original Laptop &amp; Tablet Parts in Canada">
  632. <meta name="twitter:description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  633.  
  634.  
  635.    
  636.    
  637.    
  638.      
  639.      
  640.      <meta name="twitter:card" content="summary_large_image">
  641.    
  642.    
  643.    <meta
  644.      property="twitter:image"
  645.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_1200x600_crop_center.png?v=1696410523"
  646.    />
  647.    <meta property="twitter:image:width" content="1200" />
  648.    <meta property="twitter:image:height" content="600" />
  649.    
  650.    
  651.    <meta property="twitter:image:alt" content="Social media image" />
  652.  
  653. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/preconnect_resources.js" type="text/javascript"></script>
  654. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/globo_checkout.js" type="text/javascript"></script>
  655.  
  656.  
  657.  
  658.    <link rel="preload" href="//laptopparts.ca/cdn/fonts/nunito_sans/nunitosans_n7.5bd4fb9346d13afb61b3d78f8a1e9f31b128b3d9.woff2?h1=bGFwdG9wcGFydHMuY2E&h2=bGFwdG9wcGFydHNhdHAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=2ae13feb1dfd0d8ba6bfd71029ee92ac78d286ff7b755b57291941f31f1674e4" as="font" crossorigin="anonymous">
  659.    <link rel="preload" as="style" href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022">
  660.  
  661.    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="CrDzWSvAeMDFWNGBM_-BRbrjFQyoT_40-GZWV79wfbw">
  662. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/11386172/digital_wallets/dialog">
  663. <meta name="shopify-checkout-api-token" content="d20210e10f5cfcb163289d215c1a7239">
  664. <meta id="in-context-paypal-metadata" data-shop-id="11386172" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="CAD">
  665. <script async="async" src="/checkouts/internal/preloads.js?locale=en-CA"></script>
  666. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  667. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-CA&shop_id=11386172" crossorigin="anonymous"></script>
  668. <script id="apple-pay-shop-capabilities" type="application/json">{"shopId":11386172,"countryCode":"CA","currencyCode":"CAD","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/11386172","merchantName":"LaptopParts.ca","requiredBillingContactFields":["postalAddress","email"],"requiredShippingContactFields":["postalAddress","email"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","discover","interac","jcb"],"total":{"type":"pending","label":"LaptopParts.ca","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
  669. <script id="shopify-features" type="application/json">{"accessToken":"d20210e10f5cfcb163289d215c1a7239","betas":["rich-media-storefront-analytics"],"domain":"laptopparts.ca","predictiveSearch":true,"shopId":11386172,"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-button":["modules/v2/client.shop-button_BIqK537a.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"init-windoid":["modules/v2/client.init-windoid_Dt4BuwVN.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"init-fed-cm":["modules/v2/client.init-fed-cm_DJVLnZM5.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_D4Vq8dJk.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_ojhjTf2F.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_BUKIXhNj.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"pay-button":["modules/v2/client.pay-button_CN_b5Zcy.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_mP7SeWdA.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_BrN919g7.en.esm.js","modules/v2/client.shop-login-button_M8xp_x_L.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_BMfyjBWA.en.esm.js","modules/v2/client.shop-login-button_M8xp_x_L.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_CfjhVuD6.en.esm.js","modules/v2/client.shop-login-button_M8xp_x_L.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_M8xp_x_L.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_CVrazUaV.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"lead-capture":["modules/v2/client.lead-capture_DjiAY4zI.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"payment-terms":["modules/v2/client.payment-terms_ofniXy4E.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.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":"5324d457-cec6-417c-a38b-13c2e1e1d1b6-1751350823","pageurl":"laptopparts.ca\/","u":"f074d8fc20f8","p":"home"};</script>
  710. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  711. <script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!1,!0)}();</script>
  712. <script integrity="sha256-DTN/DDRLW4ijBM7GedgYZhatFOf+PYQ7/WEM4Q6kiFw=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/shopify/assets/storefront/load_feature-0d337f0c344b5b88a304cec679d8186616ad14e7fe3d843bfd610ce10ea4885c.js" crossorigin="anonymous"></script>
  713. <script crossorigin="anonymous" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-9846a8162782d0b340b9256e1835a4bf4ccf7ab521e1221004c475e86df911f4.js?v=20220906"></script>
  714. <script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://laptopparts.ca/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
  715. </script>
  716. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  717.  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
  718. </script>
  719. <script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
  720. </script>
  721.  
  722. <link rel="stylesheet" media="screen" href="https://laptopparts.ca/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
  723.  
  724. <style id="shopify-accelerated-checkout-cart">
  725.        #shopify-buyer-consent {
  726.  margin-top: 1em;
  727.  display: inline-block;
  728.  width: 100%;
  729. }
  730.  
  731. #shopify-buyer-consent.hidden {
  732.  display: none;
  733. }
  734.  
  735. #shopify-subscription-policy-button {
  736.  background: none;
  737.  border: none;
  738.  padding: 0;
  739.  text-decoration: underline;
  740.  font-size: inherit;
  741.  cursor: pointer;
  742. }
  743.  
  744. #shopify-subscription-policy-button::before {
  745.  box-shadow: none;
  746. }
  747.  
  748.      </style>
  749. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  750.  
  751.    <link href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022" rel="stylesheet" type="text/css" media="all" />
  752.  
  753.    
  754.    <script>
  755.      window.Theme = window.Theme || {};
  756.      window.Theme.version = '9.1.1';
  757.      window.Theme.name = 'Empire';
  758.      window.Theme.routes = {
  759.        "root_url": "/",
  760.        "account_url": "/account",
  761.        "account_login_url": "/account/login",
  762.        "account_logout_url": "/account/logout",
  763.        "account_register_url": "/account/register",
  764.        "account_addresses_url": "/account/addresses",
  765.        "collections_url": "/collections",
  766.        "all_products_collection_url": "/collections/all",
  767.        "search_url": "/search",
  768.        "predictive_search_url": "/search/suggest",
  769.        "cart_url": "/cart",
  770.        "cart_add_url": "/cart/add",
  771.        "cart_change_url": "/cart/change",
  772.        "cart_clear_url": "/cart/clear",
  773.        "product_recommendations_url": "/recommendations/products",
  774.      };
  775.    </script>
  776.    
  777.  
  778.    
  779.  
  780.    
  781.    
  782.    
  783.    
  784.      ></script>
  785. <script id='merchantWidgetScript' src="https://www.gstatic.com/shopping/merchant/merchantwidget.js" defer></script>
  786. <script type="text/javascript">
  787.  merchantWidgetScript.addEventListener('load', function () {
  788.    merchantwidget.start({
  789.      position: 'LEFT_BOTTOM',
  790.      sideMargin: 21,
  791.      bottomMargin: 33,
  792.      mobileSideMargin: 11,
  793.      mobileBottomMargin: 19
  794.    });
  795.  });
  796. </script>    
  797.     <!-- BEGIN app block: shopify://apps/okas-live-search-filter/blocks/app-block/77de2d4b-51b0-46d6-9fa5-dbe675e819d8 --><script>
  798.  
  799.    
  800.      
  801.            const _0xY9yrmhE9 = {        "en": {                              "_ls_s_footer_text": "SEE ALL RESULTS",          "_ls_s_no_results_text": "No Results Found",          "_ls_s_sale_text": "Sale",          "_ls_s_products": "PRODUCTS",          "_ls_s_pages": "PAGES",          "_ls_s_blogs": "BLOGS",          "_ls_s_collections": "COLLECTIONS",          "_ls_s_popular": "POPULAR SUGGESTIONS"        }      }        
  802.    
  803.  
  804.  
  805.  if ("undefined" == typeof _ls_loaded) {
  806.    _ls_loaded = !0;
  807.    var e = document.createElement("script");
  808.    e.src = "https://cdn.shopify.com/s/files/1/0331/8097/files/livesearch.complete.min_5fd058c2-0401-4f72-a351-b5ec23e835ff.js?v=1735459337", e.async = !0, document.head.appendChild(e)    
  809.  }  
  810. </script>
  811.  
  812.  
  813.  
  814. <!-- END app block --><script src="https://cdn.shopify.com/extensions/8a9b4a83-519d-44e6-bc3f-e0afbc083557/pushowl-brevo-email-push-sms-114/assets/pushowl-shopify.js" type="text/javascript" defer="defer"></script>
  815. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  816. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {var session_token = document.cookie.match(/_shopify_s=([^;]*)/);function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 11386172,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token: session_token && session_token.length === 2 ? session_token[1] : "",page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
  817. <script id="web-pixels-manager-setup">(function e(e,d,r,n,o,i){if(void 0===i&&(i={}),!Boolean(null===(t=null===(a=window.Shopify)||void 0===a?void 0:a.analytics)||void 0===t?void 0:t.replayQueue)){var a,t;window.Shopify=window.Shopify||{};var s=window.Shopify;s.analytics=s.analytics||{};var l=s.analytics;l.replayQueue=[],l.publish=function(e,d,r){return l.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var u=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),c="modern"===u?"modern":"legacy",f=(null!=o?o:{modern:"",legacy:""})[c],m=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:r,hashVersion:n,buildTarget:c}),p=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:n,bundleTarget:u,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{i.browserTarget=u,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:m,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var r=window.webPixelsManager.init(e)||void 0;if(r){d(r);var n=window.Shopify.analytics;n.replayQueue.forEach((function(e){var d=e[0],n=e[1],o=e[2];r.publishCustomEvent(d,n,o)})),n.replayQueue=[],n.publish=r.publishCustomEvent,n.visitor=r.visitor,n.initialized=!0}}},onerror:function(){return p.emit({status:"failed",errorMsg:"".concat(m," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(f)?f:"",scriptDataAttributes:i}),p.emit({status:"loading"})}catch(e){p.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 11386172,storefrontBaseUrl: "https://laptopparts.ca",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["ac843a20"],webPixelsConfigList: [{"id":"560693335","configuration":"{\"subdomain\": \"laptoppartsatp\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"4b1503cefaacd403b3b8fbb6a9344c9b","type":"APP","apiClientId":1615517,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"392691799","configuration":"{\"config\":\"{\\\"pixel_id\\\":\\\"G-R766FMP28N\\\",\\\"google_tag_ids\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\",\\\"GT-MK9LHHN\\\"],\\\"target_country\\\":\\\"CA\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/GZ2ECPfhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/8pFiCPHhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/1qhMCO7hwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/K-jbCOjhwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/Pl4oCOvhwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/QncHCPrhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\/b4EuCPThwI4YEJTzkNID\\\"]}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"26a08df6fb732969dd50810ae4fdc2c1","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"328826967","configuration":"{\"accountID\":\"y3ihof\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"219ec19a744f4aff2da134bac3704727","type":"APP","apiClientId":5206611,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"43057239","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Shopper Approved TYP code"},{"id":"69697623","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"AnswerBase Conversion Tracking"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0420","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0420","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,effectiveTopLevelDomain: "ca",initData: {"shop":{"name":"LaptopParts.ca","paymentSettings":{"currencyCode":"CAD"},"myshopifyDomain":"laptoppartsatp.myshopify.com","countryCode":"CA","storefrontUrl":"https://laptopparts.ca"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://laptopparts.ca/cdn","6f677fd0w3c093ab1p02f691e5m32dd6af7",{"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":"6f677fd0w3c093ab1p02f691e5m32dd6af7"});</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.7f48c99429cb25be36839f7a7bcca2ac8a69827d.min.js"});
  941.  
  942.        };
  943.        scriptFallback.async = true;
  944.        scriptFallback.src = '//laptopparts.ca/cdn/s/trekkie.storefront.7f48c99429cb25be36839f7a7bcca2ac8a69827d.min.js';
  945.        first.parentNode.insertBefore(scriptFallback, first);
  946.      };
  947.      script.async = true;
  948.      script.src = '//laptopparts.ca/cdn/s/trekkie.storefront.7f48c99429cb25be36839f7a7bcca2ac8a69827d.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"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  953.    );
  954.  
  955.    var loaded = false;
  956.    trekkie.ready(function() {
  957.      if (loaded) return;
  958.      loaded = true;
  959.  
  960.      window.ShopifyAnalytics.lib = window.trekkie;
  961.  
  962.      var originalDocumentWrite = document.write;
  963.      document.write = customDocumentWrite;
  964.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  965.      document.write = originalDocumentWrite;
  966.  
  967.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  968.  
  969.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  970.      var token = match? match[1]: undefined;
  971.      if (!hasLoggedConversion(token)) {
  972.        setCookieIfConversion(token);
  973.        
  974.      }
  975.    });
  976.  
  977.  
  978.        var eventsListenerScript = document.createElement('script');
  979.        eventsListenerScript.async = true;
  980.        eventsListenerScript.src = "//laptopparts.ca/cdn/shopifycloud/shopify/assets/shop_events_listener-1d89eace2351930ad947448cd92e0cd236cb81ecc8f6bbf9ce2331557cb884b2.js";
  981.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  982.  
  983. })();</script>
  984. <script
  985.  defer
  986.  src="https://laptopparts.ca/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.6.6.min.js"
  987.  data-application="storefront-renderer"
  988.  data-shop-id="11386172"
  989.  data-render-region="gcp-us-east1"
  990.  data-page-type="index"
  991.  data-theme-instance-id="126947917911"
  992.  data-theme-name="Empire"
  993.  data-theme-version="9.1.1"
  994.  data-monorail-region="shop_domain"
  995.  data-resource-timing-sampling-rate="10"
  996.  data-shs="true"
  997. ></script>
  998. </head>
  999.  
  1000.  <body
  1001.    class="template-index"
  1002.    data-instant-allow-query-string
  1003.    
  1004.  >
  1005.    <script>
  1006.      document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
  1007.      if(window.Shopify&&window.Shopify.designMode)document.documentElement.className+=' in-theme-editor';
  1008.      if(('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch)document.documentElement.className=document.documentElement.className.replace(/\bno-touch\b/,'has-touch');
  1009.    </script>
  1010.  
  1011.    <!-- Google Tag Manager (noscript) -->
  1012.    <noscript
  1013.      ><iframe
  1014.        loading="lazy"
  1015.        src="https://www.googletagmanager.com/ns.html?id=GTM-WDHHF23"
  1016.        height="0"
  1017.        width="0"
  1018.        style="display:none;visibility:hidden"
  1019.      ></iframe
  1020.    ></noscript>
  1021.    <!-- End Google Tag Manager (noscript) -->
  1022.  
  1023.    
  1024.    <svg
  1025.      class="icon-star-reference"
  1026.      aria-hidden="true"
  1027.      focusable="false"
  1028.      role="presentation"
  1029.      xmlns="http://www.w3.org/2000/svg"
  1030.      width="20"
  1031.      height="20"
  1032.      viewBox="3 3 17 17"
  1033.      fill="none"
  1034.    >
  1035.      <symbol id="icon-star">
  1036.        <rect class="icon-star-background" width="20" height="20" fill="currentColor"/>
  1037.        <path d="M10 3L12.163 7.60778L17 8.35121L13.5 11.9359L14.326 17L10 14.6078L5.674 17L6.5 11.9359L3 8.35121L7.837 7.60778L10 3Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  1038.      </symbol>
  1039.      <clipPath id="icon-star-clip">
  1040.        <path d="M10 3L12.163 7.60778L17 8.35121L13.5 11.9359L14.326 17L10 14.6078L5.674 17L6.5 11.9359L3 8.35121L7.837 7.60778L10 3Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  1041.      </clipPath>
  1042.    </svg>
  1043.    
  1044.  
  1045.    <a class="skip-to-main" href="#site-main">Skip to content</a>
  1046.  
  1047.    <!-- BEGIN sections: header-group -->
  1048. <div id="shopify-section-sections--15492291133527__announcement-bar" class="shopify-section shopify-section-group-header-group site-announcement"><script
  1049.  type="application/json"
  1050.  data-section-id="sections--15492291133527__announcement-bar"
  1051.  data-section-type="static-announcement">
  1052. </script>
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063.    <div
  1064.      class="
  1065.        announcement-bar
  1066.        
  1067.      "
  1068.      style="
  1069.        color: #ffffff;
  1070.        background: #fe0000;
  1071.      "
  1072.      data-announcement-bar
  1073.    >
  1074.      
  1075.  
  1076.      
  1077.        <div class="announcement-bar-text">
  1078.          📞 <b>Text us at 613-704-4708</b>
  1079.  
  1080. <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b>  Email us Service@laptopparts.ca</b>
  1081.        </div>
  1082.      
  1083.  
  1084.      <div class="announcement-bar-text-mobile">
  1085.        
  1086.          📞 <b>Text us at 613-704-4708</b>
  1087.  
  1088. <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b>  Email us Service@laptopparts.ca</b>
  1089.        
  1090.      </div>
  1091.    </div>
  1092.  
  1093.  
  1094.  
  1095. </div><div id="shopify-section-sections--15492291133527__header" class="shopify-section shopify-section-group-header-group site-header-wrapper">
  1096.  
  1097.  
  1098. <script
  1099.  type="application/json"
  1100.  data-section-id="sections--15492291133527__header"
  1101.  data-section-type="static-header"
  1102.  data-section-data>
  1103.  {
  1104.    "settings": {
  1105.      "sticky_header": false,
  1106.      "has_box_shadow": false,
  1107.      "live_search": {
  1108.        "enable": false,
  1109.        "money_format": "${{amount}}",
  1110.        "show_mobile_search_bar": false
  1111.      }
  1112.    }
  1113.  }
  1114. </script>
  1115.  
  1116.  
  1117.  
  1118.  
  1119.  
  1120. <style data-shopify>
  1121.  .site-logo {
  1122.    max-width: 250px;
  1123.  }
  1124.  
  1125.  .site-logo-image {
  1126.    max-height: 100px;
  1127.  }
  1128. </style>
  1129.  
  1130. <header
  1131.  class="site-header site-header-nav--open"
  1132.  role="banner"
  1133.  data-site-header
  1134. >
  1135.  <div
  1136.    class="
  1137.      site-header-main
  1138.      
  1139.        site-header--full-width
  1140.      
  1141.    "
  1142.    data-site-header-main
  1143.    
  1144.    
  1145.      data-site-header-mobile-search-button
  1146.    
  1147.  >
  1148.    <button class="site-header-menu-toggle" data-menu-toggle>
  1149.      <div class="site-header-menu-toggle--button" tabindex="-1">
  1150.        <span class="toggle-icon--bar toggle-icon--bar-top"></span>
  1151.        <span class="toggle-icon--bar toggle-icon--bar-middle"></span>
  1152.        <span class="toggle-icon--bar toggle-icon--bar-bottom"></span>
  1153.        <span class="visually-hidden">Menu</span>
  1154.      </div>
  1155.    </button>
  1156.  
  1157.    
  1158.      
  1159.      
  1160.        <a
  1161.          class="site-header-mobile-search-button"
  1162.          href="/search"
  1163.        >
  1164.          
  1165.        <div class="site-header-mobile-search-button--button" tabindex="-1">
  1166.          <svg
  1167.  aria-hidden="true"
  1168.  focusable="false"
  1169.  role="presentation"
  1170.  xmlns="http://www.w3.org/2000/svg"
  1171.  width="23"
  1172.  height="24"
  1173.  fill="none"
  1174.  viewBox="0 0 23 24"
  1175. >
  1176.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1177.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1178. </svg>
  1179.  
  1180.        </div>
  1181.      
  1182.        </a>
  1183.      
  1184.    
  1185.  
  1186.    <div
  1187.      class="
  1188.        site-header-main-content
  1189.        
  1190.      "
  1191.    >
  1192.      <div class="site-header-logo">
  1193.        <a
  1194.          class="site-logo"
  1195.          href="/">
  1196.          
  1197.            
  1198.            
  1199.  
  1200.            
  1201.  
  1202.  
  1203.  
  1204.  <img loading="lazy"
  1205.    
  1206.      src="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523"
  1207.    
  1208.    alt=""
  1209.  
  1210.    
  1211.      data-rimg
  1212.      srcset="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523 1x"
  1213.    
  1214.  
  1215.    class="site-logo-image"
  1216.    style="
  1217.        object-fit:cover;object-position:50.0% 50.0%;
  1218.      
  1219. "
  1220.    
  1221.  >
  1222.  
  1223.  
  1224.  
  1225.  
  1226.          
  1227.        </a>
  1228.      </div>
  1229.  
  1230.      
  1231.  
  1232.  
  1233.  
  1234.  
  1235.  
  1236. <div class="live-search" data-live-search><form
  1237.    class="
  1238.      live-search-form
  1239.      form-fields-inline
  1240.      
  1241.    "
  1242.    action="/search"
  1243.    method="get"
  1244.    role="search"
  1245.    aria-label="Product"
  1246.    data-live-search-form
  1247.  >
  1248.    <div class="form-field no-label"><span class="form-field-select-wrapper live-search-filter-wrapper">
  1249.          <select class="live-search-filter" data-live-search-filter data-filter-all="All categories">
  1250.            
  1251.            <option value="" selected>All categories</option>
  1252.            <option value="" disabled>------</option>
  1253.            
  1254.              
  1255.  
  1256. <option value="product_type:AC Adapters">AC Adapters</option>
  1257. <option value="product_type:Accessories">Accessories</option>
  1258. <option value="product_type:Adapter Card">Adapter Card</option>
  1259. <option value="product_type:Antennas">Antennas</option>
  1260. <option value="product_type:Appliances &gt; Fans">Appliances > Fans</option>
  1261. <option value="product_type:Batteries">Batteries</option>
  1262. <option value="product_type:Bezels Cases &amp; Covers">Bezels Cases & Covers</option>
  1263. <option value="product_type:Boards">Boards</option>
  1264. <option value="product_type:Cables">Cables</option>
  1265. <option value="product_type:Cases Covers &amp; Bezels">Cases Covers & Bezels</option>
  1266. <option value="product_type:Connectors">Connectors</option>
  1267. <option value="product_type:DC Jack Cables">DC Jack Cables</option>
  1268. <option value="product_type:Docking Station">Docking Station</option>
  1269. <option value="product_type:Drives">Drives</option>
  1270. <option value="product_type:Fans">Fans</option>
  1271. <option value="product_type:Hard Drive Brackets">Hard Drive Brackets</option>
  1272. <option value="product_type:Hard Drive Disk Caddy">Hard Drive Disk Caddy</option>
  1273. <option value="product_type:Hard Drives">Hard Drives</option>
  1274. <option value="product_type:Hinges">Hinges</option>
  1275. <option value="product_type:Keyboards">Keyboards</option>
  1276. <option value="product_type:Memory">Memory</option>
  1277. <option value="product_type:Misc">Misc</option>
  1278. <option value="product_type:Motherboards">Motherboards</option>
  1279. <option value="product_type:Network Cards">Network Cards</option>
  1280. <option value="product_type:Optical Cables">Optical Cables</option>
  1281. <option value="product_type:Optical Drives">Optical Drives</option>
  1282. <option value="product_type:Palmrests">Palmrests</option>
  1283. <option value="product_type:Parts">Parts</option>
  1284. <option value="product_type:Phone Parts">Phone Parts</option>
  1285. <option value="product_type:Power Supplies">Power Supplies</option>
  1286. <option value="product_type:POWER SUPPLY">POWER SUPPLY</option>
  1287. <option value="product_type:Printer Parts">Printer Parts</option>
  1288. <option value="product_type:Screens">Screens</option>
  1289. <option value="product_type:Screens - Touch Digitizers">Screens - Touch Digitizers</option>
  1290. <option value="product_type:Screws">Screws</option>
  1291. <option value="product_type:Server Parts">Server Parts</option>
  1292. <option value="product_type:Short Low Profile Bracket">Short Low Profile Bracket</option>
  1293. <option value="product_type:Speakers">Speakers</option>
  1294. <option value="product_type:Tablet Parts">Tablet Parts</option>
  1295. <option value="product_type:Touchpads">Touchpads</option>
  1296. <option value="product_type:UpCart - Shipping Protection">UpCart - Shipping Protection</option>
  1297. <option value="product_type:Wireless Mouse Receiver">Wireless Mouse Receiver</option>
  1298.            
  1299.          </select>
  1300.          <label class="live-search-filter-label form-field-select" data-live-search-filter-label>All categories
  1301. </label>
  1302.          <svg
  1303.  aria-hidden="true"
  1304.  focusable="false"
  1305.  role="presentation"
  1306.  width="8"
  1307.  height="6"
  1308.  viewBox="0 0 8 6"
  1309.  fill="none"
  1310.  xmlns="http://www.w3.org/2000/svg"
  1311.  class="icon-chevron-down"
  1312. >
  1313. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1314. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1315. </svg>
  1316.  
  1317.        </span><input
  1318.        class="form-field-input live-search-form-field"
  1319.        type="text"
  1320.        name="q"
  1321.        aria-label="Search"
  1322.        placeholder="What are you looking for?"
  1323.        
  1324.        autocomplete="off"
  1325.        data-live-search-input
  1326.      >
  1327.      <button
  1328.        class="live-search-takeover-cancel"
  1329.        type="button"
  1330.        data-live-search-takeover-cancel>
  1331.        Cancel
  1332.      </button>
  1333.  
  1334.      <button
  1335.        class="live-search-button"
  1336.        type="submit"
  1337.        aria-label="Search"
  1338.        data-live-search-submit
  1339.      >
  1340.        <span class="search-icon search-icon--inactive">
  1341.          <svg
  1342.  aria-hidden="true"
  1343.  focusable="false"
  1344.  role="presentation"
  1345.  xmlns="http://www.w3.org/2000/svg"
  1346.  width="23"
  1347.  height="24"
  1348.  fill="none"
  1349.  viewBox="0 0 23 24"
  1350. >
  1351.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1352.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1353. </svg>
  1354.  
  1355.        </span>
  1356.        <span class="search-icon search-icon--active">
  1357.          <svg
  1358.  aria-hidden="true"
  1359.  focusable="false"
  1360.  role="presentation"
  1361.  width="26"
  1362.  height="26"
  1363.  viewBox="0 0 26 26"
  1364.  xmlns="http://www.w3.org/2000/svg"
  1365. >
  1366.  <g fill-rule="nonzero" fill="currentColor">
  1367.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  1368.  </g>
  1369. </svg>
  1370.        </span>
  1371.      </button>
  1372.    </div>
  1373.  
  1374.    <div class="search-flydown" data-live-search-flydown>
  1375.      <div class="search-flydown--placeholder" data-live-search-placeholder>
  1376.        <div class="search-flydown--product-items">
  1377.          
  1378.            <a class="search-flydown--product search-flydown--product" href="#">
  1379.              
  1380.  
  1381.              <div class="search-flydown--product-text">
  1382.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1383.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1384.              </div>
  1385.            </a>
  1386.          
  1387.            <a class="search-flydown--product search-flydown--product" href="#">
  1388.              
  1389.  
  1390.              <div class="search-flydown--product-text">
  1391.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1392.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1393.              </div>
  1394.            </a>
  1395.          
  1396.            <a class="search-flydown--product search-flydown--product" href="#">
  1397.              
  1398.  
  1399.              <div class="search-flydown--product-text">
  1400.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1401.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1402.              </div>
  1403.            </a>
  1404.          
  1405.        </div>
  1406.      </div>
  1407.  
  1408.      <div
  1409.        class="
  1410.          search-flydown--results
  1411.          search-flydown--results--no-images
  1412.        "
  1413.        data-live-search-results
  1414.      ></div>
  1415.  
  1416.      
  1417.    </div>
  1418.  </form>
  1419. </div>
  1420.  
  1421.  
  1422.      
  1423.    </div>
  1424.  
  1425.    <div class="site-header-right">
  1426.      <ul class="site-header-actions" data-header-actions>
  1427.  
  1428.    
  1429.      <li class="site-header-actions__account-link">
  1430.        <a
  1431.          class="site-header_account-link-anchor"
  1432.          href="/account/login"
  1433.        >
  1434.          <span class="site-header__account-icon">
  1435.            
  1436.  
  1437.  
  1438.    <svg class="icon-account "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 26" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M11.3336 14.4447C14.7538 14.4447 17.5264 11.6417 17.5264 8.18392C17.5264 4.72616 14.7538 1.9231 11.3336 1.9231C7.91347 1.9231 5.14087 4.72616 5.14087 8.18392C5.14087 11.6417 7.91347 14.4447 11.3336 14.4447Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M20.9678 24.0769C19.5098 20.0278 15.7026 17.3329 11.4404 17.3329C7.17822 17.3329 3.37107 20.0278 1.91309 24.0769" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                                                
  1439.  
  1440.          </span>
  1441.          
  1442.          <span class="site-header_account-link-text">
  1443.            Login
  1444.          </span>
  1445.        </a>
  1446.      </li>
  1447.    
  1448.  
  1449. </ul>
  1450.  
  1451.  
  1452.      <div class="site-header-cart">
  1453.        <a class="site-header-cart--button" href="/cart">
  1454.          <span
  1455.            class="site-header-cart--count "
  1456.            data-header-cart-count="">
  1457.          </span>
  1458.          <span class="site-header-cart-icon site-header-cart-icon--svg">
  1459.            
  1460.              
  1461.  
  1462.  
  1463.            <svg width="25" height="24" viewBox="0 0 25 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">      <path fill-rule="evenodd" clip-rule="evenodd" d="M1 0C0.447715 0 0 0.447715 0 1C0 1.55228 0.447715 2 1 2H1.33877H1.33883C1.61048 2.00005 2.00378 2.23945 2.10939 2.81599L2.10937 2.816L2.11046 2.82171L5.01743 18.1859C5.12011 18.7286 5.64325 19.0852 6.18591 18.9826C6.21078 18.9779 6.23526 18.9723 6.25933 18.9658C6.28646 18.968 6.31389 18.9692 6.34159 18.9692H18.8179H18.8181C19.0302 18.9691 19.2141 18.9765 19.4075 18.9842L19.4077 18.9842C19.5113 18.9884 19.6175 18.9926 19.7323 18.9959C20.0255 19.0043 20.3767 19.0061 20.7177 18.9406C21.08 18.871 21.4685 18.7189 21.8028 18.3961C22.1291 18.081 22.3266 17.6772 22.4479 17.2384C22.4569 17.2058 22.4642 17.1729 22.4699 17.1396L23.944 8.46865C24.2528 7.20993 23.2684 5.99987 21.9896 6H21.9894H4.74727L4.07666 2.45562L4.07608 2.4525C3.83133 1.12381 2.76159 8.49962e-05 1.33889 0H1.33883H1ZM5.12568 8L6.8227 16.9692H18.8178H18.8179C19.0686 16.9691 19.3257 16.9793 19.5406 16.9877L19.5413 16.9877C19.633 16.9913 19.7171 16.9947 19.7896 16.9967C20.0684 17.0047 20.2307 16.9976 20.3403 16.9766C20.3841 16.9681 20.4059 16.96 20.4151 16.9556C20.4247 16.9443 20.4639 16.8918 20.5077 16.7487L21.9794 8.09186C21.9842 8.06359 21.9902 8.03555 21.9974 8.0078C21.9941 8.00358 21.9908 8.00108 21.989 8H5.12568ZM20.416 16.9552C20.4195 16.9534 20.4208 16.9524 20.4205 16.9523C20.4204 16.9523 20.4199 16.9525 20.4191 16.953L20.416 16.9552ZM10.8666 22.4326C10.8666 23.2982 10.195 24 9.36658 24C8.53815 24 7.86658 23.2982 7.86658 22.4326C7.86658 21.567 8.53815 20.8653 9.36658 20.8653C10.195 20.8653 10.8666 21.567 10.8666 22.4326ZM18.0048 24C18.8332 24 19.5048 23.2982 19.5048 22.4326C19.5048 21.567 18.8332 20.8653 18.0048 20.8653C17.1763 20.8653 16.5048 21.567 16.5048 22.4326C16.5048 23.2982 17.1763 24 18.0048 24Z" fill="currentColor"/>    </svg>                                                                                                        
  1464.  
  1465.            
  1466.          </span>
  1467.          <span class="visually-hidden">View cart</span>
  1468.        </a>
  1469.      </div>
  1470.    </div>
  1471.  </div>
  1472.  
  1473.  <div
  1474.    class="
  1475.      site-navigation-wrapper
  1476.      
  1477.        site-navigation--has-actions
  1478.      
  1479.      
  1480.        site-header--full-width
  1481.      
  1482.    "
  1483.    data-site-navigation
  1484.    id="site-header-nav"
  1485.  >
  1486.    <nav
  1487.      class="site-navigation"
  1488.      aria-label="Main"
  1489.    >
  1490.      
  1491.  
  1492.  
  1493.  
  1494.  
  1495. <ul
  1496.  class="navmenu navmenu-depth-1"
  1497.  data-navmenu
  1498.  aria-label="Main Menu 02"
  1499. >
  1500.  
  1501.    
  1502.    
  1503.  
  1504.    
  1505.    
  1506.    
  1507.    
  1508. <li
  1509.      class="navmenu-item              navmenu-basic__item                  navmenu-id-home"
  1510.      
  1511.      
  1512.      
  1513.    >
  1514.      
  1515.        <a
  1516.      
  1517.        class="
  1518.          navmenu-link
  1519.          navmenu-link-depth-1
  1520.          
  1521.          navmenu-link-active
  1522.        "
  1523.        
  1524.          href="/"
  1525.        
  1526.      >
  1527.        Home
  1528.        
  1529.      
  1530.        </a>
  1531.      
  1532.  
  1533.      
  1534.      </details>
  1535.    </li>
  1536.  
  1537.    
  1538.    
  1539.  
  1540.    
  1541.    
  1542.    
  1543.    
  1544. <li
  1545.      class="navmenu-item                    navmenu-item-parent                  navmenu-meganav__item-parent                    navmenu-id-shop"
  1546.      
  1547.        data-navmenu-meganav-trigger
  1548.        data-navmenu-meganav-type="multi-column-menu"
  1549.      
  1550.      data-navmenu-parent
  1551.      
  1552.    >
  1553.      
  1554.        <details data-navmenu-details>
  1555.        <summary
  1556.      
  1557.        class="
  1558.          navmenu-link
  1559.          navmenu-link-depth-1
  1560.          navmenu-link-parent
  1561.          
  1562.        "
  1563.        
  1564.          aria-haspopup="true"
  1565.          aria-expanded="false"
  1566.          data-href="/collections/all"
  1567.        
  1568.      >
  1569.        Shop
  1570.        
  1571.          <span
  1572.            class="navmenu-icon navmenu-icon-depth-1"
  1573.            data-navmenu-trigger
  1574.          >
  1575.            <svg
  1576.  aria-hidden="true"
  1577.  focusable="false"
  1578.  role="presentation"
  1579.  width="8"
  1580.  height="6"
  1581.  viewBox="0 0 8 6"
  1582.  fill="none"
  1583.  xmlns="http://www.w3.org/2000/svg"
  1584.  class="icon-chevron-down"
  1585. >
  1586. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1587. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1588. </svg>
  1589.  
  1590.          </span>
  1591.        
  1592.      
  1593.        </summary>
  1594.      
  1595.  
  1596.      
  1597.        
  1598.            
  1599.  
  1600.  
  1601.  
  1602.  
  1603.  
  1604.  
  1605.  
  1606. <div
  1607.  class="navmenu-submenu  navmenu-meganav  navmenu-meganav--desktop"
  1608.  data-navmenu-submenu
  1609.  data-meganav-menu
  1610.  data-meganav-id="3b13d0a4-b646-40a2-af69-91c68056aced"
  1611. >
  1612.  <div class="navmenu-meganav-wrapper navmenu-multi-column-items">
  1613.    <ul class="navmenu navmenu-depth-2 multi-column-count-5">
  1614.      
  1615.        
  1616.          <li class="navmenu-item">
  1617.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1618.              Laptop Components
  1619.            </a>
  1620.            <ul>
  1621.            
  1622.              <li class="navmenu-item">
  1623.                <a href="/collections/ac-adapters" class="navmenu-link">
  1624.                  AC Adapters
  1625.                </a>
  1626.              </li>
  1627.            
  1628.              <li class="navmenu-item">
  1629.                <a href="/collections/batteries" class="navmenu-link">
  1630.                  Batteries
  1631.                </a>
  1632.              </li>
  1633.            
  1634.              <li class="navmenu-item">
  1635.                <a href="/collections/cases-covers-bezels" class="navmenu-link">
  1636.                  Bezels Cases & Covers
  1637.                </a>
  1638.              </li>
  1639.            
  1640.              <li class="navmenu-item">
  1641.                <a href="/collections/boards" class="navmenu-link">
  1642.                  Boards
  1643.                </a>
  1644.              </li>
  1645.            
  1646.              <li class="navmenu-item">
  1647.                <a href="/collections/cables" class="navmenu-link">
  1648.                  Cables
  1649.                </a>
  1650.              </li>
  1651.            
  1652.              <li class="navmenu-item">
  1653.                <a href="/collections/dc-jack-cables" class="navmenu-link">
  1654.                  DC Jack Cables
  1655.                </a>
  1656.              </li>
  1657.            
  1658.              <li class="navmenu-item">
  1659.                <a href="/collections/fans" class="navmenu-link">
  1660.                  Fans
  1661.                </a>
  1662.              </li>
  1663.            
  1664.              <li class="navmenu-item">
  1665.                <a href="/collections/hard-drive-brackets" class="navmenu-link">
  1666.                  Hard Drive Brackets
  1667.                </a>
  1668.              </li>
  1669.            
  1670.              <li class="navmenu-item">
  1671.                <a href="/collections/laptop-hard-drive" class="navmenu-link">
  1672.                  Hard Drives
  1673.                </a>
  1674.              </li>
  1675.            
  1676.              <li class="navmenu-item">
  1677.                <a href="/collections/laptop-case-parts" class="navmenu-link">
  1678.                  - Laptop Case Parts
  1679.                </a>
  1680.              </li>
  1681.            
  1682.              <li class="navmenu-item">
  1683.                <a href="/collections/hinges" class="navmenu-link">
  1684.                  Hinges
  1685.                </a>
  1686.              </li>
  1687.            
  1688.              <li class="navmenu-item">
  1689.                <a href="/collections/laptop-case" class="navmenu-link">
  1690.                  Laptop Case
  1691.                </a>
  1692.              </li>
  1693.            
  1694.              <li class="navmenu-item">
  1695.                <a href="/collections/laptop-cover" class="navmenu-link">
  1696.                  Laptop Cover
  1697.                </a>
  1698.              </li>
  1699.            
  1700.              <li class="navmenu-item">
  1701.                <a href="/collections/thermal-printer" class="navmenu-link">
  1702.                  Thermal Printer
  1703.                </a>
  1704.              </li>
  1705.            
  1706.            </ul>
  1707.          </li>
  1708.        
  1709.      
  1710.        
  1711.          <li class="navmenu-item">
  1712.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1713.              .....
  1714.            </a>
  1715.            <ul>
  1716.            
  1717.              <li class="navmenu-item">
  1718.                <a href="/collections/keyboards-1" class="navmenu-link">
  1719.                  Keyboards
  1720.                </a>
  1721.              </li>
  1722.            
  1723.              <li class="navmenu-item">
  1724.                <a href="/collections/acer-keyboard" class="navmenu-link">
  1725.                  - Acer keyboard
  1726.                </a>
  1727.              </li>
  1728.            
  1729.              <li class="navmenu-item">
  1730.                <a href="/collections/asus-keyboard" class="navmenu-link">
  1731.                  - Asus keyboards
  1732.                </a>
  1733.              </li>
  1734.            
  1735.              <li class="navmenu-item">
  1736.                <a href="/collections/dell-keyboard" class="navmenu-link">
  1737.                  - Dell keyboard
  1738.                </a>
  1739.              </li>
  1740.            
  1741.              <li class="navmenu-item">
  1742.                <a href="/collections/lenovo-keyboard" class="navmenu-link">
  1743.                  - Lenovo keyboard
  1744.                </a>
  1745.              </li>
  1746.            
  1747.              <li class="navmenu-item">
  1748.                <a href="/collections/hp-keyboard" class="navmenu-link">
  1749.                  - Hp Keyboard
  1750.                </a>
  1751.              </li>
  1752.            
  1753.              <li class="navmenu-item">
  1754.                <a href="/collections/backlit-keyboard" class="navmenu-link">
  1755.                  - Backlit Keyboards
  1756.                </a>
  1757.              </li>
  1758.            
  1759.              <li class="navmenu-item">
  1760.                <a href="/collections/memory" class="navmenu-link">
  1761.                  Memory
  1762.                </a>
  1763.              </li>
  1764.            
  1765.              <li class="navmenu-item">
  1766.                <a href="/collections/motherboards" class="navmenu-link">
  1767.                  Motherboards
  1768.                </a>
  1769.              </li>
  1770.            
  1771.              <li class="navmenu-item">
  1772.                <a href="/collections/optical-drives" class="navmenu-link">
  1773.                  Optical Drives
  1774.                </a>
  1775.              </li>
  1776.            
  1777.              <li class="navmenu-item">
  1778.                <a href="/collections/power-supplies" class="navmenu-link">
  1779.                  Power Supplies
  1780.                </a>
  1781.              </li>
  1782.            
  1783.              <li class="navmenu-item">
  1784.                <a href="/collections/screens" class="navmenu-link">
  1785.                  Screens
  1786.                </a>
  1787.              </li>
  1788.            
  1789.              <li class="navmenu-item">
  1790.                <a href="/collections/touch-screen-laptop" class="navmenu-link">
  1791.                  - Touch Screen Laptop
  1792.                </a>
  1793.              </li>
  1794.            
  1795.              <li class="navmenu-item">
  1796.                <a href="/collections/screens-touch-digitizers" class="navmenu-link">
  1797.                  Screens - Touch Digitizers
  1798.                </a>
  1799.              </li>
  1800.            
  1801.              <li class="navmenu-item">
  1802.                <a href="/collections/speakers" class="navmenu-link">
  1803.                  Speakers
  1804.                </a>
  1805.              </li>
  1806.            
  1807.              <li class="navmenu-item">
  1808.                <a href="/collections/touchpads" class="navmenu-link">
  1809.                  Touchpads
  1810.                </a>
  1811.              </li>
  1812.            
  1813.            </ul>
  1814.          </li>
  1815.        
  1816.      
  1817.        
  1818.          <li class="navmenu-item">
  1819.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1820.              Other Components
  1821.            </a>
  1822.            <ul>
  1823.            
  1824.              <li class="navmenu-item">
  1825.                <a href="/collections/accessories" class="navmenu-link">
  1826.                  Accessories
  1827.                </a>
  1828.              </li>
  1829.            
  1830.              <li class="navmenu-item">
  1831.                <a href="/collections/phone-parts" class="navmenu-link">
  1832.                  Phone Parts
  1833.                </a>
  1834.              </li>
  1835.            
  1836.              <li class="navmenu-item">
  1837.                <a href="/collections/printer-parts" class="navmenu-link">
  1838.                  Printer Parts
  1839.                </a>
  1840.              </li>
  1841.            
  1842.              <li class="navmenu-item">
  1843.                <a href="/collections/server-parts" class="navmenu-link">
  1844.                  Server Parts
  1845.                </a>
  1846.              </li>
  1847.            
  1848.              <li class="navmenu-item">
  1849.                <a href="/collections/tablet-parts" class="navmenu-link">
  1850.                  Tablet Parts
  1851.                </a>
  1852.              </li>
  1853.            
  1854.            </ul>
  1855.          </li>
  1856.        
  1857.      
  1858.    </ul>
  1859.  </div>
  1860. </div>
  1861.  
  1862.          
  1863.      
  1864.      </details>
  1865.    </li>
  1866.  
  1867.    
  1868.    
  1869.  
  1870.    
  1871.    
  1872.    
  1873.    
  1874. <li
  1875.      class="navmenu-item              navmenu-basic__item                  navmenu-id-about-us"
  1876.      
  1877.      
  1878.      
  1879.    >
  1880.      
  1881.        <a
  1882.      
  1883.        class="
  1884.          navmenu-link
  1885.          navmenu-link-depth-1
  1886.          
  1887.          
  1888.        "
  1889.        
  1890.          href="/pages/about-us"
  1891.        
  1892.      >
  1893.        About Us
  1894.        
  1895.      
  1896.        </a>
  1897.      
  1898.  
  1899.      
  1900.      </details>
  1901.    </li>
  1902.  
  1903.    
  1904.    
  1905.  
  1906.    
  1907.    
  1908.    
  1909.    
  1910. <li
  1911.      class="navmenu-item              navmenu-basic__item                  navmenu-id-repair-centers"
  1912.      
  1913.      
  1914.      
  1915.    >
  1916.      
  1917.        <a
  1918.      
  1919.        class="
  1920.          navmenu-link
  1921.          navmenu-link-depth-1
  1922.          
  1923.          
  1924.        "
  1925.        
  1926.          href="/pages/store-locator"
  1927.        
  1928.      >
  1929.        Repair Centers
  1930.        
  1931.      
  1932.        </a>
  1933.      
  1934.  
  1935.      
  1936.      </details>
  1937.    </li>
  1938.  
  1939.    
  1940.    
  1941.  
  1942.    
  1943.    
  1944.    
  1945.    
  1946. <li
  1947.      class="navmenu-item              navmenu-basic__item                  navmenu-id-parts-request"
  1948.      
  1949.      
  1950.      
  1951.    >
  1952.      
  1953.        <a
  1954.      
  1955.        class="
  1956.          navmenu-link
  1957.          navmenu-link-depth-1
  1958.          
  1959.          
  1960.        "
  1961.        
  1962.          href="/pages/part-request"
  1963.        
  1964.      >
  1965.        Parts Request
  1966.        
  1967.      
  1968.        </a>
  1969.      
  1970.  
  1971.      
  1972.      </details>
  1973.    </li>
  1974.  
  1975.    
  1976.    
  1977.  
  1978.    
  1979.    
  1980.    
  1981.    
  1982. <li
  1983.      class="navmenu-item              navmenu-basic__item                  navmenu-id-shipping"
  1984.      
  1985.      
  1986.      
  1987.    >
  1988.      
  1989.        <a
  1990.      
  1991.        class="
  1992.          navmenu-link
  1993.          navmenu-link-depth-1
  1994.          
  1995.          
  1996.        "
  1997.        
  1998.          href="/pages/shipping"
  1999.        
  2000.      >
  2001.        Shipping
  2002.        
  2003.      
  2004.        </a>
  2005.      
  2006.  
  2007.      
  2008.      </details>
  2009.    </li>
  2010.  
  2011.    
  2012.    
  2013.  
  2014.    
  2015.    
  2016.    
  2017.    
  2018. <li
  2019.      class="navmenu-item              navmenu-basic__item                  navmenu-id-francais"
  2020.      
  2021.      
  2022.      
  2023.    >
  2024.      
  2025.        <a
  2026.      
  2027.        class="
  2028.          navmenu-link
  2029.          navmenu-link-depth-1
  2030.          
  2031.          
  2032.        "
  2033.        
  2034.          href="/pages/francais"
  2035.        
  2036.      >
  2037.        Français
  2038.        
  2039.      
  2040.        </a>
  2041.      
  2042.  
  2043.      
  2044.      </details>
  2045.    </li>
  2046.  
  2047. </ul>
  2048.  
  2049.  
  2050.      
  2051.    </nav>
  2052.  </div>
  2053.  
  2054.  <div class="site-mobile-nav" id="site-mobile-nav" data-mobile-nav tabindex="0">
  2055.  <div class="mobile-nav-panel" data-mobile-nav-panel>
  2056.  
  2057.    <ul class="site-header-actions" data-header-actions>
  2058.  
  2059.    
  2060.      <li class="site-header-actions__account-link">
  2061.        <a
  2062.          class="site-header_account-link-anchor"
  2063.          href="/account/login"
  2064.        >
  2065.          <span class="site-header__account-icon">
  2066.            
  2067.  
  2068.  
  2069.    <svg class="icon-account "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 26" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M11.3336 14.4447C14.7538 14.4447 17.5264 11.6417 17.5264 8.18392C17.5264 4.72616 14.7538 1.9231 11.3336 1.9231C7.91347 1.9231 5.14087 4.72616 5.14087 8.18392C5.14087 11.6417 7.91347 14.4447 11.3336 14.4447Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M20.9678 24.0769C19.5098 20.0278 15.7026 17.3329 11.4404 17.3329C7.17822 17.3329 3.37107 20.0278 1.91309 24.0769" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                                                
  2070.  
  2071.          </span>
  2072.          
  2073.          <span class="site-header_account-link-text">
  2074.            Login
  2075.          </span>
  2076.        </a>
  2077.      </li>
  2078.    
  2079.  
  2080. </ul>
  2081.  
  2082.  
  2083.    <a
  2084.      class="mobile-nav-close"
  2085.      href="#site-header-nav"
  2086.      data-mobile-nav-close>
  2087.      <svg
  2088.  aria-hidden="true"
  2089.  focusable="false"
  2090.  role="presentation"
  2091.  xmlns="http://www.w3.org/2000/svg"
  2092.  width="13"
  2093.  height="13"
  2094.  viewBox="0 0 13 13"
  2095. >
  2096.  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
  2097. </svg>
  2098.      <span class="visually-hidden">Close</span>
  2099.    </a>
  2100.  
  2101.    <div class="mobile-nav-content" data-mobile-nav-content>
  2102.      
  2103.  
  2104.  
  2105.  
  2106.  
  2107. <ul
  2108.  class="navmenu navmenu-depth-1"
  2109.  data-navmenu
  2110.  aria-label="Main Menu 02"
  2111. >
  2112.  
  2113.    
  2114.    
  2115.  
  2116.    
  2117.    
  2118.    
  2119. <li
  2120.      class="navmenu-item            navmenu-id-home"
  2121.      
  2122.    >
  2123.      <a
  2124.        class="navmenu-link  navmenu-link-active"
  2125.        href="/"
  2126.        
  2127.      >
  2128.        Home
  2129.      </a>
  2130.  
  2131.      
  2132.  
  2133.      
  2134.      
  2135.  
  2136.      
  2137.  
  2138.      
  2139.    </li>
  2140.  
  2141.    
  2142.    
  2143.  
  2144.    
  2145.    
  2146.    
  2147. <li
  2148.      class="navmenu-item      navmenu-item-parent      navmenu-id-shop"
  2149.      data-navmenu-parent
  2150.    >
  2151.      <a
  2152.        class="navmenu-link navmenu-link-parent "
  2153.        href="/collections/all"
  2154.        
  2155.          aria-haspopup="true"
  2156.          aria-expanded="false"
  2157.        
  2158.      >
  2159.        Shop
  2160.      </a>
  2161.  
  2162.      
  2163.        
  2164.  
  2165.  
  2166.  
  2167. <button
  2168.  class="navmenu-button"
  2169.  data-navmenu-trigger
  2170.  aria-expanded="false"
  2171. >
  2172.  <div class="navmenu-button-wrapper" tabindex="-1">
  2173.    <span class="navmenu-icon ">
  2174.      <svg
  2175.  aria-hidden="true"
  2176.  focusable="false"
  2177.  role="presentation"
  2178.  width="8"
  2179.  height="6"
  2180.  viewBox="0 0 8 6"
  2181.  fill="none"
  2182.  xmlns="http://www.w3.org/2000/svg"
  2183.  class="icon-chevron-down"
  2184. >
  2185. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2186. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2187. </svg>
  2188.  
  2189.    </span>
  2190.    <span class="visually-hidden">Shop</span>
  2191.  </div>
  2192. </button>
  2193.  
  2194.      
  2195.  
  2196.      
  2197.      
  2198.  
  2199.      
  2200.        
  2201.  
  2202.  
  2203.  
  2204.  
  2205.  
  2206.  
  2207.  
  2208.  
  2209.  
  2210.  
  2211.  
  2212.  
  2213. <ul
  2214.  class="
  2215.    navmenu
  2216.    navmenu-depth-2
  2217.    navmenu-submenu
  2218.    
  2219.  "
  2220.  data-navmenu
  2221.  data-accordion-content
  2222.  data-navmenu-submenu
  2223.  aria-label="Main Menu 02"
  2224. >
  2225.  
  2226.    
  2227.  
  2228.    
  2229.    
  2230.  
  2231.    
  2232.    
  2233.  
  2234.    
  2235.  
  2236.    
  2237. <li
  2238.        class="navmenu-item        navmenu-item-parent        navmenu-id-laptop-components"
  2239.        data-navmenu-parent
  2240.      >
  2241.        
  2242.          <a
  2243.            href="/collections/all"
  2244.        
  2245.          class="navmenu-link navmenu-link-parent "
  2246.          
  2247.            aria-haspopup="true"
  2248.            aria-expanded="false"
  2249.          
  2250.        >
  2251.          
  2252.          Laptop Components
  2253.  
  2254.        
  2255.          </a>
  2256.        
  2257.  
  2258.        
  2259.          
  2260.  
  2261.  
  2262.  
  2263. <button
  2264.  class="navmenu-button"
  2265.  data-navmenu-trigger
  2266.  aria-expanded="false"
  2267. >
  2268.  <div class="navmenu-button-wrapper" tabindex="-1">
  2269.    <span class="navmenu-icon navmenu-icon-depth-2">
  2270.      <svg
  2271.  aria-hidden="true"
  2272.  focusable="false"
  2273.  role="presentation"
  2274.  width="8"
  2275.  height="6"
  2276.  viewBox="0 0 8 6"
  2277.  fill="none"
  2278.  xmlns="http://www.w3.org/2000/svg"
  2279.  class="icon-chevron-down"
  2280. >
  2281. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2282. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2283. </svg>
  2284.  
  2285.    </span>
  2286.    <span class="visually-hidden">Laptop Components</span>
  2287.  </div>
  2288. </button>
  2289.  
  2290.        
  2291.  
  2292.        
  2293.          
  2294.  
  2295.  
  2296.  
  2297.  
  2298.  
  2299.  
  2300.  
  2301.  
  2302.  
  2303.  
  2304.  
  2305.  
  2306. <ul
  2307.  class="
  2308.    navmenu
  2309.    navmenu-depth-3
  2310.    navmenu-submenu
  2311.    
  2312.  "
  2313.  data-navmenu
  2314.  data-accordion-content
  2315.  data-navmenu-submenu
  2316.  aria-label="Main Menu 02"
  2317. >
  2318.  
  2319.    
  2320.  
  2321.    
  2322.    
  2323.  
  2324.    
  2325.    
  2326.  
  2327.    
  2328.  
  2329.    
  2330.      <li
  2331.        class="navmenu-item navmenu-id-ac-adapters"
  2332.      >
  2333.        <a
  2334.        class="
  2335.          navmenu-link
  2336.          navmenu-link-depth-3
  2337.          
  2338.        "
  2339.        href="/collections/ac-adapters"
  2340.        >
  2341.          
  2342.          AC Adapters
  2343. </a>
  2344.      </li>
  2345.    
  2346.  
  2347.    
  2348.  
  2349.    
  2350.    
  2351.  
  2352.    
  2353.    
  2354.  
  2355.    
  2356.  
  2357.    
  2358.      <li
  2359.        class="navmenu-item navmenu-id-batteries"
  2360.      >
  2361.        <a
  2362.        class="
  2363.          navmenu-link
  2364.          navmenu-link-depth-3
  2365.          
  2366.        "
  2367.        href="/collections/batteries"
  2368.        >
  2369.          
  2370.          Batteries
  2371. </a>
  2372.      </li>
  2373.    
  2374.  
  2375.    
  2376.  
  2377.    
  2378.    
  2379.  
  2380.    
  2381.    
  2382.  
  2383.    
  2384.  
  2385.    
  2386.      <li
  2387.        class="navmenu-item navmenu-id-bezels-cases-covers"
  2388.      >
  2389.        <a
  2390.        class="
  2391.          navmenu-link
  2392.          navmenu-link-depth-3
  2393.          
  2394.        "
  2395.        href="/collections/cases-covers-bezels"
  2396.        >
  2397.          
  2398.          Bezels Cases & Covers
  2399. </a>
  2400.      </li>
  2401.    
  2402.  
  2403.    
  2404.  
  2405.    
  2406.    
  2407.  
  2408.    
  2409.    
  2410.  
  2411.    
  2412.  
  2413.    
  2414.      <li
  2415.        class="navmenu-item navmenu-id-boards"
  2416.      >
  2417.        <a
  2418.        class="
  2419.          navmenu-link
  2420.          navmenu-link-depth-3
  2421.          
  2422.        "
  2423.        href="/collections/boards"
  2424.        >
  2425.          
  2426.          Boards
  2427. </a>
  2428.      </li>
  2429.    
  2430.  
  2431.    
  2432.  
  2433.    
  2434.    
  2435.  
  2436.    
  2437.    
  2438.  
  2439.    
  2440.  
  2441.    
  2442.      <li
  2443.        class="navmenu-item navmenu-id-cables"
  2444.      >
  2445.        <a
  2446.        class="
  2447.          navmenu-link
  2448.          navmenu-link-depth-3
  2449.          
  2450.        "
  2451.        href="/collections/cables"
  2452.        >
  2453.          
  2454.          Cables
  2455. </a>
  2456.      </li>
  2457.    
  2458.  
  2459.    
  2460.  
  2461.    
  2462.    
  2463.  
  2464.    
  2465.    
  2466.  
  2467.    
  2468.  
  2469.    
  2470.      <li
  2471.        class="navmenu-item navmenu-id-dc-jack-cables"
  2472.      >
  2473.        <a
  2474.        class="
  2475.          navmenu-link
  2476.          navmenu-link-depth-3
  2477.          
  2478.        "
  2479.        href="/collections/dc-jack-cables"
  2480.        >
  2481.          
  2482.          DC Jack Cables
  2483. </a>
  2484.      </li>
  2485.    
  2486.  
  2487.    
  2488.  
  2489.    
  2490.    
  2491.  
  2492.    
  2493.    
  2494.  
  2495.    
  2496.  
  2497.    
  2498.      <li
  2499.        class="navmenu-item navmenu-id-fans"
  2500.      >
  2501.        <a
  2502.        class="
  2503.          navmenu-link
  2504.          navmenu-link-depth-3
  2505.          
  2506.        "
  2507.        href="/collections/fans"
  2508.        >
  2509.          
  2510.          Fans
  2511. </a>
  2512.      </li>
  2513.    
  2514.  
  2515.    
  2516.  
  2517.    
  2518.    
  2519.  
  2520.    
  2521.    
  2522.  
  2523.    
  2524.  
  2525.    
  2526.      <li
  2527.        class="navmenu-item navmenu-id-hard-drive-brackets"
  2528.      >
  2529.        <a
  2530.        class="
  2531.          navmenu-link
  2532.          navmenu-link-depth-3
  2533.          
  2534.        "
  2535.        href="/collections/hard-drive-brackets"
  2536.        >
  2537.          
  2538.          Hard Drive Brackets
  2539. </a>
  2540.      </li>
  2541.    
  2542.  
  2543.    
  2544.  
  2545.    
  2546.    
  2547.  
  2548.    
  2549.    
  2550.  
  2551.    
  2552.  
  2553.    
  2554.      <li
  2555.        class="navmenu-item navmenu-id-hard-drives"
  2556.      >
  2557.        <a
  2558.        class="
  2559.          navmenu-link
  2560.          navmenu-link-depth-3
  2561.          
  2562.        "
  2563.        href="/collections/laptop-hard-drive"
  2564.        >
  2565.          
  2566.          Hard Drives
  2567. </a>
  2568.      </li>
  2569.    
  2570.  
  2571.    
  2572.  
  2573.    
  2574.    
  2575.  
  2576.    
  2577.    
  2578.  
  2579.    
  2580.  
  2581.    
  2582.      <li
  2583.        class="navmenu-item navmenu-id-laptop-case-parts"
  2584.      >
  2585.        <a
  2586.        class="
  2587.          navmenu-link
  2588.          navmenu-link-depth-3
  2589.          
  2590.        "
  2591.        href="/collections/laptop-case-parts"
  2592.        >
  2593.          
  2594.          - Laptop Case Parts
  2595. </a>
  2596.      </li>
  2597.    
  2598.  
  2599.    
  2600.  
  2601.    
  2602.    
  2603.  
  2604.    
  2605.    
  2606.  
  2607.    
  2608.  
  2609.    
  2610.      <li
  2611.        class="navmenu-item navmenu-id-hinges"
  2612.      >
  2613.        <a
  2614.        class="
  2615.          navmenu-link
  2616.          navmenu-link-depth-3
  2617.          
  2618.        "
  2619.        href="/collections/hinges"
  2620.        >
  2621.          
  2622.          Hinges
  2623. </a>
  2624.      </li>
  2625.    
  2626.  
  2627.    
  2628.  
  2629.    
  2630.    
  2631.  
  2632.    
  2633.    
  2634.  
  2635.    
  2636.  
  2637.    
  2638.      <li
  2639.        class="navmenu-item navmenu-id-laptop-case"
  2640.      >
  2641.        <a
  2642.        class="
  2643.          navmenu-link
  2644.          navmenu-link-depth-3
  2645.          
  2646.        "
  2647.        href="/collections/laptop-case"
  2648.        >
  2649.          
  2650.          Laptop Case
  2651. </a>
  2652.      </li>
  2653.    
  2654.  
  2655.    
  2656.  
  2657.    
  2658.    
  2659.  
  2660.    
  2661.    
  2662.  
  2663.    
  2664.  
  2665.    
  2666.      <li
  2667.        class="navmenu-item navmenu-id-laptop-cover"
  2668.      >
  2669.        <a
  2670.        class="
  2671.          navmenu-link
  2672.          navmenu-link-depth-3
  2673.          
  2674.        "
  2675.        href="/collections/laptop-cover"
  2676.        >
  2677.          
  2678.          Laptop Cover
  2679. </a>
  2680.      </li>
  2681.    
  2682.  
  2683.    
  2684.  
  2685.    
  2686.    
  2687.  
  2688.    
  2689.    
  2690.  
  2691.    
  2692.  
  2693.    
  2694.      <li
  2695.        class="navmenu-item navmenu-id-thermal-printer"
  2696.      >
  2697.        <a
  2698.        class="
  2699.          navmenu-link
  2700.          navmenu-link-depth-3
  2701.          
  2702.        "
  2703.        href="/collections/thermal-printer"
  2704.        >
  2705.          
  2706.          Thermal Printer
  2707. </a>
  2708.      </li>
  2709.    
  2710.  
  2711. </ul>
  2712.  
  2713.        
  2714.        
  2715.      </li>
  2716.    
  2717.  
  2718.    
  2719.  
  2720.    
  2721.    
  2722.  
  2723.    
  2724.    
  2725.  
  2726.    
  2727.  
  2728.    
  2729. <li
  2730.        class="navmenu-item        navmenu-item-parent        navmenu-id-"
  2731.        data-navmenu-parent
  2732.      >
  2733.        
  2734.          <a
  2735.            href="/collections/all"
  2736.        
  2737.          class="navmenu-link navmenu-link-parent "
  2738.          
  2739.            aria-haspopup="true"
  2740.            aria-expanded="false"
  2741.          
  2742.        >
  2743.          
  2744.          .....
  2745.  
  2746.        
  2747.          </a>
  2748.        
  2749.  
  2750.        
  2751.          
  2752.  
  2753.  
  2754.  
  2755. <button
  2756.  class="navmenu-button"
  2757.  data-navmenu-trigger
  2758.  aria-expanded="false"
  2759. >
  2760.  <div class="navmenu-button-wrapper" tabindex="-1">
  2761.    <span class="navmenu-icon navmenu-icon-depth-2">
  2762.      <svg
  2763.  aria-hidden="true"
  2764.  focusable="false"
  2765.  role="presentation"
  2766.  width="8"
  2767.  height="6"
  2768.  viewBox="0 0 8 6"
  2769.  fill="none"
  2770.  xmlns="http://www.w3.org/2000/svg"
  2771.  class="icon-chevron-down"
  2772. >
  2773. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2774. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2775. </svg>
  2776.  
  2777.    </span>
  2778.    <span class="visually-hidden">.....</span>
  2779.  </div>
  2780. </button>
  2781.  
  2782.        
  2783.  
  2784.        
  2785.          
  2786.  
  2787.  
  2788.  
  2789.  
  2790.  
  2791.  
  2792.  
  2793.  
  2794.  
  2795.  
  2796.  
  2797.  
  2798. <ul
  2799.  class="
  2800.    navmenu
  2801.    navmenu-depth-3
  2802.    navmenu-submenu
  2803.    
  2804.  "
  2805.  data-navmenu
  2806.  data-accordion-content
  2807.  data-navmenu-submenu
  2808.  aria-label="Main Menu 02"
  2809. >
  2810.  
  2811.    
  2812.  
  2813.    
  2814.    
  2815.  
  2816.    
  2817.    
  2818.  
  2819.    
  2820.  
  2821.    
  2822.      <li
  2823.        class="navmenu-item navmenu-id-keyboards"
  2824.      >
  2825.        <a
  2826.        class="
  2827.          navmenu-link
  2828.          navmenu-link-depth-3
  2829.          
  2830.        "
  2831.        href="/collections/keyboards-1"
  2832.        >
  2833.          
  2834.          Keyboards
  2835. </a>
  2836.      </li>
  2837.    
  2838.  
  2839.    
  2840.  
  2841.    
  2842.    
  2843.  
  2844.    
  2845.    
  2846.  
  2847.    
  2848.  
  2849.    
  2850.      <li
  2851.        class="navmenu-item navmenu-id-acer-keyboard"
  2852.      >
  2853.        <a
  2854.        class="
  2855.          navmenu-link
  2856.          navmenu-link-depth-3
  2857.          
  2858.        "
  2859.        href="/collections/acer-keyboard"
  2860.        >
  2861.          
  2862.          - Acer keyboard
  2863. </a>
  2864.      </li>
  2865.    
  2866.  
  2867.    
  2868.  
  2869.    
  2870.    
  2871.  
  2872.    
  2873.    
  2874.  
  2875.    
  2876.  
  2877.    
  2878.      <li
  2879.        class="navmenu-item navmenu-id-asus-keyboards"
  2880.      >
  2881.        <a
  2882.        class="
  2883.          navmenu-link
  2884.          navmenu-link-depth-3
  2885.          
  2886.        "
  2887.        href="/collections/asus-keyboard"
  2888.        >
  2889.          
  2890.          - Asus keyboards
  2891. </a>
  2892.      </li>
  2893.    
  2894.  
  2895.    
  2896.  
  2897.    
  2898.    
  2899.  
  2900.    
  2901.    
  2902.  
  2903.    
  2904.  
  2905.    
  2906.      <li
  2907.        class="navmenu-item navmenu-id-dell-keyboard"
  2908.      >
  2909.        <a
  2910.        class="
  2911.          navmenu-link
  2912.          navmenu-link-depth-3
  2913.          
  2914.        "
  2915.        href="/collections/dell-keyboard"
  2916.        >
  2917.          
  2918.          - Dell keyboard
  2919. </a>
  2920.      </li>
  2921.    
  2922.  
  2923.    
  2924.  
  2925.    
  2926.    
  2927.  
  2928.    
  2929.    
  2930.  
  2931.    
  2932.  
  2933.    
  2934.      <li
  2935.        class="navmenu-item navmenu-id-lenovo-keyboard"
  2936.      >
  2937.        <a
  2938.        class="
  2939.          navmenu-link
  2940.          navmenu-link-depth-3
  2941.          
  2942.        "
  2943.        href="/collections/lenovo-keyboard"
  2944.        >
  2945.          
  2946.          - Lenovo keyboard
  2947. </a>
  2948.      </li>
  2949.    
  2950.  
  2951.    
  2952.  
  2953.    
  2954.    
  2955.  
  2956.    
  2957.    
  2958.  
  2959.    
  2960.  
  2961.    
  2962.      <li
  2963.        class="navmenu-item navmenu-id-hp-keyboard"
  2964.      >
  2965.        <a
  2966.        class="
  2967.          navmenu-link
  2968.          navmenu-link-depth-3
  2969.          
  2970.        "
  2971.        href="/collections/hp-keyboard"
  2972.        >
  2973.          
  2974.          - Hp Keyboard
  2975. </a>
  2976.      </li>
  2977.    
  2978.  
  2979.    
  2980.  
  2981.    
  2982.    
  2983.  
  2984.    
  2985.    
  2986.  
  2987.    
  2988.  
  2989.    
  2990.      <li
  2991.        class="navmenu-item navmenu-id-backlit-keyboards"
  2992.      >
  2993.        <a
  2994.        class="
  2995.          navmenu-link
  2996.          navmenu-link-depth-3
  2997.          
  2998.        "
  2999.        href="/collections/backlit-keyboard"
  3000.        >
  3001.          
  3002.          - Backlit Keyboards
  3003. </a>
  3004.      </li>
  3005.    
  3006.  
  3007.    
  3008.  
  3009.    
  3010.    
  3011.  
  3012.    
  3013.    
  3014.  
  3015.    
  3016.  
  3017.    
  3018.      <li
  3019.        class="navmenu-item navmenu-id-memory"
  3020.      >
  3021.        <a
  3022.        class="
  3023.          navmenu-link
  3024.          navmenu-link-depth-3
  3025.          
  3026.        "
  3027.        href="/collections/memory"
  3028.        >
  3029.          
  3030.          Memory
  3031. </a>
  3032.      </li>
  3033.    
  3034.  
  3035.    
  3036.  
  3037.    
  3038.    
  3039.  
  3040.    
  3041.    
  3042.  
  3043.    
  3044.  
  3045.    
  3046.      <li
  3047.        class="navmenu-item navmenu-id-motherboards"
  3048.      >
  3049.        <a
  3050.        class="
  3051.          navmenu-link
  3052.          navmenu-link-depth-3
  3053.          
  3054.        "
  3055.        href="/collections/motherboards"
  3056.        >
  3057.          
  3058.          Motherboards
  3059. </a>
  3060.      </li>
  3061.    
  3062.  
  3063.    
  3064.  
  3065.    
  3066.    
  3067.  
  3068.    
  3069.    
  3070.  
  3071.    
  3072.  
  3073.    
  3074.      <li
  3075.        class="navmenu-item navmenu-id-optical-drives"
  3076.      >
  3077.        <a
  3078.        class="
  3079.          navmenu-link
  3080.          navmenu-link-depth-3
  3081.          
  3082.        "
  3083.        href="/collections/optical-drives"
  3084.        >
  3085.          
  3086.          Optical Drives
  3087. </a>
  3088.      </li>
  3089.    
  3090.  
  3091.    
  3092.  
  3093.    
  3094.    
  3095.  
  3096.    
  3097.    
  3098.  
  3099.    
  3100.  
  3101.    
  3102.      <li
  3103.        class="navmenu-item navmenu-id-power-supplies"
  3104.      >
  3105.        <a
  3106.        class="
  3107.          navmenu-link
  3108.          navmenu-link-depth-3
  3109.          
  3110.        "
  3111.        href="/collections/power-supplies"
  3112.        >
  3113.          
  3114.          Power Supplies
  3115. </a>
  3116.      </li>
  3117.    
  3118.  
  3119.    
  3120.  
  3121.    
  3122.    
  3123.  
  3124.    
  3125.    
  3126.  
  3127.    
  3128.  
  3129.    
  3130.      <li
  3131.        class="navmenu-item navmenu-id-screens"
  3132.      >
  3133.        <a
  3134.        class="
  3135.          navmenu-link
  3136.          navmenu-link-depth-3
  3137.          
  3138.        "
  3139.        href="/collections/screens"
  3140.        >
  3141.          
  3142.          Screens
  3143. </a>
  3144.      </li>
  3145.    
  3146.  
  3147.    
  3148.  
  3149.    
  3150.    
  3151.  
  3152.    
  3153.    
  3154.  
  3155.    
  3156.  
  3157.    
  3158.      <li
  3159.        class="navmenu-item navmenu-id-touch-screen-laptop"
  3160.      >
  3161.        <a
  3162.        class="
  3163.          navmenu-link
  3164.          navmenu-link-depth-3
  3165.          
  3166.        "
  3167.        href="/collections/touch-screen-laptop"
  3168.        >
  3169.          
  3170.          - Touch Screen Laptop
  3171. </a>
  3172.      </li>
  3173.    
  3174.  
  3175.    
  3176.  
  3177.    
  3178.    
  3179.  
  3180.    
  3181.    
  3182.  
  3183.    
  3184.  
  3185.    
  3186.      <li
  3187.        class="navmenu-item navmenu-id-screens-touch-digitizers"
  3188.      >
  3189.        <a
  3190.        class="
  3191.          navmenu-link
  3192.          navmenu-link-depth-3
  3193.          
  3194.        "
  3195.        href="/collections/screens-touch-digitizers"
  3196.        >
  3197.          
  3198.          Screens - Touch Digitizers
  3199. </a>
  3200.      </li>
  3201.    
  3202.  
  3203.    
  3204.  
  3205.    
  3206.    
  3207.  
  3208.    
  3209.    
  3210.  
  3211.    
  3212.  
  3213.    
  3214.      <li
  3215.        class="navmenu-item navmenu-id-speakers"
  3216.      >
  3217.        <a
  3218.        class="
  3219.          navmenu-link
  3220.          navmenu-link-depth-3
  3221.          
  3222.        "
  3223.        href="/collections/speakers"
  3224.        >
  3225.          
  3226.          Speakers
  3227. </a>
  3228.      </li>
  3229.    
  3230.  
  3231.    
  3232.  
  3233.    
  3234.    
  3235.  
  3236.    
  3237.    
  3238.  
  3239.    
  3240.  
  3241.    
  3242.      <li
  3243.        class="navmenu-item navmenu-id-touchpads"
  3244.      >
  3245.        <a
  3246.        class="
  3247.          navmenu-link
  3248.          navmenu-link-depth-3
  3249.          
  3250.        "
  3251.        href="/collections/touchpads"
  3252.        >
  3253.          
  3254.          Touchpads
  3255. </a>
  3256.      </li>
  3257.    
  3258.  
  3259. </ul>
  3260.  
  3261.        
  3262.        
  3263.      </li>
  3264.    
  3265.  
  3266.    
  3267.  
  3268.    
  3269.    
  3270.  
  3271.    
  3272.    
  3273.  
  3274.    
  3275.  
  3276.    
  3277. <li
  3278.        class="navmenu-item        navmenu-item-parent        navmenu-id-other-components"
  3279.        data-navmenu-parent
  3280.      >
  3281.        
  3282.          <a
  3283.            href="/collections/all"
  3284.        
  3285.          class="navmenu-link navmenu-link-parent "
  3286.          
  3287.            aria-haspopup="true"
  3288.            aria-expanded="false"
  3289.          
  3290.        >
  3291.          
  3292.          Other Components
  3293.  
  3294.        
  3295.          </a>
  3296.        
  3297.  
  3298.        
  3299.          
  3300.  
  3301.  
  3302.  
  3303. <button
  3304.  class="navmenu-button"
  3305.  data-navmenu-trigger
  3306.  aria-expanded="false"
  3307. >
  3308.  <div class="navmenu-button-wrapper" tabindex="-1">
  3309.    <span class="navmenu-icon navmenu-icon-depth-2">
  3310.      <svg
  3311.  aria-hidden="true"
  3312.  focusable="false"
  3313.  role="presentation"
  3314.  width="8"
  3315.  height="6"
  3316.  viewBox="0 0 8 6"
  3317.  fill="none"
  3318.  xmlns="http://www.w3.org/2000/svg"
  3319.  class="icon-chevron-down"
  3320. >
  3321. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3322. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3323. </svg>
  3324.  
  3325.    </span>
  3326.    <span class="visually-hidden">Other Components</span>
  3327.  </div>
  3328. </button>
  3329.  
  3330.        
  3331.  
  3332.        
  3333.          
  3334.  
  3335.  
  3336.  
  3337.  
  3338.  
  3339.  
  3340.  
  3341.  
  3342.  
  3343.  
  3344.  
  3345.  
  3346. <ul
  3347.  class="
  3348.    navmenu
  3349.    navmenu-depth-3
  3350.    navmenu-submenu
  3351.    
  3352.  "
  3353.  data-navmenu
  3354.  data-accordion-content
  3355.  data-navmenu-submenu
  3356.  aria-label="Main Menu 02"
  3357. >
  3358.  
  3359.    
  3360.  
  3361.    
  3362.    
  3363.  
  3364.    
  3365.    
  3366.  
  3367.    
  3368.  
  3369.    
  3370.      <li
  3371.        class="navmenu-item navmenu-id-accessories"
  3372.      >
  3373.        <a
  3374.        class="
  3375.          navmenu-link
  3376.          navmenu-link-depth-3
  3377.          
  3378.        "
  3379.        href="/collections/accessories"
  3380.        >
  3381.          
  3382.          Accessories
  3383. </a>
  3384.      </li>
  3385.    
  3386.  
  3387.    
  3388.  
  3389.    
  3390.    
  3391.  
  3392.    
  3393.    
  3394.  
  3395.    
  3396.  
  3397.    
  3398.      <li
  3399.        class="navmenu-item navmenu-id-phone-parts"
  3400.      >
  3401.        <a
  3402.        class="
  3403.          navmenu-link
  3404.          navmenu-link-depth-3
  3405.          
  3406.        "
  3407.        href="/collections/phone-parts"
  3408.        >
  3409.          
  3410.          Phone Parts
  3411. </a>
  3412.      </li>
  3413.    
  3414.  
  3415.    
  3416.  
  3417.    
  3418.    
  3419.  
  3420.    
  3421.    
  3422.  
  3423.    
  3424.  
  3425.    
  3426.      <li
  3427.        class="navmenu-item navmenu-id-printer-parts"
  3428.      >
  3429.        <a
  3430.        class="
  3431.          navmenu-link
  3432.          navmenu-link-depth-3
  3433.          
  3434.        "
  3435.        href="/collections/printer-parts"
  3436.        >
  3437.          
  3438.          Printer Parts
  3439. </a>
  3440.      </li>
  3441.    
  3442.  
  3443.    
  3444.  
  3445.    
  3446.    
  3447.  
  3448.    
  3449.    
  3450.  
  3451.    
  3452.  
  3453.    
  3454.      <li
  3455.        class="navmenu-item navmenu-id-server-parts"
  3456.      >
  3457.        <a
  3458.        class="
  3459.          navmenu-link
  3460.          navmenu-link-depth-3
  3461.          
  3462.        "
  3463.        href="/collections/server-parts"
  3464.        >
  3465.          
  3466.          Server Parts
  3467. </a>
  3468.      </li>
  3469.    
  3470.  
  3471.    
  3472.  
  3473.    
  3474.    
  3475.  
  3476.    
  3477.    
  3478.  
  3479.    
  3480.  
  3481.    
  3482.      <li
  3483.        class="navmenu-item navmenu-id-tablet-parts"
  3484.      >
  3485.        <a
  3486.        class="
  3487.          navmenu-link
  3488.          navmenu-link-depth-3
  3489.          
  3490.        "
  3491.        href="/collections/tablet-parts"
  3492.        >
  3493.          
  3494.          Tablet Parts
  3495. </a>
  3496.      </li>
  3497.    
  3498.  
  3499. </ul>
  3500.  
  3501.        
  3502.        
  3503.      </li>
  3504.    
  3505.  
  3506. </ul>
  3507.  
  3508.      
  3509.  
  3510.      
  3511.    </li>
  3512.  
  3513.    
  3514.    
  3515.  
  3516.    
  3517.    
  3518.    
  3519. <li
  3520.      class="navmenu-item            navmenu-id-about-us"
  3521.      
  3522.    >
  3523.      <a
  3524.        class="navmenu-link  "
  3525.        href="/pages/about-us"
  3526.        
  3527.      >
  3528.        About Us
  3529.      </a>
  3530.  
  3531.      
  3532.  
  3533.      
  3534.      
  3535.  
  3536.      
  3537.  
  3538.      
  3539.    </li>
  3540.  
  3541.    
  3542.    
  3543.  
  3544.    
  3545.    
  3546.    
  3547. <li
  3548.      class="navmenu-item            navmenu-id-repair-centers"
  3549.      
  3550.    >
  3551.      <a
  3552.        class="navmenu-link  "
  3553.        href="/pages/store-locator"
  3554.        
  3555.      >
  3556.        Repair Centers
  3557.      </a>
  3558.  
  3559.      
  3560.  
  3561.      
  3562.      
  3563.  
  3564.      
  3565.  
  3566.      
  3567.    </li>
  3568.  
  3569.    
  3570.    
  3571.  
  3572.    
  3573.    
  3574.    
  3575. <li
  3576.      class="navmenu-item            navmenu-id-parts-request"
  3577.      
  3578.    >
  3579.      <a
  3580.        class="navmenu-link  "
  3581.        href="/pages/part-request"
  3582.        
  3583.      >
  3584.        Parts Request
  3585.      </a>
  3586.  
  3587.      
  3588.  
  3589.      
  3590.      
  3591.  
  3592.      
  3593.  
  3594.      
  3595.    </li>
  3596.  
  3597.    
  3598.    
  3599.  
  3600.    
  3601.    
  3602.    
  3603. <li
  3604.      class="navmenu-item            navmenu-id-shipping"
  3605.      
  3606.    >
  3607.      <a
  3608.        class="navmenu-link  "
  3609.        href="/pages/shipping"
  3610.        
  3611.      >
  3612.        Shipping
  3613.      </a>
  3614.  
  3615.      
  3616.  
  3617.      
  3618.      
  3619.  
  3620.      
  3621.  
  3622.      
  3623.    </li>
  3624.  
  3625.    
  3626.    
  3627.  
  3628.    
  3629.    
  3630.    
  3631. <li
  3632.      class="navmenu-item            navmenu-id-francais"
  3633.      
  3634.    >
  3635.      <a
  3636.        class="navmenu-link  "
  3637.        href="/pages/francais"
  3638.        
  3639.      >
  3640.        Français
  3641.      </a>
  3642.  
  3643.      
  3644.  
  3645.      
  3646.      
  3647.  
  3648.      
  3649.  
  3650.      
  3651.    </li>
  3652.  
  3653. </ul>
  3654.  
  3655.  
  3656.      
  3657.    </div>
  3658.    <div class="utility-bar__mobile-disclosure" data-utility-mobile></div>
  3659.  </div>
  3660.  
  3661.  <div class="mobile-nav-overlay" data-mobile-nav-overlay></div>
  3662. </div>
  3663.  
  3664. </header>
  3665.  
  3666. </div>
  3667. <!-- END sections: header-group -->
  3668.  
  3669.    <div style="--background-color: #fff">
  3670.      
  3671.  
  3672.  
  3673.    </div>
  3674.  
  3675.    <div class="intersection-target" data-header-intersection-target></div>
  3676.    <div class="site-main-dimmer" data-site-main-dimmer></div>
  3677.    <main id="site-main" class="site-main" aria-label="Main content" tabindex="-1">
  3678.      <div id="shopify-section-template--15492296147031__dynamic_slideshow" class="shopify-section slideshow--section">
  3679.  
  3680.  
  3681.  
  3682. <script type="application/pxs-animation-mapping+json">
  3683.  {
  3684.    "blocks": [".slideshow-slide"],
  3685.    "elements": [
  3686.      ".slideshow-slide__heading",
  3687.      ".slideshow-slide__subheading",
  3688.      ".slideshow-slide__text",
  3689.      ".slideshow-slide__button"
  3690.    ]
  3691.  }
  3692. </script>
  3693.  
  3694. <style data-shopify>
  3695.  #shopify-section-template--15492296147031__dynamic_slideshow {
  3696.    --autoplay-interval: 5s;
  3697.  }
  3698.  
  3699.  
  3700.    @media screen and (min-width: 720px) {
  3701.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3702.        height: 55.55555555555556vw;
  3703.      }
  3704.    }
  3705.  
  3706.  
  3707.  
  3708.    @media screen and (max-width: 719px) {
  3709.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3710.        
  3711.          height: 55.55555555555556vw;
  3712.        
  3713.      }
  3714.    }
  3715.  
  3716. </style>
  3717.  
  3718.  
  3719.  
  3720.  
  3721. <script
  3722.  type="application/json"
  3723.  data-section-type="pxs-slideshow"
  3724.  data-section-id="template--15492296147031__dynamic_slideshow"
  3725.  data-section-data
  3726. >
  3727.  {
  3728.    "enable_autoplay": true,
  3729.    "autoplay_interval": 5,
  3730.    "mobile_navigation_adjust": true,
  3731.    "transition_fade": null,
  3732.    "slide_attraction": null,
  3733.    "slide_friction": null,
  3734.    "next_text": "Next slide",
  3735.    "previous_text": "Previous slide"
  3736.  }
  3737. </script>
  3738.  
  3739. <section
  3740.  class="
  3741.    slideshow
  3742.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  3743.  "
  3744.  aria-label="Slideshow"
  3745.  data-autoplay="true"
  3746.  data-autoplay-interval="5"
  3747.  data-banner="false"
  3748.  data-slideshow
  3749. ><div
  3750.    class="slideshow__wrapper "
  3751.    data-slideshow-wrapper
  3752.  >
  3753.  
  3754.  
  3755. <div
  3756.  class="slideshow-slide  "
  3757.  aria-label="Slide 1 of 5"
  3758.  data-text-color="#FFFFFF"
  3759.  tabindex="-1"
  3760.  data-slideshow-slide
  3761.  data-slide-index="0"
  3762.  
  3763. ><div
  3764.      class="
  3765.        slideshow-slide__image-wrapper
  3766.        
  3767.      "
  3768.      data-slide-image-wrapper
  3769.    >
  3770.  
  3771.  
  3772.    <noscript data-rimg-noscript>
  3773.      <img loading="lazy"
  3774.        
  3775.          src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3776.        
  3777.  
  3778.        alt=""
  3779.        data-rimg="noscript"
  3780.        srcset="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850 1x"
  3781.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3782.        style="
  3783.        object-fit:cover;object-position:50.0% 50.0%;
  3784.      
  3785. "
  3786.        
  3787.      >
  3788.    </noscript>
  3789.  
  3790.  
  3791.  <img loading="lazy"
  3792.    
  3793.      src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3794.    
  3795.    alt=""
  3796.  
  3797.    
  3798.      data-rimg="lazy"
  3799.      data-rimg-scale="1"
  3800.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2_1_{size}.jpg?v=1739722850"
  3801.      data-rimg-max="1800x1000"
  3802.      data-rimg-crop="false"
  3803.      
  3804.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3805.    
  3806.  
  3807.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3808.    style="
  3809.        object-fit:cover;object-position:50.0% 50.0%;
  3810.      
  3811. "
  3812.    
  3813.  >
  3814.  
  3815.  
  3816.  
  3817.  <div data-rimg-canvas></div>
  3818.  
  3819.  
  3820. <div
  3821.          class="
  3822.            slideshow-slide__overlay
  3823.            
  3824.          "
  3825.          style="
  3826.            
  3827.              background-color: #000000;
  3828.            
  3829.            opacity: 0.01;
  3830.          "
  3831.        ></div></div><div
  3832.    class="
  3833.      slideshow-slide__content
  3834.      slideshow-slide__content--slide_tJp4ET
  3835.      slideshow-slide__content--text-center
  3836.    "
  3837.    data-slide-content
  3838.  ></div>
  3839. </div>
  3840.  
  3841.  
  3842.  
  3843.  
  3844. <div
  3845.  class="slideshow-slide  "
  3846.  aria-label="Slide 2 of 5"
  3847.  data-text-color="#FFFFFF"
  3848.  tabindex="-1"
  3849.  data-slideshow-slide
  3850.  data-slide-index="1"
  3851.  
  3852. ><div
  3853.      class="
  3854.        slideshow-slide__image-wrapper
  3855.        
  3856.      "
  3857.      data-slide-image-wrapper
  3858.    >
  3859.  
  3860.  
  3861.    <noscript data-rimg-noscript>
  3862.      <img loading="lazy"
  3863.        
  3864.          src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3865.        
  3866.  
  3867.        alt=""
  3868.        data-rimg="noscript"
  3869.        srcset="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692 1x"
  3870.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3871.        style="
  3872.        object-fit:cover;object-position:50.0% 50.0%;
  3873.      
  3874. "
  3875.        
  3876.      >
  3877.    </noscript>
  3878.  
  3879.  
  3880.  <img loading="lazy"
  3881.    
  3882.      src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3883.    
  3884.    alt=""
  3885.  
  3886.    
  3887.      data-rimg="lazy"
  3888.      data-rimg-scale="1"
  3889.      data-rimg-template="//laptopparts.ca/cdn/shop/files/3_1_{size}.jpg?v=1739722692"
  3890.      data-rimg-max="1800x1000"
  3891.      data-rimg-crop="false"
  3892.      
  3893.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3894.    
  3895.  
  3896.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3897.    style="
  3898.        object-fit:cover;object-position:50.0% 50.0%;
  3899.      
  3900. "
  3901.    
  3902.  >
  3903.  
  3904.  
  3905.  
  3906.  <div data-rimg-canvas></div>
  3907.  
  3908.  
  3909. <div
  3910.          class="
  3911.            slideshow-slide__overlay
  3912.            
  3913.          "
  3914.          style="
  3915.            
  3916.              background-color: #000000;
  3917.            
  3918.            opacity: 0.01;
  3919.          "
  3920.        ></div></div><div
  3921.    class="
  3922.      slideshow-slide__content
  3923.      slideshow-slide__content--slide_QztrPf
  3924.      slideshow-slide__content--text-center
  3925.    "
  3926.    data-slide-content
  3927.  ></div>
  3928. </div>
  3929.  
  3930.  
  3931.  
  3932.  
  3933. <div
  3934.  class="slideshow-slide  "
  3935.  aria-label="Slide 3 of 5"
  3936.  data-text-color="#FFFFFF"
  3937.  tabindex="-1"
  3938.  data-slideshow-slide
  3939.  data-slide-index="2"
  3940.  
  3941. ><div
  3942.      class="
  3943.        slideshow-slide__image-wrapper
  3944.        
  3945.      "
  3946.      data-slide-image-wrapper
  3947.    >
  3948.  
  3949.  
  3950.    <noscript data-rimg-noscript>
  3951.      <img loading="lazy"
  3952.        
  3953.          src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  3954.        
  3955.  
  3956.        alt=""
  3957.        data-rimg="noscript"
  3958.        srcset="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085 1x"
  3959.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3960.        style="
  3961.        object-fit:cover;object-position:50.0% 50.0%;
  3962.      
  3963. "
  3964.        
  3965.      >
  3966.    </noscript>
  3967.  
  3968.  
  3969.  <img loading="lazy"
  3970.    
  3971.      src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  3972.    
  3973.    alt=""
  3974.  
  3975.    
  3976.      data-rimg="lazy"
  3977.      data-rimg-scale="1"
  3978.      data-rimg-template="//laptopparts.ca/cdn/shop/files/1_1_{size}.jpg?v=1739723085"
  3979.      data-rimg-max="1800x1000"
  3980.      data-rimg-crop="false"
  3981.      
  3982.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3983.    
  3984.  
  3985.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3986.    style="
  3987.        object-fit:cover;object-position:50.0% 50.0%;
  3988.      
  3989. "
  3990.    
  3991.  >
  3992.  
  3993.  
  3994.  
  3995.  <div data-rimg-canvas></div>
  3996.  
  3997.  
  3998. <div
  3999.          class="
  4000.            slideshow-slide__overlay
  4001.            
  4002.          "
  4003.          style="
  4004.            
  4005.              background-color: #000000;
  4006.            
  4007.            opacity: 0.01;
  4008.          "
  4009.        ></div></div><div
  4010.    class="
  4011.      slideshow-slide__content
  4012.      slideshow-slide__content--slide_UPfjBG
  4013.      slideshow-slide__content--text-center
  4014.    "
  4015.    data-slide-content
  4016.  ></div>
  4017. </div>
  4018.  
  4019.  
  4020.  
  4021.  
  4022. <div
  4023.  class="slideshow-slide  "
  4024.  aria-label="Slide 4 of 5"
  4025.  data-text-color="#ffffff"
  4026.  tabindex="-1"
  4027.  data-slideshow-slide
  4028.  data-slide-index="3"
  4029.  
  4030. ><div
  4031.      class="
  4032.        slideshow-slide__image-wrapper
  4033.        
  4034.      "
  4035.      data-slide-image-wrapper
  4036.    >
  4037.  
  4038.  
  4039.    <noscript data-rimg-noscript>
  4040.      <img loading="lazy"
  4041.        
  4042.          src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4043.        
  4044.  
  4045.        alt=""
  4046.        data-rimg="noscript"
  4047.        srcset="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350 1x"
  4048.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4049.        style="
  4050.        object-fit:cover;object-position:50.0% 50.0%;
  4051.      
  4052. "
  4053.        
  4054.      >
  4055.    </noscript>
  4056.  
  4057.  
  4058.  <img loading="lazy"
  4059.    
  4060.      src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4061.    
  4062.    alt=""
  4063.  
  4064.    
  4065.      data-rimg="lazy"
  4066.      data-rimg-scale="1"
  4067.      data-rimg-template="//laptopparts.ca/cdn/shop/files/5_{size}.jpg?v=1739723350"
  4068.      data-rimg-max="1800x1000"
  4069.      data-rimg-crop="false"
  4070.      
  4071.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4072.    
  4073.  
  4074.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4075.    style="
  4076.        object-fit:cover;object-position:50.0% 50.0%;
  4077.      
  4078. "
  4079.    
  4080.  >
  4081.  
  4082.  
  4083.  
  4084.  <div data-rimg-canvas></div>
  4085.  
  4086.  
  4087. <div
  4088.          class="
  4089.            slideshow-slide__overlay
  4090.            
  4091.          "
  4092.          style="
  4093.            
  4094.              background-color: #000000;
  4095.            
  4096.            opacity: 0.01;
  4097.          "
  4098.        ></div></div><div
  4099.    class="
  4100.      slideshow-slide__content
  4101.      slideshow-slide__content--slide_MbNDbx
  4102.      slideshow-slide__content--text-center
  4103.    "
  4104.    data-slide-content
  4105.  ></div>
  4106. </div>
  4107.  
  4108.  
  4109.  
  4110.  
  4111. <div
  4112.  class="slideshow-slide  "
  4113.  aria-label="Slide 5 of 5"
  4114.  data-text-color="#FFFFFF"
  4115.  tabindex="-1"
  4116.  data-slideshow-slide
  4117.  data-slide-index="4"
  4118.  
  4119. ><div
  4120.      class="
  4121.        slideshow-slide__image-wrapper
  4122.        
  4123.      "
  4124.      data-slide-image-wrapper
  4125.    >
  4126.  
  4127.  
  4128.    <noscript data-rimg-noscript>
  4129.      <img loading="lazy"
  4130.        
  4131.          src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4132.        
  4133.  
  4134.        alt=""
  4135.        data-rimg="noscript"
  4136.        srcset="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234 1x"
  4137.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4138.        style="
  4139.        object-fit:cover;object-position:50.0% 50.0%;
  4140.      
  4141. "
  4142.        
  4143.      >
  4144.    </noscript>
  4145.  
  4146.  
  4147.  <img loading="lazy"
  4148.    
  4149.      src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4150.    
  4151.    alt=""
  4152.  
  4153.    
  4154.      data-rimg="lazy"
  4155.      data-rimg-scale="1"
  4156.      data-rimg-template="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_{size}.jpg?v=1739723234"
  4157.      data-rimg-max="1800x1000"
  4158.      data-rimg-crop="false"
  4159.      
  4160.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4161.    
  4162.  
  4163.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4164.    style="
  4165.        object-fit:cover;object-position:50.0% 50.0%;
  4166.      
  4167. "
  4168.    
  4169.  >
  4170.  
  4171.  
  4172.  
  4173.  <div data-rimg-canvas></div>
  4174.  
  4175.  
  4176. <div
  4177.          class="
  4178.            slideshow-slide__overlay
  4179.            
  4180.          "
  4181.          style="
  4182.            
  4183.              background-color: #000000;
  4184.            
  4185.            opacity: 0.01;
  4186.          "
  4187.        ></div></div><div
  4188.    class="
  4189.      slideshow-slide__content
  4190.      slideshow-slide__content--slide_eGUxJ7
  4191.      slideshow-slide__content--text-center
  4192.    "
  4193.    data-slide-content
  4194.  ></div>
  4195. </div>
  4196.  
  4197. </div><ol
  4198.      class="slideshow-pagination"
  4199.      data-slideshow-pagination
  4200.    ><li class="slideshow-pagination__dot">
  4201.          <button
  4202.            class="slideshow-pagination__button"
  4203.            data-selected="true"
  4204.            data-slide-button="0"
  4205.          >
  4206.            
  4207.              
  4208.    <div class="circle-timer">
  4209.      <svg class="circle-timer__svg">
  4210.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4211.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4212.      </svg>
  4213.    </div>
  4214.  
  4215.            
  4216.            <span class="visually-hidden">Slide 1</span>
  4217.          </button>
  4218.        </li><li class="slideshow-pagination__dot">
  4219.          <button
  4220.            class="slideshow-pagination__button"
  4221.            data-selected="false"
  4222.            data-slide-button="1"
  4223.          >
  4224.            
  4225.              
  4226.    <div class="circle-timer">
  4227.      <svg class="circle-timer__svg">
  4228.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4229.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4230.      </svg>
  4231.    </div>
  4232.  
  4233.            
  4234.            <span class="visually-hidden">Slide 2</span>
  4235.          </button>
  4236.        </li><li class="slideshow-pagination__dot">
  4237.          <button
  4238.            class="slideshow-pagination__button"
  4239.            data-selected="false"
  4240.            data-slide-button="2"
  4241.          >
  4242.            
  4243.              
  4244.    <div class="circle-timer">
  4245.      <svg class="circle-timer__svg">
  4246.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4247.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4248.      </svg>
  4249.    </div>
  4250.  
  4251.            
  4252.            <span class="visually-hidden">Slide 3</span>
  4253.          </button>
  4254.        </li><li class="slideshow-pagination__dot">
  4255.          <button
  4256.            class="slideshow-pagination__button"
  4257.            data-selected="false"
  4258.            data-slide-button="3"
  4259.          >
  4260.            
  4261.              
  4262.    <div class="circle-timer">
  4263.      <svg class="circle-timer__svg">
  4264.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4265.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4266.      </svg>
  4267.    </div>
  4268.  
  4269.            
  4270.            <span class="visually-hidden">Slide 4</span>
  4271.          </button>
  4272.        </li><li class="slideshow-pagination__dot">
  4273.          <button
  4274.            class="slideshow-pagination__button"
  4275.            data-selected="false"
  4276.            data-slide-button="4"
  4277.          >
  4278.            
  4279.              
  4280.    <div class="circle-timer">
  4281.      <svg class="circle-timer__svg">
  4282.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4283.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4284.      </svg>
  4285.    </div>
  4286.  
  4287.            
  4288.            <span class="visually-hidden">Slide 5</span>
  4289.          </button>
  4290.        </li></ol><div
  4291.    class="slideshow__current-slide visually-hidden"
  4292.    aria-live="polite"
  4293.    aria-atomic="true"
  4294.    data-slide-counter
  4295.    data-counter-template="Slide {{ count }} of {{ total }}"
  4296.  >
  4297.  </div>
  4298. </section>
  4299.  
  4300.  
  4301.  
  4302. </div><div id="shopify-section-template--15492296147031__dynamic_featured_collection" class="shopify-section featured-collection--section"><script
  4303.  type="application/json"
  4304.  data-section-id="template--15492296147031__dynamic_featured_collection"
  4305.  data-section-type="dynamic-featured-collection"
  4306. ></script>
  4307.  
  4308. <script type="application/pxs-animation-mapping+json">
  4309.  {
  4310.    "blocks": [
  4311.      ".featured-collection__title-card"
  4312.    ],
  4313.    "elements": [
  4314.      ".featured-collection__title-card-pre-heading",
  4315.      ".featured-collection__title-card-heading",
  4316.      ".featured-collection__title-card-button"
  4317.    ]
  4318.  }
  4319. </script>
  4320.  
  4321.  
  4322.  
  4323.  
  4324.  
  4325.  
  4326.  
  4327.  
  4328.  
  4329.  
  4330.  
  4331.  
  4332.  
  4333.  
  4334.  
  4335. <style data-shopify>
  4336.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card {
  4337.    color: ;
  4338.  }
  4339.  
  4340.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card-outer::before {
  4341.    background-color: ;
  4342.    opacity: 0.0;
  4343.  }
  4344.  
  4345.  @media screen and (min-width: 1080px) {
  4346.    #shopify-section-template--15492296147031__dynamic_featured_collection [data-layout="grid"] .featured-collection__title-card {
  4347.      
  4348.    }
  4349.  }
  4350. </style>
  4351.  
  4352.  
  4353.  
  4354.  
  4355.  
  4356.  
  4357.  
  4358.  
  4359.  
  4360.  
  4361.  
  4362.  
  4363.  
  4364.  
  4365.  
  4366. <section class="featured-collection__container" data-featured-collection>
  4367.  
  4368.    <h2 class="home-section--title">
  4369.      Shop The Best Selling
  4370.    </h2>
  4371.  
  4372.  
  4373.  <ul
  4374.    class="home-section--content featured-collection__content"
  4375.    data-content
  4376.    data-layout="slideshow"
  4377.  >
  4378.    
  4379.  
  4380.    
  4381.      
  4382.  
  4383.  
  4384.  
  4385.  
  4386.  
  4387.  
  4388.  
  4389.  
  4390.  
  4391.  
  4392.  
  4393.  
  4394.  
  4395.  
  4396.  
  4397.  
  4398.  
  4399.  
  4400.  
  4401.  
  4402.  
  4403.  
  4404.  
  4405.  
  4406.  
  4407.  
  4408.  
  4409.  
  4410.  
  4411.  
  4412.  
  4413.  
  4414.    
  4415.  
  4416.  
  4417.  
  4418. <li
  4419.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  4420.  data-product-item
  4421.  data-product-quickshop-url="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4422.  
  4423. >
  4424.  <div class="productitem" data-product-item-content>
  4425.    
  4426.    
  4427.    
  4428.    
  4429.  
  4430.    
  4431.  
  4432.    
  4433.  
  4434.    <div class="productitem__container">
  4435.      
  4436.  
  4437.      <div class="productitem__image-container">
  4438.        <a target="_blank"
  4439.          class="productitem--image-link"
  4440.          href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4441.          aria-label="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4442.          tabindex="-1"
  4443.          data-product-page-link
  4444.        >
  4445.          <figure
  4446.            class="productitem--image"
  4447.            data-product-item-image
  4448.            
  4449.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  4450.            
  4451.          >
  4452.            
  4453.              
  4454.              
  4455.  
  4456.  
  4457.    <noscript data-rimg-noscript>
  4458.      <img loading="lazy"
  4459.        
  4460.          src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4461.        
  4462.  
  4463.        alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4464.        data-rimg="noscript"
  4465.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033 1x, //laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_998x998.jpg?v=1729018033 1.95x"
  4466.        class="productitem--image-primary"
  4467.        
  4468.        
  4469.      >
  4470.    </noscript>
  4471.  
  4472.  
  4473.  <img loading="lazy"
  4474.    
  4475.      src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4476.    
  4477.    alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4478.  
  4479.    
  4480.      data-rimg="lazy"
  4481.      data-rimg-scale="1"
  4482.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_{size}.jpg?v=1729018033"
  4483.      data-rimg-max="1000x1000"
  4484.      data-rimg-crop="false"
  4485.      
  4486.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  4487.    
  4488.  
  4489.    class="productitem--image-primary"
  4490.    
  4491.    
  4492.  >
  4493.  
  4494.  
  4495.  
  4496.  <div data-rimg-canvas></div>
  4497.  
  4498.  
  4499.            
  4500.  
  4501.            
  4502.  
  4503.  
  4504.  
  4505.  
  4506.  
  4507.  
  4508.  
  4509.  
  4510.  
  4511.  
  4512.  
  4513.  
  4514.  
  4515.  
  4516.  
  4517.  
  4518.  
  4519.  
  4520.  
  4521.  
  4522.  
  4523.  
  4524.  
  4525.  
  4526.  
  4527.  
  4528.  
  4529.          </figure>
  4530.        </a>
  4531.      </div><div class="productitem--info">
  4532.        
  4533.          
  4534.  
  4535.        
  4536.  
  4537.        
  4538.          
  4539.  
  4540.  
  4541.  
  4542.  
  4543.  
  4544.  
  4545.  
  4546.  
  4547.  
  4548.  
  4549.  
  4550.  
  4551.  
  4552.  
  4553.  
  4554.  
  4555.  
  4556.  
  4557.  
  4558.  
  4559.  
  4560.  
  4561.  
  4562.  
  4563.  
  4564.  
  4565.  
  4566.  
  4567.  
  4568.  
  4569. <div class="price productitem__price ">
  4570.  
  4571.    <div
  4572.      class="price__compare-at visible"
  4573.      data-price-compare-container
  4574.    >
  4575.  
  4576.      
  4577.        <span class="money price__original" data-price-original></span>
  4578.      
  4579.    </div>
  4580.  
  4581.  
  4582.    
  4583.      
  4584.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4585.        
  4586.          <span class="visually-hidden">Original price</span>
  4587.          <span class="money price__compare-at--min" data-price-compare-min>
  4588.            $115.98
  4589.          </span>
  4590.          -
  4591.          <span class="visually-hidden">Original price</span>
  4592.          <span class="money price__compare-at--max" data-price-compare-max>
  4593.            $115.98
  4594.          </span>
  4595.        
  4596.      </div>
  4597.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4598.        <span class="visually-hidden">Original price</span>
  4599.        <span class="money price__compare-at--single" data-price-compare>
  4600.          
  4601.        </span>
  4602.      </div>
  4603.    
  4604.  
  4605.  
  4606.  <div class="price__current price__current--emphasize " data-price-container>
  4607.  
  4608.    
  4609.  
  4610.    
  4611.      
  4612.      
  4613.      <span class="money" data-price>
  4614.        $115.98
  4615.      </span>
  4616.    
  4617.    
  4618.  </div>
  4619.  
  4620.  
  4621.    
  4622.    <div class="price__current--hidden" data-current-price-range-hidden>
  4623.      
  4624.        <span class="money price__current--min" data-price-min>$115.98</span>
  4625.        -
  4626.        <span class="money price__current--max" data-price-max>$115.98</span>
  4627.      
  4628.    </div>
  4629.    <div class="price__current--hidden" data-current-price-hidden>
  4630.      <span class="visually-hidden">Current price</span>
  4631.      <span class="money" data-price>
  4632.        $115.98
  4633.      </span>
  4634.    </div>
  4635.  
  4636.  
  4637.  
  4638.    
  4639.    
  4640.    
  4641.    
  4642.  
  4643.    <div
  4644.      class="
  4645.        productitem__unit-price
  4646.        hidden
  4647.      "
  4648.      data-unit-price
  4649.    >
  4650.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  4651.    </div>
  4652.  
  4653.  
  4654.  
  4655. </div>
  4656.  
  4657.  
  4658.        
  4659.  
  4660.        <h2 class="productitem--title">
  4661.          <a href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen" data-product-page-link>
  4662.            14 Lcd Screen for Dell Latitude 7480 7490 Laptops - FHD Only B140HAN03.3 KW8T4
  4663.          </a>
  4664.        </h2>
  4665.  
  4666.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  4667.        <div class="star_container 3959626498135"></div>
  4668.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  4669.  
  4670.        
  4671.          
  4672.            <span class="productitem--vendor">
  4673.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  4674.            </span>
  4675.          
  4676.        
  4677.  
  4678.        
  4679.  
  4680.        
  4681.          
  4682.            <div class="productitem__stock-level">
  4683.              <!--
  4684.  
  4685.  
  4686.  
  4687.  
  4688.  
  4689.  
  4690.  
  4691. <div class="product-stock-level-wrapper" >
  4692.  
  4693.    <span class="
  4694.  product-stock-level
  4695.  product-stock-level--continue-selling
  4696.  
  4697. ">
  4698.      
  4699.  
  4700.      <span class="product-stock-level__text">
  4701.        
  4702.        <div class="product-stock-level__badge-text">
  4703.          
  4704.  
  4705.    In stock
  4706.  
  4707.  
  4708.        </div>
  4709.      </span>
  4710.    </span>
  4711.  
  4712. </div>
  4713. -->
  4714.              
  4715.  
  4716.  
  4717.    
  4718.      <b style="color:green">In stock</b>
  4719.    
  4720.  
  4721.  
  4722.  
  4723.  
  4724.  
  4725.  
  4726.  
  4727.            </div>
  4728.          
  4729.  
  4730.          
  4731.            
  4732.          
  4733.        
  4734.  
  4735.        
  4736.          <div class="productitem--description">
  4737.            <p>
  4738. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  4739.  
  4740. Compatible Part #s: B140HAN03.3, KW8T4
  4741.  
  4742. Compatible Models:
  4743. Dell Latitude 74...</p>
  4744.  
  4745.            
  4746.              <a
  4747.                href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4748.                class="productitem--link"
  4749.                data-product-page-link
  4750.              >
  4751.                View full details
  4752.              </a>
  4753.            
  4754.          </div>
  4755.        
  4756.      </div>
  4757.  
  4758.      
  4759.        
  4760.          
  4761.          
  4762.          
  4763.  
  4764.          
  4765.          
  4766.  
  4767.          
  4768.  
  4769.          
  4770.  
  4771.          <div class="productitem--actions" data-product-actions>
  4772.            <div class="productitem--listview-price">
  4773.              
  4774.  
  4775.  
  4776.  
  4777.  
  4778.  
  4779.  
  4780.  
  4781.  
  4782.  
  4783.  
  4784.  
  4785.  
  4786.  
  4787.  
  4788.  
  4789.  
  4790.  
  4791.  
  4792.  
  4793.  
  4794.  
  4795.  
  4796.  
  4797.  
  4798.  
  4799.  
  4800.  
  4801.  
  4802.  
  4803.  
  4804. <div class="price productitem__price ">
  4805.  
  4806.    <div
  4807.      class="price__compare-at visible"
  4808.      data-price-compare-container
  4809.    >
  4810.  
  4811.      
  4812.        <span class="money price__original" data-price-original></span>
  4813.      
  4814.    </div>
  4815.  
  4816.  
  4817.    
  4818.      
  4819.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4820.        
  4821.          <span class="visually-hidden">Original price</span>
  4822.          <span class="money price__compare-at--min" data-price-compare-min>
  4823.            $115.98
  4824.          </span>
  4825.          -
  4826.          <span class="visually-hidden">Original price</span>
  4827.          <span class="money price__compare-at--max" data-price-compare-max>
  4828.            $115.98
  4829.          </span>
  4830.        
  4831.      </div>
  4832.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4833.        <span class="visually-hidden">Original price</span>
  4834.        <span class="money price__compare-at--single" data-price-compare>
  4835.          
  4836.        </span>
  4837.      </div>
  4838.    
  4839.  
  4840.  
  4841.  <div class="price__current price__current--emphasize " data-price-container>
  4842.  
  4843.    
  4844.  
  4845.    
  4846.      
  4847.      
  4848.      <span class="money" data-price>
  4849.        $115.98
  4850.      </span>
  4851.    
  4852.    
  4853.  </div>
  4854.  
  4855.  
  4856.    
  4857.    <div class="price__current--hidden" data-current-price-range-hidden>
  4858.      
  4859.        <span class="money price__current--min" data-price-min>$115.98</span>
  4860.        -
  4861.        <span class="money price__current--max" data-price-max>$115.98</span>
  4862.      
  4863.    </div>
  4864.    <div class="price__current--hidden" data-current-price-hidden>
  4865.      <span class="visually-hidden">Current price</span>
  4866.      <span class="money" data-price>
  4867.        $115.98
  4868.      </span>
  4869.    </div>
  4870.  
  4871.  
  4872.  
  4873.    
  4874.    
  4875.    
  4876.    
  4877.  
  4878.    <div
  4879.      class="
  4880.        productitem__unit-price
  4881.        hidden
  4882.      "
  4883.      data-unit-price
  4884.    >
  4885.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  4886.    </div>
  4887.  
  4888.  
  4889.  
  4890. </div>
  4891.  
  4892.  
  4893.            </div>
  4894.  
  4895.            <div class="productitem--listview-badge">
  4896.              
  4897.  
  4898.  
  4899.  
  4900.  
  4901.  
  4902.  
  4903.  
  4904.  
  4905.  
  4906.  
  4907.  
  4908.  
  4909.  
  4910.  
  4911.  
  4912.  
  4913.  
  4914.  
  4915.  
  4916.  
  4917.  
  4918.  
  4919.  
  4920.  
  4921.  
  4922.  
  4923.  
  4924.            </div>
  4925.  
  4926.            
  4927.              <div
  4928.                class="
  4929.                  productitem--action
  4930.                  quickshop-button
  4931.                  
  4932.                "
  4933.              >
  4934.                <button
  4935.                  class="productitem--action-trigger button-secondary"
  4936.                  data-quickshop-full
  4937.                  
  4938.                  
  4939.                  type="button"
  4940.                >
  4941.                  Quick shop
  4942.                </button>
  4943.              </div>
  4944.            
  4945.  
  4946.            
  4947.              <div
  4948.                class="
  4949.                  productitem--action
  4950.                  atc--button
  4951.                  
  4952.                "
  4953.              >
  4954.                <button
  4955.                  class="productitem--action-trigger productitem--action-atc button-primary"
  4956.                  type="button"
  4957.                  aria-label="Add to cart"
  4958.                  
  4959.                    data-quick-buy
  4960.                  
  4961.                  data-variant-id="29564289744983"
  4962.                  
  4963.                >
  4964.                  <span class="atc-button--text">
  4965.                    Add to cart
  4966.                  </span>
  4967.                  <span class="atc-button--icon"><svg
  4968.  aria-hidden="true"
  4969.  focusable="false"
  4970.  role="presentation"
  4971.  width="26"
  4972.  height="26"
  4973.  viewBox="0 0 26 26"
  4974.  xmlns="http://www.w3.org/2000/svg"
  4975. >
  4976.  <g fill-rule="nonzero" fill="currentColor">
  4977.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  4978.  </g>
  4979. </svg></span>
  4980.                </button>
  4981.              </div>
  4982.            
  4983.          </div>
  4984.        
  4985.      
  4986.    </div>
  4987.  </div>
  4988.  
  4989.  
  4990.    <script type="application/json" data-quick-buy-settings>
  4991.      {
  4992.        "cart_redirection": true,
  4993.        "money_format": "${{amount}}"
  4994.      }
  4995.    </script>
  4996.  
  4997. </li>
  4998.    
  4999.      
  5000.  
  5001.  
  5002.  
  5003.  
  5004.  
  5005.  
  5006.  
  5007.  
  5008.  
  5009.  
  5010.  
  5011.  
  5012.  
  5013.  
  5014.  
  5015.  
  5016.  
  5017.  
  5018.  
  5019.  
  5020.  
  5021.  
  5022.  
  5023.  
  5024.  
  5025.  
  5026.  
  5027.  
  5028.  
  5029.  
  5030.  
  5031.  
  5032.    
  5033.  
  5034.  
  5035.  
  5036. <li
  5037.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  5038.  data-product-item
  5039.  data-product-quickshop-url="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5040.  
  5041. >
  5042.  <div class="productitem" data-product-item-content>
  5043.    
  5044.    
  5045.    
  5046.    
  5047.  
  5048.    
  5049.  
  5050.    
  5051.  
  5052.    <div class="productitem__container">
  5053.      
  5054.  
  5055.      <div class="productitem__image-container">
  5056.        <a target="_blank"
  5057.          class="productitem--image-link"
  5058.          href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5059.          aria-label="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5060.          tabindex="-1"
  5061.          data-product-page-link
  5062.        >
  5063.          <figure
  5064.            class="productitem--image"
  5065.            data-product-item-image
  5066.            
  5067.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5068.            
  5069.          >
  5070.            
  5071.              
  5072.              
  5073.  
  5074.  
  5075.    <noscript data-rimg-noscript>
  5076.      <img loading="lazy"
  5077.        
  5078.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5079.        
  5080.  
  5081.        alt=""
  5082.        data-rimg="noscript"
  5083.        srcset="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872 1x, //laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_599x599.jpg?v=1648053872 1.17x"
  5084.        class="productitem--image-primary"
  5085.        
  5086.        
  5087.      >
  5088.    </noscript>
  5089.  
  5090.  
  5091.  <img loading="lazy"
  5092.    
  5093.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5094.    
  5095.    alt=""
  5096.  
  5097.    
  5098.      data-rimg="lazy"
  5099.      data-rimg-scale="1"
  5100.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_{size}.jpg?v=1648053872"
  5101.      data-rimg-max="600x600"
  5102.      data-rimg-crop="false"
  5103.      
  5104.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  5105.    
  5106.  
  5107.    class="productitem--image-primary"
  5108.    
  5109.    
  5110.  >
  5111.  
  5112.  
  5113.  
  5114.  <div data-rimg-canvas></div>
  5115.  
  5116.  
  5117.            
  5118.  
  5119.            
  5120.  
  5121.  
  5122.  
  5123.  
  5124.  
  5125.  
  5126.  
  5127.  
  5128.  
  5129.  
  5130.  
  5131.  
  5132.  
  5133.  
  5134.  
  5135.  
  5136.  
  5137.  
  5138.  
  5139.  
  5140.  
  5141.  
  5142.  
  5143.  
  5144.  
  5145.  
  5146.  
  5147.          </figure>
  5148.        </a>
  5149.      </div><div class="productitem--info">
  5150.        
  5151.          
  5152.  
  5153.        
  5154.  
  5155.        
  5156.          
  5157.  
  5158.  
  5159.  
  5160.  
  5161.  
  5162.  
  5163.  
  5164.  
  5165.  
  5166.  
  5167.  
  5168.  
  5169.  
  5170.  
  5171.  
  5172.  
  5173.  
  5174.  
  5175.  
  5176.  
  5177.  
  5178.  
  5179.  
  5180.  
  5181.  
  5182.  
  5183.  
  5184.  
  5185.  
  5186.  
  5187. <div class="price productitem__price ">
  5188.  
  5189.    <div
  5190.      class="price__compare-at visible"
  5191.      data-price-compare-container
  5192.    >
  5193.  
  5194.      
  5195.        <span class="money price__original" data-price-original></span>
  5196.      
  5197.    </div>
  5198.  
  5199.  
  5200.    
  5201.      
  5202.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5203.        
  5204.          <span class="visually-hidden">Original price</span>
  5205.          <span class="money price__compare-at--min" data-price-compare-min>
  5206.            $90.99
  5207.          </span>
  5208.          -
  5209.          <span class="visually-hidden">Original price</span>
  5210.          <span class="money price__compare-at--max" data-price-compare-max>
  5211.            $90.99
  5212.          </span>
  5213.        
  5214.      </div>
  5215.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5216.        <span class="visually-hidden">Original price</span>
  5217.        <span class="money price__compare-at--single" data-price-compare>
  5218.          
  5219.        </span>
  5220.      </div>
  5221.    
  5222.  
  5223.  
  5224.  <div class="price__current price__current--emphasize " data-price-container>
  5225.  
  5226.    
  5227.  
  5228.    
  5229.      
  5230.      
  5231.      <span class="money" data-price>
  5232.        $90.99
  5233.      </span>
  5234.    
  5235.    
  5236.  </div>
  5237.  
  5238.  
  5239.    
  5240.    <div class="price__current--hidden" data-current-price-range-hidden>
  5241.      
  5242.        <span class="money price__current--min" data-price-min>$90.99</span>
  5243.        -
  5244.        <span class="money price__current--max" data-price-max>$90.99</span>
  5245.      
  5246.    </div>
  5247.    <div class="price__current--hidden" data-current-price-hidden>
  5248.      <span class="visually-hidden">Current price</span>
  5249.      <span class="money" data-price>
  5250.        $90.99
  5251.      </span>
  5252.    </div>
  5253.  
  5254.  
  5255.  
  5256.    
  5257.    
  5258.    
  5259.    
  5260.  
  5261.    <div
  5262.      class="
  5263.        productitem__unit-price
  5264.        hidden
  5265.      "
  5266.      data-unit-price
  5267.    >
  5268.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  5269.    </div>
  5270.  
  5271.  
  5272.  
  5273. </div>
  5274.  
  5275.  
  5276.        
  5277.  
  5278.        <h2 class="productitem--title">
  5279.          <a href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  5280.            20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  5281.          </a>
  5282.        </h2>
  5283.  
  5284.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5285.        <div class="star_container 3483510112343"></div>
  5286.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5287.  
  5288.        
  5289.          
  5290.            <span class="productitem--vendor">
  5291.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  5292.            </span>
  5293.          
  5294.        
  5295.  
  5296.        
  5297.  
  5298.        
  5299.          
  5300.            <div class="productitem__stock-level">
  5301.              <!--
  5302.  
  5303.  
  5304.  
  5305.  
  5306.  
  5307.  
  5308.  
  5309. <div class="product-stock-level-wrapper" >
  5310.  
  5311.    <span class="
  5312.  product-stock-level
  5313.  product-stock-level--continue-selling
  5314.  
  5315. ">
  5316.      
  5317.  
  5318.      <span class="product-stock-level__text">
  5319.        
  5320.        <div class="product-stock-level__badge-text">
  5321.          
  5322.  
  5323.    In stock
  5324.  
  5325.  
  5326.        </div>
  5327.      </span>
  5328.    </span>
  5329.  
  5330. </div>
  5331. -->
  5332.              
  5333.  
  5334.  
  5335.    
  5336.      <b style="color:green">In stock</b>
  5337.    
  5338.  
  5339.  
  5340.  
  5341.  
  5342.  
  5343.  
  5344.  
  5345.            </div>
  5346.          
  5347.  
  5348.          
  5349.            
  5350.          
  5351.        
  5352.  
  5353.        
  5354.          <div class="productitem--description">
  5355.            <p>Plugs directly into AC outlet.
  5356.  
  5357. Input: 100-240V ~ 50-60Hz
  5358. Output: 12V – 1.5A 18W
  5359. Connector Tip: mini USB
  5360. Colour: Black
  5361.  
  5362. Compatible Part #s: KP.01...</p>
  5363.  
  5364.            
  5365.              <a
  5366.                href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5367.                class="productitem--link"
  5368.                data-product-page-link
  5369.              >
  5370.                View full details
  5371.              </a>
  5372.            
  5373.          </div>
  5374.        
  5375.      </div>
  5376.  
  5377.      
  5378.        
  5379.          
  5380.          
  5381.          
  5382.  
  5383.          
  5384.          
  5385.  
  5386.          
  5387.  
  5388.          
  5389.  
  5390.          <div class="productitem--actions" data-product-actions>
  5391.            <div class="productitem--listview-price">
  5392.              
  5393.  
  5394.  
  5395.  
  5396.  
  5397.  
  5398.  
  5399.  
  5400.  
  5401.  
  5402.  
  5403.  
  5404.  
  5405.  
  5406.  
  5407.  
  5408.  
  5409.  
  5410.  
  5411.  
  5412.  
  5413.  
  5414.  
  5415.  
  5416.  
  5417.  
  5418.  
  5419.  
  5420.  
  5421.  
  5422.  
  5423. <div class="price productitem__price ">
  5424.  
  5425.    <div
  5426.      class="price__compare-at visible"
  5427.      data-price-compare-container
  5428.    >
  5429.  
  5430.      
  5431.        <span class="money price__original" data-price-original></span>
  5432.      
  5433.    </div>
  5434.  
  5435.  
  5436.    
  5437.      
  5438.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5439.        
  5440.          <span class="visually-hidden">Original price</span>
  5441.          <span class="money price__compare-at--min" data-price-compare-min>
  5442.            $90.99
  5443.          </span>
  5444.          -
  5445.          <span class="visually-hidden">Original price</span>
  5446.          <span class="money price__compare-at--max" data-price-compare-max>
  5447.            $90.99
  5448.          </span>
  5449.        
  5450.      </div>
  5451.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5452.        <span class="visually-hidden">Original price</span>
  5453.        <span class="money price__compare-at--single" data-price-compare>
  5454.          
  5455.        </span>
  5456.      </div>
  5457.    
  5458.  
  5459.  
  5460.  <div class="price__current price__current--emphasize " data-price-container>
  5461.  
  5462.    
  5463.  
  5464.    
  5465.      
  5466.      
  5467.      <span class="money" data-price>
  5468.        $90.99
  5469.      </span>
  5470.    
  5471.    
  5472.  </div>
  5473.  
  5474.  
  5475.    
  5476.    <div class="price__current--hidden" data-current-price-range-hidden>
  5477.      
  5478.        <span class="money price__current--min" data-price-min>$90.99</span>
  5479.        -
  5480.        <span class="money price__current--max" data-price-max>$90.99</span>
  5481.      
  5482.    </div>
  5483.    <div class="price__current--hidden" data-current-price-hidden>
  5484.      <span class="visually-hidden">Current price</span>
  5485.      <span class="money" data-price>
  5486.        $90.99
  5487.      </span>
  5488.    </div>
  5489.  
  5490.  
  5491.  
  5492.    
  5493.    
  5494.    
  5495.    
  5496.  
  5497.    <div
  5498.      class="
  5499.        productitem__unit-price
  5500.        hidden
  5501.      "
  5502.      data-unit-price
  5503.    >
  5504.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  5505.    </div>
  5506.  
  5507.  
  5508.  
  5509. </div>
  5510.  
  5511.  
  5512.            </div>
  5513.  
  5514.            <div class="productitem--listview-badge">
  5515.              
  5516.  
  5517.  
  5518.  
  5519.  
  5520.  
  5521.  
  5522.  
  5523.  
  5524.  
  5525.  
  5526.  
  5527.  
  5528.  
  5529.  
  5530.  
  5531.  
  5532.  
  5533.  
  5534.  
  5535.  
  5536.  
  5537.  
  5538.  
  5539.  
  5540.  
  5541.  
  5542.  
  5543.            </div>
  5544.  
  5545.            
  5546.              <div
  5547.                class="
  5548.                  productitem--action
  5549.                  quickshop-button
  5550.                  
  5551.                "
  5552.              >
  5553.                <button
  5554.                  class="productitem--action-trigger button-secondary"
  5555.                  data-quickshop-full
  5556.                  
  5557.                  
  5558.                  type="button"
  5559.                >
  5560.                  Quick shop
  5561.                </button>
  5562.              </div>
  5563.            
  5564.  
  5565.            
  5566.              <div
  5567.                class="
  5568.                  productitem--action
  5569.                  atc--button
  5570.                  
  5571.                "
  5572.              >
  5573.                <button
  5574.                  class="productitem--action-trigger productitem--action-atc button-primary"
  5575.                  type="button"
  5576.                  aria-label="Add to cart"
  5577.                  
  5578.                    data-quick-buy
  5579.                  
  5580.                  data-variant-id="39666212798551"
  5581.                  
  5582.                >
  5583.                  <span class="atc-button--text">
  5584.                    Add to cart
  5585.                  </span>
  5586.                  <span class="atc-button--icon"><svg
  5587.  aria-hidden="true"
  5588.  focusable="false"
  5589.  role="presentation"
  5590.  width="26"
  5591.  height="26"
  5592.  viewBox="0 0 26 26"
  5593.  xmlns="http://www.w3.org/2000/svg"
  5594. >
  5595.  <g fill-rule="nonzero" fill="currentColor">
  5596.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  5597.  </g>
  5598. </svg></span>
  5599.                </button>
  5600.              </div>
  5601.            
  5602.          </div>
  5603.        
  5604.      
  5605.    </div>
  5606.  </div>
  5607.  
  5608.  
  5609.    <script type="application/json" data-quick-buy-settings>
  5610.      {
  5611.        "cart_redirection": true,
  5612.        "money_format": "${{amount}}"
  5613.      }
  5614.    </script>
  5615.  
  5616. </li>
  5617.    
  5618.      
  5619.  
  5620.  
  5621.  
  5622.  
  5623.  
  5624.  
  5625.  
  5626.  
  5627.  
  5628.  
  5629.  
  5630.  
  5631.  
  5632.  
  5633.  
  5634.  
  5635.  
  5636.  
  5637.  
  5638.  
  5639.    
  5640.    
  5641.  
  5642.  
  5643.  
  5644.  
  5645.  
  5646.  
  5647.  
  5648.  
  5649.  
  5650.  
  5651.  
  5652.    
  5653.  
  5654.  
  5655.  
  5656. <li
  5657.  class="productgrid--item  imagestyle--natural    productitem--sale  productitem--emphasis      show-actions--mobile"
  5658.  data-product-item
  5659.  data-product-quickshop-url="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5660.  
  5661. >
  5662.  <div class="productitem" data-product-item-content>
  5663.    
  5664.    
  5665.    
  5666.    
  5667.  
  5668.    
  5669.  
  5670.    
  5671.  
  5672.    <div class="productitem__container">
  5673.      
  5674.  
  5675.      <div class="productitem__image-container">
  5676.        <a target="_blank"
  5677.          class="productitem--image-link"
  5678.          href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5679.          aria-label="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5680.          tabindex="-1"
  5681.          data-product-page-link
  5682.        >
  5683.          <figure
  5684.            class="productitem--image"
  5685.            data-product-item-image
  5686.            
  5687.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5688.            
  5689.          >
  5690.            
  5691.              
  5692.              
  5693.  
  5694.  
  5695.    <noscript data-rimg-noscript>
  5696.      <img loading="lazy"
  5697.        
  5698.          src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  5699.        
  5700.  
  5701.        alt="B156HTN03.6"
  5702.        data-rimg="noscript"
  5703.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945 1x"
  5704.        class="productitem--image-primary"
  5705.        
  5706.        
  5707.      >
  5708.    </noscript>
  5709.  
  5710.  
  5711.  <img loading="lazy"
  5712.    
  5713.      src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  5714.    
  5715.    alt="B156HTN03.6"
  5716.  
  5717.    
  5718.      data-rimg="lazy"
  5719.      data-rimg-scale="1"
  5720.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_{size}.jpg?v=1725475945"
  5721.      data-rimg-max="500x500"
  5722.      data-rimg-crop="false"
  5723.      
  5724.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  5725.    
  5726.  
  5727.    class="productitem--image-primary"
  5728.    
  5729.    
  5730.  >
  5731.  
  5732.  
  5733.  
  5734.  <div data-rimg-canvas></div>
  5735.  
  5736.  
  5737.            
  5738.  
  5739.            
  5740.  
  5741.  
  5742.  
  5743.  
  5744.  
  5745.  
  5746.  
  5747.  
  5748.  
  5749.  
  5750.  
  5751.  
  5752.  
  5753.  
  5754.  
  5755.  
  5756.  
  5757.  
  5758.  
  5759.  
  5760.  
  5761.  
  5762.  
  5763.  
  5764.  
  5765.  
  5766.  
  5767.  
  5768.  
  5769.  
  5770.  
  5771.  <span class="productitem__badge productitem__badge--sale"
  5772.    data-badge-sales
  5773.    
  5774.  >
  5775.    <span data-badge-sales-range>
  5776.      
  5777.        
  5778.          Save <span data-price-percent-saved>28</span>%
  5779.        
  5780.      
  5781.    </span>
  5782.    <span data-badge-sales-single style="display: none;">
  5783.      
  5784.        Save <span data-price-percent-saved></span>%
  5785.      
  5786.    </span>
  5787.  </span>
  5788.          </figure>
  5789.        </a>
  5790.      </div><div class="productitem--info">
  5791.        
  5792.          
  5793.  
  5794.        
  5795.  
  5796.        
  5797.          
  5798.  
  5799.  
  5800.  
  5801.  
  5802.  
  5803.  
  5804.  
  5805.  
  5806.  
  5807.  
  5808.  
  5809.  
  5810.  
  5811.  
  5812.  
  5813.  
  5814.  
  5815.  
  5816.  
  5817.  
  5818.  
  5819.  
  5820.  
  5821.  
  5822.  
  5823.  
  5824.  
  5825.  
  5826.  
  5827.  
  5828. <div class="price productitem__price ">
  5829.  
  5830.    <div
  5831.      class="price__compare-at visible"
  5832.      data-price-compare-container
  5833.    >
  5834.  
  5835.      
  5836.        <span class="visually-hidden">Original price</span>
  5837.        <span class="money price__compare-at--single" data-price-compare>
  5838.          $147.99
  5839.        </span>
  5840.      
  5841.    </div>
  5842.  
  5843.  
  5844.    
  5845.      
  5846.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5847.        
  5848.          <span class="visually-hidden">Original price</span>
  5849.          <span class="money price__compare-at--min" data-price-compare-min>
  5850.            $147.99
  5851.          </span>
  5852.          -
  5853.          <span class="visually-hidden">Original price</span>
  5854.          <span class="money price__compare-at--max" data-price-compare-max>
  5855.            $147.99
  5856.          </span>
  5857.        
  5858.      </div>
  5859.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5860.        <span class="visually-hidden">Original price</span>
  5861.        <span class="money price__compare-at--single" data-price-compare>
  5862.          $147.99
  5863.        </span>
  5864.      </div>
  5865.    
  5866.  
  5867.  
  5868.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  5869.  
  5870.    
  5871.  
  5872.    
  5873.      
  5874.      
  5875.        <span class="visually-hidden">Current price</span>
  5876.      
  5877.      <span class="money" data-price>
  5878.        $105.98
  5879.      </span>
  5880.    
  5881.    
  5882.  </div>
  5883.  
  5884.  
  5885.    
  5886.    <div class="price__current--hidden" data-current-price-range-hidden>
  5887.      
  5888.        <span class="money price__current--min" data-price-min>$105.98</span>
  5889.        -
  5890.        <span class="money price__current--max" data-price-max>$105.98</span>
  5891.      
  5892.    </div>
  5893.    <div class="price__current--hidden" data-current-price-hidden>
  5894.      <span class="visually-hidden">Current price</span>
  5895.      <span class="money" data-price>
  5896.        $105.98
  5897.      </span>
  5898.    </div>
  5899.  
  5900.  
  5901.  
  5902.    
  5903.    
  5904.    
  5905.    
  5906.  
  5907.    <div
  5908.      class="
  5909.        productitem__unit-price
  5910.        hidden
  5911.      "
  5912.      data-unit-price
  5913.    >
  5914.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  5915.    </div>
  5916.  
  5917.  
  5918.  
  5919. </div>
  5920.  
  5921.  
  5922.        
  5923.  
  5924.        <h2 class="productitem--title">
  5925.          <a href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops" data-product-page-link>
  5926.            15.6 FHD 1920x1080 Lcd Led Screen Lenovo Y50-70 Laptops B156HTN03.6
  5927.          </a>
  5928.        </h2>
  5929.  
  5930.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5931.        <div class="star_container 3929811353687"></div>
  5932.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5933.  
  5934.        
  5935.          
  5936.            <span class="productitem--vendor">
  5937.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  5938.            </span>
  5939.          
  5940.        
  5941.  
  5942.        
  5943.  
  5944.        
  5945.          
  5946.            <div class="productitem__stock-level">
  5947.              <!--
  5948.  
  5949.  
  5950.  
  5951.  
  5952.  
  5953.  
  5954.  
  5955. <div class="product-stock-level-wrapper" >
  5956.  
  5957.    <span class="
  5958.  product-stock-level
  5959.  product-stock-level--continue-selling
  5960.  
  5961. ">
  5962.      
  5963.  
  5964.      <span class="product-stock-level__text">
  5965.        
  5966.        <div class="product-stock-level__badge-text">
  5967.          
  5968.  
  5969.    In stock
  5970.  
  5971.  
  5972.        </div>
  5973.      </span>
  5974.    </span>
  5975.  
  5976. </div>
  5977. -->
  5978.              
  5979.  
  5980.  
  5981.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  5982.  
  5983.  
  5984.  
  5985.  
  5986.            </div>
  5987.          
  5988.  
  5989.          
  5990.            
  5991.          
  5992.        
  5993.  
  5994.        
  5995.          <div class="productitem--description">
  5996.            <p>
  5997. Description: New AU Optronics FHD 1920x1080 laptop lcd led screen, 15.6". This may be the replacement part you need to replace your broken or dama...</p>
  5998.  
  5999.            
  6000.              <a
  6001.                href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  6002.                class="productitem--link"
  6003.                data-product-page-link
  6004.              >
  6005.                View full details
  6006.              </a>
  6007.            
  6008.          </div>
  6009.        
  6010.      </div>
  6011.  
  6012.      
  6013.        
  6014.          
  6015.          
  6016.          
  6017.  
  6018.          
  6019.          
  6020.  
  6021.          
  6022.  
  6023.          
  6024.  
  6025.          <div class="productitem--actions" data-product-actions>
  6026.            <div class="productitem--listview-price">
  6027.              
  6028.  
  6029.  
  6030.  
  6031.  
  6032.  
  6033.  
  6034.  
  6035.  
  6036.  
  6037.  
  6038.  
  6039.  
  6040.  
  6041.  
  6042.  
  6043.  
  6044.  
  6045.  
  6046.  
  6047.  
  6048.  
  6049.  
  6050.  
  6051.  
  6052.  
  6053.  
  6054.  
  6055.  
  6056.  
  6057.  
  6058. <div class="price productitem__price ">
  6059.  
  6060.    <div
  6061.      class="price__compare-at visible"
  6062.      data-price-compare-container
  6063.    >
  6064.  
  6065.      
  6066.        <span class="visually-hidden">Original price</span>
  6067.        <span class="money price__compare-at--single" data-price-compare>
  6068.          $147.99
  6069.        </span>
  6070.      
  6071.    </div>
  6072.  
  6073.  
  6074.    
  6075.      
  6076.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6077.        
  6078.          <span class="visually-hidden">Original price</span>
  6079.          <span class="money price__compare-at--min" data-price-compare-min>
  6080.            $147.99
  6081.          </span>
  6082.          -
  6083.          <span class="visually-hidden">Original price</span>
  6084.          <span class="money price__compare-at--max" data-price-compare-max>
  6085.            $147.99
  6086.          </span>
  6087.        
  6088.      </div>
  6089.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6090.        <span class="visually-hidden">Original price</span>
  6091.        <span class="money price__compare-at--single" data-price-compare>
  6092.          $147.99
  6093.        </span>
  6094.      </div>
  6095.    
  6096.  
  6097.  
  6098.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  6099.  
  6100.    
  6101.  
  6102.    
  6103.      
  6104.      
  6105.        <span class="visually-hidden">Current price</span>
  6106.      
  6107.      <span class="money" data-price>
  6108.        $105.98
  6109.      </span>
  6110.    
  6111.    
  6112.  </div>
  6113.  
  6114.  
  6115.    
  6116.    <div class="price__current--hidden" data-current-price-range-hidden>
  6117.      
  6118.        <span class="money price__current--min" data-price-min>$105.98</span>
  6119.        -
  6120.        <span class="money price__current--max" data-price-max>$105.98</span>
  6121.      
  6122.    </div>
  6123.    <div class="price__current--hidden" data-current-price-hidden>
  6124.      <span class="visually-hidden">Current price</span>
  6125.      <span class="money" data-price>
  6126.        $105.98
  6127.      </span>
  6128.    </div>
  6129.  
  6130.  
  6131.  
  6132.    
  6133.    
  6134.    
  6135.    
  6136.  
  6137.    <div
  6138.      class="
  6139.        productitem__unit-price
  6140.        hidden
  6141.      "
  6142.      data-unit-price
  6143.    >
  6144.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  6145.    </div>
  6146.  
  6147.  
  6148.  
  6149. </div>
  6150.  
  6151.  
  6152.            </div>
  6153.  
  6154.            <div class="productitem--listview-badge">
  6155.              
  6156.  
  6157.  
  6158.  
  6159.  
  6160.  
  6161.  
  6162.  
  6163.  
  6164.  
  6165.  
  6166.  
  6167.  
  6168.  
  6169.  
  6170.  
  6171.  
  6172.  
  6173.  
  6174.  
  6175.  
  6176.  
  6177.  
  6178.  
  6179.  
  6180.  
  6181.  
  6182.  
  6183.  
  6184.  
  6185.  
  6186.  
  6187.  <span class="productitem__badge productitem__badge--sale"
  6188.    data-badge-sales
  6189.    
  6190.  >
  6191.    <span data-badge-sales-range>
  6192.      
  6193.        
  6194.          Save <span data-price-percent-saved>28</span>%
  6195.        
  6196.      
  6197.    </span>
  6198.    <span data-badge-sales-single style="display: none;">
  6199.      
  6200.        Save <span data-price-percent-saved></span>%
  6201.      
  6202.    </span>
  6203.  </span>
  6204.            </div>
  6205.  
  6206.            
  6207.              <div
  6208.                class="
  6209.                  productitem--action
  6210.                  quickshop-button
  6211.                  
  6212.                "
  6213.              >
  6214.                <button
  6215.                  class="productitem--action-trigger button-secondary"
  6216.                  data-quickshop-full
  6217.                  
  6218.                  
  6219.                  type="button"
  6220.                >
  6221.                  Quick shop
  6222.                </button>
  6223.              </div>
  6224.            
  6225.  
  6226.            
  6227.              <div
  6228.                class="
  6229.                  productitem--action
  6230.                  atc--button
  6231.                  
  6232.                "
  6233.              >
  6234.                <button
  6235.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6236.                  type="button"
  6237.                  aria-label="Add to cart"
  6238.                  
  6239.                    data-quick-buy
  6240.                  
  6241.                  data-variant-id="29564283551831"
  6242.                  
  6243.                >
  6244.                  <span class="atc-button--text">
  6245.                    Add to cart
  6246.                  </span>
  6247.                  <span class="atc-button--icon"><svg
  6248.  aria-hidden="true"
  6249.  focusable="false"
  6250.  role="presentation"
  6251.  width="26"
  6252.  height="26"
  6253.  viewBox="0 0 26 26"
  6254.  xmlns="http://www.w3.org/2000/svg"
  6255. >
  6256.  <g fill-rule="nonzero" fill="currentColor">
  6257.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  6258.  </g>
  6259. </svg></span>
  6260.                </button>
  6261.              </div>
  6262.            
  6263.          </div>
  6264.        
  6265.      
  6266.    </div>
  6267.  </div>
  6268.  
  6269.  
  6270.    <script type="application/json" data-quick-buy-settings>
  6271.      {
  6272.        "cart_redirection": true,
  6273.        "money_format": "${{amount}}"
  6274.      }
  6275.    </script>
  6276.  
  6277. </li>
  6278.    
  6279.      
  6280.  
  6281.  
  6282.  
  6283.  
  6284.  
  6285.  
  6286.  
  6287.  
  6288.  
  6289.  
  6290.  
  6291.  
  6292.  
  6293.  
  6294.  
  6295.  
  6296.  
  6297.  
  6298.  
  6299.  
  6300.  
  6301.  
  6302.  
  6303.  
  6304.  
  6305.  
  6306.  
  6307.  
  6308.  
  6309.  
  6310.  
  6311.  
  6312.    
  6313.  
  6314.  
  6315.  
  6316. <li
  6317.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6318.  data-product-item
  6319.  data-product-quickshop-url="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6320.  
  6321. >
  6322.  <div class="productitem" data-product-item-content>
  6323.    
  6324.    
  6325.    
  6326.    
  6327.  
  6328.    
  6329.  
  6330.    
  6331.  
  6332.    <div class="productitem__container">
  6333.      
  6334.  
  6335.      <div class="productitem__image-container">
  6336.        <a target="_blank"
  6337.          class="productitem--image-link"
  6338.          href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6339.          aria-label="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6340.          tabindex="-1"
  6341.          data-product-page-link
  6342.        >
  6343.          <figure
  6344.            class="productitem--image"
  6345.            data-product-item-image
  6346.            
  6347.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6348.            
  6349.          >
  6350.            
  6351.              
  6352.              
  6353.  
  6354.  
  6355.    <noscript data-rimg-noscript>
  6356.      <img loading="lazy"
  6357.        
  6358.          src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6359.        
  6360.  
  6361.        alt=""
  6362.        data-rimg="noscript"
  6363.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527 1x, //laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_998x998.jpg?v=1648038527 1.95x"
  6364.        class="productitem--image-primary"
  6365.        
  6366.        
  6367.      >
  6368.    </noscript>
  6369.  
  6370.  
  6371.  <img loading="lazy"
  6372.    
  6373.      src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6374.    
  6375.    alt=""
  6376.  
  6377.    
  6378.      data-rimg="lazy"
  6379.      data-rimg-scale="1"
  6380.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_{size}.jpg?v=1648038527"
  6381.      data-rimg-max="1000x1000"
  6382.      data-rimg-crop="false"
  6383.      
  6384.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  6385.    
  6386.  
  6387.    class="productitem--image-primary"
  6388.    
  6389.    
  6390.  >
  6391.  
  6392.  
  6393.  
  6394.  <div data-rimg-canvas></div>
  6395.  
  6396.  
  6397.            
  6398.  
  6399.            
  6400.  
  6401.  
  6402.  
  6403.  
  6404.  
  6405.  
  6406.  
  6407.  
  6408.  
  6409.  
  6410.  
  6411.  
  6412.  
  6413.  
  6414.  
  6415.  
  6416.  
  6417.  
  6418.  
  6419.  
  6420.  
  6421.  
  6422.  
  6423.  
  6424.  
  6425.  
  6426.  
  6427.          </figure>
  6428.        </a>
  6429.      </div><div class="productitem--info">
  6430.        
  6431.          
  6432.  
  6433.        
  6434.  
  6435.        
  6436.          
  6437.  
  6438.  
  6439.  
  6440.  
  6441.  
  6442.  
  6443.  
  6444.  
  6445.  
  6446.  
  6447.  
  6448.  
  6449.  
  6450.  
  6451.  
  6452.  
  6453.  
  6454.  
  6455.  
  6456.  
  6457.  
  6458.  
  6459.  
  6460.  
  6461.  
  6462.  
  6463.  
  6464.  
  6465.  
  6466.  
  6467. <div class="price productitem__price ">
  6468.  
  6469.    <div
  6470.      class="price__compare-at visible"
  6471.      data-price-compare-container
  6472.    >
  6473.  
  6474.      
  6475.        <span class="money price__original" data-price-original></span>
  6476.      
  6477.    </div>
  6478.  
  6479.  
  6480.    
  6481.      
  6482.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6483.        
  6484.          <span class="visually-hidden">Original price</span>
  6485.          <span class="money price__compare-at--min" data-price-compare-min>
  6486.            $115.98
  6487.          </span>
  6488.          -
  6489.          <span class="visually-hidden">Original price</span>
  6490.          <span class="money price__compare-at--max" data-price-compare-max>
  6491.            $115.98
  6492.          </span>
  6493.        
  6494.      </div>
  6495.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6496.        <span class="visually-hidden">Original price</span>
  6497.        <span class="money price__compare-at--single" data-price-compare>
  6498.          
  6499.        </span>
  6500.      </div>
  6501.    
  6502.  
  6503.  
  6504.  <div class="price__current price__current--emphasize " data-price-container>
  6505.  
  6506.    
  6507.  
  6508.    
  6509.      
  6510.      
  6511.      <span class="money" data-price>
  6512.        $115.98
  6513.      </span>
  6514.    
  6515.    
  6516.  </div>
  6517.  
  6518.  
  6519.    
  6520.    <div class="price__current--hidden" data-current-price-range-hidden>
  6521.      
  6522.        <span class="money price__current--min" data-price-min>$115.98</span>
  6523.        -
  6524.        <span class="money price__current--max" data-price-max>$115.98</span>
  6525.      
  6526.    </div>
  6527.    <div class="price__current--hidden" data-current-price-hidden>
  6528.      <span class="visually-hidden">Current price</span>
  6529.      <span class="money" data-price>
  6530.        $115.98
  6531.      </span>
  6532.    </div>
  6533.  
  6534.  
  6535.  
  6536.    
  6537.    
  6538.    
  6539.    
  6540.  
  6541.    <div
  6542.      class="
  6543.        productitem__unit-price
  6544.        hidden
  6545.      "
  6546.      data-unit-price
  6547.    >
  6548.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  6549.    </div>
  6550.  
  6551.  
  6552.  
  6553. </div>
  6554.  
  6555.  
  6556.        
  6557.  
  6558.        <h2 class="productitem--title">
  6559.          <a href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw" data-product-page-link>
  6560.            Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW
  6561.          </a>
  6562.        </h2>
  6563.  
  6564.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  6565.        <div class="star_container 3929789694039"></div>
  6566.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  6567.  
  6568.        
  6569.          
  6570.            <span class="productitem--vendor">
  6571.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  6572.            </span>
  6573.          
  6574.        
  6575.  
  6576.        
  6577.  
  6578.        
  6579.          
  6580.            <div class="productitem__stock-level">
  6581.              <!--
  6582.  
  6583.  
  6584.  
  6585.  
  6586.  
  6587.  
  6588.  
  6589. <div class="product-stock-level-wrapper" >
  6590.  
  6591.    <span class="
  6592.  product-stock-level
  6593.  product-stock-level--continue-selling
  6594.  
  6595. ">
  6596.      
  6597.  
  6598.      <span class="product-stock-level__text">
  6599.        
  6600.        <div class="product-stock-level__badge-text">
  6601.          
  6602.  
  6603.    In stock
  6604.  
  6605.  
  6606.        </div>
  6607.      </span>
  6608.    </span>
  6609.  
  6610. </div>
  6611. -->
  6612.              
  6613.  
  6614.  
  6615.    
  6616.      <b style="color:green">In stock</b>
  6617.    
  6618.  
  6619.  
  6620.  
  6621.  
  6622.  
  6623.  
  6624.  
  6625.            </div>
  6626.          
  6627.  
  6628.          
  6629.            
  6630.          
  6631.        
  6632.  
  6633.        
  6634.          <div class="productitem--description">
  6635.            <p>
  6636. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  6637.  
  6638. Compatible Part #s: KGYYH, 48DGW, N140HCE-G52
  6639.  
  6640. Compatible Models:
  6641. Dell Lati...</p>
  6642.  
  6643.            
  6644.              <a
  6645.                href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6646.                class="productitem--link"
  6647.                data-product-page-link
  6648.              >
  6649.                View full details
  6650.              </a>
  6651.            
  6652.          </div>
  6653.        
  6654.      </div>
  6655.  
  6656.      
  6657.        
  6658.          
  6659.          
  6660.          
  6661.  
  6662.          
  6663.          
  6664.  
  6665.          
  6666.  
  6667.          
  6668.  
  6669.          <div class="productitem--actions" data-product-actions>
  6670.            <div class="productitem--listview-price">
  6671.              
  6672.  
  6673.  
  6674.  
  6675.  
  6676.  
  6677.  
  6678.  
  6679.  
  6680.  
  6681.  
  6682.  
  6683.  
  6684.  
  6685.  
  6686.  
  6687.  
  6688.  
  6689.  
  6690.  
  6691.  
  6692.  
  6693.  
  6694.  
  6695.  
  6696.  
  6697.  
  6698.  
  6699.  
  6700.  
  6701.  
  6702. <div class="price productitem__price ">
  6703.  
  6704.    <div
  6705.      class="price__compare-at visible"
  6706.      data-price-compare-container
  6707.    >
  6708.  
  6709.      
  6710.        <span class="money price__original" data-price-original></span>
  6711.      
  6712.    </div>
  6713.  
  6714.  
  6715.    
  6716.      
  6717.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6718.        
  6719.          <span class="visually-hidden">Original price</span>
  6720.          <span class="money price__compare-at--min" data-price-compare-min>
  6721.            $115.98
  6722.          </span>
  6723.          -
  6724.          <span class="visually-hidden">Original price</span>
  6725.          <span class="money price__compare-at--max" data-price-compare-max>
  6726.            $115.98
  6727.          </span>
  6728.        
  6729.      </div>
  6730.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6731.        <span class="visually-hidden">Original price</span>
  6732.        <span class="money price__compare-at--single" data-price-compare>
  6733.          
  6734.        </span>
  6735.      </div>
  6736.    
  6737.  
  6738.  
  6739.  <div class="price__current price__current--emphasize " data-price-container>
  6740.  
  6741.    
  6742.  
  6743.    
  6744.      
  6745.      
  6746.      <span class="money" data-price>
  6747.        $115.98
  6748.      </span>
  6749.    
  6750.    
  6751.  </div>
  6752.  
  6753.  
  6754.    
  6755.    <div class="price__current--hidden" data-current-price-range-hidden>
  6756.      
  6757.        <span class="money price__current--min" data-price-min>$115.98</span>
  6758.        -
  6759.        <span class="money price__current--max" data-price-max>$115.98</span>
  6760.      
  6761.    </div>
  6762.    <div class="price__current--hidden" data-current-price-hidden>
  6763.      <span class="visually-hidden">Current price</span>
  6764.      <span class="money" data-price>
  6765.        $115.98
  6766.      </span>
  6767.    </div>
  6768.  
  6769.  
  6770.  
  6771.    
  6772.    
  6773.    
  6774.    
  6775.  
  6776.    <div
  6777.      class="
  6778.        productitem__unit-price
  6779.        hidden
  6780.      "
  6781.      data-unit-price
  6782.    >
  6783.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  6784.    </div>
  6785.  
  6786.  
  6787.  
  6788. </div>
  6789.  
  6790.  
  6791.            </div>
  6792.  
  6793.            <div class="productitem--listview-badge">
  6794.              
  6795.  
  6796.  
  6797.  
  6798.  
  6799.  
  6800.  
  6801.  
  6802.  
  6803.  
  6804.  
  6805.  
  6806.  
  6807.  
  6808.  
  6809.  
  6810.  
  6811.  
  6812.  
  6813.  
  6814.  
  6815.  
  6816.  
  6817.  
  6818.  
  6819.  
  6820.  
  6821.  
  6822.            </div>
  6823.  
  6824.            
  6825.              <div
  6826.                class="
  6827.                  productitem--action
  6828.                  quickshop-button
  6829.                  
  6830.                "
  6831.              >
  6832.                <button
  6833.                  class="productitem--action-trigger button-secondary"
  6834.                  data-quickshop-full
  6835.                  
  6836.                  
  6837.                  type="button"
  6838.                >
  6839.                  Quick shop
  6840.                </button>
  6841.              </div>
  6842.            
  6843.  
  6844.            
  6845.              <div
  6846.                class="
  6847.                  productitem--action
  6848.                  atc--button
  6849.                  
  6850.                "
  6851.              >
  6852.                <button
  6853.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6854.                  type="button"
  6855.                  aria-label="Add to cart"
  6856.                  
  6857.                    data-quick-buy
  6858.                  
  6859.                  data-variant-id="29462328246359"
  6860.                  
  6861.                >
  6862.                  <span class="atc-button--text">
  6863.                    Add to cart
  6864.                  </span>
  6865.                  <span class="atc-button--icon"><svg
  6866.  aria-hidden="true"
  6867.  focusable="false"
  6868.  role="presentation"
  6869.  width="26"
  6870.  height="26"
  6871.  viewBox="0 0 26 26"
  6872.  xmlns="http://www.w3.org/2000/svg"
  6873. >
  6874.  <g fill-rule="nonzero" fill="currentColor">
  6875.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  6876.  </g>
  6877. </svg></span>
  6878.                </button>
  6879.              </div>
  6880.            
  6881.          </div>
  6882.        
  6883.      
  6884.    </div>
  6885.  </div>
  6886.  
  6887.  
  6888.    <script type="application/json" data-quick-buy-settings>
  6889.      {
  6890.        "cart_redirection": true,
  6891.        "money_format": "${{amount}}"
  6892.      }
  6893.    </script>
  6894.  
  6895. </li>
  6896.    
  6897.      
  6898.  
  6899.  
  6900.  
  6901.  
  6902.  
  6903.  
  6904.  
  6905.  
  6906.  
  6907.  
  6908.  
  6909.  
  6910.  
  6911.  
  6912.  
  6913.  
  6914.  
  6915.  
  6916.  
  6917.  
  6918.  
  6919.  
  6920.  
  6921.  
  6922.  
  6923.  
  6924.  
  6925.  
  6926.  
  6927.  
  6928.  
  6929.  
  6930.    
  6931.  
  6932.  
  6933.  
  6934. <li
  6935.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6936.  data-product-item
  6937.  data-product-quickshop-url="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6938.  
  6939. >
  6940.  <div class="productitem" data-product-item-content>
  6941.    
  6942.    
  6943.    
  6944.    
  6945.  
  6946.    
  6947.  
  6948.    
  6949.  
  6950.    <div class="productitem__container">
  6951.      
  6952.  
  6953.      <div class="productitem__image-container">
  6954.        <a target="_blank"
  6955.          class="productitem--image-link"
  6956.          href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6957.          aria-label="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6958.          tabindex="-1"
  6959.          data-product-page-link
  6960.        >
  6961.          <figure
  6962.            class="productitem--image"
  6963.            data-product-item-image
  6964.            
  6965.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6966.            
  6967.          >
  6968.            
  6969.              
  6970.              
  6971.  
  6972.  
  6973.    <noscript data-rimg-noscript>
  6974.      <img loading="lazy"
  6975.        
  6976.          src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  6977.        
  6978.  
  6979.        alt=""
  6980.        data-rimg="noscript"
  6981.        srcset="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251 1x, //laptopparts.ca/cdn/shop/products/molex1_599x599.jpg?v=1697125251 1.17x"
  6982.        class="productitem--image-primary"
  6983.        
  6984.        
  6985.      >
  6986.    </noscript>
  6987.  
  6988.  
  6989.  <img loading="lazy"
  6990.    
  6991.      src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  6992.    
  6993.    alt=""
  6994.  
  6995.    
  6996.      data-rimg="lazy"
  6997.      data-rimg-scale="1"
  6998.      data-rimg-template="//laptopparts.ca/cdn/shop/products/molex1_{size}.jpg?v=1697125251"
  6999.      data-rimg-max="603x603"
  7000.      data-rimg-crop="false"
  7001.      
  7002.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7003.    
  7004.  
  7005.    class="productitem--image-primary"
  7006.    
  7007.    
  7008.  >
  7009.  
  7010.  
  7011.  
  7012.  <div data-rimg-canvas></div>
  7013.  
  7014.  
  7015.            
  7016.  
  7017.            
  7018.  
  7019.  
  7020.  
  7021.  
  7022.  
  7023.  
  7024.  
  7025.  
  7026.  
  7027.  
  7028.  
  7029.  
  7030.  
  7031.  
  7032.  
  7033.  
  7034.  
  7035.  
  7036.  
  7037.  
  7038.  
  7039.  
  7040.  
  7041.  
  7042.  
  7043.  
  7044.  
  7045.          </figure>
  7046.        </a>
  7047.      </div><div class="productitem--info">
  7048.        
  7049.          
  7050.  
  7051.        
  7052.  
  7053.        
  7054.          
  7055.  
  7056.  
  7057.  
  7058.  
  7059.  
  7060.  
  7061.  
  7062.  
  7063.  
  7064.  
  7065.  
  7066.  
  7067.  
  7068.  
  7069.  
  7070.  
  7071.  
  7072.  
  7073.  
  7074.  
  7075.  
  7076.  
  7077.  
  7078.  
  7079.  
  7080.  
  7081.  
  7082.  
  7083.  
  7084.  
  7085. <div class="price productitem__price ">
  7086.  
  7087.    <div
  7088.      class="price__compare-at visible"
  7089.      data-price-compare-container
  7090.    >
  7091.  
  7092.      
  7093.        <span class="money price__original" data-price-original></span>
  7094.      
  7095.    </div>
  7096.  
  7097.  
  7098.    
  7099.      
  7100.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7101.        
  7102.          <span class="visually-hidden">Original price</span>
  7103.          <span class="money price__compare-at--min" data-price-compare-min>
  7104.            $36.99
  7105.          </span>
  7106.          -
  7107.          <span class="visually-hidden">Original price</span>
  7108.          <span class="money price__compare-at--max" data-price-compare-max>
  7109.            $36.99
  7110.          </span>
  7111.        
  7112.      </div>
  7113.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7114.        <span class="visually-hidden">Original price</span>
  7115.        <span class="money price__compare-at--single" data-price-compare>
  7116.          
  7117.        </span>
  7118.      </div>
  7119.    
  7120.  
  7121.  
  7122.  <div class="price__current price__current--emphasize " data-price-container>
  7123.  
  7124.    
  7125.  
  7126.    
  7127.      
  7128.      
  7129.      <span class="money" data-price>
  7130.        $36.99
  7131.      </span>
  7132.    
  7133.    
  7134.  </div>
  7135.  
  7136.  
  7137.    
  7138.    <div class="price__current--hidden" data-current-price-range-hidden>
  7139.      
  7140.        <span class="money price__current--min" data-price-min>$36.99</span>
  7141.        -
  7142.        <span class="money price__current--max" data-price-max>$36.99</span>
  7143.      
  7144.    </div>
  7145.    <div class="price__current--hidden" data-current-price-hidden>
  7146.      <span class="visually-hidden">Current price</span>
  7147.      <span class="money" data-price>
  7148.        $36.99
  7149.      </span>
  7150.    </div>
  7151.  
  7152.  
  7153.  
  7154.    
  7155.    
  7156.    
  7157.    
  7158.  
  7159.    <div
  7160.      class="
  7161.        productitem__unit-price
  7162.        hidden
  7163.      "
  7164.      data-unit-price
  7165.    >
  7166.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  7167.    </div>
  7168.  
  7169.  
  7170.  
  7171. </div>
  7172.  
  7173.  
  7174.        
  7175.  
  7176.        <h2 class="productitem--title">
  7177.          <a href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable" data-product-page-link>
  7178.            4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable
  7179.          </a>
  7180.        </h2>
  7181.  
  7182.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7183.        <div class="star_container 1416490647575"></div>
  7184.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7185.  
  7186.        
  7187.          
  7188.            <span class="productitem--vendor">
  7189.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  7190.            </span>
  7191.          
  7192.        
  7193.  
  7194.        
  7195.  
  7196.        
  7197.          
  7198.            <div class="productitem__stock-level">
  7199.              <!--
  7200.  
  7201.  
  7202.  
  7203.  
  7204.  
  7205.  
  7206.  
  7207. <div class="product-stock-level-wrapper" >
  7208.  
  7209.    <span class="
  7210.  product-stock-level
  7211.  product-stock-level--continue-selling
  7212.  
  7213. ">
  7214.      
  7215.  
  7216.      <span class="product-stock-level__text">
  7217.        
  7218.        <div class="product-stock-level__badge-text">
  7219.          
  7220.  
  7221.    In stock
  7222.  
  7223.  
  7224.        </div>
  7225.      </span>
  7226.    </span>
  7227.  
  7228. </div>
  7229. -->
  7230.              
  7231.  
  7232.  
  7233.    
  7234.      <b style="color:green">In stock</b>
  7235.    
  7236.  
  7237.  
  7238.  
  7239.  
  7240.  
  7241.  
  7242.  
  7243.            </div>
  7244.          
  7245.  
  7246.          
  7247.            
  7248.          
  7249.        
  7250.  
  7251.        
  7252.          <div class="productitem--description">
  7253.            <p>4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable</p>
  7254.  
  7255.            
  7256.          </div>
  7257.        
  7258.      </div>
  7259.  
  7260.      
  7261.        
  7262.          
  7263.          
  7264.          
  7265.  
  7266.          
  7267.          
  7268.  
  7269.          
  7270.  
  7271.          
  7272.  
  7273.          <div class="productitem--actions" data-product-actions>
  7274.            <div class="productitem--listview-price">
  7275.              
  7276.  
  7277.  
  7278.  
  7279.  
  7280.  
  7281.  
  7282.  
  7283.  
  7284.  
  7285.  
  7286.  
  7287.  
  7288.  
  7289.  
  7290.  
  7291.  
  7292.  
  7293.  
  7294.  
  7295.  
  7296.  
  7297.  
  7298.  
  7299.  
  7300.  
  7301.  
  7302.  
  7303.  
  7304.  
  7305.  
  7306. <div class="price productitem__price ">
  7307.  
  7308.    <div
  7309.      class="price__compare-at visible"
  7310.      data-price-compare-container
  7311.    >
  7312.  
  7313.      
  7314.        <span class="money price__original" data-price-original></span>
  7315.      
  7316.    </div>
  7317.  
  7318.  
  7319.    
  7320.      
  7321.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7322.        
  7323.          <span class="visually-hidden">Original price</span>
  7324.          <span class="money price__compare-at--min" data-price-compare-min>
  7325.            $36.99
  7326.          </span>
  7327.          -
  7328.          <span class="visually-hidden">Original price</span>
  7329.          <span class="money price__compare-at--max" data-price-compare-max>
  7330.            $36.99
  7331.          </span>
  7332.        
  7333.      </div>
  7334.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7335.        <span class="visually-hidden">Original price</span>
  7336.        <span class="money price__compare-at--single" data-price-compare>
  7337.          
  7338.        </span>
  7339.      </div>
  7340.    
  7341.  
  7342.  
  7343.  <div class="price__current price__current--emphasize " data-price-container>
  7344.  
  7345.    
  7346.  
  7347.    
  7348.      
  7349.      
  7350.      <span class="money" data-price>
  7351.        $36.99
  7352.      </span>
  7353.    
  7354.    
  7355.  </div>
  7356.  
  7357.  
  7358.    
  7359.    <div class="price__current--hidden" data-current-price-range-hidden>
  7360.      
  7361.        <span class="money price__current--min" data-price-min>$36.99</span>
  7362.        -
  7363.        <span class="money price__current--max" data-price-max>$36.99</span>
  7364.      
  7365.    </div>
  7366.    <div class="price__current--hidden" data-current-price-hidden>
  7367.      <span class="visually-hidden">Current price</span>
  7368.      <span class="money" data-price>
  7369.        $36.99
  7370.      </span>
  7371.    </div>
  7372.  
  7373.  
  7374.  
  7375.    
  7376.    
  7377.    
  7378.    
  7379.  
  7380.    <div
  7381.      class="
  7382.        productitem__unit-price
  7383.        hidden
  7384.      "
  7385.      data-unit-price
  7386.    >
  7387.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  7388.    </div>
  7389.  
  7390.  
  7391.  
  7392. </div>
  7393.  
  7394.  
  7395.            </div>
  7396.  
  7397.            <div class="productitem--listview-badge">
  7398.              
  7399.  
  7400.  
  7401.  
  7402.  
  7403.  
  7404.  
  7405.  
  7406.  
  7407.  
  7408.  
  7409.  
  7410.  
  7411.  
  7412.  
  7413.  
  7414.  
  7415.  
  7416.  
  7417.  
  7418.  
  7419.  
  7420.  
  7421.  
  7422.  
  7423.  
  7424.  
  7425.  
  7426.            </div>
  7427.  
  7428.            
  7429.              <div
  7430.                class="
  7431.                  productitem--action
  7432.                  quickshop-button
  7433.                  
  7434.                "
  7435.              >
  7436.                <button
  7437.                  class="productitem--action-trigger button-secondary"
  7438.                  data-quickshop-full
  7439.                  
  7440.                  
  7441.                  type="button"
  7442.                >
  7443.                  Quick shop
  7444.                </button>
  7445.              </div>
  7446.            
  7447.  
  7448.            
  7449.              <div
  7450.                class="
  7451.                  productitem--action
  7452.                  atc--button
  7453.                  
  7454.                "
  7455.              >
  7456.                <button
  7457.                  class="productitem--action-trigger productitem--action-atc button-primary"
  7458.                  type="button"
  7459.                  aria-label="Add to cart"
  7460.                  
  7461.                    data-quick-buy
  7462.                  
  7463.                  data-variant-id="12583329333271"
  7464.                  
  7465.                >
  7466.                  <span class="atc-button--text">
  7467.                    Add to cart
  7468.                  </span>
  7469.                  <span class="atc-button--icon"><svg
  7470.  aria-hidden="true"
  7471.  focusable="false"
  7472.  role="presentation"
  7473.  width="26"
  7474.  height="26"
  7475.  viewBox="0 0 26 26"
  7476.  xmlns="http://www.w3.org/2000/svg"
  7477. >
  7478.  <g fill-rule="nonzero" fill="currentColor">
  7479.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  7480.  </g>
  7481. </svg></span>
  7482.                </button>
  7483.              </div>
  7484.            
  7485.          </div>
  7486.        
  7487.      
  7488.    </div>
  7489.  </div>
  7490.  
  7491.  
  7492.    <script type="application/json" data-quick-buy-settings>
  7493.      {
  7494.        "cart_redirection": true,
  7495.        "money_format": "${{amount}}"
  7496.      }
  7497.    </script>
  7498.  
  7499. </li>
  7500.    
  7501.      
  7502.  
  7503.  
  7504.  
  7505.  
  7506.  
  7507.  
  7508.  
  7509.  
  7510.  
  7511.  
  7512.  
  7513.  
  7514.  
  7515.  
  7516.  
  7517.  
  7518.  
  7519.  
  7520.  
  7521.  
  7522.  
  7523.  
  7524.  
  7525.  
  7526.  
  7527.  
  7528.  
  7529.  
  7530.  
  7531.  
  7532.  
  7533.  
  7534.    
  7535.  
  7536.  
  7537.  
  7538. <li
  7539.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  7540.  data-product-item
  7541.  data-product-quickshop-url="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7542.  
  7543. >
  7544.  <div class="productitem" data-product-item-content>
  7545.    
  7546.    
  7547.    
  7548.    
  7549.  
  7550.    
  7551.  
  7552.    
  7553.  
  7554.    <div class="productitem__container">
  7555.      
  7556.  
  7557.      <div class="productitem__image-container">
  7558.        <a target="_blank"
  7559.          class="productitem--image-link"
  7560.          href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7561.          aria-label="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7562.          tabindex="-1"
  7563.          data-product-page-link
  7564.        >
  7565.          <figure
  7566.            class="productitem--image"
  7567.            data-product-item-image
  7568.            
  7569.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7570.            
  7571.          >
  7572.            
  7573.              
  7574.              
  7575.  
  7576.  
  7577.    <noscript data-rimg-noscript>
  7578.      <img loading="lazy"
  7579.        
  7580.          src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7581.        
  7582.  
  7583.        alt="MacBook Pro"
  7584.        data-rimg="noscript"
  7585.        srcset="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088 1x, //laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_998x998.jpg?v=1726123088 1.95x"
  7586.        class="productitem--image-primary"
  7587.        
  7588.        
  7589.      >
  7590.    </noscript>
  7591.  
  7592.  
  7593.  <img loading="lazy"
  7594.    
  7595.      src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7596.    
  7597.    alt="MacBook Pro"
  7598.  
  7599.    
  7600.      data-rimg="lazy"
  7601.      data-rimg-scale="1"
  7602.      data-rimg-template="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_{size}.jpg?v=1726123088"
  7603.      data-rimg-max="1000x1000"
  7604.      data-rimg-crop="false"
  7605.      
  7606.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7607.    
  7608.  
  7609.    class="productitem--image-primary"
  7610.    
  7611.    
  7612.  >
  7613.  
  7614.  
  7615.  
  7616.  <div data-rimg-canvas></div>
  7617.  
  7618.  
  7619.            
  7620.  
  7621.            
  7622.  
  7623.  
  7624.  
  7625.  
  7626.  
  7627.  
  7628.  
  7629.  
  7630.  
  7631.  
  7632.  
  7633.  
  7634.  
  7635.  
  7636.  
  7637.  
  7638.  
  7639.  
  7640.  
  7641.  
  7642.  
  7643.  
  7644.  
  7645.  
  7646.  
  7647.  
  7648.  
  7649.          </figure>
  7650.        </a>
  7651.      </div><div class="productitem--info">
  7652.        
  7653.          
  7654.  
  7655.        
  7656.  
  7657.        
  7658.          
  7659.  
  7660.  
  7661.  
  7662.  
  7663.  
  7664.  
  7665.  
  7666.  
  7667.  
  7668.  
  7669.  
  7670.  
  7671.  
  7672.  
  7673.  
  7674.  
  7675.  
  7676.  
  7677.  
  7678.  
  7679.  
  7680.  
  7681.  
  7682.  
  7683.  
  7684.  
  7685.  
  7686.  
  7687.  
  7688.  
  7689. <div class="price productitem__price ">
  7690.  
  7691.    <div
  7692.      class="price__compare-at visible"
  7693.      data-price-compare-container
  7694.    >
  7695.  
  7696.      
  7697.        <span class="money price__original" data-price-original></span>
  7698.      
  7699.    </div>
  7700.  
  7701.  
  7702.    
  7703.      
  7704.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7705.        
  7706.          <span class="visually-hidden">Original price</span>
  7707.          <span class="money price__compare-at--min" data-price-compare-min>
  7708.            $40.98
  7709.          </span>
  7710.          -
  7711.          <span class="visually-hidden">Original price</span>
  7712.          <span class="money price__compare-at--max" data-price-compare-max>
  7713.            $40.98
  7714.          </span>
  7715.        
  7716.      </div>
  7717.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7718.        <span class="visually-hidden">Original price</span>
  7719.        <span class="money price__compare-at--single" data-price-compare>
  7720.          
  7721.        </span>
  7722.      </div>
  7723.    
  7724.  
  7725.  
  7726.  <div class="price__current price__current--emphasize " data-price-container>
  7727.  
  7728.    
  7729.  
  7730.    
  7731.      
  7732.      
  7733.      <span class="money" data-price>
  7734.        $40.98
  7735.      </span>
  7736.    
  7737.    
  7738.  </div>
  7739.  
  7740.  
  7741.    
  7742.    <div class="price__current--hidden" data-current-price-range-hidden>
  7743.      
  7744.        <span class="money price__current--min" data-price-min>$40.98</span>
  7745.        -
  7746.        <span class="money price__current--max" data-price-max>$40.98</span>
  7747.      
  7748.    </div>
  7749.    <div class="price__current--hidden" data-current-price-hidden>
  7750.      <span class="visually-hidden">Current price</span>
  7751.      <span class="money" data-price>
  7752.        $40.98
  7753.      </span>
  7754.    </div>
  7755.  
  7756.  
  7757.  
  7758.    
  7759.    
  7760.    
  7761.    
  7762.  
  7763.    <div
  7764.      class="
  7765.        productitem__unit-price
  7766.        hidden
  7767.      "
  7768.      data-unit-price
  7769.    >
  7770.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  7771.    </div>
  7772.  
  7773.  
  7774.  
  7775. </div>
  7776.  
  7777.  
  7778.        
  7779.  
  7780.        <h2 class="productitem--title">
  7781.          <a href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011" data-product-page-link>
  7782.            60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011
  7783.          </a>
  7784.        </h2>
  7785.  
  7786.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7787.        <div class="star_container 6872720015447"></div>
  7788.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7789.  
  7790.        
  7791.          
  7792.            <span class="productitem--vendor">
  7793.              <a href="/collections/vendors?q=Apple" title="Apple">Apple</a>
  7794.            </span>
  7795.          
  7796.        
  7797.  
  7798.        
  7799.  
  7800.        
  7801.          
  7802.            <div class="productitem__stock-level">
  7803.              <!--
  7804.  
  7805.  
  7806.  
  7807.  
  7808.  
  7809.  
  7810.  
  7811. <div class="product-stock-level-wrapper" >
  7812.  
  7813.    <span class="
  7814.  product-stock-level
  7815.  product-stock-level--continue-selling
  7816.  
  7817. ">
  7818.      
  7819.  
  7820.      <span class="product-stock-level__text">
  7821.        
  7822.        <div class="product-stock-level__badge-text">
  7823.          
  7824.  
  7825.    In stock
  7826.  
  7827.  
  7828.        </div>
  7829.      </span>
  7830.    </span>
  7831.  
  7832. </div>
  7833. -->
  7834.              
  7835.  
  7836.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  7837.  
  7838.  
  7839.  
  7840.  
  7841.  
  7842.  
  7843.  
  7844.            </div>
  7845.          
  7846.  
  7847.          
  7848.            
  7849.          
  7850.        
  7851.  
  7852.        
  7853.          <div class="productitem--description">
  7854.            <p>Plugs directly into AC outlet.
  7855. 60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011 
  7856. Input: 100-240V ~ 50-60Hz
  7857. Output: 1...</p>
  7858.  
  7859.            
  7860.              <a
  7861.                href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7862.                class="productitem--link"
  7863.                data-product-page-link
  7864.              >
  7865.                View full details
  7866.              </a>
  7867.            
  7868.          </div>
  7869.        
  7870.      </div>
  7871.  
  7872.      
  7873.        
  7874.          
  7875.          
  7876.          
  7877.  
  7878.          
  7879.          
  7880.  
  7881.          
  7882.  
  7883.          
  7884.  
  7885.          <div class="productitem--actions" data-product-actions>
  7886.            <div class="productitem--listview-price">
  7887.              
  7888.  
  7889.  
  7890.  
  7891.  
  7892.  
  7893.  
  7894.  
  7895.  
  7896.  
  7897.  
  7898.  
  7899.  
  7900.  
  7901.  
  7902.  
  7903.  
  7904.  
  7905.  
  7906.  
  7907.  
  7908.  
  7909.  
  7910.  
  7911.  
  7912.  
  7913.  
  7914.  
  7915.  
  7916.  
  7917.  
  7918. <div class="price productitem__price ">
  7919.  
  7920.    <div
  7921.      class="price__compare-at visible"
  7922.      data-price-compare-container
  7923.    >
  7924.  
  7925.      
  7926.        <span class="money price__original" data-price-original></span>
  7927.      
  7928.    </div>
  7929.  
  7930.  
  7931.    
  7932.      
  7933.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7934.        
  7935.          <span class="visually-hidden">Original price</span>
  7936.          <span class="money price__compare-at--min" data-price-compare-min>
  7937.            $40.98
  7938.          </span>
  7939.          -
  7940.          <span class="visually-hidden">Original price</span>
  7941.          <span class="money price__compare-at--max" data-price-compare-max>
  7942.            $40.98
  7943.          </span>
  7944.        
  7945.      </div>
  7946.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7947.        <span class="visually-hidden">Original price</span>
  7948.        <span class="money price__compare-at--single" data-price-compare>
  7949.          
  7950.        </span>
  7951.      </div>
  7952.    
  7953.  
  7954.  
  7955.  <div class="price__current price__current--emphasize " data-price-container>
  7956.  
  7957.    
  7958.  
  7959.    
  7960.      
  7961.      
  7962.      <span class="money" data-price>
  7963.        $40.98
  7964.      </span>
  7965.    
  7966.    
  7967.  </div>
  7968.  
  7969.  
  7970.    
  7971.    <div class="price__current--hidden" data-current-price-range-hidden>
  7972.      
  7973.        <span class="money price__current--min" data-price-min>$40.98</span>
  7974.        -
  7975.        <span class="money price__current--max" data-price-max>$40.98</span>
  7976.      
  7977.    </div>
  7978.    <div class="price__current--hidden" data-current-price-hidden>
  7979.      <span class="visually-hidden">Current price</span>
  7980.      <span class="money" data-price>
  7981.        $40.98
  7982.      </span>
  7983.    </div>
  7984.  
  7985.  
  7986.  
  7987.    
  7988.    
  7989.    
  7990.    
  7991.  
  7992.    <div
  7993.      class="
  7994.        productitem__unit-price
  7995.        hidden
  7996.      "
  7997.      data-unit-price
  7998.    >
  7999.      <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>
  8000.    </div>
  8001.  
  8002.  
  8003.  
  8004. </div>
  8005.  
  8006.  
  8007.            </div>
  8008.  
  8009.            <div class="productitem--listview-badge">
  8010.              
  8011.  
  8012.  
  8013.  
  8014.  
  8015.  
  8016.  
  8017.  
  8018.  
  8019.  
  8020.  
  8021.  
  8022.  
  8023.  
  8024.  
  8025.  
  8026.  
  8027.  
  8028.  
  8029.  
  8030.  
  8031.  
  8032.  
  8033.  
  8034.  
  8035.  
  8036.  
  8037.  
  8038.            </div>
  8039.  
  8040.            
  8041.              <div
  8042.                class="
  8043.                  productitem--action
  8044.                  quickshop-button
  8045.                  
  8046.                "
  8047.              >
  8048.                <button
  8049.                  class="productitem--action-trigger button-secondary"
  8050.                  data-quickshop-full
  8051.                  
  8052.                  
  8053.                  type="button"
  8054.                >
  8055.                  Quick shop
  8056.                </button>
  8057.              </div>
  8058.            
  8059.  
  8060.            
  8061.              <div
  8062.                class="
  8063.                  productitem--action
  8064.                  atc--button
  8065.                  
  8066.                "
  8067.              >
  8068.                <button
  8069.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8070.                  type="button"
  8071.                  aria-label="Add to cart"
  8072.                  
  8073.                    data-quick-buy
  8074.                  
  8075.                  data-variant-id="40156967370839"
  8076.                  
  8077.                >
  8078.                  <span class="atc-button--text">
  8079.                    Add to cart
  8080.                  </span>
  8081.                  <span class="atc-button--icon"><svg
  8082.  aria-hidden="true"
  8083.  focusable="false"
  8084.  role="presentation"
  8085.  width="26"
  8086.  height="26"
  8087.  viewBox="0 0 26 26"
  8088.  xmlns="http://www.w3.org/2000/svg"
  8089. >
  8090.  <g fill-rule="nonzero" fill="currentColor">
  8091.    <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"/>
  8092.  </g>
  8093. </svg></span>
  8094.                </button>
  8095.              </div>
  8096.            
  8097.          </div>
  8098.        
  8099.      
  8100.    </div>
  8101.  </div>
  8102.  
  8103.  
  8104.    <script type="application/json" data-quick-buy-settings>
  8105.      {
  8106.        "cart_redirection": true,
  8107.        "money_format": "${{amount}}"
  8108.      }
  8109.    </script>
  8110.  
  8111. </li>
  8112.    
  8113.      
  8114.  
  8115.  
  8116.  
  8117.  
  8118.  
  8119.  
  8120.  
  8121.  
  8122.  
  8123.  
  8124.  
  8125.  
  8126.  
  8127.  
  8128.  
  8129.  
  8130.  
  8131.  
  8132.  
  8133.  
  8134.  
  8135.  
  8136.  
  8137.  
  8138.  
  8139.  
  8140.  
  8141.  
  8142.  
  8143.  
  8144.  
  8145.  
  8146.    
  8147.  
  8148.  
  8149.  
  8150. <li
  8151.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8152.  data-product-item
  8153.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8154.  
  8155. >
  8156.  <div class="productitem" data-product-item-content>
  8157.    
  8158.    
  8159.    
  8160.    
  8161.  
  8162.    
  8163.  
  8164.    
  8165.  
  8166.    <div class="productitem__container">
  8167.      
  8168.  
  8169.      <div class="productitem__image-container">
  8170.        <a target="_blank"
  8171.          class="productitem--image-link"
  8172.          href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8173.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8174.          tabindex="-1"
  8175.          data-product-page-link
  8176.        >
  8177.          <figure
  8178.            class="productitem--image"
  8179.            data-product-item-image
  8180.            
  8181.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8182.            
  8183.          >
  8184.            
  8185.              
  8186.              
  8187.  
  8188.  
  8189.    <noscript data-rimg-noscript>
  8190.      <img loading="lazy"
  8191.        
  8192.          src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8193.        
  8194.  
  8195.        alt=""
  8196.        data-rimg="noscript"
  8197.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953 1x"
  8198.        class="productitem--image-primary"
  8199.        
  8200.        
  8201.      >
  8202.    </noscript>
  8203.  
  8204.  
  8205.  <img loading="lazy"
  8206.    
  8207.      src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8208.    
  8209.    alt=""
  8210.  
  8211.    
  8212.      data-rimg="lazy"
  8213.      data-rimg-scale="1"
  8214.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_{size}.jpg?v=1648096953"
  8215.      data-rimg-max="500x500"
  8216.      data-rimg-crop="false"
  8217.      
  8218.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8219.    
  8220.  
  8221.    class="productitem--image-primary"
  8222.    
  8223.    
  8224.  >
  8225.  
  8226.  
  8227.  
  8228.  <div data-rimg-canvas></div>
  8229.  
  8230.  
  8231.            
  8232.  
  8233.            
  8234.  
  8235.  
  8236.  
  8237.  
  8238.  
  8239.  
  8240.  
  8241.  
  8242.  
  8243.  
  8244.  
  8245.  
  8246.  
  8247.  
  8248.  
  8249.  
  8250.  
  8251.  
  8252.  
  8253.  
  8254.  
  8255.  
  8256.  
  8257.  
  8258.  
  8259.  
  8260.  
  8261.          </figure>
  8262.        </a>
  8263.      </div><div class="productitem--info">
  8264.        
  8265.          
  8266.  
  8267.        
  8268.  
  8269.        
  8270.          
  8271.  
  8272.  
  8273.  
  8274.  
  8275.  
  8276.  
  8277.  
  8278.  
  8279.  
  8280.  
  8281.  
  8282.  
  8283.  
  8284.  
  8285.  
  8286.  
  8287.  
  8288.  
  8289.  
  8290.  
  8291.  
  8292.  
  8293.  
  8294.  
  8295.  
  8296.  
  8297.  
  8298.  
  8299.  
  8300.  
  8301. <div class="price productitem__price ">
  8302.  
  8303.    <div
  8304.      class="price__compare-at visible"
  8305.      data-price-compare-container
  8306.    >
  8307.  
  8308.      
  8309.        <span class="money price__original" data-price-original></span>
  8310.      
  8311.    </div>
  8312.  
  8313.  
  8314.    
  8315.      
  8316.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8317.        
  8318.          <span class="visually-hidden">Original price</span>
  8319.          <span class="money price__compare-at--min" data-price-compare-min>
  8320.            $253.99
  8321.          </span>
  8322.          -
  8323.          <span class="visually-hidden">Original price</span>
  8324.          <span class="money price__compare-at--max" data-price-compare-max>
  8325.            $253.99
  8326.          </span>
  8327.        
  8328.      </div>
  8329.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8330.        <span class="visually-hidden">Original price</span>
  8331.        <span class="money price__compare-at--single" data-price-compare>
  8332.          
  8333.        </span>
  8334.      </div>
  8335.    
  8336.  
  8337.  
  8338.  <div class="price__current price__current--emphasize " data-price-container>
  8339.  
  8340.    
  8341.  
  8342.    
  8343.      
  8344.      
  8345.      <span class="money" data-price>
  8346.        $253.99
  8347.      </span>
  8348.    
  8349.    
  8350.  </div>
  8351.  
  8352.  
  8353.    
  8354.    <div class="price__current--hidden" data-current-price-range-hidden>
  8355.      
  8356.        <span class="money price__current--min" data-price-min>$253.99</span>
  8357.        -
  8358.        <span class="money price__current--max" data-price-max>$253.99</span>
  8359.      
  8360.    </div>
  8361.    <div class="price__current--hidden" data-current-price-hidden>
  8362.      <span class="visually-hidden">Current price</span>
  8363.      <span class="money" data-price>
  8364.        $253.99
  8365.      </span>
  8366.    </div>
  8367.  
  8368.  
  8369.  
  8370.    
  8371.    
  8372.    
  8373.    
  8374.  
  8375.    <div
  8376.      class="
  8377.        productitem__unit-price
  8378.        hidden
  8379.      "
  8380.      data-unit-price
  8381.    >
  8382.      <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>
  8383.    </div>
  8384.  
  8385.  
  8386.  
  8387. </div>
  8388.  
  8389.  
  8390.        
  8391.  
  8392.        <h2 class="productitem--title">
  8393.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8" data-product-page-link>
  8394.            15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8
  8395.          </a>
  8396.        </h2>
  8397.  
  8398.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8399.        <div class="star_container 3933207593047"></div>
  8400.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8401.  
  8402.        
  8403.          
  8404.            <span class="productitem--vendor">
  8405.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  8406.            </span>
  8407.          
  8408.        
  8409.  
  8410.        
  8411.  
  8412.        
  8413.          
  8414.            <div class="productitem__stock-level">
  8415.              <!--
  8416.  
  8417.  
  8418.  
  8419.  
  8420.  
  8421.  
  8422.  
  8423. <div class="product-stock-level-wrapper" >
  8424.  
  8425.    <span class="
  8426.  product-stock-level
  8427.  product-stock-level--continue-selling
  8428.  
  8429. ">
  8430.      
  8431.  
  8432.      <span class="product-stock-level__text">
  8433.        
  8434.        <div class="product-stock-level__badge-text">
  8435.          
  8436.  
  8437.    In stock
  8438.  
  8439.  
  8440.        </div>
  8441.      </span>
  8442.    </span>
  8443.  
  8444. </div>
  8445. -->
  8446.              
  8447.  
  8448.  
  8449.    
  8450.      <b style="color:green">In stock</b>
  8451.    
  8452.  
  8453.  
  8454.  
  8455.  
  8456.  
  8457.  
  8458.  
  8459.            </div>
  8460.          
  8461.  
  8462.          
  8463.            
  8464.          
  8465.        
  8466.  
  8467.        
  8468.          <div class="productitem--description">
  8469.            <p>
  8470. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  8471.  
  8472. **This screen will only work if your laptop is one of the models below that ca...</p>
  8473.  
  8474.            
  8475.              <a
  8476.                href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8477.                class="productitem--link"
  8478.                data-product-page-link
  8479.              >
  8480.                View full details
  8481.              </a>
  8482.            
  8483.          </div>
  8484.        
  8485.      </div>
  8486.  
  8487.      
  8488.        
  8489.          
  8490.          
  8491.          
  8492.  
  8493.          
  8494.          
  8495.  
  8496.          
  8497.  
  8498.          
  8499.  
  8500.          <div class="productitem--actions" data-product-actions>
  8501.            <div class="productitem--listview-price">
  8502.              
  8503.  
  8504.  
  8505.  
  8506.  
  8507.  
  8508.  
  8509.  
  8510.  
  8511.  
  8512.  
  8513.  
  8514.  
  8515.  
  8516.  
  8517.  
  8518.  
  8519.  
  8520.  
  8521.  
  8522.  
  8523.  
  8524.  
  8525.  
  8526.  
  8527.  
  8528.  
  8529.  
  8530.  
  8531.  
  8532.  
  8533. <div class="price productitem__price ">
  8534.  
  8535.    <div
  8536.      class="price__compare-at visible"
  8537.      data-price-compare-container
  8538.    >
  8539.  
  8540.      
  8541.        <span class="money price__original" data-price-original></span>
  8542.      
  8543.    </div>
  8544.  
  8545.  
  8546.    
  8547.      
  8548.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8549.        
  8550.          <span class="visually-hidden">Original price</span>
  8551.          <span class="money price__compare-at--min" data-price-compare-min>
  8552.            $253.99
  8553.          </span>
  8554.          -
  8555.          <span class="visually-hidden">Original price</span>
  8556.          <span class="money price__compare-at--max" data-price-compare-max>
  8557.            $253.99
  8558.          </span>
  8559.        
  8560.      </div>
  8561.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8562.        <span class="visually-hidden">Original price</span>
  8563.        <span class="money price__compare-at--single" data-price-compare>
  8564.          
  8565.        </span>
  8566.      </div>
  8567.    
  8568.  
  8569.  
  8570.  <div class="price__current price__current--emphasize " data-price-container>
  8571.  
  8572.    
  8573.  
  8574.    
  8575.      
  8576.      
  8577.      <span class="money" data-price>
  8578.        $253.99
  8579.      </span>
  8580.    
  8581.    
  8582.  </div>
  8583.  
  8584.  
  8585.    
  8586.    <div class="price__current--hidden" data-current-price-range-hidden>
  8587.      
  8588.        <span class="money price__current--min" data-price-min>$253.99</span>
  8589.        -
  8590.        <span class="money price__current--max" data-price-max>$253.99</span>
  8591.      
  8592.    </div>
  8593.    <div class="price__current--hidden" data-current-price-hidden>
  8594.      <span class="visually-hidden">Current price</span>
  8595.      <span class="money" data-price>
  8596.        $253.99
  8597.      </span>
  8598.    </div>
  8599.  
  8600.  
  8601.  
  8602.    
  8603.    
  8604.    
  8605.    
  8606.  
  8607.    <div
  8608.      class="
  8609.        productitem__unit-price
  8610.        hidden
  8611.      "
  8612.      data-unit-price
  8613.    >
  8614.      <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>
  8615.    </div>
  8616.  
  8617.  
  8618.  
  8619. </div>
  8620.  
  8621.  
  8622.            </div>
  8623.  
  8624.            <div class="productitem--listview-badge">
  8625.              
  8626.  
  8627.  
  8628.  
  8629.  
  8630.  
  8631.  
  8632.  
  8633.  
  8634.  
  8635.  
  8636.  
  8637.  
  8638.  
  8639.  
  8640.  
  8641.  
  8642.  
  8643.  
  8644.  
  8645.  
  8646.  
  8647.  
  8648.  
  8649.  
  8650.  
  8651.  
  8652.  
  8653.            </div>
  8654.  
  8655.            
  8656.              <div
  8657.                class="
  8658.                  productitem--action
  8659.                  quickshop-button
  8660.                  
  8661.                "
  8662.              >
  8663.                <button
  8664.                  class="productitem--action-trigger button-secondary"
  8665.                  data-quickshop-full
  8666.                  
  8667.                  
  8668.                  type="button"
  8669.                >
  8670.                  Quick shop
  8671.                </button>
  8672.              </div>
  8673.            
  8674.  
  8675.            
  8676.              <div
  8677.                class="
  8678.                  productitem--action
  8679.                  atc--button
  8680.                  
  8681.                "
  8682.              >
  8683.                <button
  8684.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8685.                  type="button"
  8686.                  aria-label="Add to cart"
  8687.                  
  8688.                    data-quick-buy
  8689.                  
  8690.                  data-variant-id="29531492974679"
  8691.                  
  8692.                >
  8693.                  <span class="atc-button--text">
  8694.                    Add to cart
  8695.                  </span>
  8696.                  <span class="atc-button--icon"><svg
  8697.  aria-hidden="true"
  8698.  focusable="false"
  8699.  role="presentation"
  8700.  width="26"
  8701.  height="26"
  8702.  viewBox="0 0 26 26"
  8703.  xmlns="http://www.w3.org/2000/svg"
  8704. >
  8705.  <g fill-rule="nonzero" fill="currentColor">
  8706.    <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"/>
  8707.  </g>
  8708. </svg></span>
  8709.                </button>
  8710.              </div>
  8711.            
  8712.          </div>
  8713.        
  8714.      
  8715.    </div>
  8716.  </div>
  8717.  
  8718.  
  8719.    <script type="application/json" data-quick-buy-settings>
  8720.      {
  8721.        "cart_redirection": true,
  8722.        "money_format": "${{amount}}"
  8723.      }
  8724.    </script>
  8725.  
  8726. </li>
  8727.    
  8728.      
  8729.  
  8730.  
  8731.  
  8732.  
  8733.  
  8734.  
  8735.  
  8736.  
  8737.  
  8738.  
  8739.  
  8740.  
  8741.  
  8742.  
  8743.  
  8744.  
  8745.  
  8746.  
  8747.  
  8748.  
  8749.  
  8750.  
  8751.  
  8752.  
  8753.  
  8754.  
  8755.  
  8756.  
  8757.  
  8758.  
  8759.  
  8760.  
  8761.    
  8762.  
  8763.  
  8764.  
  8765. <li
  8766.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8767.  data-product-item
  8768.  data-product-quickshop-url="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8769.  
  8770. >
  8771.  <div class="productitem" data-product-item-content>
  8772.    
  8773.    
  8774.    
  8775.    
  8776.  
  8777.    
  8778.  
  8779.    
  8780.  
  8781.    <div class="productitem__container">
  8782.      
  8783.  
  8784.      <div class="productitem__image-container">
  8785.        <a target="_blank"
  8786.          class="productitem--image-link"
  8787.          href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8788.          aria-label="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8789.          tabindex="-1"
  8790.          data-product-page-link
  8791.        >
  8792.          <figure
  8793.            class="productitem--image"
  8794.            data-product-item-image
  8795.            
  8796.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8797.            
  8798.          >
  8799.            
  8800.              
  8801.              
  8802.  
  8803.  
  8804.    <noscript data-rimg-noscript>
  8805.      <img loading="lazy"
  8806.        
  8807.          src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  8808.        
  8809.  
  8810.        alt="Updated alt text"
  8811.        data-rimg="noscript"
  8812.        srcset="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908 1x"
  8813.        class="productitem--image-primary"
  8814.        
  8815.        
  8816.      >
  8817.    </noscript>
  8818.  
  8819.  
  8820.  <img loading="lazy"
  8821.    
  8822.      src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  8823.    
  8824.    alt="Updated alt text"
  8825.  
  8826.    
  8827.      data-rimg="lazy"
  8828.      data-rimg-scale="1"
  8829.      data-rimg-template="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_{size}.jpg?v=1680602908"
  8830.      data-rimg-max="500x500"
  8831.      data-rimg-crop="false"
  8832.      
  8833.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8834.    
  8835.  
  8836.    class="productitem--image-primary"
  8837.    
  8838.    
  8839.  >
  8840.  
  8841.  
  8842.  
  8843.  <div data-rimg-canvas></div>
  8844.  
  8845.  
  8846.            
  8847.  
  8848.            
  8849.  
  8850.  
  8851.  
  8852.  
  8853.  
  8854.  
  8855.  
  8856.  
  8857.  
  8858.  
  8859.  
  8860.  
  8861.  
  8862.  
  8863.  
  8864.  
  8865.  
  8866.  
  8867.  
  8868.  
  8869.  
  8870.  
  8871.  
  8872.  
  8873.  
  8874.  
  8875.  
  8876.          </figure>
  8877.        </a>
  8878.      </div><div class="productitem--info">
  8879.        
  8880.          
  8881.  
  8882.        
  8883.  
  8884.        
  8885.          
  8886.  
  8887.  
  8888.  
  8889.  
  8890.  
  8891.  
  8892.  
  8893.  
  8894.  
  8895.  
  8896.  
  8897.  
  8898.  
  8899.  
  8900.  
  8901.  
  8902.  
  8903.  
  8904.  
  8905.  
  8906.  
  8907.  
  8908.  
  8909.  
  8910.  
  8911.  
  8912.  
  8913.  
  8914.  
  8915.  
  8916. <div class="price productitem__price ">
  8917.  
  8918.    <div
  8919.      class="price__compare-at visible"
  8920.      data-price-compare-container
  8921.    >
  8922.  
  8923.      
  8924.        <span class="money price__original" data-price-original></span>
  8925.      
  8926.    </div>
  8927.  
  8928.  
  8929.    
  8930.      
  8931.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8932.        
  8933.          <span class="visually-hidden">Original price</span>
  8934.          <span class="money price__compare-at--min" data-price-compare-min>
  8935.            $53.97
  8936.          </span>
  8937.          -
  8938.          <span class="visually-hidden">Original price</span>
  8939.          <span class="money price__compare-at--max" data-price-compare-max>
  8940.            $53.97
  8941.          </span>
  8942.        
  8943.      </div>
  8944.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8945.        <span class="visually-hidden">Original price</span>
  8946.        <span class="money price__compare-at--single" data-price-compare>
  8947.          
  8948.        </span>
  8949.      </div>
  8950.    
  8951.  
  8952.  
  8953.  <div class="price__current price__current--emphasize " data-price-container>
  8954.  
  8955.    
  8956.  
  8957.    
  8958.      
  8959.      
  8960.      <span class="money" data-price>
  8961.        $53.97
  8962.      </span>
  8963.    
  8964.    
  8965.  </div>
  8966.  
  8967.  
  8968.    
  8969.    <div class="price__current--hidden" data-current-price-range-hidden>
  8970.      
  8971.        <span class="money price__current--min" data-price-min>$53.97</span>
  8972.        -
  8973.        <span class="money price__current--max" data-price-max>$53.97</span>
  8974.      
  8975.    </div>
  8976.    <div class="price__current--hidden" data-current-price-hidden>
  8977.      <span class="visually-hidden">Current price</span>
  8978.      <span class="money" data-price>
  8979.        $53.97
  8980.      </span>
  8981.    </div>
  8982.  
  8983.  
  8984.  
  8985.    
  8986.    
  8987.    
  8988.    
  8989.  
  8990.    <div
  8991.      class="
  8992.        productitem__unit-price
  8993.        hidden
  8994.      "
  8995.      data-unit-price
  8996.    >
  8997.      <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>
  8998.    </div>
  8999.  
  9000.  
  9001.  
  9002. </div>
  9003.  
  9004.  
  9005.        
  9006.  
  9007.        <h2 class="productitem--title">
  9008.          <a href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23" data-product-page-link>
  9009.            19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9010.          </a>
  9011.        </h2>
  9012.  
  9013.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9014.        <div class="star_container 6872273420375"></div>
  9015.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9016.  
  9017.        
  9018.          
  9019.            <span class="productitem--vendor">
  9020.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  9021.            </span>
  9022.          
  9023.        
  9024.  
  9025.        
  9026.  
  9027.        
  9028.          
  9029.            <div class="productitem__stock-level">
  9030.              <!--
  9031.  
  9032.  
  9033.  
  9034.  
  9035.  
  9036.  
  9037.  
  9038. <div class="product-stock-level-wrapper" >
  9039.  
  9040.    <span class="
  9041.  product-stock-level
  9042.  product-stock-level--continue-selling
  9043.  
  9044. ">
  9045.      
  9046.  
  9047.      <span class="product-stock-level__text">
  9048.        
  9049.        <div class="product-stock-level__badge-text">
  9050.          
  9051.  
  9052.    In stock
  9053.  
  9054.  
  9055.        </div>
  9056.      </span>
  9057.    </span>
  9058.  
  9059. </div>
  9060. -->
  9061.              
  9062.  
  9063.  
  9064.    
  9065.      <b style="color:green">In stock</b>
  9066.    
  9067.  
  9068.  
  9069.  
  9070.  
  9071.  
  9072.  
  9073.  
  9074.            </div>
  9075.          
  9076.  
  9077.          
  9078.            
  9079.          
  9080.        
  9081.  
  9082.        
  9083.          <div class="productitem--description">
  9084.            <p>19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9085. Includes power cord.
  9086.  
  9087. Input: 100-240V ~ 50-60Hz
  9088. Output: 19V –...</p>
  9089.  
  9090.            
  9091.              <a
  9092.                href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9093.                class="productitem--link"
  9094.                data-product-page-link
  9095.              >
  9096.                View full details
  9097.              </a>
  9098.            
  9099.          </div>
  9100.        
  9101.      </div>
  9102.  
  9103.      
  9104.        
  9105.          
  9106.          
  9107.          
  9108.  
  9109.          
  9110.          
  9111.  
  9112.          
  9113.  
  9114.          
  9115.  
  9116.          <div class="productitem--actions" data-product-actions>
  9117.            <div class="productitem--listview-price">
  9118.              
  9119.  
  9120.  
  9121.  
  9122.  
  9123.  
  9124.  
  9125.  
  9126.  
  9127.  
  9128.  
  9129.  
  9130.  
  9131.  
  9132.  
  9133.  
  9134.  
  9135.  
  9136.  
  9137.  
  9138.  
  9139.  
  9140.  
  9141.  
  9142.  
  9143.  
  9144.  
  9145.  
  9146.  
  9147.  
  9148.  
  9149. <div class="price productitem__price ">
  9150.  
  9151.    <div
  9152.      class="price__compare-at visible"
  9153.      data-price-compare-container
  9154.    >
  9155.  
  9156.      
  9157.        <span class="money price__original" data-price-original></span>
  9158.      
  9159.    </div>
  9160.  
  9161.  
  9162.    
  9163.      
  9164.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9165.        
  9166.          <span class="visually-hidden">Original price</span>
  9167.          <span class="money price__compare-at--min" data-price-compare-min>
  9168.            $53.97
  9169.          </span>
  9170.          -
  9171.          <span class="visually-hidden">Original price</span>
  9172.          <span class="money price__compare-at--max" data-price-compare-max>
  9173.            $53.97
  9174.          </span>
  9175.        
  9176.      </div>
  9177.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9178.        <span class="visually-hidden">Original price</span>
  9179.        <span class="money price__compare-at--single" data-price-compare>
  9180.          
  9181.        </span>
  9182.      </div>
  9183.    
  9184.  
  9185.  
  9186.  <div class="price__current price__current--emphasize " data-price-container>
  9187.  
  9188.    
  9189.  
  9190.    
  9191.      
  9192.      
  9193.      <span class="money" data-price>
  9194.        $53.97
  9195.      </span>
  9196.    
  9197.    
  9198.  </div>
  9199.  
  9200.  
  9201.    
  9202.    <div class="price__current--hidden" data-current-price-range-hidden>
  9203.      
  9204.        <span class="money price__current--min" data-price-min>$53.97</span>
  9205.        -
  9206.        <span class="money price__current--max" data-price-max>$53.97</span>
  9207.      
  9208.    </div>
  9209.    <div class="price__current--hidden" data-current-price-hidden>
  9210.      <span class="visually-hidden">Current price</span>
  9211.      <span class="money" data-price>
  9212.        $53.97
  9213.      </span>
  9214.    </div>
  9215.  
  9216.  
  9217.  
  9218.    
  9219.    
  9220.    
  9221.    
  9222.  
  9223.    <div
  9224.      class="
  9225.        productitem__unit-price
  9226.        hidden
  9227.      "
  9228.      data-unit-price
  9229.    >
  9230.      <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>
  9231.    </div>
  9232.  
  9233.  
  9234.  
  9235. </div>
  9236.  
  9237.  
  9238.            </div>
  9239.  
  9240.            <div class="productitem--listview-badge">
  9241.              
  9242.  
  9243.  
  9244.  
  9245.  
  9246.  
  9247.  
  9248.  
  9249.  
  9250.  
  9251.  
  9252.  
  9253.  
  9254.  
  9255.  
  9256.  
  9257.  
  9258.  
  9259.  
  9260.  
  9261.  
  9262.  
  9263.  
  9264.  
  9265.  
  9266.  
  9267.  
  9268.  
  9269.            </div>
  9270.  
  9271.            
  9272.              <div
  9273.                class="
  9274.                  productitem--action
  9275.                  quickshop-button
  9276.                  
  9277.                "
  9278.              >
  9279.                <button
  9280.                  class="productitem--action-trigger button-secondary"
  9281.                  data-quickshop-full
  9282.                  
  9283.                  
  9284.                  type="button"
  9285.                >
  9286.                  Quick shop
  9287.                </button>
  9288.              </div>
  9289.            
  9290.  
  9291.            
  9292.              <div
  9293.                class="
  9294.                  productitem--action
  9295.                  atc--button
  9296.                  
  9297.                "
  9298.              >
  9299.                <button
  9300.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9301.                  type="button"
  9302.                  aria-label="Add to cart"
  9303.                  
  9304.                    data-quick-buy
  9305.                  
  9306.                  data-variant-id="40155858534487"
  9307.                  
  9308.                >
  9309.                  <span class="atc-button--text">
  9310.                    Add to cart
  9311.                  </span>
  9312.                  <span class="atc-button--icon"><svg
  9313.  aria-hidden="true"
  9314.  focusable="false"
  9315.  role="presentation"
  9316.  width="26"
  9317.  height="26"
  9318.  viewBox="0 0 26 26"
  9319.  xmlns="http://www.w3.org/2000/svg"
  9320. >
  9321.  <g fill-rule="nonzero" fill="currentColor">
  9322.    <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"/>
  9323.  </g>
  9324. </svg></span>
  9325.                </button>
  9326.              </div>
  9327.            
  9328.          </div>
  9329.        
  9330.      
  9331.    </div>
  9332.  </div>
  9333.  
  9334.  
  9335.    <script type="application/json" data-quick-buy-settings>
  9336.      {
  9337.        "cart_redirection": true,
  9338.        "money_format": "${{amount}}"
  9339.      }
  9340.    </script>
  9341.  
  9342. </li>
  9343.    
  9344.      
  9345.  
  9346.  
  9347.  
  9348.  
  9349.  
  9350.  
  9351.  
  9352.  
  9353.  
  9354.  
  9355.  
  9356.  
  9357.  
  9358.  
  9359.  
  9360.  
  9361.  
  9362.  
  9363.  
  9364.  
  9365.  
  9366.  
  9367.  
  9368.  
  9369.  
  9370.  
  9371.  
  9372.  
  9373.  
  9374.  
  9375.  
  9376.  
  9377.    
  9378.  
  9379.  
  9380.  
  9381. <li
  9382.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9383.  data-product-item
  9384.  data-product-quickshop-url="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9385.  
  9386. >
  9387.  <div class="productitem" data-product-item-content>
  9388.    
  9389.    
  9390.    
  9391.    
  9392.  
  9393.    
  9394.  
  9395.    
  9396.  
  9397.    <div class="productitem__container">
  9398.      
  9399.  
  9400.      <div class="productitem__image-container">
  9401.        <a target="_blank"
  9402.          class="productitem--image-link"
  9403.          href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9404.          aria-label="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9405.          tabindex="-1"
  9406.          data-product-page-link
  9407.        >
  9408.          <figure
  9409.            class="productitem--image"
  9410.            data-product-item-image
  9411.            
  9412.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9413.            
  9414.          >
  9415.            
  9416.              
  9417.              
  9418.  
  9419.  
  9420.    <noscript data-rimg-noscript>
  9421.      <img loading="lazy"
  9422.        
  9423.          src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9424.        
  9425.  
  9426.        alt=""
  9427.        data-rimg="noscript"
  9428.        srcset="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747 1x, //laptopparts.ca/cdn/shop/products/z1_799x799.jpg?v=1648128747 1.56x"
  9429.        class="productitem--image-primary"
  9430.        
  9431.        
  9432.      >
  9433.    </noscript>
  9434.  
  9435.  
  9436.  <img loading="lazy"
  9437.    
  9438.      src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9439.    
  9440.    alt=""
  9441.  
  9442.    
  9443.      data-rimg="lazy"
  9444.      data-rimg-scale="1"
  9445.      data-rimg-template="//laptopparts.ca/cdn/shop/products/z1_{size}.jpg?v=1648128747"
  9446.      data-rimg-max="800x800"
  9447.      data-rimg-crop="false"
  9448.      
  9449.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  9450.    
  9451.  
  9452.    class="productitem--image-primary"
  9453.    
  9454.    
  9455.  >
  9456.  
  9457.  
  9458.  
  9459.  <div data-rimg-canvas></div>
  9460.  
  9461.  
  9462.            
  9463.  
  9464.            
  9465.  
  9466.  
  9467.  
  9468.  
  9469.  
  9470.  
  9471.  
  9472.  
  9473.  
  9474.  
  9475.  
  9476.  
  9477.  
  9478.  
  9479.  
  9480.  
  9481.  
  9482.  
  9483.  
  9484.  
  9485.  
  9486.  
  9487.  
  9488.  
  9489.  
  9490.  
  9491.  
  9492.          </figure>
  9493.        </a>
  9494.      </div><div class="productitem--info">
  9495.        
  9496.          
  9497.  
  9498.        
  9499.  
  9500.        
  9501.          
  9502.  
  9503.  
  9504.  
  9505.  
  9506.  
  9507.  
  9508.  
  9509.  
  9510.  
  9511.  
  9512.  
  9513.  
  9514.  
  9515.  
  9516.  
  9517.  
  9518.  
  9519.  
  9520.  
  9521.  
  9522.  
  9523.  
  9524.  
  9525.  
  9526.  
  9527.  
  9528.  
  9529.  
  9530.  
  9531.  
  9532. <div class="price productitem__price ">
  9533.  
  9534.    <div
  9535.      class="price__compare-at visible"
  9536.      data-price-compare-container
  9537.    >
  9538.  
  9539.      
  9540.        <span class="money price__original" data-price-original></span>
  9541.      
  9542.    </div>
  9543.  
  9544.  
  9545.    
  9546.      
  9547.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9548.        
  9549.          <span class="visually-hidden">Original price</span>
  9550.          <span class="money price__compare-at--min" data-price-compare-min>
  9551.            $38.99
  9552.          </span>
  9553.          -
  9554.          <span class="visually-hidden">Original price</span>
  9555.          <span class="money price__compare-at--max" data-price-compare-max>
  9556.            $38.99
  9557.          </span>
  9558.        
  9559.      </div>
  9560.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9561.        <span class="visually-hidden">Original price</span>
  9562.        <span class="money price__compare-at--single" data-price-compare>
  9563.          
  9564.        </span>
  9565.      </div>
  9566.    
  9567.  
  9568.  
  9569.  <div class="price__current price__current--emphasize " data-price-container>
  9570.  
  9571.    
  9572.  
  9573.    
  9574.      
  9575.      
  9576.      <span class="money" data-price>
  9577.        $38.99
  9578.      </span>
  9579.    
  9580.    
  9581.  </div>
  9582.  
  9583.  
  9584.    
  9585.    <div class="price__current--hidden" data-current-price-range-hidden>
  9586.      
  9587.        <span class="money price__current--min" data-price-min>$38.99</span>
  9588.        -
  9589.        <span class="money price__current--max" data-price-max>$38.99</span>
  9590.      
  9591.    </div>
  9592.    <div class="price__current--hidden" data-current-price-hidden>
  9593.      <span class="visually-hidden">Current price</span>
  9594.      <span class="money" data-price>
  9595.        $38.99
  9596.      </span>
  9597.    </div>
  9598.  
  9599.  
  9600.  
  9601.    
  9602.    
  9603.    
  9604.    
  9605.  
  9606.    <div
  9607.      class="
  9608.        productitem__unit-price
  9609.        hidden
  9610.      "
  9611.      data-unit-price
  9612.    >
  9613.      <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>
  9614.    </div>
  9615.  
  9616.  
  9617.  
  9618. </div>
  9619.  
  9620.  
  9621.        
  9622.  
  9623.        <h2 class="productitem--title">
  9624.          <a href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable" data-product-page-link>
  9625.            2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable
  9626.          </a>
  9627.        </h2>
  9628.  
  9629.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9630.        <div class="star_container 4421896306775"></div>
  9631.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9632.  
  9633.        
  9634.          
  9635.            <span class="productitem--vendor">
  9636.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  9637.            </span>
  9638.          
  9639.        
  9640.  
  9641.        
  9642.  
  9643.        
  9644.          
  9645.            <div class="productitem__stock-level">
  9646.              <!--
  9647.  
  9648.  
  9649.  
  9650.  
  9651.  
  9652.  
  9653.  
  9654. <div class="product-stock-level-wrapper" >
  9655.  
  9656.    <span class="
  9657.  product-stock-level
  9658.  product-stock-level--continue-selling
  9659.  
  9660. ">
  9661.      
  9662.  
  9663.      <span class="product-stock-level__text">
  9664.        
  9665.        <div class="product-stock-level__badge-text">
  9666.          
  9667.  
  9668.    In stock
  9669.  
  9670.  
  9671.        </div>
  9672.      </span>
  9673.    </span>
  9674.  
  9675. </div>
  9676. -->
  9677.              
  9678.  
  9679.  
  9680.    
  9681.      <b style="color:green">In stock</b>
  9682.    
  9683.  
  9684.  
  9685.  
  9686.  
  9687.  
  9688.  
  9689.  
  9690.            </div>
  9691.          
  9692.  
  9693.          
  9694.            
  9695.          
  9696.        
  9697.  
  9698.        
  9699.          <div class="productitem--description">
  9700.            <p>Cable Length(approx.): 15cm ± 10% (Just Cable)Connector Type: 1.x SATA Power 15-pin, Male2 x Molex IDE 4-pin, Female</p>
  9701.  
  9702.            
  9703.          </div>
  9704.        
  9705.      </div>
  9706.  
  9707.      
  9708.        
  9709.          
  9710.          
  9711.          
  9712.  
  9713.          
  9714.          
  9715.  
  9716.          
  9717.  
  9718.          
  9719.  
  9720.          <div class="productitem--actions" data-product-actions>
  9721.            <div class="productitem--listview-price">
  9722.              
  9723.  
  9724.  
  9725.  
  9726.  
  9727.  
  9728.  
  9729.  
  9730.  
  9731.  
  9732.  
  9733.  
  9734.  
  9735.  
  9736.  
  9737.  
  9738.  
  9739.  
  9740.  
  9741.  
  9742.  
  9743.  
  9744.  
  9745.  
  9746.  
  9747.  
  9748.  
  9749.  
  9750.  
  9751.  
  9752.  
  9753. <div class="price productitem__price ">
  9754.  
  9755.    <div
  9756.      class="price__compare-at visible"
  9757.      data-price-compare-container
  9758.    >
  9759.  
  9760.      
  9761.        <span class="money price__original" data-price-original></span>
  9762.      
  9763.    </div>
  9764.  
  9765.  
  9766.    
  9767.      
  9768.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9769.        
  9770.          <span class="visually-hidden">Original price</span>
  9771.          <span class="money price__compare-at--min" data-price-compare-min>
  9772.            $38.99
  9773.          </span>
  9774.          -
  9775.          <span class="visually-hidden">Original price</span>
  9776.          <span class="money price__compare-at--max" data-price-compare-max>
  9777.            $38.99
  9778.          </span>
  9779.        
  9780.      </div>
  9781.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9782.        <span class="visually-hidden">Original price</span>
  9783.        <span class="money price__compare-at--single" data-price-compare>
  9784.          
  9785.        </span>
  9786.      </div>
  9787.    
  9788.  
  9789.  
  9790.  <div class="price__current price__current--emphasize " data-price-container>
  9791.  
  9792.    
  9793.  
  9794.    
  9795.      
  9796.      
  9797.      <span class="money" data-price>
  9798.        $38.99
  9799.      </span>
  9800.    
  9801.    
  9802.  </div>
  9803.  
  9804.  
  9805.    
  9806.    <div class="price__current--hidden" data-current-price-range-hidden>
  9807.      
  9808.        <span class="money price__current--min" data-price-min>$38.99</span>
  9809.        -
  9810.        <span class="money price__current--max" data-price-max>$38.99</span>
  9811.      
  9812.    </div>
  9813.    <div class="price__current--hidden" data-current-price-hidden>
  9814.      <span class="visually-hidden">Current price</span>
  9815.      <span class="money" data-price>
  9816.        $38.99
  9817.      </span>
  9818.    </div>
  9819.  
  9820.  
  9821.  
  9822.    
  9823.    
  9824.    
  9825.    
  9826.  
  9827.    <div
  9828.      class="
  9829.        productitem__unit-price
  9830.        hidden
  9831.      "
  9832.      data-unit-price
  9833.    >
  9834.      <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>
  9835.    </div>
  9836.  
  9837.  
  9838.  
  9839. </div>
  9840.  
  9841.  
  9842.            </div>
  9843.  
  9844.            <div class="productitem--listview-badge">
  9845.              
  9846.  
  9847.  
  9848.  
  9849.  
  9850.  
  9851.  
  9852.  
  9853.  
  9854.  
  9855.  
  9856.  
  9857.  
  9858.  
  9859.  
  9860.  
  9861.  
  9862.  
  9863.  
  9864.  
  9865.  
  9866.  
  9867.  
  9868.  
  9869.  
  9870.  
  9871.  
  9872.  
  9873.            </div>
  9874.  
  9875.            
  9876.              <div
  9877.                class="
  9878.                  productitem--action
  9879.                  quickshop-button
  9880.                  
  9881.                "
  9882.              >
  9883.                <button
  9884.                  class="productitem--action-trigger button-secondary"
  9885.                  data-quickshop-full
  9886.                  
  9887.                  
  9888.                  type="button"
  9889.                >
  9890.                  Quick shop
  9891.                </button>
  9892.              </div>
  9893.            
  9894.  
  9895.            
  9896.              <div
  9897.                class="
  9898.                  productitem--action
  9899.                  atc--button
  9900.                  
  9901.                "
  9902.              >
  9903.                <button
  9904.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9905.                  type="button"
  9906.                  aria-label="Add to cart"
  9907.                  
  9908.                    data-quick-buy
  9909.                  
  9910.                  data-variant-id="31550087692375"
  9911.                  
  9912.                >
  9913.                  <span class="atc-button--text">
  9914.                    Add to cart
  9915.                  </span>
  9916.                  <span class="atc-button--icon"><svg
  9917.  aria-hidden="true"
  9918.  focusable="false"
  9919.  role="presentation"
  9920.  width="26"
  9921.  height="26"
  9922.  viewBox="0 0 26 26"
  9923.  xmlns="http://www.w3.org/2000/svg"
  9924. >
  9925.  <g fill-rule="nonzero" fill="currentColor">
  9926.    <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"/>
  9927.  </g>
  9928. </svg></span>
  9929.                </button>
  9930.              </div>
  9931.            
  9932.          </div>
  9933.        
  9934.      
  9935.    </div>
  9936.  </div>
  9937.  
  9938.  
  9939.    <script type="application/json" data-quick-buy-settings>
  9940.      {
  9941.        "cart_redirection": true,
  9942.        "money_format": "${{amount}}"
  9943.      }
  9944.    </script>
  9945.  
  9946. </li>
  9947.    
  9948.      
  9949.  
  9950.  
  9951.  
  9952.  
  9953.  
  9954.  
  9955.  
  9956.  
  9957.  
  9958.  
  9959.  
  9960.  
  9961.  
  9962.  
  9963.  
  9964.  
  9965.  
  9966.  
  9967.  
  9968.  
  9969.  
  9970.  
  9971.  
  9972.  
  9973.  
  9974.  
  9975.  
  9976.  
  9977.  
  9978.  
  9979.  
  9980.  
  9981.    
  9982.  
  9983.  
  9984.  
  9985. <li
  9986.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9987.  data-product-item
  9988.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  9989.  
  9990. >
  9991.  <div class="productitem" data-product-item-content>
  9992.    
  9993.    
  9994.    
  9995.    
  9996.  
  9997.    
  9998.  
  9999.    
  10000.  
  10001.    <div class="productitem__container">
  10002.      
  10003.  
  10004.      <div class="productitem__image-container">
  10005.        <a target="_blank"
  10006.          class="productitem--image-link"
  10007.          href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10008.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10009.          tabindex="-1"
  10010.          data-product-page-link
  10011.        >
  10012.          <figure
  10013.            class="productitem--image"
  10014.            data-product-item-image
  10015.            
  10016.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10017.            
  10018.          >
  10019.            
  10020.              
  10021.              
  10022.  
  10023.  
  10024.    <noscript data-rimg-noscript>
  10025.      <img loading="lazy"
  10026.        
  10027.          src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10028.        
  10029.  
  10030.        alt=""
  10031.        data-rimg="noscript"
  10032.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824 1x"
  10033.        class="productitem--image-primary"
  10034.        
  10035.        
  10036.      >
  10037.    </noscript>
  10038.  
  10039.  
  10040.  <img loading="lazy"
  10041.    
  10042.      src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10043.    
  10044.    alt=""
  10045.  
  10046.    
  10047.      data-rimg="lazy"
  10048.      data-rimg-scale="1"
  10049.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_{size}.jpg?v=1648039824"
  10050.      data-rimg-max="500x500"
  10051.      data-rimg-crop="false"
  10052.      
  10053.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  10054.    
  10055.  
  10056.    class="productitem--image-primary"
  10057.    
  10058.    
  10059.  >
  10060.  
  10061.  
  10062.  
  10063.  <div data-rimg-canvas></div>
  10064.  
  10065.  
  10066.            
  10067.  
  10068.            
  10069.  
  10070.  
  10071.  
  10072.  
  10073.  
  10074.  
  10075.  
  10076.  
  10077.  
  10078.  
  10079.  
  10080.  
  10081.  
  10082.  
  10083.  
  10084.  
  10085.  
  10086.  
  10087.  
  10088.  
  10089.  
  10090.  
  10091.  
  10092.  
  10093.  
  10094.  
  10095.  
  10096.          </figure>
  10097.        </a>
  10098.      </div><div class="productitem--info">
  10099.        
  10100.          
  10101.  
  10102.        
  10103.  
  10104.        
  10105.          
  10106.  
  10107.  
  10108.  
  10109.  
  10110.  
  10111.  
  10112.  
  10113.  
  10114.  
  10115.  
  10116.  
  10117.  
  10118.  
  10119.  
  10120.  
  10121.  
  10122.  
  10123.  
  10124.  
  10125.  
  10126.  
  10127.  
  10128.  
  10129.  
  10130.  
  10131.  
  10132.  
  10133.  
  10134.  
  10135.  
  10136. <div class="price productitem__price ">
  10137.  
  10138.    <div
  10139.      class="price__compare-at visible"
  10140.      data-price-compare-container
  10141.    >
  10142.  
  10143.      
  10144.        <span class="money price__original" data-price-original></span>
  10145.      
  10146.    </div>
  10147.  
  10148.  
  10149.    
  10150.      
  10151.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10152.        
  10153.          <span class="visually-hidden">Original price</span>
  10154.          <span class="money price__compare-at--min" data-price-compare-min>
  10155.            $253.99
  10156.          </span>
  10157.          -
  10158.          <span class="visually-hidden">Original price</span>
  10159.          <span class="money price__compare-at--max" data-price-compare-max>
  10160.            $253.99
  10161.          </span>
  10162.        
  10163.      </div>
  10164.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10165.        <span class="visually-hidden">Original price</span>
  10166.        <span class="money price__compare-at--single" data-price-compare>
  10167.          
  10168.        </span>
  10169.      </div>
  10170.    
  10171.  
  10172.  
  10173.  <div class="price__current price__current--emphasize " data-price-container>
  10174.  
  10175.    
  10176.  
  10177.    
  10178.      
  10179.      
  10180.      <span class="money" data-price>
  10181.        $253.99
  10182.      </span>
  10183.    
  10184.    
  10185.  </div>
  10186.  
  10187.  
  10188.    
  10189.    <div class="price__current--hidden" data-current-price-range-hidden>
  10190.      
  10191.        <span class="money price__current--min" data-price-min>$253.99</span>
  10192.        -
  10193.        <span class="money price__current--max" data-price-max>$253.99</span>
  10194.      
  10195.    </div>
  10196.    <div class="price__current--hidden" data-current-price-hidden>
  10197.      <span class="visually-hidden">Current price</span>
  10198.      <span class="money" data-price>
  10199.        $253.99
  10200.      </span>
  10201.    </div>
  10202.  
  10203.  
  10204.  
  10205.    
  10206.    
  10207.    
  10208.    
  10209.  
  10210.    <div
  10211.      class="
  10212.        productitem__unit-price
  10213.        hidden
  10214.      "
  10215.      data-unit-price
  10216.    >
  10217.      <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>
  10218.    </div>
  10219.  
  10220.  
  10221.  
  10222. </div>
  10223.  
  10224.  
  10225.        
  10226.  
  10227.        <h2 class="productitem--title">
  10228.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops" data-product-page-link>
  10229.            15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0
  10230.          </a>
  10231.        </h2>
  10232.  
  10233.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10234.        <div class="star_container 3929811091543"></div>
  10235.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10236.  
  10237.        
  10238.          
  10239.            <span class="productitem--vendor">
  10240.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  10241.            </span>
  10242.          
  10243.        
  10244.  
  10245.        
  10246.  
  10247.        
  10248.          
  10249.            <div class="productitem__stock-level">
  10250.              <!--
  10251.  
  10252.  
  10253.  
  10254.  
  10255.  
  10256.  
  10257.  
  10258. <div class="product-stock-level-wrapper" >
  10259.  
  10260.    <span class="
  10261.  product-stock-level
  10262.  product-stock-level--continue-selling
  10263.  
  10264. ">
  10265.      
  10266.  
  10267.      <span class="product-stock-level__text">
  10268.        
  10269.        <div class="product-stock-level__badge-text">
  10270.          
  10271.  
  10272.    In stock
  10273.  
  10274.  
  10275.        </div>
  10276.      </span>
  10277.    </span>
  10278.  
  10279. </div>
  10280. -->
  10281.              
  10282.  
  10283.  
  10284.    
  10285.      <b style="color:green">In stock</b>
  10286.    
  10287.  
  10288.  
  10289.  
  10290.  
  10291.  
  10292.  
  10293.  
  10294.            </div>
  10295.          
  10296.  
  10297.          
  10298.            
  10299.          
  10300.        
  10301.  
  10302.        
  10303.          <div class="productitem--description">
  10304.            <p>
  10305. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  10306.  
  10307. **This screen will only work if your laptop is one of the models below that ca...</p>
  10308.  
  10309.            
  10310.              <a
  10311.                href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10312.                class="productitem--link"
  10313.                data-product-page-link
  10314.              >
  10315.                View full details
  10316.              </a>
  10317.            
  10318.          </div>
  10319.        
  10320.      </div>
  10321.  
  10322.      
  10323.        
  10324.          
  10325.          
  10326.          
  10327.  
  10328.          
  10329.          
  10330.  
  10331.          
  10332.  
  10333.          
  10334.  
  10335.          <div class="productitem--actions" data-product-actions>
  10336.            <div class="productitem--listview-price">
  10337.              
  10338.  
  10339.  
  10340.  
  10341.  
  10342.  
  10343.  
  10344.  
  10345.  
  10346.  
  10347.  
  10348.  
  10349.  
  10350.  
  10351.  
  10352.  
  10353.  
  10354.  
  10355.  
  10356.  
  10357.  
  10358.  
  10359.  
  10360.  
  10361.  
  10362.  
  10363.  
  10364.  
  10365.  
  10366.  
  10367.  
  10368. <div class="price productitem__price ">
  10369.  
  10370.    <div
  10371.      class="price__compare-at visible"
  10372.      data-price-compare-container
  10373.    >
  10374.  
  10375.      
  10376.        <span class="money price__original" data-price-original></span>
  10377.      
  10378.    </div>
  10379.  
  10380.  
  10381.    
  10382.      
  10383.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10384.        
  10385.          <span class="visually-hidden">Original price</span>
  10386.          <span class="money price__compare-at--min" data-price-compare-min>
  10387.            $253.99
  10388.          </span>
  10389.          -
  10390.          <span class="visually-hidden">Original price</span>
  10391.          <span class="money price__compare-at--max" data-price-compare-max>
  10392.            $253.99
  10393.          </span>
  10394.        
  10395.      </div>
  10396.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10397.        <span class="visually-hidden">Original price</span>
  10398.        <span class="money price__compare-at--single" data-price-compare>
  10399.          
  10400.        </span>
  10401.      </div>
  10402.    
  10403.  
  10404.  
  10405.  <div class="price__current price__current--emphasize " data-price-container>
  10406.  
  10407.    
  10408.  
  10409.    
  10410.      
  10411.      
  10412.      <span class="money" data-price>
  10413.        $253.99
  10414.      </span>
  10415.    
  10416.    
  10417.  </div>
  10418.  
  10419.  
  10420.    
  10421.    <div class="price__current--hidden" data-current-price-range-hidden>
  10422.      
  10423.        <span class="money price__current--min" data-price-min>$253.99</span>
  10424.        -
  10425.        <span class="money price__current--max" data-price-max>$253.99</span>
  10426.      
  10427.    </div>
  10428.    <div class="price__current--hidden" data-current-price-hidden>
  10429.      <span class="visually-hidden">Current price</span>
  10430.      <span class="money" data-price>
  10431.        $253.99
  10432.      </span>
  10433.    </div>
  10434.  
  10435.  
  10436.  
  10437.    
  10438.    
  10439.    
  10440.    
  10441.  
  10442.    <div
  10443.      class="
  10444.        productitem__unit-price
  10445.        hidden
  10446.      "
  10447.      data-unit-price
  10448.    >
  10449.      <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>
  10450.    </div>
  10451.  
  10452.  
  10453.  
  10454. </div>
  10455.  
  10456.  
  10457.            </div>
  10458.  
  10459.            <div class="productitem--listview-badge">
  10460.              
  10461.  
  10462.  
  10463.  
  10464.  
  10465.  
  10466.  
  10467.  
  10468.  
  10469.  
  10470.  
  10471.  
  10472.  
  10473.  
  10474.  
  10475.  
  10476.  
  10477.  
  10478.  
  10479.  
  10480.  
  10481.  
  10482.  
  10483.  
  10484.  
  10485.  
  10486.  
  10487.  
  10488.            </div>
  10489.  
  10490.            
  10491.              <div
  10492.                class="
  10493.                  productitem--action
  10494.                  quickshop-button
  10495.                  
  10496.                "
  10497.              >
  10498.                <button
  10499.                  class="productitem--action-trigger button-secondary"
  10500.                  data-quickshop-full
  10501.                  
  10502.                  
  10503.                  type="button"
  10504.                >
  10505.                  Quick shop
  10506.                </button>
  10507.              </div>
  10508.            
  10509.  
  10510.            
  10511.              <div
  10512.                class="
  10513.                  productitem--action
  10514.                  atc--button
  10515.                  
  10516.                "
  10517.              >
  10518.                <button
  10519.                  class="productitem--action-trigger productitem--action-atc button-primary"
  10520.                  type="button"
  10521.                  aria-label="Add to cart"
  10522.                  
  10523.                    data-quick-buy
  10524.                  
  10525.                  data-variant-id="29564283224151"
  10526.                  
  10527.                >
  10528.                  <span class="atc-button--text">
  10529.                    Add to cart
  10530.                  </span>
  10531.                  <span class="atc-button--icon"><svg
  10532.  aria-hidden="true"
  10533.  focusable="false"
  10534.  role="presentation"
  10535.  width="26"
  10536.  height="26"
  10537.  viewBox="0 0 26 26"
  10538.  xmlns="http://www.w3.org/2000/svg"
  10539. >
  10540.  <g fill-rule="nonzero" fill="currentColor">
  10541.    <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"/>
  10542.  </g>
  10543. </svg></span>
  10544.                </button>
  10545.              </div>
  10546.            
  10547.          </div>
  10548.        
  10549.      
  10550.    </div>
  10551.  </div>
  10552.  
  10553.  
  10554.    <script type="application/json" data-quick-buy-settings>
  10555.      {
  10556.        "cart_redirection": true,
  10557.        "money_format": "${{amount}}"
  10558.      }
  10559.    </script>
  10560.  
  10561. </li>
  10562.    
  10563.      
  10564.  
  10565.  
  10566.  
  10567.  
  10568.  
  10569.  
  10570.  
  10571.  
  10572.  
  10573.  
  10574.  
  10575.  
  10576.  
  10577.  
  10578.  
  10579.  
  10580.  
  10581.  
  10582.  
  10583.  
  10584.  
  10585.  
  10586.  
  10587.  
  10588.  
  10589.  
  10590.  
  10591.  
  10592.  
  10593.  
  10594.  
  10595.  
  10596.    
  10597.  
  10598.  
  10599.  
  10600. <li
  10601.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  10602.  data-product-item
  10603.  data-product-quickshop-url="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10604.  
  10605. >
  10606.  <div class="productitem" data-product-item-content>
  10607.    
  10608.    
  10609.    
  10610.    
  10611.  
  10612.    
  10613.  
  10614.    
  10615.  
  10616.    <div class="productitem__container">
  10617.      
  10618.  
  10619.      <div class="productitem__image-container">
  10620.        <a target="_blank"
  10621.          class="productitem--image-link"
  10622.          href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10623.          aria-label="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10624.          tabindex="-1"
  10625.          data-product-page-link
  10626.        >
  10627.          <figure
  10628.            class="productitem--image"
  10629.            data-product-item-image
  10630.            
  10631.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10632.            
  10633.          >
  10634.            
  10635.              
  10636.              
  10637.  
  10638.  
  10639.    <noscript data-rimg-noscript>
  10640.      <img loading="lazy"
  10641.        
  10642.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10643.        
  10644.  
  10645.        alt=""
  10646.        data-rimg="noscript"
  10647.        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"
  10648.        class="productitem--image-primary"
  10649.        
  10650.        
  10651.      >
  10652.    </noscript>
  10653.  
  10654.  
  10655.  <img loading="lazy"
  10656.    
  10657.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10658.    
  10659.    alt=""
  10660.  
  10661.    
  10662.      data-rimg="lazy"
  10663.      data-rimg-scale="1"
  10664.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_{size}.jpg?v=1648053007"
  10665.      data-rimg-max="600x600"
  10666.      data-rimg-crop="false"
  10667.      
  10668.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  10669.    
  10670.  
  10671.    class="productitem--image-primary"
  10672.    
  10673.    
  10674.  >
  10675.  
  10676.  
  10677.  
  10678.  <div data-rimg-canvas></div>
  10679.  
  10680.  
  10681.            
  10682.  
  10683.            
  10684.  
  10685.  
  10686.  
  10687.  
  10688.  
  10689.  
  10690.  
  10691.  
  10692.  
  10693.  
  10694.  
  10695.  
  10696.  
  10697.  
  10698.  
  10699.  
  10700.  
  10701.  
  10702.  
  10703.  
  10704.  
  10705.  
  10706.  
  10707.  
  10708.  
  10709.  
  10710.  
  10711.          </figure>
  10712.        </a>
  10713.      </div><div class="productitem--info">
  10714.        
  10715.          
  10716.  
  10717.        
  10718.  
  10719.        
  10720.          
  10721.  
  10722.  
  10723.  
  10724.  
  10725.  
  10726.  
  10727.  
  10728.  
  10729.  
  10730.  
  10731.  
  10732.  
  10733.  
  10734.  
  10735.  
  10736.  
  10737.  
  10738.  
  10739.  
  10740.  
  10741.  
  10742.  
  10743.  
  10744.  
  10745.  
  10746.  
  10747.  
  10748.  
  10749.  
  10750.  
  10751. <div class="price productitem__price ">
  10752.  
  10753.    <div
  10754.      class="price__compare-at visible"
  10755.      data-price-compare-container
  10756.    >
  10757.  
  10758.      
  10759.        <span class="money price__original" data-price-original></span>
  10760.      
  10761.    </div>
  10762.  
  10763.  
  10764.    
  10765.      
  10766.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10767.        
  10768.          <span class="visually-hidden">Original price</span>
  10769.          <span class="money price__compare-at--min" data-price-compare-min>
  10770.            $38.99
  10771.          </span>
  10772.          -
  10773.          <span class="visually-hidden">Original price</span>
  10774.          <span class="money price__compare-at--max" data-price-compare-max>
  10775.            $38.99
  10776.          </span>
  10777.        
  10778.      </div>
  10779.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10780.        <span class="visually-hidden">Original price</span>
  10781.        <span class="money price__compare-at--single" data-price-compare>
  10782.          
  10783.        </span>
  10784.      </div>
  10785.    
  10786.  
  10787.  
  10788.  <div class="price__current price__current--emphasize " data-price-container>
  10789.  
  10790.    
  10791.  
  10792.    
  10793.      
  10794.      
  10795.      <span class="money" data-price>
  10796.        $38.99
  10797.      </span>
  10798.    
  10799.    
  10800.  </div>
  10801.  
  10802.  
  10803.    
  10804.    <div class="price__current--hidden" data-current-price-range-hidden>
  10805.      
  10806.        <span class="money price__current--min" data-price-min>$38.99</span>
  10807.        -
  10808.        <span class="money price__current--max" data-price-max>$38.99</span>
  10809.      
  10810.    </div>
  10811.    <div class="price__current--hidden" data-current-price-hidden>
  10812.      <span class="visually-hidden">Current price</span>
  10813.      <span class="money" data-price>
  10814.        $38.99
  10815.      </span>
  10816.    </div>
  10817.  
  10818.  
  10819.  
  10820.    
  10821.    
  10822.    
  10823.    
  10824.  
  10825.    <div
  10826.      class="
  10827.        productitem__unit-price
  10828.        hidden
  10829.      "
  10830.      data-unit-price
  10831.    >
  10832.      <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>
  10833.    </div>
  10834.  
  10835.  
  10836.  
  10837. </div>
  10838.  
  10839.  
  10840.        
  10841.  
  10842.        <h2 class="productitem--title">
  10843.          <a href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  10844.            5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  10845.          </a>
  10846.        </h2>
  10847.  
  10848.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10849.        <div class="star_container 3483509915735"></div>
  10850.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10851.  
  10852.        
  10853.          
  10854.            <span class="productitem--vendor">
  10855.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  10856.            </span>
  10857.          
  10858.        
  10859.  
  10860.        
  10861.  
  10862.        
  10863.          
  10864.            <div class="productitem__stock-level">
  10865.              <!--
  10866.  
  10867.  
  10868.  
  10869.  
  10870.  
  10871.  
  10872.  
  10873. <div class="product-stock-level-wrapper" >
  10874.  
  10875.    <span class="
  10876.  product-stock-level
  10877.  product-stock-level--continue-selling
  10878.  
  10879. ">
  10880.      
  10881.  
  10882.      <span class="product-stock-level__text">
  10883.        
  10884.        <div class="product-stock-level__badge-text">
  10885.          
  10886.  
  10887.    In stock
  10888.  
  10889.  
  10890.        </div>
  10891.      </span>
  10892.    </span>
  10893.  
  10894. </div>
  10895. -->
  10896.              
  10897.  
  10898.  
  10899.    
  10900.      <b style="color:green">In stock</b>
  10901.    
  10902.  
  10903.  
  10904.  
  10905.  
  10906.  
  10907.  
  10908.  
  10909.            </div>
  10910.          
  10911.  
  10912.          
  10913.            
  10914.          
  10915.        
  10916.  
  10917.        
  10918.          <div class="productitem--description">
  10919.            <p>Plugs directly into AC outlet.
  10920.  
  10921. Input: 100-240V ~ 50-60Hz
  10922. Output: 12V – 1.5A 18W
  10923. Connector Tip: mini USB
  10924. Colour: Black
  10925.  
  10926. Compatible Part #s: KP.01...</p>
  10927.  
  10928.            
  10929.              <a
  10930.                href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10931.                class="productitem--link"
  10932.                data-product-page-link
  10933.              >
  10934.                View full details
  10935.              </a>
  10936.            
  10937.          </div>
  10938.        
  10939.      </div>
  10940.  
  10941.      
  10942.        
  10943.          
  10944.          
  10945.          
  10946.  
  10947.          
  10948.          
  10949.  
  10950.          
  10951.  
  10952.          
  10953.  
  10954.          <div class="productitem--actions" data-product-actions>
  10955.            <div class="productitem--listview-price">
  10956.              
  10957.  
  10958.  
  10959.  
  10960.  
  10961.  
  10962.  
  10963.  
  10964.  
  10965.  
  10966.  
  10967.  
  10968.  
  10969.  
  10970.  
  10971.  
  10972.  
  10973.  
  10974.  
  10975.  
  10976.  
  10977.  
  10978.  
  10979.  
  10980.  
  10981.  
  10982.  
  10983.  
  10984.  
  10985.  
  10986.  
  10987. <div class="price productitem__price ">
  10988.  
  10989.    <div
  10990.      class="price__compare-at visible"
  10991.      data-price-compare-container
  10992.    >
  10993.  
  10994.      
  10995.        <span class="money price__original" data-price-original></span>
  10996.      
  10997.    </div>
  10998.  
  10999.  
  11000.    
  11001.      
  11002.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11003.        
  11004.          <span class="visually-hidden">Original price</span>
  11005.          <span class="money price__compare-at--min" data-price-compare-min>
  11006.            $38.99
  11007.          </span>
  11008.          -
  11009.          <span class="visually-hidden">Original price</span>
  11010.          <span class="money price__compare-at--max" data-price-compare-max>
  11011.            $38.99
  11012.          </span>
  11013.        
  11014.      </div>
  11015.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11016.        <span class="visually-hidden">Original price</span>
  11017.        <span class="money price__compare-at--single" data-price-compare>
  11018.          
  11019.        </span>
  11020.      </div>
  11021.    
  11022.  
  11023.  
  11024.  <div class="price__current price__current--emphasize " data-price-container>
  11025.  
  11026.    
  11027.  
  11028.    
  11029.      
  11030.      
  11031.      <span class="money" data-price>
  11032.        $38.99
  11033.      </span>
  11034.    
  11035.    
  11036.  </div>
  11037.  
  11038.  
  11039.    
  11040.    <div class="price__current--hidden" data-current-price-range-hidden>
  11041.      
  11042.        <span class="money price__current--min" data-price-min>$38.99</span>
  11043.        -
  11044.        <span class="money price__current--max" data-price-max>$38.99</span>
  11045.      
  11046.    </div>
  11047.    <div class="price__current--hidden" data-current-price-hidden>
  11048.      <span class="visually-hidden">Current price</span>
  11049.      <span class="money" data-price>
  11050.        $38.99
  11051.      </span>
  11052.    </div>
  11053.  
  11054.  
  11055.  
  11056.    
  11057.    
  11058.    
  11059.    
  11060.  
  11061.    <div
  11062.      class="
  11063.        productitem__unit-price
  11064.        hidden
  11065.      "
  11066.      data-unit-price
  11067.    >
  11068.      <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>
  11069.    </div>
  11070.  
  11071.  
  11072.  
  11073. </div>
  11074.  
  11075.  
  11076.            </div>
  11077.  
  11078.            <div class="productitem--listview-badge">
  11079.              
  11080.  
  11081.  
  11082.  
  11083.  
  11084.  
  11085.  
  11086.  
  11087.  
  11088.  
  11089.  
  11090.  
  11091.  
  11092.  
  11093.  
  11094.  
  11095.  
  11096.  
  11097.  
  11098.  
  11099.  
  11100.  
  11101.  
  11102.  
  11103.  
  11104.  
  11105.  
  11106.  
  11107.            </div>
  11108.  
  11109.            
  11110.              <div
  11111.                class="
  11112.                  productitem--action
  11113.                  quickshop-button
  11114.                  
  11115.                "
  11116.              >
  11117.                <button
  11118.                  class="productitem--action-trigger button-secondary"
  11119.                  data-quickshop-full
  11120.                  
  11121.                  
  11122.                  type="button"
  11123.                >
  11124.                  Quick shop
  11125.                </button>
  11126.              </div>
  11127.            
  11128.  
  11129.            
  11130.              <div
  11131.                class="
  11132.                  productitem--action
  11133.                  atc--button
  11134.                  
  11135.                "
  11136.              >
  11137.                <button
  11138.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11139.                  type="button"
  11140.                  aria-label="Add to cart"
  11141.                  
  11142.                    data-quick-buy
  11143.                  
  11144.                  data-variant-id="39666212831319"
  11145.                  
  11146.                >
  11147.                  <span class="atc-button--text">
  11148.                    Add to cart
  11149.                  </span>
  11150.                  <span class="atc-button--icon"><svg
  11151.  aria-hidden="true"
  11152.  focusable="false"
  11153.  role="presentation"
  11154.  width="26"
  11155.  height="26"
  11156.  viewBox="0 0 26 26"
  11157.  xmlns="http://www.w3.org/2000/svg"
  11158. >
  11159.  <g fill-rule="nonzero" fill="currentColor">
  11160.    <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"/>
  11161.  </g>
  11162. </svg></span>
  11163.                </button>
  11164.              </div>
  11165.            
  11166.          </div>
  11167.        
  11168.      
  11169.    </div>
  11170.  </div>
  11171.  
  11172.  
  11173.    <script type="application/json" data-quick-buy-settings>
  11174.      {
  11175.        "cart_redirection": true,
  11176.        "money_format": "${{amount}}"
  11177.      }
  11178.    </script>
  11179.  
  11180. </li>
  11181.    
  11182.      
  11183.  
  11184.  
  11185.  
  11186.  
  11187.  
  11188.  
  11189.  
  11190.  
  11191.  
  11192.  
  11193.  
  11194.  
  11195.  
  11196.  
  11197.  
  11198.  
  11199.  
  11200.  
  11201.  
  11202.  
  11203.  
  11204.  
  11205.  
  11206.  
  11207.  
  11208.  
  11209.  
  11210.  
  11211.  
  11212.  
  11213.  
  11214.  
  11215.    
  11216.  
  11217.  
  11218.  
  11219. <li
  11220.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11221.  data-product-item
  11222.  data-product-quickshop-url="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11223.  
  11224. >
  11225.  <div class="productitem" data-product-item-content>
  11226.    
  11227.    
  11228.    
  11229.    
  11230.  
  11231.    
  11232.  
  11233.    
  11234.  
  11235.    <div class="productitem__container">
  11236.      
  11237.  
  11238.      <div class="productitem__image-container">
  11239.        <a target="_blank"
  11240.          class="productitem--image-link"
  11241.          href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11242.          aria-label="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11243.          tabindex="-1"
  11244.          data-product-page-link
  11245.        >
  11246.          <figure
  11247.            class="productitem--image"
  11248.            data-product-item-image
  11249.            
  11250.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11251.            
  11252.          >
  11253.            
  11254.              
  11255.              
  11256.  
  11257.  
  11258.    <noscript data-rimg-noscript>
  11259.      <img loading="lazy"
  11260.        
  11261.          src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11262.        
  11263.  
  11264.        alt=""
  11265.        data-rimg="noscript"
  11266.        srcset="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863 1x"
  11267.        class="productitem--image-primary"
  11268.        
  11269.        
  11270.      >
  11271.    </noscript>
  11272.  
  11273.  
  11274.  <img loading="lazy"
  11275.    
  11276.      src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11277.    
  11278.    alt=""
  11279.  
  11280.    
  11281.      data-rimg="lazy"
  11282.      data-rimg-scale="1"
  11283.      data-rimg-template="//laptopparts.ca/cdn/shop/products/8291_{size}.jpg?v=1648090863"
  11284.      data-rimg-max="500x500"
  11285.      data-rimg-crop="false"
  11286.      
  11287.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  11288.    
  11289.  
  11290.    class="productitem--image-primary"
  11291.    
  11292.    
  11293.  >
  11294.  
  11295.  
  11296.  
  11297.  <div data-rimg-canvas></div>
  11298.  
  11299.  
  11300.            
  11301.  
  11302.            
  11303.  
  11304.  
  11305.  
  11306.  
  11307.  
  11308.  
  11309.  
  11310.  
  11311.  
  11312.  
  11313.  
  11314.  
  11315.  
  11316.  
  11317.  
  11318.  
  11319.  
  11320.  
  11321.  
  11322.  
  11323.  
  11324.  
  11325.  
  11326.  
  11327.  
  11328.  
  11329.  
  11330.          </figure>
  11331.        </a>
  11332.      </div><div class="productitem--info">
  11333.        
  11334.          
  11335.  
  11336.        
  11337.  
  11338.        
  11339.          
  11340.  
  11341.  
  11342.  
  11343.  
  11344.  
  11345.  
  11346.  
  11347.  
  11348.  
  11349.  
  11350.  
  11351.  
  11352.  
  11353.  
  11354.  
  11355.  
  11356.  
  11357.  
  11358.  
  11359.  
  11360.  
  11361.  
  11362.  
  11363.  
  11364.  
  11365.  
  11366.  
  11367.  
  11368.  
  11369.  
  11370. <div class="price productitem__price ">
  11371.  
  11372.    <div
  11373.      class="price__compare-at visible"
  11374.      data-price-compare-container
  11375.    >
  11376.  
  11377.      
  11378.        <span class="money price__original" data-price-original></span>
  11379.      
  11380.    </div>
  11381.  
  11382.  
  11383.    
  11384.      
  11385.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11386.        
  11387.          <span class="visually-hidden">Original price</span>
  11388.          <span class="money price__compare-at--min" data-price-compare-min>
  11389.            $106.99
  11390.          </span>
  11391.          -
  11392.          <span class="visually-hidden">Original price</span>
  11393.          <span class="money price__compare-at--max" data-price-compare-max>
  11394.            $106.99
  11395.          </span>
  11396.        
  11397.      </div>
  11398.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11399.        <span class="visually-hidden">Original price</span>
  11400.        <span class="money price__compare-at--single" data-price-compare>
  11401.          
  11402.        </span>
  11403.      </div>
  11404.    
  11405.  
  11406.  
  11407.  <div class="price__current price__current--emphasize " data-price-container>
  11408.  
  11409.    
  11410.  
  11411.    
  11412.      
  11413.      
  11414.      <span class="money" data-price>
  11415.        $106.99
  11416.      </span>
  11417.    
  11418.    
  11419.  </div>
  11420.  
  11421.  
  11422.    
  11423.    <div class="price__current--hidden" data-current-price-range-hidden>
  11424.      
  11425.        <span class="money price__current--min" data-price-min>$106.99</span>
  11426.        -
  11427.        <span class="money price__current--max" data-price-max>$106.99</span>
  11428.      
  11429.    </div>
  11430.    <div class="price__current--hidden" data-current-price-hidden>
  11431.      <span class="visually-hidden">Current price</span>
  11432.      <span class="money" data-price>
  11433.        $106.99
  11434.      </span>
  11435.    </div>
  11436.  
  11437.  
  11438.  
  11439.    
  11440.    
  11441.    
  11442.    
  11443.  
  11444.    <div
  11445.      class="
  11446.        productitem__unit-price
  11447.        hidden
  11448.      "
  11449.      data-unit-price
  11450.    >
  11451.      <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>
  11452.    </div>
  11453.  
  11454.  
  11455.  
  11456. </div>
  11457.  
  11458.  
  11459.        
  11460.  
  11461.        <h2 class="productitem--title">
  11462.          <a href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a" data-product-page-link>
  11463.            5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A
  11464.          </a>
  11465.        </h2>
  11466.  
  11467.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  11468.        <div class="star_container 592337698839"></div>
  11469.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  11470.  
  11471.        
  11472.          
  11473.            <span class="productitem--vendor">
  11474.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  11475.            </span>
  11476.          
  11477.        
  11478.  
  11479.        
  11480.  
  11481.        
  11482.          
  11483.            <div class="productitem__stock-level">
  11484.              <!--
  11485.  
  11486.  
  11487.  
  11488.  
  11489.  
  11490.  
  11491.  
  11492. <div class="product-stock-level-wrapper" >
  11493.  
  11494.    <span class="
  11495.  product-stock-level
  11496.  product-stock-level--continue-selling
  11497.  
  11498. ">
  11499.      
  11500.  
  11501.      <span class="product-stock-level__text">
  11502.        
  11503.        <div class="product-stock-level__badge-text">
  11504.          
  11505.  
  11506.    In stock
  11507.  
  11508.  
  11509.        </div>
  11510.      </span>
  11511.    </span>
  11512.  
  11513. </div>
  11514. -->
  11515.              
  11516.  
  11517.  
  11518.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  11519.  
  11520.  
  11521.  
  11522.  
  11523.            </div>
  11524.          
  11525.  
  11526.          
  11527.            
  11528.          
  11529.        
  11530.  
  11531.        
  11532.          <div class="productitem--description">
  11533.            <p>
  11534. Description: 5 slot printhead for select HP printers. This item is refurbished.  Compatible Part #'s: CB326-30002, CN642A.  Compatible Models: HP ...</p>
  11535.  
  11536.            
  11537.              <a
  11538.                href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11539.                class="productitem--link"
  11540.                data-product-page-link
  11541.              >
  11542.                View full details
  11543.              </a>
  11544.            
  11545.          </div>
  11546.        
  11547.      </div>
  11548.  
  11549.      
  11550.        
  11551.          
  11552.          
  11553.          
  11554.  
  11555.          
  11556.          
  11557.  
  11558.          
  11559.  
  11560.          
  11561.  
  11562.          <div class="productitem--actions" data-product-actions>
  11563.            <div class="productitem--listview-price">
  11564.              
  11565.  
  11566.  
  11567.  
  11568.  
  11569.  
  11570.  
  11571.  
  11572.  
  11573.  
  11574.  
  11575.  
  11576.  
  11577.  
  11578.  
  11579.  
  11580.  
  11581.  
  11582.  
  11583.  
  11584.  
  11585.  
  11586.  
  11587.  
  11588.  
  11589.  
  11590.  
  11591.  
  11592.  
  11593.  
  11594.  
  11595. <div class="price productitem__price ">
  11596.  
  11597.    <div
  11598.      class="price__compare-at visible"
  11599.      data-price-compare-container
  11600.    >
  11601.  
  11602.      
  11603.        <span class="money price__original" data-price-original></span>
  11604.      
  11605.    </div>
  11606.  
  11607.  
  11608.    
  11609.      
  11610.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11611.        
  11612.          <span class="visually-hidden">Original price</span>
  11613.          <span class="money price__compare-at--min" data-price-compare-min>
  11614.            $106.99
  11615.          </span>
  11616.          -
  11617.          <span class="visually-hidden">Original price</span>
  11618.          <span class="money price__compare-at--max" data-price-compare-max>
  11619.            $106.99
  11620.          </span>
  11621.        
  11622.      </div>
  11623.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11624.        <span class="visually-hidden">Original price</span>
  11625.        <span class="money price__compare-at--single" data-price-compare>
  11626.          
  11627.        </span>
  11628.      </div>
  11629.    
  11630.  
  11631.  
  11632.  <div class="price__current price__current--emphasize " data-price-container>
  11633.  
  11634.    
  11635.  
  11636.    
  11637.      
  11638.      
  11639.      <span class="money" data-price>
  11640.        $106.99
  11641.      </span>
  11642.    
  11643.    
  11644.  </div>
  11645.  
  11646.  
  11647.    
  11648.    <div class="price__current--hidden" data-current-price-range-hidden>
  11649.      
  11650.        <span class="money price__current--min" data-price-min>$106.99</span>
  11651.        -
  11652.        <span class="money price__current--max" data-price-max>$106.99</span>
  11653.      
  11654.    </div>
  11655.    <div class="price__current--hidden" data-current-price-hidden>
  11656.      <span class="visually-hidden">Current price</span>
  11657.      <span class="money" data-price>
  11658.        $106.99
  11659.      </span>
  11660.    </div>
  11661.  
  11662.  
  11663.  
  11664.    
  11665.    
  11666.    
  11667.    
  11668.  
  11669.    <div
  11670.      class="
  11671.        productitem__unit-price
  11672.        hidden
  11673.      "
  11674.      data-unit-price
  11675.    >
  11676.      <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>
  11677.    </div>
  11678.  
  11679.  
  11680.  
  11681. </div>
  11682.  
  11683.  
  11684.            </div>
  11685.  
  11686.            <div class="productitem--listview-badge">
  11687.              
  11688.  
  11689.  
  11690.  
  11691.  
  11692.  
  11693.  
  11694.  
  11695.  
  11696.  
  11697.  
  11698.  
  11699.  
  11700.  
  11701.  
  11702.  
  11703.  
  11704.  
  11705.  
  11706.  
  11707.  
  11708.  
  11709.  
  11710.  
  11711.  
  11712.  
  11713.  
  11714.  
  11715.            </div>
  11716.  
  11717.            
  11718.              <div
  11719.                class="
  11720.                  productitem--action
  11721.                  quickshop-button
  11722.                  
  11723.                "
  11724.              >
  11725.                <button
  11726.                  class="productitem--action-trigger button-secondary"
  11727.                  data-quickshop-full
  11728.                  
  11729.                  
  11730.                  type="button"
  11731.                >
  11732.                  Quick shop
  11733.                </button>
  11734.              </div>
  11735.            
  11736.  
  11737.            
  11738.              <div
  11739.                class="
  11740.                  productitem--action
  11741.                  atc--button
  11742.                  
  11743.                "
  11744.              >
  11745.                <button
  11746.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11747.                  type="button"
  11748.                  aria-label="Add to cart"
  11749.                  
  11750.                    data-quick-buy
  11751.                  
  11752.                  data-variant-id="6936707596311"
  11753.                  
  11754.                >
  11755.                  <span class="atc-button--text">
  11756.                    Add to cart
  11757.                  </span>
  11758.                  <span class="atc-button--icon"><svg
  11759.  aria-hidden="true"
  11760.  focusable="false"
  11761.  role="presentation"
  11762.  width="26"
  11763.  height="26"
  11764.  viewBox="0 0 26 26"
  11765.  xmlns="http://www.w3.org/2000/svg"
  11766. >
  11767.  <g fill-rule="nonzero" fill="currentColor">
  11768.    <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"/>
  11769.  </g>
  11770. </svg></span>
  11771.                </button>
  11772.              </div>
  11773.            
  11774.          </div>
  11775.        
  11776.      
  11777.    </div>
  11778.  </div>
  11779.  
  11780.  
  11781.    <script type="application/json" data-quick-buy-settings>
  11782.      {
  11783.        "cart_redirection": true,
  11784.        "money_format": "${{amount}}"
  11785.      }
  11786.    </script>
  11787.  
  11788. </li>
  11789.    
  11790.      
  11791.  
  11792.  
  11793.  
  11794.  
  11795.  
  11796.  
  11797.  
  11798.  
  11799.  
  11800.  
  11801.  
  11802.  
  11803.  
  11804.  
  11805.  
  11806.  
  11807.  
  11808.  
  11809.  
  11810.  
  11811.  
  11812.  
  11813.  
  11814.  
  11815.  
  11816.  
  11817.  
  11818.  
  11819.  
  11820.  
  11821.  
  11822.  
  11823.    
  11824.  
  11825.  
  11826.  
  11827. <li
  11828.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11829.  data-product-item
  11830.  data-product-quickshop-url="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11831.  
  11832. >
  11833.  <div class="productitem" data-product-item-content>
  11834.    
  11835.    
  11836.    
  11837.    
  11838.  
  11839.    
  11840.  
  11841.    
  11842.  
  11843.    <div class="productitem__container">
  11844.      
  11845.  
  11846.      <div class="productitem__image-container">
  11847.        <a target="_blank"
  11848.          class="productitem--image-link"
  11849.          href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11850.          aria-label="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11851.          tabindex="-1"
  11852.          data-product-page-link
  11853.        >
  11854.          <figure
  11855.            class="productitem--image"
  11856.            data-product-item-image
  11857.            
  11858.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11859.            
  11860.          >
  11861.            
  11862.              
  11863.              
  11864.  
  11865.  
  11866.    <noscript data-rimg-noscript>
  11867.      <img loading="lazy"
  11868.        
  11869.          src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  11870.        
  11871.  
  11872.        alt=""
  11873.        data-rimg="noscript"
  11874.        srcset="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253 1x, //laptopparts.ca/cdn/shop/products/500gb_998x998.jpg?v=1697125253 1.95x"
  11875.        class="productitem--image-primary"
  11876.        
  11877.        
  11878.      >
  11879.    </noscript>
  11880.  
  11881.  
  11882.  <img loading="lazy"
  11883.    
  11884.      src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  11885.    
  11886.    alt=""
  11887.  
  11888.    
  11889.      data-rimg="lazy"
  11890.      data-rimg-scale="1"
  11891.      data-rimg-template="//laptopparts.ca/cdn/shop/products/500gb_{size}.jpg?v=1697125253"
  11892.      data-rimg-max="1000x1000"
  11893.      data-rimg-crop="false"
  11894.      
  11895.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  11896.    
  11897.  
  11898.    class="productitem--image-primary"
  11899.    
  11900.    
  11901.  >
  11902.  
  11903.  
  11904.  
  11905.  <div data-rimg-canvas></div>
  11906.  
  11907.  
  11908.            
  11909.  
  11910.            
  11911.  
  11912.  
  11913.  
  11914.  
  11915.  
  11916.  
  11917.  
  11918.  
  11919.  
  11920.  
  11921.  
  11922.  
  11923.  
  11924.  
  11925.  
  11926.  
  11927.  
  11928.  
  11929.  
  11930.  
  11931.  
  11932.  
  11933.  
  11934.  
  11935.  
  11936.  
  11937.  
  11938.          </figure>
  11939.        </a>
  11940.      </div><div class="productitem--info">
  11941.        
  11942.          
  11943.  
  11944.        
  11945.  
  11946.        
  11947.          
  11948.  
  11949.  
  11950.  
  11951.  
  11952.  
  11953.  
  11954.  
  11955.  
  11956.  
  11957.  
  11958.  
  11959.  
  11960.  
  11961.  
  11962.  
  11963.  
  11964.  
  11965.  
  11966.  
  11967.  
  11968.  
  11969.  
  11970.  
  11971.  
  11972.  
  11973.  
  11974.  
  11975.  
  11976.  
  11977.  
  11978. <div class="price productitem__price ">
  11979.  
  11980.    <div
  11981.      class="price__compare-at visible"
  11982.      data-price-compare-container
  11983.    >
  11984.  
  11985.      
  11986.        <span class="money price__original" data-price-original></span>
  11987.      
  11988.    </div>
  11989.  
  11990.  
  11991.    
  11992.      
  11993.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11994.        
  11995.          <span class="visually-hidden">Original price</span>
  11996.          <span class="money price__compare-at--min" data-price-compare-min>
  11997.            $62.99
  11998.          </span>
  11999.          -
  12000.          <span class="visually-hidden">Original price</span>
  12001.          <span class="money price__compare-at--max" data-price-compare-max>
  12002.            $62.99
  12003.          </span>
  12004.        
  12005.      </div>
  12006.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12007.        <span class="visually-hidden">Original price</span>
  12008.        <span class="money price__compare-at--single" data-price-compare>
  12009.          
  12010.        </span>
  12011.      </div>
  12012.    
  12013.  
  12014.  
  12015.  <div class="price__current price__current--emphasize " data-price-container>
  12016.  
  12017.    
  12018.  
  12019.    
  12020.      
  12021.      
  12022.      <span class="money" data-price>
  12023.        $62.99
  12024.      </span>
  12025.    
  12026.    
  12027.  </div>
  12028.  
  12029.  
  12030.    
  12031.    <div class="price__current--hidden" data-current-price-range-hidden>
  12032.      
  12033.        <span class="money price__current--min" data-price-min>$62.99</span>
  12034.        -
  12035.        <span class="money price__current--max" data-price-max>$62.99</span>
  12036.      
  12037.    </div>
  12038.    <div class="price__current--hidden" data-current-price-hidden>
  12039.      <span class="visually-hidden">Current price</span>
  12040.      <span class="money" data-price>
  12041.        $62.99
  12042.      </span>
  12043.    </div>
  12044.  
  12045.  
  12046.  
  12047.    
  12048.    
  12049.    
  12050.    
  12051.  
  12052.    <div
  12053.      class="
  12054.        productitem__unit-price
  12055.        hidden
  12056.      "
  12057.      data-unit-price
  12058.    >
  12059.      <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>
  12060.    </div>
  12061.  
  12062.  
  12063.  
  12064. </div>
  12065.  
  12066.  
  12067.        
  12068.  
  12069.        <h2 class="productitem--title">
  12070.          <a href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo" data-product-page-link>
  12071.            500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo
  12072.          </a>
  12073.        </h2>
  12074.  
  12075.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12076.        <div class="star_container 1362179063831"></div>
  12077.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12078.  
  12079.        
  12080.          
  12081.            <span class="productitem--vendor">
  12082.              <a href="/collections/vendors?q=Lenovo" title="Lenovo">Lenovo</a>
  12083.            </span>
  12084.          
  12085.        
  12086.  
  12087.        
  12088.  
  12089.        
  12090.          
  12091.            <div class="productitem__stock-level">
  12092.              <!--
  12093.  
  12094.  
  12095.  
  12096.  
  12097.  
  12098.  
  12099.  
  12100. <div class="product-stock-level-wrapper" >
  12101.  
  12102.    <span class="
  12103.  product-stock-level
  12104.  product-stock-level--continue-selling
  12105.  
  12106. ">
  12107.      
  12108.  
  12109.      <span class="product-stock-level__text">
  12110.        
  12111.        <div class="product-stock-level__badge-text">
  12112.          
  12113.  
  12114.    In stock
  12115.  
  12116.  
  12117.        </div>
  12118.      </span>
  12119.    </span>
  12120.  
  12121. </div>
  12122. -->
  12123.              
  12124.  
  12125.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12126.  
  12127.  
  12128.  
  12129.  
  12130.  
  12131.  
  12132.  
  12133.            </div>
  12134.          
  12135.  
  12136.          
  12137.            
  12138.          
  12139.        
  12140.  
  12141.        
  12142.          <div class="productitem--description">
  12143.            <p>500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo</p>
  12144.  
  12145.            
  12146.          </div>
  12147.        
  12148.      </div>
  12149.  
  12150.      
  12151.        
  12152.          
  12153.          
  12154.          
  12155.  
  12156.          
  12157.          
  12158.  
  12159.          
  12160.  
  12161.          
  12162.  
  12163.          <div class="productitem--actions" data-product-actions>
  12164.            <div class="productitem--listview-price">
  12165.              
  12166.  
  12167.  
  12168.  
  12169.  
  12170.  
  12171.  
  12172.  
  12173.  
  12174.  
  12175.  
  12176.  
  12177.  
  12178.  
  12179.  
  12180.  
  12181.  
  12182.  
  12183.  
  12184.  
  12185.  
  12186.  
  12187.  
  12188.  
  12189.  
  12190.  
  12191.  
  12192.  
  12193.  
  12194.  
  12195.  
  12196. <div class="price productitem__price ">
  12197.  
  12198.    <div
  12199.      class="price__compare-at visible"
  12200.      data-price-compare-container
  12201.    >
  12202.  
  12203.      
  12204.        <span class="money price__original" data-price-original></span>
  12205.      
  12206.    </div>
  12207.  
  12208.  
  12209.    
  12210.      
  12211.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12212.        
  12213.          <span class="visually-hidden">Original price</span>
  12214.          <span class="money price__compare-at--min" data-price-compare-min>
  12215.            $62.99
  12216.          </span>
  12217.          -
  12218.          <span class="visually-hidden">Original price</span>
  12219.          <span class="money price__compare-at--max" data-price-compare-max>
  12220.            $62.99
  12221.          </span>
  12222.        
  12223.      </div>
  12224.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12225.        <span class="visually-hidden">Original price</span>
  12226.        <span class="money price__compare-at--single" data-price-compare>
  12227.          
  12228.        </span>
  12229.      </div>
  12230.    
  12231.  
  12232.  
  12233.  <div class="price__current price__current--emphasize " data-price-container>
  12234.  
  12235.    
  12236.  
  12237.    
  12238.      
  12239.      
  12240.      <span class="money" data-price>
  12241.        $62.99
  12242.      </span>
  12243.    
  12244.    
  12245.  </div>
  12246.  
  12247.  
  12248.    
  12249.    <div class="price__current--hidden" data-current-price-range-hidden>
  12250.      
  12251.        <span class="money price__current--min" data-price-min>$62.99</span>
  12252.        -
  12253.        <span class="money price__current--max" data-price-max>$62.99</span>
  12254.      
  12255.    </div>
  12256.    <div class="price__current--hidden" data-current-price-hidden>
  12257.      <span class="visually-hidden">Current price</span>
  12258.      <span class="money" data-price>
  12259.        $62.99
  12260.      </span>
  12261.    </div>
  12262.  
  12263.  
  12264.  
  12265.    
  12266.    
  12267.    
  12268.    
  12269.  
  12270.    <div
  12271.      class="
  12272.        productitem__unit-price
  12273.        hidden
  12274.      "
  12275.      data-unit-price
  12276.    >
  12277.      <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>
  12278.    </div>
  12279.  
  12280.  
  12281.  
  12282. </div>
  12283.  
  12284.  
  12285.            </div>
  12286.  
  12287.            <div class="productitem--listview-badge">
  12288.              
  12289.  
  12290.  
  12291.  
  12292.  
  12293.  
  12294.  
  12295.  
  12296.  
  12297.  
  12298.  
  12299.  
  12300.  
  12301.  
  12302.  
  12303.  
  12304.  
  12305.  
  12306.  
  12307.  
  12308.  
  12309.  
  12310.  
  12311.  
  12312.  
  12313.  
  12314.  
  12315.  
  12316.            </div>
  12317.  
  12318.            
  12319.              <div
  12320.                class="
  12321.                  productitem--action
  12322.                  quickshop-button
  12323.                  
  12324.                "
  12325.              >
  12326.                <button
  12327.                  class="productitem--action-trigger button-secondary"
  12328.                  data-quickshop-full
  12329.                  
  12330.                  
  12331.                  type="button"
  12332.                >
  12333.                  Quick shop
  12334.                </button>
  12335.              </div>
  12336.            
  12337.  
  12338.            
  12339.              <div
  12340.                class="
  12341.                  productitem--action
  12342.                  atc--button
  12343.                  
  12344.                "
  12345.              >
  12346.                <button
  12347.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12348.                  type="button"
  12349.                  aria-label="Add to cart"
  12350.                  
  12351.                    data-quick-buy
  12352.                  
  12353.                  data-variant-id="12366737309719"
  12354.                  
  12355.                >
  12356.                  <span class="atc-button--text">
  12357.                    Add to cart
  12358.                  </span>
  12359.                  <span class="atc-button--icon"><svg
  12360.  aria-hidden="true"
  12361.  focusable="false"
  12362.  role="presentation"
  12363.  width="26"
  12364.  height="26"
  12365.  viewBox="0 0 26 26"
  12366.  xmlns="http://www.w3.org/2000/svg"
  12367. >
  12368.  <g fill-rule="nonzero" fill="currentColor">
  12369.    <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"/>
  12370.  </g>
  12371. </svg></span>
  12372.                </button>
  12373.              </div>
  12374.            
  12375.          </div>
  12376.        
  12377.      
  12378.    </div>
  12379.  </div>
  12380.  
  12381.  
  12382.    <script type="application/json" data-quick-buy-settings>
  12383.      {
  12384.        "cart_redirection": true,
  12385.        "money_format": "${{amount}}"
  12386.      }
  12387.    </script>
  12388.  
  12389. </li>
  12390.    
  12391.      
  12392.  
  12393.  
  12394.  
  12395.  
  12396.  
  12397.  
  12398.  
  12399.  
  12400.  
  12401.  
  12402.  
  12403.  
  12404.  
  12405.  
  12406.  
  12407.  
  12408.  
  12409.  
  12410.  
  12411.  
  12412.  
  12413.  
  12414.  
  12415.  
  12416.  
  12417.  
  12418.  
  12419.  
  12420.  
  12421.  
  12422.  
  12423.  
  12424.    
  12425.  
  12426.  
  12427.  
  12428. <li
  12429.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  12430.  data-product-item
  12431.  data-product-quickshop-url="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12432.  
  12433. >
  12434.  <div class="productitem" data-product-item-content>
  12435.    
  12436.    
  12437.    
  12438.    
  12439.  
  12440.    
  12441.  
  12442.    
  12443.  
  12444.    <div class="productitem__container">
  12445.      
  12446.  
  12447.      <div class="productitem__image-container">
  12448.        <a target="_blank"
  12449.          class="productitem--image-link"
  12450.          href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12451.          aria-label="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12452.          tabindex="-1"
  12453.          data-product-page-link
  12454.        >
  12455.          <figure
  12456.            class="productitem--image"
  12457.            data-product-item-image
  12458.            
  12459.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  12460.            
  12461.          >
  12462.            
  12463.              
  12464.              
  12465.  
  12466.  
  12467.    <noscript data-rimg-noscript>
  12468.      <img loading="lazy"
  12469.        
  12470.          src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12471.        
  12472.  
  12473.        alt=""
  12474.        data-rimg="noscript"
  12475.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700 1x"
  12476.        class="productitem--image-primary"
  12477.        
  12478.        
  12479.      >
  12480.    </noscript>
  12481.  
  12482.  
  12483.  <img loading="lazy"
  12484.    
  12485.      src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12486.    
  12487.    alt=""
  12488.  
  12489.    
  12490.      data-rimg="lazy"
  12491.      data-rimg-scale="1"
  12492.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_{size}.jpg?v=1648042700"
  12493.      data-rimg-max="500x500"
  12494.      data-rimg-crop="false"
  12495.      
  12496.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  12497.    
  12498.  
  12499.    class="productitem--image-primary"
  12500.    
  12501.    
  12502.  >
  12503.  
  12504.  
  12505.  
  12506.  <div data-rimg-canvas></div>
  12507.  
  12508.  
  12509.            
  12510.  
  12511.            
  12512.  
  12513.  
  12514.  
  12515.  
  12516.  
  12517.  
  12518.  
  12519.  
  12520.  
  12521.  
  12522.  
  12523.  
  12524.  
  12525.  
  12526.  
  12527.  
  12528.  
  12529.  
  12530.  
  12531.  
  12532.  
  12533.  
  12534.  
  12535.  
  12536.  
  12537.  
  12538.  
  12539.          </figure>
  12540.        </a>
  12541.      </div><div class="productitem--info">
  12542.        
  12543.          
  12544.  
  12545.        
  12546.  
  12547.        
  12548.          
  12549.  
  12550.  
  12551.  
  12552.  
  12553.  
  12554.  
  12555.  
  12556.  
  12557.  
  12558.  
  12559.  
  12560.  
  12561.  
  12562.  
  12563.  
  12564.  
  12565.  
  12566.  
  12567.  
  12568.  
  12569.  
  12570.  
  12571.  
  12572.  
  12573.  
  12574.  
  12575.  
  12576.  
  12577.  
  12578.  
  12579. <div class="price productitem__price ">
  12580.  
  12581.    <div
  12582.      class="price__compare-at visible"
  12583.      data-price-compare-container
  12584.    >
  12585.  
  12586.      
  12587.        <span class="money price__original" data-price-original></span>
  12588.      
  12589.    </div>
  12590.  
  12591.  
  12592.    
  12593.      
  12594.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12595.        
  12596.          <span class="visually-hidden">Original price</span>
  12597.          <span class="money price__compare-at--min" data-price-compare-min>
  12598.            $54.99
  12599.          </span>
  12600.          -
  12601.          <span class="visually-hidden">Original price</span>
  12602.          <span class="money price__compare-at--max" data-price-compare-max>
  12603.            $54.99
  12604.          </span>
  12605.        
  12606.      </div>
  12607.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12608.        <span class="visually-hidden">Original price</span>
  12609.        <span class="money price__compare-at--single" data-price-compare>
  12610.          
  12611.        </span>
  12612.      </div>
  12613.    
  12614.  
  12615.  
  12616.  <div class="price__current price__current--emphasize " data-price-container>
  12617.  
  12618.    
  12619.  
  12620.    
  12621.      
  12622.      
  12623.      <span class="money" data-price>
  12624.        $54.99
  12625.      </span>
  12626.    
  12627.    
  12628.  </div>
  12629.  
  12630.  
  12631.    
  12632.    <div class="price__current--hidden" data-current-price-range-hidden>
  12633.      
  12634.        <span class="money price__current--min" data-price-min>$54.99</span>
  12635.        -
  12636.        <span class="money price__current--max" data-price-max>$54.99</span>
  12637.      
  12638.    </div>
  12639.    <div class="price__current--hidden" data-current-price-hidden>
  12640.      <span class="visually-hidden">Current price</span>
  12641.      <span class="money" data-price>
  12642.        $54.99
  12643.      </span>
  12644.    </div>
  12645.  
  12646.  
  12647.  
  12648.    
  12649.    
  12650.    
  12651.    
  12652.  
  12653.    <div
  12654.      class="
  12655.        productitem__unit-price
  12656.        hidden
  12657.      "
  12658.      data-unit-price
  12659.    >
  12660.      <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>
  12661.    </div>
  12662.  
  12663.  
  12664.  
  12665. </div>
  12666.  
  12667.  
  12668.        
  12669.  
  12670.        <h2 class="productitem--title">
  12671.          <a href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10" data-product-page-link>
  12672.            4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10
  12673.          </a>
  12674.        </h2>
  12675.  
  12676.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12677.        <div class="star_container 3929813123159"></div>
  12678.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12679.  
  12680.        
  12681.          
  12682.            <span class="productitem--vendor">
  12683.              <a href="/collections/vendors?q=Dell" title="Dell">Dell</a>
  12684.            </span>
  12685.          
  12686.        
  12687.  
  12688.        
  12689.  
  12690.        
  12691.          
  12692.            <div class="productitem__stock-level">
  12693.              <!--
  12694.  
  12695.  
  12696.  
  12697.  
  12698.  
  12699.  
  12700.  
  12701. <div class="product-stock-level-wrapper" >
  12702.  
  12703.    <span class="
  12704.  product-stock-level
  12705.  product-stock-level--continue-selling
  12706.  
  12707. ">
  12708.      
  12709.  
  12710.      <span class="product-stock-level__text">
  12711.        
  12712.        <div class="product-stock-level__badge-text">
  12713.          
  12714.  
  12715.    In stock
  12716.  
  12717.  
  12718.        </div>
  12719.      </span>
  12720.    </span>
  12721.  
  12722. </div>
  12723. -->
  12724.              
  12725.  
  12726.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12727.  
  12728.  
  12729.  
  12730.  
  12731.  
  12732.  
  12733.  
  12734.            </div>
  12735.          
  12736.  
  12737.          
  12738.            
  12739.          
  12740.        
  12741.  
  12742.        
  12743.          <div class="productitem--description">
  12744.            <p>
  12745. 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>
  12746.  
  12747.            
  12748.              <a
  12749.                href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12750.                class="productitem--link"
  12751.                data-product-page-link
  12752.              >
  12753.                View full details
  12754.              </a>
  12755.            
  12756.          </div>
  12757.        
  12758.      </div>
  12759.  
  12760.      
  12761.        
  12762.          
  12763.          
  12764.          
  12765.  
  12766.          
  12767.          
  12768.  
  12769.          
  12770.  
  12771.          
  12772.  
  12773.          <div class="productitem--actions" data-product-actions>
  12774.            <div class="productitem--listview-price">
  12775.              
  12776.  
  12777.  
  12778.  
  12779.  
  12780.  
  12781.  
  12782.  
  12783.  
  12784.  
  12785.  
  12786.  
  12787.  
  12788.  
  12789.  
  12790.  
  12791.  
  12792.  
  12793.  
  12794.  
  12795.  
  12796.  
  12797.  
  12798.  
  12799.  
  12800.  
  12801.  
  12802.  
  12803.  
  12804.  
  12805.  
  12806. <div class="price productitem__price ">
  12807.  
  12808.    <div
  12809.      class="price__compare-at visible"
  12810.      data-price-compare-container
  12811.    >
  12812.  
  12813.      
  12814.        <span class="money price__original" data-price-original></span>
  12815.      
  12816.    </div>
  12817.  
  12818.  
  12819.    
  12820.      
  12821.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12822.        
  12823.          <span class="visually-hidden">Original price</span>
  12824.          <span class="money price__compare-at--min" data-price-compare-min>
  12825.            $54.99
  12826.          </span>
  12827.          -
  12828.          <span class="visually-hidden">Original price</span>
  12829.          <span class="money price__compare-at--max" data-price-compare-max>
  12830.            $54.99
  12831.          </span>
  12832.        
  12833.      </div>
  12834.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12835.        <span class="visually-hidden">Original price</span>
  12836.        <span class="money price__compare-at--single" data-price-compare>
  12837.          
  12838.        </span>
  12839.      </div>
  12840.    
  12841.  
  12842.  
  12843.  <div class="price__current price__current--emphasize " data-price-container>
  12844.  
  12845.    
  12846.  
  12847.    
  12848.      
  12849.      
  12850.      <span class="money" data-price>
  12851.        $54.99
  12852.      </span>
  12853.    
  12854.    
  12855.  </div>
  12856.  
  12857.  
  12858.    
  12859.    <div class="price__current--hidden" data-current-price-range-hidden>
  12860.      
  12861.        <span class="money price__current--min" data-price-min>$54.99</span>
  12862.        -
  12863.        <span class="money price__current--max" data-price-max>$54.99</span>
  12864.      
  12865.    </div>
  12866.    <div class="price__current--hidden" data-current-price-hidden>
  12867.      <span class="visually-hidden">Current price</span>
  12868.      <span class="money" data-price>
  12869.        $54.99
  12870.      </span>
  12871.    </div>
  12872.  
  12873.  
  12874.  
  12875.    
  12876.    
  12877.    
  12878.    
  12879.  
  12880.    <div
  12881.      class="
  12882.        productitem__unit-price
  12883.        hidden
  12884.      "
  12885.      data-unit-price
  12886.    >
  12887.      <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>
  12888.    </div>
  12889.  
  12890.  
  12891.  
  12892. </div>
  12893.  
  12894.  
  12895.            </div>
  12896.  
  12897.            <div class="productitem--listview-badge">
  12898.              
  12899.  
  12900.  
  12901.  
  12902.  
  12903.  
  12904.  
  12905.  
  12906.  
  12907.  
  12908.  
  12909.  
  12910.  
  12911.  
  12912.  
  12913.  
  12914.  
  12915.  
  12916.  
  12917.  
  12918.  
  12919.  
  12920.  
  12921.  
  12922.  
  12923.  
  12924.  
  12925.  
  12926.            </div>
  12927.  
  12928.            
  12929.              <div
  12930.                class="
  12931.                  productitem--action
  12932.                  quickshop-button
  12933.                  
  12934.                "
  12935.              >
  12936.                <button
  12937.                  class="productitem--action-trigger button-secondary"
  12938.                  data-quickshop-full
  12939.                  
  12940.                  
  12941.                  type="button"
  12942.                >
  12943.                  Quick shop
  12944.                </button>
  12945.              </div>
  12946.            
  12947.  
  12948.            
  12949.              <div
  12950.                class="
  12951.                  productitem--action
  12952.                  atc--button
  12953.                  
  12954.                "
  12955.              >
  12956.                <button
  12957.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12958.                  type="button"
  12959.                  aria-label="Add to cart"
  12960.                  
  12961.                    data-quick-buy
  12962.                  
  12963.                  data-variant-id="29531497529431"
  12964.                  
  12965.                >
  12966.                  <span class="atc-button--text">
  12967.                    Add to cart
  12968.                  </span>
  12969.                  <span class="atc-button--icon"><svg
  12970.  aria-hidden="true"
  12971.  focusable="false"
  12972.  role="presentation"
  12973.  width="26"
  12974.  height="26"
  12975.  viewBox="0 0 26 26"
  12976.  xmlns="http://www.w3.org/2000/svg"
  12977. >
  12978.  <g fill-rule="nonzero" fill="currentColor">
  12979.    <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"/>
  12980.  </g>
  12981. </svg></span>
  12982.                </button>
  12983.              </div>
  12984.            
  12985.          </div>
  12986.        
  12987.      
  12988.    </div>
  12989.  </div>
  12990.  
  12991.  
  12992.    <script type="application/json" data-quick-buy-settings>
  12993.      {
  12994.        "cart_redirection": true,
  12995.        "money_format": "${{amount}}"
  12996.      }
  12997.    </script>
  12998.  
  12999. </li>
  13000.    
  13001.      
  13002.  
  13003.  
  13004.  
  13005.  
  13006.  
  13007.  
  13008.  
  13009.  
  13010.  
  13011.  
  13012.  
  13013.  
  13014.  
  13015.  
  13016.  
  13017.  
  13018.  
  13019.  
  13020.  
  13021.  
  13022.  
  13023.  
  13024.  
  13025.  
  13026.  
  13027.  
  13028.  
  13029.  
  13030.  
  13031.  
  13032.  
  13033.  
  13034.    
  13035.  
  13036.  
  13037.  
  13038. <li
  13039.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13040.  data-product-item
  13041.  data-product-quickshop-url="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13042.  
  13043. >
  13044.  <div class="productitem" data-product-item-content>
  13045.    
  13046.    
  13047.    
  13048.    
  13049.  
  13050.    
  13051.  
  13052.    
  13053.  
  13054.    <div class="productitem__container">
  13055.      
  13056.  
  13057.      <div class="productitem__image-container">
  13058.        <a target="_blank"
  13059.          class="productitem--image-link"
  13060.          href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13061.          aria-label="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13062.          tabindex="-1"
  13063.          data-product-page-link
  13064.        >
  13065.          <figure
  13066.            class="productitem--image"
  13067.            data-product-item-image
  13068.            
  13069.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13070.            
  13071.          >
  13072.            
  13073.              
  13074.              
  13075.  
  13076.  
  13077.    <noscript data-rimg-noscript>
  13078.      <img loading="lazy"
  13079.        
  13080.          src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13081.        
  13082.  
  13083.        alt="925740-002"
  13084.        data-rimg="noscript"
  13085.        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"
  13086.        class="productitem--image-primary"
  13087.        
  13088.        
  13089.      >
  13090.    </noscript>
  13091.  
  13092.  
  13093.  <img loading="lazy"
  13094.    
  13095.      src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13096.    
  13097.    alt="925740-002"
  13098.  
  13099.    
  13100.      data-rimg="lazy"
  13101.      data-rimg-scale="1"
  13102.      data-rimg-template="//laptopparts.ca/cdn/shop/files/tpn-ca06_{size}.jpg?v=1721171198"
  13103.      data-rimg-max="1043x1043"
  13104.      data-rimg-crop="false"
  13105.      
  13106.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  13107.    
  13108.  
  13109.    class="productitem--image-primary"
  13110.    
  13111.    
  13112.  >
  13113.  
  13114.  
  13115.  
  13116.  <div data-rimg-canvas></div>
  13117.  
  13118.  
  13119.            
  13120.  
  13121.            
  13122.  
  13123.  
  13124.  
  13125.  
  13126.  
  13127.  
  13128.  
  13129.  
  13130.  
  13131.  
  13132.  
  13133.  
  13134.  
  13135.  
  13136.  
  13137.  
  13138.  
  13139.  
  13140.  
  13141.  
  13142.  
  13143.  
  13144.  
  13145.  
  13146.  
  13147.  
  13148.  
  13149.          </figure>
  13150.        </a>
  13151.      </div><div class="productitem--info">
  13152.        
  13153.          
  13154.  
  13155.        
  13156.  
  13157.        
  13158.          
  13159.  
  13160.  
  13161.  
  13162.  
  13163.  
  13164.  
  13165.  
  13166.  
  13167.  
  13168.  
  13169.  
  13170.  
  13171.  
  13172.  
  13173.  
  13174.  
  13175.  
  13176.  
  13177.  
  13178.  
  13179.  
  13180.  
  13181.  
  13182.  
  13183.  
  13184.  
  13185.  
  13186.  
  13187.  
  13188.  
  13189. <div class="price productitem__price ">
  13190.  
  13191.    <div
  13192.      class="price__compare-at visible"
  13193.      data-price-compare-container
  13194.    >
  13195.  
  13196.      
  13197.        <span class="money price__original" data-price-original></span>
  13198.      
  13199.    </div>
  13200.  
  13201.  
  13202.    
  13203.      
  13204.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13205.        
  13206.          <span class="visually-hidden">Original price</span>
  13207.          <span class="money price__compare-at--min" data-price-compare-min>
  13208.            $65.98
  13209.          </span>
  13210.          -
  13211.          <span class="visually-hidden">Original price</span>
  13212.          <span class="money price__compare-at--max" data-price-compare-max>
  13213.            $65.98
  13214.          </span>
  13215.        
  13216.      </div>
  13217.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13218.        <span class="visually-hidden">Original price</span>
  13219.        <span class="money price__compare-at--single" data-price-compare>
  13220.          
  13221.        </span>
  13222.      </div>
  13223.    
  13224.  
  13225.  
  13226.  <div class="price__current price__current--emphasize " data-price-container>
  13227.  
  13228.    
  13229.  
  13230.    
  13231.      
  13232.      
  13233.      <span class="money" data-price>
  13234.        $65.98
  13235.      </span>
  13236.    
  13237.    
  13238.  </div>
  13239.  
  13240.  
  13241.    
  13242.    <div class="price__current--hidden" data-current-price-range-hidden>
  13243.      
  13244.        <span class="money price__current--min" data-price-min>$65.98</span>
  13245.        -
  13246.        <span class="money price__current--max" data-price-max>$65.98</span>
  13247.      
  13248.    </div>
  13249.    <div class="price__current--hidden" data-current-price-hidden>
  13250.      <span class="visually-hidden">Current price</span>
  13251.      <span class="money" data-price>
  13252.        $65.98
  13253.      </span>
  13254.    </div>
  13255.  
  13256.  
  13257.  
  13258.    
  13259.    
  13260.    
  13261.    
  13262.  
  13263.    <div
  13264.      class="
  13265.        productitem__unit-price
  13266.        hidden
  13267.      "
  13268.      data-unit-price
  13269.    >
  13270.      <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>
  13271.    </div>
  13272.  
  13273.  
  13274.  
  13275. </div>
  13276.  
  13277.  
  13278.        
  13279.  
  13280.        <h2 class="productitem--title">
  13281.          <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>
  13282.            925740-002 Genuine 65W USB Type-C Adapter Charger for HP Elite X2 1012 G2 Elitebook x360
  13283.          </a>
  13284.        </h2>
  13285.  
  13286.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13287.        <div class="star_container 6881873985623"></div>
  13288.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13289.  
  13290.        
  13291.          
  13292.            <span class="productitem--vendor">
  13293.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  13294.            </span>
  13295.          
  13296.        
  13297.  
  13298.        
  13299.  
  13300.        
  13301.          
  13302.            <div class="productitem__stock-level">
  13303.              <!--
  13304.  
  13305.  
  13306.  
  13307.  
  13308.  
  13309.  
  13310.  
  13311. <div class="product-stock-level-wrapper" >
  13312.  
  13313.    <span class="
  13314.  product-stock-level
  13315.  product-stock-level--continue-selling
  13316.  
  13317. ">
  13318.      
  13319.  
  13320.      <span class="product-stock-level__text">
  13321.        
  13322.        <div class="product-stock-level__badge-text">
  13323.          
  13324.  
  13325.    In stock
  13326.  
  13327.  
  13328.        </div>
  13329.      </span>
  13330.    </span>
  13331.  
  13332. </div>
  13333. -->
  13334.              
  13335.  
  13336.  
  13337.    
  13338.      <b style="color:green">In stock</b>
  13339.    
  13340.  
  13341.  
  13342.  
  13343.  
  13344.  
  13345.  
  13346.  
  13347.            </div>
  13348.          
  13349.  
  13350.          
  13351.            
  13352.          
  13353.        
  13354.  
  13355.        
  13356.          <div class="productitem--description">
  13357.            <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>
  13358.  
  13359.            
  13360.              <a
  13361.                href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13362.                class="productitem--link"
  13363.                data-product-page-link
  13364.              >
  13365.                View full details
  13366.              </a>
  13367.            
  13368.          </div>
  13369.        
  13370.      </div>
  13371.  
  13372.      
  13373.        
  13374.          
  13375.          
  13376.          
  13377.  
  13378.          
  13379.          
  13380.  
  13381.          
  13382.  
  13383.          
  13384.  
  13385.          <div class="productitem--actions" data-product-actions>
  13386.            <div class="productitem--listview-price">
  13387.              
  13388.  
  13389.  
  13390.  
  13391.  
  13392.  
  13393.  
  13394.  
  13395.  
  13396.  
  13397.  
  13398.  
  13399.  
  13400.  
  13401.  
  13402.  
  13403.  
  13404.  
  13405.  
  13406.  
  13407.  
  13408.  
  13409.  
  13410.  
  13411.  
  13412.  
  13413.  
  13414.  
  13415.  
  13416.  
  13417.  
  13418. <div class="price productitem__price ">
  13419.  
  13420.    <div
  13421.      class="price__compare-at visible"
  13422.      data-price-compare-container
  13423.    >
  13424.  
  13425.      
  13426.        <span class="money price__original" data-price-original></span>
  13427.      
  13428.    </div>
  13429.  
  13430.  
  13431.    
  13432.      
  13433.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13434.        
  13435.          <span class="visually-hidden">Original price</span>
  13436.          <span class="money price__compare-at--min" data-price-compare-min>
  13437.            $65.98
  13438.          </span>
  13439.          -
  13440.          <span class="visually-hidden">Original price</span>
  13441.          <span class="money price__compare-at--max" data-price-compare-max>
  13442.            $65.98
  13443.          </span>
  13444.        
  13445.      </div>
  13446.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13447.        <span class="visually-hidden">Original price</span>
  13448.        <span class="money price__compare-at--single" data-price-compare>
  13449.          
  13450.        </span>
  13451.      </div>
  13452.    
  13453.  
  13454.  
  13455.  <div class="price__current price__current--emphasize " data-price-container>
  13456.  
  13457.    
  13458.  
  13459.    
  13460.      
  13461.      
  13462.      <span class="money" data-price>
  13463.        $65.98
  13464.      </span>
  13465.    
  13466.    
  13467.  </div>
  13468.  
  13469.  
  13470.    
  13471.    <div class="price__current--hidden" data-current-price-range-hidden>
  13472.      
  13473.        <span class="money price__current--min" data-price-min>$65.98</span>
  13474.        -
  13475.        <span class="money price__current--max" data-price-max>$65.98</span>
  13476.      
  13477.    </div>
  13478.    <div class="price__current--hidden" data-current-price-hidden>
  13479.      <span class="visually-hidden">Current price</span>
  13480.      <span class="money" data-price>
  13481.        $65.98
  13482.      </span>
  13483.    </div>
  13484.  
  13485.  
  13486.  
  13487.    
  13488.    
  13489.    
  13490.    
  13491.  
  13492.    <div
  13493.      class="
  13494.        productitem__unit-price
  13495.        hidden
  13496.      "
  13497.      data-unit-price
  13498.    >
  13499.      <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>
  13500.    </div>
  13501.  
  13502.  
  13503.  
  13504. </div>
  13505.  
  13506.  
  13507.            </div>
  13508.  
  13509.            <div class="productitem--listview-badge">
  13510.              
  13511.  
  13512.  
  13513.  
  13514.  
  13515.  
  13516.  
  13517.  
  13518.  
  13519.  
  13520.  
  13521.  
  13522.  
  13523.  
  13524.  
  13525.  
  13526.  
  13527.  
  13528.  
  13529.  
  13530.  
  13531.  
  13532.  
  13533.  
  13534.  
  13535.  
  13536.  
  13537.  
  13538.            </div>
  13539.  
  13540.            
  13541.              <div
  13542.                class="
  13543.                  productitem--action
  13544.                  quickshop-button
  13545.                  
  13546.                "
  13547.              >
  13548.                <button
  13549.                  class="productitem--action-trigger button-secondary"
  13550.                  data-quickshop-full
  13551.                  
  13552.                  
  13553.                  type="button"
  13554.                >
  13555.                  Quick shop
  13556.                </button>
  13557.              </div>
  13558.            
  13559.  
  13560.            
  13561.              <div
  13562.                class="
  13563.                  productitem--action
  13564.                  atc--button
  13565.                  
  13566.                "
  13567.              >
  13568.                <button
  13569.                  class="productitem--action-trigger productitem--action-atc button-primary"
  13570.                  type="button"
  13571.                  aria-label="Add to cart"
  13572.                  
  13573.                    data-quick-buy
  13574.                  
  13575.                  data-variant-id="40183331749975"
  13576.                  
  13577.                >
  13578.                  <span class="atc-button--text">
  13579.                    Add to cart
  13580.                  </span>
  13581.                  <span class="atc-button--icon"><svg
  13582.  aria-hidden="true"
  13583.  focusable="false"
  13584.  role="presentation"
  13585.  width="26"
  13586.  height="26"
  13587.  viewBox="0 0 26 26"
  13588.  xmlns="http://www.w3.org/2000/svg"
  13589. >
  13590.  <g fill-rule="nonzero" fill="currentColor">
  13591.    <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"/>
  13592.  </g>
  13593. </svg></span>
  13594.                </button>
  13595.              </div>
  13596.            
  13597.          </div>
  13598.        
  13599.      
  13600.    </div>
  13601.  </div>
  13602.  
  13603.  
  13604.    <script type="application/json" data-quick-buy-settings>
  13605.      {
  13606.        "cart_redirection": true,
  13607.        "money_format": "${{amount}}"
  13608.      }
  13609.    </script>
  13610.  
  13611. </li>
  13612.    
  13613.      
  13614.  
  13615.  
  13616.  
  13617.  
  13618.  
  13619.  
  13620.  
  13621.  
  13622.  
  13623.  
  13624.  
  13625.  
  13626.  
  13627.  
  13628.  
  13629.  
  13630.  
  13631.  
  13632.  
  13633.  
  13634.  
  13635.  
  13636.  
  13637.  
  13638.  
  13639.  
  13640.  
  13641.  
  13642.  
  13643.  
  13644.  
  13645.  
  13646.    
  13647.  
  13648.  
  13649.  
  13650. <li
  13651.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13652.  data-product-item
  13653.  data-product-quickshop-url="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13654.  
  13655. >
  13656.  <div class="productitem" data-product-item-content>
  13657.    
  13658.    
  13659.    
  13660.    
  13661.  
  13662.    
  13663.  
  13664.    
  13665.  
  13666.    <div class="productitem__container">
  13667.      
  13668.  
  13669.      <div class="productitem__image-container">
  13670.        <a target="_blank"
  13671.          class="productitem--image-link"
  13672.          href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13673.          aria-label="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13674.          tabindex="-1"
  13675.          data-product-page-link
  13676.        >
  13677.          <figure
  13678.            class="productitem--image"
  13679.            data-product-item-image
  13680.            
  13681.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13682.            
  13683.          >
  13684.            
  13685.              
  13686.              
  13687.  
  13688.  
  13689.    <noscript data-rimg-noscript>
  13690.      <img loading="lazy"
  13691.        
  13692.          src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  13693.        
  13694.  
  13695.        alt=""
  13696.        data-rimg="noscript"
  13697.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166 1x"
  13698.        class="productitem--image-primary"
  13699.        
  13700.        
  13701.      >
  13702.    </noscript>
  13703.  
  13704.  
  13705.  <img loading="lazy"
  13706.    
  13707.      src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  13708.    
  13709.    alt=""
  13710.  
  13711.    
  13712.      data-rimg="lazy"
  13713.      data-rimg-scale="1"
  13714.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_{size}.jpg?v=1648046166"
  13715.      data-rimg-max="500x500"
  13716.      data-rimg-crop="false"
  13717.      
  13718.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  13719.    
  13720.  
  13721.    class="productitem--image-primary"
  13722.    
  13723.    
  13724.  >
  13725.  
  13726.  
  13727.  
  13728.  <div data-rimg-canvas></div>
  13729.  
  13730.  
  13731.            
  13732.  
  13733.            
  13734.  
  13735.  
  13736.  
  13737.  
  13738.  
  13739.  
  13740.  
  13741.  
  13742.  
  13743.  
  13744.  
  13745.  
  13746.  
  13747.  
  13748.  
  13749.  
  13750.  
  13751.  
  13752.  
  13753.  
  13754.  
  13755.  
  13756.  
  13757.  
  13758.  
  13759.  
  13760.  
  13761.          </figure>
  13762.        </a>
  13763.      </div><div class="productitem--info">
  13764.        
  13765.          
  13766.  
  13767.        
  13768.  
  13769.        
  13770.          
  13771.  
  13772.  
  13773.  
  13774.  
  13775.  
  13776.  
  13777.  
  13778.  
  13779.  
  13780.  
  13781.  
  13782.  
  13783.  
  13784.  
  13785.  
  13786.  
  13787.  
  13788.  
  13789.  
  13790.  
  13791.  
  13792.  
  13793.  
  13794.  
  13795.  
  13796.  
  13797.  
  13798.  
  13799.  
  13800.  
  13801. <div class="price productitem__price ">
  13802.  
  13803.    <div
  13804.      class="price__compare-at visible"
  13805.      data-price-compare-container
  13806.    >
  13807.  
  13808.      
  13809.        <span class="money price__original" data-price-original></span>
  13810.      
  13811.    </div>
  13812.  
  13813.  
  13814.    
  13815.      
  13816.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13817.        
  13818.          <span class="visually-hidden">Original price</span>
  13819.          <span class="money price__compare-at--min" data-price-compare-min>
  13820.            $54.99
  13821.          </span>
  13822.          -
  13823.          <span class="visually-hidden">Original price</span>
  13824.          <span class="money price__compare-at--max" data-price-compare-max>
  13825.            $54.99
  13826.          </span>
  13827.        
  13828.      </div>
  13829.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13830.        <span class="visually-hidden">Original price</span>
  13831.        <span class="money price__compare-at--single" data-price-compare>
  13832.          
  13833.        </span>
  13834.      </div>
  13835.    
  13836.  
  13837.  
  13838.  <div class="price__current price__current--emphasize " data-price-container>
  13839.  
  13840.    
  13841.  
  13842.    
  13843.      
  13844.      
  13845.      <span class="money" data-price>
  13846.        $54.99
  13847.      </span>
  13848.    
  13849.    
  13850.  </div>
  13851.  
  13852.  
  13853.    
  13854.    <div class="price__current--hidden" data-current-price-range-hidden>
  13855.      
  13856.        <span class="money price__current--min" data-price-min>$54.99</span>
  13857.        -
  13858.        <span class="money price__current--max" data-price-max>$54.99</span>
  13859.      
  13860.    </div>
  13861.    <div class="price__current--hidden" data-current-price-hidden>
  13862.      <span class="visually-hidden">Current price</span>
  13863.      <span class="money" data-price>
  13864.        $54.99
  13865.      </span>
  13866.    </div>
  13867.  
  13868.  
  13869.  
  13870.    
  13871.    
  13872.    
  13873.    
  13874.  
  13875.    <div
  13876.      class="
  13877.        productitem__unit-price
  13878.        hidden
  13879.      "
  13880.      data-unit-price
  13881.    >
  13882.      <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>
  13883.    </div>
  13884.  
  13885.  
  13886.  
  13887. </div>
  13888.  
  13889.  
  13890.        
  13891.  
  13892.        <h2 class="productitem--title">
  13893.          <a href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001" data-product-page-link>
  13894.            Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001
  13895.          </a>
  13896.        </h2>
  13897.  
  13898.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13899.        <div class="star_container 3929815122007"></div>
  13900.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13901.  
  13902.        
  13903.          
  13904.            <span class="productitem--vendor">
  13905.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  13906.            </span>
  13907.          
  13908.        
  13909.  
  13910.        
  13911.  
  13912.        
  13913.          
  13914.            <div class="productitem__stock-level">
  13915.              <!--
  13916.  
  13917.  
  13918.  
  13919.  
  13920.  
  13921.  
  13922.  
  13923. <div class="product-stock-level-wrapper" >
  13924.  
  13925.    <span class="
  13926.  product-stock-level
  13927.  product-stock-level--continue-selling
  13928.  
  13929. ">
  13930.      
  13931.  
  13932.      <span class="product-stock-level__text">
  13933.        
  13934.        <div class="product-stock-level__badge-text">
  13935.          
  13936.  
  13937.    In stock
  13938.  
  13939.  
  13940.        </div>
  13941.      </span>
  13942.    </span>
  13943.  
  13944. </div>
  13945. -->
  13946.              
  13947.  
  13948.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  13949.  
  13950.  
  13951.  
  13952.  
  13953.  
  13954.  
  13955.  
  13956.            </div>
  13957.          
  13958.  
  13959.          
  13960.            
  13961.          
  13962.        
  13963.  
  13964.        
  13965.          <div class="productitem--description">
  13966.            <p>
  13967. Description: New Acer server replacement case cooling fan.
  13968.  
  13969. Compatible Part #'s: HI.R4300.001, DS09225B12UP021.
  13970.  
  13971. Compatible Models:
  13972. Acer Altos AT1...</p>
  13973.  
  13974.            
  13975.              <a
  13976.                href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13977.                class="productitem--link"
  13978.                data-product-page-link
  13979.              >
  13980.                View full details
  13981.              </a>
  13982.            
  13983.          </div>
  13984.        
  13985.      </div>
  13986.  
  13987.      
  13988.        
  13989.          
  13990.          
  13991.          
  13992.  
  13993.          
  13994.          
  13995.  
  13996.          
  13997.  
  13998.          
  13999.  
  14000.          <div class="productitem--actions" data-product-actions>
  14001.            <div class="productitem--listview-price">
  14002.              
  14003.  
  14004.  
  14005.  
  14006.  
  14007.  
  14008.  
  14009.  
  14010.  
  14011.  
  14012.  
  14013.  
  14014.  
  14015.  
  14016.  
  14017.  
  14018.  
  14019.  
  14020.  
  14021.  
  14022.  
  14023.  
  14024.  
  14025.  
  14026.  
  14027.  
  14028.  
  14029.  
  14030.  
  14031.  
  14032.  
  14033. <div class="price productitem__price ">
  14034.  
  14035.    <div
  14036.      class="price__compare-at visible"
  14037.      data-price-compare-container
  14038.    >
  14039.  
  14040.      
  14041.        <span class="money price__original" data-price-original></span>
  14042.      
  14043.    </div>
  14044.  
  14045.  
  14046.    
  14047.      
  14048.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14049.        
  14050.          <span class="visually-hidden">Original price</span>
  14051.          <span class="money price__compare-at--min" data-price-compare-min>
  14052.            $54.99
  14053.          </span>
  14054.          -
  14055.          <span class="visually-hidden">Original price</span>
  14056.          <span class="money price__compare-at--max" data-price-compare-max>
  14057.            $54.99
  14058.          </span>
  14059.        
  14060.      </div>
  14061.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14062.        <span class="visually-hidden">Original price</span>
  14063.        <span class="money price__compare-at--single" data-price-compare>
  14064.          
  14065.        </span>
  14066.      </div>
  14067.    
  14068.  
  14069.  
  14070.  <div class="price__current price__current--emphasize " data-price-container>
  14071.  
  14072.    
  14073.  
  14074.    
  14075.      
  14076.      
  14077.      <span class="money" data-price>
  14078.        $54.99
  14079.      </span>
  14080.    
  14081.    
  14082.  </div>
  14083.  
  14084.  
  14085.    
  14086.    <div class="price__current--hidden" data-current-price-range-hidden>
  14087.      
  14088.        <span class="money price__current--min" data-price-min>$54.99</span>
  14089.        -
  14090.        <span class="money price__current--max" data-price-max>$54.99</span>
  14091.      
  14092.    </div>
  14093.    <div class="price__current--hidden" data-current-price-hidden>
  14094.      <span class="visually-hidden">Current price</span>
  14095.      <span class="money" data-price>
  14096.        $54.99
  14097.      </span>
  14098.    </div>
  14099.  
  14100.  
  14101.  
  14102.    
  14103.    
  14104.    
  14105.    
  14106.  
  14107.    <div
  14108.      class="
  14109.        productitem__unit-price
  14110.        hidden
  14111.      "
  14112.      data-unit-price
  14113.    >
  14114.      <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>
  14115.    </div>
  14116.  
  14117.  
  14118.  
  14119. </div>
  14120.  
  14121.  
  14122.            </div>
  14123.  
  14124.            <div class="productitem--listview-badge">
  14125.              
  14126.  
  14127.  
  14128.  
  14129.  
  14130.  
  14131.  
  14132.  
  14133.  
  14134.  
  14135.  
  14136.  
  14137.  
  14138.  
  14139.  
  14140.  
  14141.  
  14142.  
  14143.  
  14144.  
  14145.  
  14146.  
  14147.  
  14148.  
  14149.  
  14150.  
  14151.  
  14152.  
  14153.            </div>
  14154.  
  14155.            
  14156.              <div
  14157.                class="
  14158.                  productitem--action
  14159.                  quickshop-button
  14160.                  
  14161.                "
  14162.              >
  14163.                <button
  14164.                  class="productitem--action-trigger button-secondary"
  14165.                  data-quickshop-full
  14166.                  
  14167.                  
  14168.                  type="button"
  14169.                >
  14170.                  Quick shop
  14171.                </button>
  14172.              </div>
  14173.            
  14174.  
  14175.            
  14176.              <div
  14177.                class="
  14178.                  productitem--action
  14179.                  atc--button
  14180.                  
  14181.                "
  14182.              >
  14183.                <button
  14184.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14185.                  type="button"
  14186.                  aria-label="Add to cart"
  14187.                  
  14188.                    data-quick-buy
  14189.                  
  14190.                  data-variant-id="29507473014871"
  14191.                  
  14192.                >
  14193.                  <span class="atc-button--text">
  14194.                    Add to cart
  14195.                  </span>
  14196.                  <span class="atc-button--icon"><svg
  14197.  aria-hidden="true"
  14198.  focusable="false"
  14199.  role="presentation"
  14200.  width="26"
  14201.  height="26"
  14202.  viewBox="0 0 26 26"
  14203.  xmlns="http://www.w3.org/2000/svg"
  14204. >
  14205.  <g fill-rule="nonzero" fill="currentColor">
  14206.    <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"/>
  14207.  </g>
  14208. </svg></span>
  14209.                </button>
  14210.              </div>
  14211.            
  14212.          </div>
  14213.        
  14214.      
  14215.    </div>
  14216.  </div>
  14217.  
  14218.  
  14219.    <script type="application/json" data-quick-buy-settings>
  14220.      {
  14221.        "cart_redirection": true,
  14222.        "money_format": "${{amount}}"
  14223.      }
  14224.    </script>
  14225.  
  14226. </li>
  14227.    
  14228.      
  14229.  
  14230.  
  14231.  
  14232.  
  14233.  
  14234.  
  14235.  
  14236.  
  14237.  
  14238.  
  14239.  
  14240.  
  14241.  
  14242.  
  14243.  
  14244.  
  14245.  
  14246.  
  14247.  
  14248.  
  14249.  
  14250.  
  14251.  
  14252.  
  14253.  
  14254.  
  14255.  
  14256.  
  14257.  
  14258.  
  14259.  
  14260.  
  14261.    
  14262.  
  14263.  
  14264.  
  14265. <li
  14266.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14267.  data-product-item
  14268.  data-product-quickshop-url="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14269.  
  14270. >
  14271.  <div class="productitem" data-product-item-content>
  14272.    
  14273.    
  14274.    
  14275.    
  14276.  
  14277.    
  14278.  
  14279.    
  14280.  
  14281.    <div class="productitem__container">
  14282.      
  14283.  
  14284.      <div class="productitem__image-container">
  14285.        <a target="_blank"
  14286.          class="productitem--image-link"
  14287.          href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14288.          aria-label="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14289.          tabindex="-1"
  14290.          data-product-page-link
  14291.        >
  14292.          <figure
  14293.            class="productitem--image"
  14294.            data-product-item-image
  14295.            
  14296.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14297.            
  14298.          >
  14299.            
  14300.              
  14301.              
  14302.  
  14303.  
  14304.    <noscript data-rimg-noscript>
  14305.      <img loading="lazy"
  14306.        
  14307.          src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14308.        
  14309.  
  14310.        alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14311.        data-rimg="noscript"
  14312.        srcset="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372 1x"
  14313.        class="productitem--image-primary"
  14314.        
  14315.        
  14316.      >
  14317.    </noscript>
  14318.  
  14319.  
  14320.  <img loading="lazy"
  14321.    
  14322.      src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14323.    
  14324.    alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14325.  
  14326.    
  14327.      data-rimg="lazy"
  14328.      data-rimg-scale="1"
  14329.      data-rimg-template="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_{size}.jpg?v=1715271372"
  14330.      data-rimg-max="500x500"
  14331.      data-rimg-crop="false"
  14332.      
  14333.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14334.    
  14335.  
  14336.    class="productitem--image-primary"
  14337.    
  14338.    
  14339.  >
  14340.  
  14341.  
  14342.  
  14343.  <div data-rimg-canvas></div>
  14344.  
  14345.  
  14346.            
  14347.  
  14348.            
  14349.  
  14350.  
  14351.  
  14352.  
  14353.  
  14354.  
  14355.  
  14356.  
  14357.  
  14358.  
  14359.  
  14360.  
  14361.  
  14362.  
  14363.  
  14364.  
  14365.  
  14366.  
  14367.  
  14368.  
  14369.  
  14370.  
  14371.  
  14372.  
  14373.  
  14374.  
  14375.  
  14376.          </figure>
  14377.        </a>
  14378.      </div><div class="productitem--info">
  14379.        
  14380.          
  14381.  
  14382.        
  14383.  
  14384.        
  14385.          
  14386.  
  14387.  
  14388.  
  14389.  
  14390.  
  14391.  
  14392.  
  14393.  
  14394.  
  14395.  
  14396.  
  14397.  
  14398.  
  14399.  
  14400.  
  14401.  
  14402.  
  14403.  
  14404.  
  14405.  
  14406.  
  14407.  
  14408.  
  14409.  
  14410.  
  14411.  
  14412.  
  14413.  
  14414.  
  14415.  
  14416. <div class="price productitem__price ">
  14417.  
  14418.    <div
  14419.      class="price__compare-at visible"
  14420.      data-price-compare-container
  14421.    >
  14422.  
  14423.      
  14424.        <span class="money price__original" data-price-original></span>
  14425.      
  14426.    </div>
  14427.  
  14428.  
  14429.    
  14430.      
  14431.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14432.        
  14433.          <span class="visually-hidden">Original price</span>
  14434.          <span class="money price__compare-at--min" data-price-compare-min>
  14435.            $106.99
  14436.          </span>
  14437.          -
  14438.          <span class="visually-hidden">Original price</span>
  14439.          <span class="money price__compare-at--max" data-price-compare-max>
  14440.            $106.99
  14441.          </span>
  14442.        
  14443.      </div>
  14444.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14445.        <span class="visually-hidden">Original price</span>
  14446.        <span class="money price__compare-at--single" data-price-compare>
  14447.          
  14448.        </span>
  14449.      </div>
  14450.    
  14451.  
  14452.  
  14453.  <div class="price__current price__current--emphasize " data-price-container>
  14454.  
  14455.    
  14456.  
  14457.    
  14458.      
  14459.      
  14460.      <span class="money" data-price>
  14461.        $106.99
  14462.      </span>
  14463.    
  14464.    
  14465.  </div>
  14466.  
  14467.  
  14468.    
  14469.    <div class="price__current--hidden" data-current-price-range-hidden>
  14470.      
  14471.        <span class="money price__current--min" data-price-min>$106.99</span>
  14472.        -
  14473.        <span class="money price__current--max" data-price-max>$106.99</span>
  14474.      
  14475.    </div>
  14476.    <div class="price__current--hidden" data-current-price-hidden>
  14477.      <span class="visually-hidden">Current price</span>
  14478.      <span class="money" data-price>
  14479.        $106.99
  14480.      </span>
  14481.    </div>
  14482.  
  14483.  
  14484.  
  14485.    
  14486.    
  14487.    
  14488.    
  14489.  
  14490.    <div
  14491.      class="
  14492.        productitem__unit-price
  14493.        hidden
  14494.      "
  14495.      data-unit-price
  14496.    >
  14497.      <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>
  14498.    </div>
  14499.  
  14500.  
  14501.  
  14502. </div>
  14503.  
  14504.  
  14505.        
  14506.  
  14507.        <h2 class="productitem--title">
  14508.          <a href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  14509.            Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual
  14510.          </a>
  14511.        </h2>
  14512.  
  14513.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  14514.        <div class="star_container 4451279622"></div>
  14515.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  14516.  
  14517.        
  14518.          
  14519.            <span class="productitem--vendor">
  14520.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  14521.            </span>
  14522.          
  14523.        
  14524.  
  14525.        
  14526.  
  14527.        
  14528.          
  14529.            <div class="productitem__stock-level">
  14530.              <!--
  14531.  
  14532.  
  14533.  
  14534.  
  14535.  
  14536.  
  14537.  
  14538. <div class="product-stock-level-wrapper" >
  14539.  
  14540.    <span class="
  14541.  product-stock-level
  14542.  product-stock-level--continue-selling
  14543.  
  14544. ">
  14545.      
  14546.  
  14547.      <span class="product-stock-level__text">
  14548.        
  14549.        <div class="product-stock-level__badge-text">
  14550.          
  14551.  
  14552.    In stock
  14553.  
  14554.  
  14555.        </div>
  14556.      </span>
  14557.    </span>
  14558.  
  14559. </div>
  14560. -->
  14561.              
  14562.  
  14563.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  14564.  
  14565.  
  14566.  
  14567.  
  14568.  
  14569.  
  14570.  
  14571.            </div>
  14572.          
  14573.  
  14574.          
  14575.            
  14576.          
  14577.        
  14578.  
  14579.        
  14580.          <div class="productitem--description">
  14581.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  14582.  
  14583.            
  14584.              <a
  14585.                href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14586.                class="productitem--link"
  14587.                data-product-page-link
  14588.              >
  14589.                View full details
  14590.              </a>
  14591.            
  14592.          </div>
  14593.        
  14594.      </div>
  14595.  
  14596.      
  14597.        
  14598.          
  14599.          
  14600.          
  14601.  
  14602.          
  14603.          
  14604.  
  14605.          
  14606.  
  14607.          
  14608.  
  14609.          <div class="productitem--actions" data-product-actions>
  14610.            <div class="productitem--listview-price">
  14611.              
  14612.  
  14613.  
  14614.  
  14615.  
  14616.  
  14617.  
  14618.  
  14619.  
  14620.  
  14621.  
  14622.  
  14623.  
  14624.  
  14625.  
  14626.  
  14627.  
  14628.  
  14629.  
  14630.  
  14631.  
  14632.  
  14633.  
  14634.  
  14635.  
  14636.  
  14637.  
  14638.  
  14639.  
  14640.  
  14641.  
  14642. <div class="price productitem__price ">
  14643.  
  14644.    <div
  14645.      class="price__compare-at visible"
  14646.      data-price-compare-container
  14647.    >
  14648.  
  14649.      
  14650.        <span class="money price__original" data-price-original></span>
  14651.      
  14652.    </div>
  14653.  
  14654.  
  14655.    
  14656.      
  14657.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14658.        
  14659.          <span class="visually-hidden">Original price</span>
  14660.          <span class="money price__compare-at--min" data-price-compare-min>
  14661.            $106.99
  14662.          </span>
  14663.          -
  14664.          <span class="visually-hidden">Original price</span>
  14665.          <span class="money price__compare-at--max" data-price-compare-max>
  14666.            $106.99
  14667.          </span>
  14668.        
  14669.      </div>
  14670.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14671.        <span class="visually-hidden">Original price</span>
  14672.        <span class="money price__compare-at--single" data-price-compare>
  14673.          
  14674.        </span>
  14675.      </div>
  14676.    
  14677.  
  14678.  
  14679.  <div class="price__current price__current--emphasize " data-price-container>
  14680.  
  14681.    
  14682.  
  14683.    
  14684.      
  14685.      
  14686.      <span class="money" data-price>
  14687.        $106.99
  14688.      </span>
  14689.    
  14690.    
  14691.  </div>
  14692.  
  14693.  
  14694.    
  14695.    <div class="price__current--hidden" data-current-price-range-hidden>
  14696.      
  14697.        <span class="money price__current--min" data-price-min>$106.99</span>
  14698.        -
  14699.        <span class="money price__current--max" data-price-max>$106.99</span>
  14700.      
  14701.    </div>
  14702.    <div class="price__current--hidden" data-current-price-hidden>
  14703.      <span class="visually-hidden">Current price</span>
  14704.      <span class="money" data-price>
  14705.        $106.99
  14706.      </span>
  14707.    </div>
  14708.  
  14709.  
  14710.  
  14711.    
  14712.    
  14713.    
  14714.    
  14715.  
  14716.    <div
  14717.      class="
  14718.        productitem__unit-price
  14719.        hidden
  14720.      "
  14721.      data-unit-price
  14722.    >
  14723.      <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>
  14724.    </div>
  14725.  
  14726.  
  14727.  
  14728. </div>
  14729.  
  14730.  
  14731.            </div>
  14732.  
  14733.            <div class="productitem--listview-badge">
  14734.              
  14735.  
  14736.  
  14737.  
  14738.  
  14739.  
  14740.  
  14741.  
  14742.  
  14743.  
  14744.  
  14745.  
  14746.  
  14747.  
  14748.  
  14749.  
  14750.  
  14751.  
  14752.  
  14753.  
  14754.  
  14755.  
  14756.  
  14757.  
  14758.  
  14759.  
  14760.  
  14761.  
  14762.            </div>
  14763.  
  14764.            
  14765.              <div
  14766.                class="
  14767.                  productitem--action
  14768.                  quickshop-button
  14769.                  
  14770.                "
  14771.              >
  14772.                <button
  14773.                  class="productitem--action-trigger button-secondary"
  14774.                  data-quickshop-full
  14775.                  
  14776.                  
  14777.                  type="button"
  14778.                >
  14779.                  Quick shop
  14780.                </button>
  14781.              </div>
  14782.            
  14783.  
  14784.            
  14785.              <div
  14786.                class="
  14787.                  productitem--action
  14788.                  atc--button
  14789.                  
  14790.                "
  14791.              >
  14792.                <button
  14793.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14794.                  type="button"
  14795.                  aria-label="Add to cart"
  14796.                  
  14797.                    data-quick-buy
  14798.                  
  14799.                  data-variant-id="39666365366359"
  14800.                  
  14801.                >
  14802.                  <span class="atc-button--text">
  14803.                    Add to cart
  14804.                  </span>
  14805.                  <span class="atc-button--icon"><svg
  14806.  aria-hidden="true"
  14807.  focusable="false"
  14808.  role="presentation"
  14809.  width="26"
  14810.  height="26"
  14811.  viewBox="0 0 26 26"
  14812.  xmlns="http://www.w3.org/2000/svg"
  14813. >
  14814.  <g fill-rule="nonzero" fill="currentColor">
  14815.    <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"/>
  14816.  </g>
  14817. </svg></span>
  14818.                </button>
  14819.              </div>
  14820.            
  14821.          </div>
  14822.        
  14823.      
  14824.    </div>
  14825.  </div>
  14826.  
  14827.  
  14828.    <script type="application/json" data-quick-buy-settings>
  14829.      {
  14830.        "cart_redirection": true,
  14831.        "money_format": "${{amount}}"
  14832.      }
  14833.    </script>
  14834.  
  14835. </li>
  14836.    
  14837.      
  14838.  
  14839.  
  14840.  
  14841.  
  14842.  
  14843.  
  14844.  
  14845.  
  14846.  
  14847.  
  14848.  
  14849.  
  14850.  
  14851.  
  14852.  
  14853.  
  14854.  
  14855.  
  14856.  
  14857.  
  14858.  
  14859.  
  14860.  
  14861.  
  14862.  
  14863.  
  14864.  
  14865.  
  14866.  
  14867.  
  14868.  
  14869.  
  14870.    
  14871.  
  14872.  
  14873.  
  14874. <li
  14875.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14876.  data-product-item
  14877.  data-product-quickshop-url="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14878.  
  14879. >
  14880.  <div class="productitem" data-product-item-content>
  14881.    
  14882.    
  14883.    
  14884.    
  14885.  
  14886.    
  14887.  
  14888.    
  14889.  
  14890.    <div class="productitem__container">
  14891.      
  14892.  
  14893.      <div class="productitem__image-container">
  14894.        <a target="_blank"
  14895.          class="productitem--image-link"
  14896.          href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14897.          aria-label="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14898.          tabindex="-1"
  14899.          data-product-page-link
  14900.        >
  14901.          <figure
  14902.            class="productitem--image"
  14903.            data-product-item-image
  14904.            
  14905.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14906.            
  14907.          >
  14908.            
  14909.              
  14910.              
  14911.  
  14912.  
  14913.    <noscript data-rimg-noscript>
  14914.      <img loading="lazy"
  14915.        
  14916.          src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14917.        
  14918.  
  14919.        alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14920.        data-rimg="noscript"
  14921.        srcset="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378 1x"
  14922.        class="productitem--image-primary"
  14923.        
  14924.        
  14925.      >
  14926.    </noscript>
  14927.  
  14928.  
  14929.  <img loading="lazy"
  14930.    
  14931.      src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14932.    
  14933.    alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14934.  
  14935.    
  14936.      data-rimg="lazy"
  14937.      data-rimg-scale="1"
  14938.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_{size}.jpg?v=1715271378"
  14939.      data-rimg-max="500x500"
  14940.      data-rimg-crop="false"
  14941.      
  14942.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14943.    
  14944.  
  14945.    class="productitem--image-primary"
  14946.    
  14947.    
  14948.  >
  14949.  
  14950.  
  14951.  
  14952.  <div data-rimg-canvas></div>
  14953.  
  14954.  
  14955.            
  14956.  
  14957.            
  14958.  
  14959.  
  14960.  
  14961.  
  14962.  
  14963.  
  14964.  
  14965.  
  14966.  
  14967.  
  14968.  
  14969.  
  14970.  
  14971.  
  14972.  
  14973.  
  14974.  
  14975.  
  14976.  
  14977.  
  14978.  
  14979.  
  14980.  
  14981.  
  14982.  
  14983.  
  14984.  
  14985.          </figure>
  14986.        </a>
  14987.      </div><div class="productitem--info">
  14988.        
  14989.          
  14990.  
  14991.        
  14992.  
  14993.        
  14994.          
  14995.  
  14996.  
  14997.  
  14998.  
  14999.  
  15000.  
  15001.  
  15002.  
  15003.  
  15004.  
  15005.  
  15006.  
  15007.  
  15008.  
  15009.  
  15010.  
  15011.  
  15012.  
  15013.  
  15014.  
  15015.  
  15016.  
  15017.  
  15018.  
  15019.  
  15020.  
  15021.  
  15022.  
  15023.  
  15024.  
  15025. <div class="price productitem__price ">
  15026.  
  15027.    <div
  15028.      class="price__compare-at visible"
  15029.      data-price-compare-container
  15030.    >
  15031.  
  15032.      
  15033.        <span class="money price__original" data-price-original></span>
  15034.      
  15035.    </div>
  15036.  
  15037.  
  15038.    
  15039.      
  15040.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15041.        
  15042.          <span class="visually-hidden">Original price</span>
  15043.          <span class="money price__compare-at--min" data-price-compare-min>
  15044.            $106.99
  15045.          </span>
  15046.          -
  15047.          <span class="visually-hidden">Original price</span>
  15048.          <span class="money price__compare-at--max" data-price-compare-max>
  15049.            $106.99
  15050.          </span>
  15051.        
  15052.      </div>
  15053.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15054.        <span class="visually-hidden">Original price</span>
  15055.        <span class="money price__compare-at--single" data-price-compare>
  15056.          
  15057.        </span>
  15058.      </div>
  15059.    
  15060.  
  15061.  
  15062.  <div class="price__current price__current--emphasize " data-price-container>
  15063.  
  15064.    
  15065.  
  15066.    
  15067.      
  15068.      
  15069.      <span class="money" data-price>
  15070.        $106.99
  15071.      </span>
  15072.    
  15073.    
  15074.  </div>
  15075.  
  15076.  
  15077.    
  15078.    <div class="price__current--hidden" data-current-price-range-hidden>
  15079.      
  15080.        <span class="money price__current--min" data-price-min>$106.99</span>
  15081.        -
  15082.        <span class="money price__current--max" data-price-max>$106.99</span>
  15083.      
  15084.    </div>
  15085.    <div class="price__current--hidden" data-current-price-hidden>
  15086.      <span class="visually-hidden">Current price</span>
  15087.      <span class="money" data-price>
  15088.        $106.99
  15089.      </span>
  15090.    </div>
  15091.  
  15092.  
  15093.  
  15094.    
  15095.    
  15096.    
  15097.    
  15098.  
  15099.    <div
  15100.      class="
  15101.        productitem__unit-price
  15102.        hidden
  15103.      "
  15104.      data-unit-price
  15105.    >
  15106.      <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>
  15107.    </div>
  15108.  
  15109.  
  15110.  
  15111. </div>
  15112.  
  15113.  
  15114.        
  15115.  
  15116.        <h2 class="productitem--title">
  15117.          <a href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  15118.            Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual
  15119.          </a>
  15120.        </h2>
  15121.  
  15122.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15123.        <div class="star_container 4451280006"></div>
  15124.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15125.  
  15126.        
  15127.          
  15128.            <span class="productitem--vendor">
  15129.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15130.            </span>
  15131.          
  15132.        
  15133.  
  15134.        
  15135.  
  15136.        
  15137.          
  15138.            <div class="productitem__stock-level">
  15139.              <!--
  15140.  
  15141.  
  15142.  
  15143.  
  15144.  
  15145.  
  15146.  
  15147. <div class="product-stock-level-wrapper" >
  15148.  
  15149.    <span class="
  15150.  product-stock-level
  15151.  product-stock-level--continue-selling
  15152.  
  15153. ">
  15154.      
  15155.  
  15156.      <span class="product-stock-level__text">
  15157.        
  15158.        <div class="product-stock-level__badge-text">
  15159.          
  15160.  
  15161.    In stock
  15162.  
  15163.  
  15164.        </div>
  15165.      </span>
  15166.    </span>
  15167.  
  15168. </div>
  15169. -->
  15170.              
  15171.  
  15172.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  15173.  
  15174.  
  15175.  
  15176.  
  15177.  
  15178.  
  15179.  
  15180.            </div>
  15181.          
  15182.  
  15183.          
  15184.            
  15185.          
  15186.        
  15187.  
  15188.        
  15189.          <div class="productitem--description">
  15190.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  15191.  
  15192.            
  15193.              <a
  15194.                href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  15195.                class="productitem--link"
  15196.                data-product-page-link
  15197.              >
  15198.                View full details
  15199.              </a>
  15200.            
  15201.          </div>
  15202.        
  15203.      </div>
  15204.  
  15205.      
  15206.        
  15207.          
  15208.          
  15209.          
  15210.  
  15211.          
  15212.          
  15213.  
  15214.          
  15215.  
  15216.          
  15217.  
  15218.          <div class="productitem--actions" data-product-actions>
  15219.            <div class="productitem--listview-price">
  15220.              
  15221.  
  15222.  
  15223.  
  15224.  
  15225.  
  15226.  
  15227.  
  15228.  
  15229.  
  15230.  
  15231.  
  15232.  
  15233.  
  15234.  
  15235.  
  15236.  
  15237.  
  15238.  
  15239.  
  15240.  
  15241.  
  15242.  
  15243.  
  15244.  
  15245.  
  15246.  
  15247.  
  15248.  
  15249.  
  15250.  
  15251. <div class="price productitem__price ">
  15252.  
  15253.    <div
  15254.      class="price__compare-at visible"
  15255.      data-price-compare-container
  15256.    >
  15257.  
  15258.      
  15259.        <span class="money price__original" data-price-original></span>
  15260.      
  15261.    </div>
  15262.  
  15263.  
  15264.    
  15265.      
  15266.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15267.        
  15268.          <span class="visually-hidden">Original price</span>
  15269.          <span class="money price__compare-at--min" data-price-compare-min>
  15270.            $106.99
  15271.          </span>
  15272.          -
  15273.          <span class="visually-hidden">Original price</span>
  15274.          <span class="money price__compare-at--max" data-price-compare-max>
  15275.            $106.99
  15276.          </span>
  15277.        
  15278.      </div>
  15279.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15280.        <span class="visually-hidden">Original price</span>
  15281.        <span class="money price__compare-at--single" data-price-compare>
  15282.          
  15283.        </span>
  15284.      </div>
  15285.    
  15286.  
  15287.  
  15288.  <div class="price__current price__current--emphasize " data-price-container>
  15289.  
  15290.    
  15291.  
  15292.    
  15293.      
  15294.      
  15295.      <span class="money" data-price>
  15296.        $106.99
  15297.      </span>
  15298.    
  15299.    
  15300.  </div>
  15301.  
  15302.  
  15303.    
  15304.    <div class="price__current--hidden" data-current-price-range-hidden>
  15305.      
  15306.        <span class="money price__current--min" data-price-min>$106.99</span>
  15307.        -
  15308.        <span class="money price__current--max" data-price-max>$106.99</span>
  15309.      
  15310.    </div>
  15311.    <div class="price__current--hidden" data-current-price-hidden>
  15312.      <span class="visually-hidden">Current price</span>
  15313.      <span class="money" data-price>
  15314.        $106.99
  15315.      </span>
  15316.    </div>
  15317.  
  15318.  
  15319.  
  15320.    
  15321.    
  15322.    
  15323.    
  15324.  
  15325.    <div
  15326.      class="
  15327.        productitem__unit-price
  15328.        hidden
  15329.      "
  15330.      data-unit-price
  15331.    >
  15332.      <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>
  15333.    </div>
  15334.  
  15335.  
  15336.  
  15337. </div>
  15338.  
  15339.  
  15340.            </div>
  15341.  
  15342.            <div class="productitem--listview-badge">
  15343.              
  15344.  
  15345.  
  15346.  
  15347.  
  15348.  
  15349.  
  15350.  
  15351.  
  15352.  
  15353.  
  15354.  
  15355.  
  15356.  
  15357.  
  15358.  
  15359.  
  15360.  
  15361.  
  15362.  
  15363.  
  15364.  
  15365.  
  15366.  
  15367.  
  15368.  
  15369.  
  15370.  
  15371.            </div>
  15372.  
  15373.            
  15374.              <div
  15375.                class="
  15376.                  productitem--action
  15377.                  quickshop-button
  15378.                  
  15379.                "
  15380.              >
  15381.                <button
  15382.                  class="productitem--action-trigger button-secondary"
  15383.                  data-quickshop-full
  15384.                  
  15385.                  
  15386.                  type="button"
  15387.                >
  15388.                  Quick shop
  15389.                </button>
  15390.              </div>
  15391.            
  15392.  
  15393.            
  15394.              <div
  15395.                class="
  15396.                  productitem--action
  15397.                  atc--button
  15398.                  
  15399.                "
  15400.              >
  15401.                <button
  15402.                  class="productitem--action-trigger productitem--action-atc button-primary"
  15403.                  type="button"
  15404.                  aria-label="Add to cart"
  15405.                  
  15406.                    data-quick-buy
  15407.                  
  15408.                  data-variant-id="39666365268055"
  15409.                  
  15410.                >
  15411.                  <span class="atc-button--text">
  15412.                    Add to cart
  15413.                  </span>
  15414.                  <span class="atc-button--icon"><svg
  15415.  aria-hidden="true"
  15416.  focusable="false"
  15417.  role="presentation"
  15418.  width="26"
  15419.  height="26"
  15420.  viewBox="0 0 26 26"
  15421.  xmlns="http://www.w3.org/2000/svg"
  15422. >
  15423.  <g fill-rule="nonzero" fill="currentColor">
  15424.    <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"/>
  15425.  </g>
  15426. </svg></span>
  15427.                </button>
  15428.              </div>
  15429.            
  15430.          </div>
  15431.        
  15432.      
  15433.    </div>
  15434.  </div>
  15435.  
  15436.  
  15437.    <script type="application/json" data-quick-buy-settings>
  15438.      {
  15439.        "cart_redirection": true,
  15440.        "money_format": "${{amount}}"
  15441.      }
  15442.    </script>
  15443.  
  15444. </li>
  15445.    
  15446.      
  15447.  
  15448.  
  15449.  
  15450.  
  15451.  
  15452.  
  15453.  
  15454.  
  15455.  
  15456.  
  15457.  
  15458.  
  15459.  
  15460.  
  15461.  
  15462.  
  15463.  
  15464.  
  15465.  
  15466.  
  15467.  
  15468.  
  15469.  
  15470.  
  15471.  
  15472.  
  15473.  
  15474.  
  15475.  
  15476.  
  15477.  
  15478.  
  15479.    
  15480.  
  15481.  
  15482.  
  15483. <li
  15484.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  15485.  data-product-item
  15486.  data-product-quickshop-url="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15487.  
  15488. >
  15489.  <div class="productitem" data-product-item-content>
  15490.    
  15491.    
  15492.    
  15493.    
  15494.  
  15495.    
  15496.  
  15497.    
  15498.  
  15499.    <div class="productitem__container">
  15500.      
  15501.  
  15502.      <div class="productitem__image-container">
  15503.        <a target="_blank"
  15504.          class="productitem--image-link"
  15505.          href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15506.          aria-label="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15507.          tabindex="-1"
  15508.          data-product-page-link
  15509.        >
  15510.          <figure
  15511.            class="productitem--image"
  15512.            data-product-item-image
  15513.            
  15514.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  15515.            
  15516.          >
  15517.            
  15518.              
  15519.              
  15520.  
  15521.  
  15522.    <noscript data-rimg-noscript>
  15523.      <img loading="lazy"
  15524.        
  15525.          src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15526.        
  15527.  
  15528.        alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15529.        data-rimg="noscript"
  15530.        srcset="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427 1x"
  15531.        class="productitem--image-primary"
  15532.        
  15533.        
  15534.      >
  15535.    </noscript>
  15536.  
  15537.  
  15538.  <img loading="lazy"
  15539.    
  15540.      src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15541.    
  15542.    alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15543.  
  15544.    
  15545.      data-rimg="lazy"
  15546.      data-rimg-scale="1"
  15547.      data-rimg-template="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_{size}.jpg?v=1715271427"
  15548.      data-rimg-max="500x500"
  15549.      data-rimg-crop="false"
  15550.      
  15551.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  15552.    
  15553.  
  15554.    class="productitem--image-primary"
  15555.    
  15556.    
  15557.  >
  15558.  
  15559.  
  15560.  
  15561.  <div data-rimg-canvas></div>
  15562.  
  15563.  
  15564.            
  15565.  
  15566.            
  15567.  
  15568.  
  15569.  
  15570.  
  15571.  
  15572.  
  15573.  
  15574.  
  15575.  
  15576.  
  15577.  
  15578.  
  15579.  
  15580.  
  15581.  
  15582.  
  15583.  
  15584.  
  15585.  
  15586.  
  15587.  
  15588.  
  15589.  
  15590.  
  15591.  
  15592.  
  15593.  
  15594.          </figure>
  15595.        </a>
  15596.      </div><div class="productitem--info">
  15597.        
  15598.          
  15599.  
  15600.        
  15601.  
  15602.        
  15603.          
  15604.  
  15605.  
  15606.  
  15607.  
  15608.  
  15609.  
  15610.  
  15611.  
  15612.  
  15613.  
  15614.  
  15615.  
  15616.  
  15617.  
  15618.  
  15619.  
  15620.  
  15621.  
  15622.  
  15623.  
  15624.  
  15625.  
  15626.  
  15627.  
  15628.  
  15629.  
  15630.  
  15631.  
  15632.  
  15633.  
  15634. <div class="price productitem__price ">
  15635.  
  15636.    <div
  15637.      class="price__compare-at visible"
  15638.      data-price-compare-container
  15639.    >
  15640.  
  15641.      
  15642.        <span class="money price__original" data-price-original></span>
  15643.      
  15644.    </div>
  15645.  
  15646.  
  15647.    
  15648.      
  15649.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15650.        
  15651.          <span class="visually-hidden">Original price</span>
  15652.          <span class="money price__compare-at--min" data-price-compare-min>
  15653.            $86.99
  15654.          </span>
  15655.          -
  15656.          <span class="visually-hidden">Original price</span>
  15657.          <span class="money price__compare-at--max" data-price-compare-max>
  15658.            $86.99
  15659.          </span>
  15660.        
  15661.      </div>
  15662.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15663.        <span class="visually-hidden">Original price</span>
  15664.        <span class="money price__compare-at--single" data-price-compare>
  15665.          
  15666.        </span>
  15667.      </div>
  15668.    
  15669.  
  15670.  
  15671.  <div class="price__current price__current--emphasize " data-price-container>
  15672.  
  15673.    
  15674.  
  15675.    
  15676.      
  15677.      
  15678.      <span class="money" data-price>
  15679.        $86.99
  15680.      </span>
  15681.    
  15682.    
  15683.  </div>
  15684.  
  15685.  
  15686.    
  15687.    <div class="price__current--hidden" data-current-price-range-hidden>
  15688.      
  15689.        <span class="money price__current--min" data-price-min>$86.99</span>
  15690.        -
  15691.        <span class="money price__current--max" data-price-max>$86.99</span>
  15692.      
  15693.    </div>
  15694.    <div class="price__current--hidden" data-current-price-hidden>
  15695.      <span class="visually-hidden">Current price</span>
  15696.      <span class="money" data-price>
  15697.        $86.99
  15698.      </span>
  15699.    </div>
  15700.  
  15701.  
  15702.  
  15703.    
  15704.    
  15705.    
  15706.    
  15707.  
  15708.    <div
  15709.      class="
  15710.        productitem__unit-price
  15711.        hidden
  15712.      "
  15713.      data-unit-price
  15714.    >
  15715.      <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>
  15716.    </div>
  15717.  
  15718.  
  15719.  
  15720. </div>
  15721.  
  15722.  
  15723.        
  15724.  
  15725.        <h2 class="productitem--title">
  15726.          <a href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m" data-product-page-link>
  15727.            Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M
  15728.          </a>
  15729.        </h2>
  15730.  
  15731.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15732.        <div class="star_container 4451281286"></div>
  15733.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15734.  
  15735.        
  15736.          
  15737.            <span class="productitem--vendor">
  15738.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15739.            </span>
  15740.          
  15741.        
  15742.  
  15743.        
  15744.  
  15745.        
  15746.          
  15747.            <div class="productitem__stock-level">
  15748.              <!--
  15749.  
  15750.  
  15751.  
  15752.  
  15753.  
  15754.  
  15755.  
  15756. <div class="product-stock-level-wrapper" >
  15757.  
  15758.    <span class="
  15759.  product-stock-level
  15760.  product-stock-level--continue-selling
  15761.  
  15762. ">
  15763.      
  15764.  
  15765.      <span class="product-stock-level__text">
  15766.        
  15767.        <div class="product-stock-level__badge-text">
  15768.          
  15769.  
  15770.    In stock
  15771.  
  15772.  
  15773.        </div>
  15774.      </span>
  15775.    </span>
  15776.  
  15777. </div>
  15778. -->
  15779.              
  15780.  
  15781.  
  15782.    
  15783.      <b style="color:green">In stock</b>
  15784.    
  15785.  
  15786.  
  15787.  
  15788.  
  15789.  
  15790.  
  15791.  
  15792.            </div>
  15793.          
  15794.  
  15795.          
  15796.            
  15797.          
  15798.        
  15799.  
  15800.        
  15801.          <div class="productitem--description">
  15802.            <p>Description: New genuine Acer laptop replacement keyboard. Canadian Bilingual layout. Part #'s: KB.I140A.114, KBI140A114, NSK-AM02M, 9J.N1P82.02M. ...</p>
  15803.  
  15804.            
  15805.              <a
  15806.                href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15807.                class="productitem--link"
  15808.                data-product-page-link
  15809.              >
  15810.                View full details
  15811.              </a>
  15812.            
  15813.          </div>
  15814.        
  15815.      </div>
  15816.  
  15817.      
  15818.        
  15819.          
  15820.          
  15821.          
  15822.  
  15823.          
  15824.          
  15825.  
  15826.          
  15827.  
  15828.          
  15829.  
  15830.          <div class="productitem--actions" data-product-actions>
  15831.            <div class="productitem--listview-price">
  15832.              
  15833.  
  15834.  
  15835.  
  15836.  
  15837.  
  15838.  
  15839.  
  15840.  
  15841.  
  15842.  
  15843.  
  15844.  
  15845.  
  15846.  
  15847.  
  15848.  
  15849.  
  15850.  
  15851.  
  15852.  
  15853.  
  15854.  
  15855.  
  15856.  
  15857.  
  15858.  
  15859.  
  15860.  
  15861.  
  15862.  
  15863. <div class="price productitem__price ">
  15864.  
  15865.    <div
  15866.      class="price__compare-at visible"
  15867.      data-price-compare-container
  15868.    >
  15869.  
  15870.      
  15871.        <span class="money price__original" data-price-original></span>
  15872.      
  15873.    </div>
  15874.  
  15875.  
  15876.    
  15877.      
  15878.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15879.        
  15880.          <span class="visually-hidden">Original price</span>
  15881.          <span class="money price__compare-at--min" data-price-compare-min>
  15882.            $86.99
  15883.          </span>
  15884.          -
  15885.          <span class="visually-hidden">Original price</span>
  15886.          <span class="money price__compare-at--max" data-price-compare-max>
  15887.            $86.99
  15888.          </span>
  15889.        
  15890.      </div>
  15891.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15892.        <span class="visually-hidden">Original price</span>
  15893.        <span class="money price__compare-at--single" data-price-compare>
  15894.          
  15895.        </span>
  15896.      </div>
  15897.    
  15898.  
  15899.  
  15900.  <div class="price__current price__current--emphasize " data-price-container>
  15901.  
  15902.    
  15903.  
  15904.    
  15905.      
  15906.      
  15907.      <span class="money" data-price>
  15908.        $86.99
  15909.      </span>
  15910.    
  15911.    
  15912.  </div>
  15913.  
  15914.  
  15915.    
  15916.    <div class="price__current--hidden" data-current-price-range-hidden>
  15917.      
  15918.        <span class="money price__current--min" data-price-min>$86.99</span>
  15919.        -
  15920.        <span class="money price__current--max" data-price-max>$86.99</span>
  15921.      
  15922.    </div>
  15923.    <div class="price__current--hidden" data-current-price-hidden>
  15924.      <span class="visually-hidden">Current price</span>
  15925.      <span class="money" data-price>
  15926.        $86.99
  15927.      </span>
  15928.    </div>
  15929.  
  15930.  
  15931.  
  15932.    
  15933.    
  15934.    
  15935.    
  15936.  
  15937.    <div
  15938.      class="
  15939.        productitem__unit-price
  15940.        hidden
  15941.      "
  15942.      data-unit-price
  15943.    >
  15944.      <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>
  15945.    </div>
  15946.  
  15947.  
  15948.  
  15949. </div>
  15950.  
  15951.  
  15952.            </div>
  15953.  
  15954.            <div class="productitem--listview-badge">
  15955.              
  15956.  
  15957.  
  15958.  
  15959.  
  15960.  
  15961.  
  15962.  
  15963.  
  15964.  
  15965.  
  15966.  
  15967.  
  15968.  
  15969.  
  15970.  
  15971.  
  15972.  
  15973.  
  15974.  
  15975.  
  15976.  
  15977.  
  15978.  
  15979.  
  15980.  
  15981.  
  15982.  
  15983.            </div>
  15984.  
  15985.            
  15986.              <div
  15987.                class="
  15988.                  productitem--action
  15989.                  quickshop-button
  15990.                  
  15991.                "
  15992.              >
  15993.                <button
  15994.                  class="productitem--action-trigger button-secondary"
  15995.                  data-quickshop-full
  15996.                  
  15997.                  
  15998.                  type="button"
  15999.                >
  16000.                  Quick shop
  16001.                </button>
  16002.              </div>
  16003.            
  16004.  
  16005.            
  16006.              <div
  16007.                class="
  16008.                  productitem--action
  16009.                  atc--button
  16010.                  
  16011.                "
  16012.              >
  16013.                <button
  16014.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16015.                  type="button"
  16016.                  aria-label="Add to cart"
  16017.                  
  16018.                    data-quick-buy
  16019.                  
  16020.                  data-variant-id="39666363793495"
  16021.                  
  16022.                >
  16023.                  <span class="atc-button--text">
  16024.                    Add to cart
  16025.                  </span>
  16026.                  <span class="atc-button--icon"><svg
  16027.  aria-hidden="true"
  16028.  focusable="false"
  16029.  role="presentation"
  16030.  width="26"
  16031.  height="26"
  16032.  viewBox="0 0 26 26"
  16033.  xmlns="http://www.w3.org/2000/svg"
  16034. >
  16035.  <g fill-rule="nonzero" fill="currentColor">
  16036.    <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"/>
  16037.  </g>
  16038. </svg></span>
  16039.                </button>
  16040.              </div>
  16041.            
  16042.          </div>
  16043.        
  16044.      
  16045.    </div>
  16046.  </div>
  16047.  
  16048.  
  16049.    <script type="application/json" data-quick-buy-settings>
  16050.      {
  16051.        "cart_redirection": true,
  16052.        "money_format": "${{amount}}"
  16053.      }
  16054.    </script>
  16055.  
  16056. </li>
  16057.    
  16058.      
  16059.  
  16060.  
  16061.  
  16062.  
  16063.  
  16064.  
  16065.  
  16066.  
  16067.  
  16068.  
  16069.  
  16070.  
  16071.  
  16072.  
  16073.  
  16074.  
  16075.  
  16076.  
  16077.  
  16078.  
  16079.  
  16080.  
  16081.  
  16082.  
  16083.  
  16084.  
  16085.  
  16086.  
  16087.  
  16088.  
  16089.  
  16090.  
  16091.    
  16092.  
  16093.  
  16094.  
  16095. <li
  16096.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16097.  data-product-item
  16098.  data-product-quickshop-url="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16099.  
  16100. >
  16101.  <div class="productitem" data-product-item-content>
  16102.    
  16103.    
  16104.    
  16105.    
  16106.  
  16107.    
  16108.  
  16109.    
  16110.  
  16111.    <div class="productitem__container">
  16112.      
  16113.  
  16114.      <div class="productitem__image-container">
  16115.        <a target="_blank"
  16116.          class="productitem--image-link"
  16117.          href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16118.          aria-label="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16119.          tabindex="-1"
  16120.          data-product-page-link
  16121.        >
  16122.          <figure
  16123.            class="productitem--image"
  16124.            data-product-item-image
  16125.            
  16126.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  16127.            
  16128.          >
  16129.            
  16130.              
  16131.              
  16132.  
  16133.  
  16134.    <noscript data-rimg-noscript>
  16135.      <img loading="lazy"
  16136.        
  16137.          src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16138.        
  16139.  
  16140.        alt=""
  16141.        data-rimg="noscript"
  16142.        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"
  16143.        class="productitem--image-primary"
  16144.        
  16145.        
  16146.      >
  16147.    </noscript>
  16148.  
  16149.  
  16150.  <img loading="lazy"
  16151.    
  16152.      src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16153.    
  16154.    alt=""
  16155.  
  16156.    
  16157.      data-rimg="lazy"
  16158.      data-rimg-scale="1"
  16159.      data-rimg-template="//laptopparts.ca/cdn/shop/products/33.paa02.007_{size}.jpg?v=1697125255"
  16160.      data-rimg-max="655x655"
  16161.      data-rimg-crop="false"
  16162.      
  16163.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  16164.    
  16165.  
  16166.    class="productitem--image-primary"
  16167.    
  16168.    
  16169.  >
  16170.  
  16171.  
  16172.  
  16173.  <div data-rimg-canvas></div>
  16174.  
  16175.  
  16176.            
  16177.  
  16178.            
  16179.  
  16180.  
  16181.  
  16182.  
  16183.  
  16184.  
  16185.  
  16186.  
  16187.  
  16188.  
  16189.  
  16190.  
  16191.  
  16192.  
  16193.  
  16194.  
  16195.  
  16196.  
  16197.  
  16198.  
  16199.  
  16200.  
  16201.  
  16202.  
  16203.  
  16204.  
  16205.  
  16206.          </figure>
  16207.        </a>
  16208.      </div><div class="productitem--info">
  16209.        
  16210.          
  16211.  
  16212.        
  16213.  
  16214.        
  16215.          
  16216.  
  16217.  
  16218.  
  16219.  
  16220.  
  16221.  
  16222.  
  16223.  
  16224.  
  16225.  
  16226.  
  16227.  
  16228.  
  16229.  
  16230.  
  16231.  
  16232.  
  16233.  
  16234.  
  16235.  
  16236.  
  16237.  
  16238.  
  16239.  
  16240.  
  16241.  
  16242.  
  16243.  
  16244.  
  16245.  
  16246. <div class="price productitem__price ">
  16247.  
  16248.    <div
  16249.      class="price__compare-at visible"
  16250.      data-price-compare-container
  16251.    >
  16252.  
  16253.      
  16254.        <span class="money price__original" data-price-original></span>
  16255.      
  16256.    </div>
  16257.  
  16258.  
  16259.    
  16260.      
  16261.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16262.        
  16263.          <span class="visually-hidden">Original price</span>
  16264.          <span class="money price__compare-at--min" data-price-compare-min>
  16265.            $65.99
  16266.          </span>
  16267.          -
  16268.          <span class="visually-hidden">Original price</span>
  16269.          <span class="money price__compare-at--max" data-price-compare-max>
  16270.            $65.99
  16271.          </span>
  16272.        
  16273.      </div>
  16274.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16275.        <span class="visually-hidden">Original price</span>
  16276.        <span class="money price__compare-at--single" data-price-compare>
  16277.          
  16278.        </span>
  16279.      </div>
  16280.    
  16281.  
  16282.  
  16283.  <div class="price__current price__current--emphasize " data-price-container>
  16284.  
  16285.    
  16286.  
  16287.    
  16288.      
  16289.      
  16290.      <span class="money" data-price>
  16291.        $65.99
  16292.      </span>
  16293.    
  16294.    
  16295.  </div>
  16296.  
  16297.  
  16298.    
  16299.    <div class="price__current--hidden" data-current-price-range-hidden>
  16300.      
  16301.        <span class="money price__current--min" data-price-min>$65.99</span>
  16302.        -
  16303.        <span class="money price__current--max" data-price-max>$65.99</span>
  16304.      
  16305.    </div>
  16306.    <div class="price__current--hidden" data-current-price-hidden>
  16307.      <span class="visually-hidden">Current price</span>
  16308.      <span class="money" data-price>
  16309.        $65.99
  16310.      </span>
  16311.    </div>
  16312.  
  16313.  
  16314.  
  16315.    
  16316.    
  16317.    
  16318.    
  16319.  
  16320.    <div
  16321.      class="
  16322.        productitem__unit-price
  16323.        hidden
  16324.      "
  16325.      data-unit-price
  16326.    >
  16327.      <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>
  16328.    </div>
  16329.  
  16330.  
  16331.  
  16332. </div>
  16333.  
  16334.  
  16335.        
  16336.  
  16337.        <h2 class="productitem--title">
  16338.          <a href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210" data-product-page-link>
  16339.            Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210
  16340.          </a>
  16341.        </h2>
  16342.  
  16343.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16344.        <div class="star_container 243102056471"></div>
  16345.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16346.  
  16347.        
  16348.          
  16349.            <span class="productitem--vendor">
  16350.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16351.            </span>
  16352.          
  16353.        
  16354.  
  16355.        
  16356.  
  16357.        
  16358.          
  16359.            <div class="productitem__stock-level">
  16360.              <!--
  16361.  
  16362.  
  16363.  
  16364.  
  16365.  
  16366.  
  16367.  
  16368. <div class="product-stock-level-wrapper" >
  16369.  
  16370.    <span class="
  16371.  product-stock-level
  16372.  product-stock-level--continue-selling
  16373.  
  16374. ">
  16375.      
  16376.  
  16377.      <span class="product-stock-level__text">
  16378.        
  16379.        <div class="product-stock-level__badge-text">
  16380.          
  16381.  
  16382.    In stock
  16383.  
  16384.  
  16385.        </div>
  16386.      </span>
  16387.    </span>
  16388.  
  16389. </div>
  16390. -->
  16391.              
  16392.  
  16393.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  16394.  
  16395.  
  16396.  
  16397.  
  16398.  
  16399.  
  16400.  
  16401.            </div>
  16402.          
  16403.  
  16404.          
  16405.            
  16406.          
  16407.        
  16408.  
  16409.        
  16410.          <div class="productitem--description">
  16411.            <p>Description: New genuine Acer laptop hinge and bracket set.
  16412. Part #'s: 33.PAA02.007, 091203 240, 091221 210.
  16413. Compatible Models: Acer Aspire 4235, 42...</p>
  16414.  
  16415.            
  16416.              <a
  16417.                href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16418.                class="productitem--link"
  16419.                data-product-page-link
  16420.              >
  16421.                View full details
  16422.              </a>
  16423.            
  16424.          </div>
  16425.        
  16426.      </div>
  16427.  
  16428.      
  16429.        
  16430.          
  16431.          
  16432.          
  16433.  
  16434.          
  16435.          
  16436.  
  16437.          
  16438.  
  16439.          
  16440.  
  16441.          <div class="productitem--actions" data-product-actions>
  16442.            <div class="productitem--listview-price">
  16443.              
  16444.  
  16445.  
  16446.  
  16447.  
  16448.  
  16449.  
  16450.  
  16451.  
  16452.  
  16453.  
  16454.  
  16455.  
  16456.  
  16457.  
  16458.  
  16459.  
  16460.  
  16461.  
  16462.  
  16463.  
  16464.  
  16465.  
  16466.  
  16467.  
  16468.  
  16469.  
  16470.  
  16471.  
  16472.  
  16473.  
  16474. <div class="price productitem__price ">
  16475.  
  16476.    <div
  16477.      class="price__compare-at visible"
  16478.      data-price-compare-container
  16479.    >
  16480.  
  16481.      
  16482.        <span class="money price__original" data-price-original></span>
  16483.      
  16484.    </div>
  16485.  
  16486.  
  16487.    
  16488.      
  16489.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16490.        
  16491.          <span class="visually-hidden">Original price</span>
  16492.          <span class="money price__compare-at--min" data-price-compare-min>
  16493.            $65.99
  16494.          </span>
  16495.          -
  16496.          <span class="visually-hidden">Original price</span>
  16497.          <span class="money price__compare-at--max" data-price-compare-max>
  16498.            $65.99
  16499.          </span>
  16500.        
  16501.      </div>
  16502.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16503.        <span class="visually-hidden">Original price</span>
  16504.        <span class="money price__compare-at--single" data-price-compare>
  16505.          
  16506.        </span>
  16507.      </div>
  16508.    
  16509.  
  16510.  
  16511.  <div class="price__current price__current--emphasize " data-price-container>
  16512.  
  16513.    
  16514.  
  16515.    
  16516.      
  16517.      
  16518.      <span class="money" data-price>
  16519.        $65.99
  16520.      </span>
  16521.    
  16522.    
  16523.  </div>
  16524.  
  16525.  
  16526.    
  16527.    <div class="price__current--hidden" data-current-price-range-hidden>
  16528.      
  16529.        <span class="money price__current--min" data-price-min>$65.99</span>
  16530.        -
  16531.        <span class="money price__current--max" data-price-max>$65.99</span>
  16532.      
  16533.    </div>
  16534.    <div class="price__current--hidden" data-current-price-hidden>
  16535.      <span class="visually-hidden">Current price</span>
  16536.      <span class="money" data-price>
  16537.        $65.99
  16538.      </span>
  16539.    </div>
  16540.  
  16541.  
  16542.  
  16543.    
  16544.    
  16545.    
  16546.    
  16547.  
  16548.    <div
  16549.      class="
  16550.        productitem__unit-price
  16551.        hidden
  16552.      "
  16553.      data-unit-price
  16554.    >
  16555.      <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>
  16556.    </div>
  16557.  
  16558.  
  16559.  
  16560. </div>
  16561.  
  16562.  
  16563.            </div>
  16564.  
  16565.            <div class="productitem--listview-badge">
  16566.              
  16567.  
  16568.  
  16569.  
  16570.  
  16571.  
  16572.  
  16573.  
  16574.  
  16575.  
  16576.  
  16577.  
  16578.  
  16579.  
  16580.  
  16581.  
  16582.  
  16583.  
  16584.  
  16585.  
  16586.  
  16587.  
  16588.  
  16589.  
  16590.  
  16591.  
  16592.  
  16593.  
  16594.            </div>
  16595.  
  16596.            
  16597.              <div
  16598.                class="
  16599.                  productitem--action
  16600.                  quickshop-button
  16601.                  
  16602.                "
  16603.              >
  16604.                <button
  16605.                  class="productitem--action-trigger button-secondary"
  16606.                  data-quickshop-full
  16607.                  
  16608.                  
  16609.                  type="button"
  16610.                >
  16611.                  Quick shop
  16612.                </button>
  16613.              </div>
  16614.            
  16615.  
  16616.            
  16617.              <div
  16618.                class="
  16619.                  productitem--action
  16620.                  atc--button
  16621.                  
  16622.                "
  16623.              >
  16624.                <button
  16625.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16626.                  type="button"
  16627.                  aria-label="Add to cart"
  16628.                  
  16629.                    data-quick-buy
  16630.                  
  16631.                  data-variant-id="2838819504151"
  16632.                  
  16633.                >
  16634.                  <span class="atc-button--text">
  16635.                    Add to cart
  16636.                  </span>
  16637.                  <span class="atc-button--icon"><svg
  16638.  aria-hidden="true"
  16639.  focusable="false"
  16640.  role="presentation"
  16641.  width="26"
  16642.  height="26"
  16643.  viewBox="0 0 26 26"
  16644.  xmlns="http://www.w3.org/2000/svg"
  16645. >
  16646.  <g fill-rule="nonzero" fill="currentColor">
  16647.    <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"/>
  16648.  </g>
  16649. </svg></span>
  16650.                </button>
  16651.              </div>
  16652.            
  16653.          </div>
  16654.        
  16655.      
  16656.    </div>
  16657.  </div>
  16658.  
  16659.  
  16660.    <script type="application/json" data-quick-buy-settings>
  16661.      {
  16662.        "cart_redirection": true,
  16663.        "money_format": "${{amount}}"
  16664.      }
  16665.    </script>
  16666.  
  16667. </li>
  16668.    
  16669.      
  16670.  
  16671.  
  16672.  
  16673.  
  16674.  
  16675.  
  16676.  
  16677.  
  16678.  
  16679.  
  16680.  
  16681.  
  16682.  
  16683.  
  16684.  
  16685.  
  16686.  
  16687.  
  16688.  
  16689.  
  16690.  
  16691.  
  16692.  
  16693.  
  16694.  
  16695.  
  16696.  
  16697.  
  16698.  
  16699.  
  16700.  
  16701.  
  16702.    
  16703.  
  16704.  
  16705.  
  16706. <li
  16707.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16708.  data-product-item
  16709.  data-product-quickshop-url="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16710.  
  16711. >
  16712.  <div class="productitem" data-product-item-content>
  16713.    
  16714.    
  16715.    
  16716.    
  16717.  
  16718.    
  16719.  
  16720.    
  16721.  
  16722.    <div class="productitem__container">
  16723.      
  16724.  
  16725.      <div class="productitem__image-container">
  16726.        <a target="_blank"
  16727.          class="productitem--image-link"
  16728.          href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16729.          aria-label="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16730.          tabindex="-1"
  16731.          data-product-page-link
  16732.        >
  16733.          <figure
  16734.            class="productitem--image"
  16735.            data-product-item-image
  16736.            
  16737.              style="--product-grid-item-image-aspect-ratio: 0.5231513476157568;"
  16738.            
  16739.          >
  16740.            
  16741.              
  16742.              
  16743.  
  16744.  
  16745.    <noscript data-rimg-noscript>
  16746.      <img loading="lazy"
  16747.        
  16748.          src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16749.        
  16750.  
  16751.        alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16752.        data-rimg="noscript"
  16753.        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"
  16754.        class="productitem--image-primary"
  16755.        
  16756.        
  16757.      >
  16758.    </noscript>
  16759.  
  16760.  
  16761.  <img loading="lazy"
  16762.    
  16763.      src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16764.    
  16765.    alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16766.  
  16767.    
  16768.      data-rimg="lazy"
  16769.      data-rimg-scale="1"
  16770.      data-rimg-template="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_{size}.jpg?v=1728212053"
  16771.      data-rimg-max="757x1447"
  16772.      data-rimg-crop="false"
  16773.      
  16774.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='979'></svg>"
  16775.    
  16776.  
  16777.    class="productitem--image-primary"
  16778.    
  16779.    
  16780.  >
  16781.  
  16782.  
  16783.  
  16784.  <div data-rimg-canvas></div>
  16785.  
  16786.  
  16787.            
  16788.  
  16789.            
  16790.  
  16791.  
  16792.  
  16793.  
  16794.  
  16795.  
  16796.  
  16797.  
  16798.  
  16799.  
  16800.  
  16801.  
  16802.  
  16803.  
  16804.  
  16805.  
  16806.  
  16807.  
  16808.  
  16809.  
  16810.  
  16811.  
  16812.  
  16813.  
  16814.  
  16815.  
  16816.  
  16817.          </figure>
  16818.        </a>
  16819.      </div><div class="productitem--info">
  16820.        
  16821.          
  16822.  
  16823.        
  16824.  
  16825.        
  16826.          
  16827.  
  16828.  
  16829.  
  16830.  
  16831.  
  16832.  
  16833.  
  16834.  
  16835.  
  16836.  
  16837.  
  16838.  
  16839.  
  16840.  
  16841.  
  16842.  
  16843.  
  16844.  
  16845.  
  16846.  
  16847.  
  16848.  
  16849.  
  16850.  
  16851.  
  16852.  
  16853.  
  16854.  
  16855.  
  16856.  
  16857. <div class="price productitem__price ">
  16858.  
  16859.    <div
  16860.      class="price__compare-at visible"
  16861.      data-price-compare-container
  16862.    >
  16863.  
  16864.      
  16865.        <span class="money price__original" data-price-original></span>
  16866.      
  16867.    </div>
  16868.  
  16869.  
  16870.    
  16871.      
  16872.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16873.        
  16874.          <span class="visually-hidden">Original price</span>
  16875.          <span class="money price__compare-at--min" data-price-compare-min>
  16876.            $50.98
  16877.          </span>
  16878.          -
  16879.          <span class="visually-hidden">Original price</span>
  16880.          <span class="money price__compare-at--max" data-price-compare-max>
  16881.            $50.98
  16882.          </span>
  16883.        
  16884.      </div>
  16885.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16886.        <span class="visually-hidden">Original price</span>
  16887.        <span class="money price__compare-at--single" data-price-compare>
  16888.          
  16889.        </span>
  16890.      </div>
  16891.    
  16892.  
  16893.  
  16894.  <div class="price__current price__current--emphasize " data-price-container>
  16895.  
  16896.    
  16897.  
  16898.    
  16899.      
  16900.      
  16901.      <span class="money" data-price>
  16902.        $50.98
  16903.      </span>
  16904.    
  16905.    
  16906.  </div>
  16907.  
  16908.  
  16909.    
  16910.    <div class="price__current--hidden" data-current-price-range-hidden>
  16911.      
  16912.        <span class="money price__current--min" data-price-min>$50.98</span>
  16913.        -
  16914.        <span class="money price__current--max" data-price-max>$50.98</span>
  16915.      
  16916.    </div>
  16917.    <div class="price__current--hidden" data-current-price-hidden>
  16918.      <span class="visually-hidden">Current price</span>
  16919.      <span class="money" data-price>
  16920.        $50.98
  16921.      </span>
  16922.    </div>
  16923.  
  16924.  
  16925.  
  16926.    
  16927.    
  16928.    
  16929.    
  16930.  
  16931.    <div
  16932.      class="
  16933.        productitem__unit-price
  16934.        hidden
  16935.      "
  16936.      data-unit-price
  16937.    >
  16938.      <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>
  16939.    </div>
  16940.  
  16941.  
  16942.  
  16943. </div>
  16944.  
  16945.  
  16946.        
  16947.  
  16948.        <h2 class="productitem--title">
  16949.          <a href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set" data-product-page-link>
  16950.            Acer Aspire 5 A515-41 A515-41G A515-51 A515-51G Right & Left Lcd Hinge Set 33.GP4N2.003
  16951.          </a>
  16952.        </h2>
  16953.  
  16954.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16955.        <div class="star_container 1468469608471"></div>
  16956.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16957.  
  16958.        
  16959.          
  16960.            <span class="productitem--vendor">
  16961.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16962.            </span>
  16963.          
  16964.        
  16965.  
  16966.        
  16967.  
  16968.        
  16969.          
  16970.            <div class="productitem__stock-level">
  16971.              <!--
  16972.  
  16973.  
  16974.  
  16975.  
  16976.  
  16977.  
  16978.  
  16979. <div class="product-stock-level-wrapper" >
  16980.  
  16981.    <span class="
  16982.  product-stock-level
  16983.  product-stock-level--continue-selling
  16984.  
  16985. ">
  16986.      
  16987.  
  16988.      <span class="product-stock-level__text">
  16989.        
  16990.        <div class="product-stock-level__badge-text">
  16991.          
  16992.  
  16993.    In stock
  16994.  
  16995.  
  16996.        </div>
  16997.      </span>
  16998.    </span>
  16999.  
  17000. </div>
  17001. -->
  17002.              
  17003.  
  17004.  
  17005.    
  17006.      <b style="color:green">In stock</b>
  17007.    
  17008.  
  17009.  
  17010.  
  17011.  
  17012.  
  17013.  
  17014.  
  17015.            </div>
  17016.          
  17017.  
  17018.          
  17019.            
  17020.          
  17021.        
  17022.  
  17023.        
  17024.          <div class="productitem--description">
  17025.            <p>
  17026. Description: New Acer right and left laptop lcd hinge set.
  17027.  
  17028.  
  17029. Compatible Part #'s: 33.GP4N2.003, 33.GP4N2.004Compatible Models:Acer Aspire 3 A315-...</p>
  17030.  
  17031.            
  17032.              <a
  17033.                href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  17034.                class="productitem--link"
  17035.                data-product-page-link
  17036.              >
  17037.                View full details
  17038.              </a>
  17039.            
  17040.          </div>
  17041.        
  17042.      </div>
  17043.  
  17044.      
  17045.        
  17046.          
  17047.          
  17048.          
  17049.  
  17050.          
  17051.          
  17052.  
  17053.          
  17054.  
  17055.          
  17056.  
  17057.          <div class="productitem--actions" data-product-actions>
  17058.            <div class="productitem--listview-price">
  17059.              
  17060.  
  17061.  
  17062.  
  17063.  
  17064.  
  17065.  
  17066.  
  17067.  
  17068.  
  17069.  
  17070.  
  17071.  
  17072.  
  17073.  
  17074.  
  17075.  
  17076.  
  17077.  
  17078.  
  17079.  
  17080.  
  17081.  
  17082.  
  17083.  
  17084.  
  17085.  
  17086.  
  17087.  
  17088.  
  17089.  
  17090. <div class="price productitem__price ">
  17091.  
  17092.    <div
  17093.      class="price__compare-at visible"
  17094.      data-price-compare-container
  17095.    >
  17096.  
  17097.      
  17098.        <span class="money price__original" data-price-original></span>
  17099.      
  17100.    </div>
  17101.  
  17102.  
  17103.    
  17104.      
  17105.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17106.        
  17107.          <span class="visually-hidden">Original price</span>
  17108.          <span class="money price__compare-at--min" data-price-compare-min>
  17109.            $50.98
  17110.          </span>
  17111.          -
  17112.          <span class="visually-hidden">Original price</span>
  17113.          <span class="money price__compare-at--max" data-price-compare-max>
  17114.            $50.98
  17115.          </span>
  17116.        
  17117.      </div>
  17118.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17119.        <span class="visually-hidden">Original price</span>
  17120.        <span class="money price__compare-at--single" data-price-compare>
  17121.          
  17122.        </span>
  17123.      </div>
  17124.    
  17125.  
  17126.  
  17127.  <div class="price__current price__current--emphasize " data-price-container>
  17128.  
  17129.    
  17130.  
  17131.    
  17132.      
  17133.      
  17134.      <span class="money" data-price>
  17135.        $50.98
  17136.      </span>
  17137.    
  17138.    
  17139.  </div>
  17140.  
  17141.  
  17142.    
  17143.    <div class="price__current--hidden" data-current-price-range-hidden>
  17144.      
  17145.        <span class="money price__current--min" data-price-min>$50.98</span>
  17146.        -
  17147.        <span class="money price__current--max" data-price-max>$50.98</span>
  17148.      
  17149.    </div>
  17150.    <div class="price__current--hidden" data-current-price-hidden>
  17151.      <span class="visually-hidden">Current price</span>
  17152.      <span class="money" data-price>
  17153.        $50.98
  17154.      </span>
  17155.    </div>
  17156.  
  17157.  
  17158.  
  17159.    
  17160.    
  17161.    
  17162.    
  17163.  
  17164.    <div
  17165.      class="
  17166.        productitem__unit-price
  17167.        hidden
  17168.      "
  17169.      data-unit-price
  17170.    >
  17171.      <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>
  17172.    </div>
  17173.  
  17174.  
  17175.  
  17176. </div>
  17177.  
  17178.  
  17179.            </div>
  17180.  
  17181.            <div class="productitem--listview-badge">
  17182.              
  17183.  
  17184.  
  17185.  
  17186.  
  17187.  
  17188.  
  17189.  
  17190.  
  17191.  
  17192.  
  17193.  
  17194.  
  17195.  
  17196.  
  17197.  
  17198.  
  17199.  
  17200.  
  17201.  
  17202.  
  17203.  
  17204.  
  17205.  
  17206.  
  17207.  
  17208.  
  17209.  
  17210.            </div>
  17211.  
  17212.            
  17213.              <div
  17214.                class="
  17215.                  productitem--action
  17216.                  quickshop-button
  17217.                  
  17218.                "
  17219.              >
  17220.                <button
  17221.                  class="productitem--action-trigger button-secondary"
  17222.                  data-quickshop-full
  17223.                  
  17224.                  
  17225.                  type="button"
  17226.                >
  17227.                  Quick shop
  17228.                </button>
  17229.              </div>
  17230.            
  17231.  
  17232.            
  17233.              <div
  17234.                class="
  17235.                  productitem--action
  17236.                  atc--button
  17237.                  
  17238.                "
  17239.              >
  17240.                <button
  17241.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17242.                  type="button"
  17243.                  aria-label="Add to cart"
  17244.                  
  17245.                    data-quick-buy
  17246.                  
  17247.                  data-variant-id="12807718895639"
  17248.                  
  17249.                >
  17250.                  <span class="atc-button--text">
  17251.                    Add to cart
  17252.                  </span>
  17253.                  <span class="atc-button--icon"><svg
  17254.  aria-hidden="true"
  17255.  focusable="false"
  17256.  role="presentation"
  17257.  width="26"
  17258.  height="26"
  17259.  viewBox="0 0 26 26"
  17260.  xmlns="http://www.w3.org/2000/svg"
  17261. >
  17262.  <g fill-rule="nonzero" fill="currentColor">
  17263.    <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"/>
  17264.  </g>
  17265. </svg></span>
  17266.                </button>
  17267.              </div>
  17268.            
  17269.          </div>
  17270.        
  17271.      
  17272.    </div>
  17273.  </div>
  17274.  
  17275.  
  17276.    <script type="application/json" data-quick-buy-settings>
  17277.      {
  17278.        "cart_redirection": true,
  17279.        "money_format": "${{amount}}"
  17280.      }
  17281.    </script>
  17282.  
  17283. </li>
  17284.    
  17285.      
  17286.  
  17287.  
  17288.  
  17289.  
  17290.  
  17291.  
  17292.  
  17293.  
  17294.  
  17295.  
  17296.  
  17297.  
  17298.  
  17299.  
  17300.  
  17301.  
  17302.  
  17303.  
  17304.  
  17305.  
  17306.  
  17307.  
  17308.  
  17309.  
  17310.  
  17311.  
  17312.  
  17313.  
  17314.  
  17315.  
  17316.  
  17317.  
  17318.    
  17319.  
  17320.  
  17321.  
  17322. <li
  17323.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17324.  data-product-item
  17325.  data-product-quickshop-url="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17326.  
  17327. >
  17328.  <div class="productitem" data-product-item-content>
  17329.    
  17330.    
  17331.    
  17332.    
  17333.  
  17334.    
  17335.  
  17336.    
  17337.  
  17338.    <div class="productitem__container">
  17339.      
  17340.  
  17341.      <div class="productitem__image-container">
  17342.        <a target="_blank"
  17343.          class="productitem--image-link"
  17344.          href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17345.          aria-label="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17346.          tabindex="-1"
  17347.          data-product-page-link
  17348.        >
  17349.          <figure
  17350.            class="productitem--image"
  17351.            data-product-item-image
  17352.            
  17353.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17354.            
  17355.          >
  17356.            
  17357.              
  17358.              
  17359.  
  17360.  
  17361.    <noscript data-rimg-noscript>
  17362.      <img loading="lazy"
  17363.        
  17364.          src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17365.        
  17366.  
  17367.        alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17368.        data-rimg="noscript"
  17369.        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"
  17370.        class="productitem--image-primary"
  17371.        
  17372.        
  17373.      >
  17374.    </noscript>
  17375.  
  17376.  
  17377.  <img loading="lazy"
  17378.    
  17379.      src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17380.    
  17381.    alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17382.  
  17383.    
  17384.      data-rimg="lazy"
  17385.      data-rimg-scale="1"
  17386.      data-rimg-template="//laptopparts.ca/cdn/shop/products/23.apq0n.001_{size}.jpg?v=1715271966"
  17387.      data-rimg-max="600x600"
  17388.      data-rimg-crop="false"
  17389.      
  17390.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17391.    
  17392.  
  17393.    class="productitem--image-primary"
  17394.    
  17395.    
  17396.  >
  17397.  
  17398.  
  17399.  
  17400.  <div data-rimg-canvas></div>
  17401.  
  17402.  
  17403.            
  17404.  
  17405.            
  17406.  
  17407.  
  17408.  
  17409.  
  17410.  
  17411.  
  17412.  
  17413.  
  17414.  
  17415.  
  17416.  
  17417.  
  17418.  
  17419.  
  17420.  
  17421.  
  17422.  
  17423.  
  17424.  
  17425.  
  17426.  
  17427.  
  17428.  
  17429.  
  17430.  
  17431.  
  17432.  
  17433.          </figure>
  17434.        </a>
  17435.      </div><div class="productitem--info">
  17436.        
  17437.          
  17438.  
  17439.        
  17440.  
  17441.        
  17442.          
  17443.  
  17444.  
  17445.  
  17446.  
  17447.  
  17448.  
  17449.  
  17450.  
  17451.  
  17452.  
  17453.  
  17454.  
  17455.  
  17456.  
  17457.  
  17458.  
  17459.  
  17460.  
  17461.  
  17462.  
  17463.  
  17464.  
  17465.  
  17466.  
  17467.  
  17468.  
  17469.  
  17470.  
  17471.  
  17472.  
  17473. <div class="price productitem__price ">
  17474.  
  17475.    <div
  17476.      class="price__compare-at visible"
  17477.      data-price-compare-container
  17478.    >
  17479.  
  17480.      
  17481.        <span class="money price__original" data-price-original></span>
  17482.      
  17483.    </div>
  17484.  
  17485.  
  17486.    
  17487.      
  17488.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17489.        
  17490.          <span class="visually-hidden">Original price</span>
  17491.          <span class="money price__compare-at--min" data-price-compare-min>
  17492.            $58.99
  17493.          </span>
  17494.          -
  17495.          <span class="visually-hidden">Original price</span>
  17496.          <span class="money price__compare-at--max" data-price-compare-max>
  17497.            $58.99
  17498.          </span>
  17499.        
  17500.      </div>
  17501.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17502.        <span class="visually-hidden">Original price</span>
  17503.        <span class="money price__compare-at--single" data-price-compare>
  17504.          
  17505.        </span>
  17506.      </div>
  17507.    
  17508.  
  17509.  
  17510.  <div class="price__current price__current--emphasize " data-price-container>
  17511.  
  17512.    
  17513.  
  17514.    
  17515.      
  17516.      
  17517.      <span class="money" data-price>
  17518.        $58.99
  17519.      </span>
  17520.    
  17521.    
  17522.  </div>
  17523.  
  17524.  
  17525.    
  17526.    <div class="price__current--hidden" data-current-price-range-hidden>
  17527.      
  17528.        <span class="money price__current--min" data-price-min>$58.99</span>
  17529.        -
  17530.        <span class="money price__current--max" data-price-max>$58.99</span>
  17531.      
  17532.    </div>
  17533.    <div class="price__current--hidden" data-current-price-hidden>
  17534.      <span class="visually-hidden">Current price</span>
  17535.      <span class="money" data-price>
  17536.        $58.99
  17537.      </span>
  17538.    </div>
  17539.  
  17540.  
  17541.  
  17542.    
  17543.    
  17544.    
  17545.    
  17546.  
  17547.    <div
  17548.      class="
  17549.        productitem__unit-price
  17550.        hidden
  17551.      "
  17552.      data-unit-price
  17553.    >
  17554.      <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>
  17555.    </div>
  17556.  
  17557.  
  17558.  
  17559. </div>
  17560.  
  17561.  
  17562.        
  17563.  
  17564.        <h2 class="productitem--title">
  17565.          <a href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a" data-product-page-link>
  17566.            Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A
  17567.          </a>
  17568.        </h2>
  17569.  
  17570.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  17571.        <div class="star_container 4451325446"></div>
  17572.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  17573.  
  17574.        
  17575.          
  17576.            <span class="productitem--vendor">
  17577.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  17578.            </span>
  17579.          
  17580.        
  17581.  
  17582.        
  17583.  
  17584.        
  17585.          
  17586.            <div class="productitem__stock-level">
  17587.              <!--
  17588.  
  17589.  
  17590.  
  17591.  
  17592.  
  17593.  
  17594.  
  17595. <div class="product-stock-level-wrapper" >
  17596.  
  17597.    <span class="
  17598.  product-stock-level
  17599.  product-stock-level--continue-selling
  17600.  
  17601. ">
  17602.      
  17603.  
  17604.      <span class="product-stock-level__text">
  17605.        
  17606.        <div class="product-stock-level__badge-text">
  17607.          
  17608.  
  17609.    In stock
  17610.  
  17611.  
  17612.        </div>
  17613.      </span>
  17614.    </span>
  17615.  
  17616. </div>
  17617. -->
  17618.              
  17619.  
  17620.  
  17621.    
  17622.      <b style="color:green">In stock</b>
  17623.    
  17624.  
  17625.  
  17626.  
  17627.  
  17628.  
  17629.  
  17630.  
  17631.            </div>
  17632.          
  17633.  
  17634.          
  17635.            
  17636.          
  17637.        
  17638.  
  17639.        
  17640.          <div class="productitem--description">
  17641.            <p>Genuine Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A</p>
  17642.  
  17643.            
  17644.          </div>
  17645.        
  17646.      </div>
  17647.  
  17648.      
  17649.        
  17650.          
  17651.          
  17652.          
  17653.  
  17654.          
  17655.          
  17656.  
  17657.          
  17658.  
  17659.          
  17660.  
  17661.          <div class="productitem--actions" data-product-actions>
  17662.            <div class="productitem--listview-price">
  17663.              
  17664.  
  17665.  
  17666.  
  17667.  
  17668.  
  17669.  
  17670.  
  17671.  
  17672.  
  17673.  
  17674.  
  17675.  
  17676.  
  17677.  
  17678.  
  17679.  
  17680.  
  17681.  
  17682.  
  17683.  
  17684.  
  17685.  
  17686.  
  17687.  
  17688.  
  17689.  
  17690.  
  17691.  
  17692.  
  17693.  
  17694. <div class="price productitem__price ">
  17695.  
  17696.    <div
  17697.      class="price__compare-at visible"
  17698.      data-price-compare-container
  17699.    >
  17700.  
  17701.      
  17702.        <span class="money price__original" data-price-original></span>
  17703.      
  17704.    </div>
  17705.  
  17706.  
  17707.    
  17708.      
  17709.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17710.        
  17711.          <span class="visually-hidden">Original price</span>
  17712.          <span class="money price__compare-at--min" data-price-compare-min>
  17713.            $58.99
  17714.          </span>
  17715.          -
  17716.          <span class="visually-hidden">Original price</span>
  17717.          <span class="money price__compare-at--max" data-price-compare-max>
  17718.            $58.99
  17719.          </span>
  17720.        
  17721.      </div>
  17722.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17723.        <span class="visually-hidden">Original price</span>
  17724.        <span class="money price__compare-at--single" data-price-compare>
  17725.          
  17726.        </span>
  17727.      </div>
  17728.    
  17729.  
  17730.  
  17731.  <div class="price__current price__current--emphasize " data-price-container>
  17732.  
  17733.    
  17734.  
  17735.    
  17736.      
  17737.      
  17738.      <span class="money" data-price>
  17739.        $58.99
  17740.      </span>
  17741.    
  17742.    
  17743.  </div>
  17744.  
  17745.  
  17746.    
  17747.    <div class="price__current--hidden" data-current-price-range-hidden>
  17748.      
  17749.        <span class="money price__current--min" data-price-min>$58.99</span>
  17750.        -
  17751.        <span class="money price__current--max" data-price-max>$58.99</span>
  17752.      
  17753.    </div>
  17754.    <div class="price__current--hidden" data-current-price-hidden>
  17755.      <span class="visually-hidden">Current price</span>
  17756.      <span class="money" data-price>
  17757.        $58.99
  17758.      </span>
  17759.    </div>
  17760.  
  17761.  
  17762.  
  17763.    
  17764.    
  17765.    
  17766.    
  17767.  
  17768.    <div
  17769.      class="
  17770.        productitem__unit-price
  17771.        hidden
  17772.      "
  17773.      data-unit-price
  17774.    >
  17775.      <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>
  17776.    </div>
  17777.  
  17778.  
  17779.  
  17780. </div>
  17781.  
  17782.  
  17783.            </div>
  17784.  
  17785.            <div class="productitem--listview-badge">
  17786.              
  17787.  
  17788.  
  17789.  
  17790.  
  17791.  
  17792.  
  17793.  
  17794.  
  17795.  
  17796.  
  17797.  
  17798.  
  17799.  
  17800.  
  17801.  
  17802.  
  17803.  
  17804.  
  17805.  
  17806.  
  17807.  
  17808.  
  17809.  
  17810.  
  17811.  
  17812.  
  17813.  
  17814.            </div>
  17815.  
  17816.            
  17817.              <div
  17818.                class="
  17819.                  productitem--action
  17820.                  quickshop-button
  17821.                  
  17822.                "
  17823.              >
  17824.                <button
  17825.                  class="productitem--action-trigger button-secondary"
  17826.                  data-quickshop-full
  17827.                  
  17828.                  
  17829.                  type="button"
  17830.                >
  17831.                  Quick shop
  17832.                </button>
  17833.              </div>
  17834.            
  17835.  
  17836.            
  17837.              <div
  17838.                class="
  17839.                  productitem--action
  17840.                  atc--button
  17841.                  
  17842.                "
  17843.              >
  17844.                <button
  17845.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17846.                  type="button"
  17847.                  aria-label="Add to cart"
  17848.                  
  17849.                    data-quick-buy
  17850.                  
  17851.                  data-variant-id="39666095259735"
  17852.                  
  17853.                >
  17854.                  <span class="atc-button--text">
  17855.                    Add to cart
  17856.                  </span>
  17857.                  <span class="atc-button--icon"><svg
  17858.  aria-hidden="true"
  17859.  focusable="false"
  17860.  role="presentation"
  17861.  width="26"
  17862.  height="26"
  17863.  viewBox="0 0 26 26"
  17864.  xmlns="http://www.w3.org/2000/svg"
  17865. >
  17866.  <g fill-rule="nonzero" fill="currentColor">
  17867.    <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"/>
  17868.  </g>
  17869. </svg></span>
  17870.                </button>
  17871.              </div>
  17872.            
  17873.          </div>
  17874.        
  17875.      
  17876.    </div>
  17877.  </div>
  17878.  
  17879.  
  17880.    <script type="application/json" data-quick-buy-settings>
  17881.      {
  17882.        "cart_redirection": true,
  17883.        "money_format": "${{amount}}"
  17884.      }
  17885.    </script>
  17886.  
  17887. </li>
  17888.    
  17889.      
  17890.  
  17891.  
  17892.  
  17893.  
  17894.  
  17895.  
  17896.  
  17897.  
  17898.  
  17899.  
  17900.  
  17901.  
  17902.  
  17903.  
  17904.  
  17905.  
  17906.  
  17907.  
  17908.  
  17909.  
  17910.  
  17911.  
  17912.  
  17913.  
  17914.  
  17915.  
  17916.  
  17917.  
  17918.  
  17919.  
  17920.  
  17921.  
  17922.    
  17923.  
  17924.  
  17925.  
  17926. <li
  17927.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17928.  data-product-item
  17929.  data-product-quickshop-url="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17930.  
  17931. >
  17932.  <div class="productitem" data-product-item-content>
  17933.    
  17934.    
  17935.    
  17936.    
  17937.  
  17938.    
  17939.  
  17940.    
  17941.  
  17942.    <div class="productitem__container">
  17943.      
  17944.  
  17945.      <div class="productitem__image-container">
  17946.        <a target="_blank"
  17947.          class="productitem--image-link"
  17948.          href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17949.          aria-label="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17950.          tabindex="-1"
  17951.          data-product-page-link
  17952.        >
  17953.          <figure
  17954.            class="productitem--image"
  17955.            data-product-item-image
  17956.            
  17957.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17958.            
  17959.          >
  17960.            
  17961.              
  17962.              
  17963.  
  17964.  
  17965.    <noscript data-rimg-noscript>
  17966.      <img loading="lazy"
  17967.        
  17968.          src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  17969.        
  17970.  
  17971.        alt=""
  17972.        data-rimg="noscript"
  17973.        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"
  17974.        class="productitem--image-primary"
  17975.        
  17976.        
  17977.      >
  17978.    </noscript>
  17979.  
  17980.  
  17981.  <img loading="lazy"
  17982.    
  17983.      src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  17984.    
  17985.    alt=""
  17986.  
  17987.    
  17988.      data-rimg="lazy"
  17989.      data-rimg-scale="1"
  17990.      data-rimg-template="//laptopparts.ca/cdn/shop/products/55.r4f02.002_{size}.png?v=1697125258"
  17991.      data-rimg-max="603x603"
  17992.      data-rimg-crop="false"
  17993.      
  17994.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17995.    
  17996.  
  17997.    class="productitem--image-primary"
  17998.    
  17999.    
  18000.  >
  18001.  
  18002.  
  18003.  
  18004.  <div data-rimg-canvas></div>
  18005.  
  18006.  
  18007.            
  18008.  
  18009.            
  18010.  
  18011.  
  18012.  
  18013.  
  18014.  
  18015.  
  18016.  
  18017.  
  18018.  
  18019.  
  18020.  
  18021.  
  18022.  
  18023.  
  18024.  
  18025.  
  18026.  
  18027.  
  18028.  
  18029.  
  18030.  
  18031.  
  18032.  
  18033.  
  18034.  
  18035.  
  18036.  
  18037.          </figure>
  18038.        </a>
  18039.      </div><div class="productitem--info">
  18040.        
  18041.          
  18042.  
  18043.        
  18044.  
  18045.        
  18046.          
  18047.  
  18048.  
  18049.  
  18050.  
  18051.  
  18052.  
  18053.  
  18054.  
  18055.  
  18056.  
  18057.  
  18058.  
  18059.  
  18060.  
  18061.  
  18062.  
  18063.  
  18064.  
  18065.  
  18066.  
  18067.  
  18068.  
  18069.  
  18070.  
  18071.  
  18072.  
  18073.  
  18074.  
  18075.  
  18076.  
  18077. <div class="price productitem__price ">
  18078.  
  18079.    <div
  18080.      class="price__compare-at visible"
  18081.      data-price-compare-container
  18082.    >
  18083.  
  18084.      
  18085.        <span class="money price__original" data-price-original></span>
  18086.      
  18087.    </div>
  18088.  
  18089.  
  18090.    
  18091.      
  18092.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18093.        
  18094.          <span class="visually-hidden">Original price</span>
  18095.          <span class="money price__compare-at--min" data-price-compare-min>
  18096.            $56.99
  18097.          </span>
  18098.          -
  18099.          <span class="visually-hidden">Original price</span>
  18100.          <span class="money price__compare-at--max" data-price-compare-max>
  18101.            $56.99
  18102.          </span>
  18103.        
  18104.      </div>
  18105.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18106.        <span class="visually-hidden">Original price</span>
  18107.        <span class="money price__compare-at--single" data-price-compare>
  18108.          
  18109.        </span>
  18110.      </div>
  18111.    
  18112.  
  18113.  
  18114.  <div class="price__current price__current--emphasize " data-price-container>
  18115.  
  18116.    
  18117.  
  18118.    
  18119.      
  18120.      
  18121.      <span class="money" data-price>
  18122.        $56.99
  18123.      </span>
  18124.    
  18125.    
  18126.  </div>
  18127.  
  18128.  
  18129.    
  18130.    <div class="price__current--hidden" data-current-price-range-hidden>
  18131.      
  18132.        <span class="money price__current--min" data-price-min>$56.99</span>
  18133.        -
  18134.        <span class="money price__current--max" data-price-max>$56.99</span>
  18135.      
  18136.    </div>
  18137.    <div class="price__current--hidden" data-current-price-hidden>
  18138.      <span class="visually-hidden">Current price</span>
  18139.      <span class="money" data-price>
  18140.        $56.99
  18141.      </span>
  18142.    </div>
  18143.  
  18144.  
  18145.  
  18146.    
  18147.    
  18148.    
  18149.    
  18150.  
  18151.    <div
  18152.      class="
  18153.        productitem__unit-price
  18154.        hidden
  18155.      "
  18156.      data-unit-price
  18157.    >
  18158.      <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>
  18159.    </div>
  18160.  
  18161.  
  18162.  
  18163. </div>
  18164.  
  18165.  
  18166.        
  18167.  
  18168.        <h2 class="productitem--title">
  18169.          <a href="/products/55-r4f02-002-acer-aspire-5742z-usb-board" data-product-page-link>
  18170.            Acer Aspire 5742Z USB Board 55.R4F02.002
  18171.          </a>
  18172.        </h2>
  18173.  
  18174.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18175.        <div class="star_container 4605263622"></div>
  18176.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18177.  
  18178.        
  18179.          
  18180.            <span class="productitem--vendor">
  18181.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18182.            </span>
  18183.          
  18184.        
  18185.  
  18186.        
  18187.  
  18188.        
  18189.          
  18190.            <div class="productitem__stock-level">
  18191.              <!--
  18192.  
  18193.  
  18194.  
  18195.  
  18196.  
  18197.  
  18198.  
  18199. <div class="product-stock-level-wrapper" >
  18200.  
  18201.    <span class="
  18202.  product-stock-level
  18203.  product-stock-level--continue-selling
  18204.  
  18205. ">
  18206.      
  18207.  
  18208.      <span class="product-stock-level__text">
  18209.        
  18210.        <div class="product-stock-level__badge-text">
  18211.          
  18212.  
  18213.    In stock
  18214.  
  18215.  
  18216.        </div>
  18217.      </span>
  18218.    </span>
  18219.  
  18220. </div>
  18221. -->
  18222.              
  18223.  
  18224.  
  18225.    
  18226.      <b style="color:green">In stock</b>
  18227.    
  18228.  
  18229.  
  18230.  
  18231.  
  18232.  
  18233.  
  18234.  
  18235.            </div>
  18236.          
  18237.  
  18238.          
  18239.            
  18240.          
  18241.        
  18242.  
  18243.        
  18244.          <div class="productitem--description">
  18245.            <p>55.R4F02.002 Acer Aspire 5742Z USB Board - Pulled from working laptops
  18246. Compatible Models:
  18247. Aspire 5252, 5333, 5336, 5552, 5733, 5736, 5742
  18248. Gateway N...</p>
  18249.  
  18250.            
  18251.              <a
  18252.                href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18253.                class="productitem--link"
  18254.                data-product-page-link
  18255.              >
  18256.                View full details
  18257.              </a>
  18258.            
  18259.          </div>
  18260.        
  18261.      </div>
  18262.  
  18263.      
  18264.        
  18265.          
  18266.          
  18267.          
  18268.  
  18269.          
  18270.          
  18271.  
  18272.          
  18273.  
  18274.          
  18275.  
  18276.          <div class="productitem--actions" data-product-actions>
  18277.            <div class="productitem--listview-price">
  18278.              
  18279.  
  18280.  
  18281.  
  18282.  
  18283.  
  18284.  
  18285.  
  18286.  
  18287.  
  18288.  
  18289.  
  18290.  
  18291.  
  18292.  
  18293.  
  18294.  
  18295.  
  18296.  
  18297.  
  18298.  
  18299.  
  18300.  
  18301.  
  18302.  
  18303.  
  18304.  
  18305.  
  18306.  
  18307.  
  18308.  
  18309. <div class="price productitem__price ">
  18310.  
  18311.    <div
  18312.      class="price__compare-at visible"
  18313.      data-price-compare-container
  18314.    >
  18315.  
  18316.      
  18317.        <span class="money price__original" data-price-original></span>
  18318.      
  18319.    </div>
  18320.  
  18321.  
  18322.    
  18323.      
  18324.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18325.        
  18326.          <span class="visually-hidden">Original price</span>
  18327.          <span class="money price__compare-at--min" data-price-compare-min>
  18328.            $56.99
  18329.          </span>
  18330.          -
  18331.          <span class="visually-hidden">Original price</span>
  18332.          <span class="money price__compare-at--max" data-price-compare-max>
  18333.            $56.99
  18334.          </span>
  18335.        
  18336.      </div>
  18337.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18338.        <span class="visually-hidden">Original price</span>
  18339.        <span class="money price__compare-at--single" data-price-compare>
  18340.          
  18341.        </span>
  18342.      </div>
  18343.    
  18344.  
  18345.  
  18346.  <div class="price__current price__current--emphasize " data-price-container>
  18347.  
  18348.    
  18349.  
  18350.    
  18351.      
  18352.      
  18353.      <span class="money" data-price>
  18354.        $56.99
  18355.      </span>
  18356.    
  18357.    
  18358.  </div>
  18359.  
  18360.  
  18361.    
  18362.    <div class="price__current--hidden" data-current-price-range-hidden>
  18363.      
  18364.        <span class="money price__current--min" data-price-min>$56.99</span>
  18365.        -
  18366.        <span class="money price__current--max" data-price-max>$56.99</span>
  18367.      
  18368.    </div>
  18369.    <div class="price__current--hidden" data-current-price-hidden>
  18370.      <span class="visually-hidden">Current price</span>
  18371.      <span class="money" data-price>
  18372.        $56.99
  18373.      </span>
  18374.    </div>
  18375.  
  18376.  
  18377.  
  18378.    
  18379.    
  18380.    
  18381.    
  18382.  
  18383.    <div
  18384.      class="
  18385.        productitem__unit-price
  18386.        hidden
  18387.      "
  18388.      data-unit-price
  18389.    >
  18390.      <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>
  18391.    </div>
  18392.  
  18393.  
  18394.  
  18395. </div>
  18396.  
  18397.  
  18398.            </div>
  18399.  
  18400.            <div class="productitem--listview-badge">
  18401.              
  18402.  
  18403.  
  18404.  
  18405.  
  18406.  
  18407.  
  18408.  
  18409.  
  18410.  
  18411.  
  18412.  
  18413.  
  18414.  
  18415.  
  18416.  
  18417.  
  18418.  
  18419.  
  18420.  
  18421.  
  18422.  
  18423.  
  18424.  
  18425.  
  18426.  
  18427.  
  18428.  
  18429.            </div>
  18430.  
  18431.            
  18432.              <div
  18433.                class="
  18434.                  productitem--action
  18435.                  quickshop-button
  18436.                  
  18437.                "
  18438.              >
  18439.                <button
  18440.                  class="productitem--action-trigger button-secondary"
  18441.                  data-quickshop-full
  18442.                  
  18443.                  
  18444.                  type="button"
  18445.                >
  18446.                  Quick shop
  18447.                </button>
  18448.              </div>
  18449.            
  18450.  
  18451.            
  18452.              <div
  18453.                class="
  18454.                  productitem--action
  18455.                  atc--button
  18456.                  
  18457.                "
  18458.              >
  18459.                <button
  18460.                  class="productitem--action-trigger productitem--action-atc button-primary"
  18461.                  type="button"
  18462.                  aria-label="Add to cart"
  18463.                  
  18464.                    data-quick-buy
  18465.                  
  18466.                  data-variant-id="15084894150"
  18467.                  
  18468.                >
  18469.                  <span class="atc-button--text">
  18470.                    Add to cart
  18471.                  </span>
  18472.                  <span class="atc-button--icon"><svg
  18473.  aria-hidden="true"
  18474.  focusable="false"
  18475.  role="presentation"
  18476.  width="26"
  18477.  height="26"
  18478.  viewBox="0 0 26 26"
  18479.  xmlns="http://www.w3.org/2000/svg"
  18480. >
  18481.  <g fill-rule="nonzero" fill="currentColor">
  18482.    <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"/>
  18483.  </g>
  18484. </svg></span>
  18485.                </button>
  18486.              </div>
  18487.            
  18488.          </div>
  18489.        
  18490.      
  18491.    </div>
  18492.  </div>
  18493.  
  18494.  
  18495.    <script type="application/json" data-quick-buy-settings>
  18496.      {
  18497.        "cart_redirection": true,
  18498.        "money_format": "${{amount}}"
  18499.      }
  18500.    </script>
  18501.  
  18502. </li>
  18503.    
  18504.      
  18505.  
  18506.  
  18507.  
  18508.  
  18509.  
  18510.  
  18511.  
  18512.  
  18513.  
  18514.  
  18515.  
  18516.  
  18517.  
  18518.  
  18519.  
  18520.  
  18521.  
  18522.  
  18523.  
  18524.  
  18525.  
  18526.  
  18527.  
  18528.  
  18529.  
  18530.  
  18531.  
  18532.  
  18533.  
  18534.  
  18535.  
  18536.  
  18537.    
  18538.  
  18539.  
  18540.  
  18541. <li
  18542.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  18543.  data-product-item
  18544.  data-product-quickshop-url="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18545.  
  18546. >
  18547.  <div class="productitem" data-product-item-content>
  18548.    
  18549.    
  18550.    
  18551.    
  18552.  
  18553.    
  18554.  
  18555.    
  18556.  
  18557.    <div class="productitem__container">
  18558.      
  18559.  
  18560.      <div class="productitem__image-container">
  18561.        <a target="_blank"
  18562.          class="productitem--image-link"
  18563.          href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18564.          aria-label="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18565.          tabindex="-1"
  18566.          data-product-page-link
  18567.        >
  18568.          <figure
  18569.            class="productitem--image"
  18570.            data-product-item-image
  18571.            
  18572.              style="--product-grid-item-image-aspect-ratio: 1.3333333333333333;"
  18573.            
  18574.          >
  18575.            
  18576.              
  18577.              
  18578.  
  18579.  
  18580.    <noscript data-rimg-noscript>
  18581.      <img loading="lazy"
  18582.        
  18583.          src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18584.        
  18585.  
  18586.        alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18587.        data-rimg="noscript"
  18588.        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"
  18589.        class="productitem--image-primary"
  18590.        
  18591.        
  18592.      >
  18593.    </noscript>
  18594.  
  18595.  
  18596.  <img loading="lazy"
  18597.    
  18598.      src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18599.    
  18600.    alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18601.  
  18602.    
  18603.      data-rimg="lazy"
  18604.      data-rimg-scale="1"
  18605.      data-rimg-template="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_{size}.jpg?v=1729362531"
  18606.      data-rimg-max="1500x1125"
  18607.      data-rimg-crop="false"
  18608.      
  18609.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='384'></svg>"
  18610.    
  18611.  
  18612.    class="productitem--image-primary"
  18613.    
  18614.    
  18615.  >
  18616.  
  18617.  
  18618.  
  18619.  <div data-rimg-canvas></div>
  18620.  
  18621.  
  18622.            
  18623.  
  18624.            
  18625.  
  18626.  
  18627.  
  18628.  
  18629.  
  18630.  
  18631.  
  18632.  
  18633.  
  18634.  
  18635.  
  18636.  
  18637.  
  18638.  
  18639.  
  18640.  
  18641.  
  18642.  
  18643.  
  18644.  
  18645.  
  18646.  
  18647.  
  18648.  
  18649.  
  18650.  
  18651.  
  18652.          </figure>
  18653.        </a>
  18654.      </div><div class="productitem--info">
  18655.        
  18656.          
  18657.  
  18658.        
  18659.  
  18660.        
  18661.          
  18662.  
  18663.  
  18664.  
  18665.  
  18666.  
  18667.  
  18668.  
  18669.  
  18670.  
  18671.  
  18672.  
  18673.  
  18674.  
  18675.  
  18676.  
  18677.  
  18678.  
  18679.  
  18680.  
  18681.  
  18682.  
  18683.  
  18684.  
  18685.  
  18686.  
  18687.  
  18688.  
  18689.  
  18690.  
  18691.  
  18692. <div class="price productitem__price ">
  18693.  
  18694.    <div
  18695.      class="price__compare-at visible"
  18696.      data-price-compare-container
  18697.    >
  18698.  
  18699.      
  18700.        <span class="money price__original" data-price-original></span>
  18701.      
  18702.    </div>
  18703.  
  18704.  
  18705.    
  18706.      
  18707.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18708.        
  18709.          <span class="visually-hidden">Original price</span>
  18710.          <span class="money price__compare-at--min" data-price-compare-min>
  18711.            $56.99
  18712.          </span>
  18713.          -
  18714.          <span class="visually-hidden">Original price</span>
  18715.          <span class="money price__compare-at--max" data-price-compare-max>
  18716.            $56.99
  18717.          </span>
  18718.        
  18719.      </div>
  18720.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18721.        <span class="visually-hidden">Original price</span>
  18722.        <span class="money price__compare-at--single" data-price-compare>
  18723.          
  18724.        </span>
  18725.      </div>
  18726.    
  18727.  
  18728.  
  18729.  <div class="price__current price__current--emphasize " data-price-container>
  18730.  
  18731.    
  18732.  
  18733.    
  18734.      
  18735.      
  18736.      <span class="money" data-price>
  18737.        $56.99
  18738.      </span>
  18739.    
  18740.    
  18741.  </div>
  18742.  
  18743.  
  18744.    
  18745.    <div class="price__current--hidden" data-current-price-range-hidden>
  18746.      
  18747.        <span class="money price__current--min" data-price-min>$56.99</span>
  18748.        -
  18749.        <span class="money price__current--max" data-price-max>$56.99</span>
  18750.      
  18751.    </div>
  18752.    <div class="price__current--hidden" data-current-price-hidden>
  18753.      <span class="visually-hidden">Current price</span>
  18754.      <span class="money" data-price>
  18755.        $56.99
  18756.      </span>
  18757.    </div>
  18758.  
  18759.  
  18760.  
  18761.    
  18762.    
  18763.    
  18764.    
  18765.  
  18766.    <div
  18767.      class="
  18768.        productitem__unit-price
  18769.        hidden
  18770.      "
  18771.      data-unit-price
  18772.    >
  18773.      <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>
  18774.    </div>
  18775.  
  18776.  
  18777.  
  18778. </div>
  18779.  
  18780.  
  18781.        
  18782.  
  18783.        <h2 class="productitem--title">
  18784.          <a href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1" data-product-page-link>
  18785.            Acer Aspire 7 A715-72 A715-72G A717-72 A717-72G Laptop Cpu Fan 23.GXBN2.001
  18786.          </a>
  18787.        </h2>
  18788.  
  18789.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18790.        <div class="star_container 3929786187863"></div>
  18791.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18792.  
  18793.        
  18794.          
  18795.            <span class="productitem--vendor">
  18796.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18797.            </span>
  18798.          
  18799.        
  18800.  
  18801.        
  18802.  
  18803.        
  18804.          
  18805.            <div class="productitem__stock-level">
  18806.              <!--
  18807.  
  18808.  
  18809.  
  18810.  
  18811.  
  18812.  
  18813.  
  18814. <div class="product-stock-level-wrapper" >
  18815.  
  18816.    <span class="
  18817.  product-stock-level
  18818.  product-stock-level--continue-selling
  18819.  
  18820. ">
  18821.      
  18822.  
  18823.      <span class="product-stock-level__text">
  18824.        
  18825.        <div class="product-stock-level__badge-text">
  18826.          
  18827.  
  18828.    In stock
  18829.  
  18830.  
  18831.        </div>
  18832.      </span>
  18833.    </span>
  18834.  
  18835. </div>
  18836. -->
  18837.              
  18838.  
  18839.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  18840.  
  18841.  
  18842.  
  18843.  
  18844.  
  18845.  
  18846.  
  18847.            </div>
  18848.          
  18849.  
  18850.          
  18851.            
  18852.          
  18853.        
  18854.  
  18855.        
  18856.          <div class="productitem--description">
  18857.            <p>
  18858. Description: New Acer laptop cpu fan.
  18859.  
  18860. Compatible Part #'s: 23.GXBN2.001
  18861.  
  18862. Compatible Models:
  18863. Acer Aspire 7 A715-72, A715-72G
  18864. Acer Aspire 7 A717-7...</p>
  18865.  
  18866.            
  18867.              <a
  18868.                href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18869.                class="productitem--link"
  18870.                data-product-page-link
  18871.              >
  18872.                View full details
  18873.              </a>
  18874.            
  18875.          </div>
  18876.        
  18877.      </div>
  18878.  
  18879.      
  18880.        
  18881.          
  18882.          
  18883.          
  18884.  
  18885.          
  18886.          
  18887.  
  18888.          
  18889.  
  18890.          
  18891.  
  18892.          <div class="productitem--actions" data-product-actions>
  18893.            <div class="productitem--listview-price">
  18894.              
  18895.  
  18896.  
  18897.  
  18898.  
  18899.  
  18900.  
  18901.  
  18902.  
  18903.  
  18904.  
  18905.  
  18906.  
  18907.  
  18908.  
  18909.  
  18910.  
  18911.  
  18912.  
  18913.  
  18914.  
  18915.  
  18916.  
  18917.  
  18918.  
  18919.  
  18920.  
  18921.  
  18922.  
  18923.  
  18924.  
  18925. <div class="price productitem__price ">
  18926.  
  18927.    <div
  18928.      class="price__compare-at visible"
  18929.      data-price-compare-container
  18930.    >
  18931.  
  18932.      
  18933.        <span class="money price__original" data-price-original></span>
  18934.      
  18935.    </div>
  18936.  
  18937.  
  18938.    
  18939.      
  18940.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18941.        
  18942.          <span class="visually-hidden">Original price</span>
  18943.          <span class="money price__compare-at--min" data-price-compare-min>
  18944.            $56.99
  18945.          </span>
  18946.          -
  18947.          <span class="visually-hidden">Original price</span>
  18948.          <span class="money price__compare-at--max" data-price-compare-max>
  18949.            $56.99
  18950.          </span>
  18951.        
  18952.      </div>
  18953.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18954.        <span class="visually-hidden">Original price</span>
  18955.        <span class="money price__compare-at--single" data-price-compare>
  18956.          
  18957.        </span>
  18958.      </div>
  18959.    
  18960.  
  18961.  
  18962.  <div class="price__current price__current--emphasize " data-price-container>
  18963.  
  18964.    
  18965.  
  18966.    
  18967.      
  18968.      
  18969.      <span class="money" data-price>
  18970.        $56.99
  18971.      </span>
  18972.    
  18973.    
  18974.  </div>
  18975.  
  18976.  
  18977.    
  18978.    <div class="price__current--hidden" data-current-price-range-hidden>
  18979.      
  18980.        <span class="money price__current--min" data-price-min>$56.99</span>
  18981.        -
  18982.        <span class="money price__current--max" data-price-max>$56.99</span>
  18983.      
  18984.    </div>
  18985.    <div class="price__current--hidden" data-current-price-hidden>
  18986.      <span class="visually-hidden">Current price</span>
  18987.      <span class="money" data-price>
  18988.        $56.99
  18989.      </span>
  18990.    </div>
  18991.  
  18992.  
  18993.  
  18994.    
  18995.    
  18996.    
  18997.    
  18998.  
  18999.    <div
  19000.      class="
  19001.        productitem__unit-price
  19002.        hidden
  19003.      "
  19004.      data-unit-price
  19005.    >
  19006.      <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>
  19007.    </div>
  19008.  
  19009.  
  19010.  
  19011. </div>
  19012.  
  19013.  
  19014.            </div>
  19015.  
  19016.            <div class="productitem--listview-badge">
  19017.              
  19018.  
  19019.  
  19020.  
  19021.  
  19022.  
  19023.  
  19024.  
  19025.  
  19026.  
  19027.  
  19028.  
  19029.  
  19030.  
  19031.  
  19032.  
  19033.  
  19034.  
  19035.  
  19036.  
  19037.  
  19038.  
  19039.  
  19040.  
  19041.  
  19042.  
  19043.  
  19044.  
  19045.            </div>
  19046.  
  19047.            
  19048.              <div
  19049.                class="
  19050.                  productitem--action
  19051.                  quickshop-button
  19052.                  
  19053.                "
  19054.              >
  19055.                <button
  19056.                  class="productitem--action-trigger button-secondary"
  19057.                  data-quickshop-full
  19058.                  
  19059.                  
  19060.                  type="button"
  19061.                >
  19062.                  Quick shop
  19063.                </button>
  19064.              </div>
  19065.            
  19066.  
  19067.            
  19068.              <div
  19069.                class="
  19070.                  productitem--action
  19071.                  atc--button
  19072.                  
  19073.                "
  19074.              >
  19075.                <button
  19076.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19077.                  type="button"
  19078.                  aria-label="Add to cart"
  19079.                  
  19080.                    data-quick-buy
  19081.                  
  19082.                  data-variant-id="29440907575383"
  19083.                  
  19084.                >
  19085.                  <span class="atc-button--text">
  19086.                    Add to cart
  19087.                  </span>
  19088.                  <span class="atc-button--icon"><svg
  19089.  aria-hidden="true"
  19090.  focusable="false"
  19091.  role="presentation"
  19092.  width="26"
  19093.  height="26"
  19094.  viewBox="0 0 26 26"
  19095.  xmlns="http://www.w3.org/2000/svg"
  19096. >
  19097.  <g fill-rule="nonzero" fill="currentColor">
  19098.    <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"/>
  19099.  </g>
  19100. </svg></span>
  19101.                </button>
  19102.              </div>
  19103.            
  19104.          </div>
  19105.        
  19106.      
  19107.    </div>
  19108.  </div>
  19109.  
  19110.  
  19111.    <script type="application/json" data-quick-buy-settings>
  19112.      {
  19113.        "cart_redirection": true,
  19114.        "money_format": "${{amount}}"
  19115.      }
  19116.    </script>
  19117.  
  19118. </li>
  19119.    
  19120.      
  19121.  
  19122.  
  19123.  
  19124.  
  19125.  
  19126.  
  19127.  
  19128.  
  19129.  
  19130.  
  19131.  
  19132.  
  19133.  
  19134.  
  19135.  
  19136.  
  19137.  
  19138.  
  19139.  
  19140.  
  19141.  
  19142.  
  19143.  
  19144.  
  19145.  
  19146.  
  19147.  
  19148.  
  19149.  
  19150.  
  19151.  
  19152.  
  19153.    
  19154.  
  19155.  
  19156.  
  19157. <li
  19158.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  19159.  data-product-item
  19160.  data-product-quickshop-url="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19161.  
  19162. >
  19163.  <div class="productitem" data-product-item-content>
  19164.    
  19165.    
  19166.    
  19167.    
  19168.  
  19169.    
  19170.  
  19171.    
  19172.  
  19173.    <div class="productitem__container">
  19174.      
  19175.  
  19176.      <div class="productitem__image-container">
  19177.        <a target="_blank"
  19178.          class="productitem--image-link"
  19179.          href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19180.          aria-label="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19181.          tabindex="-1"
  19182.          data-product-page-link
  19183.        >
  19184.          <figure
  19185.            class="productitem--image"
  19186.            data-product-item-image
  19187.            
  19188.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  19189.            
  19190.          >
  19191.            
  19192.              
  19193.              
  19194.  
  19195.  
  19196.    <noscript data-rimg-noscript>
  19197.      <img loading="lazy"
  19198.        
  19199.          src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19200.        
  19201.  
  19202.        alt=""
  19203.        data-rimg="noscript"
  19204.        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"
  19205.        class="productitem--image-primary"
  19206.        
  19207.        
  19208.      >
  19209.    </noscript>
  19210.  
  19211.  
  19212.  <img loading="lazy"
  19213.    
  19214.      src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19215.    
  19216.    alt=""
  19217.  
  19218.    
  19219.      data-rimg="lazy"
  19220.      data-rimg-scale="1"
  19221.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_{size}.jpg?v=1697125259"
  19222.      data-rimg-max="2048x2048"
  19223.      data-rimg-crop="false"
  19224.      
  19225.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  19226.    
  19227.  
  19228.    class="productitem--image-primary"
  19229.    
  19230.    
  19231.  >
  19232.  
  19233.  
  19234.  
  19235.  <div data-rimg-canvas></div>
  19236.  
  19237.  
  19238.            
  19239.  
  19240.            
  19241.  
  19242.  
  19243.  
  19244.  
  19245.  
  19246.  
  19247.  
  19248.  
  19249.  
  19250.  
  19251.  
  19252.  
  19253.  
  19254.  
  19255.  
  19256.  
  19257.  
  19258.  
  19259.  
  19260.  
  19261.  
  19262.  
  19263.  
  19264.  
  19265.  
  19266.  
  19267.  
  19268.          </figure>
  19269.        </a>
  19270.      </div><div class="productitem--info">
  19271.        
  19272.          
  19273.  
  19274.        
  19275.  
  19276.        
  19277.          
  19278.  
  19279.  
  19280.  
  19281.  
  19282.  
  19283.  
  19284.  
  19285.  
  19286.  
  19287.  
  19288.  
  19289.  
  19290.  
  19291.  
  19292.  
  19293.  
  19294.  
  19295.  
  19296.  
  19297.  
  19298.  
  19299.  
  19300.  
  19301.  
  19302.  
  19303.  
  19304.  
  19305.  
  19306.  
  19307.  
  19308. <div class="price productitem__price ">
  19309.  
  19310.    <div
  19311.      class="price__compare-at visible"
  19312.      data-price-compare-container
  19313.    >
  19314.  
  19315.      
  19316.        <span class="money price__original" data-price-original></span>
  19317.      
  19318.    </div>
  19319.  
  19320.  
  19321.    
  19322.      
  19323.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19324.        
  19325.          <span class="visually-hidden">Original price</span>
  19326.          <span class="money price__compare-at--min" data-price-compare-min>
  19327.            $64.99
  19328.          </span>
  19329.          -
  19330.          <span class="visually-hidden">Original price</span>
  19331.          <span class="money price__compare-at--max" data-price-compare-max>
  19332.            $64.99
  19333.          </span>
  19334.        
  19335.      </div>
  19336.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19337.        <span class="visually-hidden">Original price</span>
  19338.        <span class="money price__compare-at--single" data-price-compare>
  19339.          
  19340.        </span>
  19341.      </div>
  19342.    
  19343.  
  19344.  
  19345.  <div class="price__current price__current--emphasize " data-price-container>
  19346.  
  19347.    
  19348.  
  19349.    
  19350.      
  19351.      
  19352.      <span class="money" data-price>
  19353.        $64.99
  19354.      </span>
  19355.    
  19356.    
  19357.  </div>
  19358.  
  19359.  
  19360.    
  19361.    <div class="price__current--hidden" data-current-price-range-hidden>
  19362.      
  19363.        <span class="money price__current--min" data-price-min>$64.99</span>
  19364.        -
  19365.        <span class="money price__current--max" data-price-max>$64.99</span>
  19366.      
  19367.    </div>
  19368.    <div class="price__current--hidden" data-current-price-hidden>
  19369.      <span class="visually-hidden">Current price</span>
  19370.      <span class="money" data-price>
  19371.        $64.99
  19372.      </span>
  19373.    </div>
  19374.  
  19375.  
  19376.  
  19377.    
  19378.    
  19379.    
  19380.    
  19381.  
  19382.    <div
  19383.      class="
  19384.        productitem__unit-price
  19385.        hidden
  19386.      "
  19387.      data-unit-price
  19388.    >
  19389.      <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>
  19390.    </div>
  19391.  
  19392.  
  19393.  
  19394. </div>
  19395.  
  19396.  
  19397.        
  19398.  
  19399.        <h2 class="productitem--title">
  19400.          <a href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001" data-product-page-link>
  19401.            Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001
  19402.          </a>
  19403.        </h2>
  19404.  
  19405.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  19406.        <div class="star_container 3929790414935"></div>
  19407.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  19408.  
  19409.        
  19410.          
  19411.            <span class="productitem--vendor">
  19412.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  19413.            </span>
  19414.          
  19415.        
  19416.  
  19417.        
  19418.  
  19419.        
  19420.          
  19421.            <div class="productitem__stock-level">
  19422.              <!--
  19423.  
  19424.  
  19425.  
  19426.  
  19427.  
  19428.  
  19429.  
  19430. <div class="product-stock-level-wrapper" >
  19431.  
  19432.    <span class="
  19433.  product-stock-level
  19434.  product-stock-level--continue-selling
  19435.  
  19436. ">
  19437.      
  19438.  
  19439.      <span class="product-stock-level__text">
  19440.        
  19441.        <div class="product-stock-level__badge-text">
  19442.          
  19443.  
  19444.    In stock
  19445.  
  19446.  
  19447.        </div>
  19448.      </span>
  19449.    </span>
  19450.  
  19451. </div>
  19452. -->
  19453.              
  19454.  
  19455.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  19456.  
  19457.  
  19458.  
  19459.  
  19460.  
  19461.  
  19462.  
  19463.            </div>
  19464.          
  19465.  
  19466.          
  19467.            
  19468.          
  19469.        
  19470.  
  19471.        
  19472.          <div class="productitem--description">
  19473.            <p>
  19474. Description: New genuine Acer laptop dc jack cable. 45 watt version.
  19475.  
  19476. Compatible Part #'s: 50.GNSN7.001
  19477.  
  19478. Compatible Models:
  19479. Acer Aspire 1 A114-31
  19480. ...</p>
  19481.  
  19482.            
  19483.              <a
  19484.                href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19485.                class="productitem--link"
  19486.                data-product-page-link
  19487.              >
  19488.                View full details
  19489.              </a>
  19490.            
  19491.          </div>
  19492.        
  19493.      </div>
  19494.  
  19495.      
  19496.        
  19497.          
  19498.          
  19499.          
  19500.  
  19501.          
  19502.          
  19503.  
  19504.          
  19505.  
  19506.          
  19507.  
  19508.          <div class="productitem--actions" data-product-actions>
  19509.            <div class="productitem--listview-price">
  19510.              
  19511.  
  19512.  
  19513.  
  19514.  
  19515.  
  19516.  
  19517.  
  19518.  
  19519.  
  19520.  
  19521.  
  19522.  
  19523.  
  19524.  
  19525.  
  19526.  
  19527.  
  19528.  
  19529.  
  19530.  
  19531.  
  19532.  
  19533.  
  19534.  
  19535.  
  19536.  
  19537.  
  19538.  
  19539.  
  19540.  
  19541. <div class="price productitem__price ">
  19542.  
  19543.    <div
  19544.      class="price__compare-at visible"
  19545.      data-price-compare-container
  19546.    >
  19547.  
  19548.      
  19549.        <span class="money price__original" data-price-original></span>
  19550.      
  19551.    </div>
  19552.  
  19553.  
  19554.    
  19555.      
  19556.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19557.        
  19558.          <span class="visually-hidden">Original price</span>
  19559.          <span class="money price__compare-at--min" data-price-compare-min>
  19560.            $64.99
  19561.          </span>
  19562.          -
  19563.          <span class="visually-hidden">Original price</span>
  19564.          <span class="money price__compare-at--max" data-price-compare-max>
  19565.            $64.99
  19566.          </span>
  19567.        
  19568.      </div>
  19569.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19570.        <span class="visually-hidden">Original price</span>
  19571.        <span class="money price__compare-at--single" data-price-compare>
  19572.          
  19573.        </span>
  19574.      </div>
  19575.    
  19576.  
  19577.  
  19578.  <div class="price__current price__current--emphasize " data-price-container>
  19579.  
  19580.    
  19581.  
  19582.    
  19583.      
  19584.      
  19585.      <span class="money" data-price>
  19586.        $64.99
  19587.      </span>
  19588.    
  19589.    
  19590.  </div>
  19591.  
  19592.  
  19593.    
  19594.    <div class="price__current--hidden" data-current-price-range-hidden>
  19595.      
  19596.        <span class="money price__current--min" data-price-min>$64.99</span>
  19597.        -
  19598.        <span class="money price__current--max" data-price-max>$64.99</span>
  19599.      
  19600.    </div>
  19601.    <div class="price__current--hidden" data-current-price-hidden>
  19602.      <span class="visually-hidden">Current price</span>
  19603.      <span class="money" data-price>
  19604.        $64.99
  19605.      </span>
  19606.    </div>
  19607.  
  19608.  
  19609.  
  19610.    
  19611.    
  19612.    
  19613.    
  19614.  
  19615.    <div
  19616.      class="
  19617.        productitem__unit-price
  19618.        hidden
  19619.      "
  19620.      data-unit-price
  19621.    >
  19622.      <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>
  19623.    </div>
  19624.  
  19625.  
  19626.  
  19627. </div>
  19628.  
  19629.  
  19630.            </div>
  19631.  
  19632.            <div class="productitem--listview-badge">
  19633.              
  19634.  
  19635.  
  19636.  
  19637.  
  19638.  
  19639.  
  19640.  
  19641.  
  19642.  
  19643.  
  19644.  
  19645.  
  19646.  
  19647.  
  19648.  
  19649.  
  19650.  
  19651.  
  19652.  
  19653.  
  19654.  
  19655.  
  19656.  
  19657.  
  19658.  
  19659.  
  19660.  
  19661.            </div>
  19662.  
  19663.            
  19664.              <div
  19665.                class="
  19666.                  productitem--action
  19667.                  quickshop-button
  19668.                  
  19669.                "
  19670.              >
  19671.                <button
  19672.                  class="productitem--action-trigger button-secondary"
  19673.                  data-quickshop-full
  19674.                  
  19675.                  
  19676.                  type="button"
  19677.                >
  19678.                  Quick shop
  19679.                </button>
  19680.              </div>
  19681.            
  19682.  
  19683.            
  19684.              <div
  19685.                class="
  19686.                  productitem--action
  19687.                  atc--button
  19688.                  
  19689.                "
  19690.              >
  19691.                <button
  19692.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19693.                  type="button"
  19694.                  aria-label="Add to cart"
  19695.                  
  19696.                    data-quick-buy
  19697.                  
  19698.                  data-variant-id="29408090816599"
  19699.                  
  19700.                >
  19701.                  <span class="atc-button--text">
  19702.                    Add to cart
  19703.                  </span>
  19704.                  <span class="atc-button--icon"><svg
  19705.  aria-hidden="true"
  19706.  focusable="false"
  19707.  role="presentation"
  19708.  width="26"
  19709.  height="26"
  19710.  viewBox="0 0 26 26"
  19711.  xmlns="http://www.w3.org/2000/svg"
  19712. >
  19713.  <g fill-rule="nonzero" fill="currentColor">
  19714.    <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"/>
  19715.  </g>
  19716. </svg></span>
  19717.                </button>
  19718.              </div>
  19719.            
  19720.          </div>
  19721.        
  19722.      
  19723.    </div>
  19724.  </div>
  19725.  
  19726.  
  19727.    <script type="application/json" data-quick-buy-settings>
  19728.      {
  19729.        "cart_redirection": true,
  19730.        "money_format": "${{amount}}"
  19731.      }
  19732.    </script>
  19733.  
  19734. </li>
  19735.    
  19736.  
  19737.    
  19738.  </ul>
  19739.  
  19740.  
  19741.    
  19742.      <a
  19743.        class="
  19744.          button-primary
  19745.          featured-collection__button
  19746.        "
  19747.        href="/collections/shop-the-best-selling"
  19748.      >
  19749.        View All
  19750.      </a>
  19751.    
  19752.  
  19753. </section>
  19754.  
  19755.  
  19756. <div class="productitem-quickshop" data-product-quickshop>
  19757.  <span class="quickshop-spinner"><svg
  19758.  aria-hidden="true"
  19759.  focusable="false"
  19760.  role="presentation"
  19761.  width="26"
  19762.  height="26"
  19763.  viewBox="0 0 26 26"
  19764.  xmlns="http://www.w3.org/2000/svg"
  19765. >
  19766.  <g fill-rule="nonzero" fill="currentColor">
  19767.    <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"/>
  19768.  </g>
  19769. </svg></span>
  19770. </div>
  19771.  
  19772.  
  19773. </div><div id="shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114" class="shopify-section slideshow--section">
  19774.  
  19775.  
  19776.  
  19777. <script type="application/pxs-animation-mapping+json">
  19778.  {
  19779.    "blocks": [".slideshow-slide"],
  19780.    "elements": [
  19781.      ".slideshow-slide__heading",
  19782.      ".slideshow-slide__subheading",
  19783.      ".slideshow-slide__text",
  19784.      ".slideshow-slide__button"
  19785.    ]
  19786.  }
  19787. </script>
  19788.  
  19789. <style data-shopify>
  19790.  #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 {
  19791.    --autoplay-interval: 5s;
  19792.  }
  19793.  
  19794.  
  19795.    @media screen and (min-width: 720px) {
  19796.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19797.        height: vw;
  19798.      }
  19799.    }
  19800.  
  19801.  
  19802.  
  19803.    @media screen and (max-width: 719px) {
  19804.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19805.        
  19806.          height: vw;
  19807.        
  19808.      }
  19809.    }
  19810.  
  19811. </style>
  19812.  
  19813.  
  19814.  
  19815.  
  19816. <script
  19817.  type="application/json"
  19818.  data-section-type="pxs-slideshow"
  19819.  data-section-id="template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114"
  19820.  data-section-data
  19821. >
  19822.  {
  19823.    "enable_autoplay": true,
  19824.    "autoplay_interval": 5,
  19825.    "mobile_navigation_adjust": true,
  19826.    "transition_fade": null,
  19827.    "slide_attraction": null,
  19828.    "slide_friction": null,
  19829.    "next_text": "Next slide",
  19830.    "previous_text": "Previous slide"
  19831.  }
  19832. </script>
  19833.  
  19834. <section
  19835.  class="
  19836.    slideshow
  19837.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  19838.  "
  19839.  aria-label="Slideshow"
  19840.  data-autoplay="true"
  19841.  data-autoplay-interval="5"
  19842.  data-banner="false"
  19843.  data-slideshow
  19844. ><div
  19845.    class="slideshow__wrapper "
  19846.    data-slideshow-wrapper
  19847.  ></div><div
  19848.    class="slideshow__current-slide visually-hidden"
  19849.    aria-live="polite"
  19850.    aria-atomic="true"
  19851.    data-slide-counter
  19852.    data-counter-template="Slide {{ count }} of {{ total }}"
  19853.  >
  19854.  </div>
  19855. </section>
  19856.  
  19857.  
  19858.  
  19859. </div><div id="shopify-section-template--15492296147031__516e59b8-141e-43e3-8f1d-46287735da01" class="shopify-section logolist--section"><script type="application/pxs-animation-mapping+json">
  19860.  {
  19861.    "blocks": [".logolist--inner"],
  19862.    "elements": [
  19863.      ".logolist--item"
  19864.    ]
  19865.  }
  19866. </script>
  19867.  
  19868. <section class="logolist--container">
  19869.  
  19870.    <h2 class="home-section--title">
  19871.      Search By Brands
  19872.    </h2>
  19873.  
  19874.  
  19875.  <div class="home-section--content logolist--inner">
  19876.    
  19877.      <div class="logolist--item" >
  19878.        
  19879.          <a
  19880.            class="logolist--link"
  19881.            href="/collections/acer-parts-canada"
  19882.            target="_blank"
  19883.          >
  19884.        
  19885.  
  19886.        
  19887.          
  19888.  
  19889.  
  19890.    <noscript data-rimg-noscript>
  19891.      <img loading="lazy"
  19892.        
  19893.          src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19894.        
  19895.  
  19896.        alt=""
  19897.        data-rimg="noscript"
  19898.        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"
  19899.        class="logolist--image"
  19900.        style="
  19901.        object-fit:cover;object-position:50.0% 50.0%;
  19902.      
  19903. "
  19904.        
  19905.      >
  19906.    </noscript>
  19907.  
  19908.  
  19909.  <img loading="lazy"
  19910.    
  19911.      src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19912.    
  19913.    alt=""
  19914.  
  19915.    
  19916.      data-rimg="lazy"
  19917.      data-rimg-scale="1"
  19918.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Acer_{size}.png?v=1698309818"
  19919.      data-rimg-max="1024x247"
  19920.      data-rimg-crop="false"
  19921.      
  19922.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='39'></svg>"
  19923.    
  19924.  
  19925.    class="logolist--image"
  19926.    style="
  19927.        object-fit:cover;object-position:50.0% 50.0%;
  19928.      
  19929. "
  19930.    
  19931.  >
  19932.  
  19933.  
  19934.  
  19935.  <div data-rimg-canvas></div>
  19936.  
  19937.  
  19938.        
  19939.  
  19940.        
  19941.          </a>
  19942.        
  19943.      </div>
  19944.    
  19945.      <div class="logolist--item" >
  19946.        
  19947.          <a
  19948.            class="logolist--link"
  19949.            href="/collections/dell-laptop-batteries"
  19950.            target="_blank"
  19951.          >
  19952.        
  19953.  
  19954.        
  19955.          
  19956.  
  19957.  
  19958.    <noscript data-rimg-noscript>
  19959.      <img loading="lazy"
  19960.        
  19961.          src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  19962.        
  19963.  
  19964.        alt=""
  19965.        data-rimg="noscript"
  19966.        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"
  19967.        class="logolist--image"
  19968.        style="
  19969.        object-fit:cover;object-position:50.0% 50.0%;
  19970.      
  19971. "
  19972.        
  19973.      >
  19974.    </noscript>
  19975.  
  19976.  
  19977.  <img loading="lazy"
  19978.    
  19979.      src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  19980.    
  19981.    alt=""
  19982.  
  19983.    
  19984.      data-rimg="lazy"
  19985.      data-rimg-scale="1"
  19986.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_{size}.png?v=1698309835"
  19987.      data-rimg-max="2048x2048"
  19988.      data-rimg-crop="false"
  19989.      
  19990.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  19991.    
  19992.  
  19993.    class="logolist--image"
  19994.    style="
  19995.        object-fit:cover;object-position:50.0% 50.0%;
  19996.      
  19997. "
  19998.    
  19999.  >
  20000.  
  20001.  
  20002.  
  20003.  <div data-rimg-canvas></div>
  20004.  
  20005.  
  20006.        
  20007.  
  20008.        
  20009.          </a>
  20010.        
  20011.      </div>
  20012.    
  20013.      <div class="logolist--item" >
  20014.        
  20015.          <a
  20016.            class="logolist--link"
  20017.            href="/collections/asus"
  20018.            target="_blank"
  20019.          >
  20020.        
  20021.  
  20022.        
  20023.          
  20024.  
  20025.  
  20026.    <noscript data-rimg-noscript>
  20027.      <img loading="lazy"
  20028.        
  20029.          src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20030.        
  20031.  
  20032.        alt=""
  20033.        data-rimg="noscript"
  20034.        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"
  20035.        class="logolist--image"
  20036.        style="
  20037.        object-fit:cover;object-position:50.0% 50.0%;
  20038.      
  20039. "
  20040.        
  20041.      >
  20042.    </noscript>
  20043.  
  20044.  
  20045.  <img loading="lazy"
  20046.    
  20047.      src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20048.    
  20049.    alt=""
  20050.  
  20051.    
  20052.      data-rimg="lazy"
  20053.      data-rimg-scale="1"
  20054.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Asus_{size}.png?v=1698309865"
  20055.      data-rimg-max="504x100"
  20056.      data-rimg-crop="false"
  20057.      
  20058.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='32'></svg>"
  20059.    
  20060.  
  20061.    class="logolist--image"
  20062.    style="
  20063.        object-fit:cover;object-position:50.0% 50.0%;
  20064.      
  20065. "
  20066.    
  20067.  >
  20068.  
  20069.  
  20070.  
  20071.  <div data-rimg-canvas></div>
  20072.  
  20073.  
  20074.        
  20075.  
  20076.        
  20077.          </a>
  20078.        
  20079.      </div>
  20080.    
  20081.      <div class="logolist--item" >
  20082.        
  20083.          <a
  20084.            class="logolist--link"
  20085.            href="/collections/fujitsu"
  20086.            target="_blank"
  20087.          >
  20088.        
  20089.  
  20090.        
  20091.          
  20092.  
  20093.  
  20094.    <noscript data-rimg-noscript>
  20095.      <img loading="lazy"
  20096.        
  20097.          src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20098.        
  20099.  
  20100.        alt=""
  20101.        data-rimg="noscript"
  20102.        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"
  20103.        class="logolist--image"
  20104.        style="
  20105.        object-fit:cover;object-position:50.0% 50.0%;
  20106.      
  20107. "
  20108.        
  20109.      >
  20110.    </noscript>
  20111.  
  20112.  
  20113.  <img loading="lazy"
  20114.    
  20115.      src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20116.    
  20117.    alt=""
  20118.  
  20119.    
  20120.      data-rimg="lazy"
  20121.      data-rimg-scale="1"
  20122.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_{size}.png?v=1698309977"
  20123.      data-rimg-max="1280x602"
  20124.      data-rimg-crop="false"
  20125.      
  20126.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='76'></svg>"
  20127.    
  20128.  
  20129.    class="logolist--image"
  20130.    style="
  20131.        object-fit:cover;object-position:50.0% 50.0%;
  20132.      
  20133. "
  20134.    
  20135.  >
  20136.  
  20137.  
  20138.  
  20139.  <div data-rimg-canvas></div>
  20140.  
  20141.  
  20142.        
  20143.  
  20144.        
  20145.          </a>
  20146.        
  20147.      </div>
  20148.    
  20149.      <div class="logolist--item" >
  20150.        
  20151.          <a
  20152.            class="logolist--link"
  20153.            href="/collections/samsung"
  20154.            target="_blank"
  20155.          >
  20156.        
  20157.  
  20158.        
  20159.          
  20160.  
  20161.  
  20162.    <noscript data-rimg-noscript>
  20163.      <img loading="lazy"
  20164.        
  20165.          src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20166.        
  20167.  
  20168.        alt=""
  20169.        data-rimg="noscript"
  20170.        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"
  20171.        class="logolist--image"
  20172.        style="
  20173.        object-fit:cover;object-position:50.0% 50.0%;
  20174.      
  20175. "
  20176.        
  20177.      >
  20178.    </noscript>
  20179.  
  20180.  
  20181.  <img loading="lazy"
  20182.    
  20183.      src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20184.    
  20185.    alt=""
  20186.  
  20187.    
  20188.      data-rimg="lazy"
  20189.      data-rimg-scale="1"
  20190.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_{size}.png?v=1698309930"
  20191.      data-rimg-max="7051x1080"
  20192.      data-rimg-crop="false"
  20193.      
  20194.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20195.    
  20196.  
  20197.    class="logolist--image"
  20198.    style="
  20199.        object-fit:cover;object-position:50.0% 50.0%;
  20200.      
  20201. "
  20202.    
  20203.  >
  20204.  
  20205.  
  20206.  
  20207.  <div data-rimg-canvas></div>
  20208.  
  20209.  
  20210.        
  20211.  
  20212.        
  20213.          </a>
  20214.        
  20215.      </div>
  20216.    
  20217.      <div class="logolist--item" >
  20218.        
  20219.          <a
  20220.            class="logolist--link"
  20221.            href="/collections/apple"
  20222.            target="_blank"
  20223.          >
  20224.        
  20225.  
  20226.        
  20227.          
  20228.  
  20229.  
  20230.    <noscript data-rimg-noscript>
  20231.      <img loading="lazy"
  20232.        
  20233.          src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20234.        
  20235.  
  20236.        alt=""
  20237.        data-rimg="noscript"
  20238.        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"
  20239.        class="logolist--image"
  20240.        style="
  20241.        object-fit:cover;object-position:50.0% 50.0%;
  20242.      
  20243. "
  20244.        
  20245.      >
  20246.    </noscript>
  20247.  
  20248.  
  20249.  <img loading="lazy"
  20250.    
  20251.      src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20252.    
  20253.    alt=""
  20254.  
  20255.    
  20256.      data-rimg="lazy"
  20257.      data-rimg-scale="1"
  20258.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Apple-Logo_{size}.jpg?v=1698309948"
  20259.      data-rimg-max="3840x2160"
  20260.      data-rimg-crop="false"
  20261.      
  20262.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='90'></svg>"
  20263.    
  20264.  
  20265.    class="logolist--image"
  20266.    style="
  20267.        object-fit:cover;object-position:50.0% 50.0%;
  20268.      
  20269. "
  20270.    
  20271.  >
  20272.  
  20273.  
  20274.  
  20275.  <div data-rimg-canvas></div>
  20276.  
  20277.  
  20278.        
  20279.  
  20280.        
  20281.          </a>
  20282.        
  20283.      </div>
  20284.    
  20285.      <div class="logolist--item" >
  20286.        
  20287.          <a
  20288.            class="logolist--link"
  20289.            href="/collections/hp-laptop-battery"
  20290.            target="_blank"
  20291.          >
  20292.        
  20293.  
  20294.        
  20295.          
  20296.  
  20297.  
  20298.    <noscript data-rimg-noscript>
  20299.      <img loading="lazy"
  20300.        
  20301.          src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20302.        
  20303.  
  20304.        alt=""
  20305.        data-rimg="noscript"
  20306.        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"
  20307.        class="logolist--image"
  20308.        style="
  20309.        object-fit:cover;object-position:50.0% 50.0%;
  20310.      
  20311. "
  20312.        
  20313.      >
  20314.    </noscript>
  20315.  
  20316.  
  20317.  <img loading="lazy"
  20318.    
  20319.      src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20320.    
  20321.    alt=""
  20322.  
  20323.    
  20324.      data-rimg="lazy"
  20325.      data-rimg-scale="1"
  20326.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_{size}.png?v=1698310007"
  20327.      data-rimg-max="2048x2048"
  20328.      data-rimg-crop="false"
  20329.      
  20330.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20331.    
  20332.  
  20333.    class="logolist--image"
  20334.    style="
  20335.        object-fit:cover;object-position:50.0% 50.0%;
  20336.      
  20337. "
  20338.    
  20339.  >
  20340.  
  20341.  
  20342.  
  20343.  <div data-rimg-canvas></div>
  20344.  
  20345.  
  20346.        
  20347.  
  20348.        
  20349.          </a>
  20350.        
  20351.      </div>
  20352.    
  20353.      <div class="logolist--item" >
  20354.        
  20355.          <a
  20356.            class="logolist--link"
  20357.            href="/collections/all"
  20358.            target="_blank"
  20359.          >
  20360.        
  20361.  
  20362.        
  20363.          
  20364.  
  20365.  
  20366.    <noscript data-rimg-noscript>
  20367.      <img loading="lazy"
  20368.        
  20369.          src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20370.        
  20371.  
  20372.        alt=""
  20373.        data-rimg="noscript"
  20374.        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"
  20375.        class="logolist--image"
  20376.        style="
  20377.        object-fit:cover;object-position:50.0% 50.0%;
  20378.      
  20379. "
  20380.        
  20381.      >
  20382.    </noscript>
  20383.  
  20384.  
  20385.  <img loading="lazy"
  20386.    
  20387.      src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20388.    
  20389.    alt=""
  20390.  
  20391.    
  20392.      data-rimg="lazy"
  20393.      data-rimg-scale="1"
  20394.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_{size}.png?v=1698310074"
  20395.      data-rimg-max="5000x3125"
  20396.      data-rimg-crop="false"
  20397.      
  20398.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='100'></svg>"
  20399.    
  20400.  
  20401.    class="logolist--image"
  20402.    style="
  20403.        object-fit:cover;object-position:50.0% 50.0%;
  20404.      
  20405. "
  20406.    
  20407.  >
  20408.  
  20409.  
  20410.  
  20411.  <div data-rimg-canvas></div>
  20412.  
  20413.  
  20414.        
  20415.  
  20416.        
  20417.          </a>
  20418.        
  20419.      </div>
  20420.    
  20421.      <div class="logolist--item" >
  20422.        
  20423.          <a
  20424.            class="logolist--link"
  20425.            href="/collections/all"
  20426.            target="_blank"
  20427.          >
  20428.        
  20429.  
  20430.        
  20431.          
  20432.  
  20433.  
  20434.    <noscript data-rimg-noscript>
  20435.      <img loading="lazy"
  20436.        
  20437.          src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20438.        
  20439.  
  20440.        alt=""
  20441.        data-rimg="noscript"
  20442.        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"
  20443.        class="logolist--image"
  20444.        style="
  20445.        object-fit:cover;object-position:50.0% 50.0%;
  20446.      
  20447. "
  20448.        
  20449.      >
  20450.    </noscript>
  20451.  
  20452.  
  20453.  <img loading="lazy"
  20454.    
  20455.      src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20456.    
  20457.    alt=""
  20458.  
  20459.    
  20460.      data-rimg="lazy"
  20461.      data-rimg-scale="1"
  20462.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Alienware_{size}.png?v=1698310052"
  20463.      data-rimg-max="860x231"
  20464.      data-rimg-crop="false"
  20465.      
  20466.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='43'></svg>"
  20467.    
  20468.  
  20469.    class="logolist--image"
  20470.    style="
  20471.        object-fit:cover;object-position:50.0% 50.0%;
  20472.      
  20473. "
  20474.    
  20475.  >
  20476.  
  20477.  
  20478.  
  20479.  <div data-rimg-canvas></div>
  20480.  
  20481.  
  20482.        
  20483.  
  20484.        
  20485.          </a>
  20486.        
  20487.      </div>
  20488.    
  20489.      <div class="logolist--item" >
  20490.        
  20491.          <a
  20492.            class="logolist--link"
  20493.            href="/collections/all"
  20494.            target="_blank"
  20495.          >
  20496.        
  20497.  
  20498.        
  20499.          
  20500.  
  20501.  
  20502.    <noscript data-rimg-noscript>
  20503.      <img loading="lazy"
  20504.        
  20505.          src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20506.        
  20507.  
  20508.        alt=""
  20509.        data-rimg="noscript"
  20510.        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"
  20511.        class="logolist--image"
  20512.        style="
  20513.        object-fit:cover;object-position:50.0% 50.0%;
  20514.      
  20515. "
  20516.        
  20517.      >
  20518.    </noscript>
  20519.  
  20520.  
  20521.  <img loading="lazy"
  20522.    
  20523.      src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20524.    
  20525.    alt=""
  20526.  
  20527.    
  20528.      data-rimg="lazy"
  20529.      data-rimg-scale="1"
  20530.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_{size}.png?v=1698310106"
  20531.      data-rimg-max="1200x183"
  20532.      data-rimg-crop="false"
  20533.      
  20534.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20535.    
  20536.  
  20537.    class="logolist--image"
  20538.    style="
  20539.        object-fit:cover;object-position:50.0% 50.0%;
  20540.      
  20541. "
  20542.    
  20543.  >
  20544.  
  20545.  
  20546.  
  20547.  <div data-rimg-canvas></div>
  20548.  
  20549.  
  20550.        
  20551.  
  20552.        
  20553.          </a>
  20554.        
  20555.      </div>
  20556.    
  20557.      <div class="logolist--item" >
  20558.        
  20559.          <a
  20560.            class="logolist--link"
  20561.            href="/collections/all"
  20562.            target="_blank"
  20563.          >
  20564.        
  20565.  
  20566.        
  20567.          
  20568.  
  20569.  
  20570.    <noscript data-rimg-noscript>
  20571.      <img loading="lazy"
  20572.        
  20573.          src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20574.        
  20575.  
  20576.        alt=""
  20577.        data-rimg="noscript"
  20578.        srcset="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364 1x, //laptopparts.ca/cdn/shop/files/Panasonic_224x224.png?v=1698310364 1.4x"
  20579.        class="logolist--image"
  20580.        style="
  20581.        object-fit:cover;object-position:50.0% 50.0%;
  20582.      
  20583. "
  20584.        
  20585.      >
  20586.    </noscript>
  20587.  
  20588.  
  20589.  <img loading="lazy"
  20590.    
  20591.      src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20592.    
  20593.    alt=""
  20594.  
  20595.    
  20596.      data-rimg="lazy"
  20597.      data-rimg-scale="1"
  20598.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Panasonic_{size}.png?v=1698310364"
  20599.      data-rimg-max="225x225"
  20600.      data-rimg-crop="false"
  20601.      
  20602.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20603.    
  20604.  
  20605.    class="logolist--image"
  20606.    style="
  20607.        object-fit:cover;object-position:50.0% 50.0%;
  20608.      
  20609. "
  20610.    
  20611.  >
  20612.  
  20613.  
  20614.  
  20615.  <div data-rimg-canvas></div>
  20616.  
  20617.  
  20618.        
  20619.  
  20620.        
  20621.          </a>
  20622.        
  20623.      </div>
  20624.    
  20625.      <div class="logolist--item" >
  20626.        
  20627.          <a
  20628.            class="logolist--link"
  20629.            href="/collections/all"
  20630.            target="_blank"
  20631.          >
  20632.        
  20633.  
  20634.        
  20635.          
  20636.  
  20637.  
  20638.    <noscript data-rimg-noscript>
  20639.      <img loading="lazy"
  20640.        
  20641.          src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20642.        
  20643.  
  20644.        alt=""
  20645.        data-rimg="noscript"
  20646.        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"
  20647.        class="logolist--image"
  20648.        style="
  20649.        object-fit:cover;object-position:50.0% 50.0%;
  20650.      
  20651. "
  20652.        
  20653.      >
  20654.    </noscript>
  20655.  
  20656.  
  20657.  <img loading="lazy"
  20658.    
  20659.      src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20660.    
  20661.    alt=""
  20662.  
  20663.    
  20664.      data-rimg="lazy"
  20665.      data-rimg-scale="1"
  20666.      data-rimg-template="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_{size}.png?v=1698310433"
  20667.      data-rimg-max="666x375"
  20668.      data-rimg-crop="false"
  20669.      
  20670.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='91'></svg>"
  20671.    
  20672.  
  20673.    class="logolist--image"
  20674.    style="
  20675.        object-fit:cover;object-position:50.0% 50.0%;
  20676.      
  20677. "
  20678.    
  20679.  >
  20680.  
  20681.  
  20682.  
  20683.  <div data-rimg-canvas></div>
  20684.  
  20685.  
  20686.        
  20687.  
  20688.        
  20689.          </a>
  20690.        
  20691.      </div>
  20692.    
  20693.  </div>
  20694. </section>
  20695.  
  20696. </div><div id="shopify-section-template--15492296147031__16962663497dd9ec87" class="shopify-section"><div class="product-section--container">
  20697.  
  20698. </div>
  20699.  
  20700.  
  20701. </div><div id="shopify-section-template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706" class="shopify-section highlights-banner"><script
  20702.  type="application/json"
  20703.  data-section-type="dynamic-highlights-banner"
  20704.  data-section-id="template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706">
  20705. </script>
  20706.  
  20707. <style>
  20708.  
  20709.  
  20710.    .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706.highlights-banner__container {
  20711.      background-color: #000000;
  20712.    }
  20713.  
  20714.  
  20715.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:before {
  20716.    background: linear-gradient( to right, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20717.  }
  20718.  
  20719.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:after {
  20720.    background: linear-gradient( to left, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20721.  }
  20722.  
  20723.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__block {
  20724.    color: #ffffff;
  20725.  }
  20726.  
  20727.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__icon {
  20728.    color: #fe0000;
  20729.  }
  20730. </style>
  20731.  
  20732. <script type="application/pxs-animation-mapping+json">
  20733.  {
  20734.    "blocks": [".highlights-banners-block"],
  20735.    "elements": []
  20736.  }
  20737. </script>
  20738.  
  20739. <div class="
  20740.  highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706
  20741.  highlights-banner__container
  20742.  highlights-banner__mobile-layout--slider
  20743.  full-width
  20744.  "
  20745. >
  20746.  <div class="highlights-banner__content highlight-banner__count-4"
  20747.   data-highlights-slider
  20748.  >
  20749.    
  20750.      
  20751.        <div
  20752.          class="highlights-banner__block highlights-banner__align-left"
  20753.          
  20754.          data-highlights-block
  20755.        >
  20756.          
  20757.            <div class="highlights-banner__icon">
  20758.              
  20759.                
  20760.  
  20761.  
  20762.                                                                    <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>                                                
  20763.  
  20764.              
  20765.            </div>
  20766.          
  20767.  
  20768.          <div class="highlights-banner__text">
  20769.            
  20770.              <span class="highlights-banner__heading">
  20771.                Quality and Saving
  20772.              </span>
  20773.            
  20774.  
  20775.            
  20776.              <p>Comprehensive quality control and affordable prices</p>
  20777.            
  20778.          </div>
  20779.          
  20780.        </div>
  20781.      
  20782.    
  20783.      
  20784.        <div
  20785.          class="highlights-banner__block highlights-banner__align-left"
  20786.          
  20787.          data-highlights-block
  20788.        >
  20789.          
  20790.            <div class="highlights-banner__icon">
  20791.              
  20792.                
  20793.  
  20794.  
  20795.                                  <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>                                                                                  
  20796.  
  20797.              
  20798.            </div>
  20799.          
  20800.  
  20801.          <div class="highlights-banner__text">
  20802.            
  20803.              <span class="highlights-banner__heading">
  20804.                Huge Inventory
  20805.              </span>
  20806.            
  20807.  
  20808.            
  20809.              <p>largest available inventory of parts in Canada</p>
  20810.            
  20811.          </div>
  20812.          
  20813.        </div>
  20814.      
  20815.    
  20816.      
  20817.        <div
  20818.          class="highlights-banner__block highlights-banner__align-left"
  20819.          
  20820.          data-highlights-block
  20821.        >
  20822.          
  20823.            <div class="highlights-banner__icon">
  20824.              
  20825.                
  20826.  
  20827.  
  20828.                            <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>                                                                                        
  20829.  
  20830.              
  20831.            </div>
  20832.          
  20833.  
  20834.          <div class="highlights-banner__text">
  20835.            
  20836.              <span class="highlights-banner__heading">
  20837.                Fast Shipping
  20838.              </span>
  20839.            
  20840.  
  20841.            
  20842.              <p>Fast and convenient door to door delivery</p>
  20843.            
  20844.          </div>
  20845.          
  20846.        </div>
  20847.      
  20848.    
  20849.      
  20850.        <div
  20851.          class="highlights-banner__block highlights-banner__align-left"
  20852.          
  20853.          data-highlights-block
  20854.        >
  20855.          
  20856.            <div class="highlights-banner__icon">
  20857.              
  20858.                
  20859.  
  20860.  
  20861.                          <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>                                                                                          
  20862.  
  20863.              
  20864.            </div>
  20865.          
  20866.  
  20867.          <div class="highlights-banner__text">
  20868.            
  20869.              <span class="highlights-banner__heading">
  20870.                Payment Security
  20871.              </span>
  20872.            
  20873.  
  20874.            
  20875.              <p>We have secured payment methods</p>
  20876.            
  20877.          </div>
  20878.          
  20879.        </div>
  20880.      
  20881.    
  20882.  </div>
  20883. </div>
  20884.  
  20885. </div><div id="shopify-section-template--15492296147031__dynamic_html_knfnMB" class="shopify-section html--section"><script
  20886.  type="application/json"
  20887.  data-section-id="template--15492296147031__dynamic_html_knfnMB"
  20888.  data-section-type="dynamic-html"
  20889. ></script>
  20890.  
  20891. <section class="custom-html--container">
  20892.  
  20893.  <div class="rte" data-rte>
  20894.    <h1 style="text-align:center; margin-bottom:-50px">ABOUT US</h1>
  20895.  </div>
  20896. </section>
  20897.  
  20898. </div><div id="shopify-section-template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0" class="shopify-section rich-text--section"><script
  20899.  type="application/json"
  20900.  data-section-id="template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0"
  20901.  data-section-type="dynamic-rich-text"
  20902. ></script>
  20903.  
  20904. <script type="application/pxs-animation-mapping+json">
  20905.  {
  20906.    "blocks": [".rich-text-block"],
  20907.    "elements": []
  20908.  }
  20909. </script>
  20910.  
  20911. <section
  20912.  class="
  20913.    rich-text--container
  20914.    rich-text-full-width
  20915.  "
  20916. >
  20917.    <div
  20918.      class="
  20919.        rich-text-block
  20920.        rich-text-alignment-center
  20921.      "
  20922.      
  20923.    >
  20924.        
  20925.  
  20926.        
  20927.          <div class="rich-text-content rte" data-rte>
  20928.            <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>
  20929.          </div>
  20930.        
  20931.    </div>
  20932. </section>
  20933.  
  20934. </div><div id="shopify-section-template--15492296147031__dynamic_html_fKi4qq" class="shopify-section html--section"><script
  20935.  type="application/json"
  20936.  data-section-id="template--15492296147031__dynamic_html_fKi4qq"
  20937.  data-section-type="dynamic-html"
  20938. ></script>
  20939.  
  20940. <section class="custom-html--container">
  20941.  
  20942.  <div class="rte" data-rte>
  20943.    <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>
  20944.  </div>
  20945. </section>
  20946.  
  20947. </div>
  20948.    </main>
  20949.  
  20950.    <!-- BEGIN sections: footer-group -->
  20951. <div id="shopify-section-sections--15492291100759__footer" class="shopify-section shopify-section-group-footer-group"><script
  20952.  type="application/json"
  20953.  data-section-id="sections--15492291100759__footer"
  20954.  data-section-type="static-footer">
  20955. </script>
  20956.  
  20957.  
  20958.  
  20959.  
  20960.  
  20961. <footer role="contentinfo" aria-label="Footer">
  20962.  <section class="site-footer-wrapper">
  20963.    
  20964.      <div class="site-footer-item">
  20965.        <div class="site-footer-blocks column-count-4">
  20966.          <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  20967.  
  20968.  
  20969.      <h2 class="site-footer-block-title" data-accordion-trigger>
  20970.        FURTHER INFO.
  20971.  
  20972.        <span class="site-footer-block-icon accordion--icon">
  20973.          <svg
  20974.  aria-hidden="true"
  20975.  focusable="false"
  20976.  role="presentation"
  20977.  width="14"
  20978.  height="8"
  20979.  viewBox="0 0 14 8"
  20980.  fill="none"
  20981.  xmlns="http://www.w3.org/2000/svg"
  20982. >
  20983.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20984.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20985. </svg>
  20986.  
  20987.        </span>
  20988.      </h2>
  20989.  
  20990.      <div class="site-footer-block-content">
  20991.        
  20992.  
  20993.  
  20994.  
  20995.  
  20996.  
  20997.  
  20998.  
  20999.  
  21000.  
  21001.  
  21002.  
  21003.  
  21004. <ul
  21005.  class="
  21006.    navmenu
  21007.    navmenu-depth-1
  21008.    
  21009.    
  21010.  "
  21011.  data-navmenu
  21012.  data-accordion-content
  21013.  
  21014.  
  21015. >
  21016.  
  21017.    
  21018.  
  21019.    
  21020.    
  21021.  
  21022.    
  21023.    
  21024.  
  21025.    
  21026.  
  21027.    
  21028.      <li
  21029.        class="navmenu-item navmenu-id-home"
  21030.      >
  21031.        <a
  21032.        class="
  21033.          navmenu-link
  21034.          navmenu-link-depth-1
  21035.          navmenu-link-active
  21036.        "
  21037.        href="/"
  21038.        >
  21039.          
  21040.          Home
  21041. </a>
  21042.      </li>
  21043.    
  21044.  
  21045.    
  21046.  
  21047.    
  21048.    
  21049.  
  21050.    
  21051.    
  21052.  
  21053.    
  21054.  
  21055.    
  21056.      <li
  21057.        class="navmenu-item navmenu-id-search"
  21058.      >
  21059.        <a
  21060.        class="
  21061.          navmenu-link
  21062.          navmenu-link-depth-1
  21063.          
  21064.        "
  21065.        href="/search"
  21066.        >
  21067.          
  21068.          Search
  21069. </a>
  21070.      </li>
  21071.    
  21072.  
  21073.    
  21074.  
  21075.    
  21076.    
  21077.  
  21078.    
  21079.    
  21080.  
  21081.    
  21082.  
  21083.    
  21084.      <li
  21085.        class="navmenu-item navmenu-id-about-us"
  21086.      >
  21087.        <a
  21088.        class="
  21089.          navmenu-link
  21090.          navmenu-link-depth-1
  21091.          
  21092.        "
  21093.        href="/pages/about-us"
  21094.        >
  21095.          
  21096.          About Us
  21097. </a>
  21098.      </li>
  21099.    
  21100.  
  21101.    
  21102.  
  21103.    
  21104.    
  21105.  
  21106.    
  21107.    
  21108.  
  21109.    
  21110.  
  21111.    
  21112.      <li
  21113.        class="navmenu-item navmenu-id-parts-request"
  21114.      >
  21115.        <a
  21116.        class="
  21117.          navmenu-link
  21118.          navmenu-link-depth-1
  21119.          
  21120.        "
  21121.        href="/pages/part-request"
  21122.        >
  21123.          
  21124.          Parts Request
  21125. </a>
  21126.      </li>
  21127.    
  21128.  
  21129.    
  21130.  
  21131.    
  21132.    
  21133.  
  21134.    
  21135.    
  21136.  
  21137.    
  21138.  
  21139.    
  21140.      <li
  21141.        class="navmenu-item navmenu-id-repair-centers"
  21142.      >
  21143.        <a
  21144.        class="
  21145.          navmenu-link
  21146.          navmenu-link-depth-1
  21147.          
  21148.        "
  21149.        href="/pages/store-locator"
  21150.        >
  21151.          
  21152.          Repair Centers
  21153. </a>
  21154.      </li>
  21155.    
  21156.  
  21157.    
  21158.  
  21159.    
  21160.    
  21161.  
  21162.    
  21163.    
  21164.  
  21165.    
  21166.  
  21167.    
  21168.      <li
  21169.        class="navmenu-item navmenu-id-francais"
  21170.      >
  21171.        <a
  21172.        class="
  21173.          navmenu-link
  21174.          navmenu-link-depth-1
  21175.          
  21176.        "
  21177.        href="/pages/francais"
  21178.        >
  21179.          
  21180.          Français
  21181. </a>
  21182.      </li>
  21183.    
  21184.  
  21185.    
  21186.  
  21187.    
  21188.    
  21189.  
  21190.    
  21191.    
  21192.  
  21193.    
  21194.  
  21195.    
  21196.      <li
  21197.        class="navmenu-item navmenu-id-reviews"
  21198.      >
  21199.        <a
  21200.        class="
  21201.          navmenu-link
  21202.          navmenu-link-depth-1
  21203.          
  21204.        "
  21205.        href="/pages/reviews"
  21206.        >
  21207.          
  21208.          Reviews
  21209. </a>
  21210.      </li>
  21211.    
  21212.  
  21213. </ul>
  21214.  
  21215.  
  21216.        <!-- TG seal - snippets/footer.liquid -->
  21217.        
  21218.          <div style="margin-top: 2em;">
  21219.            <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>
  21220.            <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>
  21221.          </div>
  21222.        
  21223.        <!-- END TG seal - snippets/footer.liquid -->
  21224.      </div>
  21225.  
  21226. </div>
  21227. <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  21228.  
  21229.  
  21230.      <h2 class="site-footer-block-title" data-accordion-trigger>
  21231.        CUSTOMER SERVICE
  21232.  
  21233.        <span class="site-footer-block-icon accordion--icon">
  21234.          <svg
  21235.  aria-hidden="true"
  21236.  focusable="false"
  21237.  role="presentation"
  21238.  width="14"
  21239.  height="8"
  21240.  viewBox="0 0 14 8"
  21241.  fill="none"
  21242.  xmlns="http://www.w3.org/2000/svg"
  21243. >
  21244.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21245.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21246. </svg>
  21247.  
  21248.        </span>
  21249.      </h2>
  21250.  
  21251.      <div class="site-footer-block-content">
  21252.        
  21253.  
  21254.  
  21255.  
  21256.  
  21257.  
  21258.  
  21259.  
  21260.  
  21261.  
  21262.  
  21263.  
  21264.  
  21265. <ul
  21266.  class="
  21267.    navmenu
  21268.    navmenu-depth-1
  21269.    
  21270.    
  21271.  "
  21272.  data-navmenu
  21273.  data-accordion-content
  21274.  
  21275.  
  21276. >
  21277.  
  21278.    
  21279.  
  21280.    
  21281.    
  21282.  
  21283.    
  21284.    
  21285.  
  21286.    
  21287.  
  21288.    
  21289.      <li
  21290.        class="navmenu-item navmenu-id-privacy-policy"
  21291.      >
  21292.        <a
  21293.        class="
  21294.          navmenu-link
  21295.          navmenu-link-depth-1
  21296.          
  21297.        "
  21298.        href="/pages/privacy-policy"
  21299.        >
  21300.          
  21301.          Privacy Policy
  21302. </a>
  21303.      </li>
  21304.    
  21305.  
  21306.    
  21307.  
  21308.    
  21309.    
  21310.  
  21311.    
  21312.    
  21313.  
  21314.    
  21315.  
  21316.    
  21317.      <li
  21318.        class="navmenu-item navmenu-id-return-policy"
  21319.      >
  21320.        <a
  21321.        class="
  21322.          navmenu-link
  21323.          navmenu-link-depth-1
  21324.          
  21325.        "
  21326.        href="/pages/returns"
  21327.        >
  21328.          
  21329.          Return Policy
  21330. </a>
  21331.      </li>
  21332.    
  21333.  
  21334.    
  21335.  
  21336.    
  21337.    
  21338.  
  21339.    
  21340.    
  21341.  
  21342.    
  21343.  
  21344.    
  21345.      <li
  21346.        class="navmenu-item navmenu-id-shipping"
  21347.      >
  21348.        <a
  21349.        class="
  21350.          navmenu-link
  21351.          navmenu-link-depth-1
  21352.          
  21353.        "
  21354.        href="/pages/shipping"
  21355.        >
  21356.          
  21357.          Shipping
  21358. </a>
  21359.      </li>
  21360.    
  21361.  
  21362.    
  21363.  
  21364.    
  21365.    
  21366.  
  21367.    
  21368.    
  21369.  
  21370.    
  21371.  
  21372.    
  21373.      <li
  21374.        class="navmenu-item navmenu-id-warranty"
  21375.      >
  21376.        <a
  21377.        class="
  21378.          navmenu-link
  21379.          navmenu-link-depth-1
  21380.          
  21381.        "
  21382.        href="/pages/warranty"
  21383.        >
  21384.          
  21385.          Warranty
  21386. </a>
  21387.      </li>
  21388.    
  21389.  
  21390.    
  21391.  
  21392.    
  21393.    
  21394.  
  21395.    
  21396.    
  21397.  
  21398.    
  21399.  
  21400.    
  21401.      <li
  21402.        class="navmenu-item navmenu-id-blogs"
  21403.      >
  21404.        <a
  21405.        class="
  21406.          navmenu-link
  21407.          navmenu-link-depth-1
  21408.          
  21409.        "
  21410.        href="/blogs/news/how-to-enhance-your-laptops-performance-top-tips-for-optimization"
  21411.        >
  21412.          
  21413.          Blogs
  21414. </a>
  21415.      </li>
  21416.    
  21417.  
  21418. </ul>
  21419.  
  21420.  
  21421.        <!-- TG seal - snippets/footer.liquid -->
  21422.        
  21423.        <!-- END TG seal - snippets/footer.liquid -->
  21424.      </div>
  21425.  
  21426. </div>
  21427. <div class="site-footer-block-item  site-footer-block-social-accounts  " >
  21428.  
  21429.  
  21430.    
  21431.  
  21432.  
  21433.  
  21434.  
  21435.  
  21436.  
  21437.  
  21438.  
  21439.  
  21440.  
  21441.  
  21442.  
  21443.  
  21444.  
  21445.  
  21446.  
  21447.  
  21448.  
  21449.  
  21450.  
  21451.  
  21452.  
  21453.    
  21454.    
  21455.  
  21456.  
  21457.  
  21458.  
  21459.    <h2 class="site-footer-block-title">
  21460.      Follow us
  21461.    </h2>
  21462.  
  21463.    <div class="site-footer-block-content">
  21464.  
  21465.  
  21466.  <div class="social-icons">
  21467.  
  21468.  
  21469. <a
  21470.  class="social-link"
  21471.  title="Facebook"
  21472.  href="https://web.facebook.com/laptopparts.ca/?_rdc=1&amp;_rdr"
  21473.  target="_blank">
  21474. <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>
  21475.  
  21476.    <span class="visually-hidden">Find us on Facebook</span>
  21477.  
  21478. </a>
  21479.  
  21480.  
  21481.  
  21482.  
  21483. <a
  21484.  class="social-link"
  21485.  title="Twitter"
  21486.  href="https://twitter.com/i/flow/login?redirect_after_login=%2FLaptopParts_ca"
  21487.  target="_blank">
  21488. <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>
  21489.  
  21490.    <span class="visually-hidden">Find us on Twitter</span>
  21491.  
  21492. </a>
  21493.  
  21494. </div>
  21495.  
  21496.  
  21497.    </div>
  21498.  
  21499.  
  21500.  
  21501.  
  21502. </div>
  21503. <div class="site-footer-block-item  site-footer-block-rich-text  " >
  21504.  
  21505.  
  21506.    
  21507.      <h2 class="site-footer-block-title">
  21508.        Contact Us
  21509.      </h2>
  21510.    
  21511.  
  21512.    
  21513.      <div class="site-footer-block-content rte">
  21514.        <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>
  21515.      </div>
  21516.    
  21517.  
  21518.    
  21519.  
  21520. </div>
  21521.  
  21522.        </div>
  21523.      </div>
  21524.    
  21525.  
  21526.    <div class="site-footer-item site-footer-item--information">
  21527.      <div class="site-footer__row site-footer__row--first">
  21528. <div class="site-footer-right ">
  21529.        <div class="shopify-cross-border">
  21530.          
  21531.        
  21532.          
  21533.        </div>
  21534.        
  21535. <ul class="payment-icons">
  21536.          
  21537.            <li class="payment-icons-item">
  21538.              <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>
  21539.  
  21540.            </li>
  21541.          
  21542.            <li class="payment-icons-item">
  21543.              <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>
  21544.  
  21545.            </li>
  21546.          
  21547.            <li class="payment-icons-item">
  21548.              <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>
  21549.            </li>
  21550.          
  21551.            <li class="payment-icons-item">
  21552.              <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>
  21553.            </li>
  21554.          
  21555.            <li class="payment-icons-item">
  21556.              <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>
  21557.  
  21558.            </li>
  21559.          
  21560.            <li class="payment-icons-item">
  21561.              <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>
  21562.            </li>
  21563.          
  21564.            <li class="payment-icons-item">
  21565.              <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>
  21566.            </li>
  21567.          
  21568.            <li class="payment-icons-item">
  21569.              <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>
  21570.  
  21571.            </li>
  21572.          
  21573.            <li class="payment-icons-item">
  21574.              <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>
  21575.            </li>
  21576.          
  21577.        </ul></div>
  21578.      </div>
  21579.  
  21580.      <div class="site-footer__row site-footer__row--second">
  21581.        <div class="site-footer__row-inner-wrapper-left"><p class="site-footer-credits">
  21582.            <b>LaptopParts.ca</b>
  21583.          </p>
  21584.  
  21585.          <p class="site-footer-credits" style="color:black;">Developed By <a href="https://searchaly.com" style="text-decoration:none;color:black;">Searchaly</a>
  21586.          </p>
  21587.        </div>
  21588.  
  21589.        
  21590. <div class="site-footer-right ">
  21591.        <div class="shopify-cross-border">
  21592.          
  21593.        
  21594.          
  21595.        </div>
  21596.        
  21597. <ul class="payment-icons">
  21598.          
  21599.            <li class="payment-icons-item">
  21600.              <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>
  21601.  
  21602.            </li>
  21603.          
  21604.            <li class="payment-icons-item">
  21605.              <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>
  21606.  
  21607.            </li>
  21608.          
  21609.            <li class="payment-icons-item">
  21610.              <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>
  21611.            </li>
  21612.          
  21613.            <li class="payment-icons-item">
  21614.              <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>
  21615.            </li>
  21616.          
  21617.            <li class="payment-icons-item">
  21618.              <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>
  21619.  
  21620.            </li>
  21621.          
  21622.            <li class="payment-icons-item">
  21623.              <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>
  21624.            </li>
  21625.          
  21626.            <li class="payment-icons-item">
  21627.              <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>
  21628.            </li>
  21629.          
  21630.            <li class="payment-icons-item">
  21631.              <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>
  21632.  
  21633.            </li>
  21634.          
  21635.            <li class="payment-icons-item">
  21636.              <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>
  21637.            </li>
  21638.          
  21639.        </ul></div>
  21640.      </div>
  21641.    </div>
  21642.  </section>
  21643. </footer>
  21644.  
  21645. </div>
  21646. <!-- END sections: footer-group -->
  21647.  
  21648.    
  21649.    <div style="display: none;" aria-hidden="true" data-templates>
  21650.      
  21651.      <div
  21652.        class="message-banner--container"
  21653.        role="alert"
  21654.        data-message-banner
  21655.      >
  21656.        <div class="message-banner--outer">
  21657.          <div class="message-banner--inner" data-message-banner-content></div>
  21658.  
  21659.          <button
  21660.            class="message-banner--close"
  21661.            type="button"
  21662.            aria-label="Close"
  21663.            data-message-banner-close
  21664.          ><svg
  21665.  aria-hidden="true"
  21666.  focusable="false"
  21667.  role="presentation"
  21668.  xmlns="http://www.w3.org/2000/svg"
  21669.  width="13"
  21670.  height="13"
  21671.  viewBox="0 0 13 13"
  21672. >
  21673.  <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"/>
  21674. </svg></button>
  21675.        </div>
  21676.      </div>
  21677.      
  21678.  
  21679.      
  21680.      <section class="atc-banner--container" role="log" data-atc-banner>
  21681.        <div class="atc-banner--outer">
  21682.          <div class="atc-banner--inner">
  21683.            <div class="atc-banner--product">
  21684.              <h2 class="atc-banner--product-title">
  21685.                <span class="atc-banner--product-title--icon">
  21686.                  
  21687.  
  21688.  
  21689.                <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>                                                                                                    
  21690.  
  21691.                </span>
  21692.                Added to your cart:
  21693.              </h2>
  21694.  
  21695.              <div class="atc--product">
  21696.                <div class="atc--product-image" data-atc-banner-product-image>
  21697.                  <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>
  21698.                </div>
  21699.                <div class="atc--product-details">
  21700.                  <h2 class="atc--product-details--title" data-atc-banner-product-title></h2>
  21701.                  <span class="atc--product-details--options" data-atc-banner-product-options></span>
  21702.                  <span class="atc--product-details--price">
  21703.                    <span class="atc--product-details--price-quantity" data-atc-banner-product-price-quantity></span>
  21704.                    <span class="atc--product-details--price-value money" data-atc-banner-product-price-value></span>
  21705.                    <span
  21706.                      class="atc--product-details--price-discounted money"
  21707.                      data-atc-banner-product-price-discounted
  21708.                    ></span>
  21709.                    <span class="atc--product-details--unit-price hidden" data-atc-banner-unit-price>
  21710.                      ** total_quantity ** | ** unit_price ** / ** unit_measure **
  21711.                    </span>
  21712.                  </span>
  21713.                  <ul class="discount-list" data-atc-banner-product-discounts>
  21714.                    <li class="discount-list-item">
  21715.                      
  21716.  
  21717.  
  21718.                                                                        <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>                                            
  21719.  
  21720.                      <span class="discount-title"></span>
  21721.                      (-<span class="money discount-amount"></span>)
  21722.                    </li>
  21723.                  </ul>
  21724.                  <span class="atc--line-item-subscriptions" data-atc-banner-product-subscription-title></span>
  21725.                </div>
  21726.              </div>
  21727.            </div>
  21728.  
  21729.            <div class="atc-banner--cart">
  21730.              <div class="atc-banner--cart-subtotal">
  21731.                <span class="atc-subtotal--label">
  21732.                  Cart subtotal
  21733.                </span>
  21734.                <span class="atc-subtotal--price money" data-atc-banner-cart-subtotal></span>
  21735.              </div>
  21736.  
  21737.              <footer class="atc-banner--cart-footer">
  21738.                <a
  21739.                  class="button-secondary atc-button--viewcart"
  21740.                  href="/cart"
  21741.                  data-atc-banner-cart-button
  21742.                >
  21743.                  View cart (<span></span>)
  21744.                </a>
  21745.                <form
  21746.                  action="/cart"
  21747.                  method="post"
  21748.                  aria-label="cart checkout"
  21749.                >
  21750.                  <button class="button-primary atc-button--checkout" type="submit" name="checkout">
  21751.                    
  21752.                      <svg
  21753. width="20"
  21754. height="20"
  21755. viewBox="0 0 20 20"
  21756. fill="none"
  21757. xmlns="http://www.w3.org/2000/svg">
  21758. <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"/>
  21759. <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"/>
  21760. </svg>
  21761.  
  21762.                    
  21763.                    <span>Checkout</span>
  21764.                  </button>
  21765.                </form>
  21766.              </footer>
  21767.            </div>
  21768.          </div>
  21769.  
  21770.          <button
  21771.            class="atc-banner--close"
  21772.            type="button"
  21773.            aria-label="Close"
  21774.            data-atc-banner-close
  21775.          ><svg
  21776.  aria-hidden="true"
  21777.  focusable="false"
  21778.  role="presentation"
  21779.  xmlns="http://www.w3.org/2000/svg"
  21780.  width="13"
  21781.  height="13"
  21782.  viewBox="0 0 13 13"
  21783. >
  21784.  <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"/>
  21785. </svg></button>
  21786.        </div>
  21787.      </section>
  21788.      
  21789.    </div>
  21790.  
  21791.    
  21792.    
  21793.    <div class="modal" data-modal-container aria-label="modal window" data-trap-focus>
  21794.      <div class="modal-inner" data-modal-inner>
  21795.        <button
  21796.          class="modal-close"
  21797.          type="button"
  21798.          aria-label="Close"
  21799.          data-modal-close
  21800.        >
  21801.          <svg
  21802.  aria-hidden="true"
  21803.  focusable="false"
  21804.  role="presentation"
  21805.  xmlns="http://www.w3.org/2000/svg"
  21806.  width="13"
  21807.  height="13"
  21808.  viewBox="0 0 13 13"
  21809. >
  21810.  <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"/>
  21811. </svg>
  21812.        </button>
  21813.        <div class="modal-content" data-modal-content></div>
  21814.      </div>
  21815.    </div>
  21816.  
  21817.    <div class="modal-1" data-modal-container-1 aria-label="modal window">
  21818.      <div class="modal-inner" data-modal-inner>
  21819.        <button
  21820.          class="modal-close"
  21821.          type="button"
  21822.          aria-label="Close"
  21823.          data-modal-1-close
  21824.        >
  21825.          <svg
  21826.  aria-hidden="true"
  21827.  focusable="false"
  21828.  role="presentation"
  21829.  xmlns="http://www.w3.org/2000/svg"
  21830.  width="13"
  21831.  height="13"
  21832.  viewBox="0 0 13 13"
  21833. >
  21834.  <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"/>
  21835. </svg>
  21836.        </button>
  21837.        <div class="modal-content" data-modal-content></div>
  21838.      </div>
  21839.    </div>
  21840.    
  21841.  
  21842.    
  21843.    
  21844.    
  21845.    <div
  21846.      class="pswp"
  21847.      tabindex="-1"
  21848.      role="dialog"
  21849.      aria-hidden="true"
  21850.      aria-label="Product zoom dialog"
  21851.      data-photoswipe
  21852.    >
  21853.      
  21854.      <div class="pswp__bg"></div>
  21855.  
  21856.      
  21857.      <div class="pswp__scroll-wrap">
  21858.        
  21859.        <div class="pswp__container" aria-hidden="true">
  21860.          <div class="pswp__item"></div>
  21861.          <div class="pswp__item"></div>
  21862.          <div class="pswp__item"></div>
  21863.        </div>
  21864.  
  21865.        
  21866.        <div class="pswp__ui pswp__ui--hidden">
  21867.          <div class="pswp__top-bar">
  21868.            
  21869.            <div class="pswp__counter"></div>
  21870.            <button class="pswp__button pswp__button--close" title="Close">
  21871.              <span tabindex="-1">
  21872.                
  21873.  
  21874.  
  21875.              <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>                                                                                                      
  21876.  
  21877.              </span>
  21878.            </button>
  21879.            <button class="pswp__button pswp__button--share" title="Share"></button>
  21880.            <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
  21881.            <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
  21882.  
  21883.            
  21884.            
  21885.            <div class="pswp__preloader">
  21886.              <div class="pswp__preloader__icn">
  21887.                <div class="pswp__preloader__cut">
  21888.                  <div class="pswp__preloader__donut"></div>
  21889.                </div>
  21890.              </div>
  21891.            </div>
  21892.          </div>
  21893.  
  21894.          <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
  21895.            <div class="pswp__share-tooltip"></div>
  21896.          </div>
  21897.  
  21898.          <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
  21899.          <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button>
  21900.  
  21901.          <div class="pswp__caption">
  21902.            <div class="pswp__caption__center"></div>
  21903.          </div>
  21904.        </div>
  21905.      </div>
  21906.      <div class="product-zoom--thumbnails" data-photoswipe-thumbs>
  21907.        <button
  21908.          class="gallery-navigation--scroll-button scroll-left"
  21909.          aria-label="Scroll thumbnails left"
  21910.          data-gallery-scroll-button
  21911.        >
  21912.          <svg
  21913.  aria-hidden="true"
  21914.  focusable="false"
  21915.  role="presentation"
  21916.  width="14"
  21917.  height="8"
  21918.  viewBox="0 0 14 8"
  21919.  fill="none"
  21920.  xmlns="http://www.w3.org/2000/svg"
  21921. >
  21922.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21923.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21924. </svg>
  21925.  
  21926.        </button>
  21927.        <button
  21928.          class="gallery-navigation--scroll-button scroll-right"
  21929.          aria-label="Scroll thumbnails right"
  21930.          data-gallery-scroll-button
  21931.        >
  21932.          <svg
  21933.  aria-hidden="true"
  21934.  focusable="false"
  21935.  role="presentation"
  21936.  width="14"
  21937.  height="8"
  21938.  viewBox="0 0 14 8"
  21939.  fill="none"
  21940.  xmlns="http://www.w3.org/2000/svg"
  21941. >
  21942.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21943.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21944. </svg>
  21945.  
  21946.        </button>
  21947.        <div class="product-zoom--thumb-scroller" data-photoswipe-thumb-scroller></div>
  21948.      </div>
  21949.    </div>
  21950.    
  21951.  
  21952.    
  21953.    
  21954.    
  21955.    
  21956.    
  21957.  
  21958.    
  21959.  
  21960.    
  21961.  
  21962.      <script>
  21963.        (
  21964.          function () {
  21965.            var classes = {
  21966.              block: 'pxu-lia-block',
  21967.              element: 'pxu-lia-element',
  21968.            };
  21969.  
  21970.            document
  21971.              .querySelectorAll('[type="application/pxs-animation-mapping+json"]')
  21972.              .forEach(function (mappingEl) {
  21973.                const section = mappingEl.parentNode;
  21974.                try {
  21975.                  const mapping = JSON.parse(mappingEl.innerHTML);
  21976.                  mapping.elements.forEach(function (elementSelector) {
  21977.                    section
  21978.                      .querySelectorAll(elementSelector)
  21979.                      .forEach(function (element) { element.classList.add(classes.element); });
  21980.                  });
  21981.  
  21982.                  mapping.blocks.forEach(function (blockSelector) {
  21983.                    section
  21984.                      .querySelectorAll(blockSelector)
  21985.                      .forEach(function (block) { block.classList.add(classes.block); });
  21986.                  });
  21987.                } catch (error) {
  21988.                  console.warn('Unable to parse animation mapping', mappingEl, error);
  21989.                }
  21990.            });
  21991.          }
  21992.        )()
  21993.      </script>
  21994.    
  21995.  
  21996.    <script
  21997.      src="//laptopparts.ca/cdn/shop/t/20/assets/empire.js?v=101264981332624388091749821448"
  21998.      data-scripts
  21999.      data-shopify-api-url="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/api.jquery-5c7ec8e704495947a6ad26f717237512a227840fb65bdc0a32b7de1521602445.js"
  22000.      data-shopify-countries="/services/javascripts/countries.js"
  22001.      data-shopify-common="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/shopify_common-33bb9d312118840468a53f36b59c62c1e8f2b7d1a0a77250db9e300441827470.js"
  22002.      data-shopify-cart="//laptopparts.ca/cdn/shop/t/20/assets/jquery.cart.js?67418"
  22003.      data-pxu-polyfills="//laptopparts.ca/cdn/shop/t/20/assets/polyfills.min.js?v=41774645620324957141712444022"
  22004.    ></script>
  22005.  
  22006.    
  22007.  
  22008.  
  22009.  
  22010.  
  22011.  
  22012.  
  22013.  
  22014.  
  22015.  
  22016.  
  22017.  
  22018.  
  22019.  
  22020.  
  22021. <script type="application/ld+json">
  22022.  {
  22023.    "@context": "http://schema.org",
  22024.    "@type": "WebSite",
  22025.    "name": "LaptopParts.ca",
  22026.    "url": "https://laptopparts.ca"
  22027.  }
  22028. </script>
  22029.  
  22030.  
  22031.    <script>
  22032.      (function () {
  22033.        function handleFirstTab(e) {
  22034.          if (e.keyCode === 9) { // the "I am a keyboard user" key
  22035.            document.body.classList.add('user-is-tabbing');
  22036.            window.removeEventListener('keydown', handleFirstTab);
  22037.          }
  22038.        }
  22039.        window.addEventListener('keydown', handleFirstTab);
  22040.      })();
  22041.    </script>
  22042.  
  22043.    
  22044.      <link href="//laptopparts.ca/cdn/shop/t/20/assets/ripple.css?v=100240391239311985871712444022" rel="stylesheet" type="text/css" media="all" />
  22045.    
  22046.  
  22047.    <script
  22048.      src="//laptopparts.ca/cdn/shop/t/20/assets/instantPage.min.js?v=75111080190164688561712444022"
  22049.      type="module"
  22050.      defer
  22051.    ></script>
  22052.    <script
  22053.      src="//clever-predictive-search.thesupportheroes.com/js/core/main.min.js?timestamp=1698326561&shop=laptoppartsatp.myshopify.com"
  22054.      defer
  22055.    ></script>
  22056. <!-- 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 -->
  22057.     <!-- Shopper Approved - layout/theme.liquid -->  
  22058.    <style>
  22059.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span{
  22060.        vertical-align: -1px;
  22061.      }
  22062.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span:last-child{
  22063.        vertical-align: -1px;
  22064.      }
  22065.      .star_container{
  22066.        height: 24px;
  22067.        margin-bottom: 5px;
  22068.      }
  22069.      .star_container .ind_cnt {
  22070.            display: inline;
  22071.            padding-left: 8px;
  22072.            font-size: 13px;
  22073.            vertical-align: 3px;
  22074.            text-align: center;
  22075.            width: 100%;
  22076.        }
  22077.      #product_just_stars .SA__rating_wrap, #product_just_stars .SA__total_reviews{
  22078.        display: inline !important;
  22079.    }
  22080.    #product_just_stars .SA__review_widget_item .SA__total_reviews a{
  22081.        font-size: 13px !important;
  22082.        vertical-align: 0px !important;
  22083.        /*border-right: 1px solid #000;
  22084.  padding-right: 10px;
  22085.  margin-right: 10px;*/
  22086.  text-decoration: underline;
  22087.    }
  22088.    </style>
  22089.    <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>
  22090.    <!-- END Shopper Approved - layout/theme.liquid -->
  22091.      <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>
  22092. <script type="text/javascript">window.Beacon('init', '4c7bc089-215e-4a80-9d06-25571d96425f')</script>
  22093.        <div id="shopify-block-AeXdFL3NiTloxRjRUY__14952540001915115444" class="shopify-block shopify-app-block">
  22094.  
  22095.  
  22096.  
  22097.  
  22098. <link id="upcart-stylesheet" rel="preload" href="https://cdn.shopify.com/extensions/64ef9f61-2343-47c6-82cf-301741d80cb5/upcart-cart-drawer-140/assets/upcart-stylesheet.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
  22099.  
  22100.  
  22101.  
  22102.  <script defer type="text/javascript" src="https://cdn.shopify.com/extensions/64ef9f61-2343-47c6-82cf-301741d80cb5/upcart-cart-drawer-140/assets/upcart-bundle.js"></script>
  22103.  
  22104.  
  22105. <script>
  22106.  
  22107.  function b64DecodeUnicode(str) {
  22108.    try {
  22109.        return decodeURIComponent(
  22110.        atob(str)
  22111.            .split('')
  22112.            .map(function (c) {
  22113.            return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
  22114.            })
  22115.            .join(''),
  22116.        );
  22117.    } catch {
  22118.        return str;
  22119.    }
  22120.  }
  22121. </script>
  22122.  
  22123.  
  22124. <script>
  22125. (function() {
  22126.    window.upcartSettings = {};
  22127.    window.upcartSettings.upcartSettings = {};
  22128.    window.upcartSettings.upcartEditorSettings = {};
  22129.    window.upcartSettings.stickyCartButtonEditorSettings = {};
  22130.  
  22131.    
  22132.    
  22133.    
  22134.  
  22135.    let val;
  22136.  
  22137.    val = b64DecodeUnicode("cmlnaHQ=");
  22138.    if (val === '') {
  22139.        val = b64DecodeUnicode("cmlnaHQ=");
  22140.    }
  22141.    window.upcartSettings.upcartSettings.cartPosition = val;
  22142.  
  22143.    val = b64DecodeUnicode("ZmFsc2U=");
  22144.    if (val === '') {
  22145.        val = b64DecodeUnicode("ZmFsc2U=");
  22146.    }
  22147.    val = JSON.parse(val);
  22148.    window.upcartSettings.upcartSettings.disableSticky = val;
  22149.  
  22150.    val = b64DecodeUnicode("dHJ1ZQ==");
  22151.    if (val === '') {
  22152.        val = b64DecodeUnicode("dHJ1ZQ==");
  22153.    }
  22154.    val = JSON.parse(val);
  22155.    window.upcartSettings.upcartSettings.openOnAddToCart = val;
  22156.  
  22157.    val = b64DecodeUnicode("ZmFsc2U=");
  22158.    if (val === '') {
  22159.        val = b64DecodeUnicode("ZmFsc2U=");
  22160.    }
  22161.    val = JSON.parse(val);
  22162.    window.upcartSettings.upcartSettings.redirectToCart = val;
  22163.  
  22164.    val = b64DecodeUnicode("dHJ1ZQ==");
  22165.    if (val === '') {
  22166.        val = b64DecodeUnicode("ZmFsc2U=");
  22167.    }
  22168.    val = JSON.parse(val);
  22169.    window.upcartSettings.upcartSettings.enableCartSkeletons = val;
  22170.  
  22171.    val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJZb3VyIFNob3BwaW5nIENhcnQiLCJjaGVja291dCI6IlNlY3VyZSBDaGVja291dCDigKIge3t0b3RhbF9wcmljZX19IiwiYWRkVGV4dCI6IkFkZCIsImVtcHR5Q2FydCI6IllvdXIgY2FydCBpcyBlbXB0eSIsImRpc2NvdW50U2F2aW5ncyI6IlNhdmUiLCJjb250aW51ZVNob3BwaW5nIjoiT3IgY29udGludWUgc2hvcHBpbmciLCJ0b3RhbFNhdmluZ3MiOiJEaXNjb3VudHMiLCJzdWJ0b3RhbCI6IlN1YnRvdGFsIn0=");
  22172.    if (val === '') {
  22173.        val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJDYXJ0IOKAoiB7e2NhcnRfcXVhbnRpdHl9fSIsImNoZWNrb3V0IjoiQ2hlY2tvdXQg4oCiIHt7dG90YWxfcHJpY2V9fSIsImFkZFRleHQiOiJBZGQiLCJlbXB0eUNhcnQiOiJZb3VyIGNhcnQgaXMgZW1wdHkiLCJkaXNjb3VudFNhdmluZ3MiOiJTYXZlIiwiY29udGludWVTaG9wcGluZyI6Ik9yIGNvbnRpbnVlIHNob3BwaW5nIiwidG90YWxTYXZpbmdzIjoiRGlzY291bnRzIiwic3VidG90YWwiOiJTdWJ0b3RhbCIsImJ1bmRsZUhpZGVTaW5ndWxhckl0ZW1UZXh0IjoiSGlkZSAxIGl0ZW0iLCJidW5kbGVTaG93U2luZ3VsYXJJdGVtVGV4dCI6IlNob3cgMSBpdGVtIiwiYnVuZGxlSGlkZU11bHRpcGxlSXRlbXNUZXh0IjoiSGlkZSB7TlVNQkVSX09GX0lURU1TfSBpdGVtcyIsImJ1bmRsZVNob3dNdWx0aXBsZUl0ZW1zVGV4dCI6IlNob3cge05VTUJFUl9PRl9JVEVNU30gaXRlbXMifQ==");
  22174.    }
  22175.    val = JSON.parse(val);
  22176.    window.upcartSettings.upcartSettings.translations = val;
  22177.  
  22178.    val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22179.    if (val === '') {
  22180.        val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22181.    }
  22182.    val = JSON.parse(val);
  22183.    window.upcartSettings.upcartSettings.htmlFields = val;
  22184.  
  22185.    val = b64DecodeUnicode("dHJ1ZQ==");
  22186.    if (val === '') {
  22187.        val = b64DecodeUnicode("dHJ1ZQ==");
  22188.    }
  22189.    val = JSON.parse(val);
  22190.    window.upcartSettings.upcartSettings.automaticDiscount = val;
  22191.  
  22192.    val = b64DecodeUnicode("ZmFsc2U=");
  22193.    if (val === '') {
  22194.        val = b64DecodeUnicode("ZmFsc2U=");
  22195.    }
  22196.    val = JSON.parse(val);
  22197.    window.upcartSettings.upcartSettings.basePriceForDiscount = val;
  22198.  
  22199.    val = b64DecodeUnicode("dHJ1ZQ==");
  22200.    if (val === '') {
  22201.        val = b64DecodeUnicode("ZmFsc2U=");
  22202.    }
  22203.    val = JSON.parse(val);
  22204.    window.upcartSettings.upcartSettings.hideSingleUnderscoredProperties = val;
  22205.  
  22206.    val = b64DecodeUnicode("ZmFsc2U=");
  22207.    if (val === '') {
  22208.        val = b64DecodeUnicode("ZmFsc2U=");
  22209.    }
  22210.    val = JSON.parse(val);
  22211.    window.upcartSettings.upcartSettings.showContinueShoppingButton = val;
  22212.  
  22213.    val = b64DecodeUnicode("ZmFsc2U=");
  22214.    if (val === '') {
  22215.        val = b64DecodeUnicode("ZmFsc2U=");
  22216.    }
  22217.    val = JSON.parse(val);
  22218.    window.upcartSettings.upcartSettings.ajaxRaceConditionPrevention = val;
  22219.  
  22220.    val = b64DecodeUnicode("ZmFsc2U=");
  22221.    if (val === '') {
  22222.        val = b64DecodeUnicode("ZmFsc2U=");
  22223.    }
  22224.    val = JSON.parse(val);
  22225.    window.upcartSettings.upcartSettings.htmlFieldForceReRender = val;
  22226.  
  22227.    val = b64DecodeUnicode("ZmFsc2U=");
  22228.    if (val === '') {
  22229.        val = b64DecodeUnicode("ZmFsc2U=");
  22230.    }
  22231.    val = JSON.parse(val);
  22232.    window.upcartSettings.upcartSettings.skipGoogleFonts = val;
  22233.  
  22234.    val = b64DecodeUnicode("ZmFsc2U=");
  22235.    if (val === '') {
  22236.        val = b64DecodeUnicode("ZmFsc2U=");
  22237.    }
  22238.    val = JSON.parse(val);
  22239.    window.upcartSettings.upcartSettings.overrideScrollLocking = val;
  22240.  
  22241.    val = b64DecodeUnicode("MTAw");
  22242.    if (val === '') {
  22243.        val = b64DecodeUnicode("MTAw");
  22244.    }
  22245.    window.upcartSettings.upcartSettings.trafficAllocationPercent = val;
  22246.  
  22247.    val = b64DecodeUnicode("dHJ1ZQ==");
  22248.    if (val === '') {
  22249.        val = b64DecodeUnicode("ZmFsc2U=");
  22250.    }
  22251.    val = JSON.parse(val);
  22252.    window.upcartSettings.upcartSettings.renderCartInShadowDom = val;
  22253.  
  22254.    val = b64DecodeUnicode("ZmFsc2U=");
  22255.    if (val === '') {
  22256.        val = b64DecodeUnicode("ZmFsc2U=");
  22257.    }
  22258.    val = JSON.parse(val);
  22259.    window.upcartSettings.upcartSettings.cartEventTracking = val;
  22260.  
  22261.    val = b64DecodeUnicode("");
  22262.    if (val === '') {
  22263.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  22264.    }
  22265.    val = JSON.parse(val);
  22266.    window.upcartSettings.upcartSettings.openCartButtonSelection = val;
  22267.  
  22268.    val = b64DecodeUnicode("");
  22269.    if (val === '') {
  22270.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  22271.    }
  22272.    val = JSON.parse(val);
  22273.    window.upcartSettings.upcartSettings.addToCartButtonSelection = val;
  22274.  
  22275.    val = b64DecodeUnicode("bGluZQ==");
  22276.    if (val === '') {
  22277.        val = b64DecodeUnicode("bGluZQ==");
  22278.    }
  22279.    window.upcartSettings.upcartSettings.updateItemIdentifier = val;
  22280.  
  22281.    val = b64DecodeUnicode("Knt9");
  22282.    if (val === '') {
  22283.        val = b64DecodeUnicode("Knt9");
  22284.    }
  22285.    window.upcartSettings.upcartSettings.customCSS = val;
  22286.  
  22287.    val = b64DecodeUnicode("Knt9");
  22288.    if (val === '') {
  22289.        val = b64DecodeUnicode("Knt9");
  22290.    }
  22291.    window.upcartSettings.upcartSettings.customStickyCartCSS = val;
  22292.  
  22293.    val = b64DecodeUnicode("ZmFsc2U=");
  22294.    if (val === '') {
  22295.        val = b64DecodeUnicode("ZmFsc2U=");
  22296.    }
  22297.    val = JSON.parse(val);
  22298.    window.upcartSettings.upcartSettings.integrationZapietEnabled = val;
  22299.  
  22300.    val = b64DecodeUnicode("ZmFsc2U=");
  22301.    if (val === '') {
  22302.        val = b64DecodeUnicode("ZmFsc2U=");
  22303.    }
  22304.    val = JSON.parse(val);
  22305.    window.upcartSettings.upcartSettings.integrationYmqEnabled = val;
  22306.  
  22307.    val = b64DecodeUnicode("");
  22308.    if (val === '') {
  22309.        val = b64DecodeUnicode("eyJzdGF0dXMiOiJESVNBQkxFRCJ9");
  22310.    }
  22311.    val = JSON.parse(val);
  22312.    window.upcartSettings.upcartSettings.customCartBundleInfo = val;
  22313.  
  22314.    val = b64DecodeUnicode("dHJ1ZQ==");
  22315.    if (val === '') {
  22316.        val = b64DecodeUnicode("dHJ1ZQ==");
  22317.    }
  22318.    val = JSON.parse(val);
  22319.    window.upcartSettings.upcartEditorSettings.cartIsEnabled = val;
  22320.  
  22321.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwYTlkMWMiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCJ9fQ==");
  22322.    if (val === '') {
  22323.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwMDAwMDAiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCIsImNhcnRXaWR0aCI6eyJkZXNrdG9wIjoiYmFzZSIsIm1vYmlsZSI6ImZ1bGwifX19");
  22324.    }
  22325.    val = JSON.parse(val);
  22326.    window.upcartSettings.upcartEditorSettings.settingsModule = val;
  22327.  
  22328.    val = b64DecodeUnicode("");
  22329.    if (val === '') {
  22330.        val = b64DecodeUnicode("IzJlYTgxOA==");
  22331.    }
  22332.    window.upcartSettings.upcartEditorSettings.designSettingsCartSavingsTextColor = val;
  22333.  
  22334.    val = b64DecodeUnicode("");
  22335.    if (val === '') {
  22336.        val = b64DecodeUnicode("MS4wLjA=");
  22337.    }
  22338.    window.upcartSettings.upcartEditorSettings.headerModuleVersion = val;
  22339.  
  22340.    val = b64DecodeUnicode("");
  22341.    if (val === '') {
  22342.        val = b64DecodeUnicode("MS4wLjA=");
  22343.    }
  22344.    window.upcartSettings.upcartEditorSettings.announcementModuleVersion = val;
  22345.  
  22346.    val = b64DecodeUnicode("");
  22347.    if (val === '') {
  22348.        val = b64DecodeUnicode("MS4wLjA=");
  22349.    }
  22350.    window.upcartSettings.upcartEditorSettings.upsellsModuleVersion = val;
  22351.  
  22352.    val = b64DecodeUnicode("");
  22353.    if (val === '') {
  22354.        val = b64DecodeUnicode("MS4wLjA=");
  22355.    }
  22356.    window.upcartSettings.upcartEditorSettings.recommendationsModuleVersion = val;
  22357.  
  22358.    val = b64DecodeUnicode("");
  22359.    if (val === '') {
  22360.        val = b64DecodeUnicode("MS4wLjA=");
  22361.    }
  22362.    window.upcartSettings.upcartEditorSettings.notesModuleVersion = val;
  22363.  
  22364.    val = b64DecodeUnicode("");
  22365.    if (val === '') {
  22366.        val = b64DecodeUnicode("MS4wLjA=");
  22367.    }
  22368.    window.upcartSettings.upcartEditorSettings.discountCodeModuleVersion = val;
  22369.  
  22370.    val = b64DecodeUnicode("");
  22371.    if (val === '') {
  22372.        val = b64DecodeUnicode("MS4wLjA=");
  22373.    }
  22374.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleVersion = val;
  22375.  
  22376.    val = b64DecodeUnicode("");
  22377.    if (val === '') {
  22378.        val = b64DecodeUnicode("MS4wLjA=");
  22379.    }
  22380.    window.upcartSettings.upcartEditorSettings.rewardsModuleVersion = val;
  22381.  
  22382.    val = b64DecodeUnicode("");
  22383.    if (val === '') {
  22384.        val = b64DecodeUnicode("MS4wLjA=");
  22385.    }
  22386.    window.upcartSettings.upcartEditorSettings.cartItemsModuleVersion = val;
  22387.  
  22388.    val = b64DecodeUnicode("");
  22389.    if (val === '') {
  22390.        val = b64DecodeUnicode("MS4wLjA=");
  22391.    }
  22392.    window.upcartSettings.upcartEditorSettings.addonsModuleVersion = val;
  22393.  
  22394.    val = b64DecodeUnicode("");
  22395.    if (val === '') {
  22396.        val = b64DecodeUnicode("MS4wLjA=");
  22397.    }
  22398.    window.upcartSettings.upcartEditorSettings.expressPayModuleVersion = val;
  22399.  
  22400.    val = b64DecodeUnicode("");
  22401.    if (val === '') {
  22402.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22403.    }
  22404.    val = JSON.parse(val);
  22405.    window.upcartSettings.upcartEditorSettings.headerModuleCustomJsxTemplates = val;
  22406.  
  22407.    val = b64DecodeUnicode("");
  22408.    if (val === '') {
  22409.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22410.    }
  22411.    val = JSON.parse(val);
  22412.    window.upcartSettings.upcartEditorSettings.announcementModuleCustomJsxTemplates = val;
  22413.  
  22414.    val = b64DecodeUnicode("");
  22415.    if (val === '') {
  22416.        val = b64DecodeUnicode("eyJ1cHNlbGxUaWxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22417.    }
  22418.    val = JSON.parse(val);
  22419.    window.upcartSettings.upcartEditorSettings.upsellsModuleCustomJsxTemplates = val;
  22420.  
  22421.    val = b64DecodeUnicode("");
  22422.    if (val === '') {
  22423.        val = b64DecodeUnicode("eyJyZWNvbW1lbmRhdGlvblRpbGUiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwic2tlbGV0b24iOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfX0=");
  22424.    }
  22425.    val = JSON.parse(val);
  22426.    window.upcartSettings.upcartEditorSettings.recommendationsModuleCustomJsxTemplates = val;
  22427.  
  22428.    val = b64DecodeUnicode("");
  22429.    if (val === '') {
  22430.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22431.    }
  22432.    val = JSON.parse(val);
  22433.    window.upcartSettings.upcartEditorSettings.notesModuleCustomJsxTemplates = val;
  22434.  
  22435.    val = b64DecodeUnicode("");
  22436.    if (val === '') {
  22437.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22438.    }
  22439.    val = JSON.parse(val);
  22440.    window.upcartSettings.upcartEditorSettings.discountModuleCustomJsxTemplates = val;
  22441.  
  22442.    val = b64DecodeUnicode("");
  22443.    if (val === '') {
  22444.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22445.    }
  22446.    val = JSON.parse(val);
  22447.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleCustomJsxTemplates = val;
  22448.  
  22449.    val = b64DecodeUnicode("");
  22450.    if (val === '') {
  22451.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22452.    }
  22453.    val = JSON.parse(val);
  22454.    window.upcartSettings.upcartEditorSettings.rewardsModuleCustomJsxTemplates = val;
  22455.  
  22456.    val = b64DecodeUnicode("");
  22457.    if (val === '') {
  22458.        val = b64DecodeUnicode("eyJza2VsZXRvbiI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJwcm9kdWN0VGlsZSI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJ2YXJpYW50Ijp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByb3BlcnRpZXMiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwiYnVuZGxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByaWNlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22459.    }
  22460.    val = JSON.parse(val);
  22461.    window.upcartSettings.upcartEditorSettings.cartItemsModuleCustomJsxTemplates = val;
  22462.  
  22463.    val = b64DecodeUnicode("");
  22464.    if (val === '') {
  22465.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22466.    }
  22467.    val = JSON.parse(val);
  22468.    window.upcartSettings.upcartEditorSettings.addonsModuleCustomJsxTemplates = val;
  22469.  
  22470.    val = b64DecodeUnicode("");
  22471.    if (val === '') {
  22472.        val = b64DecodeUnicode("YmFzZQ==");
  22473.    }
  22474.    window.upcartSettings.upcartEditorSettings.headerBorderBottom = val;
  22475.  
  22476.    val = b64DecodeUnicode("");
  22477.    if (val === '') {
  22478.        val = b64DecodeUnicode("YmFzZQ==");
  22479.    }
  22480.    window.upcartSettings.upcartEditorSettings.headerHeight = val;
  22481.  
  22482.    val = b64DecodeUnicode("");
  22483.    if (val === '') {
  22484.        val = b64DecodeUnicode("I2ZmZmZmZjAw");
  22485.    }
  22486.    window.upcartSettings.upcartEditorSettings.headerBackgroundColor = val;
  22487.  
  22488.    val = b64DecodeUnicode("");
  22489.    if (val === '') {
  22490.        val = b64DecodeUnicode("eyJ0eXBlIjoiaW5oZXJpdEhlYWRpbmdTdHlsZXMiLCJoZWFkaW5nTGV2ZWwiOiJoMiJ9");
  22491.    }
  22492.    val = JSON.parse(val);
  22493.    window.upcartSettings.upcartEditorSettings.headerTitleContent = val;
  22494.  
  22495.    val = b64DecodeUnicode("");
  22496.    if (val === '') {
  22497.        val = b64DecodeUnicode("c2lkZQ==");
  22498.    }
  22499.    window.upcartSettings.upcartEditorSettings.headerTitleAlignment = val;
  22500.  
  22501.    val = b64DecodeUnicode("");
  22502.    if (val === '') {
  22503.        val = b64DecodeUnicode("dGl0bGVfX2Nsb3NlQnV0dG9u");
  22504.    }
  22505.    window.upcartSettings.upcartEditorSettings.headerElementArrangement = val;
  22506.  
  22507.    val = b64DecodeUnicode("");
  22508.    if (val === '') {
  22509.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMDBjIiwib25Ib3ZlciI6IiMwMDAwMDAxNCJ9");
  22510.    }
  22511.    val = JSON.parse(val);
  22512.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBackgroundColor = val;
  22513.  
  22514.    val = b64DecodeUnicode("");
  22515.    if (val === '') {
  22516.        val = b64DecodeUnicode("eyJiYXNlIjoiIzYzNzM4MSIsIm9uSG92ZXIiOm51bGx9");
  22517.    }
  22518.    val = JSON.parse(val);
  22519.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconColor = val;
  22520.  
  22521.    val = b64DecodeUnicode("");
  22522.    if (val === '') {
  22523.        val = b64DecodeUnicode("c21hbGw=");
  22524.    }
  22525.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconSize = val;
  22526.  
  22527.    val = b64DecodeUnicode("");
  22528.    if (val === '') {
  22529.        val = b64DecodeUnicode("YmFzZQ==");
  22530.    }
  22531.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconStrokeWidth = val;
  22532.  
  22533.    val = b64DecodeUnicode("");
  22534.    if (val === '') {
  22535.        val = b64DecodeUnicode("bm9uZQ==");
  22536.    }
  22537.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderWidth = val;
  22538.  
  22539.    val = b64DecodeUnicode("");
  22540.    if (val === '') {
  22541.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMCIsIm9uSG92ZXIiOm51bGx9");
  22542.    }
  22543.    val = JSON.parse(val);
  22544.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderColor = val;
  22545.  
  22546.    val = b64DecodeUnicode("dHJ1ZQ==");
  22547.    if (val === '') {
  22548.        val = b64DecodeUnicode("ZmFsc2U=");
  22549.    }
  22550.    val = JSON.parse(val);
  22551.    window.upcartSettings.upcartEditorSettings.announcementModule = val;
  22552.  
  22553.    val = b64DecodeUnicode("PHA+PHN0cm9uZz4qKioqKiAgRlJFRSBTSElQUElORyAqKioqKjwvc3Ryb25nPjwvcD4K");
  22554.    if (val === '') {
  22555.        val = b64DecodeUnicode("PHA+WW91ciBwcm9kdWN0cyBhcmUgcmVzZXJ2ZWQgZm9yIDxiPntUSU1FUn08L2I+IG1pbnV0ZXMhPC9wPg==");
  22556.    }
  22557.    window.upcartSettings.upcartEditorSettings.announcementEditor = val;
  22558.  
  22559.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22560.    if (val === '') {
  22561.        val = b64DecodeUnicode("I0NERTBFMA==");
  22562.    }
  22563.    window.upcartSettings.upcartEditorSettings.announcementBackgroundColor = val;
  22564.  
  22565.    val = b64DecodeUnicode("dG9w");
  22566.    if (val === '') {
  22567.        val = b64DecodeUnicode("dG9w");
  22568.    }
  22569.    window.upcartSettings.upcartEditorSettings.announcementModulePosition = val;
  22570.  
  22571.    val = b64DecodeUnicode("IzEwOWMxYw==");
  22572.    if (val === '') {
  22573.        val = b64DecodeUnicode("I0M1RTZGRA==");
  22574.    }
  22575.    window.upcartSettings.upcartEditorSettings.announcementBorderColor = val;
  22576.  
  22577.    val = b64DecodeUnicode("MA==");
  22578.    if (val === '') {
  22579.        val = b64DecodeUnicode("MDA6MDA=");
  22580.    }
  22581.    window.upcartSettings.upcartEditorSettings.announcementTimer = val;
  22582.  
  22583.    val = b64DecodeUnicode("");
  22584.    if (val === '') {
  22585.        val = b64DecodeUnicode("YmFzZQ==");
  22586.    }
  22587.    window.upcartSettings.upcartEditorSettings.announcementHeight = val;
  22588.  
  22589.    val = b64DecodeUnicode("");
  22590.    if (val === '') {
  22591.        val = b64DecodeUnicode("MTU=");
  22592.    }
  22593.    window.upcartSettings.upcartEditorSettings.announcementTextFontSizePx = val;
  22594.  
  22595.    val = b64DecodeUnicode("ZmFsc2U=");
  22596.    if (val === '') {
  22597.        val = b64DecodeUnicode("ZmFsc2U=");
  22598.    }
  22599.    val = JSON.parse(val);
  22600.    window.upcartSettings.upcartEditorSettings.rewardsModule = val;
  22601.  
  22602.    val = b64DecodeUnicode("I0UyRTJFMg==");
  22603.    if (val === '') {
  22604.        val = b64DecodeUnicode("I0UyRTJFMg==");
  22605.    }
  22606.    window.upcartSettings.upcartEditorSettings.rewardsBarBackgroundColor = val;
  22607.  
  22608.    val = b64DecodeUnicode("IzkzRDNGRg==");
  22609.    if (val === '') {
  22610.        val = b64DecodeUnicode("IzkzRDNGRg==");
  22611.    }
  22612.    window.upcartSettings.upcartEditorSettings.rewardsBarForegroundColor = val;
  22613.  
  22614.    val = b64DecodeUnicode("Y2FydFRvdGFs");
  22615.    if (val === '') {
  22616.        val = b64DecodeUnicode("Y2FydFRvdGFs");
  22617.    }
  22618.    window.upcartSettings.upcartEditorSettings.rewardsBasis = val;
  22619.  
  22620.    val = b64DecodeUnicode("ZmFsc2U=");
  22621.    if (val === '') {
  22622.        val = b64DecodeUnicode("ZmFsc2U=");
  22623.    }
  22624.    val = JSON.parse(val);
  22625.    window.upcartSettings.upcartEditorSettings.rewardsProductLinkVisible = val;
  22626.  
  22627.    val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22628.    if (val === '') {
  22629.        val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22630.    }
  22631.    window.upcartSettings.upcartEditorSettings.rewardsTargetType = val;
  22632.  
  22633.    val = b64DecodeUnicode("MTI1");
  22634.    if (val === '') {
  22635.        val = b64DecodeUnicode("MTI1");
  22636.    }
  22637.    window.upcartSettings.upcartEditorSettings.rewardsMinAmount = val;
  22638.  
  22639.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22640.    if (val === '') {
  22641.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22642.    }
  22643.    window.upcartSettings.upcartEditorSettings.rewardsEditor = val;
  22644.  
  22645.    val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22646.    if (val === '') {
  22647.        val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22648.    }
  22649.    window.upcartSettings.upcartEditorSettings.rewardsEditorAfterText = val;
  22650.  
  22651.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22652.    if (val === '') {
  22653.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22654.    }
  22655.    window.upcartSettings.upcartEditorSettings.rewardsEditorForItemCount = val;
  22656.  
  22657.    val = b64DecodeUnicode("NQ==");
  22658.    if (val === '') {
  22659.        val = b64DecodeUnicode("NQ==");
  22660.    }
  22661.    window.upcartSettings.upcartEditorSettings.rewardsItemCount = val;
  22662.  
  22663.    val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22664.    if (val === '') {
  22665.        val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22666.    }
  22667.    val = JSON.parse(val);
  22668.    window.upcartSettings.upcartEditorSettings.rewardsTiers = val;
  22669.  
  22670.    val = b64DecodeUnicode("W10=");
  22671.    if (val === '') {
  22672.        val = b64DecodeUnicode("W10=");
  22673.    }
  22674.    val = JSON.parse(val);
  22675.    window.upcartSettings.upcartEditorSettings.rewardsTierProducts = val;
  22676.  
  22677.    val = b64DecodeUnicode("ZmFsc2U=");
  22678.    if (val === '') {
  22679.        val = b64DecodeUnicode("ZmFsc2U=");
  22680.    }
  22681.    val = JSON.parse(val);
  22682.    window.upcartSettings.upcartEditorSettings.rewardsShowIconWithSingleTier = val;
  22683.  
  22684.    val = b64DecodeUnicode("dHJ1ZQ==");
  22685.    if (val === '') {
  22686.        val = b64DecodeUnicode("ZmFsc2U=");
  22687.    }
  22688.    val = JSON.parse(val);
  22689.    window.upcartSettings.upcartEditorSettings.rewardsShowOnEmptyCart = val;
  22690.  
  22691.    val = b64DecodeUnicode("");
  22692.    if (val === '') {
  22693.        val = b64DecodeUnicode("ZmFsc2U=");
  22694.    }
  22695.    val = JSON.parse(val);
  22696.    window.upcartSettings.upcartEditorSettings.rewardsRemovePreviousProducts = val;
  22697.  
  22698.    val = b64DecodeUnicode("ZmFsc2U=");
  22699.    if (val === '') {
  22700.        val = b64DecodeUnicode("ZmFsc2U=");
  22701.    }
  22702.    val = JSON.parse(val);
  22703.    window.upcartSettings.upcartEditorSettings.recommendationsModule = val;
  22704.  
  22705.    val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22706.    if (val === '') {
  22707.        val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22708.    }
  22709.    window.upcartSettings.upcartEditorSettings.recommendationsHeaderText = val;
  22710.  
  22711.    val = b64DecodeUnicode("ZmFsc2U=");
  22712.    if (val === '') {
  22713.        val = b64DecodeUnicode("ZmFsc2U=");
  22714.    }
  22715.    val = JSON.parse(val);
  22716.    window.upcartSettings.upcartEditorSettings.recommendationsEnableShopNowButton = val;
  22717.  
  22718.    val = b64DecodeUnicode("U2hvcCBOb3c=");
  22719.    if (val === '') {
  22720.        val = b64DecodeUnicode("U2hvcCBOb3c=");
  22721.    }
  22722.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonText = val;
  22723.  
  22724.    val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22725.    if (val === '') {
  22726.        val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22727.    }
  22728.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonURL = val;
  22729.  
  22730.    val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22731.    if (val === '') {
  22732.        val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22733.    }
  22734.    val = JSON.parse(val);
  22735.    window.upcartSettings.upcartEditorSettings.recommendationItems = val;
  22736.  
  22737.    val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22738.    if (val === '') {
  22739.        val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22740.    }
  22741.    window.upcartSettings.upcartEditorSettings.recommendationsProductRecommendationsHeaderText = val;
  22742.  
  22743.    val = b64DecodeUnicode("Mw==");
  22744.    if (val === '') {
  22745.        val = b64DecodeUnicode("Mw==");
  22746.    }
  22747.    window.upcartSettings.upcartEditorSettings.recommendationsMaxRecommendationsToShow = val;
  22748.  
  22749.    val = b64DecodeUnicode("dmVydGljYWw=");
  22750.    if (val === '') {
  22751.        val = b64DecodeUnicode("dmVydGljYWw=");
  22752.    }
  22753.    window.upcartSettings.upcartEditorSettings.recommendationsDirection = val;
  22754.  
  22755.    val = b64DecodeUnicode("dHJ1ZQ==");
  22756.    if (val === '') {
  22757.        val = b64DecodeUnicode("ZmFsc2U=");
  22758.    }
  22759.    val = JSON.parse(val);
  22760.    window.upcartSettings.upcartEditorSettings.upsellsModule = val;
  22761.  
  22762.    val = b64DecodeUnicode("dmVydGljYWw=");
  22763.    if (val === '') {
  22764.        val = b64DecodeUnicode("aG9yaXpvbnRhbA==");
  22765.    }
  22766.    window.upcartSettings.upcartEditorSettings.upsellsDirection = val;
  22767.  
  22768.    val = b64DecodeUnicode("PHA+PC9wPgo=");
  22769.    if (val === '') {
  22770.        val = b64DecodeUnicode("WW91J2xsIGxvdmUgdGhlc2U=");
  22771.    }
  22772.    window.upcartSettings.upcartEditorSettings.upsellsTitle = val;
  22773.  
  22774.    val = b64DecodeUnicode("Mw==");
  22775.    if (val === '') {
  22776.        val = b64DecodeUnicode("MTA=");
  22777.    }
  22778.    window.upcartSettings.upcartEditorSettings.maximumUpsellsToShow = val;
  22779.  
  22780.    val = b64DecodeUnicode("dHJ1ZQ==");
  22781.    if (val === '') {
  22782.        val = b64DecodeUnicode("ZmFsc2U=");
  22783.    }
  22784.    val = JSON.parse(val);
  22785.    window.upcartSettings.upcartEditorSettings.upsellsShouldLimit = val;
  22786.  
  22787.    val = b64DecodeUnicode("ZmFsc2U=");
  22788.    if (val === '') {
  22789.        val = b64DecodeUnicode("ZmFsc2U=");
  22790.    }
  22791.    val = JSON.parse(val);
  22792.    window.upcartSettings.upcartEditorSettings.upsellsTrigger = val;
  22793.  
  22794.    val = b64DecodeUnicode("ZmFsc2U=");
  22795.    if (val === '') {
  22796.        val = b64DecodeUnicode("ZmFsc2U=");
  22797.    }
  22798.    val = JSON.parse(val);
  22799.    window.upcartSettings.upcartEditorSettings.showUpsellItemsAlreadyInCart = val;
  22800.  
  22801.    val = b64DecodeUnicode("W3siaWQiOiI1MjM2MyIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzczODc4NDc3ODY1ODMiLCJzaG9ydElkIjoiNzM4Nzg0Nzc4NjU4MyIsInZhcmlhbnRzIjpbIjQxNjE0OTYwODg1ODQ3Il0sImhhbmRsZSI6IjEtMTAtMTAwcGNzLXVzYi0yLTAtMmdiLTRnYi04Z2ItMTZnYi0zMmdiLTY0Z2ItMTI4Z2ItdXNiLWZsYXNoLWRyaXZlcy1sb3QiLCJ0aXRsZSI6Ik5ldyAxMjhHQiBVU0IgRmxhc2ggRHJpdmVzIFVTQiAyLjAgQmxhY2sgYW5kIFNpbHZlciAtIExJUVVJREFUSU9OIFNBTEUiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvcy1sMTAwMF8yODUxNWNhZC1lMjNlLTRjNWItOGU4YS05OTUxNjY3ZDVjZDgud2VicD92PTE3NDIzMjMyNjYifV19fSx7ImlkIjoiMzQzODMiLCJ2IjoyLCJ0cmlnZ2VyIjp7Im9uIjoiYWxsIn0sInVwc2VsbCI6eyJ0eXBlIjoiUHJvZHVjdCIsInByb2R1Y3RzIjpbeyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC82NTcwNjIxNTk5ODMxIiwic2hvcnRJZCI6IjY1NzA2MjE1OTk4MzEiLCJ2YXJpYW50cyI6WyIzOTMzMzgxODI2OTc4MyJdLCJoYW5kbGUiOiIzbS1zdGlja2VyLWRvdWJsZS1zaWRlZC10YXBlLWFkaGVzaXZlLWZvci1jZWxsLXBob25lLWNvbXB1dGVyLXJlcGFpciIsInRpdGxlIjoiTmV3IEJsYWNrIDNNIFN0aWNrZXIgRG91YmxlIFNpZGVkIFRhcGUgQWRoZXNpdmUgRm9yIENlbGwgUGhvbmUgJiBDb21wdXRlciBSZXBhaXJzIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL3RhcGUyLmpwZz92PTE3Mjg5MjMwNzAifV19fSx7ImlkIjoiNTcwOTQiLCJ2IjoyLCJ0cmlnZ2VyIjp7Im9uIjoiYWxsIn0sInVwc2VsbCI6eyJ0eXBlIjoiUHJvZHVjdCIsInByb2R1Y3RzIjpbeyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC83MzIzODg0MDI3OTkxIiwic2hvcnRJZCI6IjczMjM4ODQwMjc5OTEiLCJ2YXJpYW50cyI6WyI0MTM2MDU4MjkzNDYxNSJdLCJoYW5kbGUiOiIxMTUtaW4tMS1tYWduZXRpYy1wcmVjaXNpb24tc2NyZXdkcml2ZXItc2V0LXBjLXBob25lLWVsZWN0cm9uaWNzLXJlcGFpci10b29sLWtpdCIsInRpdGxlIjoiTmV3IExhcHRvcCBSZXBhaXIgVG9vbCBraXQgMTE1IGluIDEgTWFnbmV0aWMgUHJlY2lzaW9uIFNjcmV3ZHJpdmVyIFNldCIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9zLWwxMDAwXzUxNmUwMjY0LWRjZjMtNDU3Zi1iNTJiLWI4MDc2ZjE0MDBiMi53ZWJwP3Y9MTczMTQyMDU0OCJ9XX19XQ==");
  22802.    if (val === '') {
  22803.        val = b64DecodeUnicode("W3siX2lkIjoiIiwidHJpZ2dlciI6bnVsbCwidXBzZWxsIjpudWxsfV0=");
  22804.    }
  22805.    val = JSON.parse(val);
  22806.    window.upcartSettings.upcartEditorSettings.upsellsItems = val;
  22807.  
  22808.    val = b64DecodeUnicode("Ym90dG9t");
  22809.    if (val === '') {
  22810.        val = b64DecodeUnicode("Ym90dG9t");
  22811.    }
  22812.    window.upcartSettings.upcartEditorSettings.upsellsModulePosition = val;
  22813.  
  22814.    val = b64DecodeUnicode("ZmFsc2U=");
  22815.    if (val === '') {
  22816.        val = b64DecodeUnicode("ZmFsc2U=");
  22817.    }
  22818.    val = JSON.parse(val);
  22819.    window.upcartSettings.upcartEditorSettings.recommendedUpsells = val;
  22820.  
  22821.    val = b64DecodeUnicode("ZmFsc2U=");
  22822.    if (val === '') {
  22823.        val = b64DecodeUnicode("ZmFsc2U=");
  22824.    }
  22825.    val = JSON.parse(val);
  22826.    window.upcartSettings.upcartEditorSettings.smartVariantMatching = val;
  22827.  
  22828.    val = b64DecodeUnicode("cmVsYXRlZA==");
  22829.    if (val === '') {
  22830.        val = b64DecodeUnicode("cmVsYXRlZA==");
  22831.    }
  22832.    window.upcartSettings.upcartEditorSettings.upsellRecommendationIntent = val;
  22833.  
  22834.    val = b64DecodeUnicode("");
  22835.    if (val === '') {
  22836.        val = b64DecodeUnicode("bm8tcHJvZHVjdHM=");
  22837.    }
  22838.    window.upcartSettings.upcartEditorSettings.upsellProductReviews = val;
  22839.  
  22840.    val = b64DecodeUnicode("");
  22841.    if (val === '') {
  22842.        val = b64DecodeUnicode("KHt7UkVWSUVXX0NPVU5UfX0gcmV2aWV3cyk=");
  22843.    }
  22844.    window.upcartSettings.upcartEditorSettings.upsellProductReviewsTextTemplate = val;
  22845.  
  22846.    val = b64DecodeUnicode("dHJ1ZQ==");
  22847.    if (val === '') {
  22848.        val = b64DecodeUnicode("ZmFsc2U=");
  22849.    }
  22850.    val = JSON.parse(val);
  22851.    window.upcartSettings.upcartEditorSettings.addonsModule = val;
  22852.  
  22853.    val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjp0cnVlLCJwcm9kdWN0SGFuZGxlIjoic2hpcHBpbmctcHJvdGVjdGlvbiIsImRlZmF1bHRCZWhhdmlvciI6dHJ1ZSwidGllcnMiOlt7Im1heENhcnRUb3RhbCI6OTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjIuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk0NDc5MSJ9LHsibWF4Q2FydFRvdGFsIjoxOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjMuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk3NzU1OSJ9LHsibWF4Q2FydFRvdGFsIjoyOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjQuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDAxMDMyNyJ9LHsibWF4Q2FydFRvdGFsIjozOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjUuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDA0MzA5NSJ9LHsibWF4Q2FydFRvdGFsIjpudWxsLCJ0ZW1wb3JhcnlEYXRhRm9yQWRtaW4iOnsidmFyaWFudFByaWNlIjo2Ljk5fSwidmFyaWFudElkIjoiNDEzNjU2MDAwNzU4NjMifV0sInVzZVByZURpc2NvdW50ZWRUb3RhbCI6dHJ1ZX0sInByb2R1Y3RBZGRvbiI6eyJhY3RpdmUiOmZhbHNlLCJwcm9kdWN0SGFuZGxlIjpudWxsLCJwcm9kdWN0IjpudWxsLCJkZWZhdWx0QmVoYXZpb3IiOmZhbHNlfX0=");
  22854.    if (val === '') {
  22855.        val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjpmYWxzZSwicHJvZHVjdEhhbmRsZSI6bnVsbCwidGllcnMiOltdLCJ1c2VQcmVEaXNjb3VudGVkVG90YWwiOmZhbHNlfSwicHJvZHVjdEFkZG9uIjp7ImFjdGl2ZSI6ZmFsc2UsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGx9fQ==");
  22856.    }
  22857.    val = JSON.parse(val);
  22858.    window.upcartSettings.upcartEditorSettings.addonsField = val;
  22859.  
  22860.    val = b64DecodeUnicode("dHJ1ZQ==");
  22861.    if (val === '') {
  22862.        val = b64DecodeUnicode("ZmFsc2U=");
  22863.    }
  22864.    val = JSON.parse(val);
  22865.    window.upcartSettings.upcartEditorSettings.addonsShouldBeCounted = val;
  22866.  
  22867.    val = b64DecodeUnicode("dHJ1ZQ==");
  22868.    if (val === '') {
  22869.        val = b64DecodeUnicode("ZmFsc2U=");
  22870.    }
  22871.    val = JSON.parse(val);
  22872.    window.upcartSettings.upcartEditorSettings.notesModule = val;
  22873.  
  22874.    val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zIC0gTGFwdG9wIG1vZGVsIE51bWJlcjwvcD4K");
  22875.    if (val === '') {
  22876.        val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zPC9wPg==");
  22877.    }
  22878.    window.upcartSettings.upcartEditorSettings.notesTitle = val;
  22879.  
  22880.    val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22881.    if (val === '') {
  22882.        val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22883.    }
  22884.    window.upcartSettings.upcartEditorSettings.notesPlaceholder = val;
  22885.  
  22886.    val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22887.    if (val === '') {
  22888.        val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22889.    }
  22890.    window.upcartSettings.upcartEditorSettings.notesPlacement = val;
  22891.  
  22892.    val = b64DecodeUnicode("dHJ1ZQ==");
  22893.    if (val === '') {
  22894.        val = b64DecodeUnicode("ZmFsc2U=");
  22895.    }
  22896.    val = JSON.parse(val);
  22897.    window.upcartSettings.upcartEditorSettings.trustBadgesModule = val;
  22898.  
  22899.    val = b64DecodeUnicode("eyJ1cmwiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL1VwY2FydF9UcnVzdF9CYWRnZV8xNzM5ODgzNjUyMjIxLmpwZz92PTE3Mzk4ODM2NjEiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  22900.    if (val === '') {
  22901.        val = b64DecodeUnicode("eyJ1cmwiOiIiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  22902.    }
  22903.    val = JSON.parse(val);
  22904.    window.upcartSettings.upcartEditorSettings.trustBadges = val;
  22905.  
  22906.    val = b64DecodeUnicode("dHJ1ZQ==");
  22907.    if (val === '') {
  22908.        val = b64DecodeUnicode("ZmFsc2U=");
  22909.    }
  22910.    val = JSON.parse(val);
  22911.    window.upcartSettings.upcartEditorSettings.discountCodeModule = val;
  22912.  
  22913.    val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  22914.    if (val === '') {
  22915.        val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  22916.    }
  22917.    window.upcartSettings.upcartEditorSettings.discountCodePlaceholder = val;
  22918.  
  22919.    val = b64DecodeUnicode("QXBwbHk=");
  22920.    if (val === '') {
  22921.        val = b64DecodeUnicode("QXBwbHk=");
  22922.    }
  22923.    window.upcartSettings.upcartEditorSettings.discountCodeButtonText = val;
  22924.  
  22925.    val = b64DecodeUnicode("ZmFsc2U=");
  22926.    if (val === '') {
  22927.        val = b64DecodeUnicode("ZmFsc2U=");
  22928.    }
  22929.    val = JSON.parse(val);
  22930.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesModule = val;
  22931.  
  22932.    val = b64DecodeUnicode("ZmFsc2U=");
  22933.    if (val === '') {
  22934.        val = b64DecodeUnicode("ZmFsc2U=");
  22935.    }
  22936.    val = JSON.parse(val);
  22937.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesPreventDowngrades = val;
  22938.  
  22939.    val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  22940.    if (val === '') {
  22941.        val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  22942.    }
  22943.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesButtonText = val;
  22944.  
  22945.    val = b64DecodeUnicode("ZmFsc2U=");
  22946.    if (val === '') {
  22947.        val = b64DecodeUnicode("ZmFsc2U=");
  22948.    }
  22949.    val = JSON.parse(val);
  22950.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsTextOverride = val;
  22951.  
  22952.    val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  22953.    if (val === '') {
  22954.        val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  22955.    }
  22956.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsText = val;
  22957.  
  22958.    val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  22959.    if (val === '') {
  22960.        val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  22961.    }
  22962.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOneTimePurchaseText = val;
  22963.  
  22964.    val = b64DecodeUnicode("dHJ1ZQ==");
  22965.    if (val === '') {
  22966.        val = b64DecodeUnicode("ZmFsc2U=");
  22967.    }
  22968.    val = JSON.parse(val);
  22969.    window.upcartSettings.upcartEditorSettings.expressPayModule = val;
  22970.  
  22971.    val = b64DecodeUnicode("W10=");
  22972.    if (val === '') {
  22973.        val = b64DecodeUnicode("W10=");
  22974.    }
  22975.    val = JSON.parse(val);
  22976.    window.upcartSettings.upcartEditorSettings.expressPayEnabledGateways = val;
  22977.  
  22978.    val = b64DecodeUnicode("MQ==");
  22979.    if (val === '') {
  22980.        val = b64DecodeUnicode("MQ==");
  22981.    }
  22982.    window.upcartSettings.upcartEditorSettings.expressPayVersion = val;
  22983.  
  22984.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  22985.    if (val === '') {
  22986.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  22987.    }
  22988.    val = JSON.parse(val);
  22989.    window.upcartSettings.upcartEditorSettings.expressPayAcceleratedCheckoutStyles = val;
  22990.  
  22991.    val = b64DecodeUnicode("dHJ1ZQ==");
  22992.    if (val === '') {
  22993.        val = b64DecodeUnicode("dHJ1ZQ==");
  22994.    }
  22995.    val = JSON.parse(val);
  22996.    window.upcartSettings.upcartEditorSettings.expressPayHideBuyerConsent = val;
  22997.  
  22998.    val = b64DecodeUnicode("ZmFsc2U=");
  22999.    if (val === '') {
  23000.        val = b64DecodeUnicode("ZmFsc2U=");
  23001.    }
  23002.    val = JSON.parse(val);
  23003.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartButtonIsEnabled = val;
  23004.  
  23005.    val = b64DecodeUnicode("IzQzYmUwYQ==");
  23006.    if (val === '') {
  23007.        val = b64DecodeUnicode("IzAwMDAwMA==");
  23008.    }
  23009.    window.upcartSettings.stickyCartButtonEditorSettings.backgroundColor = val;
  23010.  
  23011.    val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23012.    if (val === '') {
  23013.        val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23014.    }
  23015.    window.upcartSettings.stickyCartButtonEditorSettings.deviceSettings = val;
  23016.  
  23017.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23018.    if (val === '') {
  23019.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23020.    }
  23021.    window.upcartSettings.stickyCartButtonEditorSettings.iconColor = val;
  23022.  
  23023.    val = b64DecodeUnicode("c3RhbmRhcmRDYXJ0");
  23024.    if (val === '') {
  23025.        val = b64DecodeUnicode("c3F1YXJlQmFn");
  23026.    }
  23027.    window.upcartSettings.stickyCartButtonEditorSettings.iconStyle = val;
  23028.  
  23029.    val = b64DecodeUnicode("I2U0MjYyNg==");
  23030.    if (val === '') {
  23031.        val = b64DecodeUnicode("I2U0MjYyNg==");
  23032.    }
  23033.    window.upcartSettings.stickyCartButtonEditorSettings.quantityBackgroundColor = val;
  23034.  
  23035.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23036.    if (val === '') {
  23037.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23038.    }
  23039.    window.upcartSettings.stickyCartButtonEditorSettings.quantityTextColor = val;
  23040.  
  23041.    val = b64DecodeUnicode("Y2VudGVyUmlnaHQ=");
  23042.    if (val === '') {
  23043.        val = b64DecodeUnicode("Ym90dG9tUmlnaHQ=");
  23044.    }
  23045.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartPosition = val;
  23046.  
  23047. })();
  23048. </script>
  23049.  
  23050.  
  23051.  
  23052.  
  23053.  <div id="upcart-additional-checkout-buttons" style="position: absolute !important; margin-left: -9999px !important; display: block !important;" class="additional-checkout-buttons">
  23054.    
  23055.    <div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
  23056.    <div class="upcart-additional-checkout-buttons-svgs">
  23057.  
  23058.      
  23059.  
  23060.      
  23061.  
  23062.      
  23063.  
  23064.      
  23065.  
  23066.      
  23067.  
  23068.      
  23069.    </div>
  23070.  </div>
  23071.  
  23072.  
  23073.  
  23074.  
  23075. <script>
  23076.  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};
  23077.  window.upcartMoneyFormat = "${{amount}}";
  23078.  window.upcartStorefrontPublicAccessToken = '53e72a50badb7e504187b4c7431817bf' || undefined;
  23079.  window.upcartClientLocalizationCountry = {
  23080.    isoCode: 'CA',
  23081.    currency: 'CurrencyDrop',
  23082.    name: 'Canada'
  23083.  };
  23084.  window.upcartMyShopifyDomain = 'laptoppartsatp.myshopify.com';
  23085. </script>
  23086.  
  23087. <script>
  23088.  window.upcartPreloadedCart.items = window.upcartPreloadedCart.items.map((line) => {
  23089.    
  23090.  
  23091.    return line;
  23092.  });
  23093. </script>
  23094.  
  23095. <div id="upCart"></div>
  23096. <div id="upCartStickyButton"></div>
  23097.  
  23098. <style id="upCart-customCSS">
  23099.  *{}
  23100. </style>
  23101.  
  23102.  
  23103. </div><div id="shopify-block-AcThYNTRkUW1SdzMyZ__6610233760104865948" class="shopify-block shopify-app-block"><script>
  23104.  window.pushowlSubdomain = "laptoppartsatp.myshopify.com".split(".")[0]
  23105.  window.isPushowlThemeAppExtentionEnabled = true
  23106.  window.pushowlGUID = "660339ac-87af-40b1-aeba-b6b62b68c1a9"
  23107.  window.pushowlEnvironment = "production"
  23108. </script>
  23109.  
  23110.  
  23111.  
  23112.  
  23113. </div><div id="shopify-block-AN2k5QkMvdUJ0UDFZd__8171265131012698934" class="shopify-block shopify-app-block">
  23114.  
  23115. <input class="OrichiAppEmbed" type="hidden">
  23116. <input
  23117.  class="OrichiCustomerTags"
  23118.  type="hidden"
  23119.  value="" />
  23120. <input
  23121.  class="OrichiCustomerEmail"
  23122.  type="hidden"
  23123.  value="" />
  23124.  
  23125. <script>
  23126.  var orichiDiscount = {
  23127.    productJSPath: 'https://cdn.shopify.com/extensions/327a6aa9-5752-4c5d-9e15-a67e543013c8/oc-quantity-breaks-limit-591/assets/productpage.min.js',
  23128.    cartJSPath: 'https://cdn.shopify.com/extensions/327a6aa9-5752-4c5d-9e15-a67e543013c8/oc-quantity-breaks-limit-591/assets/cartajax.min.js',
  23129.    currencyFormat: "${{amount}}",
  23130.  }
  23131. </script>
  23132.  
  23133.  
  23134.  
  23135.  
  23136.  <script async src="https://cdn.shopify.com/extensions/327a6aa9-5752-4c5d-9e15-a67e543013c8/oc-quantity-breaks-limit-591/assets/front.min.js"></script>
  23137.  
  23138.  
  23139.  
  23140.  
  23141.  
  23142.  
  23143. <script>
  23144.  
  23145.    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"}};
  23146.  
  23147. </script>
  23148.  
  23149. </div></body>
  23150. </html>
  23151.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda