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

Source: http://laptopparts.ca

  1. <!doctype html>
  2. <html class="no-js no-touch" lang="en">
  3.  <head>
  4.    <!-- Google tag (gtag.js) -->
  5.    <script async src="https://www.googletagmanager.com/gtag/js?id=AW-977549716"></script>
  6.    <script>
  7.      window.dataLayer = window.dataLayer || [];
  8.      function gtag(){dataLayer.push(arguments);}
  9.      gtag('js', new Date());
  10.  
  11.      gtag('config', 'AW-977549716');
  12.    </script>
  13.    <!-- Google Tag Manager -->
  14.    <script>
  15.      (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  16.      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  17.      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  18.      'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  19.      })(window,document,'script','dataLayer','GTM-WDHHF23');
  20.    </script>
  21.    <!-- End Google Tag Manager -->
  22.    <script>  
  23.  /**
  24.  * Author: shipon islam
  25.  * Version: 1.1.0
  26.  * Last Update: 17 Sep 2023
  27.  */
  28.  
  29.  (function() {
  30.      class GTM_DataLayer {
  31.        constructor() {
  32.          window.dataLayer = window.dataLayer || [];
  33.          this.formattedItemId = true;
  34.  
  35.          this.miniCartButtonSelector = [
  36.            // 'a[href="/cart"]',
  37.          ];
  38.  
  39.          this.beginCheckoutbuttons = [
  40.            'button[name="checkout"]',
  41.            '.additional-checkout-buttons',
  42.          ];
  43.  
  44.          this.shopifyDeirectPaymentButtonLink = [
  45.            '.shopify-payment-button'
  46.          ]
  47.  
  48.          this.isAjaxCartIncrementDecrement = true;
  49.  
  50.          this.addToWishListSelectors = {
  51.            'addWishListIcon': '',
  52.            'gridItemSelector': '',
  53.            'productLinkSelector': ''
  54.          }
  55.  
  56.          this.quickViewSelector = {
  57.            'quickViewElement': '',
  58.            'gridItemSelector': '',
  59.            'productLinkSelector': ''
  60.          }
  61.          this.cart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"CAD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
  62.          this.countryCode = "CA";
  63.          this.collectData();          
  64.        }
  65.  
  66.        updateCart() {
  67.          fetch("/cart.js")
  68.          .then((response) => response.json())
  69.          .then((data) => {
  70.            this.cart = data;
  71.          });
  72.        }
  73.  
  74.        collectData() {
  75.            this.customerData();
  76.            this.ajaxRequestData();
  77.            this.miniCartData();
  78.            this.beginCheckoutData();
  79.  
  80.            
  81.  
  82.            
  83.  
  84.            
  85.            
  86.            this.addToWishListData();
  87.            this.quickViewData();
  88.            this.newsletterSignupData();
  89.        }
  90.  
  91.        //logged in customer data
  92.        customerData() {
  93.            const currentUser = {};
  94.            
  95.  
  96.            window.dataLayer = window.dataLayer || [];
  97.            dataLayer.push({
  98.              customer: currentUser
  99.            })
  100.        }
  101.  
  102.        // shipon_add_to_cart, shipon_remove_from_cart
  103.        ajaxRequestData() {
  104.          const self = this;
  105.          let originalFetch = window.fetch;
  106.          
  107.          window.fetch = function () {
  108.            return originalFetch.apply(this, arguments).then((response) => {
  109.              if (response.ok) {
  110.                let cloneResponse = response.clone();
  111.                // add to cart
  112.                if (arguments[0].includes("/cart/add.js") || arguments[0].includes("/cart/add")) {
  113.                  cloneResponse.text().then((text) => {
  114.                    let item = JSON.parse(text);
  115.                    self.singleCartItemDataLayer('shipon_add_to_cart', item);
  116.                    self.updateCart();
  117.                  });
  118.                }else if(arguments[0].includes("/cart/change")) {
  119.                   cloneResponse.text().then((text) => {
  120.                    let newCart = JSON.parse(text);
  121.                    let newCartItems = newCart.items;
  122.                    let oldCartItems = self.cart.items;
  123.  
  124.                    for(let i = 0; i < oldCartItems.length; i++) {
  125.                      let item = oldCartItems[i];
  126.                      let newItem = newCartItems.find(newItems => newItems.id === item.id);
  127.  
  128.  
  129.                      if(newItem) {
  130.  
  131.                        if(newItem.quantity > item.quantity) {
  132.                          // cart item increment
  133.                          let quantity = (newItem.quantity - item.quantity);
  134.                          let updatedItem = {...item, quantity}
  135.                          self.singleCartItemDataLayer('shipon_add_to_cart', updatedItem);
  136.                          self.updateCart();
  137.  
  138.                        }else if(newItem.quantity < item.quantity) {
  139.                          // cart item decrement
  140.                          let quantity = (item.quantity - newItem.quantity);
  141.                          let updatedItem = {...item, quantity}
  142.                          self.singleCartItemDataLayer('shipon_remove_from_cart', updatedItem);
  143.                          self.updateCart();
  144.                        }
  145.                        
  146.  
  147.                      }else {
  148.                        self.singleCartItemDataLayer('shipon_remove_from_cart', item);
  149.                        self.updateCart();
  150.                      }
  151.                    }
  152.                  });
  153.                }
  154.              }
  155.              return response;
  156.            });
  157.          }
  158.        }
  159.  
  160.        // shipon_view_cart
  161.        miniCartData() {
  162.          if(this.miniCartButtonSelector.length) {
  163.            let self = this;
  164.            this.miniCartButtonSelector.forEach((selector) => {
  165.              let miniCartButton = document.querySelector(selector);
  166.              if(miniCartButton) {
  167.                miniCartButton.addEventListener('click', () => {
  168.                  self.cartItemsDataLayer('shipon_view_cart', self.cart);
  169.                });
  170.              }
  171.            });
  172.          }
  173.        }
  174.  
  175.        // shipon_begin_checkout
  176.        beginCheckoutData() {
  177.          let self = this;
  178.          document.addEventListener('click', () => {
  179.            let targetElement = event.target.closest(self.beginCheckoutbuttons.join(', '));
  180.            if(targetElement) {
  181.              self.cartItemsDataLayer('shipon_begin_checkout', self.cart);
  182.            }
  183.          });
  184.        }
  185.  
  186.        // shipon_view_cart, shipon_add_to_cart, shipon_remove_from_cart
  187.        viewCartPageData() {
  188.          
  189.          this.cartItemsDataLayer('shipon_view_cart', this.cart);
  190.  
  191.          //if cart quantity chagne reload page
  192.          if(!this.isAjaxCartIncrementDecrement) {
  193.            const self = this;
  194.            document.addEventListener('pointerdown', (event) => {
  195.              const target = event.target.closest('a[href*="/cart/change?"]');
  196.              if(target) {
  197.                const linkUrl = target.getAttribute('href');
  198.                const queryString = linkUrl.split("?")[1];
  199.                const urlParams = new URLSearchParams(queryString);
  200.                const newQuantity = urlParams.get("quantity");
  201.                const line = urlParams.get("line");
  202.                const cart_id = urlParams.get("id");
  203.        
  204.                
  205.                if(newQuantity && (line || cart_id)) {
  206.                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
  207.        
  208.                  let event = 'shipon_add_to_cart';
  209.                  if(newQuantity < item.quantity) {
  210.                    event = 'shipon_remove_from_cart';
  211.                  }
  212.        
  213.                  let quantity = Math.abs(newQuantity - item.quantity);
  214.                  item['quantity'] = quantity;
  215.        
  216.                  self.singleCartItemDataLayer(event, item);
  217.                }
  218.              }
  219.            });
  220.          }
  221.        }
  222.  
  223.        productSinglePage() {
  224.        
  225.        }
  226.  
  227.        collectionsPageData() {
  228.          var ecommerce = {
  229.            'items': [
  230.              
  231.              ]
  232.          };
  233.  
  234.          ecommerce['item_list_id'] = null
  235.          ecommerce['item_list_name'] = null
  236.  
  237.          this.cartItemsDataLayer('shipon_view_item_list', ecommerce);
  238.        }
  239.        
  240.        
  241.        // add to wishlist
  242.        addToWishListData() {
  243.          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
  244.            const self = this;
  245.            document.addEventListener('pointerdown', (event) => {
  246.              let target = event.target;
  247.              
  248.              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
  249.                let pageULR = window.location.href.replace(/\?.+/, '');
  250.                let requestURL = undefined;
  251.          
  252.                if(/\/products\/[^/]+$/.test(pageULR)) {
  253.                  requestURL = pageULR;
  254.                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
  255.                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
  256.                  if(itemElement) {
  257.                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
  258.                    if(linkElement) {
  259.                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  260.                      if(link && /\/products\/[^/]+$/.test(link)) {
  261.                        requestURL = link;
  262.                      }
  263.                    }
  264.                  }
  265.                }
  266.  
  267.                if(requestURL) {
  268.                  fetch(requestURL + '.json')
  269.                    .then(res => res.json())
  270.                    .then(result => {
  271.                      let data = result.product;                    
  272.                      if(data) {
  273.                        let dataLayerData = {
  274.                         product_id: data.id,
  275.                            variant_id: data.variants[0].id,
  276.                            product_title: data.title,
  277.                         quantity: 1,
  278.                         final_price: parseFloat(data.variants[0].price) * 100,
  279.                         total_discount: 0,
  280.                         product_type: data.product_type,
  281.                         vendor: data.vendor,
  282.                         variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  283.                         sku: data.variants[0].sku,
  284.                        }
  285.  
  286.                        self.singleCartItemDataLayer('shipon_add_to_wishlist', dataLayerData);
  287.                      }
  288.                    });
  289.                }
  290.              }
  291.            });
  292.          }
  293.        }
  294.  
  295.        quickViewData() {
  296.          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
  297.            const self = this;
  298.            document.addEventListener('pointerdown', (event) => {
  299.              let target = event.target;
  300.              if(target.closest(self.quickViewSelector.quickViewElement)) {
  301.                let requestURL = undefined;
  302.                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
  303.                
  304.                if(itemElement) {
  305.                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
  306.                  if(linkElement) {
  307.                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  308.                    if(link && /\/products\/[^/]+$/.test(link)) {
  309.                      requestURL = link;
  310.                    }
  311.                  }
  312.                }  
  313.                
  314.                if(requestURL) {
  315.                    fetch(requestURL + '.json')
  316.                      .then(res => res.json())
  317.                      .then(result => {
  318.                        let data = result.product;                    
  319.                        if(data) {
  320.                          let dataLayerData = {
  321.                           product_id: data.id,
  322.                            variant_id: data.variants[0].id,
  323.                            product_title: data.title,
  324.                           quantity: 1,
  325.                           final_price: parseFloat(data.variants[0].price) * 100,
  326.                           total_discount: 0,
  327.                           product_type: data.product_type,
  328.                           vendor: data.vendor,
  329.                           variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  330.                           sku: data.variants[0].sku,
  331.                          }
  332.  
  333.                          self.singleCartItemDataLayer('shipon_view_item', dataLayerData);
  334.                          self.quickViewVariants = data.variants;
  335.                          self.quickViewedItem = dataLayerData;
  336.                        }
  337.                      });
  338.                  }
  339.              }
  340.            });
  341.  
  342.            
  343.              if(this.shopifyDeirectPaymentButtonLink.length) {
  344.                let self = this;
  345.                document.addEventListener('pointerdown', (event) => {
  346.                  let target = event.target;
  347.                  let checkoutButton = event.target.closest(this.shopifyDeirectPaymentButtonLink.join(', '));
  348.                  
  349.                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
  350.  
  351.                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
  352.                    if(checkoutForm) {
  353.                        let quantity = 1;
  354.                        let varientInput = checkoutForm.querySelector('input[name="id"]');
  355.                        let quantitySelector = checkoutForm.getAttribute('id');
  356.  
  357.                        if(quantitySelector) {
  358.                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
  359.                          if(quentityInput) {
  360.                              quantity = +quentityInput.value;
  361.                          }
  362.                        }
  363.  
  364.                        if(varientInput) {
  365.                            let variant_id = parseInt(varientInput.value);
  366.  
  367.                            if(variant_id) {
  368.                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
  369.                                if(variant && self.quickViewedItem) {
  370.                                    self.quickViewedItem['variant_id'] = variant_id;
  371.                                    self.quickViewedItem['variant_title'] = variant.title;
  372.                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
  373.                                    self.quickViewedItem['quantity'] = quantity;
  374.    
  375.                                    self.singleCartItemDataLayer('shipon_add_to_cart', self.quickViewedItem);
  376.                                    self.singleCartItemDataLayer('shipon_begin_checkout', self.quickViewedItem);
  377.                                }
  378.                            }
  379.                        }
  380.                    }
  381.  
  382.                  }
  383.                });
  384.            }
  385.            
  386.          }
  387.        }
  388.  
  389.        // single item add in dataLyaer
  390.        singleCartItemDataLayer(event, item) {
  391.          dataLayer.push({ "ecommerce": null });
  392.          const dataLayerData = {
  393.            "event": event,
  394.            "ecommerce": {
  395.              "currency": this.cart.currency,
  396.              "value": +(((item.final_price / 100) * item.quantity).toFixed(2)),
  397.              "items": [{
  398.                  "item_id": this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id,
  399.                  "variant_id": item.variant_id.toString(),
  400.                  "item_name": item.product_title,
  401.                  "quantity": item.quantity,
  402.                  "price": +((item.final_price / 100).toFixed(2)),
  403.                  "discount": item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  404.              }]
  405.            }
  406.          }
  407.  
  408.          if(item.product_type) {
  409.            dataLayerData.ecommerce['items'][0]['item_category'] = item.product_type;
  410.          }
  411.  
  412.          if(item.vendor) {
  413.            dataLayerData.ecommerce['items'][0]['item_brand'] = item.vendor;
  414.          }
  415.  
  416.          if(item.variant_title && item.variant_title !== 'Default Title') {
  417.            dataLayerData.ecommerce['items'][0]['item_variant'] = item.variant_title;
  418.          }
  419.  
  420.          if(item.sku) {
  421.            dataLayerData.ecommerce['items'][0]['sku'] = item.sku;
  422.          }
  423.  
  424.          if(item.item_list_id) {
  425.            dataLayerData.ecommerce['items'][0]['item_list_id'] = item.item_list_id;
  426.          }
  427.          
  428.          if(item.item_list_name) {
  429.            dataLayerData.ecommerce['items'][0]['item_list_name'] = item.item_list_name;
  430.          }
  431.          
  432.          dataLayer.push(dataLayerData);
  433.        };
  434.  
  435.        // multiple items add in dataLayer
  436.        cartItemsDataLayer(event, cart) {
  437.          dataLayer.push({ 'ecommerce': null });
  438.          const dataLayerData = {
  439.            'event': event,
  440.            'ecommerce': {
  441.               'currency': this.cart.currency,
  442.               'items': cart.items.map((item, index) => {
  443.                 const itemDataLayerData = {
  444.                    'index': index,
  445.                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
  446.                    'variant_id': item.variant_id.toString(),
  447.                    'item_name': item.product_title,
  448.                    'quantity': item.quantity,
  449.                    'price': +((item.final_price / 100).toFixed(2)),
  450.                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  451.                }
  452.  
  453.                if(item.product_type) {
  454.                  itemDataLayerData['item_category'] = item.product_type;
  455.                }
  456.                
  457.                 if(item.vendor) {
  458.                  itemDataLayerData['item_brand'] = item.vendor;
  459.                }
  460.  
  461.                                
  462.                if(item.variant_title && item.variant_title !== 'Default Title') {
  463.                  itemDataLayerData['item_variant'] = item.variant_title;
  464.                }
  465.              
  466.                if(item.sku) {
  467.                  itemDataLayerData['sku'] = item.sku;
  468.                }
  469.  
  470.                if(item.item_list_name) {
  471.                  itemDataLayerData['item_list_name'] = item.item_list_name;
  472.                }
  473.  
  474.                if(item.item_list_id) {
  475.                  itemDataLayerData['item_list_id'] = item.item_list_id;
  476.                }
  477.  
  478.                return itemDataLayerData;
  479.              })
  480.            }
  481.          }
  482.  
  483.          if(cart.total_price) {
  484.            dataLayerData['ecommerce']['value'] = +((cart.total_price / 100).toFixed(2))
  485.          }
  486.          
  487.          if(cart.item_list_id) {
  488.            dataLayerData['ecommerce']['item_list_id'] = cart.item_list_id;
  489.          }
  490.          
  491.          if(cart.item_list_name) {
  492.            dataLayerData['ecommerce']['item_list_name'] = cart.item_list_name;
  493.          }
  494.          
  495.          dataLayer.push(dataLayerData);
  496.        }
  497.  
  498.        
  499.        // newsletters signup
  500.        newsletterSignupData() {
  501.        document.addEventListener('click', function(event) {
  502.          let target = event.target.closest('form[action^="/contact"] button[type="submit"]');
  503.          let targetForm = event.target.closest('form[action^="/contact"]');
  504.          if(target && targetForm) {
  505.            let email = targetForm.querySelector('input[type="email"]').value;
  506.            let formType = targetForm.querySelector('input[name="contact[tags]"]');
  507.            if(formType && formType.value === 'newsletter') {
  508.              let form_location = window.location.href;
  509.              let form_id = targetForm.getAttribute('id');
  510.              let form_classes = targetForm.getAttribute('class');
  511.        
  512.              dataLayer.push({
  513.                event: 'newsletter_signup',
  514.                email: email,
  515.                form_location,
  516.                form_id,
  517.                form_classes
  518.              });
  519.            }
  520.          }
  521.        });
  522.      }
  523.      }
  524.      
  525.  
  526.      document.addEventListener('DOMContentLoaded', function() {
  527.        try{
  528.          new GTM_DataLayer();
  529.        }catch(error) {
  530.          console.log(error);
  531.        }
  532.      });
  533.    
  534.  })();
  535. </script>
  536.  
  537.  
  538.  
  539.    <script>
  540.      window.Store = window.Store || {};
  541.      window.Store.id = 11386172;
  542.    </script>
  543.    <meta charset="utf-8">
  544.    <meta http-equiv="x-ua-compatible" content="IE=edge">
  545.  
  546.    <link rel="preconnect" href="https://cdn.shopify.com">
  547.    <link rel="preconnect" href="https://fonts.shopifycdn.com">
  548.    <link rel="preconnect" href="https://v.shopify.com">
  549.    <link rel="preconnect" href="https://cdn.shopifycloud.com">
  550.  
  551.    <title>Original Laptop &amp; Tablet Parts in Canada — LaptopParts.ca</title>
  552.  
  553.    
  554.      <meta name="description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  555.    
  556.  
  557.    
  558.  <link rel="shortcut icon" href="//laptopparts.ca/cdn/shop/files/favicon_32x32.png?v=1635931652" type="image/png">
  559.  
  560.  
  561.    
  562.      <link rel="canonical" href="https://laptopparts.ca/">
  563.    
  564.  
  565.    <meta name="viewport" content="width=device-width">
  566.  
  567.    
  568.    
  569.  
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584. <meta property="og:site_name" content="LaptopParts.ca">
  585. <meta property="og:url" content="https://laptopparts.ca/">
  586. <meta property="og:title" content="Original Laptop &amp; Tablet Parts in Canada">
  587. <meta property="og:type" content="website">
  588. <meta property="og:description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  589.  
  590.  
  591.  
  592.  
  593.    
  594.    
  595.    
  596.  
  597.    
  598.    
  599.    <meta
  600.      property="og:image"
  601.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  602.    />
  603.    <meta
  604.      property="og:image:secure_url"
  605.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  606.    />
  607.    <meta property="og:image:width" content="2540" />
  608.    <meta property="og:image:height" content="630" />
  609.    
  610.    
  611.    <meta property="og:image:alt" content="Social media image" />
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  <meta name="twitter:site" content="@i/flow/login?redirect_after_login=%2FLaptopParts_ca">
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631. <meta name="twitter:title" content="Original Laptop &amp; Tablet Parts in Canada">
  632. <meta name="twitter:description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  633.  
  634.  
  635.    
  636.    
  637.    
  638.      
  639.      
  640.      <meta name="twitter:card" content="summary_large_image">
  641.    
  642.    
  643.    <meta
  644.      property="twitter:image"
  645.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_1200x600_crop_center.png?v=1696410523"
  646.    />
  647.    <meta property="twitter:image:width" content="1200" />
  648.    <meta property="twitter:image:height" content="600" />
  649.    
  650.    
  651.    <meta property="twitter:image:alt" content="Social media image" />
  652.  
  653. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/preconnect_resources.js" type="text/javascript"></script>
  654. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/globo_checkout.js" type="text/javascript"></script>
  655.  
  656.  
  657.  
  658.    <link rel="preload" href="//laptopparts.ca/cdn/fonts/nunito_sans/nunitosans_n7.5bd4fb9346d13afb61b3d78f8a1e9f31b128b3d9.woff2?h1=bGFwdG9wcGFydHMuY2E&h2=bGFwdG9wcGFydHNhdHAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=2ae13feb1dfd0d8ba6bfd71029ee92ac78d286ff7b755b57291941f31f1674e4" as="font" crossorigin="anonymous">
  659.    <link rel="preload" as="style" href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022">
  660.  
  661.    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="CrDzWSvAeMDFWNGBM_-BRbrjFQyoT_40-GZWV79wfbw">
  662. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/11386172/digital_wallets/dialog">
  663. <meta name="shopify-checkout-api-token" content="d20210e10f5cfcb163289d215c1a7239">
  664. <meta id="in-context-paypal-metadata" data-shop-id="11386172" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="CAD">
  665. <script async="async" src="/checkouts/internal/preloads.js?locale=en-CA"></script>
  666. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  667. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-CA&shop_id=11386172" crossorigin="anonymous"></script>
  668. <script id="apple-pay-shop-capabilities" type="application/json">{"shopId":11386172,"countryCode":"CA","currencyCode":"CAD","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/11386172","merchantName":"LaptopParts.ca","requiredBillingContactFields":["postalAddress","email"],"requiredShippingContactFields":["postalAddress","email"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","discover","interac","jcb"],"total":{"type":"pending","label":"LaptopParts.ca","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
  669. <script id="shopify-features" type="application/json">{"accessToken":"d20210e10f5cfcb163289d215c1a7239","betas":["rich-media-storefront-analytics"],"domain":"laptopparts.ca","predictiveSearch":true,"shopId":11386172,"smart_payment_buttons_url":"https:\/\/laptopparts.ca\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/spb.en.js","dynamic_checkout_cart_url":"https:\/\/laptopparts.ca\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/dynamic-checkout-cart.en.js","locale":"en"}</script>
  670. <script>var Shopify = Shopify || {};
  671. Shopify.shop = "laptoppartsatp.myshopify.com";
  672. Shopify.locale = "en";
  673. Shopify.currency = {"active":"CAD","rate":"1.0"};
  674. Shopify.country = "CA";
  675. Shopify.theme = {"name":"LaptopParts.ca |- Optimized","id":126947917911,"schema_name":"Empire","schema_version":"9.1.1","theme_store_id":838,"role":"main"};
  676. Shopify.theme.handle = "null";
  677. Shopify.theme.style = {"id":null,"handle":null};
  678. Shopify.cdnHost = "laptopparts.ca/cdn";
  679. Shopify.routes = Shopify.routes || {};
  680. Shopify.routes.root = "/";</script>
  681. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  682. <script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
  683. <script>window.ShopifyPay = window.ShopifyPay || {};
  684. window.ShopifyPay.apiHost = "shop.app\/pay";</script>
  685. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  686. <script>
  687.  window.Shopify = window.Shopify || {};
  688.  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  689.  window.Shopify.featureAssets['shop-js'] = {"init-fed-cm":["modules/v2/client.init-fed-cm_B7N5t58S.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_DKZypMed.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_CQdN6R3Q.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_C-D4kb6n.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_BJ5GGSYO.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_KbHJY843.en.esm.js","modules/v2/client.shop-login-button_CaoM9Daz.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_Cg6fa-pW.en.esm.js","modules/v2/client.shop-login-button_CaoM9Daz.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_DbS5bYqF.en.esm.js","modules/v2/client.shop-login-button_CaoM9Daz.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"pay-button":["modules/v2/client.pay-button_CHxDndno.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_CaoM9Daz.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_eWKGgmwL.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"lead-capture":["modules/v2/client.lead-capture_CI7rirGn.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"payment-terms":["modules/v2/client.payment-terms_CfTmszv_.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"]};
  690. </script>
  691. <script>(function() {
  692.  function asyncLoad() {
  693.    var urls = ["\/\/static.zotabox.com\/0\/9\/098c469a55b8508df7cc687731ea9d89\/widgets.js?shop=laptoppartsatp.myshopify.com","https:\/\/sociallogin-3cb0.kxcdn.com\/resource\/resource.js?cache_key=150634481676\u0026shop=laptoppartsatp.myshopify.com","https:\/\/requestquote.w3apps.co\/js\/app.js?shop=laptoppartsatp.myshopify.com","\/\/livesearch.okasconcepts.com\/js\/livesearch.init.min.js?v=2\u0026shop=laptoppartsatp.myshopify.com","https:\/\/production-assets.app.poalpha.com\/assets\/scripts\/preorderalpha.js?shop=laptoppartsatp.myshopify.com","https:\/\/cdn.hextom.com\/js\/quickannouncementbar.js?shop=laptoppartsatp.myshopify.com","https:\/\/static.klaviyo.com\/onsite\/js\/Vnz9UH\/klaviyo.js?company_id=Vnz9UH\u0026shop=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":-18000,"reqid":"fbffa270-12cb-4ff1-b418-608842b102d3-1736918324","pageurl":"laptopparts.ca\/?cmp_id=13044301122\u0026adg_id=123541517513\u0026kwd=laptop%20parts%20canada\u0026device=m\u0026gad_source=1\u0026gclid=CjwKCAjwwr6wBhBcEiwAfMEQsynlagEAbr8GrTXPMV4tVqn9qORhy7vVcB6guv1Yi5gnQoPMQZp6choC9T4QAvD_BwE","u":"1bc1d29e14b1","p":"home"};</script>
  710. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  711. <script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!1,!0)}();</script>
  712. <script integrity="sha256-EGCDRYTvIEOXsReXgqGwkAR+5Dl8tickSrieA/ZcQwc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/shopify/assets/storefront/load_feature-1060834584ef204397b1179782a1b090047ee4397cb627244ab89e03f65c4307.js" crossorigin="anonymous"></script>
  713. <script crossorigin="anonymous" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-80e528be853eac23af2454534897ca9536b1d3d04aa043b042f34879a3c111c8.js?v=20220906"></script>
  714. <script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://laptopparts.ca/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
  715. </script>
  716. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  717.  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
  718. </script>
  719. <script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
  720. </script>
  721.  
  722.  
  723.  
  724. <style id="shopify-accelerated-checkout-cart">
  725.        #dynamic-checkout-cart {
  726.  container-type: inline-size;
  727.  container-name: dcc;
  728.  width: 100%;
  729. }
  730.  
  731. .wallet-cart-grid {
  732.  --wallet-button-height-horizontal: clamp(
  733.    25px,
  734.    var(
  735.      --shopify-accelerated-checkout-button-inline-size,
  736.      42px
  737.    ),
  738.    55px
  739.  );
  740.  --wallet-button-height-vertical: clamp(
  741.    25px,
  742.    var(
  743.      --shopify-accelerated-checkout-button-block-size,
  744.      54px
  745.    ),
  746.    55px
  747.  );
  748.  --wallet-button-width-horizontal: 150px;
  749.  --wallet-button-width-vertical: 100%;
  750.  --wallet-button-border-radius: var(
  751.    --shopify-accelerated-checkout-button-border-radius,
  752.    4px
  753.  );
  754.  --wallet-grid-margin-horizontal: 0 -5px -5px -5px;
  755.  --wallet-button-container-margin-horizontal: 0 5px 5px;
  756.  --wallet-button-container-margin-vertical: var(--shopify-accelerated-checkout-row-gap, 8px) 0 0;
  757. }
  758.  
  759. @keyframes acceleratedCheckoutLoadingSkeleton {
  760.  50% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);}
  761.  75% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-end, 0.5);}
  762.  100% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);}
  763. }
  764.  
  765. .wallet-cart-button__skeleton {
  766.  animation: acceleratedCheckoutLoadingSkeleton var(--shopify-accelerated-checkout-skeleton-animation-duration, 4s) var(--shopify-accelerated-checkout-skeleton-animation-timing-function, ease) infinite;
  767.  animation-delay: -0.168s;
  768.  background-color: var(--shopify-accelerated-checkout-skeleton-background-color, #dedede);
  769.  box-sizing: border-box;
  770.  text-decoration: none !important;
  771. }
  772.  
  773. .wallet-cart-grid {
  774.  margin: var(--wallet-grid-margin-horizontal);
  775.  padding: 0;
  776.  display: flex;
  777.  flex-direction: row;
  778.  justify-content: var(--shopify-accelerated-checkout-inline-alignment, start);
  779.  gap: 0 !important;
  780. }
  781.  
  782. .wallet-cart-grid--skeleton {
  783.  justify-content: var(--shopify-accelerated-checkout-inline-alignment, inherit);
  784. }
  785.  
  786. .wallet-cart-button-container {
  787.  position: relative;
  788.  margin: var(--wallet-button-container-margin-horizontal);
  789. }
  790.  
  791. .wallet-cart-button-container,
  792. .wallet-cart-button {
  793.  width: var(--wallet-button-width-horizontal);
  794.  height: var(--wallet-button-height-horizontal);
  795.  border-radius: var(--wallet-button-border-radius);
  796.  list-style-type: none !important;
  797.  text-align: center;
  798.  flex-shrink: 0;
  799.  flex-grow: 0;
  800. }
  801.  
  802. .additional-checkout-buttons--vertical .wallet-cart-grid {
  803.  justify-content: start;
  804.  flex-direction: column;
  805.  margin: 0;
  806. }
  807. .additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container {
  808.  width: var(--wallet-button-width-vertical);
  809.  height: var(--wallet-button-height-vertical);
  810.  margin: var(--wallet-button-container-margin-vertical);
  811. }
  812. .additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container:first-child {
  813.  margin-top: 0;
  814. }
  815. .additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button {
  816.  width: var(--wallet-button-width-vertical);
  817.  height: var(--wallet-button-height-vertical);
  818. }
  819.  
  820. .additional-checkout-buttons--horizontal .wallet-cart-grid .wallet-cart-button-container,
  821. .additional-checkout-buttons--horizontal .wallet-cart-grid .wallet-cart-button {
  822.  width: var(--wallet-button-width-horizontal) !important;
  823.  height: var(--wallet-button-height-horizontal) !important;
  824.  border-radius: var(--wallet-button-border-radius) !important;
  825. }
  826.  
  827. @container dcc (width >= 150px) and (width <= 500px) {
  828.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) {
  829.    justify-content: start;
  830.    flex-direction: column;
  831.    margin: 0;
  832.  }
  833.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container {
  834.    width: var(--wallet-button-width-vertical);
  835.    height: var(--wallet-button-height-vertical);
  836.    margin: var(--wallet-button-container-margin-vertical);
  837.  }
  838.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container:first-child {
  839.    margin-top: 0;
  840.  }
  841.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button {
  842.    width: var(--wallet-button-width-vertical);
  843.    height: var(--wallet-button-height-vertical);
  844.  }
  845. }
  846.  
  847. @container dcc (width <= 310px) {
  848.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) {
  849.    justify-content: start;
  850.    flex-direction: column;
  851.    margin: 0;
  852.  }
  853.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container {
  854.    width: var(--wallet-button-width-vertical);
  855.    height: var(--wallet-button-height-vertical);
  856.    margin: var(--wallet-button-container-margin-vertical);
  857.  }
  858.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container:first-child {
  859.    margin-top: 0;
  860.  }
  861.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button {
  862.    width: var(--wallet-button-width-vertical);
  863.    height: var(--wallet-button-height-vertical);
  864.  }
  865. }
  866.  
  867. @container dcc (width <= 470px) {
  868.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) {
  869.    justify-content: start;
  870.    flex-direction: column;
  871.    margin: 0;
  872.  }
  873.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container {
  874.    width: var(--wallet-button-width-vertical);
  875.    height: var(--wallet-button-height-vertical);
  876.    margin: var(--wallet-button-container-margin-vertical);
  877.  }
  878.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container:first-child {
  879.    margin-top: 0;
  880.  }
  881.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button {
  882.    width: var(--wallet-button-width-vertical);
  883.    height: var(--wallet-button-height-vertical);
  884.  }
  885. }
  886.  
  887. @container dcc (width <= 630px) {
  888.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) {
  889.    justify-content: start;
  890.    flex-direction: column;
  891.    margin: 0;
  892.  }
  893.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container {
  894.    width: var(--wallet-button-width-vertical);
  895.    height: var(--wallet-button-height-vertical);
  896.    margin: var(--wallet-button-container-margin-vertical);
  897.  }
  898.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container:first-child {
  899.    margin-top: 0;
  900.  }
  901.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button {
  902.    width: var(--wallet-button-width-vertical);
  903.    height: var(--wallet-button-height-vertical);
  904.  }
  905. }
  906.  
  907. @container dcc (width <= 790px) {
  908.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) {
  909.    justify-content: start;
  910.    flex-direction: column;
  911.    margin: 0;
  912.  }
  913.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container {
  914.    width: var(--wallet-button-width-vertical);
  915.    height: var(--wallet-button-height-vertical);
  916.    margin: var(--wallet-button-container-margin-vertical);
  917.  }
  918.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container:first-child {
  919.    margin-top: 0;
  920.  }
  921.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button {
  922.    width: var(--wallet-button-width-vertical);
  923.    height: var(--wallet-button-height-vertical);
  924.  }
  925. }
  926.  
  927. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) {
  928.  justify-content: start;
  929.  flex-direction: column;
  930.  margin: 0;
  931. }
  932. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container {
  933.  width: var(--wallet-button-width-vertical);
  934.  height: var(--wallet-button-height-vertical);
  935.  margin: var(--wallet-button-container-margin-vertical);
  936. }
  937. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container:first-child {
  938.  margin-top: 0;
  939. }
  940. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button {
  941.  width: var(--wallet-button-width-vertical);
  942.  height: var(--wallet-button-height-vertical);
  943. }
  944.  
  945. @media screen and (max-width: 750px) {
  946.  .wallet-cart-grid {
  947.    justify-content: start;
  948.    flex-direction: column;
  949.    max-width: none;
  950.    margin: 0;
  951.  }
  952.  .wallet-cart-grid .wallet-cart-button-container {
  953.    max-width: none;
  954.    width: var(--wallet-button-width-vertical);
  955.    height: var(--wallet-button-height-vertical);
  956.    margin: var(--wallet-button-container-margin-vertical);
  957.  }
  958.  .wallet-cart-grid .wallet-cart-button-container:first-child {
  959.    margin-top: 0;
  960.  }
  961.  .wallet-cart-grid .wallet-cart-button {
  962.    width: var(--wallet-button-width-vertical);
  963.    height: var(--wallet-button-height-vertical);
  964.  }
  965. }
  966.  
  967. @supports (not (container-type: inline-size)) or (not (selector(:has(*)))) {
  968.  .wallet-cart-grid {
  969.    justify-content: start;
  970.    flex-direction: column;
  971.    margin: 0;
  972.  }
  973.  .wallet-cart-button-container {
  974.    width: var(--wallet-button-width-vertical);
  975.    height: var(--wallet-button-height-vertical);
  976.    margin: var(--wallet-button-container-margin-vertical);
  977.  }
  978.  .wallet-cart-button-container:first-child {
  979.    margin-top: 0;
  980.  }
  981.  .wallet-cart-grid .wallet-cart-button {
  982.    width: var(--wallet-button-width-vertical);
  983.    height: var(--wallet-button-height-vertical);
  984.  }
  985. }
  986.  
  987.        #shopify-buyer-consent {
  988.  margin-top: 1em;
  989.  display: inline-block;
  990.  width: 100%;
  991. }
  992.  
  993. #shopify-buyer-consent.hidden {
  994.  display: none;
  995. }
  996.  
  997. #shopify-subscription-policy-button {
  998.  background: none;
  999.  border: none;
  1000.  padding: 0;
  1001.  text-decoration: underline;
  1002.  font-size: inherit;
  1003.  cursor: pointer;
  1004. }
  1005.  
  1006. #shopify-subscription-policy-button::before {
  1007.  box-shadow: none;
  1008. }
  1009.  
  1010.      </style>
  1011.  
  1012. <style id="shopify-accelerated-checkout-cart-grid-with-margin-top">.additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container:first-child {
  1013.  margin-top: 8px;
  1014. }
  1015.  
  1016.  
  1017. @container dcc (width >= 150px) and (width <= 500px) {
  1018.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container:first-child {
  1019.    margin-top: 8px;
  1020.  }
  1021. }
  1022.  
  1023. @container dcc (width <= 310px) {
  1024.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container:first-child {
  1025.    margin-top: 8px;
  1026.  }
  1027. }
  1028.  
  1029. @container dcc (width <= 470px) {
  1030.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container:first-child {
  1031.    margin-top: 8px;
  1032.  }
  1033. }
  1034.  
  1035. @container dcc (width <= 630px) {
  1036.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container:first-child {
  1037.    margin-top: 8px;
  1038.  }
  1039. }
  1040.  
  1041. @container dcc (width <= 790px) {
  1042.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container:first-child {
  1043.    margin-top: 8px;
  1044.  }
  1045. }
  1046.  
  1047. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container:first-child {
  1048.  margin-top: 8px;
  1049. }
  1050.  
  1051. @media screen and (max-width: 750px) {
  1052.  .wallet-cart-grid .wallet-cart-button-container:first-child {
  1053.    margin-top: 8px;
  1054.  }
  1055. }
  1056.  
  1057. @supports (not (container-type: inline-size)) or (not (selector(:has(*)))) {
  1058.  .wallet-cart-button-container:first-child {
  1059.    margin-top: 8px;
  1060.  }
  1061. }
  1062. </style>
  1063. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  1064.  
  1065.    <link href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022" rel="stylesheet" type="text/css" media="all" />
  1066.  
  1067.    
  1068.    <script>
  1069.      window.Theme = window.Theme || {};
  1070.      window.Theme.version = '9.1.1';
  1071.      window.Theme.name = 'Empire';
  1072.      window.Theme.routes = {
  1073.        "root_url": "/",
  1074.        "account_url": "/account",
  1075.        "account_login_url": "/account/login",
  1076.        "account_logout_url": "/account/logout",
  1077.        "account_register_url": "/account/register",
  1078.        "account_addresses_url": "/account/addresses",
  1079.        "collections_url": "/collections",
  1080.        "all_products_collection_url": "/collections/all",
  1081.        "search_url": "/search",
  1082.        "predictive_search_url": "/search/suggest",
  1083.        "cart_url": "/cart",
  1084.        "cart_add_url": "/cart/add",
  1085.        "cart_change_url": "/cart/change",
  1086.        "cart_clear_url": "/cart/clear",
  1087.        "product_recommendations_url": "/recommendations/products",
  1088.      };
  1089.    </script>
  1090.    
  1091.  
  1092.    
  1093.  
  1094.    
  1095.    
  1096.    
  1097.    
  1098.  <script src="https://cdn.shopify.com/extensions/6164864d-a0a4-43c5-a182-8fdf3f87b744/upcart-cart-drawer-81/assets/upcart-bundle.js" type="text/javascript" defer="defer"></script>
  1099. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  1100. <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>
  1101. <script id="web-pixels-manager-setup">(function d(d,e,r,a,n){var o,i,t,s,l=(i=(o={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:?[ /-](12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(12[7-9]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(12[89]|1[3-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:?[ /-](12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(12[7-9]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(12[89]|1[3-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+|)/}).modern,t=o.legacy,s=navigator.userAgent,i.test(s)?"modern":(t.test(s),"legacy"));window.Shopify=window.Shopify||{};var c=window.Shopify;c.analytics=c.analytics||{};var u=c.analytics;u.replayQueue=[],u.publish=function(d,e,r){return u.replayQueue.push([d,e,r]),!0};try{self.performance.mark("wpm:start")}catch(d){}var h=[r,"/wpm","/b",n,l.substring(0,1),".js"].join("");!function(d){var e=d.src,r=d.async,a=void 0===r||r,n=d.onload,o=d.onerror,i=document.createElement("script"),t=document.head,s=document.body;i.async=a,i.src=e,n&&i.addEventListener("load",n),o&&i.addEventListener("error",o),t?t.appendChild(i):s?s.appendChild(i):console.error("Did not find a head or body element to append the script")}({src:h,async:!0,onload:function(){var r=window.webPixelsManager.init(d);e(r);var a=window.Shopify.analytics;a.replayQueue.forEach((function(d){var e=d[0],a=d[1],n=d[2];r.publishCustomEvent(e,a,n)})),a.replayQueue=[],a.publish=r.publishCustomEvent,a.visitor=r.visitor},onerror:function(){var e=d.storefrontBaseUrl.replace(/\/$/,""),r="".concat(e,"/.well-known/shopify/monorail/unstable/produce_batch"),n=JSON.stringify({metadata:{event_sent_at_ms:(new Date).getTime()},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:a||"latest",bundle_target:l,page_url:self.location.href,status:"failed",surface:d.surface,error_msg:"".concat(h," has failed to load")},metadata:{event_created_at_ms:(new Date).getTime()}}]});try{if(self.navigator.sendBeacon.bind(self.navigator)(r,n))return!0}catch(d){}var o=new XMLHttpRequest;try{return o.open("POST",r,!0),o.setRequestHeader("Content-Type","text/plain"),o.send(n),!0}catch(d){console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging a load error.")}return!1}})})({shopId: 11386172,storefrontBaseUrl: "https://laptopparts.ca",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",surface: "storefront-renderer",enabledBetaFlags: [],webPixelsConfigList: [{"id":"392691799","configuration":"{\"config\":\"{\\\"pixel_id\\\":\\\"G-R766FMP28N\\\",\\\"target_country\\\":\\\"CA\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/8pFiCPHhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/GZ2ECPfhwI4YEJTzkNID\\\"]},{\\\"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":"afe7c2de16587d6c6689522527d6c67f","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":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0220","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0220","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"LaptopParts.ca","paymentSettings":{"currencyCode":"CAD"},"myshopifyDomain":"laptoppartsatp.myshopify.com","countryCode":"CA","storefrontUrl":"https:\/\/laptopparts.ca"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://laptopparts.ca/cdn","684b8cf904d0e57fafa86f386463aa1b280f6e55","ac78c151w8bf023f7pfbfb601fmf9d3fb59",);</script>  <script>window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  1102. window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  1103. window.ShopifyAnalytics.meta.currency = 'CAD';
  1104. var meta = {"page":{"pageType":"home"}};
  1105. for (var attr in meta) {
  1106.  window.ShopifyAnalytics.meta[attr] = meta[attr];
  1107. }</script>
  1108. <script>window.ShopifyAnalytics.merchantGoogleAnalytics = function() {
  1109.  
  1110. };
  1111. </script>
  1112. <script class="analytics">(function () {
  1113.    var customDocumentWrite = function(content) {
  1114.      var jquery = null;
  1115.  
  1116.      if (window.jQuery) {
  1117.        jquery = window.jQuery;
  1118.      } else if (window.Checkout && window.Checkout.$) {
  1119.        jquery = window.Checkout.$;
  1120.      }
  1121.  
  1122.      if (jquery) {
  1123.        jquery('body').append(content);
  1124.      }
  1125.    };
  1126.  
  1127.    var hasLoggedConversion = function(token) {
  1128.      if (token) {
  1129.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  1130.      }
  1131.      return false;
  1132.    }
  1133.  
  1134.    var setCookieIfConversion = function(token) {
  1135.      if (token) {
  1136.        var twoMonthsFromNow = new Date(Date.now());
  1137.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  1138.  
  1139.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  1140.      }
  1141.    }
  1142.  
  1143.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  1144.    if (trekkie.integrations) {
  1145.      return;
  1146.    }
  1147.    trekkie.methods = [
  1148.      'identify',
  1149.      'page',
  1150.      'ready',
  1151.      'track',
  1152.      'trackForm',
  1153.      'trackLink'
  1154.    ];
  1155.    trekkie.factory = function(method) {
  1156.      return function() {
  1157.        var args = Array.prototype.slice.call(arguments);
  1158.        args.unshift(method);
  1159.        trekkie.push(args);
  1160.        return trekkie;
  1161.      };
  1162.    };
  1163.    for (var i = 0; i < trekkie.methods.length; i++) {
  1164.      var key = trekkie.methods[i];
  1165.      trekkie[key] = trekkie.factory(key);
  1166.    }
  1167.    trekkie.load = function(config) {
  1168.      trekkie.config = config || {};
  1169.      trekkie.config.initialDocumentCookie = document.cookie;
  1170.      var first = document.getElementsByTagName('script')[0];
  1171.      var script = document.createElement('script');
  1172.      script.type = 'text/javascript';
  1173.      script.onerror = function(e) {
  1174.        var scriptFallback = document.createElement('script');
  1175.        scriptFallback.type = 'text/javascript';
  1176.        scriptFallback.onerror = function(error) {
  1177.                var Monorail = {
  1178.      produce: function produce(monorailDomain, schemaId, payload) {
  1179.        var currentMs = new Date().getTime();
  1180.        var event = {
  1181.          schema_id: schemaId,
  1182.          payload: payload,
  1183.          metadata: {
  1184.            event_created_at_ms: currentMs,
  1185.            event_sent_at_ms: currentMs
  1186.          }
  1187.        };
  1188.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  1189.      },
  1190.      sendRequest: function sendRequest(endpointUrl, payload) {
  1191.        // Try the sendBeacon API
  1192.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  1193.          var blobData = new window.Blob([payload], {
  1194.            type: 'text/plain'
  1195.          });
  1196.  
  1197.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  1198.            return true;
  1199.          } // sendBeacon was not successful
  1200.  
  1201.        } // XHR beacon
  1202.  
  1203.        var xhr = new XMLHttpRequest();
  1204.  
  1205.        try {
  1206.          xhr.open('POST', endpointUrl);
  1207.          xhr.setRequestHeader('Content-Type', 'text/plain');
  1208.          xhr.send(payload);
  1209.        } catch (e) {
  1210.          console.log(e);
  1211.        }
  1212.  
  1213.        return false;
  1214.      },
  1215.      isIos12: function isIos12() {
  1216.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  1217.      }
  1218.    };
  1219.    Monorail.produce('monorail-edge.shopifysvc.com',
  1220.      'trekkie_storefront_load_errors/1.1',
  1221.      {shop_id: 11386172,
  1222.      theme_id: 126947917911,
  1223.      app_name: "storefront",
  1224.      context_url: window.location.href,
  1225.      source_url: "//laptopparts.ca/cdn/s/trekkie.storefront.b004b8439e365cda50b40471636997447684bbe3.min.js"});
  1226.  
  1227.        };
  1228.        scriptFallback.async = true;
  1229.        scriptFallback.src = '//laptopparts.ca/cdn/s/trekkie.storefront.b004b8439e365cda50b40471636997447684bbe3.min.js';
  1230.        first.parentNode.insertBefore(scriptFallback, first);
  1231.      };
  1232.      script.async = true;
  1233.      script.src = '//laptopparts.ca/cdn/s/trekkie.storefront.b004b8439e365cda50b40471636997447684bbe3.min.js';
  1234.      first.parentNode.insertBefore(script, first);
  1235.    };
  1236.    trekkie.load(
  1237.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":11386172,"isMerchantRequest":null,"themeId":126947917911,"themeCityHash":"13552369945968680192","contentLanguage":"en","currency":"CAD"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  1238.    );
  1239.  
  1240.    var loaded = false;
  1241.    trekkie.ready(function() {
  1242.      if (loaded) return;
  1243.      loaded = true;
  1244.  
  1245.      window.ShopifyAnalytics.lib = window.trekkie;
  1246.  
  1247.  
  1248.      var originalDocumentWrite = document.write;
  1249.      document.write = customDocumentWrite;
  1250.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  1251.      document.write = originalDocumentWrite;
  1252.  
  1253.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home"});
  1254.  
  1255.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1256.      var token = match? match[1]: undefined;
  1257.      if (!hasLoggedConversion(token)) {
  1258.        setCookieIfConversion(token);
  1259.        
  1260.      }
  1261.    });
  1262.  
  1263.  
  1264.        var eventsListenerScript = document.createElement('script');
  1265.        eventsListenerScript.async = true;
  1266.        eventsListenerScript.src = "//laptopparts.ca/cdn/shopifycloud/shopify/assets/shop_events_listener-20905db421adb60b04582abab58b285362bc2e1011d17cd3eabb3bfe05798c59.js";
  1267.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  1268.  
  1269. })();</script>
  1270. <script class="boomerang">
  1271. (function () {
  1272.  window.BOOMR = window.BOOMR || {};
  1273.  window.BOOMR.themeName = "Empire";
  1274.  window.BOOMR.themeVersion = "9.1.1";
  1275.  window.BOOMR.shopId = 11386172;
  1276.  window.BOOMR.themeId = 126947917911;
  1277. })();</script>
  1278. <script
  1279.  defer
  1280.  src="https://laptopparts.ca/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.1.0.min.js"
  1281.  data-application="storefront-renderer"
  1282.  data-shop-id="11386172"
  1283.  data-render-region="gcp-us-east1"
  1284.  data-page-type="index"
  1285.  data-theme-instance-id="126947917911"
  1286.  data-monorail-region="shop_domain"
  1287.  data-resource-timing-sampling-rate="10"
  1288. ></script>
  1289. </head>
  1290.  
  1291.  <body
  1292.    class="template-index"
  1293.    data-instant-allow-query-string
  1294.    
  1295.  >
  1296.    <script>
  1297.      document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
  1298.      if(window.Shopify&&window.Shopify.designMode)document.documentElement.className+=' in-theme-editor';
  1299.      if(('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch)document.documentElement.className=document.documentElement.className.replace(/\bno-touch\b/,'has-touch');
  1300.    </script>
  1301.  
  1302.    <!-- Google Tag Manager (noscript) -->
  1303.    <noscript
  1304.      ><iframe
  1305.        loading="lazy"
  1306.        src="https://www.googletagmanager.com/ns.html?id=GTM-WDHHF23"
  1307.        height="0"
  1308.        width="0"
  1309.        style="display:none;visibility:hidden"
  1310.      ></iframe
  1311.    ></noscript>
  1312.    <!-- End Google Tag Manager (noscript) -->
  1313.  
  1314.    
  1315.    <svg
  1316.      class="icon-star-reference"
  1317.      aria-hidden="true"
  1318.      focusable="false"
  1319.      role="presentation"
  1320.      xmlns="http://www.w3.org/2000/svg"
  1321.      width="20"
  1322.      height="20"
  1323.      viewBox="3 3 17 17"
  1324.      fill="none"
  1325.    >
  1326.      <symbol id="icon-star">
  1327.        <rect class="icon-star-background" width="20" height="20" fill="currentColor"/>
  1328.        <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"/>
  1329.      </symbol>
  1330.      <clipPath id="icon-star-clip">
  1331.        <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"/>
  1332.      </clipPath>
  1333.    </svg>
  1334.    
  1335.  
  1336.    <a class="skip-to-main" href="#site-main">Skip to content</a>
  1337.  
  1338.    <!-- BEGIN sections: header-group -->
  1339. <div id="shopify-section-sections--15492291133527__announcement-bar" class="shopify-section shopify-section-group-header-group site-announcement"><script
  1340.  type="application/json"
  1341.  data-section-id="sections--15492291133527__announcement-bar"
  1342.  data-section-type="static-announcement">
  1343. </script>
  1344.  
  1345.  
  1346.  
  1347.  
  1348.  
  1349.  
  1350.  
  1351.  
  1352.  
  1353.  
  1354.    <div
  1355.      class="
  1356.        announcement-bar
  1357.        
  1358.      "
  1359.      style="
  1360.        color: #ffffff;
  1361.        background: #fe0000;
  1362.      "
  1363.      data-announcement-bar
  1364.    >
  1365.      
  1366.  
  1367.      
  1368.        <div class="announcement-bar-text">
  1369.          📞 <b>Text us at 613-704-4708</b>
  1370.  
  1371. <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>
  1372.        </div>
  1373.      
  1374.  
  1375.      <div class="announcement-bar-text-mobile">
  1376.        
  1377.          📞 <b>Text us at 613-704-4708</b>
  1378.  
  1379. <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>
  1380.        
  1381.      </div>
  1382.    </div>
  1383.  
  1384.  
  1385.  
  1386. </div><div id="shopify-section-sections--15492291133527__header" class="shopify-section shopify-section-group-header-group site-header-wrapper">
  1387.  
  1388.  
  1389. <script
  1390.  type="application/json"
  1391.  data-section-id="sections--15492291133527__header"
  1392.  data-section-type="static-header"
  1393.  data-section-data>
  1394.  {
  1395.    "settings": {
  1396.      "sticky_header": false,
  1397.      "has_box_shadow": false,
  1398.      "live_search": {
  1399.        "enable": true,
  1400.        "money_format": "${{amount}}",
  1401.        "show_mobile_search_bar": false
  1402.      }
  1403.    }
  1404.  }
  1405. </script>
  1406.  
  1407.  
  1408.  
  1409.  
  1410.  
  1411. <style data-shopify>
  1412.  .site-logo {
  1413.    max-width: 250px;
  1414.  }
  1415.  
  1416.  .site-logo-image {
  1417.    max-height: 100px;
  1418.  }
  1419. </style>
  1420.  
  1421. <header
  1422.  class="site-header site-header-nav--open"
  1423.  role="banner"
  1424.  data-site-header
  1425. >
  1426.  <div
  1427.    class="
  1428.      site-header-main
  1429.      
  1430.        site-header--full-width
  1431.      
  1432.    "
  1433.    data-site-header-main
  1434.    
  1435.    
  1436.      data-site-header-mobile-search-button
  1437.    
  1438.  >
  1439.    <button class="site-header-menu-toggle" data-menu-toggle>
  1440.      <div class="site-header-menu-toggle--button" tabindex="-1">
  1441.        <span class="toggle-icon--bar toggle-icon--bar-top"></span>
  1442.        <span class="toggle-icon--bar toggle-icon--bar-middle"></span>
  1443.        <span class="toggle-icon--bar toggle-icon--bar-bottom"></span>
  1444.        <span class="visually-hidden">Menu</span>
  1445.      </div>
  1446.    </button>
  1447.  
  1448.    
  1449.      
  1450.      
  1451.        <button
  1452.          class="site-header-mobile-search-button"
  1453.          data-mobile-search-button
  1454.        >
  1455.          
  1456.        <div class="site-header-mobile-search-button--button" tabindex="-1">
  1457.          <svg
  1458.  aria-hidden="true"
  1459.  focusable="false"
  1460.  role="presentation"
  1461.  xmlns="http://www.w3.org/2000/svg"
  1462.  width="23"
  1463.  height="24"
  1464.  fill="none"
  1465.  viewBox="0 0 23 24"
  1466. >
  1467.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1468.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1469. </svg>
  1470.  
  1471.        </div>
  1472.      
  1473.        </button>
  1474.      
  1475.    
  1476.  
  1477.    <div
  1478.      class="
  1479.        site-header-main-content
  1480.        
  1481.      "
  1482.    >
  1483.      <div class="site-header-logo">
  1484.        <a
  1485.          class="site-logo"
  1486.          href="/">
  1487.          
  1488.            
  1489.            
  1490.  
  1491.            
  1492.  
  1493.  
  1494.  
  1495.  <img loading="lazy"
  1496.    
  1497.      src="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523"
  1498.    
  1499.    alt=""
  1500.  
  1501.    
  1502.      data-rimg
  1503.      srcset="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523 1x"
  1504.    
  1505.  
  1506.    class="site-logo-image"
  1507.    style="
  1508.        object-fit:cover;object-position:50.0% 50.0%;
  1509.      
  1510. "
  1511.    
  1512.  >
  1513.  
  1514.  
  1515.  
  1516.  
  1517.          
  1518.        </a>
  1519.      </div>
  1520.  
  1521.      
  1522.  
  1523.  
  1524.  
  1525.  
  1526.  
  1527. <div class="live-search" data-live-search><form
  1528.    class="
  1529.      live-search-form
  1530.      form-fields-inline
  1531.      
  1532.    "
  1533.    action="/search"
  1534.    method="get"
  1535.    role="search"
  1536.    aria-label="Product"
  1537.    data-live-search-form
  1538.  >
  1539.    <div class="form-field no-label"><span class="form-field-select-wrapper live-search-filter-wrapper">
  1540.          <select class="live-search-filter" data-live-search-filter data-filter-all="All categories">
  1541.            
  1542.            <option value="" selected>All categories</option>
  1543.            <option value="" disabled>------</option>
  1544.            
  1545.              
  1546.  
  1547. <option value="product_type:AC Adapters">AC Adapters</option>
  1548. <option value="product_type:Accessories">Accessories</option>
  1549. <option value="product_type:Adapter Card">Adapter Card</option>
  1550. <option value="product_type:Antennas">Antennas</option>
  1551. <option value="product_type:Appliances &gt; Fans">Appliances > Fans</option>
  1552. <option value="product_type:Batteries">Batteries</option>
  1553. <option value="product_type:Bezels Cases &amp; Covers">Bezels Cases & Covers</option>
  1554. <option value="product_type:Boards">Boards</option>
  1555. <option value="product_type:Cables">Cables</option>
  1556. <option value="product_type:Cases Covers &amp; Bezels">Cases Covers & Bezels</option>
  1557. <option value="product_type:Connectors">Connectors</option>
  1558. <option value="product_type:DC Jack Cables">DC Jack Cables</option>
  1559. <option value="product_type:Docking Station">Docking Station</option>
  1560. <option value="product_type:Drives">Drives</option>
  1561. <option value="product_type:Fans">Fans</option>
  1562. <option value="product_type:Hard Drive Brackets">Hard Drive Brackets</option>
  1563. <option value="product_type:Hard Drive Disk Caddy">Hard Drive Disk Caddy</option>
  1564. <option value="product_type:Hard Drives">Hard Drives</option>
  1565. <option value="product_type:Hinges">Hinges</option>
  1566. <option value="product_type:Keyboards">Keyboards</option>
  1567. <option value="product_type:Memory">Memory</option>
  1568. <option value="product_type:Misc">Misc</option>
  1569. <option value="product_type:Motherboards">Motherboards</option>
  1570. <option value="product_type:Network Cards">Network Cards</option>
  1571. <option value="product_type:Optical Cables">Optical Cables</option>
  1572. <option value="product_type:Optical Drives">Optical Drives</option>
  1573. <option value="product_type:Palmrests">Palmrests</option>
  1574. <option value="product_type:Parts">Parts</option>
  1575. <option value="product_type:Phone Parts">Phone Parts</option>
  1576. <option value="product_type:Power Supplies">Power Supplies</option>
  1577. <option value="product_type:POWER SUPPLY">POWER SUPPLY</option>
  1578. <option value="product_type:Printer Parts">Printer Parts</option>
  1579. <option value="product_type:Screens">Screens</option>
  1580. <option value="product_type:Screens - Touch Digitizers">Screens - Touch Digitizers</option>
  1581. <option value="product_type:Screws">Screws</option>
  1582. <option value="product_type:Server Parts">Server Parts</option>
  1583. <option value="product_type:Short Low Profile Bracket">Short Low Profile Bracket</option>
  1584. <option value="product_type:Speakers">Speakers</option>
  1585. <option value="product_type:Tablet Parts">Tablet Parts</option>
  1586. <option value="product_type:Touchpads">Touchpads</option>
  1587. <option value="product_type:UpCart - Shipping Protection">UpCart - Shipping Protection</option>
  1588. <option value="product_type:Wireless Mouse Receiver">Wireless Mouse Receiver</option>
  1589.            
  1590.          </select>
  1591.          <label class="live-search-filter-label form-field-select" data-live-search-filter-label>All categories
  1592. </label>
  1593.          <svg
  1594.  aria-hidden="true"
  1595.  focusable="false"
  1596.  role="presentation"
  1597.  width="8"
  1598.  height="6"
  1599.  viewBox="0 0 8 6"
  1600.  fill="none"
  1601.  xmlns="http://www.w3.org/2000/svg"
  1602.  class="icon-chevron-down"
  1603. >
  1604. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1605. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1606. </svg>
  1607.  
  1608.        </span><input
  1609.        class="form-field-input live-search-form-field"
  1610.        type="text"
  1611.        name="q"
  1612.        aria-label="Search"
  1613.        placeholder="What are you looking for?"
  1614.        
  1615.        autocomplete="off"
  1616.        data-live-search-input
  1617.      >
  1618.      <button
  1619.        class="live-search-takeover-cancel"
  1620.        type="button"
  1621.        data-live-search-takeover-cancel>
  1622.        Cancel
  1623.      </button>
  1624.  
  1625.      <button
  1626.        class="live-search-button"
  1627.        type="submit"
  1628.        aria-label="Search"
  1629.        data-live-search-submit
  1630.      >
  1631.        <span class="search-icon search-icon--inactive">
  1632.          <svg
  1633.  aria-hidden="true"
  1634.  focusable="false"
  1635.  role="presentation"
  1636.  xmlns="http://www.w3.org/2000/svg"
  1637.  width="23"
  1638.  height="24"
  1639.  fill="none"
  1640.  viewBox="0 0 23 24"
  1641. >
  1642.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1643.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1644. </svg>
  1645.  
  1646.        </span>
  1647.        <span class="search-icon search-icon--active">
  1648.          <svg
  1649.  aria-hidden="true"
  1650.  focusable="false"
  1651.  role="presentation"
  1652.  width="26"
  1653.  height="26"
  1654.  viewBox="0 0 26 26"
  1655.  xmlns="http://www.w3.org/2000/svg"
  1656. >
  1657.  <g fill-rule="nonzero" fill="currentColor">
  1658.    <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"/>
  1659.  </g>
  1660. </svg>
  1661.        </span>
  1662.      </button>
  1663.    </div>
  1664.  
  1665.    <div class="search-flydown" data-live-search-flydown>
  1666.      <div class="search-flydown--placeholder" data-live-search-placeholder>
  1667.        <div class="search-flydown--product-items">
  1668.          
  1669.            <a class="search-flydown--product search-flydown--product" href="#">
  1670.              
  1671.                <div class="search-flydown--product-image">
  1672.                  <svg class="placeholder--image placeholder--content-image" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 525.5 525.5"><path d="M324.5 212.7H203c-1.6 0-2.8 1.3-2.8 2.8V308c0 1.6 1.3 2.8 2.8 2.8h121.6c1.6 0 2.8-1.3 2.8-2.8v-92.5c0-1.6-1.3-2.8-2.9-2.8zm1.1 95.3c0 .6-.5 1.1-1.1 1.1H203c-.6 0-1.1-.5-1.1-1.1v-92.5c0-.6.5-1.1 1.1-1.1h121.6c.6 0 1.1.5 1.1 1.1V308z"/><path d="M210.4 299.5H240v.1s.1 0 .2-.1h75.2v-76.2h-105v76.2zm1.8-7.2l20-20c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l1.5 1.5 16.8 16.8c-12.9 3.3-20.7 6.3-22.8 7.2h-27.7v-5.5zm101.5-10.1c-20.1 1.7-36.7 4.8-49.1 7.9l-16.9-16.9 26.3-26.3c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l27.5 27.5v7.8zm-68.9 15.5c9.7-3.5 33.9-10.9 68.9-13.8v13.8h-68.9zm68.9-72.7v46.8l-26.2-26.2c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-26.3 26.3-.9-.9c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-18.8 18.8V225h101.4z"/><path d="M232.8 254c4.6 0 8.3-3.7 8.3-8.3s-3.7-8.3-8.3-8.3-8.3 3.7-8.3 8.3 3.7 8.3 8.3 8.3zm0-14.9c3.6 0 6.6 2.9 6.6 6.6s-2.9 6.6-6.6 6.6-6.6-2.9-6.6-6.6 3-6.6 6.6-6.6z"/></svg>
  1673.                </div>
  1674.              
  1675.  
  1676.              <div class="search-flydown--product-text">
  1677.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1678.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1679.              </div>
  1680.            </a>
  1681.          
  1682.            <a class="search-flydown--product search-flydown--product" href="#">
  1683.              
  1684.                <div class="search-flydown--product-image">
  1685.                  <svg class="placeholder--image placeholder--content-image" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 525.5 525.5"><path d="M324.5 212.7H203c-1.6 0-2.8 1.3-2.8 2.8V308c0 1.6 1.3 2.8 2.8 2.8h121.6c1.6 0 2.8-1.3 2.8-2.8v-92.5c0-1.6-1.3-2.8-2.9-2.8zm1.1 95.3c0 .6-.5 1.1-1.1 1.1H203c-.6 0-1.1-.5-1.1-1.1v-92.5c0-.6.5-1.1 1.1-1.1h121.6c.6 0 1.1.5 1.1 1.1V308z"/><path d="M210.4 299.5H240v.1s.1 0 .2-.1h75.2v-76.2h-105v76.2zm1.8-7.2l20-20c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l1.5 1.5 16.8 16.8c-12.9 3.3-20.7 6.3-22.8 7.2h-27.7v-5.5zm101.5-10.1c-20.1 1.7-36.7 4.8-49.1 7.9l-16.9-16.9 26.3-26.3c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l27.5 27.5v7.8zm-68.9 15.5c9.7-3.5 33.9-10.9 68.9-13.8v13.8h-68.9zm68.9-72.7v46.8l-26.2-26.2c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-26.3 26.3-.9-.9c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-18.8 18.8V225h101.4z"/><path d="M232.8 254c4.6 0 8.3-3.7 8.3-8.3s-3.7-8.3-8.3-8.3-8.3 3.7-8.3 8.3 3.7 8.3 8.3 8.3zm0-14.9c3.6 0 6.6 2.9 6.6 6.6s-2.9 6.6-6.6 6.6-6.6-2.9-6.6-6.6 3-6.6 6.6-6.6z"/></svg>
  1686.                </div>
  1687.              
  1688.  
  1689.              <div class="search-flydown--product-text">
  1690.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1691.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1692.              </div>
  1693.            </a>
  1694.          
  1695.            <a class="search-flydown--product search-flydown--product" href="#">
  1696.              
  1697.                <div class="search-flydown--product-image">
  1698.                  <svg class="placeholder--image placeholder--content-image" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 525.5 525.5"><path d="M324.5 212.7H203c-1.6 0-2.8 1.3-2.8 2.8V308c0 1.6 1.3 2.8 2.8 2.8h121.6c1.6 0 2.8-1.3 2.8-2.8v-92.5c0-1.6-1.3-2.8-2.9-2.8zm1.1 95.3c0 .6-.5 1.1-1.1 1.1H203c-.6 0-1.1-.5-1.1-1.1v-92.5c0-.6.5-1.1 1.1-1.1h121.6c.6 0 1.1.5 1.1 1.1V308z"/><path d="M210.4 299.5H240v.1s.1 0 .2-.1h75.2v-76.2h-105v76.2zm1.8-7.2l20-20c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l1.5 1.5 16.8 16.8c-12.9 3.3-20.7 6.3-22.8 7.2h-27.7v-5.5zm101.5-10.1c-20.1 1.7-36.7 4.8-49.1 7.9l-16.9-16.9 26.3-26.3c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l27.5 27.5v7.8zm-68.9 15.5c9.7-3.5 33.9-10.9 68.9-13.8v13.8h-68.9zm68.9-72.7v46.8l-26.2-26.2c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-26.3 26.3-.9-.9c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-18.8 18.8V225h101.4z"/><path d="M232.8 254c4.6 0 8.3-3.7 8.3-8.3s-3.7-8.3-8.3-8.3-8.3 3.7-8.3 8.3 3.7 8.3 8.3 8.3zm0-14.9c3.6 0 6.6 2.9 6.6 6.6s-2.9 6.6-6.6 6.6-6.6-2.9-6.6-6.6 3-6.6 6.6-6.6z"/></svg>
  1699.                </div>
  1700.              
  1701.  
  1702.              <div class="search-flydown--product-text">
  1703.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1704.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1705.              </div>
  1706.            </a>
  1707.          
  1708.        </div>
  1709.      </div>
  1710.  
  1711.      <div
  1712.        class="
  1713.          search-flydown--results
  1714.          
  1715.        "
  1716.        data-live-search-results
  1717.      ></div>
  1718.  
  1719.      
  1720.    </div>
  1721.  </form>
  1722. </div>
  1723.  
  1724.  
  1725.      
  1726.    </div>
  1727.  
  1728.    <div class="site-header-right">
  1729.      <ul class="site-header-actions" data-header-actions>
  1730.  
  1731.    
  1732.      <li class="site-header-actions__account-link">
  1733.        <a
  1734.          class="site-header_account-link-anchor"
  1735.          href="/account/login"
  1736.        >
  1737.          <span class="site-header__account-icon">
  1738.            
  1739.  
  1740.  
  1741.    <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>                                                                                                                
  1742.  
  1743.          </span>
  1744.          
  1745.          <span class="site-header_account-link-text">
  1746.            Login
  1747.          </span>
  1748.        </a>
  1749.      </li>
  1750.    
  1751.  
  1752. </ul>
  1753.  
  1754.  
  1755.      <div class="site-header-cart">
  1756.        <a class="site-header-cart--button" href="/cart">
  1757.          <span
  1758.            class="site-header-cart--count "
  1759.            data-header-cart-count="">
  1760.          </span>
  1761.          <span class="site-header-cart-icon site-header-cart-icon--svg">
  1762.            
  1763.              
  1764.  
  1765.  
  1766.            <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>                                                                                                        
  1767.  
  1768.            
  1769.          </span>
  1770.          <span class="visually-hidden">View cart</span>
  1771.        </a>
  1772.      </div>
  1773.    </div>
  1774.  </div>
  1775.  
  1776.  <div
  1777.    class="
  1778.      site-navigation-wrapper
  1779.      
  1780.        site-navigation--has-actions
  1781.      
  1782.      
  1783.        site-header--full-width
  1784.      
  1785.    "
  1786.    data-site-navigation
  1787.    id="site-header-nav"
  1788.  >
  1789.    <nav
  1790.      class="site-navigation"
  1791.      aria-label="Main"
  1792.    >
  1793.      
  1794.  
  1795.  
  1796.  
  1797.  
  1798. <ul
  1799.  class="navmenu navmenu-depth-1"
  1800.  data-navmenu
  1801.  aria-label="Main Menu 02"
  1802. >
  1803.  
  1804.    
  1805.    
  1806.  
  1807.    
  1808.    
  1809.    
  1810.    
  1811. <li
  1812.      class="navmenu-item              navmenu-basic__item                  navmenu-id-home"
  1813.      
  1814.      
  1815.      
  1816.    >
  1817.      
  1818.        <a
  1819.      
  1820.        class="
  1821.          navmenu-link
  1822.          navmenu-link-depth-1
  1823.          
  1824.          navmenu-link-active
  1825.        "
  1826.        
  1827.          href="/"
  1828.        
  1829.      >
  1830.        Home
  1831.        
  1832.      
  1833.        </a>
  1834.      
  1835.  
  1836.      
  1837.      </details>
  1838.    </li>
  1839.  
  1840.    
  1841.    
  1842.  
  1843.    
  1844.    
  1845.    
  1846.    
  1847. <li
  1848.      class="navmenu-item                    navmenu-item-parent                  navmenu-meganav__item-parent                    navmenu-id-shop"
  1849.      
  1850.        data-navmenu-meganav-trigger
  1851.        data-navmenu-meganav-type="multi-column-menu"
  1852.      
  1853.      data-navmenu-parent
  1854.      
  1855.    >
  1856.      
  1857.        <details data-navmenu-details>
  1858.        <summary
  1859.      
  1860.        class="
  1861.          navmenu-link
  1862.          navmenu-link-depth-1
  1863.          navmenu-link-parent
  1864.          
  1865.        "
  1866.        
  1867.          aria-haspopup="true"
  1868.          aria-expanded="false"
  1869.          data-href="/collections/all"
  1870.        
  1871.      >
  1872.        Shop
  1873.        
  1874.          <span
  1875.            class="navmenu-icon navmenu-icon-depth-1"
  1876.            data-navmenu-trigger
  1877.          >
  1878.            <svg
  1879.  aria-hidden="true"
  1880.  focusable="false"
  1881.  role="presentation"
  1882.  width="8"
  1883.  height="6"
  1884.  viewBox="0 0 8 6"
  1885.  fill="none"
  1886.  xmlns="http://www.w3.org/2000/svg"
  1887.  class="icon-chevron-down"
  1888. >
  1889. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1890. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1891. </svg>
  1892.  
  1893.          </span>
  1894.        
  1895.      
  1896.        </summary>
  1897.      
  1898.  
  1899.      
  1900.        
  1901.            
  1902.  
  1903.  
  1904.  
  1905.  
  1906.  
  1907.  
  1908.  
  1909. <div
  1910.  class="navmenu-submenu  navmenu-meganav  navmenu-meganav--desktop"
  1911.  data-navmenu-submenu
  1912.  data-meganav-menu
  1913.  data-meganav-id="3b13d0a4-b646-40a2-af69-91c68056aced"
  1914. >
  1915.  <div class="navmenu-meganav-wrapper navmenu-multi-column-items">
  1916.    <ul class="navmenu navmenu-depth-2 multi-column-count-5">
  1917.      
  1918.        
  1919.          <li class="navmenu-item">
  1920.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1921.              Laptop Components
  1922.            </a>
  1923.            <ul>
  1924.            
  1925.              <li class="navmenu-item">
  1926.                <a href="/collections/ac-adapters" class="navmenu-link">
  1927.                  AC Adapters
  1928.                </a>
  1929.              </li>
  1930.            
  1931.              <li class="navmenu-item">
  1932.                <a href="/collections/batteries" class="navmenu-link">
  1933.                  Batteries
  1934.                </a>
  1935.              </li>
  1936.            
  1937.              <li class="navmenu-item">
  1938.                <a href="/collections/cases-covers-bezels" class="navmenu-link">
  1939.                  Bezels Cases & Covers
  1940.                </a>
  1941.              </li>
  1942.            
  1943.              <li class="navmenu-item">
  1944.                <a href="/collections/boards" class="navmenu-link">
  1945.                  Boards
  1946.                </a>
  1947.              </li>
  1948.            
  1949.              <li class="navmenu-item">
  1950.                <a href="/collections/cables" class="navmenu-link">
  1951.                  Cables
  1952.                </a>
  1953.              </li>
  1954.            
  1955.              <li class="navmenu-item">
  1956.                <a href="/collections/dc-jack-cables" class="navmenu-link">
  1957.                  DC Jack Cables
  1958.                </a>
  1959.              </li>
  1960.            
  1961.              <li class="navmenu-item">
  1962.                <a href="/collections/fans" class="navmenu-link">
  1963.                  Fans
  1964.                </a>
  1965.              </li>
  1966.            
  1967.              <li class="navmenu-item">
  1968.                <a href="/collections/hard-drive-brackets" class="navmenu-link">
  1969.                  Hard Drive Brackets
  1970.                </a>
  1971.              </li>
  1972.            
  1973.              <li class="navmenu-item">
  1974.                <a href="/collections/laptop-hard-drive" class="navmenu-link">
  1975.                  Hard Drives
  1976.                </a>
  1977.              </li>
  1978.            
  1979.              <li class="navmenu-item">
  1980.                <a href="/collections/laptop-case-parts" class="navmenu-link">
  1981.                  - Laptop Case Parts
  1982.                </a>
  1983.              </li>
  1984.            
  1985.              <li class="navmenu-item">
  1986.                <a href="/collections/hinges" class="navmenu-link">
  1987.                  Hinges
  1988.                </a>
  1989.              </li>
  1990.            
  1991.              <li class="navmenu-item">
  1992.                <a href="/collections/laptop-case" class="navmenu-link">
  1993.                  Laptop Case
  1994.                </a>
  1995.              </li>
  1996.            
  1997.              <li class="navmenu-item">
  1998.                <a href="/collections/laptop-cover" class="navmenu-link">
  1999.                  Laptop Cover
  2000.                </a>
  2001.              </li>
  2002.            
  2003.              <li class="navmenu-item">
  2004.                <a href="/collections/thermal-printer" class="navmenu-link">
  2005.                  Thermal Printer
  2006.                </a>
  2007.              </li>
  2008.            
  2009.            </ul>
  2010.          </li>
  2011.        
  2012.      
  2013.        
  2014.          <li class="navmenu-item">
  2015.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  2016.              .....
  2017.            </a>
  2018.            <ul>
  2019.            
  2020.              <li class="navmenu-item">
  2021.                <a href="/collections/keyboards-1" class="navmenu-link">
  2022.                  Keyboards
  2023.                </a>
  2024.              </li>
  2025.            
  2026.              <li class="navmenu-item">
  2027.                <a href="/collections/acer-keyboard" class="navmenu-link">
  2028.                  - Acer keyboard
  2029.                </a>
  2030.              </li>
  2031.            
  2032.              <li class="navmenu-item">
  2033.                <a href="/collections/asus-keyboard" class="navmenu-link">
  2034.                  - Asus keyboards
  2035.                </a>
  2036.              </li>
  2037.            
  2038.              <li class="navmenu-item">
  2039.                <a href="/collections/dell-keyboard" class="navmenu-link">
  2040.                  - Dell keyboard
  2041.                </a>
  2042.              </li>
  2043.            
  2044.              <li class="navmenu-item">
  2045.                <a href="/collections/lenovo-keyboard" class="navmenu-link">
  2046.                  - Lenovo keyboard
  2047.                </a>
  2048.              </li>
  2049.            
  2050.              <li class="navmenu-item">
  2051.                <a href="/collections/hp-keyboard" class="navmenu-link">
  2052.                  - Hp Keyboard
  2053.                </a>
  2054.              </li>
  2055.            
  2056.              <li class="navmenu-item">
  2057.                <a href="/collections/backlit-keyboard" class="navmenu-link">
  2058.                  - Backlit Keyboards
  2059.                </a>
  2060.              </li>
  2061.            
  2062.              <li class="navmenu-item">
  2063.                <a href="/collections/memory" class="navmenu-link">
  2064.                  Memory
  2065.                </a>
  2066.              </li>
  2067.            
  2068.              <li class="navmenu-item">
  2069.                <a href="/collections/motherboards" class="navmenu-link">
  2070.                  Motherboards
  2071.                </a>
  2072.              </li>
  2073.            
  2074.              <li class="navmenu-item">
  2075.                <a href="/collections/optical-drives" class="navmenu-link">
  2076.                  Optical Drives
  2077.                </a>
  2078.              </li>
  2079.            
  2080.              <li class="navmenu-item">
  2081.                <a href="/collections/power-supplies" class="navmenu-link">
  2082.                  Power Supplies
  2083.                </a>
  2084.              </li>
  2085.            
  2086.              <li class="navmenu-item">
  2087.                <a href="/collections/screens" class="navmenu-link">
  2088.                  Screens
  2089.                </a>
  2090.              </li>
  2091.            
  2092.              <li class="navmenu-item">
  2093.                <a href="/collections/touch-screen-laptop" class="navmenu-link">
  2094.                  - Touch Screen Laptop
  2095.                </a>
  2096.              </li>
  2097.            
  2098.              <li class="navmenu-item">
  2099.                <a href="/collections/screens-touch-digitizers" class="navmenu-link">
  2100.                  Screens - Touch Digitizers
  2101.                </a>
  2102.              </li>
  2103.            
  2104.              <li class="navmenu-item">
  2105.                <a href="/collections/speakers" class="navmenu-link">
  2106.                  Speakers
  2107.                </a>
  2108.              </li>
  2109.            
  2110.              <li class="navmenu-item">
  2111.                <a href="/collections/touchpads" class="navmenu-link">
  2112.                  Touchpads
  2113.                </a>
  2114.              </li>
  2115.            
  2116.            </ul>
  2117.          </li>
  2118.        
  2119.      
  2120.        
  2121.          <li class="navmenu-item">
  2122.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  2123.              Other Components
  2124.            </a>
  2125.            <ul>
  2126.            
  2127.              <li class="navmenu-item">
  2128.                <a href="/collections/accessories" class="navmenu-link">
  2129.                  Accessories
  2130.                </a>
  2131.              </li>
  2132.            
  2133.              <li class="navmenu-item">
  2134.                <a href="/collections/phone-parts" class="navmenu-link">
  2135.                  Phone Parts
  2136.                </a>
  2137.              </li>
  2138.            
  2139.              <li class="navmenu-item">
  2140.                <a href="/collections/printer-parts" class="navmenu-link">
  2141.                  Printer Parts
  2142.                </a>
  2143.              </li>
  2144.            
  2145.              <li class="navmenu-item">
  2146.                <a href="/collections/server-parts" class="navmenu-link">
  2147.                  Server Parts
  2148.                </a>
  2149.              </li>
  2150.            
  2151.              <li class="navmenu-item">
  2152.                <a href="/collections/tablet-parts" class="navmenu-link">
  2153.                  Tablet Parts
  2154.                </a>
  2155.              </li>
  2156.            
  2157.            </ul>
  2158.          </li>
  2159.        
  2160.      
  2161.    </ul>
  2162.  </div>
  2163. </div>
  2164.  
  2165.          
  2166.      
  2167.      </details>
  2168.    </li>
  2169.  
  2170.    
  2171.    
  2172.  
  2173.    
  2174.    
  2175.    
  2176.    
  2177. <li
  2178.      class="navmenu-item              navmenu-basic__item                  navmenu-id-about-us"
  2179.      
  2180.      
  2181.      
  2182.    >
  2183.      
  2184.        <a
  2185.      
  2186.        class="
  2187.          navmenu-link
  2188.          navmenu-link-depth-1
  2189.          
  2190.          
  2191.        "
  2192.        
  2193.          href="/pages/about-us"
  2194.        
  2195.      >
  2196.        About Us
  2197.        
  2198.      
  2199.        </a>
  2200.      
  2201.  
  2202.      
  2203.      </details>
  2204.    </li>
  2205.  
  2206.    
  2207.    
  2208.  
  2209.    
  2210.    
  2211.    
  2212.    
  2213. <li
  2214.      class="navmenu-item              navmenu-basic__item                  navmenu-id-repair-centers"
  2215.      
  2216.      
  2217.      
  2218.    >
  2219.      
  2220.        <a
  2221.      
  2222.        class="
  2223.          navmenu-link
  2224.          navmenu-link-depth-1
  2225.          
  2226.          
  2227.        "
  2228.        
  2229.          href="/pages/store-locator"
  2230.        
  2231.      >
  2232.        Repair Centers
  2233.        
  2234.      
  2235.        </a>
  2236.      
  2237.  
  2238.      
  2239.      </details>
  2240.    </li>
  2241.  
  2242.    
  2243.    
  2244.  
  2245.    
  2246.    
  2247.    
  2248.    
  2249. <li
  2250.      class="navmenu-item              navmenu-basic__item                  navmenu-id-parts-request"
  2251.      
  2252.      
  2253.      
  2254.    >
  2255.      
  2256.        <a
  2257.      
  2258.        class="
  2259.          navmenu-link
  2260.          navmenu-link-depth-1
  2261.          
  2262.          
  2263.        "
  2264.        
  2265.          href="/pages/part-request"
  2266.        
  2267.      >
  2268.        Parts Request
  2269.        
  2270.      
  2271.        </a>
  2272.      
  2273.  
  2274.      
  2275.      </details>
  2276.    </li>
  2277.  
  2278.    
  2279.    
  2280.  
  2281.    
  2282.    
  2283.    
  2284.    
  2285. <li
  2286.      class="navmenu-item              navmenu-basic__item                  navmenu-id-shipping"
  2287.      
  2288.      
  2289.      
  2290.    >
  2291.      
  2292.        <a
  2293.      
  2294.        class="
  2295.          navmenu-link
  2296.          navmenu-link-depth-1
  2297.          
  2298.          
  2299.        "
  2300.        
  2301.          href="/pages/shipping"
  2302.        
  2303.      >
  2304.        Shipping
  2305.        
  2306.      
  2307.        </a>
  2308.      
  2309.  
  2310.      
  2311.      </details>
  2312.    </li>
  2313.  
  2314.    
  2315.    
  2316.  
  2317.    
  2318.    
  2319.    
  2320.    
  2321. <li
  2322.      class="navmenu-item              navmenu-basic__item                  navmenu-id-francais"
  2323.      
  2324.      
  2325.      
  2326.    >
  2327.      
  2328.        <a
  2329.      
  2330.        class="
  2331.          navmenu-link
  2332.          navmenu-link-depth-1
  2333.          
  2334.          
  2335.        "
  2336.        
  2337.          href="/pages/francais"
  2338.        
  2339.      >
  2340.        Français
  2341.        
  2342.      
  2343.        </a>
  2344.      
  2345.  
  2346.      
  2347.      </details>
  2348.    </li>
  2349.  
  2350. </ul>
  2351.  
  2352.  
  2353.      
  2354.    </nav>
  2355.  </div>
  2356.  
  2357.  <div class="site-mobile-nav" id="site-mobile-nav" data-mobile-nav tabindex="0">
  2358.  <div class="mobile-nav-panel" data-mobile-nav-panel>
  2359.  
  2360.    <ul class="site-header-actions" data-header-actions>
  2361.  
  2362.    
  2363.      <li class="site-header-actions__account-link">
  2364.        <a
  2365.          class="site-header_account-link-anchor"
  2366.          href="/account/login"
  2367.        >
  2368.          <span class="site-header__account-icon">
  2369.            
  2370.  
  2371.  
  2372.    <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>                                                                                                                
  2373.  
  2374.          </span>
  2375.          
  2376.          <span class="site-header_account-link-text">
  2377.            Login
  2378.          </span>
  2379.        </a>
  2380.      </li>
  2381.    
  2382.  
  2383. </ul>
  2384.  
  2385.  
  2386.    <a
  2387.      class="mobile-nav-close"
  2388.      href="#site-header-nav"
  2389.      data-mobile-nav-close>
  2390.      <svg
  2391.  aria-hidden="true"
  2392.  focusable="false"
  2393.  role="presentation"
  2394.  xmlns="http://www.w3.org/2000/svg"
  2395.  width="13"
  2396.  height="13"
  2397.  viewBox="0 0 13 13"
  2398. >
  2399.  <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"/>
  2400. </svg>
  2401.      <span class="visually-hidden">Close</span>
  2402.    </a>
  2403.  
  2404.    <div class="mobile-nav-content" data-mobile-nav-content>
  2405.      
  2406.  
  2407.  
  2408.  
  2409.  
  2410. <ul
  2411.  class="navmenu navmenu-depth-1"
  2412.  data-navmenu
  2413.  aria-label="Main Menu 02"
  2414. >
  2415.  
  2416.    
  2417.    
  2418.  
  2419.    
  2420.    
  2421.    
  2422. <li
  2423.      class="navmenu-item            navmenu-id-home"
  2424.      
  2425.    >
  2426.      <a
  2427.        class="navmenu-link  navmenu-link-active"
  2428.        href="/"
  2429.        
  2430.      >
  2431.        Home
  2432.      </a>
  2433.  
  2434.      
  2435.  
  2436.      
  2437.      
  2438.  
  2439.      
  2440.  
  2441.      
  2442.    </li>
  2443.  
  2444.    
  2445.    
  2446.  
  2447.    
  2448.    
  2449.    
  2450. <li
  2451.      class="navmenu-item      navmenu-item-parent      navmenu-id-shop"
  2452.      data-navmenu-parent
  2453.    >
  2454.      <a
  2455.        class="navmenu-link navmenu-link-parent "
  2456.        href="/collections/all"
  2457.        
  2458.          aria-haspopup="true"
  2459.          aria-expanded="false"
  2460.        
  2461.      >
  2462.        Shop
  2463.      </a>
  2464.  
  2465.      
  2466.        
  2467.  
  2468.  
  2469.  
  2470. <button
  2471.  class="navmenu-button"
  2472.  data-navmenu-trigger
  2473.  aria-expanded="false"
  2474. >
  2475.  <div class="navmenu-button-wrapper" tabindex="-1">
  2476.    <span class="navmenu-icon ">
  2477.      <svg
  2478.  aria-hidden="true"
  2479.  focusable="false"
  2480.  role="presentation"
  2481.  width="8"
  2482.  height="6"
  2483.  viewBox="0 0 8 6"
  2484.  fill="none"
  2485.  xmlns="http://www.w3.org/2000/svg"
  2486.  class="icon-chevron-down"
  2487. >
  2488. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2489. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2490. </svg>
  2491.  
  2492.    </span>
  2493.    <span class="visually-hidden">Shop</span>
  2494.  </div>
  2495. </button>
  2496.  
  2497.      
  2498.  
  2499.      
  2500.      
  2501.  
  2502.      
  2503.        
  2504.  
  2505.  
  2506.  
  2507.  
  2508.  
  2509.  
  2510.  
  2511.  
  2512.  
  2513.  
  2514.  
  2515.  
  2516. <ul
  2517.  class="
  2518.    navmenu
  2519.    navmenu-depth-2
  2520.    navmenu-submenu
  2521.    
  2522.  "
  2523.  data-navmenu
  2524.  data-accordion-content
  2525.  data-navmenu-submenu
  2526.  aria-label="Main Menu 02"
  2527. >
  2528.  
  2529.    
  2530.  
  2531.    
  2532.    
  2533.  
  2534.    
  2535.    
  2536.  
  2537.    
  2538.  
  2539.    
  2540. <li
  2541.        class="navmenu-item        navmenu-item-parent        navmenu-id-laptop-components"
  2542.        data-navmenu-parent
  2543.      >
  2544.        
  2545.          <a
  2546.            href="/collections/all"
  2547.        
  2548.          class="navmenu-link navmenu-link-parent "
  2549.          
  2550.            aria-haspopup="true"
  2551.            aria-expanded="false"
  2552.          
  2553.        >
  2554.          
  2555.          Laptop Components
  2556.  
  2557.        
  2558.          </a>
  2559.        
  2560.  
  2561.        
  2562.          
  2563.  
  2564.  
  2565.  
  2566. <button
  2567.  class="navmenu-button"
  2568.  data-navmenu-trigger
  2569.  aria-expanded="false"
  2570. >
  2571.  <div class="navmenu-button-wrapper" tabindex="-1">
  2572.    <span class="navmenu-icon navmenu-icon-depth-2">
  2573.      <svg
  2574.  aria-hidden="true"
  2575.  focusable="false"
  2576.  role="presentation"
  2577.  width="8"
  2578.  height="6"
  2579.  viewBox="0 0 8 6"
  2580.  fill="none"
  2581.  xmlns="http://www.w3.org/2000/svg"
  2582.  class="icon-chevron-down"
  2583. >
  2584. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2585. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2586. </svg>
  2587.  
  2588.    </span>
  2589.    <span class="visually-hidden">Laptop Components</span>
  2590.  </div>
  2591. </button>
  2592.  
  2593.        
  2594.  
  2595.        
  2596.          
  2597.  
  2598.  
  2599.  
  2600.  
  2601.  
  2602.  
  2603.  
  2604.  
  2605.  
  2606.  
  2607.  
  2608.  
  2609. <ul
  2610.  class="
  2611.    navmenu
  2612.    navmenu-depth-3
  2613.    navmenu-submenu
  2614.    
  2615.  "
  2616.  data-navmenu
  2617.  data-accordion-content
  2618.  data-navmenu-submenu
  2619.  aria-label="Main Menu 02"
  2620. >
  2621.  
  2622.    
  2623.  
  2624.    
  2625.    
  2626.  
  2627.    
  2628.    
  2629.  
  2630.    
  2631.  
  2632.    
  2633.      <li
  2634.        class="navmenu-item navmenu-id-ac-adapters"
  2635.      >
  2636.        <a
  2637.        class="
  2638.          navmenu-link
  2639.          navmenu-link-depth-3
  2640.          
  2641.        "
  2642.        href="/collections/ac-adapters"
  2643.        >
  2644.          
  2645.          AC Adapters
  2646. </a>
  2647.      </li>
  2648.    
  2649.  
  2650.    
  2651.  
  2652.    
  2653.    
  2654.  
  2655.    
  2656.    
  2657.  
  2658.    
  2659.  
  2660.    
  2661.      <li
  2662.        class="navmenu-item navmenu-id-batteries"
  2663.      >
  2664.        <a
  2665.        class="
  2666.          navmenu-link
  2667.          navmenu-link-depth-3
  2668.          
  2669.        "
  2670.        href="/collections/batteries"
  2671.        >
  2672.          
  2673.          Batteries
  2674. </a>
  2675.      </li>
  2676.    
  2677.  
  2678.    
  2679.  
  2680.    
  2681.    
  2682.  
  2683.    
  2684.    
  2685.  
  2686.    
  2687.  
  2688.    
  2689.      <li
  2690.        class="navmenu-item navmenu-id-bezels-cases-covers"
  2691.      >
  2692.        <a
  2693.        class="
  2694.          navmenu-link
  2695.          navmenu-link-depth-3
  2696.          
  2697.        "
  2698.        href="/collections/cases-covers-bezels"
  2699.        >
  2700.          
  2701.          Bezels Cases & Covers
  2702. </a>
  2703.      </li>
  2704.    
  2705.  
  2706.    
  2707.  
  2708.    
  2709.    
  2710.  
  2711.    
  2712.    
  2713.  
  2714.    
  2715.  
  2716.    
  2717.      <li
  2718.        class="navmenu-item navmenu-id-boards"
  2719.      >
  2720.        <a
  2721.        class="
  2722.          navmenu-link
  2723.          navmenu-link-depth-3
  2724.          
  2725.        "
  2726.        href="/collections/boards"
  2727.        >
  2728.          
  2729.          Boards
  2730. </a>
  2731.      </li>
  2732.    
  2733.  
  2734.    
  2735.  
  2736.    
  2737.    
  2738.  
  2739.    
  2740.    
  2741.  
  2742.    
  2743.  
  2744.    
  2745.      <li
  2746.        class="navmenu-item navmenu-id-cables"
  2747.      >
  2748.        <a
  2749.        class="
  2750.          navmenu-link
  2751.          navmenu-link-depth-3
  2752.          
  2753.        "
  2754.        href="/collections/cables"
  2755.        >
  2756.          
  2757.          Cables
  2758. </a>
  2759.      </li>
  2760.    
  2761.  
  2762.    
  2763.  
  2764.    
  2765.    
  2766.  
  2767.    
  2768.    
  2769.  
  2770.    
  2771.  
  2772.    
  2773.      <li
  2774.        class="navmenu-item navmenu-id-dc-jack-cables"
  2775.      >
  2776.        <a
  2777.        class="
  2778.          navmenu-link
  2779.          navmenu-link-depth-3
  2780.          
  2781.        "
  2782.        href="/collections/dc-jack-cables"
  2783.        >
  2784.          
  2785.          DC Jack Cables
  2786. </a>
  2787.      </li>
  2788.    
  2789.  
  2790.    
  2791.  
  2792.    
  2793.    
  2794.  
  2795.    
  2796.    
  2797.  
  2798.    
  2799.  
  2800.    
  2801.      <li
  2802.        class="navmenu-item navmenu-id-fans"
  2803.      >
  2804.        <a
  2805.        class="
  2806.          navmenu-link
  2807.          navmenu-link-depth-3
  2808.          
  2809.        "
  2810.        href="/collections/fans"
  2811.        >
  2812.          
  2813.          Fans
  2814. </a>
  2815.      </li>
  2816.    
  2817.  
  2818.    
  2819.  
  2820.    
  2821.    
  2822.  
  2823.    
  2824.    
  2825.  
  2826.    
  2827.  
  2828.    
  2829.      <li
  2830.        class="navmenu-item navmenu-id-hard-drive-brackets"
  2831.      >
  2832.        <a
  2833.        class="
  2834.          navmenu-link
  2835.          navmenu-link-depth-3
  2836.          
  2837.        "
  2838.        href="/collections/hard-drive-brackets"
  2839.        >
  2840.          
  2841.          Hard Drive Brackets
  2842. </a>
  2843.      </li>
  2844.    
  2845.  
  2846.    
  2847.  
  2848.    
  2849.    
  2850.  
  2851.    
  2852.    
  2853.  
  2854.    
  2855.  
  2856.    
  2857.      <li
  2858.        class="navmenu-item navmenu-id-hard-drives"
  2859.      >
  2860.        <a
  2861.        class="
  2862.          navmenu-link
  2863.          navmenu-link-depth-3
  2864.          
  2865.        "
  2866.        href="/collections/laptop-hard-drive"
  2867.        >
  2868.          
  2869.          Hard Drives
  2870. </a>
  2871.      </li>
  2872.    
  2873.  
  2874.    
  2875.  
  2876.    
  2877.    
  2878.  
  2879.    
  2880.    
  2881.  
  2882.    
  2883.  
  2884.    
  2885.      <li
  2886.        class="navmenu-item navmenu-id-laptop-case-parts"
  2887.      >
  2888.        <a
  2889.        class="
  2890.          navmenu-link
  2891.          navmenu-link-depth-3
  2892.          
  2893.        "
  2894.        href="/collections/laptop-case-parts"
  2895.        >
  2896.          
  2897.          - Laptop Case Parts
  2898. </a>
  2899.      </li>
  2900.    
  2901.  
  2902.    
  2903.  
  2904.    
  2905.    
  2906.  
  2907.    
  2908.    
  2909.  
  2910.    
  2911.  
  2912.    
  2913.      <li
  2914.        class="navmenu-item navmenu-id-hinges"
  2915.      >
  2916.        <a
  2917.        class="
  2918.          navmenu-link
  2919.          navmenu-link-depth-3
  2920.          
  2921.        "
  2922.        href="/collections/hinges"
  2923.        >
  2924.          
  2925.          Hinges
  2926. </a>
  2927.      </li>
  2928.    
  2929.  
  2930.    
  2931.  
  2932.    
  2933.    
  2934.  
  2935.    
  2936.    
  2937.  
  2938.    
  2939.  
  2940.    
  2941.      <li
  2942.        class="navmenu-item navmenu-id-laptop-case"
  2943.      >
  2944.        <a
  2945.        class="
  2946.          navmenu-link
  2947.          navmenu-link-depth-3
  2948.          
  2949.        "
  2950.        href="/collections/laptop-case"
  2951.        >
  2952.          
  2953.          Laptop Case
  2954. </a>
  2955.      </li>
  2956.    
  2957.  
  2958.    
  2959.  
  2960.    
  2961.    
  2962.  
  2963.    
  2964.    
  2965.  
  2966.    
  2967.  
  2968.    
  2969.      <li
  2970.        class="navmenu-item navmenu-id-laptop-cover"
  2971.      >
  2972.        <a
  2973.        class="
  2974.          navmenu-link
  2975.          navmenu-link-depth-3
  2976.          
  2977.        "
  2978.        href="/collections/laptop-cover"
  2979.        >
  2980.          
  2981.          Laptop Cover
  2982. </a>
  2983.      </li>
  2984.    
  2985.  
  2986.    
  2987.  
  2988.    
  2989.    
  2990.  
  2991.    
  2992.    
  2993.  
  2994.    
  2995.  
  2996.    
  2997.      <li
  2998.        class="navmenu-item navmenu-id-thermal-printer"
  2999.      >
  3000.        <a
  3001.        class="
  3002.          navmenu-link
  3003.          navmenu-link-depth-3
  3004.          
  3005.        "
  3006.        href="/collections/thermal-printer"
  3007.        >
  3008.          
  3009.          Thermal Printer
  3010. </a>
  3011.      </li>
  3012.    
  3013.  
  3014. </ul>
  3015.  
  3016.        
  3017.        
  3018.      </li>
  3019.    
  3020.  
  3021.    
  3022.  
  3023.    
  3024.    
  3025.  
  3026.    
  3027.    
  3028.  
  3029.    
  3030.  
  3031.    
  3032. <li
  3033.        class="navmenu-item        navmenu-item-parent        navmenu-id-"
  3034.        data-navmenu-parent
  3035.      >
  3036.        
  3037.          <a
  3038.            href="/collections/all"
  3039.        
  3040.          class="navmenu-link navmenu-link-parent "
  3041.          
  3042.            aria-haspopup="true"
  3043.            aria-expanded="false"
  3044.          
  3045.        >
  3046.          
  3047.          .....
  3048.  
  3049.        
  3050.          </a>
  3051.        
  3052.  
  3053.        
  3054.          
  3055.  
  3056.  
  3057.  
  3058. <button
  3059.  class="navmenu-button"
  3060.  data-navmenu-trigger
  3061.  aria-expanded="false"
  3062. >
  3063.  <div class="navmenu-button-wrapper" tabindex="-1">
  3064.    <span class="navmenu-icon navmenu-icon-depth-2">
  3065.      <svg
  3066.  aria-hidden="true"
  3067.  focusable="false"
  3068.  role="presentation"
  3069.  width="8"
  3070.  height="6"
  3071.  viewBox="0 0 8 6"
  3072.  fill="none"
  3073.  xmlns="http://www.w3.org/2000/svg"
  3074.  class="icon-chevron-down"
  3075. >
  3076. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3077. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3078. </svg>
  3079.  
  3080.    </span>
  3081.    <span class="visually-hidden">.....</span>
  3082.  </div>
  3083. </button>
  3084.  
  3085.        
  3086.  
  3087.        
  3088.          
  3089.  
  3090.  
  3091.  
  3092.  
  3093.  
  3094.  
  3095.  
  3096.  
  3097.  
  3098.  
  3099.  
  3100.  
  3101. <ul
  3102.  class="
  3103.    navmenu
  3104.    navmenu-depth-3
  3105.    navmenu-submenu
  3106.    
  3107.  "
  3108.  data-navmenu
  3109.  data-accordion-content
  3110.  data-navmenu-submenu
  3111.  aria-label="Main Menu 02"
  3112. >
  3113.  
  3114.    
  3115.  
  3116.    
  3117.    
  3118.  
  3119.    
  3120.    
  3121.  
  3122.    
  3123.  
  3124.    
  3125.      <li
  3126.        class="navmenu-item navmenu-id-keyboards"
  3127.      >
  3128.        <a
  3129.        class="
  3130.          navmenu-link
  3131.          navmenu-link-depth-3
  3132.          
  3133.        "
  3134.        href="/collections/keyboards-1"
  3135.        >
  3136.          
  3137.          Keyboards
  3138. </a>
  3139.      </li>
  3140.    
  3141.  
  3142.    
  3143.  
  3144.    
  3145.    
  3146.  
  3147.    
  3148.    
  3149.  
  3150.    
  3151.  
  3152.    
  3153.      <li
  3154.        class="navmenu-item navmenu-id-acer-keyboard"
  3155.      >
  3156.        <a
  3157.        class="
  3158.          navmenu-link
  3159.          navmenu-link-depth-3
  3160.          
  3161.        "
  3162.        href="/collections/acer-keyboard"
  3163.        >
  3164.          
  3165.          - Acer keyboard
  3166. </a>
  3167.      </li>
  3168.    
  3169.  
  3170.    
  3171.  
  3172.    
  3173.    
  3174.  
  3175.    
  3176.    
  3177.  
  3178.    
  3179.  
  3180.    
  3181.      <li
  3182.        class="navmenu-item navmenu-id-asus-keyboards"
  3183.      >
  3184.        <a
  3185.        class="
  3186.          navmenu-link
  3187.          navmenu-link-depth-3
  3188.          
  3189.        "
  3190.        href="/collections/asus-keyboard"
  3191.        >
  3192.          
  3193.          - Asus keyboards
  3194. </a>
  3195.      </li>
  3196.    
  3197.  
  3198.    
  3199.  
  3200.    
  3201.    
  3202.  
  3203.    
  3204.    
  3205.  
  3206.    
  3207.  
  3208.    
  3209.      <li
  3210.        class="navmenu-item navmenu-id-dell-keyboard"
  3211.      >
  3212.        <a
  3213.        class="
  3214.          navmenu-link
  3215.          navmenu-link-depth-3
  3216.          
  3217.        "
  3218.        href="/collections/dell-keyboard"
  3219.        >
  3220.          
  3221.          - Dell keyboard
  3222. </a>
  3223.      </li>
  3224.    
  3225.  
  3226.    
  3227.  
  3228.    
  3229.    
  3230.  
  3231.    
  3232.    
  3233.  
  3234.    
  3235.  
  3236.    
  3237.      <li
  3238.        class="navmenu-item navmenu-id-lenovo-keyboard"
  3239.      >
  3240.        <a
  3241.        class="
  3242.          navmenu-link
  3243.          navmenu-link-depth-3
  3244.          
  3245.        "
  3246.        href="/collections/lenovo-keyboard"
  3247.        >
  3248.          
  3249.          - Lenovo keyboard
  3250. </a>
  3251.      </li>
  3252.    
  3253.  
  3254.    
  3255.  
  3256.    
  3257.    
  3258.  
  3259.    
  3260.    
  3261.  
  3262.    
  3263.  
  3264.    
  3265.      <li
  3266.        class="navmenu-item navmenu-id-hp-keyboard"
  3267.      >
  3268.        <a
  3269.        class="
  3270.          navmenu-link
  3271.          navmenu-link-depth-3
  3272.          
  3273.        "
  3274.        href="/collections/hp-keyboard"
  3275.        >
  3276.          
  3277.          - Hp Keyboard
  3278. </a>
  3279.      </li>
  3280.    
  3281.  
  3282.    
  3283.  
  3284.    
  3285.    
  3286.  
  3287.    
  3288.    
  3289.  
  3290.    
  3291.  
  3292.    
  3293.      <li
  3294.        class="navmenu-item navmenu-id-backlit-keyboards"
  3295.      >
  3296.        <a
  3297.        class="
  3298.          navmenu-link
  3299.          navmenu-link-depth-3
  3300.          
  3301.        "
  3302.        href="/collections/backlit-keyboard"
  3303.        >
  3304.          
  3305.          - Backlit Keyboards
  3306. </a>
  3307.      </li>
  3308.    
  3309.  
  3310.    
  3311.  
  3312.    
  3313.    
  3314.  
  3315.    
  3316.    
  3317.  
  3318.    
  3319.  
  3320.    
  3321.      <li
  3322.        class="navmenu-item navmenu-id-memory"
  3323.      >
  3324.        <a
  3325.        class="
  3326.          navmenu-link
  3327.          navmenu-link-depth-3
  3328.          
  3329.        "
  3330.        href="/collections/memory"
  3331.        >
  3332.          
  3333.          Memory
  3334. </a>
  3335.      </li>
  3336.    
  3337.  
  3338.    
  3339.  
  3340.    
  3341.    
  3342.  
  3343.    
  3344.    
  3345.  
  3346.    
  3347.  
  3348.    
  3349.      <li
  3350.        class="navmenu-item navmenu-id-motherboards"
  3351.      >
  3352.        <a
  3353.        class="
  3354.          navmenu-link
  3355.          navmenu-link-depth-3
  3356.          
  3357.        "
  3358.        href="/collections/motherboards"
  3359.        >
  3360.          
  3361.          Motherboards
  3362. </a>
  3363.      </li>
  3364.    
  3365.  
  3366.    
  3367.  
  3368.    
  3369.    
  3370.  
  3371.    
  3372.    
  3373.  
  3374.    
  3375.  
  3376.    
  3377.      <li
  3378.        class="navmenu-item navmenu-id-optical-drives"
  3379.      >
  3380.        <a
  3381.        class="
  3382.          navmenu-link
  3383.          navmenu-link-depth-3
  3384.          
  3385.        "
  3386.        href="/collections/optical-drives"
  3387.        >
  3388.          
  3389.          Optical Drives
  3390. </a>
  3391.      </li>
  3392.    
  3393.  
  3394.    
  3395.  
  3396.    
  3397.    
  3398.  
  3399.    
  3400.    
  3401.  
  3402.    
  3403.  
  3404.    
  3405.      <li
  3406.        class="navmenu-item navmenu-id-power-supplies"
  3407.      >
  3408.        <a
  3409.        class="
  3410.          navmenu-link
  3411.          navmenu-link-depth-3
  3412.          
  3413.        "
  3414.        href="/collections/power-supplies"
  3415.        >
  3416.          
  3417.          Power Supplies
  3418. </a>
  3419.      </li>
  3420.    
  3421.  
  3422.    
  3423.  
  3424.    
  3425.    
  3426.  
  3427.    
  3428.    
  3429.  
  3430.    
  3431.  
  3432.    
  3433.      <li
  3434.        class="navmenu-item navmenu-id-screens"
  3435.      >
  3436.        <a
  3437.        class="
  3438.          navmenu-link
  3439.          navmenu-link-depth-3
  3440.          
  3441.        "
  3442.        href="/collections/screens"
  3443.        >
  3444.          
  3445.          Screens
  3446. </a>
  3447.      </li>
  3448.    
  3449.  
  3450.    
  3451.  
  3452.    
  3453.    
  3454.  
  3455.    
  3456.    
  3457.  
  3458.    
  3459.  
  3460.    
  3461.      <li
  3462.        class="navmenu-item navmenu-id-touch-screen-laptop"
  3463.      >
  3464.        <a
  3465.        class="
  3466.          navmenu-link
  3467.          navmenu-link-depth-3
  3468.          
  3469.        "
  3470.        href="/collections/touch-screen-laptop"
  3471.        >
  3472.          
  3473.          - Touch Screen Laptop
  3474. </a>
  3475.      </li>
  3476.    
  3477.  
  3478.    
  3479.  
  3480.    
  3481.    
  3482.  
  3483.    
  3484.    
  3485.  
  3486.    
  3487.  
  3488.    
  3489.      <li
  3490.        class="navmenu-item navmenu-id-screens-touch-digitizers"
  3491.      >
  3492.        <a
  3493.        class="
  3494.          navmenu-link
  3495.          navmenu-link-depth-3
  3496.          
  3497.        "
  3498.        href="/collections/screens-touch-digitizers"
  3499.        >
  3500.          
  3501.          Screens - Touch Digitizers
  3502. </a>
  3503.      </li>
  3504.    
  3505.  
  3506.    
  3507.  
  3508.    
  3509.    
  3510.  
  3511.    
  3512.    
  3513.  
  3514.    
  3515.  
  3516.    
  3517.      <li
  3518.        class="navmenu-item navmenu-id-speakers"
  3519.      >
  3520.        <a
  3521.        class="
  3522.          navmenu-link
  3523.          navmenu-link-depth-3
  3524.          
  3525.        "
  3526.        href="/collections/speakers"
  3527.        >
  3528.          
  3529.          Speakers
  3530. </a>
  3531.      </li>
  3532.    
  3533.  
  3534.    
  3535.  
  3536.    
  3537.    
  3538.  
  3539.    
  3540.    
  3541.  
  3542.    
  3543.  
  3544.    
  3545.      <li
  3546.        class="navmenu-item navmenu-id-touchpads"
  3547.      >
  3548.        <a
  3549.        class="
  3550.          navmenu-link
  3551.          navmenu-link-depth-3
  3552.          
  3553.        "
  3554.        href="/collections/touchpads"
  3555.        >
  3556.          
  3557.          Touchpads
  3558. </a>
  3559.      </li>
  3560.    
  3561.  
  3562. </ul>
  3563.  
  3564.        
  3565.        
  3566.      </li>
  3567.    
  3568.  
  3569.    
  3570.  
  3571.    
  3572.    
  3573.  
  3574.    
  3575.    
  3576.  
  3577.    
  3578.  
  3579.    
  3580. <li
  3581.        class="navmenu-item        navmenu-item-parent        navmenu-id-other-components"
  3582.        data-navmenu-parent
  3583.      >
  3584.        
  3585.          <a
  3586.            href="/collections/all"
  3587.        
  3588.          class="navmenu-link navmenu-link-parent "
  3589.          
  3590.            aria-haspopup="true"
  3591.            aria-expanded="false"
  3592.          
  3593.        >
  3594.          
  3595.          Other Components
  3596.  
  3597.        
  3598.          </a>
  3599.        
  3600.  
  3601.        
  3602.          
  3603.  
  3604.  
  3605.  
  3606. <button
  3607.  class="navmenu-button"
  3608.  data-navmenu-trigger
  3609.  aria-expanded="false"
  3610. >
  3611.  <div class="navmenu-button-wrapper" tabindex="-1">
  3612.    <span class="navmenu-icon navmenu-icon-depth-2">
  3613.      <svg
  3614.  aria-hidden="true"
  3615.  focusable="false"
  3616.  role="presentation"
  3617.  width="8"
  3618.  height="6"
  3619.  viewBox="0 0 8 6"
  3620.  fill="none"
  3621.  xmlns="http://www.w3.org/2000/svg"
  3622.  class="icon-chevron-down"
  3623. >
  3624. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3625. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3626. </svg>
  3627.  
  3628.    </span>
  3629.    <span class="visually-hidden">Other Components</span>
  3630.  </div>
  3631. </button>
  3632.  
  3633.        
  3634.  
  3635.        
  3636.          
  3637.  
  3638.  
  3639.  
  3640.  
  3641.  
  3642.  
  3643.  
  3644.  
  3645.  
  3646.  
  3647.  
  3648.  
  3649. <ul
  3650.  class="
  3651.    navmenu
  3652.    navmenu-depth-3
  3653.    navmenu-submenu
  3654.    
  3655.  "
  3656.  data-navmenu
  3657.  data-accordion-content
  3658.  data-navmenu-submenu
  3659.  aria-label="Main Menu 02"
  3660. >
  3661.  
  3662.    
  3663.  
  3664.    
  3665.    
  3666.  
  3667.    
  3668.    
  3669.  
  3670.    
  3671.  
  3672.    
  3673.      <li
  3674.        class="navmenu-item navmenu-id-accessories"
  3675.      >
  3676.        <a
  3677.        class="
  3678.          navmenu-link
  3679.          navmenu-link-depth-3
  3680.          
  3681.        "
  3682.        href="/collections/accessories"
  3683.        >
  3684.          
  3685.          Accessories
  3686. </a>
  3687.      </li>
  3688.    
  3689.  
  3690.    
  3691.  
  3692.    
  3693.    
  3694.  
  3695.    
  3696.    
  3697.  
  3698.    
  3699.  
  3700.    
  3701.      <li
  3702.        class="navmenu-item navmenu-id-phone-parts"
  3703.      >
  3704.        <a
  3705.        class="
  3706.          navmenu-link
  3707.          navmenu-link-depth-3
  3708.          
  3709.        "
  3710.        href="/collections/phone-parts"
  3711.        >
  3712.          
  3713.          Phone Parts
  3714. </a>
  3715.      </li>
  3716.    
  3717.  
  3718.    
  3719.  
  3720.    
  3721.    
  3722.  
  3723.    
  3724.    
  3725.  
  3726.    
  3727.  
  3728.    
  3729.      <li
  3730.        class="navmenu-item navmenu-id-printer-parts"
  3731.      >
  3732.        <a
  3733.        class="
  3734.          navmenu-link
  3735.          navmenu-link-depth-3
  3736.          
  3737.        "
  3738.        href="/collections/printer-parts"
  3739.        >
  3740.          
  3741.          Printer Parts
  3742. </a>
  3743.      </li>
  3744.    
  3745.  
  3746.    
  3747.  
  3748.    
  3749.    
  3750.  
  3751.    
  3752.    
  3753.  
  3754.    
  3755.  
  3756.    
  3757.      <li
  3758.        class="navmenu-item navmenu-id-server-parts"
  3759.      >
  3760.        <a
  3761.        class="
  3762.          navmenu-link
  3763.          navmenu-link-depth-3
  3764.          
  3765.        "
  3766.        href="/collections/server-parts"
  3767.        >
  3768.          
  3769.          Server Parts
  3770. </a>
  3771.      </li>
  3772.    
  3773.  
  3774.    
  3775.  
  3776.    
  3777.    
  3778.  
  3779.    
  3780.    
  3781.  
  3782.    
  3783.  
  3784.    
  3785.      <li
  3786.        class="navmenu-item navmenu-id-tablet-parts"
  3787.      >
  3788.        <a
  3789.        class="
  3790.          navmenu-link
  3791.          navmenu-link-depth-3
  3792.          
  3793.        "
  3794.        href="/collections/tablet-parts"
  3795.        >
  3796.          
  3797.          Tablet Parts
  3798. </a>
  3799.      </li>
  3800.    
  3801.  
  3802. </ul>
  3803.  
  3804.        
  3805.        
  3806.      </li>
  3807.    
  3808.  
  3809. </ul>
  3810.  
  3811.      
  3812.  
  3813.      
  3814.    </li>
  3815.  
  3816.    
  3817.    
  3818.  
  3819.    
  3820.    
  3821.    
  3822. <li
  3823.      class="navmenu-item            navmenu-id-about-us"
  3824.      
  3825.    >
  3826.      <a
  3827.        class="navmenu-link  "
  3828.        href="/pages/about-us"
  3829.        
  3830.      >
  3831.        About Us
  3832.      </a>
  3833.  
  3834.      
  3835.  
  3836.      
  3837.      
  3838.  
  3839.      
  3840.  
  3841.      
  3842.    </li>
  3843.  
  3844.    
  3845.    
  3846.  
  3847.    
  3848.    
  3849.    
  3850. <li
  3851.      class="navmenu-item            navmenu-id-repair-centers"
  3852.      
  3853.    >
  3854.      <a
  3855.        class="navmenu-link  "
  3856.        href="/pages/store-locator"
  3857.        
  3858.      >
  3859.        Repair Centers
  3860.      </a>
  3861.  
  3862.      
  3863.  
  3864.      
  3865.      
  3866.  
  3867.      
  3868.  
  3869.      
  3870.    </li>
  3871.  
  3872.    
  3873.    
  3874.  
  3875.    
  3876.    
  3877.    
  3878. <li
  3879.      class="navmenu-item            navmenu-id-parts-request"
  3880.      
  3881.    >
  3882.      <a
  3883.        class="navmenu-link  "
  3884.        href="/pages/part-request"
  3885.        
  3886.      >
  3887.        Parts Request
  3888.      </a>
  3889.  
  3890.      
  3891.  
  3892.      
  3893.      
  3894.  
  3895.      
  3896.  
  3897.      
  3898.    </li>
  3899.  
  3900.    
  3901.    
  3902.  
  3903.    
  3904.    
  3905.    
  3906. <li
  3907.      class="navmenu-item            navmenu-id-shipping"
  3908.      
  3909.    >
  3910.      <a
  3911.        class="navmenu-link  "
  3912.        href="/pages/shipping"
  3913.        
  3914.      >
  3915.        Shipping
  3916.      </a>
  3917.  
  3918.      
  3919.  
  3920.      
  3921.      
  3922.  
  3923.      
  3924.  
  3925.      
  3926.    </li>
  3927.  
  3928.    
  3929.    
  3930.  
  3931.    
  3932.    
  3933.    
  3934. <li
  3935.      class="navmenu-item            navmenu-id-francais"
  3936.      
  3937.    >
  3938.      <a
  3939.        class="navmenu-link  "
  3940.        href="/pages/francais"
  3941.        
  3942.      >
  3943.        Français
  3944.      </a>
  3945.  
  3946.      
  3947.  
  3948.      
  3949.      
  3950.  
  3951.      
  3952.  
  3953.      
  3954.    </li>
  3955.  
  3956. </ul>
  3957.  
  3958.  
  3959.      
  3960.    </div>
  3961.    <div class="utility-bar__mobile-disclosure" data-utility-mobile></div>
  3962.  </div>
  3963.  
  3964.  <div class="mobile-nav-overlay" data-mobile-nav-overlay></div>
  3965. </div>
  3966.  
  3967. </header>
  3968.  
  3969. </div>
  3970. <!-- END sections: header-group -->
  3971.  
  3972.    <div style="--background-color: #fff">
  3973.      
  3974.  
  3975.  
  3976.    </div>
  3977.  
  3978.    <div class="intersection-target" data-header-intersection-target></div>
  3979.    <div class="site-main-dimmer" data-site-main-dimmer></div>
  3980.    <main id="site-main" class="site-main" aria-label="Main content" tabindex="-1">
  3981.      <div id="shopify-section-template--15492296147031__dynamic_slideshow" class="shopify-section slideshow--section">
  3982.  
  3983.  
  3984.  
  3985. <script type="application/pxs-animation-mapping+json">
  3986.  {
  3987.    "blocks": [".slideshow-slide"],
  3988.    "elements": [
  3989.      ".slideshow-slide__heading",
  3990.      ".slideshow-slide__subheading",
  3991.      ".slideshow-slide__text",
  3992.      ".slideshow-slide__button"
  3993.    ]
  3994.  }
  3995. </script>
  3996.  
  3997. <style data-shopify>
  3998.  #shopify-section-template--15492296147031__dynamic_slideshow {
  3999.    --autoplay-interval: 5s;
  4000.  }
  4001.  
  4002.  
  4003.    @media screen and (min-width: 720px) {
  4004.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  4005.        height: 38.291380625476734vw;
  4006.      }
  4007.    }
  4008.  
  4009.  
  4010.  
  4011.    @media screen and (max-width: 719px) {
  4012.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  4013.        
  4014.          height: 38.291380625476734vw;
  4015.        
  4016.      }
  4017.    }
  4018.  
  4019. </style>
  4020.  
  4021.  
  4022.  
  4023.  
  4024. <script
  4025.  type="application/json"
  4026.  data-section-type="pxs-slideshow"
  4027.  data-section-id="template--15492296147031__dynamic_slideshow"
  4028.  data-section-data
  4029. >
  4030.  {
  4031.    "enable_autoplay": true,
  4032.    "autoplay_interval": 5,
  4033.    "mobile_navigation_adjust": true,
  4034.    "transition_fade": null,
  4035.    "slide_attraction": null,
  4036.    "slide_friction": null,
  4037.    "next_text": "Next slide",
  4038.    "previous_text": "Previous slide"
  4039.  }
  4040. </script>
  4041.  
  4042. <section
  4043.  class="
  4044.    slideshow
  4045.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  4046.  "
  4047.  aria-label="Slideshow"
  4048.  data-autoplay="true"
  4049.  data-autoplay-interval="5"
  4050.  data-banner="false"
  4051.  data-slideshow
  4052. ><div
  4053.    class="slideshow__wrapper "
  4054.    data-slideshow-wrapper
  4055.  >
  4056.  
  4057.  
  4058. <div
  4059.  class="slideshow-slide  "
  4060.  aria-label="Slide 1 of 5"
  4061.  data-text-color="#ffffff"
  4062.  tabindex="-1"
  4063.  data-slideshow-slide
  4064.  data-slide-index="0"
  4065.  
  4066. ><div
  4067.      class="
  4068.        slideshow-slide__image-wrapper
  4069.        
  4070.      "
  4071.      data-slide-image-wrapper
  4072.    >
  4073.  
  4074.  
  4075.    <noscript data-rimg-noscript>
  4076.      <img loading="lazy"
  4077.        
  4078.          src="//laptopparts.ca/cdn/shop/files/banner_1_1_1311x502.jpg?v=1698065077"
  4079.        
  4080.  
  4081.        alt=""
  4082.        data-rimg="noscript"
  4083.        srcset="//laptopparts.ca/cdn/shop/files/banner_1_1_1311x502.jpg?v=1698065077 1x"
  4084.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4085.        style="
  4086.        object-fit:cover;object-position:50.0% 50.0%;
  4087.      
  4088. "
  4089.        
  4090.      >
  4091.    </noscript>
  4092.  
  4093.  
  4094.  <img loading="lazy"
  4095.    
  4096.      src="//laptopparts.ca/cdn/shop/files/banner_1_1_1311x502.jpg?v=1698065077"
  4097.    
  4098.    alt=""
  4099.  
  4100.    
  4101.      data-rimg="lazy"
  4102.      data-rimg-scale="1"
  4103.      data-rimg-template="//laptopparts.ca/cdn/shop/files/banner_1_1_{size}.jpg?v=1698065077"
  4104.      data-rimg-max="1311x502"
  4105.      data-rimg-crop="false"
  4106.      
  4107.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1311'%20height='502'></svg>"
  4108.    
  4109.  
  4110.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4111.    style="
  4112.        object-fit:cover;object-position:50.0% 50.0%;
  4113.      
  4114. "
  4115.    
  4116.  >
  4117.  
  4118.  
  4119.  
  4120.  <div data-rimg-canvas></div>
  4121.  
  4122.  
  4123. <div
  4124.          class="
  4125.            slideshow-slide__overlay
  4126.            
  4127.          "
  4128.          style="
  4129.            
  4130.              background-color: #000000;
  4131.            
  4132.            opacity: 0.01;
  4133.          "
  4134.        ></div></div><div
  4135.    class="
  4136.      slideshow-slide__content
  4137.      slideshow-slide__content--1178f9e7-9dad-44d0-a34d-c79c188c7d40
  4138.      slideshow-slide__content--text-center
  4139.    "
  4140.    data-slide-content
  4141.  ></div>
  4142. </div>
  4143.  
  4144.  
  4145.  
  4146.  
  4147. <div
  4148.  class="slideshow-slide  "
  4149.  aria-label="Slide 2 of 5"
  4150.  data-text-color="#ffffff"
  4151.  tabindex="-1"
  4152.  data-slideshow-slide
  4153.  data-slide-index="1"
  4154.  
  4155. ><div
  4156.      class="
  4157.        slideshow-slide__image-wrapper
  4158.        
  4159.      "
  4160.      data-slide-image-wrapper
  4161.    >
  4162.  
  4163.  
  4164.    <noscript data-rimg-noscript>
  4165.      <img loading="lazy"
  4166.        
  4167.          src="//laptopparts.ca/cdn/shop/files/banner2_1_1311x502.jpg?v=1698065214"
  4168.        
  4169.  
  4170.        alt=""
  4171.        data-rimg="noscript"
  4172.        srcset="//laptopparts.ca/cdn/shop/files/banner2_1_1311x502.jpg?v=1698065214 1x"
  4173.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4174.        style="
  4175.        object-fit:cover;object-position:50.0% 50.0%;
  4176.      
  4177. "
  4178.        
  4179.      >
  4180.    </noscript>
  4181.  
  4182.  
  4183.  <img loading="lazy"
  4184.    
  4185.      src="//laptopparts.ca/cdn/shop/files/banner2_1_1311x502.jpg?v=1698065214"
  4186.    
  4187.    alt=""
  4188.  
  4189.    
  4190.      data-rimg="lazy"
  4191.      data-rimg-scale="1"
  4192.      data-rimg-template="//laptopparts.ca/cdn/shop/files/banner2_1_{size}.jpg?v=1698065214"
  4193.      data-rimg-max="1311x502"
  4194.      data-rimg-crop="false"
  4195.      
  4196.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1311'%20height='502'></svg>"
  4197.    
  4198.  
  4199.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4200.    style="
  4201.        object-fit:cover;object-position:50.0% 50.0%;
  4202.      
  4203. "
  4204.    
  4205.  >
  4206.  
  4207.  
  4208.  
  4209.  <div data-rimg-canvas></div>
  4210.  
  4211.  
  4212. <div
  4213.          class="
  4214.            slideshow-slide__overlay
  4215.            
  4216.          "
  4217.          style="
  4218.            
  4219.              background-color: #000000;
  4220.            
  4221.            opacity: 0.01;
  4222.          "
  4223.        ></div></div><div
  4224.    class="
  4225.      slideshow-slide__content
  4226.      slideshow-slide__content--ac4bf3fd-3c33-4016-99d1-6880934c327b
  4227.      slideshow-slide__content--text-center
  4228.    "
  4229.    data-slide-content
  4230.  ></div>
  4231. </div>
  4232.  
  4233.  
  4234.  
  4235.  
  4236. <div
  4237.  class="slideshow-slide  "
  4238.  aria-label="Slide 3 of 5"
  4239.  data-text-color="#ffffff"
  4240.  tabindex="-1"
  4241.  data-slideshow-slide
  4242.  data-slide-index="2"
  4243.  
  4244. ><div
  4245.      class="
  4246.        slideshow-slide__image-wrapper
  4247.        
  4248.      "
  4249.      data-slide-image-wrapper
  4250.    >
  4251.  
  4252.  
  4253.    <noscript data-rimg-noscript>
  4254.      <img loading="lazy"
  4255.        
  4256.          src="//laptopparts.ca/cdn/shop/files/banner_1_2_1800x1000.jpg?v=1698322121"
  4257.        
  4258.  
  4259.        alt=""
  4260.        data-rimg="noscript"
  4261.        srcset="//laptopparts.ca/cdn/shop/files/banner_1_2_1800x1000.jpg?v=1698322121 1x"
  4262.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4263.        style="
  4264.        object-fit:cover;object-position:50.0% 50.0%;
  4265.      
  4266. "
  4267.        
  4268.      >
  4269.    </noscript>
  4270.  
  4271.  
  4272.  <img loading="lazy"
  4273.    
  4274.      src="//laptopparts.ca/cdn/shop/files/banner_1_2_1800x1000.jpg?v=1698322121"
  4275.    
  4276.    alt=""
  4277.  
  4278.    
  4279.      data-rimg="lazy"
  4280.      data-rimg-scale="1"
  4281.      data-rimg-template="//laptopparts.ca/cdn/shop/files/banner_1_2_{size}.jpg?v=1698322121"
  4282.      data-rimg-max="1800x1000"
  4283.      data-rimg-crop="false"
  4284.      
  4285.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4286.    
  4287.  
  4288.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4289.    style="
  4290.        object-fit:cover;object-position:50.0% 50.0%;
  4291.      
  4292. "
  4293.    
  4294.  >
  4295.  
  4296.  
  4297.  
  4298.  <div data-rimg-canvas></div>
  4299.  
  4300.  
  4301. <div
  4302.          class="
  4303.            slideshow-slide__overlay
  4304.            
  4305.          "
  4306.          style="
  4307.            
  4308.              background-color: #000000;
  4309.            
  4310.            opacity: 0.01;
  4311.          "
  4312.        ></div></div><div
  4313.    class="
  4314.      slideshow-slide__content
  4315.      slideshow-slide__content--ad941428-8cfc-4ad3-b90b-31270322336f
  4316.      slideshow-slide__content--text-center
  4317.    "
  4318.    data-slide-content
  4319.  ></div>
  4320. </div>
  4321.  
  4322.  
  4323.  
  4324.  
  4325. <div
  4326.  class="slideshow-slide  "
  4327.  aria-label="Slide 4 of 5"
  4328.  data-text-color="#ffffff"
  4329.  tabindex="-1"
  4330.  data-slideshow-slide
  4331.  data-slide-index="3"
  4332.  
  4333. ><div
  4334.      class="
  4335.        slideshow-slide__image-wrapper
  4336.        
  4337.      "
  4338.      data-slide-image-wrapper
  4339.    >
  4340.  
  4341.  
  4342.    <noscript data-rimg-noscript>
  4343.      <img loading="lazy"
  4344.        
  4345.          src="//laptopparts.ca/cdn/shop/files/banner_3_1311x728.jpg?v=1698322301"
  4346.        
  4347.  
  4348.        alt=""
  4349.        data-rimg="noscript"
  4350.        srcset="//laptopparts.ca/cdn/shop/files/banner_3_1311x728.jpg?v=1698322301 1x"
  4351.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4352.        style="
  4353.        object-fit:cover;object-position:50.0% 50.0%;
  4354.      
  4355. "
  4356.        
  4357.      >
  4358.    </noscript>
  4359.  
  4360.  
  4361.  <img loading="lazy"
  4362.    
  4363.      src="//laptopparts.ca/cdn/shop/files/banner_3_1311x728.jpg?v=1698322301"
  4364.    
  4365.    alt=""
  4366.  
  4367.    
  4368.      data-rimg="lazy"
  4369.      data-rimg-scale="1"
  4370.      data-rimg-template="//laptopparts.ca/cdn/shop/files/banner_3_{size}.jpg?v=1698322301"
  4371.      data-rimg-max="1311x728"
  4372.      data-rimg-crop="false"
  4373.      
  4374.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1311'%20height='728'></svg>"
  4375.    
  4376.  
  4377.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4378.    style="
  4379.        object-fit:cover;object-position:50.0% 50.0%;
  4380.      
  4381. "
  4382.    
  4383.  >
  4384.  
  4385.  
  4386.  
  4387.  <div data-rimg-canvas></div>
  4388.  
  4389.  
  4390. <div
  4391.          class="
  4392.            slideshow-slide__overlay
  4393.            
  4394.          "
  4395.          style="
  4396.            
  4397.              background-color: #000000;
  4398.            
  4399.            opacity: 0.01;
  4400.          "
  4401.        ></div></div><div
  4402.    class="
  4403.      slideshow-slide__content
  4404.      slideshow-slide__content--dd3cc52a-bc2b-4750-a92f-b9606057a8e9
  4405.      slideshow-slide__content--text-center
  4406.    "
  4407.    data-slide-content
  4408.  ></div>
  4409. </div>
  4410.  
  4411.  
  4412.  
  4413.  
  4414. <div
  4415.  class="slideshow-slide  "
  4416.  aria-label="Slide 5 of 5"
  4417.  data-text-color="#ffffff"
  4418.  tabindex="-1"
  4419.  data-slideshow-slide
  4420.  data-slide-index="4"
  4421.  
  4422. ><div
  4423.      class="
  4424.        slideshow-slide__image-wrapper
  4425.        
  4426.      "
  4427.      data-slide-image-wrapper
  4428.    >
  4429.  
  4430.  
  4431.    <noscript data-rimg-noscript>
  4432.      <img loading="lazy"
  4433.        
  4434.          src="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_1800x1000.jpg?v=1732359924"
  4435.        
  4436.  
  4437.        alt=""
  4438.        data-rimg="noscript"
  4439.        srcset="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_1800x1000.jpg?v=1732359924 1x"
  4440.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4441.        style="
  4442.        object-fit:cover;object-position:50.0% 50.0%;
  4443.      
  4444. "
  4445.        
  4446.      >
  4447.    </noscript>
  4448.  
  4449.  
  4450.  <img loading="lazy"
  4451.    
  4452.      src="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_1800x1000.jpg?v=1732359924"
  4453.    
  4454.    alt=""
  4455.  
  4456.    
  4457.      data-rimg="lazy"
  4458.      data-rimg-scale="1"
  4459.      data-rimg-template="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_{size}.jpg?v=1732359924"
  4460.      data-rimg-max="1800x1000"
  4461.      data-rimg-crop="false"
  4462.      
  4463.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4464.    
  4465.  
  4466.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4467.    style="
  4468.        object-fit:cover;object-position:50.0% 50.0%;
  4469.      
  4470. "
  4471.    
  4472.  >
  4473.  
  4474.  
  4475.  
  4476.  <div data-rimg-canvas></div>
  4477.  
  4478.  
  4479. <div
  4480.          class="
  4481.            slideshow-slide__overlay
  4482.            
  4483.          "
  4484.          style="
  4485.            
  4486.              background-color: #000000;
  4487.            
  4488.            opacity: 0.01;
  4489.          "
  4490.        ></div></div><div
  4491.    class="
  4492.      slideshow-slide__content
  4493.      slideshow-slide__content--f26f4364-dc20-416d-bc23-018a813c8b54
  4494.      slideshow-slide__content--text-center
  4495.    "
  4496.    data-slide-content
  4497.  ></div>
  4498. </div>
  4499.  
  4500. </div><ol
  4501.      class="slideshow-pagination"
  4502.      data-slideshow-pagination
  4503.    ><li class="slideshow-pagination__dot">
  4504.          <button
  4505.            class="slideshow-pagination__button"
  4506.            data-selected="true"
  4507.            data-slide-button="0"
  4508.          >
  4509.            
  4510.              
  4511.    <div class="circle-timer">
  4512.      <svg class="circle-timer__svg">
  4513.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4514.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4515.      </svg>
  4516.    </div>
  4517.  
  4518.            
  4519.            <span class="visually-hidden">Slide 1</span>
  4520.          </button>
  4521.        </li><li class="slideshow-pagination__dot">
  4522.          <button
  4523.            class="slideshow-pagination__button"
  4524.            data-selected="false"
  4525.            data-slide-button="1"
  4526.          >
  4527.            
  4528.              
  4529.    <div class="circle-timer">
  4530.      <svg class="circle-timer__svg">
  4531.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4532.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4533.      </svg>
  4534.    </div>
  4535.  
  4536.            
  4537.            <span class="visually-hidden">Slide 2</span>
  4538.          </button>
  4539.        </li><li class="slideshow-pagination__dot">
  4540.          <button
  4541.            class="slideshow-pagination__button"
  4542.            data-selected="false"
  4543.            data-slide-button="2"
  4544.          >
  4545.            
  4546.              
  4547.    <div class="circle-timer">
  4548.      <svg class="circle-timer__svg">
  4549.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4550.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4551.      </svg>
  4552.    </div>
  4553.  
  4554.            
  4555.            <span class="visually-hidden">Slide 3</span>
  4556.          </button>
  4557.        </li><li class="slideshow-pagination__dot">
  4558.          <button
  4559.            class="slideshow-pagination__button"
  4560.            data-selected="false"
  4561.            data-slide-button="3"
  4562.          >
  4563.            
  4564.              
  4565.    <div class="circle-timer">
  4566.      <svg class="circle-timer__svg">
  4567.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4568.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4569.      </svg>
  4570.    </div>
  4571.  
  4572.            
  4573.            <span class="visually-hidden">Slide 4</span>
  4574.          </button>
  4575.        </li><li class="slideshow-pagination__dot">
  4576.          <button
  4577.            class="slideshow-pagination__button"
  4578.            data-selected="false"
  4579.            data-slide-button="4"
  4580.          >
  4581.            
  4582.              
  4583.    <div class="circle-timer">
  4584.      <svg class="circle-timer__svg">
  4585.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4586.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4587.      </svg>
  4588.    </div>
  4589.  
  4590.            
  4591.            <span class="visually-hidden">Slide 5</span>
  4592.          </button>
  4593.        </li></ol><div
  4594.    class="slideshow__current-slide visually-hidden"
  4595.    aria-live="polite"
  4596.    aria-atomic="true"
  4597.    data-slide-counter
  4598.    data-counter-template="Slide {{ count }} of {{ total }}"
  4599.  >
  4600.  </div>
  4601. </section>
  4602.  
  4603.  
  4604.  
  4605. </div><div id="shopify-section-template--15492296147031__dynamic_featured_collection" class="shopify-section featured-collection--section"><script
  4606.  type="application/json"
  4607.  data-section-id="template--15492296147031__dynamic_featured_collection"
  4608.  data-section-type="dynamic-featured-collection"
  4609. ></script>
  4610.  
  4611. <script type="application/pxs-animation-mapping+json">
  4612.  {
  4613.    "blocks": [
  4614.      ".featured-collection__title-card"
  4615.    ],
  4616.    "elements": [
  4617.      ".featured-collection__title-card-pre-heading",
  4618.      ".featured-collection__title-card-heading",
  4619.      ".featured-collection__title-card-button"
  4620.    ]
  4621.  }
  4622. </script>
  4623.  
  4624.  
  4625.  
  4626.  
  4627.  
  4628.  
  4629.  
  4630.  
  4631.  
  4632.  
  4633.  
  4634.  
  4635.  
  4636.  
  4637.  
  4638. <style data-shopify>
  4639.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card {
  4640.    color: ;
  4641.  }
  4642.  
  4643.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card-outer::before {
  4644.    background-color: ;
  4645.    opacity: 0.0;
  4646.  }
  4647.  
  4648.  @media screen and (min-width: 1080px) {
  4649.    #shopify-section-template--15492296147031__dynamic_featured_collection [data-layout="grid"] .featured-collection__title-card {
  4650.      
  4651.    }
  4652.  }
  4653. </style>
  4654.  
  4655.  
  4656.  
  4657.  
  4658.  
  4659.  
  4660.  
  4661.  
  4662.  
  4663.  
  4664.  
  4665.  
  4666.  
  4667.  
  4668.  
  4669. <section class="featured-collection__container" data-featured-collection>
  4670.  
  4671.    <h2 class="home-section--title">
  4672.      Shop The Best Selling
  4673.    </h2>
  4674.  
  4675.  
  4676.  <ul
  4677.    class="home-section--content featured-collection__content"
  4678.    data-content
  4679.    data-layout="slideshow"
  4680.  >
  4681.    
  4682.  
  4683.    
  4684.      
  4685.  
  4686.  
  4687.  
  4688.  
  4689.  
  4690.  
  4691.  
  4692.  
  4693.  
  4694.  
  4695.  
  4696.  
  4697.  
  4698.  
  4699.  
  4700.  
  4701.  
  4702.  
  4703.  
  4704.  
  4705.  
  4706.  
  4707.  
  4708.  
  4709.  
  4710.  
  4711.  
  4712.  
  4713.  
  4714.  
  4715.  
  4716.  
  4717.    
  4718.  
  4719.  
  4720.  
  4721. <li
  4722.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  4723.  data-product-item
  4724.  data-product-quickshop-url="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4725.  
  4726. >
  4727.  <div class="productitem" data-product-item-content>
  4728.    
  4729.    
  4730.    
  4731.    
  4732.  
  4733.    
  4734.  
  4735.    
  4736.  
  4737.    <div class="productitem__container">
  4738.      
  4739.  
  4740.      <div class="productitem__image-container">
  4741.        <a target="_blank"
  4742.          class="productitem--image-link"
  4743.          href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4744.          aria-label="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4745.          tabindex="-1"
  4746.          data-product-page-link
  4747.        >
  4748.          <figure
  4749.            class="productitem--image"
  4750.            data-product-item-image
  4751.            
  4752.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  4753.            
  4754.          >
  4755.            
  4756.              
  4757.              
  4758.  
  4759.  
  4760.    <noscript data-rimg-noscript>
  4761.      <img loading="lazy"
  4762.        
  4763.          src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4764.        
  4765.  
  4766.        alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4767.        data-rimg="noscript"
  4768.        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"
  4769.        class="productitem--image-primary"
  4770.        
  4771.        
  4772.      >
  4773.    </noscript>
  4774.  
  4775.  
  4776.  <img loading="lazy"
  4777.    
  4778.      src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4779.    
  4780.    alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4781.  
  4782.    
  4783.      data-rimg="lazy"
  4784.      data-rimg-scale="1"
  4785.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_{size}.jpg?v=1729018033"
  4786.      data-rimg-max="1000x1000"
  4787.      data-rimg-crop="false"
  4788.      
  4789.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  4790.    
  4791.  
  4792.    class="productitem--image-primary"
  4793.    
  4794.    
  4795.  >
  4796.  
  4797.  
  4798.  
  4799.  <div data-rimg-canvas></div>
  4800.  
  4801.  
  4802.            
  4803.  
  4804.            
  4805.  
  4806.  
  4807.  
  4808.  
  4809.  
  4810.  
  4811.  
  4812.  
  4813.  
  4814.  
  4815.  
  4816.  
  4817.  
  4818.  
  4819.  
  4820.  
  4821.  
  4822.  
  4823.  
  4824.  
  4825.  
  4826.  
  4827.  
  4828.  
  4829.  
  4830.  
  4831.  
  4832.          </figure>
  4833.        </a>
  4834.      </div><div class="productitem--info">
  4835.        
  4836.          
  4837.  
  4838.        
  4839.  
  4840.        
  4841.          
  4842.  
  4843.  
  4844.  
  4845.  
  4846.  
  4847.  
  4848.  
  4849.  
  4850.  
  4851.  
  4852.  
  4853.  
  4854.  
  4855.  
  4856.  
  4857.  
  4858.  
  4859.  
  4860.  
  4861.  
  4862.  
  4863.  
  4864.  
  4865.  
  4866.  
  4867.  
  4868.  
  4869.  
  4870.  
  4871.  
  4872. <div class="price productitem__price ">
  4873.  
  4874.    <div
  4875.      class="price__compare-at visible"
  4876.      data-price-compare-container
  4877.    >
  4878.  
  4879.      
  4880.        <span class="money price__original" data-price-original></span>
  4881.      
  4882.    </div>
  4883.  
  4884.  
  4885.    
  4886.      
  4887.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4888.        
  4889.          <span class="visually-hidden">Original price</span>
  4890.          <span class="money price__compare-at--min" data-price-compare-min>
  4891.            $137.99
  4892.          </span>
  4893.          -
  4894.          <span class="visually-hidden">Original price</span>
  4895.          <span class="money price__compare-at--max" data-price-compare-max>
  4896.            $137.99
  4897.          </span>
  4898.        
  4899.      </div>
  4900.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4901.        <span class="visually-hidden">Original price</span>
  4902.        <span class="money price__compare-at--single" data-price-compare>
  4903.          
  4904.        </span>
  4905.      </div>
  4906.    
  4907.  
  4908.  
  4909.  <div class="price__current price__current--emphasize " data-price-container>
  4910.  
  4911.    
  4912.  
  4913.    
  4914.      
  4915.      
  4916.      <span class="money" data-price>
  4917.        $137.99
  4918.      </span>
  4919.    
  4920.    
  4921.  </div>
  4922.  
  4923.  
  4924.    
  4925.    <div class="price__current--hidden" data-current-price-range-hidden>
  4926.      
  4927.        <span class="money price__current--min" data-price-min>$137.99</span>
  4928.        -
  4929.        <span class="money price__current--max" data-price-max>$137.99</span>
  4930.      
  4931.    </div>
  4932.    <div class="price__current--hidden" data-current-price-hidden>
  4933.      <span class="visually-hidden">Current price</span>
  4934.      <span class="money" data-price>
  4935.        $137.99
  4936.      </span>
  4937.    </div>
  4938.  
  4939.  
  4940.  
  4941.    
  4942.    
  4943.    
  4944.    
  4945.  
  4946.    <div
  4947.      class="
  4948.        productitem__unit-price
  4949.        hidden
  4950.      "
  4951.      data-unit-price
  4952.    >
  4953.      <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>
  4954.    </div>
  4955.  
  4956.  
  4957.  
  4958. </div>
  4959.  
  4960.  
  4961.        
  4962.  
  4963.        <h2 class="productitem--title">
  4964.          <a href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen" data-product-page-link>
  4965.            14 Lcd Screen for Dell Latitude 7480 7490 Laptops - FHD Only B140HAN03.3 KW8T4
  4966.          </a>
  4967.        </h2>
  4968.  
  4969.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  4970.        <div class="star_container 3959626498135"></div>
  4971.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  4972.  
  4973.        
  4974.          
  4975.            <span class="productitem--vendor">
  4976.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  4977.            </span>
  4978.          
  4979.        
  4980.  
  4981.        
  4982.  
  4983.        
  4984.          
  4985.            <div class="productitem__stock-level">
  4986.              <!--
  4987.  
  4988.  
  4989.  
  4990.  
  4991.  
  4992.  
  4993.  
  4994. <div class="product-stock-level-wrapper" >
  4995.  
  4996.    <span class="
  4997.  product-stock-level
  4998.  product-stock-level--continue-selling
  4999.  
  5000. ">
  5001.      
  5002.  
  5003.      <span class="product-stock-level__text">
  5004.        
  5005.        <div class="product-stock-level__badge-text">
  5006.          
  5007.  
  5008.    In stock
  5009.  
  5010.  
  5011.        </div>
  5012.      </span>
  5013.    </span>
  5014.  
  5015. </div>
  5016. -->
  5017.              
  5018.  
  5019.  
  5020.    
  5021.      <b style="color:green">In stock</b>
  5022.    
  5023.  
  5024.  
  5025.  
  5026.  
  5027.  
  5028.  
  5029.  
  5030.            </div>
  5031.          
  5032.  
  5033.          
  5034.            
  5035.          
  5036.        
  5037.  
  5038.        
  5039.          <div class="productitem--description">
  5040.            <p>
  5041. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  5042.  
  5043. Compatible Part #s: B140HAN03.3, KW8T4
  5044.  
  5045. Compatible Models:
  5046. Dell Latitude 74...</p>
  5047.  
  5048.            
  5049.              <a
  5050.                href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  5051.                class="productitem--link"
  5052.                data-product-page-link
  5053.              >
  5054.                View full details
  5055.              </a>
  5056.            
  5057.          </div>
  5058.        
  5059.      </div>
  5060.  
  5061.      
  5062.        
  5063.          
  5064.          
  5065.          
  5066.  
  5067.          
  5068.          
  5069.  
  5070.          
  5071.  
  5072.          
  5073.  
  5074.          <div class="productitem--actions" data-product-actions>
  5075.            <div class="productitem--listview-price">
  5076.              
  5077.  
  5078.  
  5079.  
  5080.  
  5081.  
  5082.  
  5083.  
  5084.  
  5085.  
  5086.  
  5087.  
  5088.  
  5089.  
  5090.  
  5091.  
  5092.  
  5093.  
  5094.  
  5095.  
  5096.  
  5097.  
  5098.  
  5099.  
  5100.  
  5101.  
  5102.  
  5103.  
  5104.  
  5105.  
  5106.  
  5107. <div class="price productitem__price ">
  5108.  
  5109.    <div
  5110.      class="price__compare-at visible"
  5111.      data-price-compare-container
  5112.    >
  5113.  
  5114.      
  5115.        <span class="money price__original" data-price-original></span>
  5116.      
  5117.    </div>
  5118.  
  5119.  
  5120.    
  5121.      
  5122.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5123.        
  5124.          <span class="visually-hidden">Original price</span>
  5125.          <span class="money price__compare-at--min" data-price-compare-min>
  5126.            $137.99
  5127.          </span>
  5128.          -
  5129.          <span class="visually-hidden">Original price</span>
  5130.          <span class="money price__compare-at--max" data-price-compare-max>
  5131.            $137.99
  5132.          </span>
  5133.        
  5134.      </div>
  5135.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5136.        <span class="visually-hidden">Original price</span>
  5137.        <span class="money price__compare-at--single" data-price-compare>
  5138.          
  5139.        </span>
  5140.      </div>
  5141.    
  5142.  
  5143.  
  5144.  <div class="price__current price__current--emphasize " data-price-container>
  5145.  
  5146.    
  5147.  
  5148.    
  5149.      
  5150.      
  5151.      <span class="money" data-price>
  5152.        $137.99
  5153.      </span>
  5154.    
  5155.    
  5156.  </div>
  5157.  
  5158.  
  5159.    
  5160.    <div class="price__current--hidden" data-current-price-range-hidden>
  5161.      
  5162.        <span class="money price__current--min" data-price-min>$137.99</span>
  5163.        -
  5164.        <span class="money price__current--max" data-price-max>$137.99</span>
  5165.      
  5166.    </div>
  5167.    <div class="price__current--hidden" data-current-price-hidden>
  5168.      <span class="visually-hidden">Current price</span>
  5169.      <span class="money" data-price>
  5170.        $137.99
  5171.      </span>
  5172.    </div>
  5173.  
  5174.  
  5175.  
  5176.    
  5177.    
  5178.    
  5179.    
  5180.  
  5181.    <div
  5182.      class="
  5183.        productitem__unit-price
  5184.        hidden
  5185.      "
  5186.      data-unit-price
  5187.    >
  5188.      <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>
  5189.    </div>
  5190.  
  5191.  
  5192.  
  5193. </div>
  5194.  
  5195.  
  5196.            </div>
  5197.  
  5198.            <div class="productitem--listview-badge">
  5199.              
  5200.  
  5201.  
  5202.  
  5203.  
  5204.  
  5205.  
  5206.  
  5207.  
  5208.  
  5209.  
  5210.  
  5211.  
  5212.  
  5213.  
  5214.  
  5215.  
  5216.  
  5217.  
  5218.  
  5219.  
  5220.  
  5221.  
  5222.  
  5223.  
  5224.  
  5225.  
  5226.  
  5227.            </div>
  5228.  
  5229.            
  5230.              <div
  5231.                class="
  5232.                  productitem--action
  5233.                  quickshop-button
  5234.                  
  5235.                "
  5236.              >
  5237.                <button
  5238.                  class="productitem--action-trigger button-secondary"
  5239.                  data-quickshop-full
  5240.                  
  5241.                  
  5242.                  type="button"
  5243.                >
  5244.                  Quick shop
  5245.                </button>
  5246.              </div>
  5247.            
  5248.  
  5249.            
  5250.              <div
  5251.                class="
  5252.                  productitem--action
  5253.                  atc--button
  5254.                  
  5255.                "
  5256.              >
  5257.                <button
  5258.                  class="productitem--action-trigger productitem--action-atc button-primary"
  5259.                  type="button"
  5260.                  aria-label="Add to cart"
  5261.                  
  5262.                    data-quick-buy
  5263.                  
  5264.                  data-variant-id="29564289744983"
  5265.                  
  5266.                >
  5267.                  <span class="atc-button--text">
  5268.                    Add to cart
  5269.                  </span>
  5270.                  <span class="atc-button--icon"><svg
  5271.  aria-hidden="true"
  5272.  focusable="false"
  5273.  role="presentation"
  5274.  width="26"
  5275.  height="26"
  5276.  viewBox="0 0 26 26"
  5277.  xmlns="http://www.w3.org/2000/svg"
  5278. >
  5279.  <g fill-rule="nonzero" fill="currentColor">
  5280.    <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"/>
  5281.  </g>
  5282. </svg></span>
  5283.                </button>
  5284.              </div>
  5285.            
  5286.          </div>
  5287.        
  5288.      
  5289.    </div>
  5290.  </div>
  5291.  
  5292.  
  5293.    <script type="application/json" data-quick-buy-settings>
  5294.      {
  5295.        "cart_redirection": true,
  5296.        "money_format": "${{amount}}"
  5297.      }
  5298.    </script>
  5299.  
  5300. </li>
  5301.    
  5302.      
  5303.  
  5304.  
  5305.  
  5306.  
  5307.  
  5308.  
  5309.  
  5310.  
  5311.  
  5312.  
  5313.  
  5314.  
  5315.  
  5316.  
  5317.  
  5318.  
  5319.  
  5320.  
  5321.  
  5322.  
  5323.  
  5324.  
  5325.  
  5326.  
  5327.  
  5328.  
  5329.  
  5330.  
  5331.  
  5332.  
  5333.  
  5334.  
  5335.    
  5336.  
  5337.  
  5338.  
  5339. <li
  5340.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  5341.  data-product-item
  5342.  data-product-quickshop-url="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5343.  
  5344. >
  5345.  <div class="productitem" data-product-item-content>
  5346.    
  5347.    
  5348.    
  5349.    
  5350.  
  5351.    
  5352.  
  5353.    
  5354.  
  5355.    <div class="productitem__container">
  5356.      
  5357.  
  5358.      <div class="productitem__image-container">
  5359.        <a target="_blank"
  5360.          class="productitem--image-link"
  5361.          href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5362.          aria-label="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5363.          tabindex="-1"
  5364.          data-product-page-link
  5365.        >
  5366.          <figure
  5367.            class="productitem--image"
  5368.            data-product-item-image
  5369.            
  5370.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5371.            
  5372.          >
  5373.            
  5374.              
  5375.              
  5376.  
  5377.  
  5378.    <noscript data-rimg-noscript>
  5379.      <img loading="lazy"
  5380.        
  5381.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5382.        
  5383.  
  5384.        alt=""
  5385.        data-rimg="noscript"
  5386.        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"
  5387.        class="productitem--image-primary"
  5388.        
  5389.        
  5390.      >
  5391.    </noscript>
  5392.  
  5393.  
  5394.  <img loading="lazy"
  5395.    
  5396.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5397.    
  5398.    alt=""
  5399.  
  5400.    
  5401.      data-rimg="lazy"
  5402.      data-rimg-scale="1"
  5403.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_{size}.jpg?v=1648053872"
  5404.      data-rimg-max="600x600"
  5405.      data-rimg-crop="false"
  5406.      
  5407.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  5408.    
  5409.  
  5410.    class="productitem--image-primary"
  5411.    
  5412.    
  5413.  >
  5414.  
  5415.  
  5416.  
  5417.  <div data-rimg-canvas></div>
  5418.  
  5419.  
  5420.            
  5421.  
  5422.            
  5423.  
  5424.  
  5425.  
  5426.  
  5427.  
  5428.  
  5429.  
  5430.  
  5431.  
  5432.  
  5433.  
  5434.  
  5435.  
  5436.  
  5437.  
  5438.  
  5439.  
  5440.  
  5441.  
  5442.  
  5443.  
  5444.  
  5445.  
  5446.  
  5447.  
  5448.  
  5449.  
  5450.          </figure>
  5451.        </a>
  5452.      </div><div class="productitem--info">
  5453.        
  5454.          
  5455.  
  5456.        
  5457.  
  5458.        
  5459.          
  5460.  
  5461.  
  5462.  
  5463.  
  5464.  
  5465.  
  5466.  
  5467.  
  5468.  
  5469.  
  5470.  
  5471.  
  5472.  
  5473.  
  5474.  
  5475.  
  5476.  
  5477.  
  5478.  
  5479.  
  5480.  
  5481.  
  5482.  
  5483.  
  5484.  
  5485.  
  5486.  
  5487.  
  5488.  
  5489.  
  5490. <div class="price productitem__price ">
  5491.  
  5492.    <div
  5493.      class="price__compare-at visible"
  5494.      data-price-compare-container
  5495.    >
  5496.  
  5497.      
  5498.        <span class="money price__original" data-price-original></span>
  5499.      
  5500.    </div>
  5501.  
  5502.  
  5503.    
  5504.      
  5505.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5506.        
  5507.          <span class="visually-hidden">Original price</span>
  5508.          <span class="money price__compare-at--min" data-price-compare-min>
  5509.            $84.99
  5510.          </span>
  5511.          -
  5512.          <span class="visually-hidden">Original price</span>
  5513.          <span class="money price__compare-at--max" data-price-compare-max>
  5514.            $84.99
  5515.          </span>
  5516.        
  5517.      </div>
  5518.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5519.        <span class="visually-hidden">Original price</span>
  5520.        <span class="money price__compare-at--single" data-price-compare>
  5521.          
  5522.        </span>
  5523.      </div>
  5524.    
  5525.  
  5526.  
  5527.  <div class="price__current price__current--emphasize " data-price-container>
  5528.  
  5529.    
  5530.  
  5531.    
  5532.      
  5533.      
  5534.      <span class="money" data-price>
  5535.        $84.99
  5536.      </span>
  5537.    
  5538.    
  5539.  </div>
  5540.  
  5541.  
  5542.    
  5543.    <div class="price__current--hidden" data-current-price-range-hidden>
  5544.      
  5545.        <span class="money price__current--min" data-price-min>$84.99</span>
  5546.        -
  5547.        <span class="money price__current--max" data-price-max>$84.99</span>
  5548.      
  5549.    </div>
  5550.    <div class="price__current--hidden" data-current-price-hidden>
  5551.      <span class="visually-hidden">Current price</span>
  5552.      <span class="money" data-price>
  5553.        $84.99
  5554.      </span>
  5555.    </div>
  5556.  
  5557.  
  5558.  
  5559.    
  5560.    
  5561.    
  5562.    
  5563.  
  5564.    <div
  5565.      class="
  5566.        productitem__unit-price
  5567.        hidden
  5568.      "
  5569.      data-unit-price
  5570.    >
  5571.      <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>
  5572.    </div>
  5573.  
  5574.  
  5575.  
  5576. </div>
  5577.  
  5578.  
  5579.        
  5580.  
  5581.        <h2 class="productitem--title">
  5582.          <a href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  5583.            20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  5584.          </a>
  5585.        </h2>
  5586.  
  5587.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5588.        <div class="star_container 3483510112343"></div>
  5589.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5590.  
  5591.        
  5592.          
  5593.            <span class="productitem--vendor">
  5594.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  5595.            </span>
  5596.          
  5597.        
  5598.  
  5599.        
  5600.  
  5601.        
  5602.          
  5603.            <div class="productitem__stock-level">
  5604.              <!--
  5605.  
  5606.  
  5607.  
  5608.  
  5609.  
  5610.  
  5611.  
  5612. <div class="product-stock-level-wrapper" >
  5613.  
  5614.    <span class="
  5615.  product-stock-level
  5616.  product-stock-level--continue-selling
  5617.  
  5618. ">
  5619.      
  5620.  
  5621.      <span class="product-stock-level__text">
  5622.        
  5623.        <div class="product-stock-level__badge-text">
  5624.          
  5625.  
  5626.    In stock
  5627.  
  5628.  
  5629.        </div>
  5630.      </span>
  5631.    </span>
  5632.  
  5633. </div>
  5634. -->
  5635.              
  5636.  
  5637.  
  5638.    
  5639.      <b style="color:green">In stock</b>
  5640.    
  5641.  
  5642.  
  5643.  
  5644.  
  5645.  
  5646.  
  5647.  
  5648.            </div>
  5649.          
  5650.  
  5651.          
  5652.            
  5653.          
  5654.        
  5655.  
  5656.        
  5657.          <div class="productitem--description">
  5658.            <p>Plugs directly into AC outlet.
  5659.  
  5660. Input: 100-240V ~ 50-60Hz
  5661. Output: 12V – 1.5A 18W
  5662. Connector Tip: mini USB
  5663. Colour: Black
  5664.  
  5665. Compatible Part #s: KP.01...</p>
  5666.  
  5667.            
  5668.              <a
  5669.                href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5670.                class="productitem--link"
  5671.                data-product-page-link
  5672.              >
  5673.                View full details
  5674.              </a>
  5675.            
  5676.          </div>
  5677.        
  5678.      </div>
  5679.  
  5680.      
  5681.        
  5682.          
  5683.          
  5684.          
  5685.  
  5686.          
  5687.          
  5688.  
  5689.          
  5690.  
  5691.          
  5692.  
  5693.          <div class="productitem--actions" data-product-actions>
  5694.            <div class="productitem--listview-price">
  5695.              
  5696.  
  5697.  
  5698.  
  5699.  
  5700.  
  5701.  
  5702.  
  5703.  
  5704.  
  5705.  
  5706.  
  5707.  
  5708.  
  5709.  
  5710.  
  5711.  
  5712.  
  5713.  
  5714.  
  5715.  
  5716.  
  5717.  
  5718.  
  5719.  
  5720.  
  5721.  
  5722.  
  5723.  
  5724.  
  5725.  
  5726. <div class="price productitem__price ">
  5727.  
  5728.    <div
  5729.      class="price__compare-at visible"
  5730.      data-price-compare-container
  5731.    >
  5732.  
  5733.      
  5734.        <span class="money price__original" data-price-original></span>
  5735.      
  5736.    </div>
  5737.  
  5738.  
  5739.    
  5740.      
  5741.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5742.        
  5743.          <span class="visually-hidden">Original price</span>
  5744.          <span class="money price__compare-at--min" data-price-compare-min>
  5745.            $84.99
  5746.          </span>
  5747.          -
  5748.          <span class="visually-hidden">Original price</span>
  5749.          <span class="money price__compare-at--max" data-price-compare-max>
  5750.            $84.99
  5751.          </span>
  5752.        
  5753.      </div>
  5754.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5755.        <span class="visually-hidden">Original price</span>
  5756.        <span class="money price__compare-at--single" data-price-compare>
  5757.          
  5758.        </span>
  5759.      </div>
  5760.    
  5761.  
  5762.  
  5763.  <div class="price__current price__current--emphasize " data-price-container>
  5764.  
  5765.    
  5766.  
  5767.    
  5768.      
  5769.      
  5770.      <span class="money" data-price>
  5771.        $84.99
  5772.      </span>
  5773.    
  5774.    
  5775.  </div>
  5776.  
  5777.  
  5778.    
  5779.    <div class="price__current--hidden" data-current-price-range-hidden>
  5780.      
  5781.        <span class="money price__current--min" data-price-min>$84.99</span>
  5782.        -
  5783.        <span class="money price__current--max" data-price-max>$84.99</span>
  5784.      
  5785.    </div>
  5786.    <div class="price__current--hidden" data-current-price-hidden>
  5787.      <span class="visually-hidden">Current price</span>
  5788.      <span class="money" data-price>
  5789.        $84.99
  5790.      </span>
  5791.    </div>
  5792.  
  5793.  
  5794.  
  5795.    
  5796.    
  5797.    
  5798.    
  5799.  
  5800.    <div
  5801.      class="
  5802.        productitem__unit-price
  5803.        hidden
  5804.      "
  5805.      data-unit-price
  5806.    >
  5807.      <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>
  5808.    </div>
  5809.  
  5810.  
  5811.  
  5812. </div>
  5813.  
  5814.  
  5815.            </div>
  5816.  
  5817.            <div class="productitem--listview-badge">
  5818.              
  5819.  
  5820.  
  5821.  
  5822.  
  5823.  
  5824.  
  5825.  
  5826.  
  5827.  
  5828.  
  5829.  
  5830.  
  5831.  
  5832.  
  5833.  
  5834.  
  5835.  
  5836.  
  5837.  
  5838.  
  5839.  
  5840.  
  5841.  
  5842.  
  5843.  
  5844.  
  5845.  
  5846.            </div>
  5847.  
  5848.            
  5849.              <div
  5850.                class="
  5851.                  productitem--action
  5852.                  quickshop-button
  5853.                  
  5854.                "
  5855.              >
  5856.                <button
  5857.                  class="productitem--action-trigger button-secondary"
  5858.                  data-quickshop-full
  5859.                  
  5860.                  
  5861.                  type="button"
  5862.                >
  5863.                  Quick shop
  5864.                </button>
  5865.              </div>
  5866.            
  5867.  
  5868.            
  5869.              <div
  5870.                class="
  5871.                  productitem--action
  5872.                  atc--button
  5873.                  
  5874.                "
  5875.              >
  5876.                <button
  5877.                  class="productitem--action-trigger productitem--action-atc button-primary"
  5878.                  type="button"
  5879.                  aria-label="Add to cart"
  5880.                  
  5881.                    data-quick-buy
  5882.                  
  5883.                  data-variant-id="39666212798551"
  5884.                  
  5885.                >
  5886.                  <span class="atc-button--text">
  5887.                    Add to cart
  5888.                  </span>
  5889.                  <span class="atc-button--icon"><svg
  5890.  aria-hidden="true"
  5891.  focusable="false"
  5892.  role="presentation"
  5893.  width="26"
  5894.  height="26"
  5895.  viewBox="0 0 26 26"
  5896.  xmlns="http://www.w3.org/2000/svg"
  5897. >
  5898.  <g fill-rule="nonzero" fill="currentColor">
  5899.    <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"/>
  5900.  </g>
  5901. </svg></span>
  5902.                </button>
  5903.              </div>
  5904.            
  5905.          </div>
  5906.        
  5907.      
  5908.    </div>
  5909.  </div>
  5910.  
  5911.  
  5912.    <script type="application/json" data-quick-buy-settings>
  5913.      {
  5914.        "cart_redirection": true,
  5915.        "money_format": "${{amount}}"
  5916.      }
  5917.    </script>
  5918.  
  5919. </li>
  5920.    
  5921.      
  5922.  
  5923.  
  5924.  
  5925.  
  5926.  
  5927.  
  5928.  
  5929.  
  5930.  
  5931.  
  5932.  
  5933.  
  5934.  
  5935.  
  5936.  
  5937.  
  5938.  
  5939.  
  5940.  
  5941.  
  5942.    
  5943.    
  5944.  
  5945.  
  5946.  
  5947.  
  5948.  
  5949.  
  5950.  
  5951.  
  5952.  
  5953.  
  5954.  
  5955.    
  5956.  
  5957.  
  5958.  
  5959. <li
  5960.  class="productgrid--item  imagestyle--natural    productitem--sale  productitem--emphasis      show-actions--mobile"
  5961.  data-product-item
  5962.  data-product-quickshop-url="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5963.  
  5964. >
  5965.  <div class="productitem" data-product-item-content>
  5966.    
  5967.    
  5968.    
  5969.    
  5970.  
  5971.    
  5972.  
  5973.    
  5974.  
  5975.    <div class="productitem__container">
  5976.      
  5977.  
  5978.      <div class="productitem__image-container">
  5979.        <a target="_blank"
  5980.          class="productitem--image-link"
  5981.          href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5982.          aria-label="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5983.          tabindex="-1"
  5984.          data-product-page-link
  5985.        >
  5986.          <figure
  5987.            class="productitem--image"
  5988.            data-product-item-image
  5989.            
  5990.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5991.            
  5992.          >
  5993.            
  5994.              
  5995.              
  5996.  
  5997.  
  5998.    <noscript data-rimg-noscript>
  5999.      <img loading="lazy"
  6000.        
  6001.          src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  6002.        
  6003.  
  6004.        alt="B156HTN03.6"
  6005.        data-rimg="noscript"
  6006.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945 1x"
  6007.        class="productitem--image-primary"
  6008.        
  6009.        
  6010.      >
  6011.    </noscript>
  6012.  
  6013.  
  6014.  <img loading="lazy"
  6015.    
  6016.      src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  6017.    
  6018.    alt="B156HTN03.6"
  6019.  
  6020.    
  6021.      data-rimg="lazy"
  6022.      data-rimg-scale="1"
  6023.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_{size}.jpg?v=1725475945"
  6024.      data-rimg-max="500x500"
  6025.      data-rimg-crop="false"
  6026.      
  6027.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  6028.    
  6029.  
  6030.    class="productitem--image-primary"
  6031.    
  6032.    
  6033.  >
  6034.  
  6035.  
  6036.  
  6037.  <div data-rimg-canvas></div>
  6038.  
  6039.  
  6040.            
  6041.  
  6042.            
  6043.  
  6044.  
  6045.  
  6046.  
  6047.  
  6048.  
  6049.  
  6050.  
  6051.  
  6052.  
  6053.  
  6054.  
  6055.  
  6056.  
  6057.  
  6058.  
  6059.  
  6060.  
  6061.  
  6062.  
  6063.  
  6064.  
  6065.  
  6066.  
  6067.  
  6068.  
  6069.  
  6070.  
  6071.  
  6072.  
  6073.  
  6074.  <span class="productitem__badge productitem__badge--sale"
  6075.    data-badge-sales
  6076.    
  6077.  >
  6078.    <span data-badge-sales-range>
  6079.      
  6080.        
  6081.          Save <span data-price-percent-saved>11</span>%
  6082.        
  6083.      
  6084.    </span>
  6085.    <span data-badge-sales-single style="display: none;">
  6086.      
  6087.        Save <span data-price-percent-saved></span>%
  6088.      
  6089.    </span>
  6090.  </span>
  6091.          </figure>
  6092.        </a>
  6093.      </div><div class="productitem--info">
  6094.        
  6095.          
  6096.  
  6097.        
  6098.  
  6099.        
  6100.          
  6101.  
  6102.  
  6103.  
  6104.  
  6105.  
  6106.  
  6107.  
  6108.  
  6109.  
  6110.  
  6111.  
  6112.  
  6113.  
  6114.  
  6115.  
  6116.  
  6117.  
  6118.  
  6119.  
  6120.  
  6121.  
  6122.  
  6123.  
  6124.  
  6125.  
  6126.  
  6127.  
  6128.  
  6129.  
  6130.  
  6131. <div class="price productitem__price ">
  6132.  
  6133.    <div
  6134.      class="price__compare-at visible"
  6135.      data-price-compare-container
  6136.    >
  6137.  
  6138.      
  6139.        <span class="visually-hidden">Original price</span>
  6140.        <span class="money price__compare-at--single" data-price-compare>
  6141.          $147.99
  6142.        </span>
  6143.      
  6144.    </div>
  6145.  
  6146.  
  6147.    
  6148.      
  6149.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6150.        
  6151.          <span class="visually-hidden">Original price</span>
  6152.          <span class="money price__compare-at--min" data-price-compare-min>
  6153.            $147.99
  6154.          </span>
  6155.          -
  6156.          <span class="visually-hidden">Original price</span>
  6157.          <span class="money price__compare-at--max" data-price-compare-max>
  6158.            $147.99
  6159.          </span>
  6160.        
  6161.      </div>
  6162.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6163.        <span class="visually-hidden">Original price</span>
  6164.        <span class="money price__compare-at--single" data-price-compare>
  6165.          $147.99
  6166.        </span>
  6167.      </div>
  6168.    
  6169.  
  6170.  
  6171.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  6172.  
  6173.    
  6174.  
  6175.    
  6176.      
  6177.      
  6178.        <span class="visually-hidden">Current price</span>
  6179.      
  6180.      <span class="money" data-price>
  6181.        $130.99
  6182.      </span>
  6183.    
  6184.    
  6185.  </div>
  6186.  
  6187.  
  6188.    
  6189.    <div class="price__current--hidden" data-current-price-range-hidden>
  6190.      
  6191.        <span class="money price__current--min" data-price-min>$130.99</span>
  6192.        -
  6193.        <span class="money price__current--max" data-price-max>$130.99</span>
  6194.      
  6195.    </div>
  6196.    <div class="price__current--hidden" data-current-price-hidden>
  6197.      <span class="visually-hidden">Current price</span>
  6198.      <span class="money" data-price>
  6199.        $130.99
  6200.      </span>
  6201.    </div>
  6202.  
  6203.  
  6204.  
  6205.    
  6206.    
  6207.    
  6208.    
  6209.  
  6210.    <div
  6211.      class="
  6212.        productitem__unit-price
  6213.        hidden
  6214.      "
  6215.      data-unit-price
  6216.    >
  6217.      <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>
  6218.    </div>
  6219.  
  6220.  
  6221.  
  6222. </div>
  6223.  
  6224.  
  6225.        
  6226.  
  6227.        <h2 class="productitem--title">
  6228.          <a href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops" data-product-page-link>
  6229.            15.6 FHD 1920x1080 Lcd Led Screen Lenovo Y50-70 Laptops B156HTN03.6
  6230.          </a>
  6231.        </h2>
  6232.  
  6233.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  6234.        <div class="star_container 3929811353687"></div>
  6235.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  6236.  
  6237.        
  6238.          
  6239.            <span class="productitem--vendor">
  6240.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  6241.            </span>
  6242.          
  6243.        
  6244.  
  6245.        
  6246.  
  6247.        
  6248.          
  6249.            <div class="productitem__stock-level">
  6250.              <!--
  6251.  
  6252.  
  6253.  
  6254.  
  6255.  
  6256.  
  6257.  
  6258. <div class="product-stock-level-wrapper" >
  6259.  
  6260.    <span class="
  6261.  product-stock-level
  6262.  product-stock-level--continue-selling
  6263.  
  6264. ">
  6265.      
  6266.  
  6267.      <span class="product-stock-level__text">
  6268.        
  6269.        <div class="product-stock-level__badge-text">
  6270.          
  6271.  
  6272.    In stock
  6273.  
  6274.  
  6275.        </div>
  6276.      </span>
  6277.    </span>
  6278.  
  6279. </div>
  6280. -->
  6281.              
  6282.  
  6283.  
  6284.    
  6285.      <b style="color:green">In stock</b>
  6286.    
  6287.  
  6288.  
  6289.  
  6290.  
  6291.  
  6292.  
  6293.  
  6294.            </div>
  6295.          
  6296.  
  6297.          
  6298.            
  6299.          
  6300.        
  6301.  
  6302.        
  6303.          <div class="productitem--description">
  6304.            <p>
  6305. 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>
  6306.  
  6307.            
  6308.              <a
  6309.                href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  6310.                class="productitem--link"
  6311.                data-product-page-link
  6312.              >
  6313.                View full details
  6314.              </a>
  6315.            
  6316.          </div>
  6317.        
  6318.      </div>
  6319.  
  6320.      
  6321.        
  6322.          
  6323.          
  6324.          
  6325.  
  6326.          
  6327.          
  6328.  
  6329.          
  6330.  
  6331.          
  6332.  
  6333.          <div class="productitem--actions" data-product-actions>
  6334.            <div class="productitem--listview-price">
  6335.              
  6336.  
  6337.  
  6338.  
  6339.  
  6340.  
  6341.  
  6342.  
  6343.  
  6344.  
  6345.  
  6346.  
  6347.  
  6348.  
  6349.  
  6350.  
  6351.  
  6352.  
  6353.  
  6354.  
  6355.  
  6356.  
  6357.  
  6358.  
  6359.  
  6360.  
  6361.  
  6362.  
  6363.  
  6364.  
  6365.  
  6366. <div class="price productitem__price ">
  6367.  
  6368.    <div
  6369.      class="price__compare-at visible"
  6370.      data-price-compare-container
  6371.    >
  6372.  
  6373.      
  6374.        <span class="visually-hidden">Original price</span>
  6375.        <span class="money price__compare-at--single" data-price-compare>
  6376.          $147.99
  6377.        </span>
  6378.      
  6379.    </div>
  6380.  
  6381.  
  6382.    
  6383.      
  6384.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6385.        
  6386.          <span class="visually-hidden">Original price</span>
  6387.          <span class="money price__compare-at--min" data-price-compare-min>
  6388.            $147.99
  6389.          </span>
  6390.          -
  6391.          <span class="visually-hidden">Original price</span>
  6392.          <span class="money price__compare-at--max" data-price-compare-max>
  6393.            $147.99
  6394.          </span>
  6395.        
  6396.      </div>
  6397.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6398.        <span class="visually-hidden">Original price</span>
  6399.        <span class="money price__compare-at--single" data-price-compare>
  6400.          $147.99
  6401.        </span>
  6402.      </div>
  6403.    
  6404.  
  6405.  
  6406.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  6407.  
  6408.    
  6409.  
  6410.    
  6411.      
  6412.      
  6413.        <span class="visually-hidden">Current price</span>
  6414.      
  6415.      <span class="money" data-price>
  6416.        $130.99
  6417.      </span>
  6418.    
  6419.    
  6420.  </div>
  6421.  
  6422.  
  6423.    
  6424.    <div class="price__current--hidden" data-current-price-range-hidden>
  6425.      
  6426.        <span class="money price__current--min" data-price-min>$130.99</span>
  6427.        -
  6428.        <span class="money price__current--max" data-price-max>$130.99</span>
  6429.      
  6430.    </div>
  6431.    <div class="price__current--hidden" data-current-price-hidden>
  6432.      <span class="visually-hidden">Current price</span>
  6433.      <span class="money" data-price>
  6434.        $130.99
  6435.      </span>
  6436.    </div>
  6437.  
  6438.  
  6439.  
  6440.    
  6441.    
  6442.    
  6443.    
  6444.  
  6445.    <div
  6446.      class="
  6447.        productitem__unit-price
  6448.        hidden
  6449.      "
  6450.      data-unit-price
  6451.    >
  6452.      <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>
  6453.    </div>
  6454.  
  6455.  
  6456.  
  6457. </div>
  6458.  
  6459.  
  6460.            </div>
  6461.  
  6462.            <div class="productitem--listview-badge">
  6463.              
  6464.  
  6465.  
  6466.  
  6467.  
  6468.  
  6469.  
  6470.  
  6471.  
  6472.  
  6473.  
  6474.  
  6475.  
  6476.  
  6477.  
  6478.  
  6479.  
  6480.  
  6481.  
  6482.  
  6483.  
  6484.  
  6485.  
  6486.  
  6487.  
  6488.  
  6489.  
  6490.  
  6491.  
  6492.  
  6493.  
  6494.  
  6495.  <span class="productitem__badge productitem__badge--sale"
  6496.    data-badge-sales
  6497.    
  6498.  >
  6499.    <span data-badge-sales-range>
  6500.      
  6501.        
  6502.          Save <span data-price-percent-saved>11</span>%
  6503.        
  6504.      
  6505.    </span>
  6506.    <span data-badge-sales-single style="display: none;">
  6507.      
  6508.        Save <span data-price-percent-saved></span>%
  6509.      
  6510.    </span>
  6511.  </span>
  6512.            </div>
  6513.  
  6514.            
  6515.              <div
  6516.                class="
  6517.                  productitem--action
  6518.                  quickshop-button
  6519.                  
  6520.                "
  6521.              >
  6522.                <button
  6523.                  class="productitem--action-trigger button-secondary"
  6524.                  data-quickshop-full
  6525.                  
  6526.                  
  6527.                  type="button"
  6528.                >
  6529.                  Quick shop
  6530.                </button>
  6531.              </div>
  6532.            
  6533.  
  6534.            
  6535.              <div
  6536.                class="
  6537.                  productitem--action
  6538.                  atc--button
  6539.                  
  6540.                "
  6541.              >
  6542.                <button
  6543.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6544.                  type="button"
  6545.                  aria-label="Add to cart"
  6546.                  
  6547.                    data-quick-buy
  6548.                  
  6549.                  data-variant-id="29564283551831"
  6550.                  
  6551.                >
  6552.                  <span class="atc-button--text">
  6553.                    Add to cart
  6554.                  </span>
  6555.                  <span class="atc-button--icon"><svg
  6556.  aria-hidden="true"
  6557.  focusable="false"
  6558.  role="presentation"
  6559.  width="26"
  6560.  height="26"
  6561.  viewBox="0 0 26 26"
  6562.  xmlns="http://www.w3.org/2000/svg"
  6563. >
  6564.  <g fill-rule="nonzero" fill="currentColor">
  6565.    <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"/>
  6566.  </g>
  6567. </svg></span>
  6568.                </button>
  6569.              </div>
  6570.            
  6571.          </div>
  6572.        
  6573.      
  6574.    </div>
  6575.  </div>
  6576.  
  6577.  
  6578.    <script type="application/json" data-quick-buy-settings>
  6579.      {
  6580.        "cart_redirection": true,
  6581.        "money_format": "${{amount}}"
  6582.      }
  6583.    </script>
  6584.  
  6585. </li>
  6586.    
  6587.      
  6588.  
  6589.  
  6590.  
  6591.  
  6592.  
  6593.  
  6594.  
  6595.  
  6596.  
  6597.  
  6598.  
  6599.  
  6600.  
  6601.  
  6602.  
  6603.  
  6604.  
  6605.  
  6606.  
  6607.  
  6608.  
  6609.  
  6610.  
  6611.  
  6612.  
  6613.  
  6614.  
  6615.  
  6616.  
  6617.  
  6618.  
  6619.  
  6620.    
  6621.  
  6622.  
  6623.  
  6624. <li
  6625.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6626.  data-product-item
  6627.  data-product-quickshop-url="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6628.  
  6629. >
  6630.  <div class="productitem" data-product-item-content>
  6631.    
  6632.    
  6633.    
  6634.    
  6635.  
  6636.    
  6637.  
  6638.    
  6639.  
  6640.    <div class="productitem__container">
  6641.      
  6642.  
  6643.      <div class="productitem__image-container">
  6644.        <a target="_blank"
  6645.          class="productitem--image-link"
  6646.          href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6647.          aria-label="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6648.          tabindex="-1"
  6649.          data-product-page-link
  6650.        >
  6651.          <figure
  6652.            class="productitem--image"
  6653.            data-product-item-image
  6654.            
  6655.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6656.            
  6657.          >
  6658.            
  6659.              
  6660.              
  6661.  
  6662.  
  6663.    <noscript data-rimg-noscript>
  6664.      <img loading="lazy"
  6665.        
  6666.          src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6667.        
  6668.  
  6669.        alt=""
  6670.        data-rimg="noscript"
  6671.        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"
  6672.        class="productitem--image-primary"
  6673.        
  6674.        
  6675.      >
  6676.    </noscript>
  6677.  
  6678.  
  6679.  <img loading="lazy"
  6680.    
  6681.      src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6682.    
  6683.    alt=""
  6684.  
  6685.    
  6686.      data-rimg="lazy"
  6687.      data-rimg-scale="1"
  6688.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_{size}.jpg?v=1648038527"
  6689.      data-rimg-max="1000x1000"
  6690.      data-rimg-crop="false"
  6691.      
  6692.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  6693.    
  6694.  
  6695.    class="productitem--image-primary"
  6696.    
  6697.    
  6698.  >
  6699.  
  6700.  
  6701.  
  6702.  <div data-rimg-canvas></div>
  6703.  
  6704.  
  6705.            
  6706.  
  6707.            
  6708.  
  6709.  
  6710.  
  6711.  
  6712.  
  6713.  
  6714.  
  6715.  
  6716.  
  6717.  
  6718.  
  6719.  
  6720.  
  6721.  
  6722.  
  6723.  
  6724.  
  6725.  
  6726.  
  6727.  
  6728.  
  6729.  
  6730.  
  6731.  
  6732.  
  6733.  
  6734.  
  6735.          </figure>
  6736.        </a>
  6737.      </div><div class="productitem--info">
  6738.        
  6739.          
  6740.  
  6741.        
  6742.  
  6743.        
  6744.          
  6745.  
  6746.  
  6747.  
  6748.  
  6749.  
  6750.  
  6751.  
  6752.  
  6753.  
  6754.  
  6755.  
  6756.  
  6757.  
  6758.  
  6759.  
  6760.  
  6761.  
  6762.  
  6763.  
  6764.  
  6765.  
  6766.  
  6767.  
  6768.  
  6769.  
  6770.  
  6771.  
  6772.  
  6773.  
  6774.  
  6775. <div class="price productitem__price ">
  6776.  
  6777.    <div
  6778.      class="price__compare-at visible"
  6779.      data-price-compare-container
  6780.    >
  6781.  
  6782.      
  6783.        <span class="money price__original" data-price-original></span>
  6784.      
  6785.    </div>
  6786.  
  6787.  
  6788.    
  6789.      
  6790.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6791.        
  6792.          <span class="visually-hidden">Original price</span>
  6793.          <span class="money price__compare-at--min" data-price-compare-min>
  6794.            $137.99
  6795.          </span>
  6796.          -
  6797.          <span class="visually-hidden">Original price</span>
  6798.          <span class="money price__compare-at--max" data-price-compare-max>
  6799.            $137.99
  6800.          </span>
  6801.        
  6802.      </div>
  6803.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6804.        <span class="visually-hidden">Original price</span>
  6805.        <span class="money price__compare-at--single" data-price-compare>
  6806.          
  6807.        </span>
  6808.      </div>
  6809.    
  6810.  
  6811.  
  6812.  <div class="price__current price__current--emphasize " data-price-container>
  6813.  
  6814.    
  6815.  
  6816.    
  6817.      
  6818.      
  6819.      <span class="money" data-price>
  6820.        $137.99
  6821.      </span>
  6822.    
  6823.    
  6824.  </div>
  6825.  
  6826.  
  6827.    
  6828.    <div class="price__current--hidden" data-current-price-range-hidden>
  6829.      
  6830.        <span class="money price__current--min" data-price-min>$137.99</span>
  6831.        -
  6832.        <span class="money price__current--max" data-price-max>$137.99</span>
  6833.      
  6834.    </div>
  6835.    <div class="price__current--hidden" data-current-price-hidden>
  6836.      <span class="visually-hidden">Current price</span>
  6837.      <span class="money" data-price>
  6838.        $137.99
  6839.      </span>
  6840.    </div>
  6841.  
  6842.  
  6843.  
  6844.    
  6845.    
  6846.    
  6847.    
  6848.  
  6849.    <div
  6850.      class="
  6851.        productitem__unit-price
  6852.        hidden
  6853.      "
  6854.      data-unit-price
  6855.    >
  6856.      <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>
  6857.    </div>
  6858.  
  6859.  
  6860.  
  6861. </div>
  6862.  
  6863.  
  6864.        
  6865.  
  6866.        <h2 class="productitem--title">
  6867.          <a href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw" data-product-page-link>
  6868.            Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW
  6869.          </a>
  6870.        </h2>
  6871.  
  6872.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  6873.        <div class="star_container 3929789694039"></div>
  6874.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  6875.  
  6876.        
  6877.          
  6878.            <span class="productitem--vendor">
  6879.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  6880.            </span>
  6881.          
  6882.        
  6883.  
  6884.        
  6885.  
  6886.        
  6887.          
  6888.            <div class="productitem__stock-level">
  6889.              <!--
  6890.  
  6891.  
  6892.  
  6893.  
  6894.  
  6895.  
  6896.  
  6897. <div class="product-stock-level-wrapper" >
  6898.  
  6899.    <span class="
  6900.  product-stock-level
  6901.  product-stock-level--continue-selling
  6902.  
  6903. ">
  6904.      
  6905.  
  6906.      <span class="product-stock-level__text">
  6907.        
  6908.        <div class="product-stock-level__badge-text">
  6909.          
  6910.  
  6911.    In stock
  6912.  
  6913.  
  6914.        </div>
  6915.      </span>
  6916.    </span>
  6917.  
  6918. </div>
  6919. -->
  6920.              
  6921.  
  6922.  
  6923.    
  6924.      <b style="color:green">In stock</b>
  6925.    
  6926.  
  6927.  
  6928.  
  6929.  
  6930.  
  6931.  
  6932.  
  6933.            </div>
  6934.          
  6935.  
  6936.          
  6937.            
  6938.          
  6939.        
  6940.  
  6941.        
  6942.          <div class="productitem--description">
  6943.            <p>
  6944. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  6945.  
  6946. Compatible Part #s: KGYYH, 48DGW, N140HCE-G52
  6947.  
  6948. Compatible Models:
  6949. Dell Lati...</p>
  6950.  
  6951.            
  6952.              <a
  6953.                href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6954.                class="productitem--link"
  6955.                data-product-page-link
  6956.              >
  6957.                View full details
  6958.              </a>
  6959.            
  6960.          </div>
  6961.        
  6962.      </div>
  6963.  
  6964.      
  6965.        
  6966.          
  6967.          
  6968.          
  6969.  
  6970.          
  6971.          
  6972.  
  6973.          
  6974.  
  6975.          
  6976.  
  6977.          <div class="productitem--actions" data-product-actions>
  6978.            <div class="productitem--listview-price">
  6979.              
  6980.  
  6981.  
  6982.  
  6983.  
  6984.  
  6985.  
  6986.  
  6987.  
  6988.  
  6989.  
  6990.  
  6991.  
  6992.  
  6993.  
  6994.  
  6995.  
  6996.  
  6997.  
  6998.  
  6999.  
  7000.  
  7001.  
  7002.  
  7003.  
  7004.  
  7005.  
  7006.  
  7007.  
  7008.  
  7009.  
  7010. <div class="price productitem__price ">
  7011.  
  7012.    <div
  7013.      class="price__compare-at visible"
  7014.      data-price-compare-container
  7015.    >
  7016.  
  7017.      
  7018.        <span class="money price__original" data-price-original></span>
  7019.      
  7020.    </div>
  7021.  
  7022.  
  7023.    
  7024.      
  7025.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7026.        
  7027.          <span class="visually-hidden">Original price</span>
  7028.          <span class="money price__compare-at--min" data-price-compare-min>
  7029.            $137.99
  7030.          </span>
  7031.          -
  7032.          <span class="visually-hidden">Original price</span>
  7033.          <span class="money price__compare-at--max" data-price-compare-max>
  7034.            $137.99
  7035.          </span>
  7036.        
  7037.      </div>
  7038.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7039.        <span class="visually-hidden">Original price</span>
  7040.        <span class="money price__compare-at--single" data-price-compare>
  7041.          
  7042.        </span>
  7043.      </div>
  7044.    
  7045.  
  7046.  
  7047.  <div class="price__current price__current--emphasize " data-price-container>
  7048.  
  7049.    
  7050.  
  7051.    
  7052.      
  7053.      
  7054.      <span class="money" data-price>
  7055.        $137.99
  7056.      </span>
  7057.    
  7058.    
  7059.  </div>
  7060.  
  7061.  
  7062.    
  7063.    <div class="price__current--hidden" data-current-price-range-hidden>
  7064.      
  7065.        <span class="money price__current--min" data-price-min>$137.99</span>
  7066.        -
  7067.        <span class="money price__current--max" data-price-max>$137.99</span>
  7068.      
  7069.    </div>
  7070.    <div class="price__current--hidden" data-current-price-hidden>
  7071.      <span class="visually-hidden">Current price</span>
  7072.      <span class="money" data-price>
  7073.        $137.99
  7074.      </span>
  7075.    </div>
  7076.  
  7077.  
  7078.  
  7079.    
  7080.    
  7081.    
  7082.    
  7083.  
  7084.    <div
  7085.      class="
  7086.        productitem__unit-price
  7087.        hidden
  7088.      "
  7089.      data-unit-price
  7090.    >
  7091.      <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>
  7092.    </div>
  7093.  
  7094.  
  7095.  
  7096. </div>
  7097.  
  7098.  
  7099.            </div>
  7100.  
  7101.            <div class="productitem--listview-badge">
  7102.              
  7103.  
  7104.  
  7105.  
  7106.  
  7107.  
  7108.  
  7109.  
  7110.  
  7111.  
  7112.  
  7113.  
  7114.  
  7115.  
  7116.  
  7117.  
  7118.  
  7119.  
  7120.  
  7121.  
  7122.  
  7123.  
  7124.  
  7125.  
  7126.  
  7127.  
  7128.  
  7129.  
  7130.            </div>
  7131.  
  7132.            
  7133.              <div
  7134.                class="
  7135.                  productitem--action
  7136.                  quickshop-button
  7137.                  
  7138.                "
  7139.              >
  7140.                <button
  7141.                  class="productitem--action-trigger button-secondary"
  7142.                  data-quickshop-full
  7143.                  
  7144.                  
  7145.                  type="button"
  7146.                >
  7147.                  Quick shop
  7148.                </button>
  7149.              </div>
  7150.            
  7151.  
  7152.            
  7153.              <div
  7154.                class="
  7155.                  productitem--action
  7156.                  atc--button
  7157.                  
  7158.                "
  7159.              >
  7160.                <button
  7161.                  class="productitem--action-trigger productitem--action-atc button-primary"
  7162.                  type="button"
  7163.                  aria-label="Add to cart"
  7164.                  
  7165.                    data-quick-buy
  7166.                  
  7167.                  data-variant-id="29462328246359"
  7168.                  
  7169.                >
  7170.                  <span class="atc-button--text">
  7171.                    Add to cart
  7172.                  </span>
  7173.                  <span class="atc-button--icon"><svg
  7174.  aria-hidden="true"
  7175.  focusable="false"
  7176.  role="presentation"
  7177.  width="26"
  7178.  height="26"
  7179.  viewBox="0 0 26 26"
  7180.  xmlns="http://www.w3.org/2000/svg"
  7181. >
  7182.  <g fill-rule="nonzero" fill="currentColor">
  7183.    <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"/>
  7184.  </g>
  7185. </svg></span>
  7186.                </button>
  7187.              </div>
  7188.            
  7189.          </div>
  7190.        
  7191.      
  7192.    </div>
  7193.  </div>
  7194.  
  7195.  
  7196.    <script type="application/json" data-quick-buy-settings>
  7197.      {
  7198.        "cart_redirection": true,
  7199.        "money_format": "${{amount}}"
  7200.      }
  7201.    </script>
  7202.  
  7203. </li>
  7204.    
  7205.      
  7206.  
  7207.  
  7208.  
  7209.  
  7210.  
  7211.  
  7212.  
  7213.  
  7214.  
  7215.  
  7216.  
  7217.  
  7218.  
  7219.  
  7220.  
  7221.  
  7222.  
  7223.  
  7224.  
  7225.  
  7226.  
  7227.  
  7228.  
  7229.  
  7230.  
  7231.  
  7232.  
  7233.  
  7234.  
  7235.  
  7236.  
  7237.  
  7238.    
  7239.  
  7240.  
  7241.  
  7242. <li
  7243.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  7244.  data-product-item
  7245.  data-product-quickshop-url="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  7246.  
  7247. >
  7248.  <div class="productitem" data-product-item-content>
  7249.    
  7250.    
  7251.    
  7252.    
  7253.  
  7254.    
  7255.  
  7256.    
  7257.  
  7258.    <div class="productitem__container">
  7259.      
  7260.  
  7261.      <div class="productitem__image-container">
  7262.        <a target="_blank"
  7263.          class="productitem--image-link"
  7264.          href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  7265.          aria-label="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  7266.          tabindex="-1"
  7267.          data-product-page-link
  7268.        >
  7269.          <figure
  7270.            class="productitem--image"
  7271.            data-product-item-image
  7272.            
  7273.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7274.            
  7275.          >
  7276.            
  7277.              
  7278.              
  7279.  
  7280.  
  7281.    <noscript data-rimg-noscript>
  7282.      <img loading="lazy"
  7283.        
  7284.          src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  7285.        
  7286.  
  7287.        alt=""
  7288.        data-rimg="noscript"
  7289.        srcset="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251 1x, //laptopparts.ca/cdn/shop/products/molex1_599x599.jpg?v=1697125251 1.17x"
  7290.        class="productitem--image-primary"
  7291.        
  7292.        
  7293.      >
  7294.    </noscript>
  7295.  
  7296.  
  7297.  <img loading="lazy"
  7298.    
  7299.      src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  7300.    
  7301.    alt=""
  7302.  
  7303.    
  7304.      data-rimg="lazy"
  7305.      data-rimg-scale="1"
  7306.      data-rimg-template="//laptopparts.ca/cdn/shop/products/molex1_{size}.jpg?v=1697125251"
  7307.      data-rimg-max="603x603"
  7308.      data-rimg-crop="false"
  7309.      
  7310.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7311.    
  7312.  
  7313.    class="productitem--image-primary"
  7314.    
  7315.    
  7316.  >
  7317.  
  7318.  
  7319.  
  7320.  <div data-rimg-canvas></div>
  7321.  
  7322.  
  7323.            
  7324.  
  7325.            
  7326.  
  7327.  
  7328.  
  7329.  
  7330.  
  7331.  
  7332.  
  7333.  
  7334.  
  7335.  
  7336.  
  7337.  
  7338.  
  7339.  
  7340.  
  7341.  
  7342.  
  7343.  
  7344.  
  7345.  
  7346.  
  7347.  
  7348.  
  7349.  
  7350.  
  7351.  
  7352.  
  7353.          </figure>
  7354.        </a>
  7355.      </div><div class="productitem--info">
  7356.        
  7357.          
  7358.  
  7359.        
  7360.  
  7361.        
  7362.          
  7363.  
  7364.  
  7365.  
  7366.  
  7367.  
  7368.  
  7369.  
  7370.  
  7371.  
  7372.  
  7373.  
  7374.  
  7375.  
  7376.  
  7377.  
  7378.  
  7379.  
  7380.  
  7381.  
  7382.  
  7383.  
  7384.  
  7385.  
  7386.  
  7387.  
  7388.  
  7389.  
  7390.  
  7391.  
  7392.  
  7393. <div class="price productitem__price ">
  7394.  
  7395.    <div
  7396.      class="price__compare-at visible"
  7397.      data-price-compare-container
  7398.    >
  7399.  
  7400.      
  7401.        <span class="money price__original" data-price-original></span>
  7402.      
  7403.    </div>
  7404.  
  7405.  
  7406.    
  7407.      
  7408.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7409.        
  7410.          <span class="visually-hidden">Original price</span>
  7411.          <span class="money price__compare-at--min" data-price-compare-min>
  7412.            $30.99
  7413.          </span>
  7414.          -
  7415.          <span class="visually-hidden">Original price</span>
  7416.          <span class="money price__compare-at--max" data-price-compare-max>
  7417.            $30.99
  7418.          </span>
  7419.        
  7420.      </div>
  7421.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7422.        <span class="visually-hidden">Original price</span>
  7423.        <span class="money price__compare-at--single" data-price-compare>
  7424.          
  7425.        </span>
  7426.      </div>
  7427.    
  7428.  
  7429.  
  7430.  <div class="price__current price__current--emphasize " data-price-container>
  7431.  
  7432.    
  7433.  
  7434.    
  7435.      
  7436.      
  7437.      <span class="money" data-price>
  7438.        $30.99
  7439.      </span>
  7440.    
  7441.    
  7442.  </div>
  7443.  
  7444.  
  7445.    
  7446.    <div class="price__current--hidden" data-current-price-range-hidden>
  7447.      
  7448.        <span class="money price__current--min" data-price-min>$30.99</span>
  7449.        -
  7450.        <span class="money price__current--max" data-price-max>$30.99</span>
  7451.      
  7452.    </div>
  7453.    <div class="price__current--hidden" data-current-price-hidden>
  7454.      <span class="visually-hidden">Current price</span>
  7455.      <span class="money" data-price>
  7456.        $30.99
  7457.      </span>
  7458.    </div>
  7459.  
  7460.  
  7461.  
  7462.    
  7463.    
  7464.    
  7465.    
  7466.  
  7467.    <div
  7468.      class="
  7469.        productitem__unit-price
  7470.        hidden
  7471.      "
  7472.      data-unit-price
  7473.    >
  7474.      <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>
  7475.    </div>
  7476.  
  7477.  
  7478.  
  7479. </div>
  7480.  
  7481.  
  7482.        
  7483.  
  7484.        <h2 class="productitem--title">
  7485.          <a href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable" data-product-page-link>
  7486.            4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable
  7487.          </a>
  7488.        </h2>
  7489.  
  7490.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7491.        <div class="star_container 1416490647575"></div>
  7492.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7493.  
  7494.        
  7495.          
  7496.            <span class="productitem--vendor">
  7497.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  7498.            </span>
  7499.          
  7500.        
  7501.  
  7502.        
  7503.  
  7504.        
  7505.          
  7506.            <div class="productitem__stock-level">
  7507.              <!--
  7508.  
  7509.  
  7510.  
  7511.  
  7512.  
  7513.  
  7514.  
  7515. <div class="product-stock-level-wrapper" >
  7516.  
  7517.    <span class="
  7518.  product-stock-level
  7519.  product-stock-level--continue-selling
  7520.  
  7521. ">
  7522.      
  7523.  
  7524.      <span class="product-stock-level__text">
  7525.        
  7526.        <div class="product-stock-level__badge-text">
  7527.          
  7528.  
  7529.    In stock
  7530.  
  7531.  
  7532.        </div>
  7533.      </span>
  7534.    </span>
  7535.  
  7536. </div>
  7537. -->
  7538.              
  7539.  
  7540.  
  7541.    
  7542.      <b style="color:green">In stock</b>
  7543.    
  7544.  
  7545.  
  7546.  
  7547.  
  7548.  
  7549.  
  7550.  
  7551.            </div>
  7552.          
  7553.  
  7554.          
  7555.            
  7556.          
  7557.        
  7558.  
  7559.        
  7560.          <div class="productitem--description">
  7561.            <p>4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable</p>
  7562.  
  7563.            
  7564.          </div>
  7565.        
  7566.      </div>
  7567.  
  7568.      
  7569.        
  7570.          
  7571.          
  7572.          
  7573.  
  7574.          
  7575.          
  7576.  
  7577.          
  7578.  
  7579.          
  7580.  
  7581.          <div class="productitem--actions" data-product-actions>
  7582.            <div class="productitem--listview-price">
  7583.              
  7584.  
  7585.  
  7586.  
  7587.  
  7588.  
  7589.  
  7590.  
  7591.  
  7592.  
  7593.  
  7594.  
  7595.  
  7596.  
  7597.  
  7598.  
  7599.  
  7600.  
  7601.  
  7602.  
  7603.  
  7604.  
  7605.  
  7606.  
  7607.  
  7608.  
  7609.  
  7610.  
  7611.  
  7612.  
  7613.  
  7614. <div class="price productitem__price ">
  7615.  
  7616.    <div
  7617.      class="price__compare-at visible"
  7618.      data-price-compare-container
  7619.    >
  7620.  
  7621.      
  7622.        <span class="money price__original" data-price-original></span>
  7623.      
  7624.    </div>
  7625.  
  7626.  
  7627.    
  7628.      
  7629.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7630.        
  7631.          <span class="visually-hidden">Original price</span>
  7632.          <span class="money price__compare-at--min" data-price-compare-min>
  7633.            $30.99
  7634.          </span>
  7635.          -
  7636.          <span class="visually-hidden">Original price</span>
  7637.          <span class="money price__compare-at--max" data-price-compare-max>
  7638.            $30.99
  7639.          </span>
  7640.        
  7641.      </div>
  7642.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7643.        <span class="visually-hidden">Original price</span>
  7644.        <span class="money price__compare-at--single" data-price-compare>
  7645.          
  7646.        </span>
  7647.      </div>
  7648.    
  7649.  
  7650.  
  7651.  <div class="price__current price__current--emphasize " data-price-container>
  7652.  
  7653.    
  7654.  
  7655.    
  7656.      
  7657.      
  7658.      <span class="money" data-price>
  7659.        $30.99
  7660.      </span>
  7661.    
  7662.    
  7663.  </div>
  7664.  
  7665.  
  7666.    
  7667.    <div class="price__current--hidden" data-current-price-range-hidden>
  7668.      
  7669.        <span class="money price__current--min" data-price-min>$30.99</span>
  7670.        -
  7671.        <span class="money price__current--max" data-price-max>$30.99</span>
  7672.      
  7673.    </div>
  7674.    <div class="price__current--hidden" data-current-price-hidden>
  7675.      <span class="visually-hidden">Current price</span>
  7676.      <span class="money" data-price>
  7677.        $30.99
  7678.      </span>
  7679.    </div>
  7680.  
  7681.  
  7682.  
  7683.    
  7684.    
  7685.    
  7686.    
  7687.  
  7688.    <div
  7689.      class="
  7690.        productitem__unit-price
  7691.        hidden
  7692.      "
  7693.      data-unit-price
  7694.    >
  7695.      <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>
  7696.    </div>
  7697.  
  7698.  
  7699.  
  7700. </div>
  7701.  
  7702.  
  7703.            </div>
  7704.  
  7705.            <div class="productitem--listview-badge">
  7706.              
  7707.  
  7708.  
  7709.  
  7710.  
  7711.  
  7712.  
  7713.  
  7714.  
  7715.  
  7716.  
  7717.  
  7718.  
  7719.  
  7720.  
  7721.  
  7722.  
  7723.  
  7724.  
  7725.  
  7726.  
  7727.  
  7728.  
  7729.  
  7730.  
  7731.  
  7732.  
  7733.  
  7734.            </div>
  7735.  
  7736.            
  7737.              <div
  7738.                class="
  7739.                  productitem--action
  7740.                  quickshop-button
  7741.                  
  7742.                "
  7743.              >
  7744.                <button
  7745.                  class="productitem--action-trigger button-secondary"
  7746.                  data-quickshop-full
  7747.                  
  7748.                  
  7749.                  type="button"
  7750.                >
  7751.                  Quick shop
  7752.                </button>
  7753.              </div>
  7754.            
  7755.  
  7756.            
  7757.              <div
  7758.                class="
  7759.                  productitem--action
  7760.                  atc--button
  7761.                  
  7762.                "
  7763.              >
  7764.                <button
  7765.                  class="productitem--action-trigger productitem--action-atc button-primary"
  7766.                  type="button"
  7767.                  aria-label="Add to cart"
  7768.                  
  7769.                    data-quick-buy
  7770.                  
  7771.                  data-variant-id="12583329333271"
  7772.                  
  7773.                >
  7774.                  <span class="atc-button--text">
  7775.                    Add to cart
  7776.                  </span>
  7777.                  <span class="atc-button--icon"><svg
  7778.  aria-hidden="true"
  7779.  focusable="false"
  7780.  role="presentation"
  7781.  width="26"
  7782.  height="26"
  7783.  viewBox="0 0 26 26"
  7784.  xmlns="http://www.w3.org/2000/svg"
  7785. >
  7786.  <g fill-rule="nonzero" fill="currentColor">
  7787.    <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"/>
  7788.  </g>
  7789. </svg></span>
  7790.                </button>
  7791.              </div>
  7792.            
  7793.          </div>
  7794.        
  7795.      
  7796.    </div>
  7797.  </div>
  7798.  
  7799.  
  7800.    <script type="application/json" data-quick-buy-settings>
  7801.      {
  7802.        "cart_redirection": true,
  7803.        "money_format": "${{amount}}"
  7804.      }
  7805.    </script>
  7806.  
  7807. </li>
  7808.    
  7809.      
  7810.  
  7811.  
  7812.  
  7813.  
  7814.  
  7815.  
  7816.  
  7817.  
  7818.  
  7819.  
  7820.  
  7821.  
  7822.  
  7823.  
  7824.  
  7825.  
  7826.  
  7827.  
  7828.  
  7829.  
  7830.  
  7831.  
  7832.  
  7833.  
  7834.  
  7835.  
  7836.  
  7837.  
  7838.  
  7839.  
  7840.  
  7841.  
  7842.    
  7843.  
  7844.  
  7845.  
  7846. <li
  7847.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  7848.  data-product-item
  7849.  data-product-quickshop-url="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7850.  
  7851. >
  7852.  <div class="productitem" data-product-item-content>
  7853.    
  7854.    
  7855.    
  7856.    
  7857.  
  7858.    
  7859.  
  7860.    
  7861.  
  7862.    <div class="productitem__container">
  7863.      
  7864.  
  7865.      <div class="productitem__image-container">
  7866.        <a target="_blank"
  7867.          class="productitem--image-link"
  7868.          href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7869.          aria-label="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7870.          tabindex="-1"
  7871.          data-product-page-link
  7872.        >
  7873.          <figure
  7874.            class="productitem--image"
  7875.            data-product-item-image
  7876.            
  7877.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7878.            
  7879.          >
  7880.            
  7881.              
  7882.              
  7883.  
  7884.  
  7885.    <noscript data-rimg-noscript>
  7886.      <img loading="lazy"
  7887.        
  7888.          src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7889.        
  7890.  
  7891.        alt="MacBook Pro"
  7892.        data-rimg="noscript"
  7893.        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"
  7894.        class="productitem--image-primary"
  7895.        
  7896.        
  7897.      >
  7898.    </noscript>
  7899.  
  7900.  
  7901.  <img loading="lazy"
  7902.    
  7903.      src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7904.    
  7905.    alt="MacBook Pro"
  7906.  
  7907.    
  7908.      data-rimg="lazy"
  7909.      data-rimg-scale="1"
  7910.      data-rimg-template="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_{size}.jpg?v=1726123088"
  7911.      data-rimg-max="1000x1000"
  7912.      data-rimg-crop="false"
  7913.      
  7914.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7915.    
  7916.  
  7917.    class="productitem--image-primary"
  7918.    
  7919.    
  7920.  >
  7921.  
  7922.  
  7923.  
  7924.  <div data-rimg-canvas></div>
  7925.  
  7926.  
  7927.            
  7928.  
  7929.            
  7930.  
  7931.  
  7932.  
  7933.  
  7934.  
  7935.  
  7936.  
  7937.  
  7938.  
  7939.  
  7940.  
  7941.  
  7942.  
  7943.  
  7944.  
  7945.  
  7946.  
  7947.  
  7948.  
  7949.  
  7950.  
  7951.  
  7952.  
  7953.  
  7954.  
  7955.  
  7956.  
  7957.          </figure>
  7958.        </a>
  7959.      </div><div class="productitem--info">
  7960.        
  7961.          
  7962.  
  7963.        
  7964.  
  7965.        
  7966.          
  7967.  
  7968.  
  7969.  
  7970.  
  7971.  
  7972.  
  7973.  
  7974.  
  7975.  
  7976.  
  7977.  
  7978.  
  7979.  
  7980.  
  7981.  
  7982.  
  7983.  
  7984.  
  7985.  
  7986.  
  7987.  
  7988.  
  7989.  
  7990.  
  7991.  
  7992.  
  7993.  
  7994.  
  7995.  
  7996.  
  7997. <div class="price productitem__price ">
  7998.  
  7999.    <div
  8000.      class="price__compare-at visible"
  8001.      data-price-compare-container
  8002.    >
  8003.  
  8004.      
  8005.        <span class="money price__original" data-price-original></span>
  8006.      
  8007.    </div>
  8008.  
  8009.  
  8010.    
  8011.      
  8012.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8013.        
  8014.          <span class="visually-hidden">Original price</span>
  8015.          <span class="money price__compare-at--min" data-price-compare-min>
  8016.            $56.99
  8017.          </span>
  8018.          -
  8019.          <span class="visually-hidden">Original price</span>
  8020.          <span class="money price__compare-at--max" data-price-compare-max>
  8021.            $56.99
  8022.          </span>
  8023.        
  8024.      </div>
  8025.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8026.        <span class="visually-hidden">Original price</span>
  8027.        <span class="money price__compare-at--single" data-price-compare>
  8028.          
  8029.        </span>
  8030.      </div>
  8031.    
  8032.  
  8033.  
  8034.  <div class="price__current price__current--emphasize " data-price-container>
  8035.  
  8036.    
  8037.  
  8038.    
  8039.      
  8040.      
  8041.      <span class="money" data-price>
  8042.        $56.99
  8043.      </span>
  8044.    
  8045.    
  8046.  </div>
  8047.  
  8048.  
  8049.    
  8050.    <div class="price__current--hidden" data-current-price-range-hidden>
  8051.      
  8052.        <span class="money price__current--min" data-price-min>$56.99</span>
  8053.        -
  8054.        <span class="money price__current--max" data-price-max>$56.99</span>
  8055.      
  8056.    </div>
  8057.    <div class="price__current--hidden" data-current-price-hidden>
  8058.      <span class="visually-hidden">Current price</span>
  8059.      <span class="money" data-price>
  8060.        $56.99
  8061.      </span>
  8062.    </div>
  8063.  
  8064.  
  8065.  
  8066.    
  8067.    
  8068.    
  8069.    
  8070.  
  8071.    <div
  8072.      class="
  8073.        productitem__unit-price
  8074.        hidden
  8075.      "
  8076.      data-unit-price
  8077.    >
  8078.      <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>
  8079.    </div>
  8080.  
  8081.  
  8082.  
  8083. </div>
  8084.  
  8085.  
  8086.        
  8087.  
  8088.        <h2 class="productitem--title">
  8089.          <a href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011" data-product-page-link>
  8090.            60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011
  8091.          </a>
  8092.        </h2>
  8093.  
  8094.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8095.        <div class="star_container 6872720015447"></div>
  8096.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8097.  
  8098.        
  8099.          
  8100.            <span class="productitem--vendor">
  8101.              <a href="/collections/vendors?q=Apple" title="Apple">Apple</a>
  8102.            </span>
  8103.          
  8104.        
  8105.  
  8106.        
  8107.  
  8108.        
  8109.          
  8110.            <div class="productitem__stock-level">
  8111.              <!--
  8112.  
  8113.  
  8114.  
  8115.  
  8116.  
  8117.  
  8118.  
  8119. <div class="product-stock-level-wrapper" >
  8120.  
  8121.    <span class="
  8122.  product-stock-level
  8123.  product-stock-level--continue-selling
  8124.  
  8125. ">
  8126.      
  8127.  
  8128.      <span class="product-stock-level__text">
  8129.        
  8130.        <div class="product-stock-level__badge-text">
  8131.          
  8132.  
  8133.    In stock
  8134.  
  8135.  
  8136.        </div>
  8137.      </span>
  8138.    </span>
  8139.  
  8140. </div>
  8141. -->
  8142.              
  8143.  
  8144.  
  8145.    
  8146.      <b style="color:green">In stock</b>
  8147.    
  8148.  
  8149.  
  8150.  
  8151.  
  8152.  
  8153.  
  8154.  
  8155.            </div>
  8156.          
  8157.  
  8158.          
  8159.            
  8160.          
  8161.        
  8162.  
  8163.        
  8164.          <div class="productitem--description">
  8165.            <p>Plugs directly into AC outlet.
  8166. 60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011 
  8167. Input: 100-240V ~ 50-60Hz
  8168. Output: 1...</p>
  8169.  
  8170.            
  8171.              <a
  8172.                href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  8173.                class="productitem--link"
  8174.                data-product-page-link
  8175.              >
  8176.                View full details
  8177.              </a>
  8178.            
  8179.          </div>
  8180.        
  8181.      </div>
  8182.  
  8183.      
  8184.        
  8185.          
  8186.          
  8187.          
  8188.  
  8189.          
  8190.          
  8191.  
  8192.          
  8193.  
  8194.          
  8195.  
  8196.          <div class="productitem--actions" data-product-actions>
  8197.            <div class="productitem--listview-price">
  8198.              
  8199.  
  8200.  
  8201.  
  8202.  
  8203.  
  8204.  
  8205.  
  8206.  
  8207.  
  8208.  
  8209.  
  8210.  
  8211.  
  8212.  
  8213.  
  8214.  
  8215.  
  8216.  
  8217.  
  8218.  
  8219.  
  8220.  
  8221.  
  8222.  
  8223.  
  8224.  
  8225.  
  8226.  
  8227.  
  8228.  
  8229. <div class="price productitem__price ">
  8230.  
  8231.    <div
  8232.      class="price__compare-at visible"
  8233.      data-price-compare-container
  8234.    >
  8235.  
  8236.      
  8237.        <span class="money price__original" data-price-original></span>
  8238.      
  8239.    </div>
  8240.  
  8241.  
  8242.    
  8243.      
  8244.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8245.        
  8246.          <span class="visually-hidden">Original price</span>
  8247.          <span class="money price__compare-at--min" data-price-compare-min>
  8248.            $56.99
  8249.          </span>
  8250.          -
  8251.          <span class="visually-hidden">Original price</span>
  8252.          <span class="money price__compare-at--max" data-price-compare-max>
  8253.            $56.99
  8254.          </span>
  8255.        
  8256.      </div>
  8257.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8258.        <span class="visually-hidden">Original price</span>
  8259.        <span class="money price__compare-at--single" data-price-compare>
  8260.          
  8261.        </span>
  8262.      </div>
  8263.    
  8264.  
  8265.  
  8266.  <div class="price__current price__current--emphasize " data-price-container>
  8267.  
  8268.    
  8269.  
  8270.    
  8271.      
  8272.      
  8273.      <span class="money" data-price>
  8274.        $56.99
  8275.      </span>
  8276.    
  8277.    
  8278.  </div>
  8279.  
  8280.  
  8281.    
  8282.    <div class="price__current--hidden" data-current-price-range-hidden>
  8283.      
  8284.        <span class="money price__current--min" data-price-min>$56.99</span>
  8285.        -
  8286.        <span class="money price__current--max" data-price-max>$56.99</span>
  8287.      
  8288.    </div>
  8289.    <div class="price__current--hidden" data-current-price-hidden>
  8290.      <span class="visually-hidden">Current price</span>
  8291.      <span class="money" data-price>
  8292.        $56.99
  8293.      </span>
  8294.    </div>
  8295.  
  8296.  
  8297.  
  8298.    
  8299.    
  8300.    
  8301.    
  8302.  
  8303.    <div
  8304.      class="
  8305.        productitem__unit-price
  8306.        hidden
  8307.      "
  8308.      data-unit-price
  8309.    >
  8310.      <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>
  8311.    </div>
  8312.  
  8313.  
  8314.  
  8315. </div>
  8316.  
  8317.  
  8318.            </div>
  8319.  
  8320.            <div class="productitem--listview-badge">
  8321.              
  8322.  
  8323.  
  8324.  
  8325.  
  8326.  
  8327.  
  8328.  
  8329.  
  8330.  
  8331.  
  8332.  
  8333.  
  8334.  
  8335.  
  8336.  
  8337.  
  8338.  
  8339.  
  8340.  
  8341.  
  8342.  
  8343.  
  8344.  
  8345.  
  8346.  
  8347.  
  8348.  
  8349.            </div>
  8350.  
  8351.            
  8352.              <div
  8353.                class="
  8354.                  productitem--action
  8355.                  quickshop-button
  8356.                  
  8357.                "
  8358.              >
  8359.                <button
  8360.                  class="productitem--action-trigger button-secondary"
  8361.                  data-quickshop-full
  8362.                  
  8363.                  
  8364.                  type="button"
  8365.                >
  8366.                  Quick shop
  8367.                </button>
  8368.              </div>
  8369.            
  8370.  
  8371.            
  8372.              <div
  8373.                class="
  8374.                  productitem--action
  8375.                  atc--button
  8376.                  
  8377.                "
  8378.              >
  8379.                <button
  8380.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8381.                  type="button"
  8382.                  aria-label="Add to cart"
  8383.                  
  8384.                    data-quick-buy
  8385.                  
  8386.                  data-variant-id="40156967370839"
  8387.                  
  8388.                >
  8389.                  <span class="atc-button--text">
  8390.                    Add to cart
  8391.                  </span>
  8392.                  <span class="atc-button--icon"><svg
  8393.  aria-hidden="true"
  8394.  focusable="false"
  8395.  role="presentation"
  8396.  width="26"
  8397.  height="26"
  8398.  viewBox="0 0 26 26"
  8399.  xmlns="http://www.w3.org/2000/svg"
  8400. >
  8401.  <g fill-rule="nonzero" fill="currentColor">
  8402.    <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"/>
  8403.  </g>
  8404. </svg></span>
  8405.                </button>
  8406.              </div>
  8407.            
  8408.          </div>
  8409.        
  8410.      
  8411.    </div>
  8412.  </div>
  8413.  
  8414.  
  8415.    <script type="application/json" data-quick-buy-settings>
  8416.      {
  8417.        "cart_redirection": true,
  8418.        "money_format": "${{amount}}"
  8419.      }
  8420.    </script>
  8421.  
  8422. </li>
  8423.    
  8424.      
  8425.  
  8426.  
  8427.  
  8428.  
  8429.  
  8430.  
  8431.  
  8432.  
  8433.  
  8434.  
  8435.  
  8436.  
  8437.  
  8438.  
  8439.  
  8440.  
  8441.  
  8442.  
  8443.  
  8444.  
  8445.  
  8446.  
  8447.  
  8448.  
  8449.  
  8450.  
  8451.  
  8452.  
  8453.  
  8454.  
  8455.  
  8456.  
  8457.    
  8458.  
  8459.  
  8460.  
  8461. <li
  8462.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8463.  data-product-item
  8464.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8465.  
  8466. >
  8467.  <div class="productitem" data-product-item-content>
  8468.    
  8469.    
  8470.    
  8471.    
  8472.  
  8473.    
  8474.  
  8475.    
  8476.  
  8477.    <div class="productitem__container">
  8478.      
  8479.  
  8480.      <div class="productitem__image-container">
  8481.        <a target="_blank"
  8482.          class="productitem--image-link"
  8483.          href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8484.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8485.          tabindex="-1"
  8486.          data-product-page-link
  8487.        >
  8488.          <figure
  8489.            class="productitem--image"
  8490.            data-product-item-image
  8491.            
  8492.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8493.            
  8494.          >
  8495.            
  8496.              
  8497.              
  8498.  
  8499.  
  8500.    <noscript data-rimg-noscript>
  8501.      <img loading="lazy"
  8502.        
  8503.          src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8504.        
  8505.  
  8506.        alt=""
  8507.        data-rimg="noscript"
  8508.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953 1x"
  8509.        class="productitem--image-primary"
  8510.        
  8511.        
  8512.      >
  8513.    </noscript>
  8514.  
  8515.  
  8516.  <img loading="lazy"
  8517.    
  8518.      src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8519.    
  8520.    alt=""
  8521.  
  8522.    
  8523.      data-rimg="lazy"
  8524.      data-rimg-scale="1"
  8525.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_{size}.jpg?v=1648096953"
  8526.      data-rimg-max="500x500"
  8527.      data-rimg-crop="false"
  8528.      
  8529.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8530.    
  8531.  
  8532.    class="productitem--image-primary"
  8533.    
  8534.    
  8535.  >
  8536.  
  8537.  
  8538.  
  8539.  <div data-rimg-canvas></div>
  8540.  
  8541.  
  8542.            
  8543.  
  8544.            
  8545.  
  8546.  
  8547.  
  8548.  
  8549.  
  8550.  
  8551.  
  8552.  
  8553.  
  8554.  
  8555.  
  8556.  
  8557.  
  8558.  
  8559.  
  8560.  
  8561.  
  8562.  
  8563.  
  8564.  
  8565.  
  8566.  
  8567.  
  8568.  
  8569.  
  8570.  
  8571.  
  8572.          </figure>
  8573.        </a>
  8574.      </div><div class="productitem--info">
  8575.        
  8576.          
  8577.  
  8578.        
  8579.  
  8580.        
  8581.          
  8582.  
  8583.  
  8584.  
  8585.  
  8586.  
  8587.  
  8588.  
  8589.  
  8590.  
  8591.  
  8592.  
  8593.  
  8594.  
  8595.  
  8596.  
  8597.  
  8598.  
  8599.  
  8600.  
  8601.  
  8602.  
  8603.  
  8604.  
  8605.  
  8606.  
  8607.  
  8608.  
  8609.  
  8610.  
  8611.  
  8612. <div class="price productitem__price ">
  8613.  
  8614.    <div
  8615.      class="price__compare-at visible"
  8616.      data-price-compare-container
  8617.    >
  8618.  
  8619.      
  8620.        <span class="money price__original" data-price-original></span>
  8621.      
  8622.    </div>
  8623.  
  8624.  
  8625.    
  8626.      
  8627.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8628.        
  8629.          <span class="visually-hidden">Original price</span>
  8630.          <span class="money price__compare-at--min" data-price-compare-min>
  8631.            $247.99
  8632.          </span>
  8633.          -
  8634.          <span class="visually-hidden">Original price</span>
  8635.          <span class="money price__compare-at--max" data-price-compare-max>
  8636.            $247.99
  8637.          </span>
  8638.        
  8639.      </div>
  8640.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8641.        <span class="visually-hidden">Original price</span>
  8642.        <span class="money price__compare-at--single" data-price-compare>
  8643.          
  8644.        </span>
  8645.      </div>
  8646.    
  8647.  
  8648.  
  8649.  <div class="price__current price__current--emphasize " data-price-container>
  8650.  
  8651.    
  8652.  
  8653.    
  8654.      
  8655.      
  8656.      <span class="money" data-price>
  8657.        $247.99
  8658.      </span>
  8659.    
  8660.    
  8661.  </div>
  8662.  
  8663.  
  8664.    
  8665.    <div class="price__current--hidden" data-current-price-range-hidden>
  8666.      
  8667.        <span class="money price__current--min" data-price-min>$247.99</span>
  8668.        -
  8669.        <span class="money price__current--max" data-price-max>$247.99</span>
  8670.      
  8671.    </div>
  8672.    <div class="price__current--hidden" data-current-price-hidden>
  8673.      <span class="visually-hidden">Current price</span>
  8674.      <span class="money" data-price>
  8675.        $247.99
  8676.      </span>
  8677.    </div>
  8678.  
  8679.  
  8680.  
  8681.    
  8682.    
  8683.    
  8684.    
  8685.  
  8686.    <div
  8687.      class="
  8688.        productitem__unit-price
  8689.        hidden
  8690.      "
  8691.      data-unit-price
  8692.    >
  8693.      <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>
  8694.    </div>
  8695.  
  8696.  
  8697.  
  8698. </div>
  8699.  
  8700.  
  8701.        
  8702.  
  8703.        <h2 class="productitem--title">
  8704.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8" data-product-page-link>
  8705.            15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8
  8706.          </a>
  8707.        </h2>
  8708.  
  8709.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8710.        <div class="star_container 3933207593047"></div>
  8711.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8712.  
  8713.        
  8714.          
  8715.            <span class="productitem--vendor">
  8716.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  8717.            </span>
  8718.          
  8719.        
  8720.  
  8721.        
  8722.  
  8723.        
  8724.          
  8725.            <div class="productitem__stock-level">
  8726.              <!--
  8727.  
  8728.  
  8729.  
  8730.  
  8731.  
  8732.  
  8733.  
  8734. <div class="product-stock-level-wrapper" >
  8735.  
  8736.    <span class="
  8737.  product-stock-level
  8738.  product-stock-level--continue-selling
  8739.  
  8740. ">
  8741.      
  8742.  
  8743.      <span class="product-stock-level__text">
  8744.        
  8745.        <div class="product-stock-level__badge-text">
  8746.          
  8747.  
  8748.    In stock
  8749.  
  8750.  
  8751.        </div>
  8752.      </span>
  8753.    </span>
  8754.  
  8755. </div>
  8756. -->
  8757.              
  8758.  
  8759.  
  8760.    
  8761.      <b style="color:green">In stock</b>
  8762.    
  8763.  
  8764.  
  8765.  
  8766.  
  8767.  
  8768.  
  8769.  
  8770.            </div>
  8771.          
  8772.  
  8773.          
  8774.            
  8775.          
  8776.        
  8777.  
  8778.        
  8779.          <div class="productitem--description">
  8780.            <p>
  8781. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  8782.  
  8783. **This screen will only work if your laptop is one of the models below that ca...</p>
  8784.  
  8785.            
  8786.              <a
  8787.                href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8788.                class="productitem--link"
  8789.                data-product-page-link
  8790.              >
  8791.                View full details
  8792.              </a>
  8793.            
  8794.          </div>
  8795.        
  8796.      </div>
  8797.  
  8798.      
  8799.        
  8800.          
  8801.          
  8802.          
  8803.  
  8804.          
  8805.          
  8806.  
  8807.          
  8808.  
  8809.          
  8810.  
  8811.          <div class="productitem--actions" data-product-actions>
  8812.            <div class="productitem--listview-price">
  8813.              
  8814.  
  8815.  
  8816.  
  8817.  
  8818.  
  8819.  
  8820.  
  8821.  
  8822.  
  8823.  
  8824.  
  8825.  
  8826.  
  8827.  
  8828.  
  8829.  
  8830.  
  8831.  
  8832.  
  8833.  
  8834.  
  8835.  
  8836.  
  8837.  
  8838.  
  8839.  
  8840.  
  8841.  
  8842.  
  8843.  
  8844. <div class="price productitem__price ">
  8845.  
  8846.    <div
  8847.      class="price__compare-at visible"
  8848.      data-price-compare-container
  8849.    >
  8850.  
  8851.      
  8852.        <span class="money price__original" data-price-original></span>
  8853.      
  8854.    </div>
  8855.  
  8856.  
  8857.    
  8858.      
  8859.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8860.        
  8861.          <span class="visually-hidden">Original price</span>
  8862.          <span class="money price__compare-at--min" data-price-compare-min>
  8863.            $247.99
  8864.          </span>
  8865.          -
  8866.          <span class="visually-hidden">Original price</span>
  8867.          <span class="money price__compare-at--max" data-price-compare-max>
  8868.            $247.99
  8869.          </span>
  8870.        
  8871.      </div>
  8872.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8873.        <span class="visually-hidden">Original price</span>
  8874.        <span class="money price__compare-at--single" data-price-compare>
  8875.          
  8876.        </span>
  8877.      </div>
  8878.    
  8879.  
  8880.  
  8881.  <div class="price__current price__current--emphasize " data-price-container>
  8882.  
  8883.    
  8884.  
  8885.    
  8886.      
  8887.      
  8888.      <span class="money" data-price>
  8889.        $247.99
  8890.      </span>
  8891.    
  8892.    
  8893.  </div>
  8894.  
  8895.  
  8896.    
  8897.    <div class="price__current--hidden" data-current-price-range-hidden>
  8898.      
  8899.        <span class="money price__current--min" data-price-min>$247.99</span>
  8900.        -
  8901.        <span class="money price__current--max" data-price-max>$247.99</span>
  8902.      
  8903.    </div>
  8904.    <div class="price__current--hidden" data-current-price-hidden>
  8905.      <span class="visually-hidden">Current price</span>
  8906.      <span class="money" data-price>
  8907.        $247.99
  8908.      </span>
  8909.    </div>
  8910.  
  8911.  
  8912.  
  8913.    
  8914.    
  8915.    
  8916.    
  8917.  
  8918.    <div
  8919.      class="
  8920.        productitem__unit-price
  8921.        hidden
  8922.      "
  8923.      data-unit-price
  8924.    >
  8925.      <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>
  8926.    </div>
  8927.  
  8928.  
  8929.  
  8930. </div>
  8931.  
  8932.  
  8933.            </div>
  8934.  
  8935.            <div class="productitem--listview-badge">
  8936.              
  8937.  
  8938.  
  8939.  
  8940.  
  8941.  
  8942.  
  8943.  
  8944.  
  8945.  
  8946.  
  8947.  
  8948.  
  8949.  
  8950.  
  8951.  
  8952.  
  8953.  
  8954.  
  8955.  
  8956.  
  8957.  
  8958.  
  8959.  
  8960.  
  8961.  
  8962.  
  8963.  
  8964.            </div>
  8965.  
  8966.            
  8967.              <div
  8968.                class="
  8969.                  productitem--action
  8970.                  quickshop-button
  8971.                  
  8972.                "
  8973.              >
  8974.                <button
  8975.                  class="productitem--action-trigger button-secondary"
  8976.                  data-quickshop-full
  8977.                  
  8978.                  
  8979.                  type="button"
  8980.                >
  8981.                  Quick shop
  8982.                </button>
  8983.              </div>
  8984.            
  8985.  
  8986.            
  8987.              <div
  8988.                class="
  8989.                  productitem--action
  8990.                  atc--button
  8991.                  
  8992.                "
  8993.              >
  8994.                <button
  8995.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8996.                  type="button"
  8997.                  aria-label="Add to cart"
  8998.                  
  8999.                    data-quick-buy
  9000.                  
  9001.                  data-variant-id="29531492974679"
  9002.                  
  9003.                >
  9004.                  <span class="atc-button--text">
  9005.                    Add to cart
  9006.                  </span>
  9007.                  <span class="atc-button--icon"><svg
  9008.  aria-hidden="true"
  9009.  focusable="false"
  9010.  role="presentation"
  9011.  width="26"
  9012.  height="26"
  9013.  viewBox="0 0 26 26"
  9014.  xmlns="http://www.w3.org/2000/svg"
  9015. >
  9016.  <g fill-rule="nonzero" fill="currentColor">
  9017.    <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"/>
  9018.  </g>
  9019. </svg></span>
  9020.                </button>
  9021.              </div>
  9022.            
  9023.          </div>
  9024.        
  9025.      
  9026.    </div>
  9027.  </div>
  9028.  
  9029.  
  9030.    <script type="application/json" data-quick-buy-settings>
  9031.      {
  9032.        "cart_redirection": true,
  9033.        "money_format": "${{amount}}"
  9034.      }
  9035.    </script>
  9036.  
  9037. </li>
  9038.    
  9039.      
  9040.  
  9041.  
  9042.  
  9043.  
  9044.  
  9045.  
  9046.  
  9047.  
  9048.  
  9049.  
  9050.  
  9051.  
  9052.  
  9053.  
  9054.  
  9055.  
  9056.  
  9057.  
  9058.  
  9059.  
  9060.  
  9061.  
  9062.  
  9063.  
  9064.  
  9065.  
  9066.  
  9067.  
  9068.  
  9069.  
  9070.  
  9071.  
  9072.    
  9073.  
  9074.  
  9075.  
  9076. <li
  9077.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9078.  data-product-item
  9079.  data-product-quickshop-url="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9080.  
  9081. >
  9082.  <div class="productitem" data-product-item-content>
  9083.    
  9084.    
  9085.    
  9086.    
  9087.  
  9088.    
  9089.  
  9090.    
  9091.  
  9092.    <div class="productitem__container">
  9093.      
  9094.  
  9095.      <div class="productitem__image-container">
  9096.        <a target="_blank"
  9097.          class="productitem--image-link"
  9098.          href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9099.          aria-label="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9100.          tabindex="-1"
  9101.          data-product-page-link
  9102.        >
  9103.          <figure
  9104.            class="productitem--image"
  9105.            data-product-item-image
  9106.            
  9107.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9108.            
  9109.          >
  9110.            
  9111.              
  9112.              
  9113.  
  9114.  
  9115.    <noscript data-rimg-noscript>
  9116.      <img loading="lazy"
  9117.        
  9118.          src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  9119.        
  9120.  
  9121.        alt="Updated alt text"
  9122.        data-rimg="noscript"
  9123.        srcset="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908 1x"
  9124.        class="productitem--image-primary"
  9125.        
  9126.        
  9127.      >
  9128.    </noscript>
  9129.  
  9130.  
  9131.  <img loading="lazy"
  9132.    
  9133.      src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  9134.    
  9135.    alt="Updated alt text"
  9136.  
  9137.    
  9138.      data-rimg="lazy"
  9139.      data-rimg-scale="1"
  9140.      data-rimg-template="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_{size}.jpg?v=1680602908"
  9141.      data-rimg-max="500x500"
  9142.      data-rimg-crop="false"
  9143.      
  9144.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  9145.    
  9146.  
  9147.    class="productitem--image-primary"
  9148.    
  9149.    
  9150.  >
  9151.  
  9152.  
  9153.  
  9154.  <div data-rimg-canvas></div>
  9155.  
  9156.  
  9157.            
  9158.  
  9159.            
  9160.  
  9161.  
  9162.  
  9163.  
  9164.  
  9165.  
  9166.  
  9167.  
  9168.  
  9169.  
  9170.  
  9171.  
  9172.  
  9173.  
  9174.  
  9175.  
  9176.  
  9177.  
  9178.  
  9179.  
  9180.  
  9181.  
  9182.  
  9183.  
  9184.  
  9185.  
  9186.  
  9187.          </figure>
  9188.        </a>
  9189.      </div><div class="productitem--info">
  9190.        
  9191.          
  9192.  
  9193.        
  9194.  
  9195.        
  9196.          
  9197.  
  9198.  
  9199.  
  9200.  
  9201.  
  9202.  
  9203.  
  9204.  
  9205.  
  9206.  
  9207.  
  9208.  
  9209.  
  9210.  
  9211.  
  9212.  
  9213.  
  9214.  
  9215.  
  9216.  
  9217.  
  9218.  
  9219.  
  9220.  
  9221.  
  9222.  
  9223.  
  9224.  
  9225.  
  9226.  
  9227. <div class="price productitem__price ">
  9228.  
  9229.    <div
  9230.      class="price__compare-at visible"
  9231.      data-price-compare-container
  9232.    >
  9233.  
  9234.      
  9235.        <span class="money price__original" data-price-original></span>
  9236.      
  9237.    </div>
  9238.  
  9239.  
  9240.    
  9241.      
  9242.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9243.        
  9244.          <span class="visually-hidden">Original price</span>
  9245.          <span class="money price__compare-at--min" data-price-compare-min>
  9246.            $54.99
  9247.          </span>
  9248.          -
  9249.          <span class="visually-hidden">Original price</span>
  9250.          <span class="money price__compare-at--max" data-price-compare-max>
  9251.            $54.99
  9252.          </span>
  9253.        
  9254.      </div>
  9255.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9256.        <span class="visually-hidden">Original price</span>
  9257.        <span class="money price__compare-at--single" data-price-compare>
  9258.          
  9259.        </span>
  9260.      </div>
  9261.    
  9262.  
  9263.  
  9264.  <div class="price__current price__current--emphasize " data-price-container>
  9265.  
  9266.    
  9267.  
  9268.    
  9269.      
  9270.      
  9271.      <span class="money" data-price>
  9272.        $54.99
  9273.      </span>
  9274.    
  9275.    
  9276.  </div>
  9277.  
  9278.  
  9279.    
  9280.    <div class="price__current--hidden" data-current-price-range-hidden>
  9281.      
  9282.        <span class="money price__current--min" data-price-min>$54.99</span>
  9283.        -
  9284.        <span class="money price__current--max" data-price-max>$54.99</span>
  9285.      
  9286.    </div>
  9287.    <div class="price__current--hidden" data-current-price-hidden>
  9288.      <span class="visually-hidden">Current price</span>
  9289.      <span class="money" data-price>
  9290.        $54.99
  9291.      </span>
  9292.    </div>
  9293.  
  9294.  
  9295.  
  9296.    
  9297.    
  9298.    
  9299.    
  9300.  
  9301.    <div
  9302.      class="
  9303.        productitem__unit-price
  9304.        hidden
  9305.      "
  9306.      data-unit-price
  9307.    >
  9308.      <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>
  9309.    </div>
  9310.  
  9311.  
  9312.  
  9313. </div>
  9314.  
  9315.  
  9316.        
  9317.  
  9318.        <h2 class="productitem--title">
  9319.          <a href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23" data-product-page-link>
  9320.            19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9321.          </a>
  9322.        </h2>
  9323.  
  9324.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9325.        <div class="star_container 6872273420375"></div>
  9326.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9327.  
  9328.        
  9329.          
  9330.            <span class="productitem--vendor">
  9331.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  9332.            </span>
  9333.          
  9334.        
  9335.  
  9336.        
  9337.  
  9338.        
  9339.          
  9340.            <div class="productitem__stock-level">
  9341.              <!--
  9342.  
  9343.  
  9344.  
  9345.  
  9346.  
  9347.  
  9348.  
  9349. <div class="product-stock-level-wrapper" >
  9350.  
  9351.    <span class="
  9352.  product-stock-level
  9353.  product-stock-level--continue-selling
  9354.  
  9355. ">
  9356.      
  9357.  
  9358.      <span class="product-stock-level__text">
  9359.        
  9360.        <div class="product-stock-level__badge-text">
  9361.          
  9362.  
  9363.    In stock
  9364.  
  9365.  
  9366.        </div>
  9367.      </span>
  9368.    </span>
  9369.  
  9370. </div>
  9371. -->
  9372.              
  9373.  
  9374.  
  9375.    
  9376.      <b style="color:green">In stock</b>
  9377.    
  9378.  
  9379.  
  9380.  
  9381.  
  9382.  
  9383.  
  9384.  
  9385.            </div>
  9386.          
  9387.  
  9388.          
  9389.            
  9390.          
  9391.        
  9392.  
  9393.        
  9394.          <div class="productitem--description">
  9395.            <p>19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9396. Includes power cord.
  9397.  
  9398. Input: 100-240V ~ 50-60Hz
  9399. Output: 19V –...</p>
  9400.  
  9401.            
  9402.              <a
  9403.                href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9404.                class="productitem--link"
  9405.                data-product-page-link
  9406.              >
  9407.                View full details
  9408.              </a>
  9409.            
  9410.          </div>
  9411.        
  9412.      </div>
  9413.  
  9414.      
  9415.        
  9416.          
  9417.          
  9418.          
  9419.  
  9420.          
  9421.          
  9422.  
  9423.          
  9424.  
  9425.          
  9426.  
  9427.          <div class="productitem--actions" data-product-actions>
  9428.            <div class="productitem--listview-price">
  9429.              
  9430.  
  9431.  
  9432.  
  9433.  
  9434.  
  9435.  
  9436.  
  9437.  
  9438.  
  9439.  
  9440.  
  9441.  
  9442.  
  9443.  
  9444.  
  9445.  
  9446.  
  9447.  
  9448.  
  9449.  
  9450.  
  9451.  
  9452.  
  9453.  
  9454.  
  9455.  
  9456.  
  9457.  
  9458.  
  9459.  
  9460. <div class="price productitem__price ">
  9461.  
  9462.    <div
  9463.      class="price__compare-at visible"
  9464.      data-price-compare-container
  9465.    >
  9466.  
  9467.      
  9468.        <span class="money price__original" data-price-original></span>
  9469.      
  9470.    </div>
  9471.  
  9472.  
  9473.    
  9474.      
  9475.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9476.        
  9477.          <span class="visually-hidden">Original price</span>
  9478.          <span class="money price__compare-at--min" data-price-compare-min>
  9479.            $54.99
  9480.          </span>
  9481.          -
  9482.          <span class="visually-hidden">Original price</span>
  9483.          <span class="money price__compare-at--max" data-price-compare-max>
  9484.            $54.99
  9485.          </span>
  9486.        
  9487.      </div>
  9488.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9489.        <span class="visually-hidden">Original price</span>
  9490.        <span class="money price__compare-at--single" data-price-compare>
  9491.          
  9492.        </span>
  9493.      </div>
  9494.    
  9495.  
  9496.  
  9497.  <div class="price__current price__current--emphasize " data-price-container>
  9498.  
  9499.    
  9500.  
  9501.    
  9502.      
  9503.      
  9504.      <span class="money" data-price>
  9505.        $54.99
  9506.      </span>
  9507.    
  9508.    
  9509.  </div>
  9510.  
  9511.  
  9512.    
  9513.    <div class="price__current--hidden" data-current-price-range-hidden>
  9514.      
  9515.        <span class="money price__current--min" data-price-min>$54.99</span>
  9516.        -
  9517.        <span class="money price__current--max" data-price-max>$54.99</span>
  9518.      
  9519.    </div>
  9520.    <div class="price__current--hidden" data-current-price-hidden>
  9521.      <span class="visually-hidden">Current price</span>
  9522.      <span class="money" data-price>
  9523.        $54.99
  9524.      </span>
  9525.    </div>
  9526.  
  9527.  
  9528.  
  9529.    
  9530.    
  9531.    
  9532.    
  9533.  
  9534.    <div
  9535.      class="
  9536.        productitem__unit-price
  9537.        hidden
  9538.      "
  9539.      data-unit-price
  9540.    >
  9541.      <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>
  9542.    </div>
  9543.  
  9544.  
  9545.  
  9546. </div>
  9547.  
  9548.  
  9549.            </div>
  9550.  
  9551.            <div class="productitem--listview-badge">
  9552.              
  9553.  
  9554.  
  9555.  
  9556.  
  9557.  
  9558.  
  9559.  
  9560.  
  9561.  
  9562.  
  9563.  
  9564.  
  9565.  
  9566.  
  9567.  
  9568.  
  9569.  
  9570.  
  9571.  
  9572.  
  9573.  
  9574.  
  9575.  
  9576.  
  9577.  
  9578.  
  9579.  
  9580.            </div>
  9581.  
  9582.            
  9583.              <div
  9584.                class="
  9585.                  productitem--action
  9586.                  quickshop-button
  9587.                  
  9588.                "
  9589.              >
  9590.                <button
  9591.                  class="productitem--action-trigger button-secondary"
  9592.                  data-quickshop-full
  9593.                  
  9594.                  
  9595.                  type="button"
  9596.                >
  9597.                  Quick shop
  9598.                </button>
  9599.              </div>
  9600.            
  9601.  
  9602.            
  9603.              <div
  9604.                class="
  9605.                  productitem--action
  9606.                  atc--button
  9607.                  
  9608.                "
  9609.              >
  9610.                <button
  9611.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9612.                  type="button"
  9613.                  aria-label="Add to cart"
  9614.                  
  9615.                    data-quick-buy
  9616.                  
  9617.                  data-variant-id="40155858534487"
  9618.                  
  9619.                >
  9620.                  <span class="atc-button--text">
  9621.                    Add to cart
  9622.                  </span>
  9623.                  <span class="atc-button--icon"><svg
  9624.  aria-hidden="true"
  9625.  focusable="false"
  9626.  role="presentation"
  9627.  width="26"
  9628.  height="26"
  9629.  viewBox="0 0 26 26"
  9630.  xmlns="http://www.w3.org/2000/svg"
  9631. >
  9632.  <g fill-rule="nonzero" fill="currentColor">
  9633.    <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"/>
  9634.  </g>
  9635. </svg></span>
  9636.                </button>
  9637.              </div>
  9638.            
  9639.          </div>
  9640.        
  9641.      
  9642.    </div>
  9643.  </div>
  9644.  
  9645.  
  9646.    <script type="application/json" data-quick-buy-settings>
  9647.      {
  9648.        "cart_redirection": true,
  9649.        "money_format": "${{amount}}"
  9650.      }
  9651.    </script>
  9652.  
  9653. </li>
  9654.    
  9655.      
  9656.  
  9657.  
  9658.  
  9659.  
  9660.  
  9661.  
  9662.  
  9663.  
  9664.  
  9665.  
  9666.  
  9667.  
  9668.  
  9669.  
  9670.  
  9671.  
  9672.  
  9673.  
  9674.  
  9675.  
  9676.  
  9677.  
  9678.  
  9679.  
  9680.  
  9681.  
  9682.  
  9683.  
  9684.  
  9685.  
  9686.  
  9687.  
  9688.    
  9689.  
  9690.  
  9691.  
  9692. <li
  9693.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9694.  data-product-item
  9695.  data-product-quickshop-url="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9696.  
  9697. >
  9698.  <div class="productitem" data-product-item-content>
  9699.    
  9700.    
  9701.    
  9702.    
  9703.  
  9704.    
  9705.  
  9706.    
  9707.  
  9708.    <div class="productitem__container">
  9709.      
  9710.  
  9711.      <div class="productitem__image-container">
  9712.        <a target="_blank"
  9713.          class="productitem--image-link"
  9714.          href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9715.          aria-label="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9716.          tabindex="-1"
  9717.          data-product-page-link
  9718.        >
  9719.          <figure
  9720.            class="productitem--image"
  9721.            data-product-item-image
  9722.            
  9723.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9724.            
  9725.          >
  9726.            
  9727.              
  9728.              
  9729.  
  9730.  
  9731.    <noscript data-rimg-noscript>
  9732.      <img loading="lazy"
  9733.        
  9734.          src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9735.        
  9736.  
  9737.        alt=""
  9738.        data-rimg="noscript"
  9739.        srcset="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747 1x, //laptopparts.ca/cdn/shop/products/z1_799x799.jpg?v=1648128747 1.56x"
  9740.        class="productitem--image-primary"
  9741.        
  9742.        
  9743.      >
  9744.    </noscript>
  9745.  
  9746.  
  9747.  <img loading="lazy"
  9748.    
  9749.      src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9750.    
  9751.    alt=""
  9752.  
  9753.    
  9754.      data-rimg="lazy"
  9755.      data-rimg-scale="1"
  9756.      data-rimg-template="//laptopparts.ca/cdn/shop/products/z1_{size}.jpg?v=1648128747"
  9757.      data-rimg-max="800x800"
  9758.      data-rimg-crop="false"
  9759.      
  9760.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  9761.    
  9762.  
  9763.    class="productitem--image-primary"
  9764.    
  9765.    
  9766.  >
  9767.  
  9768.  
  9769.  
  9770.  <div data-rimg-canvas></div>
  9771.  
  9772.  
  9773.            
  9774.  
  9775.            
  9776.  
  9777.  
  9778.  
  9779.  
  9780.  
  9781.  
  9782.  
  9783.  
  9784.  
  9785.  
  9786.  
  9787.  
  9788.  
  9789.  
  9790.  
  9791.  
  9792.  
  9793.  
  9794.  
  9795.  
  9796.  
  9797.  
  9798.  
  9799.  
  9800.  
  9801.  
  9802.  
  9803.          </figure>
  9804.        </a>
  9805.      </div><div class="productitem--info">
  9806.        
  9807.          
  9808.  
  9809.        
  9810.  
  9811.        
  9812.          
  9813.  
  9814.  
  9815.  
  9816.  
  9817.  
  9818.  
  9819.  
  9820.  
  9821.  
  9822.  
  9823.  
  9824.  
  9825.  
  9826.  
  9827.  
  9828.  
  9829.  
  9830.  
  9831.  
  9832.  
  9833.  
  9834.  
  9835.  
  9836.  
  9837.  
  9838.  
  9839.  
  9840.  
  9841.  
  9842.  
  9843. <div class="price productitem__price ">
  9844.  
  9845.    <div
  9846.      class="price__compare-at visible"
  9847.      data-price-compare-container
  9848.    >
  9849.  
  9850.      
  9851.        <span class="money price__original" data-price-original></span>
  9852.      
  9853.    </div>
  9854.  
  9855.  
  9856.    
  9857.      
  9858.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9859.        
  9860.          <span class="visually-hidden">Original price</span>
  9861.          <span class="money price__compare-at--min" data-price-compare-min>
  9862.            $32.99
  9863.          </span>
  9864.          -
  9865.          <span class="visually-hidden">Original price</span>
  9866.          <span class="money price__compare-at--max" data-price-compare-max>
  9867.            $32.99
  9868.          </span>
  9869.        
  9870.      </div>
  9871.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9872.        <span class="visually-hidden">Original price</span>
  9873.        <span class="money price__compare-at--single" data-price-compare>
  9874.          
  9875.        </span>
  9876.      </div>
  9877.    
  9878.  
  9879.  
  9880.  <div class="price__current price__current--emphasize " data-price-container>
  9881.  
  9882.    
  9883.  
  9884.    
  9885.      
  9886.      
  9887.      <span class="money" data-price>
  9888.        $32.99
  9889.      </span>
  9890.    
  9891.    
  9892.  </div>
  9893.  
  9894.  
  9895.    
  9896.    <div class="price__current--hidden" data-current-price-range-hidden>
  9897.      
  9898.        <span class="money price__current--min" data-price-min>$32.99</span>
  9899.        -
  9900.        <span class="money price__current--max" data-price-max>$32.99</span>
  9901.      
  9902.    </div>
  9903.    <div class="price__current--hidden" data-current-price-hidden>
  9904.      <span class="visually-hidden">Current price</span>
  9905.      <span class="money" data-price>
  9906.        $32.99
  9907.      </span>
  9908.    </div>
  9909.  
  9910.  
  9911.  
  9912.    
  9913.    
  9914.    
  9915.    
  9916.  
  9917.    <div
  9918.      class="
  9919.        productitem__unit-price
  9920.        hidden
  9921.      "
  9922.      data-unit-price
  9923.    >
  9924.      <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>
  9925.    </div>
  9926.  
  9927.  
  9928.  
  9929. </div>
  9930.  
  9931.  
  9932.        
  9933.  
  9934.        <h2 class="productitem--title">
  9935.          <a href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable" data-product-page-link>
  9936.            2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable
  9937.          </a>
  9938.        </h2>
  9939.  
  9940.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9941.        <div class="star_container 4421896306775"></div>
  9942.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9943.  
  9944.        
  9945.          
  9946.            <span class="productitem--vendor">
  9947.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  9948.            </span>
  9949.          
  9950.        
  9951.  
  9952.        
  9953.  
  9954.        
  9955.          
  9956.            <div class="productitem__stock-level">
  9957.              <!--
  9958.  
  9959.  
  9960.  
  9961.  
  9962.  
  9963.  
  9964.  
  9965. <div class="product-stock-level-wrapper" >
  9966.  
  9967.    <span class="
  9968.  product-stock-level
  9969.  product-stock-level--continue-selling
  9970.  
  9971. ">
  9972.      
  9973.  
  9974.      <span class="product-stock-level__text">
  9975.        
  9976.        <div class="product-stock-level__badge-text">
  9977.          
  9978.  
  9979.    In stock
  9980.  
  9981.  
  9982.        </div>
  9983.      </span>
  9984.    </span>
  9985.  
  9986. </div>
  9987. -->
  9988.              
  9989.  
  9990.  
  9991.    
  9992.      <b style="color:green">In stock</b>
  9993.    
  9994.  
  9995.  
  9996.  
  9997.  
  9998.  
  9999.  
  10000.  
  10001.            </div>
  10002.          
  10003.  
  10004.          
  10005.            
  10006.          
  10007.        
  10008.  
  10009.        
  10010.          <div class="productitem--description">
  10011.            <p>Cable Length(approx.): 15cm ± 10% (Just Cable)Connector Type: 1.x SATA Power 15-pin, Male2 x Molex IDE 4-pin, Female</p>
  10012.  
  10013.            
  10014.          </div>
  10015.        
  10016.      </div>
  10017.  
  10018.      
  10019.        
  10020.          
  10021.          
  10022.          
  10023.  
  10024.          
  10025.          
  10026.  
  10027.          
  10028.  
  10029.          
  10030.  
  10031.          <div class="productitem--actions" data-product-actions>
  10032.            <div class="productitem--listview-price">
  10033.              
  10034.  
  10035.  
  10036.  
  10037.  
  10038.  
  10039.  
  10040.  
  10041.  
  10042.  
  10043.  
  10044.  
  10045.  
  10046.  
  10047.  
  10048.  
  10049.  
  10050.  
  10051.  
  10052.  
  10053.  
  10054.  
  10055.  
  10056.  
  10057.  
  10058.  
  10059.  
  10060.  
  10061.  
  10062.  
  10063.  
  10064. <div class="price productitem__price ">
  10065.  
  10066.    <div
  10067.      class="price__compare-at visible"
  10068.      data-price-compare-container
  10069.    >
  10070.  
  10071.      
  10072.        <span class="money price__original" data-price-original></span>
  10073.      
  10074.    </div>
  10075.  
  10076.  
  10077.    
  10078.      
  10079.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10080.        
  10081.          <span class="visually-hidden">Original price</span>
  10082.          <span class="money price__compare-at--min" data-price-compare-min>
  10083.            $32.99
  10084.          </span>
  10085.          -
  10086.          <span class="visually-hidden">Original price</span>
  10087.          <span class="money price__compare-at--max" data-price-compare-max>
  10088.            $32.99
  10089.          </span>
  10090.        
  10091.      </div>
  10092.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10093.        <span class="visually-hidden">Original price</span>
  10094.        <span class="money price__compare-at--single" data-price-compare>
  10095.          
  10096.        </span>
  10097.      </div>
  10098.    
  10099.  
  10100.  
  10101.  <div class="price__current price__current--emphasize " data-price-container>
  10102.  
  10103.    
  10104.  
  10105.    
  10106.      
  10107.      
  10108.      <span class="money" data-price>
  10109.        $32.99
  10110.      </span>
  10111.    
  10112.    
  10113.  </div>
  10114.  
  10115.  
  10116.    
  10117.    <div class="price__current--hidden" data-current-price-range-hidden>
  10118.      
  10119.        <span class="money price__current--min" data-price-min>$32.99</span>
  10120.        -
  10121.        <span class="money price__current--max" data-price-max>$32.99</span>
  10122.      
  10123.    </div>
  10124.    <div class="price__current--hidden" data-current-price-hidden>
  10125.      <span class="visually-hidden">Current price</span>
  10126.      <span class="money" data-price>
  10127.        $32.99
  10128.      </span>
  10129.    </div>
  10130.  
  10131.  
  10132.  
  10133.    
  10134.    
  10135.    
  10136.    
  10137.  
  10138.    <div
  10139.      class="
  10140.        productitem__unit-price
  10141.        hidden
  10142.      "
  10143.      data-unit-price
  10144.    >
  10145.      <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>
  10146.    </div>
  10147.  
  10148.  
  10149.  
  10150. </div>
  10151.  
  10152.  
  10153.            </div>
  10154.  
  10155.            <div class="productitem--listview-badge">
  10156.              
  10157.  
  10158.  
  10159.  
  10160.  
  10161.  
  10162.  
  10163.  
  10164.  
  10165.  
  10166.  
  10167.  
  10168.  
  10169.  
  10170.  
  10171.  
  10172.  
  10173.  
  10174.  
  10175.  
  10176.  
  10177.  
  10178.  
  10179.  
  10180.  
  10181.  
  10182.  
  10183.  
  10184.            </div>
  10185.  
  10186.            
  10187.              <div
  10188.                class="
  10189.                  productitem--action
  10190.                  quickshop-button
  10191.                  
  10192.                "
  10193.              >
  10194.                <button
  10195.                  class="productitem--action-trigger button-secondary"
  10196.                  data-quickshop-full
  10197.                  
  10198.                  
  10199.                  type="button"
  10200.                >
  10201.                  Quick shop
  10202.                </button>
  10203.              </div>
  10204.            
  10205.  
  10206.            
  10207.              <div
  10208.                class="
  10209.                  productitem--action
  10210.                  atc--button
  10211.                  
  10212.                "
  10213.              >
  10214.                <button
  10215.                  class="productitem--action-trigger productitem--action-atc button-primary"
  10216.                  type="button"
  10217.                  aria-label="Add to cart"
  10218.                  
  10219.                    data-quick-buy
  10220.                  
  10221.                  data-variant-id="31550087692375"
  10222.                  
  10223.                >
  10224.                  <span class="atc-button--text">
  10225.                    Add to cart
  10226.                  </span>
  10227.                  <span class="atc-button--icon"><svg
  10228.  aria-hidden="true"
  10229.  focusable="false"
  10230.  role="presentation"
  10231.  width="26"
  10232.  height="26"
  10233.  viewBox="0 0 26 26"
  10234.  xmlns="http://www.w3.org/2000/svg"
  10235. >
  10236.  <g fill-rule="nonzero" fill="currentColor">
  10237.    <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"/>
  10238.  </g>
  10239. </svg></span>
  10240.                </button>
  10241.              </div>
  10242.            
  10243.          </div>
  10244.        
  10245.      
  10246.    </div>
  10247.  </div>
  10248.  
  10249.  
  10250.    <script type="application/json" data-quick-buy-settings>
  10251.      {
  10252.        "cart_redirection": true,
  10253.        "money_format": "${{amount}}"
  10254.      }
  10255.    </script>
  10256.  
  10257. </li>
  10258.    
  10259.      
  10260.  
  10261.  
  10262.  
  10263.  
  10264.  
  10265.  
  10266.  
  10267.  
  10268.  
  10269.  
  10270.  
  10271.  
  10272.  
  10273.  
  10274.  
  10275.  
  10276.  
  10277.  
  10278.  
  10279.  
  10280.  
  10281.  
  10282.  
  10283.  
  10284.  
  10285.  
  10286.  
  10287.  
  10288.  
  10289.  
  10290.  
  10291.  
  10292.    
  10293.  
  10294.  
  10295.  
  10296. <li
  10297.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  10298.  data-product-item
  10299.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10300.  
  10301. >
  10302.  <div class="productitem" data-product-item-content>
  10303.    
  10304.    
  10305.    
  10306.    
  10307.  
  10308.    
  10309.  
  10310.    
  10311.  
  10312.    <div class="productitem__container">
  10313.      
  10314.  
  10315.      <div class="productitem__image-container">
  10316.        <a target="_blank"
  10317.          class="productitem--image-link"
  10318.          href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10319.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10320.          tabindex="-1"
  10321.          data-product-page-link
  10322.        >
  10323.          <figure
  10324.            class="productitem--image"
  10325.            data-product-item-image
  10326.            
  10327.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10328.            
  10329.          >
  10330.            
  10331.              
  10332.              
  10333.  
  10334.  
  10335.    <noscript data-rimg-noscript>
  10336.      <img loading="lazy"
  10337.        
  10338.          src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10339.        
  10340.  
  10341.        alt=""
  10342.        data-rimg="noscript"
  10343.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824 1x"
  10344.        class="productitem--image-primary"
  10345.        
  10346.        
  10347.      >
  10348.    </noscript>
  10349.  
  10350.  
  10351.  <img loading="lazy"
  10352.    
  10353.      src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10354.    
  10355.    alt=""
  10356.  
  10357.    
  10358.      data-rimg="lazy"
  10359.      data-rimg-scale="1"
  10360.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_{size}.jpg?v=1648039824"
  10361.      data-rimg-max="500x500"
  10362.      data-rimg-crop="false"
  10363.      
  10364.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  10365.    
  10366.  
  10367.    class="productitem--image-primary"
  10368.    
  10369.    
  10370.  >
  10371.  
  10372.  
  10373.  
  10374.  <div data-rimg-canvas></div>
  10375.  
  10376.  
  10377.            
  10378.  
  10379.            
  10380.  
  10381.  
  10382.  
  10383.  
  10384.  
  10385.  
  10386.  
  10387.  
  10388.  
  10389.  
  10390.  
  10391.  
  10392.  
  10393.  
  10394.  
  10395.  
  10396.  
  10397.  
  10398.  
  10399.  
  10400.  
  10401.  
  10402.  
  10403.  
  10404.  
  10405.  
  10406.  
  10407.          </figure>
  10408.        </a>
  10409.      </div><div class="productitem--info">
  10410.        
  10411.          
  10412.  
  10413.        
  10414.  
  10415.        
  10416.          
  10417.  
  10418.  
  10419.  
  10420.  
  10421.  
  10422.  
  10423.  
  10424.  
  10425.  
  10426.  
  10427.  
  10428.  
  10429.  
  10430.  
  10431.  
  10432.  
  10433.  
  10434.  
  10435.  
  10436.  
  10437.  
  10438.  
  10439.  
  10440.  
  10441.  
  10442.  
  10443.  
  10444.  
  10445.  
  10446.  
  10447. <div class="price productitem__price ">
  10448.  
  10449.    <div
  10450.      class="price__compare-at visible"
  10451.      data-price-compare-container
  10452.    >
  10453.  
  10454.      
  10455.        <span class="money price__original" data-price-original></span>
  10456.      
  10457.    </div>
  10458.  
  10459.  
  10460.    
  10461.      
  10462.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10463.        
  10464.          <span class="visually-hidden">Original price</span>
  10465.          <span class="money price__compare-at--min" data-price-compare-min>
  10466.            $247.99
  10467.          </span>
  10468.          -
  10469.          <span class="visually-hidden">Original price</span>
  10470.          <span class="money price__compare-at--max" data-price-compare-max>
  10471.            $247.99
  10472.          </span>
  10473.        
  10474.      </div>
  10475.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10476.        <span class="visually-hidden">Original price</span>
  10477.        <span class="money price__compare-at--single" data-price-compare>
  10478.          
  10479.        </span>
  10480.      </div>
  10481.    
  10482.  
  10483.  
  10484.  <div class="price__current price__current--emphasize " data-price-container>
  10485.  
  10486.    
  10487.  
  10488.    
  10489.      
  10490.      
  10491.      <span class="money" data-price>
  10492.        $247.99
  10493.      </span>
  10494.    
  10495.    
  10496.  </div>
  10497.  
  10498.  
  10499.    
  10500.    <div class="price__current--hidden" data-current-price-range-hidden>
  10501.      
  10502.        <span class="money price__current--min" data-price-min>$247.99</span>
  10503.        -
  10504.        <span class="money price__current--max" data-price-max>$247.99</span>
  10505.      
  10506.    </div>
  10507.    <div class="price__current--hidden" data-current-price-hidden>
  10508.      <span class="visually-hidden">Current price</span>
  10509.      <span class="money" data-price>
  10510.        $247.99
  10511.      </span>
  10512.    </div>
  10513.  
  10514.  
  10515.  
  10516.    
  10517.    
  10518.    
  10519.    
  10520.  
  10521.    <div
  10522.      class="
  10523.        productitem__unit-price
  10524.        hidden
  10525.      "
  10526.      data-unit-price
  10527.    >
  10528.      <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>
  10529.    </div>
  10530.  
  10531.  
  10532.  
  10533. </div>
  10534.  
  10535.  
  10536.        
  10537.  
  10538.        <h2 class="productitem--title">
  10539.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops" data-product-page-link>
  10540.            15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0
  10541.          </a>
  10542.        </h2>
  10543.  
  10544.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10545.        <div class="star_container 3929811091543"></div>
  10546.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10547.  
  10548.        
  10549.          
  10550.            <span class="productitem--vendor">
  10551.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  10552.            </span>
  10553.          
  10554.        
  10555.  
  10556.        
  10557.  
  10558.        
  10559.          
  10560.            <div class="productitem__stock-level">
  10561.              <!--
  10562.  
  10563.  
  10564.  
  10565.  
  10566.  
  10567.  
  10568.  
  10569. <div class="product-stock-level-wrapper" >
  10570.  
  10571.    <span class="
  10572.  product-stock-level
  10573.  product-stock-level--continue-selling
  10574.  
  10575. ">
  10576.      
  10577.  
  10578.      <span class="product-stock-level__text">
  10579.        
  10580.        <div class="product-stock-level__badge-text">
  10581.          
  10582.  
  10583.    In stock
  10584.  
  10585.  
  10586.        </div>
  10587.      </span>
  10588.    </span>
  10589.  
  10590. </div>
  10591. -->
  10592.              
  10593.  
  10594.  
  10595.    
  10596.      <b style="color:green">In stock</b>
  10597.    
  10598.  
  10599.  
  10600.  
  10601.  
  10602.  
  10603.  
  10604.  
  10605.            </div>
  10606.          
  10607.  
  10608.          
  10609.            
  10610.          
  10611.        
  10612.  
  10613.        
  10614.          <div class="productitem--description">
  10615.            <p>
  10616. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  10617.  
  10618. **This screen will only work if your laptop is one of the models below that ca...</p>
  10619.  
  10620.            
  10621.              <a
  10622.                href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10623.                class="productitem--link"
  10624.                data-product-page-link
  10625.              >
  10626.                View full details
  10627.              </a>
  10628.            
  10629.          </div>
  10630.        
  10631.      </div>
  10632.  
  10633.      
  10634.        
  10635.          
  10636.          
  10637.          
  10638.  
  10639.          
  10640.          
  10641.  
  10642.          
  10643.  
  10644.          
  10645.  
  10646.          <div class="productitem--actions" data-product-actions>
  10647.            <div class="productitem--listview-price">
  10648.              
  10649.  
  10650.  
  10651.  
  10652.  
  10653.  
  10654.  
  10655.  
  10656.  
  10657.  
  10658.  
  10659.  
  10660.  
  10661.  
  10662.  
  10663.  
  10664.  
  10665.  
  10666.  
  10667.  
  10668.  
  10669.  
  10670.  
  10671.  
  10672.  
  10673.  
  10674.  
  10675.  
  10676.  
  10677.  
  10678.  
  10679. <div class="price productitem__price ">
  10680.  
  10681.    <div
  10682.      class="price__compare-at visible"
  10683.      data-price-compare-container
  10684.    >
  10685.  
  10686.      
  10687.        <span class="money price__original" data-price-original></span>
  10688.      
  10689.    </div>
  10690.  
  10691.  
  10692.    
  10693.      
  10694.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10695.        
  10696.          <span class="visually-hidden">Original price</span>
  10697.          <span class="money price__compare-at--min" data-price-compare-min>
  10698.            $247.99
  10699.          </span>
  10700.          -
  10701.          <span class="visually-hidden">Original price</span>
  10702.          <span class="money price__compare-at--max" data-price-compare-max>
  10703.            $247.99
  10704.          </span>
  10705.        
  10706.      </div>
  10707.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10708.        <span class="visually-hidden">Original price</span>
  10709.        <span class="money price__compare-at--single" data-price-compare>
  10710.          
  10711.        </span>
  10712.      </div>
  10713.    
  10714.  
  10715.  
  10716.  <div class="price__current price__current--emphasize " data-price-container>
  10717.  
  10718.    
  10719.  
  10720.    
  10721.      
  10722.      
  10723.      <span class="money" data-price>
  10724.        $247.99
  10725.      </span>
  10726.    
  10727.    
  10728.  </div>
  10729.  
  10730.  
  10731.    
  10732.    <div class="price__current--hidden" data-current-price-range-hidden>
  10733.      
  10734.        <span class="money price__current--min" data-price-min>$247.99</span>
  10735.        -
  10736.        <span class="money price__current--max" data-price-max>$247.99</span>
  10737.      
  10738.    </div>
  10739.    <div class="price__current--hidden" data-current-price-hidden>
  10740.      <span class="visually-hidden">Current price</span>
  10741.      <span class="money" data-price>
  10742.        $247.99
  10743.      </span>
  10744.    </div>
  10745.  
  10746.  
  10747.  
  10748.    
  10749.    
  10750.    
  10751.    
  10752.  
  10753.    <div
  10754.      class="
  10755.        productitem__unit-price
  10756.        hidden
  10757.      "
  10758.      data-unit-price
  10759.    >
  10760.      <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>
  10761.    </div>
  10762.  
  10763.  
  10764.  
  10765. </div>
  10766.  
  10767.  
  10768.            </div>
  10769.  
  10770.            <div class="productitem--listview-badge">
  10771.              
  10772.  
  10773.  
  10774.  
  10775.  
  10776.  
  10777.  
  10778.  
  10779.  
  10780.  
  10781.  
  10782.  
  10783.  
  10784.  
  10785.  
  10786.  
  10787.  
  10788.  
  10789.  
  10790.  
  10791.  
  10792.  
  10793.  
  10794.  
  10795.  
  10796.  
  10797.  
  10798.  
  10799.            </div>
  10800.  
  10801.            
  10802.              <div
  10803.                class="
  10804.                  productitem--action
  10805.                  quickshop-button
  10806.                  
  10807.                "
  10808.              >
  10809.                <button
  10810.                  class="productitem--action-trigger button-secondary"
  10811.                  data-quickshop-full
  10812.                  
  10813.                  
  10814.                  type="button"
  10815.                >
  10816.                  Quick shop
  10817.                </button>
  10818.              </div>
  10819.            
  10820.  
  10821.            
  10822.              <div
  10823.                class="
  10824.                  productitem--action
  10825.                  atc--button
  10826.                  
  10827.                "
  10828.              >
  10829.                <button
  10830.                  class="productitem--action-trigger productitem--action-atc button-primary"
  10831.                  type="button"
  10832.                  aria-label="Add to cart"
  10833.                  
  10834.                    data-quick-buy
  10835.                  
  10836.                  data-variant-id="29564283224151"
  10837.                  
  10838.                >
  10839.                  <span class="atc-button--text">
  10840.                    Add to cart
  10841.                  </span>
  10842.                  <span class="atc-button--icon"><svg
  10843.  aria-hidden="true"
  10844.  focusable="false"
  10845.  role="presentation"
  10846.  width="26"
  10847.  height="26"
  10848.  viewBox="0 0 26 26"
  10849.  xmlns="http://www.w3.org/2000/svg"
  10850. >
  10851.  <g fill-rule="nonzero" fill="currentColor">
  10852.    <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"/>
  10853.  </g>
  10854. </svg></span>
  10855.                </button>
  10856.              </div>
  10857.            
  10858.          </div>
  10859.        
  10860.      
  10861.    </div>
  10862.  </div>
  10863.  
  10864.  
  10865.    <script type="application/json" data-quick-buy-settings>
  10866.      {
  10867.        "cart_redirection": true,
  10868.        "money_format": "${{amount}}"
  10869.      }
  10870.    </script>
  10871.  
  10872. </li>
  10873.    
  10874.      
  10875.  
  10876.  
  10877.  
  10878.  
  10879.  
  10880.  
  10881.  
  10882.  
  10883.  
  10884.  
  10885.  
  10886.  
  10887.  
  10888.  
  10889.  
  10890.  
  10891.  
  10892.  
  10893.  
  10894.  
  10895.  
  10896.  
  10897.  
  10898.  
  10899.  
  10900.  
  10901.  
  10902.  
  10903.  
  10904.  
  10905.  
  10906.  
  10907.    
  10908.  
  10909.  
  10910.  
  10911. <li
  10912.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  10913.  data-product-item
  10914.  data-product-quickshop-url="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10915.  
  10916. >
  10917.  <div class="productitem" data-product-item-content>
  10918.    
  10919.    
  10920.    
  10921.    
  10922.  
  10923.    
  10924.  
  10925.    
  10926.  
  10927.    <div class="productitem__container">
  10928.      
  10929.  
  10930.      <div class="productitem__image-container">
  10931.        <a target="_blank"
  10932.          class="productitem--image-link"
  10933.          href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10934.          aria-label="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10935.          tabindex="-1"
  10936.          data-product-page-link
  10937.        >
  10938.          <figure
  10939.            class="productitem--image"
  10940.            data-product-item-image
  10941.            
  10942.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10943.            
  10944.          >
  10945.            
  10946.              
  10947.              
  10948.  
  10949.  
  10950.    <noscript data-rimg-noscript>
  10951.      <img loading="lazy"
  10952.        
  10953.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10954.        
  10955.  
  10956.        alt=""
  10957.        data-rimg="noscript"
  10958.        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"
  10959.        class="productitem--image-primary"
  10960.        
  10961.        
  10962.      >
  10963.    </noscript>
  10964.  
  10965.  
  10966.  <img loading="lazy"
  10967.    
  10968.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10969.    
  10970.    alt=""
  10971.  
  10972.    
  10973.      data-rimg="lazy"
  10974.      data-rimg-scale="1"
  10975.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_{size}.jpg?v=1648053007"
  10976.      data-rimg-max="600x600"
  10977.      data-rimg-crop="false"
  10978.      
  10979.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  10980.    
  10981.  
  10982.    class="productitem--image-primary"
  10983.    
  10984.    
  10985.  >
  10986.  
  10987.  
  10988.  
  10989.  <div data-rimg-canvas></div>
  10990.  
  10991.  
  10992.            
  10993.  
  10994.            
  10995.  
  10996.  
  10997.  
  10998.  
  10999.  
  11000.  
  11001.  
  11002.  
  11003.  
  11004.  
  11005.  
  11006.  
  11007.  
  11008.  
  11009.  
  11010.  
  11011.  
  11012.  
  11013.  
  11014.  
  11015.  
  11016.  
  11017.  
  11018.  
  11019.  
  11020.  
  11021.  
  11022.          </figure>
  11023.        </a>
  11024.      </div><div class="productitem--info">
  11025.        
  11026.          
  11027.  
  11028.        
  11029.  
  11030.        
  11031.          
  11032.  
  11033.  
  11034.  
  11035.  
  11036.  
  11037.  
  11038.  
  11039.  
  11040.  
  11041.  
  11042.  
  11043.  
  11044.  
  11045.  
  11046.  
  11047.  
  11048.  
  11049.  
  11050.  
  11051.  
  11052.  
  11053.  
  11054.  
  11055.  
  11056.  
  11057.  
  11058.  
  11059.  
  11060.  
  11061.  
  11062. <div class="price productitem__price ">
  11063.  
  11064.    <div
  11065.      class="price__compare-at visible"
  11066.      data-price-compare-container
  11067.    >
  11068.  
  11069.      
  11070.        <span class="money price__original" data-price-original></span>
  11071.      
  11072.    </div>
  11073.  
  11074.  
  11075.    
  11076.      
  11077.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11078.        
  11079.          <span class="visually-hidden">Original price</span>
  11080.          <span class="money price__compare-at--min" data-price-compare-min>
  11081.            $32.99
  11082.          </span>
  11083.          -
  11084.          <span class="visually-hidden">Original price</span>
  11085.          <span class="money price__compare-at--max" data-price-compare-max>
  11086.            $32.99
  11087.          </span>
  11088.        
  11089.      </div>
  11090.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11091.        <span class="visually-hidden">Original price</span>
  11092.        <span class="money price__compare-at--single" data-price-compare>
  11093.          
  11094.        </span>
  11095.      </div>
  11096.    
  11097.  
  11098.  
  11099.  <div class="price__current price__current--emphasize " data-price-container>
  11100.  
  11101.    
  11102.  
  11103.    
  11104.      
  11105.      
  11106.      <span class="money" data-price>
  11107.        $32.99
  11108.      </span>
  11109.    
  11110.    
  11111.  </div>
  11112.  
  11113.  
  11114.    
  11115.    <div class="price__current--hidden" data-current-price-range-hidden>
  11116.      
  11117.        <span class="money price__current--min" data-price-min>$32.99</span>
  11118.        -
  11119.        <span class="money price__current--max" data-price-max>$32.99</span>
  11120.      
  11121.    </div>
  11122.    <div class="price__current--hidden" data-current-price-hidden>
  11123.      <span class="visually-hidden">Current price</span>
  11124.      <span class="money" data-price>
  11125.        $32.99
  11126.      </span>
  11127.    </div>
  11128.  
  11129.  
  11130.  
  11131.    
  11132.    
  11133.    
  11134.    
  11135.  
  11136.    <div
  11137.      class="
  11138.        productitem__unit-price
  11139.        hidden
  11140.      "
  11141.      data-unit-price
  11142.    >
  11143.      <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>
  11144.    </div>
  11145.  
  11146.  
  11147.  
  11148. </div>
  11149.  
  11150.  
  11151.        
  11152.  
  11153.        <h2 class="productitem--title">
  11154.          <a href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  11155.            5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  11156.          </a>
  11157.        </h2>
  11158.  
  11159.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  11160.        <div class="star_container 3483509915735"></div>
  11161.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  11162.  
  11163.        
  11164.          
  11165.            <span class="productitem--vendor">
  11166.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  11167.            </span>
  11168.          
  11169.        
  11170.  
  11171.        
  11172.  
  11173.        
  11174.          
  11175.            <div class="productitem__stock-level">
  11176.              <!--
  11177.  
  11178.  
  11179.  
  11180.  
  11181.  
  11182.  
  11183.  
  11184. <div class="product-stock-level-wrapper" >
  11185.  
  11186.    <span class="
  11187.  product-stock-level
  11188.  product-stock-level--continue-selling
  11189.  
  11190. ">
  11191.      
  11192.  
  11193.      <span class="product-stock-level__text">
  11194.        
  11195.        <div class="product-stock-level__badge-text">
  11196.          
  11197.  
  11198.    In stock
  11199.  
  11200.  
  11201.        </div>
  11202.      </span>
  11203.    </span>
  11204.  
  11205. </div>
  11206. -->
  11207.              
  11208.  
  11209.  
  11210.    
  11211.      <b style="color:green">In stock</b>
  11212.    
  11213.  
  11214.  
  11215.  
  11216.  
  11217.  
  11218.  
  11219.  
  11220.            </div>
  11221.          
  11222.  
  11223.          
  11224.            
  11225.          
  11226.        
  11227.  
  11228.        
  11229.          <div class="productitem--description">
  11230.            <p>Plugs directly into AC outlet.
  11231.  
  11232. Input: 100-240V ~ 50-60Hz
  11233. Output: 12V – 1.5A 18W
  11234. Connector Tip: mini USB
  11235. Colour: Black
  11236.  
  11237. Compatible Part #s: KP.01...</p>
  11238.  
  11239.            
  11240.              <a
  11241.                href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  11242.                class="productitem--link"
  11243.                data-product-page-link
  11244.              >
  11245.                View full details
  11246.              </a>
  11247.            
  11248.          </div>
  11249.        
  11250.      </div>
  11251.  
  11252.      
  11253.        
  11254.          
  11255.          
  11256.          
  11257.  
  11258.          
  11259.          
  11260.  
  11261.          
  11262.  
  11263.          
  11264.  
  11265.          <div class="productitem--actions" data-product-actions>
  11266.            <div class="productitem--listview-price">
  11267.              
  11268.  
  11269.  
  11270.  
  11271.  
  11272.  
  11273.  
  11274.  
  11275.  
  11276.  
  11277.  
  11278.  
  11279.  
  11280.  
  11281.  
  11282.  
  11283.  
  11284.  
  11285.  
  11286.  
  11287.  
  11288.  
  11289.  
  11290.  
  11291.  
  11292.  
  11293.  
  11294.  
  11295.  
  11296.  
  11297.  
  11298. <div class="price productitem__price ">
  11299.  
  11300.    <div
  11301.      class="price__compare-at visible"
  11302.      data-price-compare-container
  11303.    >
  11304.  
  11305.      
  11306.        <span class="money price__original" data-price-original></span>
  11307.      
  11308.    </div>
  11309.  
  11310.  
  11311.    
  11312.      
  11313.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11314.        
  11315.          <span class="visually-hidden">Original price</span>
  11316.          <span class="money price__compare-at--min" data-price-compare-min>
  11317.            $32.99
  11318.          </span>
  11319.          -
  11320.          <span class="visually-hidden">Original price</span>
  11321.          <span class="money price__compare-at--max" data-price-compare-max>
  11322.            $32.99
  11323.          </span>
  11324.        
  11325.      </div>
  11326.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11327.        <span class="visually-hidden">Original price</span>
  11328.        <span class="money price__compare-at--single" data-price-compare>
  11329.          
  11330.        </span>
  11331.      </div>
  11332.    
  11333.  
  11334.  
  11335.  <div class="price__current price__current--emphasize " data-price-container>
  11336.  
  11337.    
  11338.  
  11339.    
  11340.      
  11341.      
  11342.      <span class="money" data-price>
  11343.        $32.99
  11344.      </span>
  11345.    
  11346.    
  11347.  </div>
  11348.  
  11349.  
  11350.    
  11351.    <div class="price__current--hidden" data-current-price-range-hidden>
  11352.      
  11353.        <span class="money price__current--min" data-price-min>$32.99</span>
  11354.        -
  11355.        <span class="money price__current--max" data-price-max>$32.99</span>
  11356.      
  11357.    </div>
  11358.    <div class="price__current--hidden" data-current-price-hidden>
  11359.      <span class="visually-hidden">Current price</span>
  11360.      <span class="money" data-price>
  11361.        $32.99
  11362.      </span>
  11363.    </div>
  11364.  
  11365.  
  11366.  
  11367.    
  11368.    
  11369.    
  11370.    
  11371.  
  11372.    <div
  11373.      class="
  11374.        productitem__unit-price
  11375.        hidden
  11376.      "
  11377.      data-unit-price
  11378.    >
  11379.      <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>
  11380.    </div>
  11381.  
  11382.  
  11383.  
  11384. </div>
  11385.  
  11386.  
  11387.            </div>
  11388.  
  11389.            <div class="productitem--listview-badge">
  11390.              
  11391.  
  11392.  
  11393.  
  11394.  
  11395.  
  11396.  
  11397.  
  11398.  
  11399.  
  11400.  
  11401.  
  11402.  
  11403.  
  11404.  
  11405.  
  11406.  
  11407.  
  11408.  
  11409.  
  11410.  
  11411.  
  11412.  
  11413.  
  11414.  
  11415.  
  11416.  
  11417.  
  11418.            </div>
  11419.  
  11420.            
  11421.              <div
  11422.                class="
  11423.                  productitem--action
  11424.                  quickshop-button
  11425.                  
  11426.                "
  11427.              >
  11428.                <button
  11429.                  class="productitem--action-trigger button-secondary"
  11430.                  data-quickshop-full
  11431.                  
  11432.                  
  11433.                  type="button"
  11434.                >
  11435.                  Quick shop
  11436.                </button>
  11437.              </div>
  11438.            
  11439.  
  11440.            
  11441.              <div
  11442.                class="
  11443.                  productitem--action
  11444.                  atc--button
  11445.                  
  11446.                "
  11447.              >
  11448.                <button
  11449.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11450.                  type="button"
  11451.                  aria-label="Add to cart"
  11452.                  
  11453.                    data-quick-buy
  11454.                  
  11455.                  data-variant-id="39666212831319"
  11456.                  
  11457.                >
  11458.                  <span class="atc-button--text">
  11459.                    Add to cart
  11460.                  </span>
  11461.                  <span class="atc-button--icon"><svg
  11462.  aria-hidden="true"
  11463.  focusable="false"
  11464.  role="presentation"
  11465.  width="26"
  11466.  height="26"
  11467.  viewBox="0 0 26 26"
  11468.  xmlns="http://www.w3.org/2000/svg"
  11469. >
  11470.  <g fill-rule="nonzero" fill="currentColor">
  11471.    <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"/>
  11472.  </g>
  11473. </svg></span>
  11474.                </button>
  11475.              </div>
  11476.            
  11477.          </div>
  11478.        
  11479.      
  11480.    </div>
  11481.  </div>
  11482.  
  11483.  
  11484.    <script type="application/json" data-quick-buy-settings>
  11485.      {
  11486.        "cart_redirection": true,
  11487.        "money_format": "${{amount}}"
  11488.      }
  11489.    </script>
  11490.  
  11491. </li>
  11492.    
  11493.      
  11494.  
  11495.  
  11496.  
  11497.  
  11498.  
  11499.  
  11500.  
  11501.  
  11502.  
  11503.  
  11504.  
  11505.  
  11506.  
  11507.  
  11508.  
  11509.  
  11510.  
  11511.  
  11512.  
  11513.  
  11514.  
  11515.  
  11516.  
  11517.  
  11518.  
  11519.  
  11520.  
  11521.  
  11522.  
  11523.  
  11524.  
  11525.  
  11526.    
  11527.  
  11528.  
  11529.  
  11530. <li
  11531.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11532.  data-product-item
  11533.  data-product-quickshop-url="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11534.  
  11535. >
  11536.  <div class="productitem" data-product-item-content>
  11537.    
  11538.    
  11539.    
  11540.    
  11541.  
  11542.    
  11543.  
  11544.    
  11545.  
  11546.    <div class="productitem__container">
  11547.      
  11548.  
  11549.      <div class="productitem__image-container">
  11550.        <a target="_blank"
  11551.          class="productitem--image-link"
  11552.          href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11553.          aria-label="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11554.          tabindex="-1"
  11555.          data-product-page-link
  11556.        >
  11557.          <figure
  11558.            class="productitem--image"
  11559.            data-product-item-image
  11560.            
  11561.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11562.            
  11563.          >
  11564.            
  11565.              
  11566.              
  11567.  
  11568.  
  11569.    <noscript data-rimg-noscript>
  11570.      <img loading="lazy"
  11571.        
  11572.          src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11573.        
  11574.  
  11575.        alt=""
  11576.        data-rimg="noscript"
  11577.        srcset="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863 1x"
  11578.        class="productitem--image-primary"
  11579.        
  11580.        
  11581.      >
  11582.    </noscript>
  11583.  
  11584.  
  11585.  <img loading="lazy"
  11586.    
  11587.      src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11588.    
  11589.    alt=""
  11590.  
  11591.    
  11592.      data-rimg="lazy"
  11593.      data-rimg-scale="1"
  11594.      data-rimg-template="//laptopparts.ca/cdn/shop/products/8291_{size}.jpg?v=1648090863"
  11595.      data-rimg-max="500x500"
  11596.      data-rimg-crop="false"
  11597.      
  11598.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  11599.    
  11600.  
  11601.    class="productitem--image-primary"
  11602.    
  11603.    
  11604.  >
  11605.  
  11606.  
  11607.  
  11608.  <div data-rimg-canvas></div>
  11609.  
  11610.  
  11611.            
  11612.  
  11613.            
  11614.  
  11615.  
  11616.  
  11617.  
  11618.  
  11619.  
  11620.  
  11621.  
  11622.  
  11623.  
  11624.  
  11625.  
  11626.  
  11627.  
  11628.  
  11629.  
  11630.  
  11631.  
  11632.  
  11633.  
  11634.  
  11635.  
  11636.  
  11637.  
  11638.  
  11639.  
  11640.  
  11641.          </figure>
  11642.        </a>
  11643.      </div><div class="productitem--info">
  11644.        
  11645.          
  11646.  
  11647.        
  11648.  
  11649.        
  11650.          
  11651.  
  11652.  
  11653.  
  11654.  
  11655.  
  11656.  
  11657.  
  11658.  
  11659.  
  11660.  
  11661.  
  11662.  
  11663.  
  11664.  
  11665.  
  11666.  
  11667.  
  11668.  
  11669.  
  11670.  
  11671.  
  11672.  
  11673.  
  11674.  
  11675.  
  11676.  
  11677.  
  11678.  
  11679.  
  11680.  
  11681. <div class="price productitem__price ">
  11682.  
  11683.    <div
  11684.      class="price__compare-at visible"
  11685.      data-price-compare-container
  11686.    >
  11687.  
  11688.      
  11689.        <span class="money price__original" data-price-original></span>
  11690.      
  11691.    </div>
  11692.  
  11693.  
  11694.    
  11695.      
  11696.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11697.        
  11698.          <span class="visually-hidden">Original price</span>
  11699.          <span class="money price__compare-at--min" data-price-compare-min>
  11700.            $100.99
  11701.          </span>
  11702.          -
  11703.          <span class="visually-hidden">Original price</span>
  11704.          <span class="money price__compare-at--max" data-price-compare-max>
  11705.            $100.99
  11706.          </span>
  11707.        
  11708.      </div>
  11709.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11710.        <span class="visually-hidden">Original price</span>
  11711.        <span class="money price__compare-at--single" data-price-compare>
  11712.          
  11713.        </span>
  11714.      </div>
  11715.    
  11716.  
  11717.  
  11718.  <div class="price__current price__current--emphasize " data-price-container>
  11719.  
  11720.    
  11721.  
  11722.    
  11723.      
  11724.      
  11725.      <span class="money" data-price>
  11726.        $100.99
  11727.      </span>
  11728.    
  11729.    
  11730.  </div>
  11731.  
  11732.  
  11733.    
  11734.    <div class="price__current--hidden" data-current-price-range-hidden>
  11735.      
  11736.        <span class="money price__current--min" data-price-min>$100.99</span>
  11737.        -
  11738.        <span class="money price__current--max" data-price-max>$100.99</span>
  11739.      
  11740.    </div>
  11741.    <div class="price__current--hidden" data-current-price-hidden>
  11742.      <span class="visually-hidden">Current price</span>
  11743.      <span class="money" data-price>
  11744.        $100.99
  11745.      </span>
  11746.    </div>
  11747.  
  11748.  
  11749.  
  11750.    
  11751.    
  11752.    
  11753.    
  11754.  
  11755.    <div
  11756.      class="
  11757.        productitem__unit-price
  11758.        hidden
  11759.      "
  11760.      data-unit-price
  11761.    >
  11762.      <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>
  11763.    </div>
  11764.  
  11765.  
  11766.  
  11767. </div>
  11768.  
  11769.  
  11770.        
  11771.  
  11772.        <h2 class="productitem--title">
  11773.          <a href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a" data-product-page-link>
  11774.            5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A
  11775.          </a>
  11776.        </h2>
  11777.  
  11778.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  11779.        <div class="star_container 592337698839"></div>
  11780.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  11781.  
  11782.        
  11783.          
  11784.            <span class="productitem--vendor">
  11785.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  11786.            </span>
  11787.          
  11788.        
  11789.  
  11790.        
  11791.  
  11792.        
  11793.          
  11794.            <div class="productitem__stock-level">
  11795.              <!--
  11796.  
  11797.  
  11798.  
  11799.  
  11800.  
  11801.  
  11802.  
  11803. <div class="product-stock-level-wrapper" >
  11804.  
  11805.    <span class="
  11806.  product-stock-level
  11807.  product-stock-level--continue-selling
  11808.  
  11809. ">
  11810.      
  11811.  
  11812.      <span class="product-stock-level__text">
  11813.        
  11814.        <div class="product-stock-level__badge-text">
  11815.          
  11816.  
  11817.    In stock
  11818.  
  11819.  
  11820.        </div>
  11821.      </span>
  11822.    </span>
  11823.  
  11824. </div>
  11825. -->
  11826.              
  11827.  
  11828.  
  11829.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  11830.  
  11831.  
  11832.  
  11833.  
  11834.            </div>
  11835.          
  11836.  
  11837.          
  11838.            
  11839.          
  11840.        
  11841.  
  11842.        
  11843.          <div class="productitem--description">
  11844.            <p>
  11845. Description: 5 slot printhead for select HP printers. This item is refurbished.  Compatible Part #'s: CB326-30002, CN642A.  Compatible Models: HP ...</p>
  11846.  
  11847.            
  11848.              <a
  11849.                href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11850.                class="productitem--link"
  11851.                data-product-page-link
  11852.              >
  11853.                View full details
  11854.              </a>
  11855.            
  11856.          </div>
  11857.        
  11858.      </div>
  11859.  
  11860.      
  11861.        
  11862.          
  11863.          
  11864.          
  11865.  
  11866.          
  11867.          
  11868.  
  11869.          
  11870.  
  11871.          
  11872.  
  11873.          <div class="productitem--actions" data-product-actions>
  11874.            <div class="productitem--listview-price">
  11875.              
  11876.  
  11877.  
  11878.  
  11879.  
  11880.  
  11881.  
  11882.  
  11883.  
  11884.  
  11885.  
  11886.  
  11887.  
  11888.  
  11889.  
  11890.  
  11891.  
  11892.  
  11893.  
  11894.  
  11895.  
  11896.  
  11897.  
  11898.  
  11899.  
  11900.  
  11901.  
  11902.  
  11903.  
  11904.  
  11905.  
  11906. <div class="price productitem__price ">
  11907.  
  11908.    <div
  11909.      class="price__compare-at visible"
  11910.      data-price-compare-container
  11911.    >
  11912.  
  11913.      
  11914.        <span class="money price__original" data-price-original></span>
  11915.      
  11916.    </div>
  11917.  
  11918.  
  11919.    
  11920.      
  11921.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11922.        
  11923.          <span class="visually-hidden">Original price</span>
  11924.          <span class="money price__compare-at--min" data-price-compare-min>
  11925.            $100.99
  11926.          </span>
  11927.          -
  11928.          <span class="visually-hidden">Original price</span>
  11929.          <span class="money price__compare-at--max" data-price-compare-max>
  11930.            $100.99
  11931.          </span>
  11932.        
  11933.      </div>
  11934.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11935.        <span class="visually-hidden">Original price</span>
  11936.        <span class="money price__compare-at--single" data-price-compare>
  11937.          
  11938.        </span>
  11939.      </div>
  11940.    
  11941.  
  11942.  
  11943.  <div class="price__current price__current--emphasize " data-price-container>
  11944.  
  11945.    
  11946.  
  11947.    
  11948.      
  11949.      
  11950.      <span class="money" data-price>
  11951.        $100.99
  11952.      </span>
  11953.    
  11954.    
  11955.  </div>
  11956.  
  11957.  
  11958.    
  11959.    <div class="price__current--hidden" data-current-price-range-hidden>
  11960.      
  11961.        <span class="money price__current--min" data-price-min>$100.99</span>
  11962.        -
  11963.        <span class="money price__current--max" data-price-max>$100.99</span>
  11964.      
  11965.    </div>
  11966.    <div class="price__current--hidden" data-current-price-hidden>
  11967.      <span class="visually-hidden">Current price</span>
  11968.      <span class="money" data-price>
  11969.        $100.99
  11970.      </span>
  11971.    </div>
  11972.  
  11973.  
  11974.  
  11975.    
  11976.    
  11977.    
  11978.    
  11979.  
  11980.    <div
  11981.      class="
  11982.        productitem__unit-price
  11983.        hidden
  11984.      "
  11985.      data-unit-price
  11986.    >
  11987.      <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>
  11988.    </div>
  11989.  
  11990.  
  11991.  
  11992. </div>
  11993.  
  11994.  
  11995.            </div>
  11996.  
  11997.            <div class="productitem--listview-badge">
  11998.              
  11999.  
  12000.  
  12001.  
  12002.  
  12003.  
  12004.  
  12005.  
  12006.  
  12007.  
  12008.  
  12009.  
  12010.  
  12011.  
  12012.  
  12013.  
  12014.  
  12015.  
  12016.  
  12017.  
  12018.  
  12019.  
  12020.  
  12021.  
  12022.  
  12023.  
  12024.  
  12025.  
  12026.            </div>
  12027.  
  12028.            
  12029.              <div
  12030.                class="
  12031.                  productitem--action
  12032.                  quickshop-button
  12033.                  
  12034.                "
  12035.              >
  12036.                <button
  12037.                  class="productitem--action-trigger button-secondary"
  12038.                  data-quickshop-full
  12039.                  
  12040.                  
  12041.                  type="button"
  12042.                >
  12043.                  Quick shop
  12044.                </button>
  12045.              </div>
  12046.            
  12047.  
  12048.            
  12049.              <div
  12050.                class="
  12051.                  productitem--action
  12052.                  atc--button
  12053.                  
  12054.                "
  12055.              >
  12056.                <button
  12057.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12058.                  type="button"
  12059.                  aria-label="Add to cart"
  12060.                  
  12061.                    data-quick-buy
  12062.                  
  12063.                  data-variant-id="6936707596311"
  12064.                  
  12065.                >
  12066.                  <span class="atc-button--text">
  12067.                    Add to cart
  12068.                  </span>
  12069.                  <span class="atc-button--icon"><svg
  12070.  aria-hidden="true"
  12071.  focusable="false"
  12072.  role="presentation"
  12073.  width="26"
  12074.  height="26"
  12075.  viewBox="0 0 26 26"
  12076.  xmlns="http://www.w3.org/2000/svg"
  12077. >
  12078.  <g fill-rule="nonzero" fill="currentColor">
  12079.    <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"/>
  12080.  </g>
  12081. </svg></span>
  12082.                </button>
  12083.              </div>
  12084.            
  12085.          </div>
  12086.        
  12087.      
  12088.    </div>
  12089.  </div>
  12090.  
  12091.  
  12092.    <script type="application/json" data-quick-buy-settings>
  12093.      {
  12094.        "cart_redirection": true,
  12095.        "money_format": "${{amount}}"
  12096.      }
  12097.    </script>
  12098.  
  12099. </li>
  12100.    
  12101.      
  12102.  
  12103.  
  12104.  
  12105.  
  12106.  
  12107.  
  12108.  
  12109.  
  12110.  
  12111.  
  12112.  
  12113.  
  12114.  
  12115.  
  12116.  
  12117.  
  12118.  
  12119.  
  12120.  
  12121.  
  12122.  
  12123.  
  12124.  
  12125.  
  12126.  
  12127.  
  12128.  
  12129.  
  12130.  
  12131.  
  12132.  
  12133.  
  12134.    
  12135.  
  12136.  
  12137.  
  12138. <li
  12139.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  12140.  data-product-item
  12141.  data-product-quickshop-url="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  12142.  
  12143. >
  12144.  <div class="productitem" data-product-item-content>
  12145.    
  12146.    
  12147.    
  12148.    
  12149.  
  12150.    
  12151.  
  12152.    
  12153.  
  12154.    <div class="productitem__container">
  12155.      
  12156.  
  12157.      <div class="productitem__image-container">
  12158.        <a target="_blank"
  12159.          class="productitem--image-link"
  12160.          href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  12161.          aria-label="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  12162.          tabindex="-1"
  12163.          data-product-page-link
  12164.        >
  12165.          <figure
  12166.            class="productitem--image"
  12167.            data-product-item-image
  12168.            
  12169.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  12170.            
  12171.          >
  12172.            
  12173.              
  12174.              
  12175.  
  12176.  
  12177.    <noscript data-rimg-noscript>
  12178.      <img loading="lazy"
  12179.        
  12180.          src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  12181.        
  12182.  
  12183.        alt=""
  12184.        data-rimg="noscript"
  12185.        srcset="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253 1x, //laptopparts.ca/cdn/shop/products/500gb_998x998.jpg?v=1697125253 1.95x"
  12186.        class="productitem--image-primary"
  12187.        
  12188.        
  12189.      >
  12190.    </noscript>
  12191.  
  12192.  
  12193.  <img loading="lazy"
  12194.    
  12195.      src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  12196.    
  12197.    alt=""
  12198.  
  12199.    
  12200.      data-rimg="lazy"
  12201.      data-rimg-scale="1"
  12202.      data-rimg-template="//laptopparts.ca/cdn/shop/products/500gb_{size}.jpg?v=1697125253"
  12203.      data-rimg-max="1000x1000"
  12204.      data-rimg-crop="false"
  12205.      
  12206.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  12207.    
  12208.  
  12209.    class="productitem--image-primary"
  12210.    
  12211.    
  12212.  >
  12213.  
  12214.  
  12215.  
  12216.  <div data-rimg-canvas></div>
  12217.  
  12218.  
  12219.            
  12220.  
  12221.            
  12222.  
  12223.  
  12224.  
  12225.  
  12226.  
  12227.  
  12228.  
  12229.  
  12230.  
  12231.  
  12232.  
  12233.  
  12234.  
  12235.  
  12236.  
  12237.  
  12238.  
  12239.  
  12240.  
  12241.  
  12242.  
  12243.  
  12244.  
  12245.  
  12246.  
  12247.  
  12248.  
  12249.          </figure>
  12250.        </a>
  12251.      </div><div class="productitem--info">
  12252.        
  12253.          
  12254.  
  12255.        
  12256.  
  12257.        
  12258.          
  12259.  
  12260.  
  12261.  
  12262.  
  12263.  
  12264.  
  12265.  
  12266.  
  12267.  
  12268.  
  12269.  
  12270.  
  12271.  
  12272.  
  12273.  
  12274.  
  12275.  
  12276.  
  12277.  
  12278.  
  12279.  
  12280.  
  12281.  
  12282.  
  12283.  
  12284.  
  12285.  
  12286.  
  12287.  
  12288.  
  12289. <div class="price productitem__price ">
  12290.  
  12291.    <div
  12292.      class="price__compare-at visible"
  12293.      data-price-compare-container
  12294.    >
  12295.  
  12296.      
  12297.        <span class="money price__original" data-price-original></span>
  12298.      
  12299.    </div>
  12300.  
  12301.  
  12302.    
  12303.      
  12304.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12305.        
  12306.          <span class="visually-hidden">Original price</span>
  12307.          <span class="money price__compare-at--min" data-price-compare-min>
  12308.            $56.99
  12309.          </span>
  12310.          -
  12311.          <span class="visually-hidden">Original price</span>
  12312.          <span class="money price__compare-at--max" data-price-compare-max>
  12313.            $56.99
  12314.          </span>
  12315.        
  12316.      </div>
  12317.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12318.        <span class="visually-hidden">Original price</span>
  12319.        <span class="money price__compare-at--single" data-price-compare>
  12320.          
  12321.        </span>
  12322.      </div>
  12323.    
  12324.  
  12325.  
  12326.  <div class="price__current price__current--emphasize " data-price-container>
  12327.  
  12328.    
  12329.  
  12330.    
  12331.      
  12332.      
  12333.      <span class="money" data-price>
  12334.        $56.99
  12335.      </span>
  12336.    
  12337.    
  12338.  </div>
  12339.  
  12340.  
  12341.    
  12342.    <div class="price__current--hidden" data-current-price-range-hidden>
  12343.      
  12344.        <span class="money price__current--min" data-price-min>$56.99</span>
  12345.        -
  12346.        <span class="money price__current--max" data-price-max>$56.99</span>
  12347.      
  12348.    </div>
  12349.    <div class="price__current--hidden" data-current-price-hidden>
  12350.      <span class="visually-hidden">Current price</span>
  12351.      <span class="money" data-price>
  12352.        $56.99
  12353.      </span>
  12354.    </div>
  12355.  
  12356.  
  12357.  
  12358.    
  12359.    
  12360.    
  12361.    
  12362.  
  12363.    <div
  12364.      class="
  12365.        productitem__unit-price
  12366.        hidden
  12367.      "
  12368.      data-unit-price
  12369.    >
  12370.      <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>
  12371.    </div>
  12372.  
  12373.  
  12374.  
  12375. </div>
  12376.  
  12377.  
  12378.        
  12379.  
  12380.        <h2 class="productitem--title">
  12381.          <a href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo" data-product-page-link>
  12382.            500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo
  12383.          </a>
  12384.        </h2>
  12385.  
  12386.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12387.        <div class="star_container 1362179063831"></div>
  12388.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12389.  
  12390.        
  12391.          
  12392.            <span class="productitem--vendor">
  12393.              <a href="/collections/vendors?q=Lenovo" title="Lenovo">Lenovo</a>
  12394.            </span>
  12395.          
  12396.        
  12397.  
  12398.        
  12399.  
  12400.        
  12401.          
  12402.            <div class="productitem__stock-level">
  12403.              <!--
  12404.  
  12405.  
  12406.  
  12407.  
  12408.  
  12409.  
  12410.  
  12411. <div class="product-stock-level-wrapper" >
  12412.  
  12413.    <span class="
  12414.  product-stock-level
  12415.  product-stock-level--continue-selling
  12416.  
  12417. ">
  12418.      
  12419.  
  12420.      <span class="product-stock-level__text">
  12421.        
  12422.        <div class="product-stock-level__badge-text">
  12423.          
  12424.  
  12425.    In stock
  12426.  
  12427.  
  12428.        </div>
  12429.      </span>
  12430.    </span>
  12431.  
  12432. </div>
  12433. -->
  12434.              
  12435.  
  12436.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12437.  
  12438.  
  12439.  
  12440.  
  12441.  
  12442.  
  12443.  
  12444.            </div>
  12445.          
  12446.  
  12447.          
  12448.            
  12449.          
  12450.        
  12451.  
  12452.        
  12453.          <div class="productitem--description">
  12454.            <p>500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo</p>
  12455.  
  12456.            
  12457.          </div>
  12458.        
  12459.      </div>
  12460.  
  12461.      
  12462.        
  12463.          
  12464.          
  12465.          
  12466.  
  12467.          
  12468.          
  12469.  
  12470.          
  12471.  
  12472.          
  12473.  
  12474.          <div class="productitem--actions" data-product-actions>
  12475.            <div class="productitem--listview-price">
  12476.              
  12477.  
  12478.  
  12479.  
  12480.  
  12481.  
  12482.  
  12483.  
  12484.  
  12485.  
  12486.  
  12487.  
  12488.  
  12489.  
  12490.  
  12491.  
  12492.  
  12493.  
  12494.  
  12495.  
  12496.  
  12497.  
  12498.  
  12499.  
  12500.  
  12501.  
  12502.  
  12503.  
  12504.  
  12505.  
  12506.  
  12507. <div class="price productitem__price ">
  12508.  
  12509.    <div
  12510.      class="price__compare-at visible"
  12511.      data-price-compare-container
  12512.    >
  12513.  
  12514.      
  12515.        <span class="money price__original" data-price-original></span>
  12516.      
  12517.    </div>
  12518.  
  12519.  
  12520.    
  12521.      
  12522.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12523.        
  12524.          <span class="visually-hidden">Original price</span>
  12525.          <span class="money price__compare-at--min" data-price-compare-min>
  12526.            $56.99
  12527.          </span>
  12528.          -
  12529.          <span class="visually-hidden">Original price</span>
  12530.          <span class="money price__compare-at--max" data-price-compare-max>
  12531.            $56.99
  12532.          </span>
  12533.        
  12534.      </div>
  12535.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12536.        <span class="visually-hidden">Original price</span>
  12537.        <span class="money price__compare-at--single" data-price-compare>
  12538.          
  12539.        </span>
  12540.      </div>
  12541.    
  12542.  
  12543.  
  12544.  <div class="price__current price__current--emphasize " data-price-container>
  12545.  
  12546.    
  12547.  
  12548.    
  12549.      
  12550.      
  12551.      <span class="money" data-price>
  12552.        $56.99
  12553.      </span>
  12554.    
  12555.    
  12556.  </div>
  12557.  
  12558.  
  12559.    
  12560.    <div class="price__current--hidden" data-current-price-range-hidden>
  12561.      
  12562.        <span class="money price__current--min" data-price-min>$56.99</span>
  12563.        -
  12564.        <span class="money price__current--max" data-price-max>$56.99</span>
  12565.      
  12566.    </div>
  12567.    <div class="price__current--hidden" data-current-price-hidden>
  12568.      <span class="visually-hidden">Current price</span>
  12569.      <span class="money" data-price>
  12570.        $56.99
  12571.      </span>
  12572.    </div>
  12573.  
  12574.  
  12575.  
  12576.    
  12577.    
  12578.    
  12579.    
  12580.  
  12581.    <div
  12582.      class="
  12583.        productitem__unit-price
  12584.        hidden
  12585.      "
  12586.      data-unit-price
  12587.    >
  12588.      <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>
  12589.    </div>
  12590.  
  12591.  
  12592.  
  12593. </div>
  12594.  
  12595.  
  12596.            </div>
  12597.  
  12598.            <div class="productitem--listview-badge">
  12599.              
  12600.  
  12601.  
  12602.  
  12603.  
  12604.  
  12605.  
  12606.  
  12607.  
  12608.  
  12609.  
  12610.  
  12611.  
  12612.  
  12613.  
  12614.  
  12615.  
  12616.  
  12617.  
  12618.  
  12619.  
  12620.  
  12621.  
  12622.  
  12623.  
  12624.  
  12625.  
  12626.  
  12627.            </div>
  12628.  
  12629.            
  12630.              <div
  12631.                class="
  12632.                  productitem--action
  12633.                  quickshop-button
  12634.                  
  12635.                "
  12636.              >
  12637.                <button
  12638.                  class="productitem--action-trigger button-secondary"
  12639.                  data-quickshop-full
  12640.                  
  12641.                  
  12642.                  type="button"
  12643.                >
  12644.                  Quick shop
  12645.                </button>
  12646.              </div>
  12647.            
  12648.  
  12649.            
  12650.              <div
  12651.                class="
  12652.                  productitem--action
  12653.                  atc--button
  12654.                  
  12655.                "
  12656.              >
  12657.                <button
  12658.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12659.                  type="button"
  12660.                  aria-label="Add to cart"
  12661.                  
  12662.                    data-quick-buy
  12663.                  
  12664.                  data-variant-id="12366737309719"
  12665.                  
  12666.                >
  12667.                  <span class="atc-button--text">
  12668.                    Add to cart
  12669.                  </span>
  12670.                  <span class="atc-button--icon"><svg
  12671.  aria-hidden="true"
  12672.  focusable="false"
  12673.  role="presentation"
  12674.  width="26"
  12675.  height="26"
  12676.  viewBox="0 0 26 26"
  12677.  xmlns="http://www.w3.org/2000/svg"
  12678. >
  12679.  <g fill-rule="nonzero" fill="currentColor">
  12680.    <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"/>
  12681.  </g>
  12682. </svg></span>
  12683.                </button>
  12684.              </div>
  12685.            
  12686.          </div>
  12687.        
  12688.      
  12689.    </div>
  12690.  </div>
  12691.  
  12692.  
  12693.    <script type="application/json" data-quick-buy-settings>
  12694.      {
  12695.        "cart_redirection": true,
  12696.        "money_format": "${{amount}}"
  12697.      }
  12698.    </script>
  12699.  
  12700. </li>
  12701.    
  12702.      
  12703.  
  12704.  
  12705.  
  12706.  
  12707.  
  12708.  
  12709.  
  12710.  
  12711.  
  12712.  
  12713.  
  12714.  
  12715.  
  12716.  
  12717.  
  12718.  
  12719.  
  12720.  
  12721.  
  12722.  
  12723.  
  12724.  
  12725.  
  12726.  
  12727.  
  12728.  
  12729.  
  12730.  
  12731.  
  12732.  
  12733.  
  12734.  
  12735.    
  12736.  
  12737.  
  12738.  
  12739. <li
  12740.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  12741.  data-product-item
  12742.  data-product-quickshop-url="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12743.  
  12744. >
  12745.  <div class="productitem" data-product-item-content>
  12746.    
  12747.    
  12748.    
  12749.    
  12750.  
  12751.    
  12752.  
  12753.    
  12754.  
  12755.    <div class="productitem__container">
  12756.      
  12757.  
  12758.      <div class="productitem__image-container">
  12759.        <a target="_blank"
  12760.          class="productitem--image-link"
  12761.          href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12762.          aria-label="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12763.          tabindex="-1"
  12764.          data-product-page-link
  12765.        >
  12766.          <figure
  12767.            class="productitem--image"
  12768.            data-product-item-image
  12769.            
  12770.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  12771.            
  12772.          >
  12773.            
  12774.              
  12775.              
  12776.  
  12777.  
  12778.    <noscript data-rimg-noscript>
  12779.      <img loading="lazy"
  12780.        
  12781.          src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12782.        
  12783.  
  12784.        alt=""
  12785.        data-rimg="noscript"
  12786.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700 1x"
  12787.        class="productitem--image-primary"
  12788.        
  12789.        
  12790.      >
  12791.    </noscript>
  12792.  
  12793.  
  12794.  <img loading="lazy"
  12795.    
  12796.      src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12797.    
  12798.    alt=""
  12799.  
  12800.    
  12801.      data-rimg="lazy"
  12802.      data-rimg-scale="1"
  12803.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_{size}.jpg?v=1648042700"
  12804.      data-rimg-max="500x500"
  12805.      data-rimg-crop="false"
  12806.      
  12807.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  12808.    
  12809.  
  12810.    class="productitem--image-primary"
  12811.    
  12812.    
  12813.  >
  12814.  
  12815.  
  12816.  
  12817.  <div data-rimg-canvas></div>
  12818.  
  12819.  
  12820.            
  12821.  
  12822.            
  12823.  
  12824.  
  12825.  
  12826.  
  12827.  
  12828.  
  12829.  
  12830.  
  12831.  
  12832.  
  12833.  
  12834.  
  12835.  
  12836.  
  12837.  
  12838.  
  12839.  
  12840.  
  12841.  
  12842.  
  12843.  
  12844.  
  12845.  
  12846.  
  12847.  
  12848.  
  12849.  
  12850.          </figure>
  12851.        </a>
  12852.      </div><div class="productitem--info">
  12853.        
  12854.          
  12855.  
  12856.        
  12857.  
  12858.        
  12859.          
  12860.  
  12861.  
  12862.  
  12863.  
  12864.  
  12865.  
  12866.  
  12867.  
  12868.  
  12869.  
  12870.  
  12871.  
  12872.  
  12873.  
  12874.  
  12875.  
  12876.  
  12877.  
  12878.  
  12879.  
  12880.  
  12881.  
  12882.  
  12883.  
  12884.  
  12885.  
  12886.  
  12887.  
  12888.  
  12889.  
  12890. <div class="price productitem__price ">
  12891.  
  12892.    <div
  12893.      class="price__compare-at visible"
  12894.      data-price-compare-container
  12895.    >
  12896.  
  12897.      
  12898.        <span class="money price__original" data-price-original></span>
  12899.      
  12900.    </div>
  12901.  
  12902.  
  12903.    
  12904.      
  12905.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12906.        
  12907.          <span class="visually-hidden">Original price</span>
  12908.          <span class="money price__compare-at--min" data-price-compare-min>
  12909.            $48.99
  12910.          </span>
  12911.          -
  12912.          <span class="visually-hidden">Original price</span>
  12913.          <span class="money price__compare-at--max" data-price-compare-max>
  12914.            $48.99
  12915.          </span>
  12916.        
  12917.      </div>
  12918.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12919.        <span class="visually-hidden">Original price</span>
  12920.        <span class="money price__compare-at--single" data-price-compare>
  12921.          
  12922.        </span>
  12923.      </div>
  12924.    
  12925.  
  12926.  
  12927.  <div class="price__current price__current--emphasize " data-price-container>
  12928.  
  12929.    
  12930.  
  12931.    
  12932.      
  12933.      
  12934.      <span class="money" data-price>
  12935.        $48.99
  12936.      </span>
  12937.    
  12938.    
  12939.  </div>
  12940.  
  12941.  
  12942.    
  12943.    <div class="price__current--hidden" data-current-price-range-hidden>
  12944.      
  12945.        <span class="money price__current--min" data-price-min>$48.99</span>
  12946.        -
  12947.        <span class="money price__current--max" data-price-max>$48.99</span>
  12948.      
  12949.    </div>
  12950.    <div class="price__current--hidden" data-current-price-hidden>
  12951.      <span class="visually-hidden">Current price</span>
  12952.      <span class="money" data-price>
  12953.        $48.99
  12954.      </span>
  12955.    </div>
  12956.  
  12957.  
  12958.  
  12959.    
  12960.    
  12961.    
  12962.    
  12963.  
  12964.    <div
  12965.      class="
  12966.        productitem__unit-price
  12967.        hidden
  12968.      "
  12969.      data-unit-price
  12970.    >
  12971.      <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>
  12972.    </div>
  12973.  
  12974.  
  12975.  
  12976. </div>
  12977.  
  12978.  
  12979.        
  12980.  
  12981.        <h2 class="productitem--title">
  12982.          <a href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10" data-product-page-link>
  12983.            4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10
  12984.          </a>
  12985.        </h2>
  12986.  
  12987.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12988.        <div class="star_container 3929813123159"></div>
  12989.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12990.  
  12991.        
  12992.          
  12993.            <span class="productitem--vendor">
  12994.              <a href="/collections/vendors?q=Dell" title="Dell">Dell</a>
  12995.            </span>
  12996.          
  12997.        
  12998.  
  12999.        
  13000.  
  13001.        
  13002.          
  13003.            <div class="productitem__stock-level">
  13004.              <!--
  13005.  
  13006.  
  13007.  
  13008.  
  13009.  
  13010.  
  13011.  
  13012. <div class="product-stock-level-wrapper" >
  13013.  
  13014.    <span class="
  13015.  product-stock-level
  13016.  product-stock-level--continue-selling
  13017.  
  13018. ">
  13019.      
  13020.  
  13021.      <span class="product-stock-level__text">
  13022.        
  13023.        <div class="product-stock-level__badge-text">
  13024.          
  13025.  
  13026.    In stock
  13027.  
  13028.  
  13029.        </div>
  13030.      </span>
  13031.    </span>
  13032.  
  13033. </div>
  13034. -->
  13035.              
  13036.  
  13037.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  13038.  
  13039.  
  13040.  
  13041.  
  13042.  
  13043.  
  13044.  
  13045.            </div>
  13046.          
  13047.  
  13048.          
  13049.            
  13050.          
  13051.        
  13052.  
  13053.        
  13054.          <div class="productitem--description">
  13055.            <p>
  13056. 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>
  13057.  
  13058.            
  13059.              <a
  13060.                href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  13061.                class="productitem--link"
  13062.                data-product-page-link
  13063.              >
  13064.                View full details
  13065.              </a>
  13066.            
  13067.          </div>
  13068.        
  13069.      </div>
  13070.  
  13071.      
  13072.        
  13073.          
  13074.          
  13075.          
  13076.  
  13077.          
  13078.          
  13079.  
  13080.          
  13081.  
  13082.          
  13083.  
  13084.          <div class="productitem--actions" data-product-actions>
  13085.            <div class="productitem--listview-price">
  13086.              
  13087.  
  13088.  
  13089.  
  13090.  
  13091.  
  13092.  
  13093.  
  13094.  
  13095.  
  13096.  
  13097.  
  13098.  
  13099.  
  13100.  
  13101.  
  13102.  
  13103.  
  13104.  
  13105.  
  13106.  
  13107.  
  13108.  
  13109.  
  13110.  
  13111.  
  13112.  
  13113.  
  13114.  
  13115.  
  13116.  
  13117. <div class="price productitem__price ">
  13118.  
  13119.    <div
  13120.      class="price__compare-at visible"
  13121.      data-price-compare-container
  13122.    >
  13123.  
  13124.      
  13125.        <span class="money price__original" data-price-original></span>
  13126.      
  13127.    </div>
  13128.  
  13129.  
  13130.    
  13131.      
  13132.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13133.        
  13134.          <span class="visually-hidden">Original price</span>
  13135.          <span class="money price__compare-at--min" data-price-compare-min>
  13136.            $48.99
  13137.          </span>
  13138.          -
  13139.          <span class="visually-hidden">Original price</span>
  13140.          <span class="money price__compare-at--max" data-price-compare-max>
  13141.            $48.99
  13142.          </span>
  13143.        
  13144.      </div>
  13145.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13146.        <span class="visually-hidden">Original price</span>
  13147.        <span class="money price__compare-at--single" data-price-compare>
  13148.          
  13149.        </span>
  13150.      </div>
  13151.    
  13152.  
  13153.  
  13154.  <div class="price__current price__current--emphasize " data-price-container>
  13155.  
  13156.    
  13157.  
  13158.    
  13159.      
  13160.      
  13161.      <span class="money" data-price>
  13162.        $48.99
  13163.      </span>
  13164.    
  13165.    
  13166.  </div>
  13167.  
  13168.  
  13169.    
  13170.    <div class="price__current--hidden" data-current-price-range-hidden>
  13171.      
  13172.        <span class="money price__current--min" data-price-min>$48.99</span>
  13173.        -
  13174.        <span class="money price__current--max" data-price-max>$48.99</span>
  13175.      
  13176.    </div>
  13177.    <div class="price__current--hidden" data-current-price-hidden>
  13178.      <span class="visually-hidden">Current price</span>
  13179.      <span class="money" data-price>
  13180.        $48.99
  13181.      </span>
  13182.    </div>
  13183.  
  13184.  
  13185.  
  13186.    
  13187.    
  13188.    
  13189.    
  13190.  
  13191.    <div
  13192.      class="
  13193.        productitem__unit-price
  13194.        hidden
  13195.      "
  13196.      data-unit-price
  13197.    >
  13198.      <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>
  13199.    </div>
  13200.  
  13201.  
  13202.  
  13203. </div>
  13204.  
  13205.  
  13206.            </div>
  13207.  
  13208.            <div class="productitem--listview-badge">
  13209.              
  13210.  
  13211.  
  13212.  
  13213.  
  13214.  
  13215.  
  13216.  
  13217.  
  13218.  
  13219.  
  13220.  
  13221.  
  13222.  
  13223.  
  13224.  
  13225.  
  13226.  
  13227.  
  13228.  
  13229.  
  13230.  
  13231.  
  13232.  
  13233.  
  13234.  
  13235.  
  13236.  
  13237.            </div>
  13238.  
  13239.            
  13240.              <div
  13241.                class="
  13242.                  productitem--action
  13243.                  quickshop-button
  13244.                  
  13245.                "
  13246.              >
  13247.                <button
  13248.                  class="productitem--action-trigger button-secondary"
  13249.                  data-quickshop-full
  13250.                  
  13251.                  
  13252.                  type="button"
  13253.                >
  13254.                  Quick shop
  13255.                </button>
  13256.              </div>
  13257.            
  13258.  
  13259.            
  13260.              <div
  13261.                class="
  13262.                  productitem--action
  13263.                  atc--button
  13264.                  
  13265.                "
  13266.              >
  13267.                <button
  13268.                  class="productitem--action-trigger productitem--action-atc button-primary"
  13269.                  type="button"
  13270.                  aria-label="Add to cart"
  13271.                  
  13272.                    data-quick-buy
  13273.                  
  13274.                  data-variant-id="29531497529431"
  13275.                  
  13276.                >
  13277.                  <span class="atc-button--text">
  13278.                    Add to cart
  13279.                  </span>
  13280.                  <span class="atc-button--icon"><svg
  13281.  aria-hidden="true"
  13282.  focusable="false"
  13283.  role="presentation"
  13284.  width="26"
  13285.  height="26"
  13286.  viewBox="0 0 26 26"
  13287.  xmlns="http://www.w3.org/2000/svg"
  13288. >
  13289.  <g fill-rule="nonzero" fill="currentColor">
  13290.    <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"/>
  13291.  </g>
  13292. </svg></span>
  13293.                </button>
  13294.              </div>
  13295.            
  13296.          </div>
  13297.        
  13298.      
  13299.    </div>
  13300.  </div>
  13301.  
  13302.  
  13303.    <script type="application/json" data-quick-buy-settings>
  13304.      {
  13305.        "cart_redirection": true,
  13306.        "money_format": "${{amount}}"
  13307.      }
  13308.    </script>
  13309.  
  13310. </li>
  13311.    
  13312.      
  13313.  
  13314.  
  13315.  
  13316.  
  13317.  
  13318.  
  13319.  
  13320.  
  13321.  
  13322.  
  13323.  
  13324.  
  13325.  
  13326.  
  13327.  
  13328.  
  13329.  
  13330.  
  13331.  
  13332.  
  13333.  
  13334.  
  13335.  
  13336.  
  13337.  
  13338.  
  13339.  
  13340.  
  13341.  
  13342.  
  13343.  
  13344.  
  13345.    
  13346.  
  13347.  
  13348.  
  13349. <li
  13350.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13351.  data-product-item
  13352.  data-product-quickshop-url="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13353.  
  13354. >
  13355.  <div class="productitem" data-product-item-content>
  13356.    
  13357.    
  13358.    
  13359.    
  13360.  
  13361.    
  13362.  
  13363.    
  13364.  
  13365.    <div class="productitem__container">
  13366.      
  13367.  
  13368.      <div class="productitem__image-container">
  13369.        <a target="_blank"
  13370.          class="productitem--image-link"
  13371.          href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13372.          aria-label="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13373.          tabindex="-1"
  13374.          data-product-page-link
  13375.        >
  13376.          <figure
  13377.            class="productitem--image"
  13378.            data-product-item-image
  13379.            
  13380.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13381.            
  13382.          >
  13383.            
  13384.              
  13385.              
  13386.  
  13387.  
  13388.    <noscript data-rimg-noscript>
  13389.      <img loading="lazy"
  13390.        
  13391.          src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13392.        
  13393.  
  13394.        alt="925740-002"
  13395.        data-rimg="noscript"
  13396.        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"
  13397.        class="productitem--image-primary"
  13398.        
  13399.        
  13400.      >
  13401.    </noscript>
  13402.  
  13403.  
  13404.  <img loading="lazy"
  13405.    
  13406.      src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13407.    
  13408.    alt="925740-002"
  13409.  
  13410.    
  13411.      data-rimg="lazy"
  13412.      data-rimg-scale="1"
  13413.      data-rimg-template="//laptopparts.ca/cdn/shop/files/tpn-ca06_{size}.jpg?v=1721171198"
  13414.      data-rimg-max="1043x1043"
  13415.      data-rimg-crop="false"
  13416.      
  13417.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  13418.    
  13419.  
  13420.    class="productitem--image-primary"
  13421.    
  13422.    
  13423.  >
  13424.  
  13425.  
  13426.  
  13427.  <div data-rimg-canvas></div>
  13428.  
  13429.  
  13430.            
  13431.  
  13432.            
  13433.  
  13434.  
  13435.  
  13436.  
  13437.  
  13438.  
  13439.  
  13440.  
  13441.  
  13442.  
  13443.  
  13444.  
  13445.  
  13446.  
  13447.  
  13448.  
  13449.  
  13450.  
  13451.  
  13452.  
  13453.  
  13454.  
  13455.  
  13456.  
  13457.  
  13458.  
  13459.  
  13460.          </figure>
  13461.        </a>
  13462.      </div><div class="productitem--info">
  13463.        
  13464.          
  13465.  
  13466.        
  13467.  
  13468.        
  13469.          
  13470.  
  13471.  
  13472.  
  13473.  
  13474.  
  13475.  
  13476.  
  13477.  
  13478.  
  13479.  
  13480.  
  13481.  
  13482.  
  13483.  
  13484.  
  13485.  
  13486.  
  13487.  
  13488.  
  13489.  
  13490.  
  13491.  
  13492.  
  13493.  
  13494.  
  13495.  
  13496.  
  13497.  
  13498.  
  13499.  
  13500. <div class="price productitem__price ">
  13501.  
  13502.    <div
  13503.      class="price__compare-at visible"
  13504.      data-price-compare-container
  13505.    >
  13506.  
  13507.      
  13508.        <span class="money price__original" data-price-original></span>
  13509.      
  13510.    </div>
  13511.  
  13512.  
  13513.    
  13514.      
  13515.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13516.        
  13517.          <span class="visually-hidden">Original price</span>
  13518.          <span class="money price__compare-at--min" data-price-compare-min>
  13519.            $68.99
  13520.          </span>
  13521.          -
  13522.          <span class="visually-hidden">Original price</span>
  13523.          <span class="money price__compare-at--max" data-price-compare-max>
  13524.            $68.99
  13525.          </span>
  13526.        
  13527.      </div>
  13528.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13529.        <span class="visually-hidden">Original price</span>
  13530.        <span class="money price__compare-at--single" data-price-compare>
  13531.          
  13532.        </span>
  13533.      </div>
  13534.    
  13535.  
  13536.  
  13537.  <div class="price__current price__current--emphasize " data-price-container>
  13538.  
  13539.    
  13540.  
  13541.    
  13542.      
  13543.      
  13544.      <span class="money" data-price>
  13545.        $68.99
  13546.      </span>
  13547.    
  13548.    
  13549.  </div>
  13550.  
  13551.  
  13552.    
  13553.    <div class="price__current--hidden" data-current-price-range-hidden>
  13554.      
  13555.        <span class="money price__current--min" data-price-min>$68.99</span>
  13556.        -
  13557.        <span class="money price__current--max" data-price-max>$68.99</span>
  13558.      
  13559.    </div>
  13560.    <div class="price__current--hidden" data-current-price-hidden>
  13561.      <span class="visually-hidden">Current price</span>
  13562.      <span class="money" data-price>
  13563.        $68.99
  13564.      </span>
  13565.    </div>
  13566.  
  13567.  
  13568.  
  13569.    
  13570.    
  13571.    
  13572.    
  13573.  
  13574.    <div
  13575.      class="
  13576.        productitem__unit-price
  13577.        hidden
  13578.      "
  13579.      data-unit-price
  13580.    >
  13581.      <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>
  13582.    </div>
  13583.  
  13584.  
  13585.  
  13586. </div>
  13587.  
  13588.  
  13589.        
  13590.  
  13591.        <h2 class="productitem--title">
  13592.          <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>
  13593.            925740-002 Genuine 65W USB Type-C Adapter Charger for HP Elite X2 1012 G2 Elitebook x360
  13594.          </a>
  13595.        </h2>
  13596.  
  13597.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13598.        <div class="star_container 6881873985623"></div>
  13599.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13600.  
  13601.        
  13602.          
  13603.            <span class="productitem--vendor">
  13604.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  13605.            </span>
  13606.          
  13607.        
  13608.  
  13609.        
  13610.  
  13611.        
  13612.          
  13613.            <div class="productitem__stock-level">
  13614.              <!--
  13615.  
  13616.  
  13617.  
  13618.  
  13619.  
  13620.  
  13621.  
  13622. <div class="product-stock-level-wrapper" >
  13623.  
  13624.    <span class="
  13625.  product-stock-level
  13626.  product-stock-level--continue-selling
  13627.  
  13628. ">
  13629.      
  13630.  
  13631.      <span class="product-stock-level__text">
  13632.        
  13633.        <div class="product-stock-level__badge-text">
  13634.          
  13635.  
  13636.    In stock
  13637.  
  13638.  
  13639.        </div>
  13640.      </span>
  13641.    </span>
  13642.  
  13643. </div>
  13644. -->
  13645.              
  13646.  
  13647.  
  13648.    
  13649.      <b style="color:green">In stock</b>
  13650.    
  13651.  
  13652.  
  13653.  
  13654.  
  13655.  
  13656.  
  13657.  
  13658.            </div>
  13659.          
  13660.  
  13661.          
  13662.            
  13663.          
  13664.        
  13665.  
  13666.        
  13667.          <div class="productitem--description">
  13668.            <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>
  13669.  
  13670.            
  13671.              <a
  13672.                href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13673.                class="productitem--link"
  13674.                data-product-page-link
  13675.              >
  13676.                View full details
  13677.              </a>
  13678.            
  13679.          </div>
  13680.        
  13681.      </div>
  13682.  
  13683.      
  13684.        
  13685.          
  13686.          
  13687.          
  13688.  
  13689.          
  13690.          
  13691.  
  13692.          
  13693.  
  13694.          
  13695.  
  13696.          <div class="productitem--actions" data-product-actions>
  13697.            <div class="productitem--listview-price">
  13698.              
  13699.  
  13700.  
  13701.  
  13702.  
  13703.  
  13704.  
  13705.  
  13706.  
  13707.  
  13708.  
  13709.  
  13710.  
  13711.  
  13712.  
  13713.  
  13714.  
  13715.  
  13716.  
  13717.  
  13718.  
  13719.  
  13720.  
  13721.  
  13722.  
  13723.  
  13724.  
  13725.  
  13726.  
  13727.  
  13728.  
  13729. <div class="price productitem__price ">
  13730.  
  13731.    <div
  13732.      class="price__compare-at visible"
  13733.      data-price-compare-container
  13734.    >
  13735.  
  13736.      
  13737.        <span class="money price__original" data-price-original></span>
  13738.      
  13739.    </div>
  13740.  
  13741.  
  13742.    
  13743.      
  13744.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13745.        
  13746.          <span class="visually-hidden">Original price</span>
  13747.          <span class="money price__compare-at--min" data-price-compare-min>
  13748.            $68.99
  13749.          </span>
  13750.          -
  13751.          <span class="visually-hidden">Original price</span>
  13752.          <span class="money price__compare-at--max" data-price-compare-max>
  13753.            $68.99
  13754.          </span>
  13755.        
  13756.      </div>
  13757.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13758.        <span class="visually-hidden">Original price</span>
  13759.        <span class="money price__compare-at--single" data-price-compare>
  13760.          
  13761.        </span>
  13762.      </div>
  13763.    
  13764.  
  13765.  
  13766.  <div class="price__current price__current--emphasize " data-price-container>
  13767.  
  13768.    
  13769.  
  13770.    
  13771.      
  13772.      
  13773.      <span class="money" data-price>
  13774.        $68.99
  13775.      </span>
  13776.    
  13777.    
  13778.  </div>
  13779.  
  13780.  
  13781.    
  13782.    <div class="price__current--hidden" data-current-price-range-hidden>
  13783.      
  13784.        <span class="money price__current--min" data-price-min>$68.99</span>
  13785.        -
  13786.        <span class="money price__current--max" data-price-max>$68.99</span>
  13787.      
  13788.    </div>
  13789.    <div class="price__current--hidden" data-current-price-hidden>
  13790.      <span class="visually-hidden">Current price</span>
  13791.      <span class="money" data-price>
  13792.        $68.99
  13793.      </span>
  13794.    </div>
  13795.  
  13796.  
  13797.  
  13798.    
  13799.    
  13800.    
  13801.    
  13802.  
  13803.    <div
  13804.      class="
  13805.        productitem__unit-price
  13806.        hidden
  13807.      "
  13808.      data-unit-price
  13809.    >
  13810.      <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>
  13811.    </div>
  13812.  
  13813.  
  13814.  
  13815. </div>
  13816.  
  13817.  
  13818.            </div>
  13819.  
  13820.            <div class="productitem--listview-badge">
  13821.              
  13822.  
  13823.  
  13824.  
  13825.  
  13826.  
  13827.  
  13828.  
  13829.  
  13830.  
  13831.  
  13832.  
  13833.  
  13834.  
  13835.  
  13836.  
  13837.  
  13838.  
  13839.  
  13840.  
  13841.  
  13842.  
  13843.  
  13844.  
  13845.  
  13846.  
  13847.  
  13848.  
  13849.            </div>
  13850.  
  13851.            
  13852.              <div
  13853.                class="
  13854.                  productitem--action
  13855.                  quickshop-button
  13856.                  
  13857.                "
  13858.              >
  13859.                <button
  13860.                  class="productitem--action-trigger button-secondary"
  13861.                  data-quickshop-full
  13862.                  
  13863.                  
  13864.                  type="button"
  13865.                >
  13866.                  Quick shop
  13867.                </button>
  13868.              </div>
  13869.            
  13870.  
  13871.            
  13872.              <div
  13873.                class="
  13874.                  productitem--action
  13875.                  atc--button
  13876.                  
  13877.                "
  13878.              >
  13879.                <button
  13880.                  class="productitem--action-trigger productitem--action-atc button-primary"
  13881.                  type="button"
  13882.                  aria-label="Add to cart"
  13883.                  
  13884.                    data-quick-buy
  13885.                  
  13886.                  data-variant-id="40183331749975"
  13887.                  
  13888.                >
  13889.                  <span class="atc-button--text">
  13890.                    Add to cart
  13891.                  </span>
  13892.                  <span class="atc-button--icon"><svg
  13893.  aria-hidden="true"
  13894.  focusable="false"
  13895.  role="presentation"
  13896.  width="26"
  13897.  height="26"
  13898.  viewBox="0 0 26 26"
  13899.  xmlns="http://www.w3.org/2000/svg"
  13900. >
  13901.  <g fill-rule="nonzero" fill="currentColor">
  13902.    <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"/>
  13903.  </g>
  13904. </svg></span>
  13905.                </button>
  13906.              </div>
  13907.            
  13908.          </div>
  13909.        
  13910.      
  13911.    </div>
  13912.  </div>
  13913.  
  13914.  
  13915.    <script type="application/json" data-quick-buy-settings>
  13916.      {
  13917.        "cart_redirection": true,
  13918.        "money_format": "${{amount}}"
  13919.      }
  13920.    </script>
  13921.  
  13922. </li>
  13923.    
  13924.      
  13925.  
  13926.  
  13927.  
  13928.  
  13929.  
  13930.  
  13931.  
  13932.  
  13933.  
  13934.  
  13935.  
  13936.  
  13937.  
  13938.  
  13939.  
  13940.  
  13941.  
  13942.  
  13943.  
  13944.  
  13945.  
  13946.  
  13947.  
  13948.  
  13949.  
  13950.  
  13951.  
  13952.  
  13953.  
  13954.  
  13955.  
  13956.  
  13957.    
  13958.  
  13959.  
  13960.  
  13961. <li
  13962.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13963.  data-product-item
  13964.  data-product-quickshop-url="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13965.  
  13966. >
  13967.  <div class="productitem" data-product-item-content>
  13968.    
  13969.    
  13970.    
  13971.    
  13972.  
  13973.    
  13974.  
  13975.    
  13976.  
  13977.    <div class="productitem__container">
  13978.      
  13979.  
  13980.      <div class="productitem__image-container">
  13981.        <a target="_blank"
  13982.          class="productitem--image-link"
  13983.          href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13984.          aria-label="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13985.          tabindex="-1"
  13986.          data-product-page-link
  13987.        >
  13988.          <figure
  13989.            class="productitem--image"
  13990.            data-product-item-image
  13991.            
  13992.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13993.            
  13994.          >
  13995.            
  13996.              
  13997.              
  13998.  
  13999.  
  14000.    <noscript data-rimg-noscript>
  14001.      <img loading="lazy"
  14002.        
  14003.          src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  14004.        
  14005.  
  14006.        alt=""
  14007.        data-rimg="noscript"
  14008.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166 1x"
  14009.        class="productitem--image-primary"
  14010.        
  14011.        
  14012.      >
  14013.    </noscript>
  14014.  
  14015.  
  14016.  <img loading="lazy"
  14017.    
  14018.      src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  14019.    
  14020.    alt=""
  14021.  
  14022.    
  14023.      data-rimg="lazy"
  14024.      data-rimg-scale="1"
  14025.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_{size}.jpg?v=1648046166"
  14026.      data-rimg-max="500x500"
  14027.      data-rimg-crop="false"
  14028.      
  14029.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14030.    
  14031.  
  14032.    class="productitem--image-primary"
  14033.    
  14034.    
  14035.  >
  14036.  
  14037.  
  14038.  
  14039.  <div data-rimg-canvas></div>
  14040.  
  14041.  
  14042.            
  14043.  
  14044.            
  14045.  
  14046.  
  14047.  
  14048.  
  14049.  
  14050.  
  14051.  
  14052.  
  14053.  
  14054.  
  14055.  
  14056.  
  14057.  
  14058.  
  14059.  
  14060.  
  14061.  
  14062.  
  14063.  
  14064.  
  14065.  
  14066.  
  14067.  
  14068.  
  14069.  
  14070.  
  14071.  
  14072.          </figure>
  14073.        </a>
  14074.      </div><div class="productitem--info">
  14075.        
  14076.          
  14077.  
  14078.        
  14079.  
  14080.        
  14081.          
  14082.  
  14083.  
  14084.  
  14085.  
  14086.  
  14087.  
  14088.  
  14089.  
  14090.  
  14091.  
  14092.  
  14093.  
  14094.  
  14095.  
  14096.  
  14097.  
  14098.  
  14099.  
  14100.  
  14101.  
  14102.  
  14103.  
  14104.  
  14105.  
  14106.  
  14107.  
  14108.  
  14109.  
  14110.  
  14111.  
  14112. <div class="price productitem__price ">
  14113.  
  14114.    <div
  14115.      class="price__compare-at visible"
  14116.      data-price-compare-container
  14117.    >
  14118.  
  14119.      
  14120.        <span class="money price__original" data-price-original></span>
  14121.      
  14122.    </div>
  14123.  
  14124.  
  14125.    
  14126.      
  14127.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14128.        
  14129.          <span class="visually-hidden">Original price</span>
  14130.          <span class="money price__compare-at--min" data-price-compare-min>
  14131.            $48.99
  14132.          </span>
  14133.          -
  14134.          <span class="visually-hidden">Original price</span>
  14135.          <span class="money price__compare-at--max" data-price-compare-max>
  14136.            $48.99
  14137.          </span>
  14138.        
  14139.      </div>
  14140.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14141.        <span class="visually-hidden">Original price</span>
  14142.        <span class="money price__compare-at--single" data-price-compare>
  14143.          
  14144.        </span>
  14145.      </div>
  14146.    
  14147.  
  14148.  
  14149.  <div class="price__current price__current--emphasize " data-price-container>
  14150.  
  14151.    
  14152.  
  14153.    
  14154.      
  14155.      
  14156.      <span class="money" data-price>
  14157.        $48.99
  14158.      </span>
  14159.    
  14160.    
  14161.  </div>
  14162.  
  14163.  
  14164.    
  14165.    <div class="price__current--hidden" data-current-price-range-hidden>
  14166.      
  14167.        <span class="money price__current--min" data-price-min>$48.99</span>
  14168.        -
  14169.        <span class="money price__current--max" data-price-max>$48.99</span>
  14170.      
  14171.    </div>
  14172.    <div class="price__current--hidden" data-current-price-hidden>
  14173.      <span class="visually-hidden">Current price</span>
  14174.      <span class="money" data-price>
  14175.        $48.99
  14176.      </span>
  14177.    </div>
  14178.  
  14179.  
  14180.  
  14181.    
  14182.    
  14183.    
  14184.    
  14185.  
  14186.    <div
  14187.      class="
  14188.        productitem__unit-price
  14189.        hidden
  14190.      "
  14191.      data-unit-price
  14192.    >
  14193.      <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>
  14194.    </div>
  14195.  
  14196.  
  14197.  
  14198. </div>
  14199.  
  14200.  
  14201.        
  14202.  
  14203.        <h2 class="productitem--title">
  14204.          <a href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001" data-product-page-link>
  14205.            Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001
  14206.          </a>
  14207.        </h2>
  14208.  
  14209.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  14210.        <div class="star_container 3929815122007"></div>
  14211.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  14212.  
  14213.        
  14214.          
  14215.            <span class="productitem--vendor">
  14216.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  14217.            </span>
  14218.          
  14219.        
  14220.  
  14221.        
  14222.  
  14223.        
  14224.          
  14225.            <div class="productitem__stock-level">
  14226.              <!--
  14227.  
  14228.  
  14229.  
  14230.  
  14231.  
  14232.  
  14233.  
  14234. <div class="product-stock-level-wrapper" >
  14235.  
  14236.    <span class="
  14237.  product-stock-level
  14238.  product-stock-level--continue-selling
  14239.  
  14240. ">
  14241.      
  14242.  
  14243.      <span class="product-stock-level__text">
  14244.        
  14245.        <div class="product-stock-level__badge-text">
  14246.          
  14247.  
  14248.    In stock
  14249.  
  14250.  
  14251.        </div>
  14252.      </span>
  14253.    </span>
  14254.  
  14255. </div>
  14256. -->
  14257.              
  14258.  
  14259.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  14260.  
  14261.  
  14262.  
  14263.  
  14264.  
  14265.  
  14266.  
  14267.            </div>
  14268.          
  14269.  
  14270.          
  14271.            
  14272.          
  14273.        
  14274.  
  14275.        
  14276.          <div class="productitem--description">
  14277.            <p>
  14278. Description: New Acer server replacement case cooling fan.
  14279.  
  14280. Compatible Part #'s: HI.R4300.001, DS09225B12UP021.
  14281.  
  14282. Compatible Models:
  14283. Acer Altos AT1...</p>
  14284.  
  14285.            
  14286.              <a
  14287.                href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  14288.                class="productitem--link"
  14289.                data-product-page-link
  14290.              >
  14291.                View full details
  14292.              </a>
  14293.            
  14294.          </div>
  14295.        
  14296.      </div>
  14297.  
  14298.      
  14299.        
  14300.          
  14301.          
  14302.          
  14303.  
  14304.          
  14305.          
  14306.  
  14307.          
  14308.  
  14309.          
  14310.  
  14311.          <div class="productitem--actions" data-product-actions>
  14312.            <div class="productitem--listview-price">
  14313.              
  14314.  
  14315.  
  14316.  
  14317.  
  14318.  
  14319.  
  14320.  
  14321.  
  14322.  
  14323.  
  14324.  
  14325.  
  14326.  
  14327.  
  14328.  
  14329.  
  14330.  
  14331.  
  14332.  
  14333.  
  14334.  
  14335.  
  14336.  
  14337.  
  14338.  
  14339.  
  14340.  
  14341.  
  14342.  
  14343.  
  14344. <div class="price productitem__price ">
  14345.  
  14346.    <div
  14347.      class="price__compare-at visible"
  14348.      data-price-compare-container
  14349.    >
  14350.  
  14351.      
  14352.        <span class="money price__original" data-price-original></span>
  14353.      
  14354.    </div>
  14355.  
  14356.  
  14357.    
  14358.      
  14359.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14360.        
  14361.          <span class="visually-hidden">Original price</span>
  14362.          <span class="money price__compare-at--min" data-price-compare-min>
  14363.            $48.99
  14364.          </span>
  14365.          -
  14366.          <span class="visually-hidden">Original price</span>
  14367.          <span class="money price__compare-at--max" data-price-compare-max>
  14368.            $48.99
  14369.          </span>
  14370.        
  14371.      </div>
  14372.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14373.        <span class="visually-hidden">Original price</span>
  14374.        <span class="money price__compare-at--single" data-price-compare>
  14375.          
  14376.        </span>
  14377.      </div>
  14378.    
  14379.  
  14380.  
  14381.  <div class="price__current price__current--emphasize " data-price-container>
  14382.  
  14383.    
  14384.  
  14385.    
  14386.      
  14387.      
  14388.      <span class="money" data-price>
  14389.        $48.99
  14390.      </span>
  14391.    
  14392.    
  14393.  </div>
  14394.  
  14395.  
  14396.    
  14397.    <div class="price__current--hidden" data-current-price-range-hidden>
  14398.      
  14399.        <span class="money price__current--min" data-price-min>$48.99</span>
  14400.        -
  14401.        <span class="money price__current--max" data-price-max>$48.99</span>
  14402.      
  14403.    </div>
  14404.    <div class="price__current--hidden" data-current-price-hidden>
  14405.      <span class="visually-hidden">Current price</span>
  14406.      <span class="money" data-price>
  14407.        $48.99
  14408.      </span>
  14409.    </div>
  14410.  
  14411.  
  14412.  
  14413.    
  14414.    
  14415.    
  14416.    
  14417.  
  14418.    <div
  14419.      class="
  14420.        productitem__unit-price
  14421.        hidden
  14422.      "
  14423.      data-unit-price
  14424.    >
  14425.      <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>
  14426.    </div>
  14427.  
  14428.  
  14429.  
  14430. </div>
  14431.  
  14432.  
  14433.            </div>
  14434.  
  14435.            <div class="productitem--listview-badge">
  14436.              
  14437.  
  14438.  
  14439.  
  14440.  
  14441.  
  14442.  
  14443.  
  14444.  
  14445.  
  14446.  
  14447.  
  14448.  
  14449.  
  14450.  
  14451.  
  14452.  
  14453.  
  14454.  
  14455.  
  14456.  
  14457.  
  14458.  
  14459.  
  14460.  
  14461.  
  14462.  
  14463.  
  14464.            </div>
  14465.  
  14466.            
  14467.              <div
  14468.                class="
  14469.                  productitem--action
  14470.                  quickshop-button
  14471.                  
  14472.                "
  14473.              >
  14474.                <button
  14475.                  class="productitem--action-trigger button-secondary"
  14476.                  data-quickshop-full
  14477.                  
  14478.                  
  14479.                  type="button"
  14480.                >
  14481.                  Quick shop
  14482.                </button>
  14483.              </div>
  14484.            
  14485.  
  14486.            
  14487.              <div
  14488.                class="
  14489.                  productitem--action
  14490.                  atc--button
  14491.                  
  14492.                "
  14493.              >
  14494.                <button
  14495.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14496.                  type="button"
  14497.                  aria-label="Add to cart"
  14498.                  
  14499.                    data-quick-buy
  14500.                  
  14501.                  data-variant-id="29507473014871"
  14502.                  
  14503.                >
  14504.                  <span class="atc-button--text">
  14505.                    Add to cart
  14506.                  </span>
  14507.                  <span class="atc-button--icon"><svg
  14508.  aria-hidden="true"
  14509.  focusable="false"
  14510.  role="presentation"
  14511.  width="26"
  14512.  height="26"
  14513.  viewBox="0 0 26 26"
  14514.  xmlns="http://www.w3.org/2000/svg"
  14515. >
  14516.  <g fill-rule="nonzero" fill="currentColor">
  14517.    <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"/>
  14518.  </g>
  14519. </svg></span>
  14520.                </button>
  14521.              </div>
  14522.            
  14523.          </div>
  14524.        
  14525.      
  14526.    </div>
  14527.  </div>
  14528.  
  14529.  
  14530.    <script type="application/json" data-quick-buy-settings>
  14531.      {
  14532.        "cart_redirection": true,
  14533.        "money_format": "${{amount}}"
  14534.      }
  14535.    </script>
  14536.  
  14537. </li>
  14538.    
  14539.      
  14540.  
  14541.  
  14542.  
  14543.  
  14544.  
  14545.  
  14546.  
  14547.  
  14548.  
  14549.  
  14550.  
  14551.  
  14552.  
  14553.  
  14554.  
  14555.  
  14556.  
  14557.  
  14558.  
  14559.  
  14560.  
  14561.  
  14562.  
  14563.  
  14564.  
  14565.  
  14566.  
  14567.  
  14568.  
  14569.  
  14570.  
  14571.  
  14572.    
  14573.  
  14574.  
  14575.  
  14576. <li
  14577.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14578.  data-product-item
  14579.  data-product-quickshop-url="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14580.  
  14581. >
  14582.  <div class="productitem" data-product-item-content>
  14583.    
  14584.    
  14585.    
  14586.    
  14587.  
  14588.    
  14589.  
  14590.    
  14591.  
  14592.    <div class="productitem__container">
  14593.      
  14594.  
  14595.      <div class="productitem__image-container">
  14596.        <a target="_blank"
  14597.          class="productitem--image-link"
  14598.          href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14599.          aria-label="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14600.          tabindex="-1"
  14601.          data-product-page-link
  14602.        >
  14603.          <figure
  14604.            class="productitem--image"
  14605.            data-product-item-image
  14606.            
  14607.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14608.            
  14609.          >
  14610.            
  14611.              
  14612.              
  14613.  
  14614.  
  14615.    <noscript data-rimg-noscript>
  14616.      <img loading="lazy"
  14617.        
  14618.          src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14619.        
  14620.  
  14621.        alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14622.        data-rimg="noscript"
  14623.        srcset="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372 1x"
  14624.        class="productitem--image-primary"
  14625.        
  14626.        
  14627.      >
  14628.    </noscript>
  14629.  
  14630.  
  14631.  <img loading="lazy"
  14632.    
  14633.      src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14634.    
  14635.    alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14636.  
  14637.    
  14638.      data-rimg="lazy"
  14639.      data-rimg-scale="1"
  14640.      data-rimg-template="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_{size}.jpg?v=1715271372"
  14641.      data-rimg-max="500x500"
  14642.      data-rimg-crop="false"
  14643.      
  14644.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14645.    
  14646.  
  14647.    class="productitem--image-primary"
  14648.    
  14649.    
  14650.  >
  14651.  
  14652.  
  14653.  
  14654.  <div data-rimg-canvas></div>
  14655.  
  14656.  
  14657.            
  14658.  
  14659.            
  14660.  
  14661.  
  14662.  
  14663.  
  14664.  
  14665.  
  14666.  
  14667.  
  14668.  
  14669.  
  14670.  
  14671.  
  14672.  
  14673.  
  14674.  
  14675.  
  14676.  
  14677.  
  14678.  
  14679.  
  14680.  
  14681.  
  14682.  
  14683.  
  14684.  
  14685.  
  14686.  
  14687.          </figure>
  14688.        </a>
  14689.      </div><div class="productitem--info">
  14690.        
  14691.          
  14692.  
  14693.        
  14694.  
  14695.        
  14696.          
  14697.  
  14698.  
  14699.  
  14700.  
  14701.  
  14702.  
  14703.  
  14704.  
  14705.  
  14706.  
  14707.  
  14708.  
  14709.  
  14710.  
  14711.  
  14712.  
  14713.  
  14714.  
  14715.  
  14716.  
  14717.  
  14718.  
  14719.  
  14720.  
  14721.  
  14722.  
  14723.  
  14724.  
  14725.  
  14726.  
  14727. <div class="price productitem__price ">
  14728.  
  14729.    <div
  14730.      class="price__compare-at visible"
  14731.      data-price-compare-container
  14732.    >
  14733.  
  14734.      
  14735.        <span class="money price__original" data-price-original></span>
  14736.      
  14737.    </div>
  14738.  
  14739.  
  14740.    
  14741.      
  14742.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14743.        
  14744.          <span class="visually-hidden">Original price</span>
  14745.          <span class="money price__compare-at--min" data-price-compare-min>
  14746.            $100.99
  14747.          </span>
  14748.          -
  14749.          <span class="visually-hidden">Original price</span>
  14750.          <span class="money price__compare-at--max" data-price-compare-max>
  14751.            $100.99
  14752.          </span>
  14753.        
  14754.      </div>
  14755.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14756.        <span class="visually-hidden">Original price</span>
  14757.        <span class="money price__compare-at--single" data-price-compare>
  14758.          
  14759.        </span>
  14760.      </div>
  14761.    
  14762.  
  14763.  
  14764.  <div class="price__current price__current--emphasize " data-price-container>
  14765.  
  14766.    
  14767.  
  14768.    
  14769.      
  14770.      
  14771.      <span class="money" data-price>
  14772.        $100.99
  14773.      </span>
  14774.    
  14775.    
  14776.  </div>
  14777.  
  14778.  
  14779.    
  14780.    <div class="price__current--hidden" data-current-price-range-hidden>
  14781.      
  14782.        <span class="money price__current--min" data-price-min>$100.99</span>
  14783.        -
  14784.        <span class="money price__current--max" data-price-max>$100.99</span>
  14785.      
  14786.    </div>
  14787.    <div class="price__current--hidden" data-current-price-hidden>
  14788.      <span class="visually-hidden">Current price</span>
  14789.      <span class="money" data-price>
  14790.        $100.99
  14791.      </span>
  14792.    </div>
  14793.  
  14794.  
  14795.  
  14796.    
  14797.    
  14798.    
  14799.    
  14800.  
  14801.    <div
  14802.      class="
  14803.        productitem__unit-price
  14804.        hidden
  14805.      "
  14806.      data-unit-price
  14807.    >
  14808.      <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>
  14809.    </div>
  14810.  
  14811.  
  14812.  
  14813. </div>
  14814.  
  14815.  
  14816.        
  14817.  
  14818.        <h2 class="productitem--title">
  14819.          <a href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  14820.            Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual
  14821.          </a>
  14822.        </h2>
  14823.  
  14824.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  14825.        <div class="star_container 4451279622"></div>
  14826.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  14827.  
  14828.        
  14829.          
  14830.            <span class="productitem--vendor">
  14831.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  14832.            </span>
  14833.          
  14834.        
  14835.  
  14836.        
  14837.  
  14838.        
  14839.          
  14840.            <div class="productitem__stock-level">
  14841.              <!--
  14842.  
  14843.  
  14844.  
  14845.  
  14846.  
  14847.  
  14848.  
  14849. <div class="product-stock-level-wrapper" >
  14850.  
  14851.    <span class="
  14852.  product-stock-level
  14853.  product-stock-level--continue-selling
  14854.  
  14855. ">
  14856.      
  14857.  
  14858.      <span class="product-stock-level__text">
  14859.        
  14860.        <div class="product-stock-level__badge-text">
  14861.          
  14862.  
  14863.    In stock
  14864.  
  14865.  
  14866.        </div>
  14867.      </span>
  14868.    </span>
  14869.  
  14870. </div>
  14871. -->
  14872.              
  14873.  
  14874.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  14875.  
  14876.  
  14877.  
  14878.  
  14879.  
  14880.  
  14881.  
  14882.            </div>
  14883.          
  14884.  
  14885.          
  14886.            
  14887.          
  14888.        
  14889.  
  14890.        
  14891.          <div class="productitem--description">
  14892.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  14893.  
  14894.            
  14895.              <a
  14896.                href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14897.                class="productitem--link"
  14898.                data-product-page-link
  14899.              >
  14900.                View full details
  14901.              </a>
  14902.            
  14903.          </div>
  14904.        
  14905.      </div>
  14906.  
  14907.      
  14908.        
  14909.          
  14910.          
  14911.          
  14912.  
  14913.          
  14914.          
  14915.  
  14916.          
  14917.  
  14918.          
  14919.  
  14920.          <div class="productitem--actions" data-product-actions>
  14921.            <div class="productitem--listview-price">
  14922.              
  14923.  
  14924.  
  14925.  
  14926.  
  14927.  
  14928.  
  14929.  
  14930.  
  14931.  
  14932.  
  14933.  
  14934.  
  14935.  
  14936.  
  14937.  
  14938.  
  14939.  
  14940.  
  14941.  
  14942.  
  14943.  
  14944.  
  14945.  
  14946.  
  14947.  
  14948.  
  14949.  
  14950.  
  14951.  
  14952.  
  14953. <div class="price productitem__price ">
  14954.  
  14955.    <div
  14956.      class="price__compare-at visible"
  14957.      data-price-compare-container
  14958.    >
  14959.  
  14960.      
  14961.        <span class="money price__original" data-price-original></span>
  14962.      
  14963.    </div>
  14964.  
  14965.  
  14966.    
  14967.      
  14968.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14969.        
  14970.          <span class="visually-hidden">Original price</span>
  14971.          <span class="money price__compare-at--min" data-price-compare-min>
  14972.            $100.99
  14973.          </span>
  14974.          -
  14975.          <span class="visually-hidden">Original price</span>
  14976.          <span class="money price__compare-at--max" data-price-compare-max>
  14977.            $100.99
  14978.          </span>
  14979.        
  14980.      </div>
  14981.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14982.        <span class="visually-hidden">Original price</span>
  14983.        <span class="money price__compare-at--single" data-price-compare>
  14984.          
  14985.        </span>
  14986.      </div>
  14987.    
  14988.  
  14989.  
  14990.  <div class="price__current price__current--emphasize " data-price-container>
  14991.  
  14992.    
  14993.  
  14994.    
  14995.      
  14996.      
  14997.      <span class="money" data-price>
  14998.        $100.99
  14999.      </span>
  15000.    
  15001.    
  15002.  </div>
  15003.  
  15004.  
  15005.    
  15006.    <div class="price__current--hidden" data-current-price-range-hidden>
  15007.      
  15008.        <span class="money price__current--min" data-price-min>$100.99</span>
  15009.        -
  15010.        <span class="money price__current--max" data-price-max>$100.99</span>
  15011.      
  15012.    </div>
  15013.    <div class="price__current--hidden" data-current-price-hidden>
  15014.      <span class="visually-hidden">Current price</span>
  15015.      <span class="money" data-price>
  15016.        $100.99
  15017.      </span>
  15018.    </div>
  15019.  
  15020.  
  15021.  
  15022.    
  15023.    
  15024.    
  15025.    
  15026.  
  15027.    <div
  15028.      class="
  15029.        productitem__unit-price
  15030.        hidden
  15031.      "
  15032.      data-unit-price
  15033.    >
  15034.      <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>
  15035.    </div>
  15036.  
  15037.  
  15038.  
  15039. </div>
  15040.  
  15041.  
  15042.            </div>
  15043.  
  15044.            <div class="productitem--listview-badge">
  15045.              
  15046.  
  15047.  
  15048.  
  15049.  
  15050.  
  15051.  
  15052.  
  15053.  
  15054.  
  15055.  
  15056.  
  15057.  
  15058.  
  15059.  
  15060.  
  15061.  
  15062.  
  15063.  
  15064.  
  15065.  
  15066.  
  15067.  
  15068.  
  15069.  
  15070.  
  15071.  
  15072.  
  15073.            </div>
  15074.  
  15075.            
  15076.              <div
  15077.                class="
  15078.                  productitem--action
  15079.                  quickshop-button
  15080.                  
  15081.                "
  15082.              >
  15083.                <button
  15084.                  class="productitem--action-trigger button-secondary"
  15085.                  data-quickshop-full
  15086.                  
  15087.                  
  15088.                  type="button"
  15089.                >
  15090.                  Quick shop
  15091.                </button>
  15092.              </div>
  15093.            
  15094.  
  15095.            
  15096.              <div
  15097.                class="
  15098.                  productitem--action
  15099.                  atc--button
  15100.                  
  15101.                "
  15102.              >
  15103.                <button
  15104.                  class="productitem--action-trigger productitem--action-atc button-primary"
  15105.                  type="button"
  15106.                  aria-label="Add to cart"
  15107.                  
  15108.                    data-quick-buy
  15109.                  
  15110.                  data-variant-id="39666365366359"
  15111.                  
  15112.                >
  15113.                  <span class="atc-button--text">
  15114.                    Add to cart
  15115.                  </span>
  15116.                  <span class="atc-button--icon"><svg
  15117.  aria-hidden="true"
  15118.  focusable="false"
  15119.  role="presentation"
  15120.  width="26"
  15121.  height="26"
  15122.  viewBox="0 0 26 26"
  15123.  xmlns="http://www.w3.org/2000/svg"
  15124. >
  15125.  <g fill-rule="nonzero" fill="currentColor">
  15126.    <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"/>
  15127.  </g>
  15128. </svg></span>
  15129.                </button>
  15130.              </div>
  15131.            
  15132.          </div>
  15133.        
  15134.      
  15135.    </div>
  15136.  </div>
  15137.  
  15138.  
  15139.    <script type="application/json" data-quick-buy-settings>
  15140.      {
  15141.        "cart_redirection": true,
  15142.        "money_format": "${{amount}}"
  15143.      }
  15144.    </script>
  15145.  
  15146. </li>
  15147.    
  15148.      
  15149.  
  15150.  
  15151.  
  15152.  
  15153.  
  15154.  
  15155.  
  15156.  
  15157.  
  15158.  
  15159.  
  15160.  
  15161.  
  15162.  
  15163.  
  15164.  
  15165.  
  15166.  
  15167.  
  15168.  
  15169.  
  15170.  
  15171.  
  15172.  
  15173.  
  15174.  
  15175.  
  15176.  
  15177.  
  15178.  
  15179.  
  15180.  
  15181.    
  15182.  
  15183.  
  15184.  
  15185. <li
  15186.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  15187.  data-product-item
  15188.  data-product-quickshop-url="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  15189.  
  15190. >
  15191.  <div class="productitem" data-product-item-content>
  15192.    
  15193.    
  15194.    
  15195.    
  15196.  
  15197.    
  15198.  
  15199.    
  15200.  
  15201.    <div class="productitem__container">
  15202.      
  15203.  
  15204.      <div class="productitem__image-container">
  15205.        <a target="_blank"
  15206.          class="productitem--image-link"
  15207.          href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  15208.          aria-label="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  15209.          tabindex="-1"
  15210.          data-product-page-link
  15211.        >
  15212.          <figure
  15213.            class="productitem--image"
  15214.            data-product-item-image
  15215.            
  15216.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  15217.            
  15218.          >
  15219.            
  15220.              
  15221.              
  15222.  
  15223.  
  15224.    <noscript data-rimg-noscript>
  15225.      <img loading="lazy"
  15226.        
  15227.          src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  15228.        
  15229.  
  15230.        alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  15231.        data-rimg="noscript"
  15232.        srcset="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378 1x"
  15233.        class="productitem--image-primary"
  15234.        
  15235.        
  15236.      >
  15237.    </noscript>
  15238.  
  15239.  
  15240.  <img loading="lazy"
  15241.    
  15242.      src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  15243.    
  15244.    alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  15245.  
  15246.    
  15247.      data-rimg="lazy"
  15248.      data-rimg-scale="1"
  15249.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_{size}.jpg?v=1715271378"
  15250.      data-rimg-max="500x500"
  15251.      data-rimg-crop="false"
  15252.      
  15253.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  15254.    
  15255.  
  15256.    class="productitem--image-primary"
  15257.    
  15258.    
  15259.  >
  15260.  
  15261.  
  15262.  
  15263.  <div data-rimg-canvas></div>
  15264.  
  15265.  
  15266.            
  15267.  
  15268.            
  15269.  
  15270.  
  15271.  
  15272.  
  15273.  
  15274.  
  15275.  
  15276.  
  15277.  
  15278.  
  15279.  
  15280.  
  15281.  
  15282.  
  15283.  
  15284.  
  15285.  
  15286.  
  15287.  
  15288.  
  15289.  
  15290.  
  15291.  
  15292.  
  15293.  
  15294.  
  15295.  
  15296.          </figure>
  15297.        </a>
  15298.      </div><div class="productitem--info">
  15299.        
  15300.          
  15301.  
  15302.        
  15303.  
  15304.        
  15305.          
  15306.  
  15307.  
  15308.  
  15309.  
  15310.  
  15311.  
  15312.  
  15313.  
  15314.  
  15315.  
  15316.  
  15317.  
  15318.  
  15319.  
  15320.  
  15321.  
  15322.  
  15323.  
  15324.  
  15325.  
  15326.  
  15327.  
  15328.  
  15329.  
  15330.  
  15331.  
  15332.  
  15333.  
  15334.  
  15335.  
  15336. <div class="price productitem__price ">
  15337.  
  15338.    <div
  15339.      class="price__compare-at visible"
  15340.      data-price-compare-container
  15341.    >
  15342.  
  15343.      
  15344.        <span class="money price__original" data-price-original></span>
  15345.      
  15346.    </div>
  15347.  
  15348.  
  15349.    
  15350.      
  15351.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15352.        
  15353.          <span class="visually-hidden">Original price</span>
  15354.          <span class="money price__compare-at--min" data-price-compare-min>
  15355.            $100.99
  15356.          </span>
  15357.          -
  15358.          <span class="visually-hidden">Original price</span>
  15359.          <span class="money price__compare-at--max" data-price-compare-max>
  15360.            $100.99
  15361.          </span>
  15362.        
  15363.      </div>
  15364.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15365.        <span class="visually-hidden">Original price</span>
  15366.        <span class="money price__compare-at--single" data-price-compare>
  15367.          
  15368.        </span>
  15369.      </div>
  15370.    
  15371.  
  15372.  
  15373.  <div class="price__current price__current--emphasize " data-price-container>
  15374.  
  15375.    
  15376.  
  15377.    
  15378.      
  15379.      
  15380.      <span class="money" data-price>
  15381.        $100.99
  15382.      </span>
  15383.    
  15384.    
  15385.  </div>
  15386.  
  15387.  
  15388.    
  15389.    <div class="price__current--hidden" data-current-price-range-hidden>
  15390.      
  15391.        <span class="money price__current--min" data-price-min>$100.99</span>
  15392.        -
  15393.        <span class="money price__current--max" data-price-max>$100.99</span>
  15394.      
  15395.    </div>
  15396.    <div class="price__current--hidden" data-current-price-hidden>
  15397.      <span class="visually-hidden">Current price</span>
  15398.      <span class="money" data-price>
  15399.        $100.99
  15400.      </span>
  15401.    </div>
  15402.  
  15403.  
  15404.  
  15405.    
  15406.    
  15407.    
  15408.    
  15409.  
  15410.    <div
  15411.      class="
  15412.        productitem__unit-price
  15413.        hidden
  15414.      "
  15415.      data-unit-price
  15416.    >
  15417.      <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>
  15418.    </div>
  15419.  
  15420.  
  15421.  
  15422. </div>
  15423.  
  15424.  
  15425.        
  15426.  
  15427.        <h2 class="productitem--title">
  15428.          <a href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  15429.            Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual
  15430.          </a>
  15431.        </h2>
  15432.  
  15433.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15434.        <div class="star_container 4451280006"></div>
  15435.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15436.  
  15437.        
  15438.          
  15439.            <span class="productitem--vendor">
  15440.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15441.            </span>
  15442.          
  15443.        
  15444.  
  15445.        
  15446.  
  15447.        
  15448.          
  15449.            <div class="productitem__stock-level">
  15450.              <!--
  15451.  
  15452.  
  15453.  
  15454.  
  15455.  
  15456.  
  15457.  
  15458. <div class="product-stock-level-wrapper" >
  15459.  
  15460.    <span class="
  15461.  product-stock-level
  15462.  product-stock-level--continue-selling
  15463.  
  15464. ">
  15465.      
  15466.  
  15467.      <span class="product-stock-level__text">
  15468.        
  15469.        <div class="product-stock-level__badge-text">
  15470.          
  15471.  
  15472.    In stock
  15473.  
  15474.  
  15475.        </div>
  15476.      </span>
  15477.    </span>
  15478.  
  15479. </div>
  15480. -->
  15481.              
  15482.  
  15483.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  15484.  
  15485.  
  15486.  
  15487.  
  15488.  
  15489.  
  15490.  
  15491.            </div>
  15492.          
  15493.  
  15494.          
  15495.            
  15496.          
  15497.        
  15498.  
  15499.        
  15500.          <div class="productitem--description">
  15501.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  15502.  
  15503.            
  15504.              <a
  15505.                href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  15506.                class="productitem--link"
  15507.                data-product-page-link
  15508.              >
  15509.                View full details
  15510.              </a>
  15511.            
  15512.          </div>
  15513.        
  15514.      </div>
  15515.  
  15516.      
  15517.        
  15518.          
  15519.          
  15520.          
  15521.  
  15522.          
  15523.          
  15524.  
  15525.          
  15526.  
  15527.          
  15528.  
  15529.          <div class="productitem--actions" data-product-actions>
  15530.            <div class="productitem--listview-price">
  15531.              
  15532.  
  15533.  
  15534.  
  15535.  
  15536.  
  15537.  
  15538.  
  15539.  
  15540.  
  15541.  
  15542.  
  15543.  
  15544.  
  15545.  
  15546.  
  15547.  
  15548.  
  15549.  
  15550.  
  15551.  
  15552.  
  15553.  
  15554.  
  15555.  
  15556.  
  15557.  
  15558.  
  15559.  
  15560.  
  15561.  
  15562. <div class="price productitem__price ">
  15563.  
  15564.    <div
  15565.      class="price__compare-at visible"
  15566.      data-price-compare-container
  15567.    >
  15568.  
  15569.      
  15570.        <span class="money price__original" data-price-original></span>
  15571.      
  15572.    </div>
  15573.  
  15574.  
  15575.    
  15576.      
  15577.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15578.        
  15579.          <span class="visually-hidden">Original price</span>
  15580.          <span class="money price__compare-at--min" data-price-compare-min>
  15581.            $100.99
  15582.          </span>
  15583.          -
  15584.          <span class="visually-hidden">Original price</span>
  15585.          <span class="money price__compare-at--max" data-price-compare-max>
  15586.            $100.99
  15587.          </span>
  15588.        
  15589.      </div>
  15590.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15591.        <span class="visually-hidden">Original price</span>
  15592.        <span class="money price__compare-at--single" data-price-compare>
  15593.          
  15594.        </span>
  15595.      </div>
  15596.    
  15597.  
  15598.  
  15599.  <div class="price__current price__current--emphasize " data-price-container>
  15600.  
  15601.    
  15602.  
  15603.    
  15604.      
  15605.      
  15606.      <span class="money" data-price>
  15607.        $100.99
  15608.      </span>
  15609.    
  15610.    
  15611.  </div>
  15612.  
  15613.  
  15614.    
  15615.    <div class="price__current--hidden" data-current-price-range-hidden>
  15616.      
  15617.        <span class="money price__current--min" data-price-min>$100.99</span>
  15618.        -
  15619.        <span class="money price__current--max" data-price-max>$100.99</span>
  15620.      
  15621.    </div>
  15622.    <div class="price__current--hidden" data-current-price-hidden>
  15623.      <span class="visually-hidden">Current price</span>
  15624.      <span class="money" data-price>
  15625.        $100.99
  15626.      </span>
  15627.    </div>
  15628.  
  15629.  
  15630.  
  15631.    
  15632.    
  15633.    
  15634.    
  15635.  
  15636.    <div
  15637.      class="
  15638.        productitem__unit-price
  15639.        hidden
  15640.      "
  15641.      data-unit-price
  15642.    >
  15643.      <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>
  15644.    </div>
  15645.  
  15646.  
  15647.  
  15648. </div>
  15649.  
  15650.  
  15651.            </div>
  15652.  
  15653.            <div class="productitem--listview-badge">
  15654.              
  15655.  
  15656.  
  15657.  
  15658.  
  15659.  
  15660.  
  15661.  
  15662.  
  15663.  
  15664.  
  15665.  
  15666.  
  15667.  
  15668.  
  15669.  
  15670.  
  15671.  
  15672.  
  15673.  
  15674.  
  15675.  
  15676.  
  15677.  
  15678.  
  15679.  
  15680.  
  15681.  
  15682.            </div>
  15683.  
  15684.            
  15685.              <div
  15686.                class="
  15687.                  productitem--action
  15688.                  quickshop-button
  15689.                  
  15690.                "
  15691.              >
  15692.                <button
  15693.                  class="productitem--action-trigger button-secondary"
  15694.                  data-quickshop-full
  15695.                  
  15696.                  
  15697.                  type="button"
  15698.                >
  15699.                  Quick shop
  15700.                </button>
  15701.              </div>
  15702.            
  15703.  
  15704.            
  15705.              <div
  15706.                class="
  15707.                  productitem--action
  15708.                  atc--button
  15709.                  
  15710.                "
  15711.              >
  15712.                <button
  15713.                  class="productitem--action-trigger productitem--action-atc button-primary"
  15714.                  type="button"
  15715.                  aria-label="Add to cart"
  15716.                  
  15717.                    data-quick-buy
  15718.                  
  15719.                  data-variant-id="39666365268055"
  15720.                  
  15721.                >
  15722.                  <span class="atc-button--text">
  15723.                    Add to cart
  15724.                  </span>
  15725.                  <span class="atc-button--icon"><svg
  15726.  aria-hidden="true"
  15727.  focusable="false"
  15728.  role="presentation"
  15729.  width="26"
  15730.  height="26"
  15731.  viewBox="0 0 26 26"
  15732.  xmlns="http://www.w3.org/2000/svg"
  15733. >
  15734.  <g fill-rule="nonzero" fill="currentColor">
  15735.    <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"/>
  15736.  </g>
  15737. </svg></span>
  15738.                </button>
  15739.              </div>
  15740.            
  15741.          </div>
  15742.        
  15743.      
  15744.    </div>
  15745.  </div>
  15746.  
  15747.  
  15748.    <script type="application/json" data-quick-buy-settings>
  15749.      {
  15750.        "cart_redirection": true,
  15751.        "money_format": "${{amount}}"
  15752.      }
  15753.    </script>
  15754.  
  15755. </li>
  15756.    
  15757.      
  15758.  
  15759.  
  15760.  
  15761.  
  15762.  
  15763.  
  15764.  
  15765.  
  15766.  
  15767.  
  15768.  
  15769.  
  15770.  
  15771.  
  15772.  
  15773.  
  15774.  
  15775.  
  15776.  
  15777.  
  15778.  
  15779.  
  15780.  
  15781.  
  15782.  
  15783.  
  15784.  
  15785.  
  15786.  
  15787.  
  15788.  
  15789.  
  15790.    
  15791.  
  15792.  
  15793.  
  15794. <li
  15795.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  15796.  data-product-item
  15797.  data-product-quickshop-url="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15798.  
  15799. >
  15800.  <div class="productitem" data-product-item-content>
  15801.    
  15802.    
  15803.    
  15804.    
  15805.  
  15806.    
  15807.  
  15808.    
  15809.  
  15810.    <div class="productitem__container">
  15811.      
  15812.  
  15813.      <div class="productitem__image-container">
  15814.        <a target="_blank"
  15815.          class="productitem--image-link"
  15816.          href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15817.          aria-label="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15818.          tabindex="-1"
  15819.          data-product-page-link
  15820.        >
  15821.          <figure
  15822.            class="productitem--image"
  15823.            data-product-item-image
  15824.            
  15825.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  15826.            
  15827.          >
  15828.            
  15829.              
  15830.              
  15831.  
  15832.  
  15833.    <noscript data-rimg-noscript>
  15834.      <img loading="lazy"
  15835.        
  15836.          src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15837.        
  15838.  
  15839.        alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15840.        data-rimg="noscript"
  15841.        srcset="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427 1x"
  15842.        class="productitem--image-primary"
  15843.        
  15844.        
  15845.      >
  15846.    </noscript>
  15847.  
  15848.  
  15849.  <img loading="lazy"
  15850.    
  15851.      src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15852.    
  15853.    alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15854.  
  15855.    
  15856.      data-rimg="lazy"
  15857.      data-rimg-scale="1"
  15858.      data-rimg-template="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_{size}.jpg?v=1715271427"
  15859.      data-rimg-max="500x500"
  15860.      data-rimg-crop="false"
  15861.      
  15862.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  15863.    
  15864.  
  15865.    class="productitem--image-primary"
  15866.    
  15867.    
  15868.  >
  15869.  
  15870.  
  15871.  
  15872.  <div data-rimg-canvas></div>
  15873.  
  15874.  
  15875.            
  15876.  
  15877.            
  15878.  
  15879.  
  15880.  
  15881.  
  15882.  
  15883.  
  15884.  
  15885.  
  15886.  
  15887.  
  15888.  
  15889.  
  15890.  
  15891.  
  15892.  
  15893.  
  15894.  
  15895.  
  15896.  
  15897.  
  15898.  
  15899.  
  15900.  
  15901.  
  15902.  
  15903.  
  15904.  
  15905.          </figure>
  15906.        </a>
  15907.      </div><div class="productitem--info">
  15908.        
  15909.          
  15910.  
  15911.        
  15912.  
  15913.        
  15914.          
  15915.  
  15916.  
  15917.  
  15918.  
  15919.  
  15920.  
  15921.  
  15922.  
  15923.  
  15924.  
  15925.  
  15926.  
  15927.  
  15928.  
  15929.  
  15930.  
  15931.  
  15932.  
  15933.  
  15934.  
  15935.  
  15936.  
  15937.  
  15938.  
  15939.  
  15940.  
  15941.  
  15942.  
  15943.  
  15944.  
  15945. <div class="price productitem__price ">
  15946.  
  15947.    <div
  15948.      class="price__compare-at visible"
  15949.      data-price-compare-container
  15950.    >
  15951.  
  15952.      
  15953.        <span class="money price__original" data-price-original></span>
  15954.      
  15955.    </div>
  15956.  
  15957.  
  15958.    
  15959.      
  15960.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15961.        
  15962.          <span class="visually-hidden">Original price</span>
  15963.          <span class="money price__compare-at--min" data-price-compare-min>
  15964.            $80.99
  15965.          </span>
  15966.          -
  15967.          <span class="visually-hidden">Original price</span>
  15968.          <span class="money price__compare-at--max" data-price-compare-max>
  15969.            $80.99
  15970.          </span>
  15971.        
  15972.      </div>
  15973.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15974.        <span class="visually-hidden">Original price</span>
  15975.        <span class="money price__compare-at--single" data-price-compare>
  15976.          
  15977.        </span>
  15978.      </div>
  15979.    
  15980.  
  15981.  
  15982.  <div class="price__current price__current--emphasize " data-price-container>
  15983.  
  15984.    
  15985.  
  15986.    
  15987.      
  15988.      
  15989.      <span class="money" data-price>
  15990.        $80.99
  15991.      </span>
  15992.    
  15993.    
  15994.  </div>
  15995.  
  15996.  
  15997.    
  15998.    <div class="price__current--hidden" data-current-price-range-hidden>
  15999.      
  16000.        <span class="money price__current--min" data-price-min>$80.99</span>
  16001.        -
  16002.        <span class="money price__current--max" data-price-max>$80.99</span>
  16003.      
  16004.    </div>
  16005.    <div class="price__current--hidden" data-current-price-hidden>
  16006.      <span class="visually-hidden">Current price</span>
  16007.      <span class="money" data-price>
  16008.        $80.99
  16009.      </span>
  16010.    </div>
  16011.  
  16012.  
  16013.  
  16014.    
  16015.    
  16016.    
  16017.    
  16018.  
  16019.    <div
  16020.      class="
  16021.        productitem__unit-price
  16022.        hidden
  16023.      "
  16024.      data-unit-price
  16025.    >
  16026.      <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>
  16027.    </div>
  16028.  
  16029.  
  16030.  
  16031. </div>
  16032.  
  16033.  
  16034.        
  16035.  
  16036.        <h2 class="productitem--title">
  16037.          <a href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m" data-product-page-link>
  16038.            Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M
  16039.          </a>
  16040.        </h2>
  16041.  
  16042.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16043.        <div class="star_container 4451281286"></div>
  16044.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16045.  
  16046.        
  16047.          
  16048.            <span class="productitem--vendor">
  16049.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16050.            </span>
  16051.          
  16052.        
  16053.  
  16054.        
  16055.  
  16056.        
  16057.          
  16058.            <div class="productitem__stock-level">
  16059.              <!--
  16060.  
  16061.  
  16062.  
  16063.  
  16064.  
  16065.  
  16066.  
  16067. <div class="product-stock-level-wrapper" >
  16068.  
  16069.    <span class="
  16070.  product-stock-level
  16071.  product-stock-level--continue-selling
  16072.  
  16073. ">
  16074.      
  16075.  
  16076.      <span class="product-stock-level__text">
  16077.        
  16078.        <div class="product-stock-level__badge-text">
  16079.          
  16080.  
  16081.    In stock
  16082.  
  16083.  
  16084.        </div>
  16085.      </span>
  16086.    </span>
  16087.  
  16088. </div>
  16089. -->
  16090.              
  16091.  
  16092.  
  16093.    
  16094.      <b style="color:green">In stock</b>
  16095.    
  16096.  
  16097.  
  16098.  
  16099.  
  16100.  
  16101.  
  16102.  
  16103.            </div>
  16104.          
  16105.  
  16106.          
  16107.            
  16108.          
  16109.        
  16110.  
  16111.        
  16112.          <div class="productitem--description">
  16113.            <p>Description: New genuine Acer laptop replacement keyboard. Canadian Bilingual layout. Part #'s: KB.I140A.114, KBI140A114, NSK-AM02M, 9J.N1P82.02M. ...</p>
  16114.  
  16115.            
  16116.              <a
  16117.                href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  16118.                class="productitem--link"
  16119.                data-product-page-link
  16120.              >
  16121.                View full details
  16122.              </a>
  16123.            
  16124.          </div>
  16125.        
  16126.      </div>
  16127.  
  16128.      
  16129.        
  16130.          
  16131.          
  16132.          
  16133.  
  16134.          
  16135.          
  16136.  
  16137.          
  16138.  
  16139.          
  16140.  
  16141.          <div class="productitem--actions" data-product-actions>
  16142.            <div class="productitem--listview-price">
  16143.              
  16144.  
  16145.  
  16146.  
  16147.  
  16148.  
  16149.  
  16150.  
  16151.  
  16152.  
  16153.  
  16154.  
  16155.  
  16156.  
  16157.  
  16158.  
  16159.  
  16160.  
  16161.  
  16162.  
  16163.  
  16164.  
  16165.  
  16166.  
  16167.  
  16168.  
  16169.  
  16170.  
  16171.  
  16172.  
  16173.  
  16174. <div class="price productitem__price ">
  16175.  
  16176.    <div
  16177.      class="price__compare-at visible"
  16178.      data-price-compare-container
  16179.    >
  16180.  
  16181.      
  16182.        <span class="money price__original" data-price-original></span>
  16183.      
  16184.    </div>
  16185.  
  16186.  
  16187.    
  16188.      
  16189.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16190.        
  16191.          <span class="visually-hidden">Original price</span>
  16192.          <span class="money price__compare-at--min" data-price-compare-min>
  16193.            $80.99
  16194.          </span>
  16195.          -
  16196.          <span class="visually-hidden">Original price</span>
  16197.          <span class="money price__compare-at--max" data-price-compare-max>
  16198.            $80.99
  16199.          </span>
  16200.        
  16201.      </div>
  16202.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16203.        <span class="visually-hidden">Original price</span>
  16204.        <span class="money price__compare-at--single" data-price-compare>
  16205.          
  16206.        </span>
  16207.      </div>
  16208.    
  16209.  
  16210.  
  16211.  <div class="price__current price__current--emphasize " data-price-container>
  16212.  
  16213.    
  16214.  
  16215.    
  16216.      
  16217.      
  16218.      <span class="money" data-price>
  16219.        $80.99
  16220.      </span>
  16221.    
  16222.    
  16223.  </div>
  16224.  
  16225.  
  16226.    
  16227.    <div class="price__current--hidden" data-current-price-range-hidden>
  16228.      
  16229.        <span class="money price__current--min" data-price-min>$80.99</span>
  16230.        -
  16231.        <span class="money price__current--max" data-price-max>$80.99</span>
  16232.      
  16233.    </div>
  16234.    <div class="price__current--hidden" data-current-price-hidden>
  16235.      <span class="visually-hidden">Current price</span>
  16236.      <span class="money" data-price>
  16237.        $80.99
  16238.      </span>
  16239.    </div>
  16240.  
  16241.  
  16242.  
  16243.    
  16244.    
  16245.    
  16246.    
  16247.  
  16248.    <div
  16249.      class="
  16250.        productitem__unit-price
  16251.        hidden
  16252.      "
  16253.      data-unit-price
  16254.    >
  16255.      <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>
  16256.    </div>
  16257.  
  16258.  
  16259.  
  16260. </div>
  16261.  
  16262.  
  16263.            </div>
  16264.  
  16265.            <div class="productitem--listview-badge">
  16266.              
  16267.  
  16268.  
  16269.  
  16270.  
  16271.  
  16272.  
  16273.  
  16274.  
  16275.  
  16276.  
  16277.  
  16278.  
  16279.  
  16280.  
  16281.  
  16282.  
  16283.  
  16284.  
  16285.  
  16286.  
  16287.  
  16288.  
  16289.  
  16290.  
  16291.  
  16292.  
  16293.  
  16294.            </div>
  16295.  
  16296.            
  16297.              <div
  16298.                class="
  16299.                  productitem--action
  16300.                  quickshop-button
  16301.                  
  16302.                "
  16303.              >
  16304.                <button
  16305.                  class="productitem--action-trigger button-secondary"
  16306.                  data-quickshop-full
  16307.                  
  16308.                  
  16309.                  type="button"
  16310.                >
  16311.                  Quick shop
  16312.                </button>
  16313.              </div>
  16314.            
  16315.  
  16316.            
  16317.              <div
  16318.                class="
  16319.                  productitem--action
  16320.                  atc--button
  16321.                  
  16322.                "
  16323.              >
  16324.                <button
  16325.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16326.                  type="button"
  16327.                  aria-label="Add to cart"
  16328.                  
  16329.                    data-quick-buy
  16330.                  
  16331.                  data-variant-id="39666363793495"
  16332.                  
  16333.                >
  16334.                  <span class="atc-button--text">
  16335.                    Add to cart
  16336.                  </span>
  16337.                  <span class="atc-button--icon"><svg
  16338.  aria-hidden="true"
  16339.  focusable="false"
  16340.  role="presentation"
  16341.  width="26"
  16342.  height="26"
  16343.  viewBox="0 0 26 26"
  16344.  xmlns="http://www.w3.org/2000/svg"
  16345. >
  16346.  <g fill-rule="nonzero" fill="currentColor">
  16347.    <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"/>
  16348.  </g>
  16349. </svg></span>
  16350.                </button>
  16351.              </div>
  16352.            
  16353.          </div>
  16354.        
  16355.      
  16356.    </div>
  16357.  </div>
  16358.  
  16359.  
  16360.    <script type="application/json" data-quick-buy-settings>
  16361.      {
  16362.        "cart_redirection": true,
  16363.        "money_format": "${{amount}}"
  16364.      }
  16365.    </script>
  16366.  
  16367. </li>
  16368.    
  16369.      
  16370.  
  16371.  
  16372.  
  16373.  
  16374.  
  16375.  
  16376.  
  16377.  
  16378.  
  16379.  
  16380.  
  16381.  
  16382.  
  16383.  
  16384.  
  16385.  
  16386.  
  16387.  
  16388.  
  16389.  
  16390.  
  16391.  
  16392.  
  16393.  
  16394.  
  16395.  
  16396.  
  16397.  
  16398.  
  16399.  
  16400.  
  16401.  
  16402.    
  16403.  
  16404.  
  16405.  
  16406. <li
  16407.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16408.  data-product-item
  16409.  data-product-quickshop-url="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16410.  
  16411. >
  16412.  <div class="productitem" data-product-item-content>
  16413.    
  16414.    
  16415.    
  16416.    
  16417.  
  16418.    
  16419.  
  16420.    
  16421.  
  16422.    <div class="productitem__container">
  16423.      
  16424.  
  16425.      <div class="productitem__image-container">
  16426.        <a target="_blank"
  16427.          class="productitem--image-link"
  16428.          href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16429.          aria-label="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16430.          tabindex="-1"
  16431.          data-product-page-link
  16432.        >
  16433.          <figure
  16434.            class="productitem--image"
  16435.            data-product-item-image
  16436.            
  16437.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  16438.            
  16439.          >
  16440.            
  16441.              
  16442.              
  16443.  
  16444.  
  16445.    <noscript data-rimg-noscript>
  16446.      <img loading="lazy"
  16447.        
  16448.          src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16449.        
  16450.  
  16451.        alt=""
  16452.        data-rimg="noscript"
  16453.        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"
  16454.        class="productitem--image-primary"
  16455.        
  16456.        
  16457.      >
  16458.    </noscript>
  16459.  
  16460.  
  16461.  <img loading="lazy"
  16462.    
  16463.      src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16464.    
  16465.    alt=""
  16466.  
  16467.    
  16468.      data-rimg="lazy"
  16469.      data-rimg-scale="1"
  16470.      data-rimg-template="//laptopparts.ca/cdn/shop/products/33.paa02.007_{size}.jpg?v=1697125255"
  16471.      data-rimg-max="655x655"
  16472.      data-rimg-crop="false"
  16473.      
  16474.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  16475.    
  16476.  
  16477.    class="productitem--image-primary"
  16478.    
  16479.    
  16480.  >
  16481.  
  16482.  
  16483.  
  16484.  <div data-rimg-canvas></div>
  16485.  
  16486.  
  16487.            
  16488.  
  16489.            
  16490.  
  16491.  
  16492.  
  16493.  
  16494.  
  16495.  
  16496.  
  16497.  
  16498.  
  16499.  
  16500.  
  16501.  
  16502.  
  16503.  
  16504.  
  16505.  
  16506.  
  16507.  
  16508.  
  16509.  
  16510.  
  16511.  
  16512.  
  16513.  
  16514.  
  16515.  
  16516.  
  16517.          </figure>
  16518.        </a>
  16519.      </div><div class="productitem--info">
  16520.        
  16521.          
  16522.  
  16523.        
  16524.  
  16525.        
  16526.          
  16527.  
  16528.  
  16529.  
  16530.  
  16531.  
  16532.  
  16533.  
  16534.  
  16535.  
  16536.  
  16537.  
  16538.  
  16539.  
  16540.  
  16541.  
  16542.  
  16543.  
  16544.  
  16545.  
  16546.  
  16547.  
  16548.  
  16549.  
  16550.  
  16551.  
  16552.  
  16553.  
  16554.  
  16555.  
  16556.  
  16557. <div class="price productitem__price ">
  16558.  
  16559.    <div
  16560.      class="price__compare-at visible"
  16561.      data-price-compare-container
  16562.    >
  16563.  
  16564.      
  16565.        <span class="money price__original" data-price-original></span>
  16566.      
  16567.    </div>
  16568.  
  16569.  
  16570.    
  16571.      
  16572.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16573.        
  16574.          <span class="visually-hidden">Original price</span>
  16575.          <span class="money price__compare-at--min" data-price-compare-min>
  16576.            $59.99
  16577.          </span>
  16578.          -
  16579.          <span class="visually-hidden">Original price</span>
  16580.          <span class="money price__compare-at--max" data-price-compare-max>
  16581.            $59.99
  16582.          </span>
  16583.        
  16584.      </div>
  16585.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16586.        <span class="visually-hidden">Original price</span>
  16587.        <span class="money price__compare-at--single" data-price-compare>
  16588.          
  16589.        </span>
  16590.      </div>
  16591.    
  16592.  
  16593.  
  16594.  <div class="price__current price__current--emphasize " data-price-container>
  16595.  
  16596.    
  16597.  
  16598.    
  16599.      
  16600.      
  16601.      <span class="money" data-price>
  16602.        $59.99
  16603.      </span>
  16604.    
  16605.    
  16606.  </div>
  16607.  
  16608.  
  16609.    
  16610.    <div class="price__current--hidden" data-current-price-range-hidden>
  16611.      
  16612.        <span class="money price__current--min" data-price-min>$59.99</span>
  16613.        -
  16614.        <span class="money price__current--max" data-price-max>$59.99</span>
  16615.      
  16616.    </div>
  16617.    <div class="price__current--hidden" data-current-price-hidden>
  16618.      <span class="visually-hidden">Current price</span>
  16619.      <span class="money" data-price>
  16620.        $59.99
  16621.      </span>
  16622.    </div>
  16623.  
  16624.  
  16625.  
  16626.    
  16627.    
  16628.    
  16629.    
  16630.  
  16631.    <div
  16632.      class="
  16633.        productitem__unit-price
  16634.        hidden
  16635.      "
  16636.      data-unit-price
  16637.    >
  16638.      <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>
  16639.    </div>
  16640.  
  16641.  
  16642.  
  16643. </div>
  16644.  
  16645.  
  16646.        
  16647.  
  16648.        <h2 class="productitem--title">
  16649.          <a href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210" data-product-page-link>
  16650.            Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210
  16651.          </a>
  16652.        </h2>
  16653.  
  16654.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16655.        <div class="star_container 243102056471"></div>
  16656.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16657.  
  16658.        
  16659.          
  16660.            <span class="productitem--vendor">
  16661.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16662.            </span>
  16663.          
  16664.        
  16665.  
  16666.        
  16667.  
  16668.        
  16669.          
  16670.            <div class="productitem__stock-level">
  16671.              <!--
  16672.  
  16673.  
  16674.  
  16675.  
  16676.  
  16677.  
  16678.  
  16679. <div class="product-stock-level-wrapper" >
  16680.  
  16681.    <span class="
  16682.  product-stock-level
  16683.  product-stock-level--continue-selling
  16684.  
  16685. ">
  16686.      
  16687.  
  16688.      <span class="product-stock-level__text">
  16689.        
  16690.        <div class="product-stock-level__badge-text">
  16691.          
  16692.  
  16693.    In stock
  16694.  
  16695.  
  16696.        </div>
  16697.      </span>
  16698.    </span>
  16699.  
  16700. </div>
  16701. -->
  16702.              
  16703.  
  16704.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  16705.  
  16706.  
  16707.  
  16708.  
  16709.  
  16710.  
  16711.  
  16712.            </div>
  16713.          
  16714.  
  16715.          
  16716.            
  16717.          
  16718.        
  16719.  
  16720.        
  16721.          <div class="productitem--description">
  16722.            <p>Description: New genuine Acer laptop hinge and bracket set.
  16723. Part #'s: 33.PAA02.007, 091203 240, 091221 210.
  16724. Compatible Models: Acer Aspire 4235, 42...</p>
  16725.  
  16726.            
  16727.              <a
  16728.                href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16729.                class="productitem--link"
  16730.                data-product-page-link
  16731.              >
  16732.                View full details
  16733.              </a>
  16734.            
  16735.          </div>
  16736.        
  16737.      </div>
  16738.  
  16739.      
  16740.        
  16741.          
  16742.          
  16743.          
  16744.  
  16745.          
  16746.          
  16747.  
  16748.          
  16749.  
  16750.          
  16751.  
  16752.          <div class="productitem--actions" data-product-actions>
  16753.            <div class="productitem--listview-price">
  16754.              
  16755.  
  16756.  
  16757.  
  16758.  
  16759.  
  16760.  
  16761.  
  16762.  
  16763.  
  16764.  
  16765.  
  16766.  
  16767.  
  16768.  
  16769.  
  16770.  
  16771.  
  16772.  
  16773.  
  16774.  
  16775.  
  16776.  
  16777.  
  16778.  
  16779.  
  16780.  
  16781.  
  16782.  
  16783.  
  16784.  
  16785. <div class="price productitem__price ">
  16786.  
  16787.    <div
  16788.      class="price__compare-at visible"
  16789.      data-price-compare-container
  16790.    >
  16791.  
  16792.      
  16793.        <span class="money price__original" data-price-original></span>
  16794.      
  16795.    </div>
  16796.  
  16797.  
  16798.    
  16799.      
  16800.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16801.        
  16802.          <span class="visually-hidden">Original price</span>
  16803.          <span class="money price__compare-at--min" data-price-compare-min>
  16804.            $59.99
  16805.          </span>
  16806.          -
  16807.          <span class="visually-hidden">Original price</span>
  16808.          <span class="money price__compare-at--max" data-price-compare-max>
  16809.            $59.99
  16810.          </span>
  16811.        
  16812.      </div>
  16813.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16814.        <span class="visually-hidden">Original price</span>
  16815.        <span class="money price__compare-at--single" data-price-compare>
  16816.          
  16817.        </span>
  16818.      </div>
  16819.    
  16820.  
  16821.  
  16822.  <div class="price__current price__current--emphasize " data-price-container>
  16823.  
  16824.    
  16825.  
  16826.    
  16827.      
  16828.      
  16829.      <span class="money" data-price>
  16830.        $59.99
  16831.      </span>
  16832.    
  16833.    
  16834.  </div>
  16835.  
  16836.  
  16837.    
  16838.    <div class="price__current--hidden" data-current-price-range-hidden>
  16839.      
  16840.        <span class="money price__current--min" data-price-min>$59.99</span>
  16841.        -
  16842.        <span class="money price__current--max" data-price-max>$59.99</span>
  16843.      
  16844.    </div>
  16845.    <div class="price__current--hidden" data-current-price-hidden>
  16846.      <span class="visually-hidden">Current price</span>
  16847.      <span class="money" data-price>
  16848.        $59.99
  16849.      </span>
  16850.    </div>
  16851.  
  16852.  
  16853.  
  16854.    
  16855.    
  16856.    
  16857.    
  16858.  
  16859.    <div
  16860.      class="
  16861.        productitem__unit-price
  16862.        hidden
  16863.      "
  16864.      data-unit-price
  16865.    >
  16866.      <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>
  16867.    </div>
  16868.  
  16869.  
  16870.  
  16871. </div>
  16872.  
  16873.  
  16874.            </div>
  16875.  
  16876.            <div class="productitem--listview-badge">
  16877.              
  16878.  
  16879.  
  16880.  
  16881.  
  16882.  
  16883.  
  16884.  
  16885.  
  16886.  
  16887.  
  16888.  
  16889.  
  16890.  
  16891.  
  16892.  
  16893.  
  16894.  
  16895.  
  16896.  
  16897.  
  16898.  
  16899.  
  16900.  
  16901.  
  16902.  
  16903.  
  16904.  
  16905.            </div>
  16906.  
  16907.            
  16908.              <div
  16909.                class="
  16910.                  productitem--action
  16911.                  quickshop-button
  16912.                  
  16913.                "
  16914.              >
  16915.                <button
  16916.                  class="productitem--action-trigger button-secondary"
  16917.                  data-quickshop-full
  16918.                  
  16919.                  
  16920.                  type="button"
  16921.                >
  16922.                  Quick shop
  16923.                </button>
  16924.              </div>
  16925.            
  16926.  
  16927.            
  16928.              <div
  16929.                class="
  16930.                  productitem--action
  16931.                  atc--button
  16932.                  
  16933.                "
  16934.              >
  16935.                <button
  16936.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16937.                  type="button"
  16938.                  aria-label="Add to cart"
  16939.                  
  16940.                    data-quick-buy
  16941.                  
  16942.                  data-variant-id="2838819504151"
  16943.                  
  16944.                >
  16945.                  <span class="atc-button--text">
  16946.                    Add to cart
  16947.                  </span>
  16948.                  <span class="atc-button--icon"><svg
  16949.  aria-hidden="true"
  16950.  focusable="false"
  16951.  role="presentation"
  16952.  width="26"
  16953.  height="26"
  16954.  viewBox="0 0 26 26"
  16955.  xmlns="http://www.w3.org/2000/svg"
  16956. >
  16957.  <g fill-rule="nonzero" fill="currentColor">
  16958.    <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"/>
  16959.  </g>
  16960. </svg></span>
  16961.                </button>
  16962.              </div>
  16963.            
  16964.          </div>
  16965.        
  16966.      
  16967.    </div>
  16968.  </div>
  16969.  
  16970.  
  16971.    <script type="application/json" data-quick-buy-settings>
  16972.      {
  16973.        "cart_redirection": true,
  16974.        "money_format": "${{amount}}"
  16975.      }
  16976.    </script>
  16977.  
  16978. </li>
  16979.    
  16980.      
  16981.  
  16982.  
  16983.  
  16984.  
  16985.  
  16986.  
  16987.  
  16988.  
  16989.  
  16990.  
  16991.  
  16992.  
  16993.  
  16994.  
  16995.  
  16996.  
  16997.  
  16998.  
  16999.  
  17000.  
  17001.  
  17002.  
  17003.  
  17004.  
  17005.  
  17006.  
  17007.  
  17008.  
  17009.  
  17010.  
  17011.  
  17012.  
  17013.    
  17014.  
  17015.  
  17016.  
  17017. <li
  17018.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17019.  data-product-item
  17020.  data-product-quickshop-url="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  17021.  
  17022. >
  17023.  <div class="productitem" data-product-item-content>
  17024.    
  17025.    
  17026.    
  17027.    
  17028.  
  17029.    
  17030.  
  17031.    
  17032.  
  17033.    <div class="productitem__container">
  17034.      
  17035.  
  17036.      <div class="productitem__image-container">
  17037.        <a target="_blank"
  17038.          class="productitem--image-link"
  17039.          href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  17040.          aria-label="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  17041.          tabindex="-1"
  17042.          data-product-page-link
  17043.        >
  17044.          <figure
  17045.            class="productitem--image"
  17046.            data-product-item-image
  17047.            
  17048.              style="--product-grid-item-image-aspect-ratio: 0.5231513476157568;"
  17049.            
  17050.          >
  17051.            
  17052.              
  17053.              
  17054.  
  17055.  
  17056.    <noscript data-rimg-noscript>
  17057.      <img loading="lazy"
  17058.        
  17059.          src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  17060.        
  17061.  
  17062.        alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  17063.        data-rimg="noscript"
  17064.        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"
  17065.        class="productitem--image-primary"
  17066.        
  17067.        
  17068.      >
  17069.    </noscript>
  17070.  
  17071.  
  17072.  <img loading="lazy"
  17073.    
  17074.      src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  17075.    
  17076.    alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  17077.  
  17078.    
  17079.      data-rimg="lazy"
  17080.      data-rimg-scale="1"
  17081.      data-rimg-template="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_{size}.jpg?v=1728212053"
  17082.      data-rimg-max="757x1447"
  17083.      data-rimg-crop="false"
  17084.      
  17085.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='979'></svg>"
  17086.    
  17087.  
  17088.    class="productitem--image-primary"
  17089.    
  17090.    
  17091.  >
  17092.  
  17093.  
  17094.  
  17095.  <div data-rimg-canvas></div>
  17096.  
  17097.  
  17098.            
  17099.  
  17100.            
  17101.  
  17102.  
  17103.  
  17104.  
  17105.  
  17106.  
  17107.  
  17108.  
  17109.  
  17110.  
  17111.  
  17112.  
  17113.  
  17114.  
  17115.  
  17116.  
  17117.  
  17118.  
  17119.  
  17120.  
  17121.  
  17122.  
  17123.  
  17124.  
  17125.  
  17126.  
  17127.  
  17128.          </figure>
  17129.        </a>
  17130.      </div><div class="productitem--info">
  17131.        
  17132.          
  17133.  
  17134.        
  17135.  
  17136.        
  17137.          
  17138.  
  17139.  
  17140.  
  17141.  
  17142.  
  17143.  
  17144.  
  17145.  
  17146.  
  17147.  
  17148.  
  17149.  
  17150.  
  17151.  
  17152.  
  17153.  
  17154.  
  17155.  
  17156.  
  17157.  
  17158.  
  17159.  
  17160.  
  17161.  
  17162.  
  17163.  
  17164.  
  17165.  
  17166.  
  17167.  
  17168. <div class="price productitem__price ">
  17169.  
  17170.    <div
  17171.      class="price__compare-at visible"
  17172.      data-price-compare-container
  17173.    >
  17174.  
  17175.      
  17176.        <span class="money price__original" data-price-original></span>
  17177.      
  17178.    </div>
  17179.  
  17180.  
  17181.    
  17182.      
  17183.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17184.        
  17185.          <span class="visually-hidden">Original price</span>
  17186.          <span class="money price__compare-at--min" data-price-compare-min>
  17187.            $45.99
  17188.          </span>
  17189.          -
  17190.          <span class="visually-hidden">Original price</span>
  17191.          <span class="money price__compare-at--max" data-price-compare-max>
  17192.            $45.99
  17193.          </span>
  17194.        
  17195.      </div>
  17196.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17197.        <span class="visually-hidden">Original price</span>
  17198.        <span class="money price__compare-at--single" data-price-compare>
  17199.          
  17200.        </span>
  17201.      </div>
  17202.    
  17203.  
  17204.  
  17205.  <div class="price__current price__current--emphasize " data-price-container>
  17206.  
  17207.    
  17208.  
  17209.    
  17210.      
  17211.      
  17212.      <span class="money" data-price>
  17213.        $45.99
  17214.      </span>
  17215.    
  17216.    
  17217.  </div>
  17218.  
  17219.  
  17220.    
  17221.    <div class="price__current--hidden" data-current-price-range-hidden>
  17222.      
  17223.        <span class="money price__current--min" data-price-min>$45.99</span>
  17224.        -
  17225.        <span class="money price__current--max" data-price-max>$45.99</span>
  17226.      
  17227.    </div>
  17228.    <div class="price__current--hidden" data-current-price-hidden>
  17229.      <span class="visually-hidden">Current price</span>
  17230.      <span class="money" data-price>
  17231.        $45.99
  17232.      </span>
  17233.    </div>
  17234.  
  17235.  
  17236.  
  17237.    
  17238.    
  17239.    
  17240.    
  17241.  
  17242.    <div
  17243.      class="
  17244.        productitem__unit-price
  17245.        hidden
  17246.      "
  17247.      data-unit-price
  17248.    >
  17249.      <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>
  17250.    </div>
  17251.  
  17252.  
  17253.  
  17254. </div>
  17255.  
  17256.  
  17257.        
  17258.  
  17259.        <h2 class="productitem--title">
  17260.          <a href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set" data-product-page-link>
  17261.            Acer Aspire 5 A515-41 A515-41G A515-51 A515-51G Right & Left Lcd Hinge Set 33.GP4N2.003
  17262.          </a>
  17263.        </h2>
  17264.  
  17265.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  17266.        <div class="star_container 1468469608471"></div>
  17267.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  17268.  
  17269.        
  17270.          
  17271.            <span class="productitem--vendor">
  17272.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  17273.            </span>
  17274.          
  17275.        
  17276.  
  17277.        
  17278.  
  17279.        
  17280.          
  17281.            <div class="productitem__stock-level">
  17282.              <!--
  17283.  
  17284.  
  17285.  
  17286.  
  17287.  
  17288.  
  17289.  
  17290. <div class="product-stock-level-wrapper" >
  17291.  
  17292.    <span class="
  17293.  product-stock-level
  17294.  product-stock-level--continue-selling
  17295.  
  17296. ">
  17297.      
  17298.  
  17299.      <span class="product-stock-level__text">
  17300.        
  17301.        <div class="product-stock-level__badge-text">
  17302.          
  17303.  
  17304.    In stock
  17305.  
  17306.  
  17307.        </div>
  17308.      </span>
  17309.    </span>
  17310.  
  17311. </div>
  17312. -->
  17313.              
  17314.  
  17315.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  17316.  
  17317.  
  17318.  
  17319.  
  17320.  
  17321.  
  17322.  
  17323.            </div>
  17324.          
  17325.  
  17326.          
  17327.            
  17328.          
  17329.        
  17330.  
  17331.        
  17332.          <div class="productitem--description">
  17333.            <p>
  17334. Description: New Acer right and left laptop lcd hinge set.
  17335.  
  17336.  
  17337. Compatible Part #'s: 33.GP4N2.003, 33.GP4N2.004Compatible Models:Acer Aspire 3 A315-...</p>
  17338.  
  17339.            
  17340.              <a
  17341.                href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  17342.                class="productitem--link"
  17343.                data-product-page-link
  17344.              >
  17345.                View full details
  17346.              </a>
  17347.            
  17348.          </div>
  17349.        
  17350.      </div>
  17351.  
  17352.      
  17353.        
  17354.          
  17355.          
  17356.          
  17357.  
  17358.          
  17359.          
  17360.  
  17361.          
  17362.  
  17363.          
  17364.  
  17365.          <div class="productitem--actions" data-product-actions>
  17366.            <div class="productitem--listview-price">
  17367.              
  17368.  
  17369.  
  17370.  
  17371.  
  17372.  
  17373.  
  17374.  
  17375.  
  17376.  
  17377.  
  17378.  
  17379.  
  17380.  
  17381.  
  17382.  
  17383.  
  17384.  
  17385.  
  17386.  
  17387.  
  17388.  
  17389.  
  17390.  
  17391.  
  17392.  
  17393.  
  17394.  
  17395.  
  17396.  
  17397.  
  17398. <div class="price productitem__price ">
  17399.  
  17400.    <div
  17401.      class="price__compare-at visible"
  17402.      data-price-compare-container
  17403.    >
  17404.  
  17405.      
  17406.        <span class="money price__original" data-price-original></span>
  17407.      
  17408.    </div>
  17409.  
  17410.  
  17411.    
  17412.      
  17413.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17414.        
  17415.          <span class="visually-hidden">Original price</span>
  17416.          <span class="money price__compare-at--min" data-price-compare-min>
  17417.            $45.99
  17418.          </span>
  17419.          -
  17420.          <span class="visually-hidden">Original price</span>
  17421.          <span class="money price__compare-at--max" data-price-compare-max>
  17422.            $45.99
  17423.          </span>
  17424.        
  17425.      </div>
  17426.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17427.        <span class="visually-hidden">Original price</span>
  17428.        <span class="money price__compare-at--single" data-price-compare>
  17429.          
  17430.        </span>
  17431.      </div>
  17432.    
  17433.  
  17434.  
  17435.  <div class="price__current price__current--emphasize " data-price-container>
  17436.  
  17437.    
  17438.  
  17439.    
  17440.      
  17441.      
  17442.      <span class="money" data-price>
  17443.        $45.99
  17444.      </span>
  17445.    
  17446.    
  17447.  </div>
  17448.  
  17449.  
  17450.    
  17451.    <div class="price__current--hidden" data-current-price-range-hidden>
  17452.      
  17453.        <span class="money price__current--min" data-price-min>$45.99</span>
  17454.        -
  17455.        <span class="money price__current--max" data-price-max>$45.99</span>
  17456.      
  17457.    </div>
  17458.    <div class="price__current--hidden" data-current-price-hidden>
  17459.      <span class="visually-hidden">Current price</span>
  17460.      <span class="money" data-price>
  17461.        $45.99
  17462.      </span>
  17463.    </div>
  17464.  
  17465.  
  17466.  
  17467.    
  17468.    
  17469.    
  17470.    
  17471.  
  17472.    <div
  17473.      class="
  17474.        productitem__unit-price
  17475.        hidden
  17476.      "
  17477.      data-unit-price
  17478.    >
  17479.      <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>
  17480.    </div>
  17481.  
  17482.  
  17483.  
  17484. </div>
  17485.  
  17486.  
  17487.            </div>
  17488.  
  17489.            <div class="productitem--listview-badge">
  17490.              
  17491.  
  17492.  
  17493.  
  17494.  
  17495.  
  17496.  
  17497.  
  17498.  
  17499.  
  17500.  
  17501.  
  17502.  
  17503.  
  17504.  
  17505.  
  17506.  
  17507.  
  17508.  
  17509.  
  17510.  
  17511.  
  17512.  
  17513.  
  17514.  
  17515.  
  17516.  
  17517.  
  17518.            </div>
  17519.  
  17520.            
  17521.              <div
  17522.                class="
  17523.                  productitem--action
  17524.                  quickshop-button
  17525.                  
  17526.                "
  17527.              >
  17528.                <button
  17529.                  class="productitem--action-trigger button-secondary"
  17530.                  data-quickshop-full
  17531.                  
  17532.                  
  17533.                  type="button"
  17534.                >
  17535.                  Quick shop
  17536.                </button>
  17537.              </div>
  17538.            
  17539.  
  17540.            
  17541.              <div
  17542.                class="
  17543.                  productitem--action
  17544.                  atc--button
  17545.                  
  17546.                "
  17547.              >
  17548.                <button
  17549.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17550.                  type="button"
  17551.                  aria-label="Add to cart"
  17552.                  
  17553.                    data-quick-buy
  17554.                  
  17555.                  data-variant-id="12807718895639"
  17556.                  
  17557.                >
  17558.                  <span class="atc-button--text">
  17559.                    Add to cart
  17560.                  </span>
  17561.                  <span class="atc-button--icon"><svg
  17562.  aria-hidden="true"
  17563.  focusable="false"
  17564.  role="presentation"
  17565.  width="26"
  17566.  height="26"
  17567.  viewBox="0 0 26 26"
  17568.  xmlns="http://www.w3.org/2000/svg"
  17569. >
  17570.  <g fill-rule="nonzero" fill="currentColor">
  17571.    <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"/>
  17572.  </g>
  17573. </svg></span>
  17574.                </button>
  17575.              </div>
  17576.            
  17577.          </div>
  17578.        
  17579.      
  17580.    </div>
  17581.  </div>
  17582.  
  17583.  
  17584.    <script type="application/json" data-quick-buy-settings>
  17585.      {
  17586.        "cart_redirection": true,
  17587.        "money_format": "${{amount}}"
  17588.      }
  17589.    </script>
  17590.  
  17591. </li>
  17592.    
  17593.      
  17594.  
  17595.  
  17596.  
  17597.  
  17598.  
  17599.  
  17600.  
  17601.  
  17602.  
  17603.  
  17604.  
  17605.  
  17606.  
  17607.  
  17608.  
  17609.  
  17610.  
  17611.  
  17612.  
  17613.  
  17614.  
  17615.  
  17616.  
  17617.  
  17618.  
  17619.  
  17620.  
  17621.  
  17622.  
  17623.  
  17624.  
  17625.  
  17626.    
  17627.  
  17628.  
  17629.  
  17630. <li
  17631.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17632.  data-product-item
  17633.  data-product-quickshop-url="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17634.  
  17635. >
  17636.  <div class="productitem" data-product-item-content>
  17637.    
  17638.    
  17639.    
  17640.    
  17641.  
  17642.    
  17643.  
  17644.    
  17645.  
  17646.    <div class="productitem__container">
  17647.      
  17648.  
  17649.      <div class="productitem__image-container">
  17650.        <a target="_blank"
  17651.          class="productitem--image-link"
  17652.          href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17653.          aria-label="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17654.          tabindex="-1"
  17655.          data-product-page-link
  17656.        >
  17657.          <figure
  17658.            class="productitem--image"
  17659.            data-product-item-image
  17660.            
  17661.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17662.            
  17663.          >
  17664.            
  17665.              
  17666.              
  17667.  
  17668.  
  17669.    <noscript data-rimg-noscript>
  17670.      <img loading="lazy"
  17671.        
  17672.          src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17673.        
  17674.  
  17675.        alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17676.        data-rimg="noscript"
  17677.        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"
  17678.        class="productitem--image-primary"
  17679.        
  17680.        
  17681.      >
  17682.    </noscript>
  17683.  
  17684.  
  17685.  <img loading="lazy"
  17686.    
  17687.      src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17688.    
  17689.    alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17690.  
  17691.    
  17692.      data-rimg="lazy"
  17693.      data-rimg-scale="1"
  17694.      data-rimg-template="//laptopparts.ca/cdn/shop/products/23.apq0n.001_{size}.jpg?v=1715271966"
  17695.      data-rimg-max="600x600"
  17696.      data-rimg-crop="false"
  17697.      
  17698.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17699.    
  17700.  
  17701.    class="productitem--image-primary"
  17702.    
  17703.    
  17704.  >
  17705.  
  17706.  
  17707.  
  17708.  <div data-rimg-canvas></div>
  17709.  
  17710.  
  17711.            
  17712.  
  17713.            
  17714.  
  17715.  
  17716.  
  17717.  
  17718.  
  17719.  
  17720.  
  17721.  
  17722.  
  17723.  
  17724.  
  17725.  
  17726.  
  17727.  
  17728.  
  17729.  
  17730.  
  17731.  
  17732.  
  17733.  
  17734.  
  17735.  
  17736.  
  17737.  
  17738.  
  17739.  
  17740.  
  17741.          </figure>
  17742.        </a>
  17743.      </div><div class="productitem--info">
  17744.        
  17745.          
  17746.  
  17747.        
  17748.  
  17749.        
  17750.          
  17751.  
  17752.  
  17753.  
  17754.  
  17755.  
  17756.  
  17757.  
  17758.  
  17759.  
  17760.  
  17761.  
  17762.  
  17763.  
  17764.  
  17765.  
  17766.  
  17767.  
  17768.  
  17769.  
  17770.  
  17771.  
  17772.  
  17773.  
  17774.  
  17775.  
  17776.  
  17777.  
  17778.  
  17779.  
  17780.  
  17781. <div class="price productitem__price ">
  17782.  
  17783.    <div
  17784.      class="price__compare-at visible"
  17785.      data-price-compare-container
  17786.    >
  17787.  
  17788.      
  17789.        <span class="money price__original" data-price-original></span>
  17790.      
  17791.    </div>
  17792.  
  17793.  
  17794.    
  17795.      
  17796.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17797.        
  17798.          <span class="visually-hidden">Original price</span>
  17799.          <span class="money price__compare-at--min" data-price-compare-min>
  17800.            $52.99
  17801.          </span>
  17802.          -
  17803.          <span class="visually-hidden">Original price</span>
  17804.          <span class="money price__compare-at--max" data-price-compare-max>
  17805.            $52.99
  17806.          </span>
  17807.        
  17808.      </div>
  17809.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17810.        <span class="visually-hidden">Original price</span>
  17811.        <span class="money price__compare-at--single" data-price-compare>
  17812.          
  17813.        </span>
  17814.      </div>
  17815.    
  17816.  
  17817.  
  17818.  <div class="price__current price__current--emphasize " data-price-container>
  17819.  
  17820.    
  17821.  
  17822.    
  17823.      
  17824.      
  17825.      <span class="money" data-price>
  17826.        $52.99
  17827.      </span>
  17828.    
  17829.    
  17830.  </div>
  17831.  
  17832.  
  17833.    
  17834.    <div class="price__current--hidden" data-current-price-range-hidden>
  17835.      
  17836.        <span class="money price__current--min" data-price-min>$52.99</span>
  17837.        -
  17838.        <span class="money price__current--max" data-price-max>$52.99</span>
  17839.      
  17840.    </div>
  17841.    <div class="price__current--hidden" data-current-price-hidden>
  17842.      <span class="visually-hidden">Current price</span>
  17843.      <span class="money" data-price>
  17844.        $52.99
  17845.      </span>
  17846.    </div>
  17847.  
  17848.  
  17849.  
  17850.    
  17851.    
  17852.    
  17853.    
  17854.  
  17855.    <div
  17856.      class="
  17857.        productitem__unit-price
  17858.        hidden
  17859.      "
  17860.      data-unit-price
  17861.    >
  17862.      <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>
  17863.    </div>
  17864.  
  17865.  
  17866.  
  17867. </div>
  17868.  
  17869.  
  17870.        
  17871.  
  17872.        <h2 class="productitem--title">
  17873.          <a href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a" data-product-page-link>
  17874.            Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A
  17875.          </a>
  17876.        </h2>
  17877.  
  17878.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  17879.        <div class="star_container 4451325446"></div>
  17880.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  17881.  
  17882.        
  17883.          
  17884.            <span class="productitem--vendor">
  17885.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  17886.            </span>
  17887.          
  17888.        
  17889.  
  17890.        
  17891.  
  17892.        
  17893.          
  17894.            <div class="productitem__stock-level">
  17895.              <!--
  17896.  
  17897.  
  17898.  
  17899.  
  17900.  
  17901.  
  17902.  
  17903. <div class="product-stock-level-wrapper" >
  17904.  
  17905.    <span class="
  17906.  product-stock-level
  17907.  product-stock-level--continue-selling
  17908.  
  17909. ">
  17910.      
  17911.  
  17912.      <span class="product-stock-level__text">
  17913.        
  17914.        <div class="product-stock-level__badge-text">
  17915.          
  17916.  
  17917.    In stock
  17918.  
  17919.  
  17920.        </div>
  17921.      </span>
  17922.    </span>
  17923.  
  17924. </div>
  17925. -->
  17926.              
  17927.  
  17928.  
  17929.    
  17930.      <b style="color:green">In stock</b>
  17931.    
  17932.  
  17933.  
  17934.  
  17935.  
  17936.  
  17937.  
  17938.  
  17939.            </div>
  17940.          
  17941.  
  17942.          
  17943.            
  17944.          
  17945.        
  17946.  
  17947.        
  17948.          <div class="productitem--description">
  17949.            <p>Genuine Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A</p>
  17950.  
  17951.            
  17952.          </div>
  17953.        
  17954.      </div>
  17955.  
  17956.      
  17957.        
  17958.          
  17959.          
  17960.          
  17961.  
  17962.          
  17963.          
  17964.  
  17965.          
  17966.  
  17967.          
  17968.  
  17969.          <div class="productitem--actions" data-product-actions>
  17970.            <div class="productitem--listview-price">
  17971.              
  17972.  
  17973.  
  17974.  
  17975.  
  17976.  
  17977.  
  17978.  
  17979.  
  17980.  
  17981.  
  17982.  
  17983.  
  17984.  
  17985.  
  17986.  
  17987.  
  17988.  
  17989.  
  17990.  
  17991.  
  17992.  
  17993.  
  17994.  
  17995.  
  17996.  
  17997.  
  17998.  
  17999.  
  18000.  
  18001.  
  18002. <div class="price productitem__price ">
  18003.  
  18004.    <div
  18005.      class="price__compare-at visible"
  18006.      data-price-compare-container
  18007.    >
  18008.  
  18009.      
  18010.        <span class="money price__original" data-price-original></span>
  18011.      
  18012.    </div>
  18013.  
  18014.  
  18015.    
  18016.      
  18017.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18018.        
  18019.          <span class="visually-hidden">Original price</span>
  18020.          <span class="money price__compare-at--min" data-price-compare-min>
  18021.            $52.99
  18022.          </span>
  18023.          -
  18024.          <span class="visually-hidden">Original price</span>
  18025.          <span class="money price__compare-at--max" data-price-compare-max>
  18026.            $52.99
  18027.          </span>
  18028.        
  18029.      </div>
  18030.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18031.        <span class="visually-hidden">Original price</span>
  18032.        <span class="money price__compare-at--single" data-price-compare>
  18033.          
  18034.        </span>
  18035.      </div>
  18036.    
  18037.  
  18038.  
  18039.  <div class="price__current price__current--emphasize " data-price-container>
  18040.  
  18041.    
  18042.  
  18043.    
  18044.      
  18045.      
  18046.      <span class="money" data-price>
  18047.        $52.99
  18048.      </span>
  18049.    
  18050.    
  18051.  </div>
  18052.  
  18053.  
  18054.    
  18055.    <div class="price__current--hidden" data-current-price-range-hidden>
  18056.      
  18057.        <span class="money price__current--min" data-price-min>$52.99</span>
  18058.        -
  18059.        <span class="money price__current--max" data-price-max>$52.99</span>
  18060.      
  18061.    </div>
  18062.    <div class="price__current--hidden" data-current-price-hidden>
  18063.      <span class="visually-hidden">Current price</span>
  18064.      <span class="money" data-price>
  18065.        $52.99
  18066.      </span>
  18067.    </div>
  18068.  
  18069.  
  18070.  
  18071.    
  18072.    
  18073.    
  18074.    
  18075.  
  18076.    <div
  18077.      class="
  18078.        productitem__unit-price
  18079.        hidden
  18080.      "
  18081.      data-unit-price
  18082.    >
  18083.      <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>
  18084.    </div>
  18085.  
  18086.  
  18087.  
  18088. </div>
  18089.  
  18090.  
  18091.            </div>
  18092.  
  18093.            <div class="productitem--listview-badge">
  18094.              
  18095.  
  18096.  
  18097.  
  18098.  
  18099.  
  18100.  
  18101.  
  18102.  
  18103.  
  18104.  
  18105.  
  18106.  
  18107.  
  18108.  
  18109.  
  18110.  
  18111.  
  18112.  
  18113.  
  18114.  
  18115.  
  18116.  
  18117.  
  18118.  
  18119.  
  18120.  
  18121.  
  18122.            </div>
  18123.  
  18124.            
  18125.              <div
  18126.                class="
  18127.                  productitem--action
  18128.                  quickshop-button
  18129.                  
  18130.                "
  18131.              >
  18132.                <button
  18133.                  class="productitem--action-trigger button-secondary"
  18134.                  data-quickshop-full
  18135.                  
  18136.                  
  18137.                  type="button"
  18138.                >
  18139.                  Quick shop
  18140.                </button>
  18141.              </div>
  18142.            
  18143.  
  18144.            
  18145.              <div
  18146.                class="
  18147.                  productitem--action
  18148.                  atc--button
  18149.                  
  18150.                "
  18151.              >
  18152.                <button
  18153.                  class="productitem--action-trigger productitem--action-atc button-primary"
  18154.                  type="button"
  18155.                  aria-label="Add to cart"
  18156.                  
  18157.                    data-quick-buy
  18158.                  
  18159.                  data-variant-id="39666095259735"
  18160.                  
  18161.                >
  18162.                  <span class="atc-button--text">
  18163.                    Add to cart
  18164.                  </span>
  18165.                  <span class="atc-button--icon"><svg
  18166.  aria-hidden="true"
  18167.  focusable="false"
  18168.  role="presentation"
  18169.  width="26"
  18170.  height="26"
  18171.  viewBox="0 0 26 26"
  18172.  xmlns="http://www.w3.org/2000/svg"
  18173. >
  18174.  <g fill-rule="nonzero" fill="currentColor">
  18175.    <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"/>
  18176.  </g>
  18177. </svg></span>
  18178.                </button>
  18179.              </div>
  18180.            
  18181.          </div>
  18182.        
  18183.      
  18184.    </div>
  18185.  </div>
  18186.  
  18187.  
  18188.    <script type="application/json" data-quick-buy-settings>
  18189.      {
  18190.        "cart_redirection": true,
  18191.        "money_format": "${{amount}}"
  18192.      }
  18193.    </script>
  18194.  
  18195. </li>
  18196.    
  18197.      
  18198.  
  18199.  
  18200.  
  18201.  
  18202.  
  18203.  
  18204.  
  18205.  
  18206.  
  18207.  
  18208.  
  18209.  
  18210.  
  18211.  
  18212.  
  18213.  
  18214.  
  18215.  
  18216.  
  18217.  
  18218.  
  18219.  
  18220.  
  18221.  
  18222.  
  18223.  
  18224.  
  18225.  
  18226.  
  18227.  
  18228.  
  18229.  
  18230.    
  18231.  
  18232.  
  18233.  
  18234. <li
  18235.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  18236.  data-product-item
  18237.  data-product-quickshop-url="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18238.  
  18239. >
  18240.  <div class="productitem" data-product-item-content>
  18241.    
  18242.    
  18243.    
  18244.    
  18245.  
  18246.    
  18247.  
  18248.    
  18249.  
  18250.    <div class="productitem__container">
  18251.      
  18252.  
  18253.      <div class="productitem__image-container">
  18254.        <a target="_blank"
  18255.          class="productitem--image-link"
  18256.          href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18257.          aria-label="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18258.          tabindex="-1"
  18259.          data-product-page-link
  18260.        >
  18261.          <figure
  18262.            class="productitem--image"
  18263.            data-product-item-image
  18264.            
  18265.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  18266.            
  18267.          >
  18268.            
  18269.              
  18270.              
  18271.  
  18272.  
  18273.    <noscript data-rimg-noscript>
  18274.      <img loading="lazy"
  18275.        
  18276.          src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  18277.        
  18278.  
  18279.        alt=""
  18280.        data-rimg="noscript"
  18281.        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"
  18282.        class="productitem--image-primary"
  18283.        
  18284.        
  18285.      >
  18286.    </noscript>
  18287.  
  18288.  
  18289.  <img loading="lazy"
  18290.    
  18291.      src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  18292.    
  18293.    alt=""
  18294.  
  18295.    
  18296.      data-rimg="lazy"
  18297.      data-rimg-scale="1"
  18298.      data-rimg-template="//laptopparts.ca/cdn/shop/products/55.r4f02.002_{size}.png?v=1697125258"
  18299.      data-rimg-max="603x603"
  18300.      data-rimg-crop="false"
  18301.      
  18302.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  18303.    
  18304.  
  18305.    class="productitem--image-primary"
  18306.    
  18307.    
  18308.  >
  18309.  
  18310.  
  18311.  
  18312.  <div data-rimg-canvas></div>
  18313.  
  18314.  
  18315.            
  18316.  
  18317.            
  18318.  
  18319.  
  18320.  
  18321.  
  18322.  
  18323.  
  18324.  
  18325.  
  18326.  
  18327.  
  18328.  
  18329.  
  18330.  
  18331.  
  18332.  
  18333.  
  18334.  
  18335.  
  18336.  
  18337.  
  18338.  
  18339.  
  18340.  
  18341.  
  18342.  
  18343.  
  18344.  
  18345.          </figure>
  18346.        </a>
  18347.      </div><div class="productitem--info">
  18348.        
  18349.          
  18350.  
  18351.        
  18352.  
  18353.        
  18354.          
  18355.  
  18356.  
  18357.  
  18358.  
  18359.  
  18360.  
  18361.  
  18362.  
  18363.  
  18364.  
  18365.  
  18366.  
  18367.  
  18368.  
  18369.  
  18370.  
  18371.  
  18372.  
  18373.  
  18374.  
  18375.  
  18376.  
  18377.  
  18378.  
  18379.  
  18380.  
  18381.  
  18382.  
  18383.  
  18384.  
  18385. <div class="price productitem__price ">
  18386.  
  18387.    <div
  18388.      class="price__compare-at visible"
  18389.      data-price-compare-container
  18390.    >
  18391.  
  18392.      
  18393.        <span class="money price__original" data-price-original></span>
  18394.      
  18395.    </div>
  18396.  
  18397.  
  18398.    
  18399.      
  18400.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18401.        
  18402.          <span class="visually-hidden">Original price</span>
  18403.          <span class="money price__compare-at--min" data-price-compare-min>
  18404.            $50.99
  18405.          </span>
  18406.          -
  18407.          <span class="visually-hidden">Original price</span>
  18408.          <span class="money price__compare-at--max" data-price-compare-max>
  18409.            $50.99
  18410.          </span>
  18411.        
  18412.      </div>
  18413.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18414.        <span class="visually-hidden">Original price</span>
  18415.        <span class="money price__compare-at--single" data-price-compare>
  18416.          
  18417.        </span>
  18418.      </div>
  18419.    
  18420.  
  18421.  
  18422.  <div class="price__current price__current--emphasize " data-price-container>
  18423.  
  18424.    
  18425.  
  18426.    
  18427.      
  18428.      
  18429.      <span class="money" data-price>
  18430.        $50.99
  18431.      </span>
  18432.    
  18433.    
  18434.  </div>
  18435.  
  18436.  
  18437.    
  18438.    <div class="price__current--hidden" data-current-price-range-hidden>
  18439.      
  18440.        <span class="money price__current--min" data-price-min>$50.99</span>
  18441.        -
  18442.        <span class="money price__current--max" data-price-max>$50.99</span>
  18443.      
  18444.    </div>
  18445.    <div class="price__current--hidden" data-current-price-hidden>
  18446.      <span class="visually-hidden">Current price</span>
  18447.      <span class="money" data-price>
  18448.        $50.99
  18449.      </span>
  18450.    </div>
  18451.  
  18452.  
  18453.  
  18454.    
  18455.    
  18456.    
  18457.    
  18458.  
  18459.    <div
  18460.      class="
  18461.        productitem__unit-price
  18462.        hidden
  18463.      "
  18464.      data-unit-price
  18465.    >
  18466.      <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>
  18467.    </div>
  18468.  
  18469.  
  18470.  
  18471. </div>
  18472.  
  18473.  
  18474.        
  18475.  
  18476.        <h2 class="productitem--title">
  18477.          <a href="/products/55-r4f02-002-acer-aspire-5742z-usb-board" data-product-page-link>
  18478.            Acer Aspire 5742Z USB Board 55.R4F02.002
  18479.          </a>
  18480.        </h2>
  18481.  
  18482.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18483.        <div class="star_container 4605263622"></div>
  18484.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18485.  
  18486.        
  18487.          
  18488.            <span class="productitem--vendor">
  18489.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18490.            </span>
  18491.          
  18492.        
  18493.  
  18494.        
  18495.  
  18496.        
  18497.          
  18498.            <div class="productitem__stock-level">
  18499.              <!--
  18500.  
  18501.  
  18502.  
  18503.  
  18504.  
  18505.  
  18506.  
  18507. <div class="product-stock-level-wrapper" >
  18508.  
  18509.    <span class="
  18510.  product-stock-level
  18511.  product-stock-level--continue-selling
  18512.  
  18513. ">
  18514.      
  18515.  
  18516.      <span class="product-stock-level__text">
  18517.        
  18518.        <div class="product-stock-level__badge-text">
  18519.          
  18520.  
  18521.    In stock
  18522.  
  18523.  
  18524.        </div>
  18525.      </span>
  18526.    </span>
  18527.  
  18528. </div>
  18529. -->
  18530.              
  18531.  
  18532.  
  18533.    
  18534.      <b style="color:green">In stock</b>
  18535.    
  18536.  
  18537.  
  18538.  
  18539.  
  18540.  
  18541.  
  18542.  
  18543.            </div>
  18544.          
  18545.  
  18546.          
  18547.            
  18548.          
  18549.        
  18550.  
  18551.        
  18552.          <div class="productitem--description">
  18553.            <p>55.R4F02.002 Acer Aspire 5742Z USB Board - Pulled from working laptops
  18554. Compatible Models:
  18555. Aspire 5252, 5333, 5336, 5552, 5733, 5736, 5742
  18556. Gateway N...</p>
  18557.  
  18558.            
  18559.              <a
  18560.                href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18561.                class="productitem--link"
  18562.                data-product-page-link
  18563.              >
  18564.                View full details
  18565.              </a>
  18566.            
  18567.          </div>
  18568.        
  18569.      </div>
  18570.  
  18571.      
  18572.        
  18573.          
  18574.          
  18575.          
  18576.  
  18577.          
  18578.          
  18579.  
  18580.          
  18581.  
  18582.          
  18583.  
  18584.          <div class="productitem--actions" data-product-actions>
  18585.            <div class="productitem--listview-price">
  18586.              
  18587.  
  18588.  
  18589.  
  18590.  
  18591.  
  18592.  
  18593.  
  18594.  
  18595.  
  18596.  
  18597.  
  18598.  
  18599.  
  18600.  
  18601.  
  18602.  
  18603.  
  18604.  
  18605.  
  18606.  
  18607.  
  18608.  
  18609.  
  18610.  
  18611.  
  18612.  
  18613.  
  18614.  
  18615.  
  18616.  
  18617. <div class="price productitem__price ">
  18618.  
  18619.    <div
  18620.      class="price__compare-at visible"
  18621.      data-price-compare-container
  18622.    >
  18623.  
  18624.      
  18625.        <span class="money price__original" data-price-original></span>
  18626.      
  18627.    </div>
  18628.  
  18629.  
  18630.    
  18631.      
  18632.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18633.        
  18634.          <span class="visually-hidden">Original price</span>
  18635.          <span class="money price__compare-at--min" data-price-compare-min>
  18636.            $50.99
  18637.          </span>
  18638.          -
  18639.          <span class="visually-hidden">Original price</span>
  18640.          <span class="money price__compare-at--max" data-price-compare-max>
  18641.            $50.99
  18642.          </span>
  18643.        
  18644.      </div>
  18645.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18646.        <span class="visually-hidden">Original price</span>
  18647.        <span class="money price__compare-at--single" data-price-compare>
  18648.          
  18649.        </span>
  18650.      </div>
  18651.    
  18652.  
  18653.  
  18654.  <div class="price__current price__current--emphasize " data-price-container>
  18655.  
  18656.    
  18657.  
  18658.    
  18659.      
  18660.      
  18661.      <span class="money" data-price>
  18662.        $50.99
  18663.      </span>
  18664.    
  18665.    
  18666.  </div>
  18667.  
  18668.  
  18669.    
  18670.    <div class="price__current--hidden" data-current-price-range-hidden>
  18671.      
  18672.        <span class="money price__current--min" data-price-min>$50.99</span>
  18673.        -
  18674.        <span class="money price__current--max" data-price-max>$50.99</span>
  18675.      
  18676.    </div>
  18677.    <div class="price__current--hidden" data-current-price-hidden>
  18678.      <span class="visually-hidden">Current price</span>
  18679.      <span class="money" data-price>
  18680.        $50.99
  18681.      </span>
  18682.    </div>
  18683.  
  18684.  
  18685.  
  18686.    
  18687.    
  18688.    
  18689.    
  18690.  
  18691.    <div
  18692.      class="
  18693.        productitem__unit-price
  18694.        hidden
  18695.      "
  18696.      data-unit-price
  18697.    >
  18698.      <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>
  18699.    </div>
  18700.  
  18701.  
  18702.  
  18703. </div>
  18704.  
  18705.  
  18706.            </div>
  18707.  
  18708.            <div class="productitem--listview-badge">
  18709.              
  18710.  
  18711.  
  18712.  
  18713.  
  18714.  
  18715.  
  18716.  
  18717.  
  18718.  
  18719.  
  18720.  
  18721.  
  18722.  
  18723.  
  18724.  
  18725.  
  18726.  
  18727.  
  18728.  
  18729.  
  18730.  
  18731.  
  18732.  
  18733.  
  18734.  
  18735.  
  18736.  
  18737.            </div>
  18738.  
  18739.            
  18740.              <div
  18741.                class="
  18742.                  productitem--action
  18743.                  quickshop-button
  18744.                  
  18745.                "
  18746.              >
  18747.                <button
  18748.                  class="productitem--action-trigger button-secondary"
  18749.                  data-quickshop-full
  18750.                  
  18751.                  
  18752.                  type="button"
  18753.                >
  18754.                  Quick shop
  18755.                </button>
  18756.              </div>
  18757.            
  18758.  
  18759.            
  18760.              <div
  18761.                class="
  18762.                  productitem--action
  18763.                  atc--button
  18764.                  
  18765.                "
  18766.              >
  18767.                <button
  18768.                  class="productitem--action-trigger productitem--action-atc button-primary"
  18769.                  type="button"
  18770.                  aria-label="Add to cart"
  18771.                  
  18772.                    data-quick-buy
  18773.                  
  18774.                  data-variant-id="15084894150"
  18775.                  
  18776.                >
  18777.                  <span class="atc-button--text">
  18778.                    Add to cart
  18779.                  </span>
  18780.                  <span class="atc-button--icon"><svg
  18781.  aria-hidden="true"
  18782.  focusable="false"
  18783.  role="presentation"
  18784.  width="26"
  18785.  height="26"
  18786.  viewBox="0 0 26 26"
  18787.  xmlns="http://www.w3.org/2000/svg"
  18788. >
  18789.  <g fill-rule="nonzero" fill="currentColor">
  18790.    <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"/>
  18791.  </g>
  18792. </svg></span>
  18793.                </button>
  18794.              </div>
  18795.            
  18796.          </div>
  18797.        
  18798.      
  18799.    </div>
  18800.  </div>
  18801.  
  18802.  
  18803.    <script type="application/json" data-quick-buy-settings>
  18804.      {
  18805.        "cart_redirection": true,
  18806.        "money_format": "${{amount}}"
  18807.      }
  18808.    </script>
  18809.  
  18810. </li>
  18811.    
  18812.      
  18813.  
  18814.  
  18815.  
  18816.  
  18817.  
  18818.  
  18819.  
  18820.  
  18821.  
  18822.  
  18823.  
  18824.  
  18825.  
  18826.  
  18827.  
  18828.  
  18829.  
  18830.  
  18831.  
  18832.  
  18833.  
  18834.  
  18835.  
  18836.  
  18837.  
  18838.  
  18839.  
  18840.  
  18841.  
  18842.  
  18843.  
  18844.  
  18845.    
  18846.  
  18847.  
  18848.  
  18849. <li
  18850.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  18851.  data-product-item
  18852.  data-product-quickshop-url="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18853.  
  18854. >
  18855.  <div class="productitem" data-product-item-content>
  18856.    
  18857.    
  18858.    
  18859.    
  18860.  
  18861.    
  18862.  
  18863.    
  18864.  
  18865.    <div class="productitem__container">
  18866.      
  18867.  
  18868.      <div class="productitem__image-container">
  18869.        <a target="_blank"
  18870.          class="productitem--image-link"
  18871.          href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18872.          aria-label="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18873.          tabindex="-1"
  18874.          data-product-page-link
  18875.        >
  18876.          <figure
  18877.            class="productitem--image"
  18878.            data-product-item-image
  18879.            
  18880.              style="--product-grid-item-image-aspect-ratio: 1.3333333333333333;"
  18881.            
  18882.          >
  18883.            
  18884.              
  18885.              
  18886.  
  18887.  
  18888.    <noscript data-rimg-noscript>
  18889.      <img loading="lazy"
  18890.        
  18891.          src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18892.        
  18893.  
  18894.        alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18895.        data-rimg="noscript"
  18896.        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"
  18897.        class="productitem--image-primary"
  18898.        
  18899.        
  18900.      >
  18901.    </noscript>
  18902.  
  18903.  
  18904.  <img loading="lazy"
  18905.    
  18906.      src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18907.    
  18908.    alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18909.  
  18910.    
  18911.      data-rimg="lazy"
  18912.      data-rimg-scale="1"
  18913.      data-rimg-template="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_{size}.jpg?v=1729362531"
  18914.      data-rimg-max="1500x1125"
  18915.      data-rimg-crop="false"
  18916.      
  18917.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='384'></svg>"
  18918.    
  18919.  
  18920.    class="productitem--image-primary"
  18921.    
  18922.    
  18923.  >
  18924.  
  18925.  
  18926.  
  18927.  <div data-rimg-canvas></div>
  18928.  
  18929.  
  18930.            
  18931.  
  18932.            
  18933.  
  18934.  
  18935.  
  18936.  
  18937.  
  18938.  
  18939.  
  18940.  
  18941.  
  18942.  
  18943.  
  18944.  
  18945.  
  18946.  
  18947.  
  18948.  
  18949.  
  18950.  
  18951.  
  18952.  
  18953.  
  18954.  
  18955.  
  18956.  
  18957.  
  18958.  
  18959.  
  18960.          </figure>
  18961.        </a>
  18962.      </div><div class="productitem--info">
  18963.        
  18964.          
  18965.  
  18966.        
  18967.  
  18968.        
  18969.          
  18970.  
  18971.  
  18972.  
  18973.  
  18974.  
  18975.  
  18976.  
  18977.  
  18978.  
  18979.  
  18980.  
  18981.  
  18982.  
  18983.  
  18984.  
  18985.  
  18986.  
  18987.  
  18988.  
  18989.  
  18990.  
  18991.  
  18992.  
  18993.  
  18994.  
  18995.  
  18996.  
  18997.  
  18998.  
  18999.  
  19000. <div class="price productitem__price ">
  19001.  
  19002.    <div
  19003.      class="price__compare-at visible"
  19004.      data-price-compare-container
  19005.    >
  19006.  
  19007.      
  19008.        <span class="money price__original" data-price-original></span>
  19009.      
  19010.    </div>
  19011.  
  19012.  
  19013.    
  19014.      
  19015.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19016.        
  19017.          <span class="visually-hidden">Original price</span>
  19018.          <span class="money price__compare-at--min" data-price-compare-min>
  19019.            $50.99
  19020.          </span>
  19021.          -
  19022.          <span class="visually-hidden">Original price</span>
  19023.          <span class="money price__compare-at--max" data-price-compare-max>
  19024.            $50.99
  19025.          </span>
  19026.        
  19027.      </div>
  19028.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19029.        <span class="visually-hidden">Original price</span>
  19030.        <span class="money price__compare-at--single" data-price-compare>
  19031.          
  19032.        </span>
  19033.      </div>
  19034.    
  19035.  
  19036.  
  19037.  <div class="price__current price__current--emphasize " data-price-container>
  19038.  
  19039.    
  19040.  
  19041.    
  19042.      
  19043.      
  19044.      <span class="money" data-price>
  19045.        $50.99
  19046.      </span>
  19047.    
  19048.    
  19049.  </div>
  19050.  
  19051.  
  19052.    
  19053.    <div class="price__current--hidden" data-current-price-range-hidden>
  19054.      
  19055.        <span class="money price__current--min" data-price-min>$50.99</span>
  19056.        -
  19057.        <span class="money price__current--max" data-price-max>$50.99</span>
  19058.      
  19059.    </div>
  19060.    <div class="price__current--hidden" data-current-price-hidden>
  19061.      <span class="visually-hidden">Current price</span>
  19062.      <span class="money" data-price>
  19063.        $50.99
  19064.      </span>
  19065.    </div>
  19066.  
  19067.  
  19068.  
  19069.    
  19070.    
  19071.    
  19072.    
  19073.  
  19074.    <div
  19075.      class="
  19076.        productitem__unit-price
  19077.        hidden
  19078.      "
  19079.      data-unit-price
  19080.    >
  19081.      <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>
  19082.    </div>
  19083.  
  19084.  
  19085.  
  19086. </div>
  19087.  
  19088.  
  19089.        
  19090.  
  19091.        <h2 class="productitem--title">
  19092.          <a href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1" data-product-page-link>
  19093.            Acer Aspire 7 A715-72 A715-72G A717-72 A717-72G Laptop Cpu Fan 23.GXBN2.001
  19094.          </a>
  19095.        </h2>
  19096.  
  19097.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  19098.        <div class="star_container 3929786187863"></div>
  19099.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  19100.  
  19101.        
  19102.          
  19103.            <span class="productitem--vendor">
  19104.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  19105.            </span>
  19106.          
  19107.        
  19108.  
  19109.        
  19110.  
  19111.        
  19112.          
  19113.            <div class="productitem__stock-level">
  19114.              <!--
  19115.  
  19116.  
  19117.  
  19118.  
  19119.  
  19120.  
  19121.  
  19122. <div class="product-stock-level-wrapper" >
  19123.  
  19124.    <span class="
  19125.  product-stock-level
  19126.  product-stock-level--continue-selling
  19127.  
  19128. ">
  19129.      
  19130.  
  19131.      <span class="product-stock-level__text">
  19132.        
  19133.        <div class="product-stock-level__badge-text">
  19134.          
  19135.  
  19136.    In stock
  19137.  
  19138.  
  19139.        </div>
  19140.      </span>
  19141.    </span>
  19142.  
  19143. </div>
  19144. -->
  19145.              
  19146.  
  19147.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  19148.  
  19149.  
  19150.  
  19151.  
  19152.  
  19153.  
  19154.  
  19155.            </div>
  19156.          
  19157.  
  19158.          
  19159.            
  19160.          
  19161.        
  19162.  
  19163.        
  19164.          <div class="productitem--description">
  19165.            <p>
  19166. Description: New Acer laptop cpu fan.
  19167.  
  19168. Compatible Part #'s: 23.GXBN2.001
  19169.  
  19170. Compatible Models:
  19171. Acer Aspire 7 A715-72, A715-72G
  19172. Acer Aspire 7 A717-7...</p>
  19173.  
  19174.            
  19175.              <a
  19176.                href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  19177.                class="productitem--link"
  19178.                data-product-page-link
  19179.              >
  19180.                View full details
  19181.              </a>
  19182.            
  19183.          </div>
  19184.        
  19185.      </div>
  19186.  
  19187.      
  19188.        
  19189.          
  19190.          
  19191.          
  19192.  
  19193.          
  19194.          
  19195.  
  19196.          
  19197.  
  19198.          
  19199.  
  19200.          <div class="productitem--actions" data-product-actions>
  19201.            <div class="productitem--listview-price">
  19202.              
  19203.  
  19204.  
  19205.  
  19206.  
  19207.  
  19208.  
  19209.  
  19210.  
  19211.  
  19212.  
  19213.  
  19214.  
  19215.  
  19216.  
  19217.  
  19218.  
  19219.  
  19220.  
  19221.  
  19222.  
  19223.  
  19224.  
  19225.  
  19226.  
  19227.  
  19228.  
  19229.  
  19230.  
  19231.  
  19232.  
  19233. <div class="price productitem__price ">
  19234.  
  19235.    <div
  19236.      class="price__compare-at visible"
  19237.      data-price-compare-container
  19238.    >
  19239.  
  19240.      
  19241.        <span class="money price__original" data-price-original></span>
  19242.      
  19243.    </div>
  19244.  
  19245.  
  19246.    
  19247.      
  19248.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19249.        
  19250.          <span class="visually-hidden">Original price</span>
  19251.          <span class="money price__compare-at--min" data-price-compare-min>
  19252.            $50.99
  19253.          </span>
  19254.          -
  19255.          <span class="visually-hidden">Original price</span>
  19256.          <span class="money price__compare-at--max" data-price-compare-max>
  19257.            $50.99
  19258.          </span>
  19259.        
  19260.      </div>
  19261.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19262.        <span class="visually-hidden">Original price</span>
  19263.        <span class="money price__compare-at--single" data-price-compare>
  19264.          
  19265.        </span>
  19266.      </div>
  19267.    
  19268.  
  19269.  
  19270.  <div class="price__current price__current--emphasize " data-price-container>
  19271.  
  19272.    
  19273.  
  19274.    
  19275.      
  19276.      
  19277.      <span class="money" data-price>
  19278.        $50.99
  19279.      </span>
  19280.    
  19281.    
  19282.  </div>
  19283.  
  19284.  
  19285.    
  19286.    <div class="price__current--hidden" data-current-price-range-hidden>
  19287.      
  19288.        <span class="money price__current--min" data-price-min>$50.99</span>
  19289.        -
  19290.        <span class="money price__current--max" data-price-max>$50.99</span>
  19291.      
  19292.    </div>
  19293.    <div class="price__current--hidden" data-current-price-hidden>
  19294.      <span class="visually-hidden">Current price</span>
  19295.      <span class="money" data-price>
  19296.        $50.99
  19297.      </span>
  19298.    </div>
  19299.  
  19300.  
  19301.  
  19302.    
  19303.    
  19304.    
  19305.    
  19306.  
  19307.    <div
  19308.      class="
  19309.        productitem__unit-price
  19310.        hidden
  19311.      "
  19312.      data-unit-price
  19313.    >
  19314.      <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>
  19315.    </div>
  19316.  
  19317.  
  19318.  
  19319. </div>
  19320.  
  19321.  
  19322.            </div>
  19323.  
  19324.            <div class="productitem--listview-badge">
  19325.              
  19326.  
  19327.  
  19328.  
  19329.  
  19330.  
  19331.  
  19332.  
  19333.  
  19334.  
  19335.  
  19336.  
  19337.  
  19338.  
  19339.  
  19340.  
  19341.  
  19342.  
  19343.  
  19344.  
  19345.  
  19346.  
  19347.  
  19348.  
  19349.  
  19350.  
  19351.  
  19352.  
  19353.            </div>
  19354.  
  19355.            
  19356.              <div
  19357.                class="
  19358.                  productitem--action
  19359.                  quickshop-button
  19360.                  
  19361.                "
  19362.              >
  19363.                <button
  19364.                  class="productitem--action-trigger button-secondary"
  19365.                  data-quickshop-full
  19366.                  
  19367.                  
  19368.                  type="button"
  19369.                >
  19370.                  Quick shop
  19371.                </button>
  19372.              </div>
  19373.            
  19374.  
  19375.            
  19376.              <div
  19377.                class="
  19378.                  productitem--action
  19379.                  atc--button
  19380.                  
  19381.                "
  19382.              >
  19383.                <button
  19384.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19385.                  type="button"
  19386.                  aria-label="Add to cart"
  19387.                  
  19388.                    data-quick-buy
  19389.                  
  19390.                  data-variant-id="29440907575383"
  19391.                  
  19392.                >
  19393.                  <span class="atc-button--text">
  19394.                    Add to cart
  19395.                  </span>
  19396.                  <span class="atc-button--icon"><svg
  19397.  aria-hidden="true"
  19398.  focusable="false"
  19399.  role="presentation"
  19400.  width="26"
  19401.  height="26"
  19402.  viewBox="0 0 26 26"
  19403.  xmlns="http://www.w3.org/2000/svg"
  19404. >
  19405.  <g fill-rule="nonzero" fill="currentColor">
  19406.    <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"/>
  19407.  </g>
  19408. </svg></span>
  19409.                </button>
  19410.              </div>
  19411.            
  19412.          </div>
  19413.        
  19414.      
  19415.    </div>
  19416.  </div>
  19417.  
  19418.  
  19419.    <script type="application/json" data-quick-buy-settings>
  19420.      {
  19421.        "cart_redirection": true,
  19422.        "money_format": "${{amount}}"
  19423.      }
  19424.    </script>
  19425.  
  19426. </li>
  19427.    
  19428.      
  19429.  
  19430.  
  19431.  
  19432.  
  19433.  
  19434.  
  19435.  
  19436.  
  19437.  
  19438.  
  19439.  
  19440.  
  19441.  
  19442.  
  19443.  
  19444.  
  19445.  
  19446.  
  19447.  
  19448.  
  19449.  
  19450.  
  19451.  
  19452.  
  19453.  
  19454.  
  19455.  
  19456.  
  19457.  
  19458.  
  19459.  
  19460.  
  19461.    
  19462.  
  19463.  
  19464.  
  19465. <li
  19466.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  19467.  data-product-item
  19468.  data-product-quickshop-url="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19469.  
  19470. >
  19471.  <div class="productitem" data-product-item-content>
  19472.    
  19473.    
  19474.    
  19475.    
  19476.  
  19477.    
  19478.  
  19479.    
  19480.  
  19481.    <div class="productitem__container">
  19482.      
  19483.  
  19484.      <div class="productitem__image-container">
  19485.        <a target="_blank"
  19486.          class="productitem--image-link"
  19487.          href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19488.          aria-label="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19489.          tabindex="-1"
  19490.          data-product-page-link
  19491.        >
  19492.          <figure
  19493.            class="productitem--image"
  19494.            data-product-item-image
  19495.            
  19496.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  19497.            
  19498.          >
  19499.            
  19500.              
  19501.              
  19502.  
  19503.  
  19504.    <noscript data-rimg-noscript>
  19505.      <img loading="lazy"
  19506.        
  19507.          src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19508.        
  19509.  
  19510.        alt=""
  19511.        data-rimg="noscript"
  19512.        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"
  19513.        class="productitem--image-primary"
  19514.        
  19515.        
  19516.      >
  19517.    </noscript>
  19518.  
  19519.  
  19520.  <img loading="lazy"
  19521.    
  19522.      src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19523.    
  19524.    alt=""
  19525.  
  19526.    
  19527.      data-rimg="lazy"
  19528.      data-rimg-scale="1"
  19529.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_{size}.jpg?v=1697125259"
  19530.      data-rimg-max="2048x2048"
  19531.      data-rimg-crop="false"
  19532.      
  19533.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  19534.    
  19535.  
  19536.    class="productitem--image-primary"
  19537.    
  19538.    
  19539.  >
  19540.  
  19541.  
  19542.  
  19543.  <div data-rimg-canvas></div>
  19544.  
  19545.  
  19546.            
  19547.  
  19548.            
  19549.  
  19550.  
  19551.  
  19552.  
  19553.  
  19554.  
  19555.  
  19556.  
  19557.  
  19558.  
  19559.  
  19560.  
  19561.  
  19562.  
  19563.  
  19564.  
  19565.  
  19566.  
  19567.  
  19568.  
  19569.  
  19570.  
  19571.  
  19572.  
  19573.  
  19574.  
  19575.  
  19576.          </figure>
  19577.        </a>
  19578.      </div><div class="productitem--info">
  19579.        
  19580.          
  19581.  
  19582.        
  19583.  
  19584.        
  19585.          
  19586.  
  19587.  
  19588.  
  19589.  
  19590.  
  19591.  
  19592.  
  19593.  
  19594.  
  19595.  
  19596.  
  19597.  
  19598.  
  19599.  
  19600.  
  19601.  
  19602.  
  19603.  
  19604.  
  19605.  
  19606.  
  19607.  
  19608.  
  19609.  
  19610.  
  19611.  
  19612.  
  19613.  
  19614.  
  19615.  
  19616. <div class="price productitem__price ">
  19617.  
  19618.    <div
  19619.      class="price__compare-at visible"
  19620.      data-price-compare-container
  19621.    >
  19622.  
  19623.      
  19624.        <span class="money price__original" data-price-original></span>
  19625.      
  19626.    </div>
  19627.  
  19628.  
  19629.    
  19630.      
  19631.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19632.        
  19633.          <span class="visually-hidden">Original price</span>
  19634.          <span class="money price__compare-at--min" data-price-compare-min>
  19635.            $58.99
  19636.          </span>
  19637.          -
  19638.          <span class="visually-hidden">Original price</span>
  19639.          <span class="money price__compare-at--max" data-price-compare-max>
  19640.            $58.99
  19641.          </span>
  19642.        
  19643.      </div>
  19644.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19645.        <span class="visually-hidden">Original price</span>
  19646.        <span class="money price__compare-at--single" data-price-compare>
  19647.          
  19648.        </span>
  19649.      </div>
  19650.    
  19651.  
  19652.  
  19653.  <div class="price__current price__current--emphasize " data-price-container>
  19654.  
  19655.    
  19656.  
  19657.    
  19658.      
  19659.      
  19660.      <span class="money" data-price>
  19661.        $58.99
  19662.      </span>
  19663.    
  19664.    
  19665.  </div>
  19666.  
  19667.  
  19668.    
  19669.    <div class="price__current--hidden" data-current-price-range-hidden>
  19670.      
  19671.        <span class="money price__current--min" data-price-min>$58.99</span>
  19672.        -
  19673.        <span class="money price__current--max" data-price-max>$58.99</span>
  19674.      
  19675.    </div>
  19676.    <div class="price__current--hidden" data-current-price-hidden>
  19677.      <span class="visually-hidden">Current price</span>
  19678.      <span class="money" data-price>
  19679.        $58.99
  19680.      </span>
  19681.    </div>
  19682.  
  19683.  
  19684.  
  19685.    
  19686.    
  19687.    
  19688.    
  19689.  
  19690.    <div
  19691.      class="
  19692.        productitem__unit-price
  19693.        hidden
  19694.      "
  19695.      data-unit-price
  19696.    >
  19697.      <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>
  19698.    </div>
  19699.  
  19700.  
  19701.  
  19702. </div>
  19703.  
  19704.  
  19705.        
  19706.  
  19707.        <h2 class="productitem--title">
  19708.          <a href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001" data-product-page-link>
  19709.            Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001
  19710.          </a>
  19711.        </h2>
  19712.  
  19713.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  19714.        <div class="star_container 3929790414935"></div>
  19715.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  19716.  
  19717.        
  19718.          
  19719.            <span class="productitem--vendor">
  19720.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  19721.            </span>
  19722.          
  19723.        
  19724.  
  19725.        
  19726.  
  19727.        
  19728.          
  19729.            <div class="productitem__stock-level">
  19730.              <!--
  19731.  
  19732.  
  19733.  
  19734.  
  19735.  
  19736.  
  19737.  
  19738. <div class="product-stock-level-wrapper" >
  19739.  
  19740.    <span class="
  19741.  product-stock-level
  19742.  product-stock-level--continue-selling
  19743.  
  19744. ">
  19745.      
  19746.  
  19747.      <span class="product-stock-level__text">
  19748.        
  19749.        <div class="product-stock-level__badge-text">
  19750.          
  19751.  
  19752.    In stock
  19753.  
  19754.  
  19755.        </div>
  19756.      </span>
  19757.    </span>
  19758.  
  19759. </div>
  19760. -->
  19761.              
  19762.  
  19763.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  19764.  
  19765.  
  19766.  
  19767.  
  19768.  
  19769.  
  19770.  
  19771.            </div>
  19772.          
  19773.  
  19774.          
  19775.            
  19776.          
  19777.        
  19778.  
  19779.        
  19780.          <div class="productitem--description">
  19781.            <p>
  19782. Description: New genuine Acer laptop dc jack cable. 45 watt version.
  19783.  
  19784. Compatible Part #'s: 50.GNSN7.001
  19785.  
  19786. Compatible Models:
  19787. Acer Aspire 1 A114-31
  19788. ...</p>
  19789.  
  19790.            
  19791.              <a
  19792.                href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19793.                class="productitem--link"
  19794.                data-product-page-link
  19795.              >
  19796.                View full details
  19797.              </a>
  19798.            
  19799.          </div>
  19800.        
  19801.      </div>
  19802.  
  19803.      
  19804.        
  19805.          
  19806.          
  19807.          
  19808.  
  19809.          
  19810.          
  19811.  
  19812.          
  19813.  
  19814.          
  19815.  
  19816.          <div class="productitem--actions" data-product-actions>
  19817.            <div class="productitem--listview-price">
  19818.              
  19819.  
  19820.  
  19821.  
  19822.  
  19823.  
  19824.  
  19825.  
  19826.  
  19827.  
  19828.  
  19829.  
  19830.  
  19831.  
  19832.  
  19833.  
  19834.  
  19835.  
  19836.  
  19837.  
  19838.  
  19839.  
  19840.  
  19841.  
  19842.  
  19843.  
  19844.  
  19845.  
  19846.  
  19847.  
  19848.  
  19849. <div class="price productitem__price ">
  19850.  
  19851.    <div
  19852.      class="price__compare-at visible"
  19853.      data-price-compare-container
  19854.    >
  19855.  
  19856.      
  19857.        <span class="money price__original" data-price-original></span>
  19858.      
  19859.    </div>
  19860.  
  19861.  
  19862.    
  19863.      
  19864.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19865.        
  19866.          <span class="visually-hidden">Original price</span>
  19867.          <span class="money price__compare-at--min" data-price-compare-min>
  19868.            $58.99
  19869.          </span>
  19870.          -
  19871.          <span class="visually-hidden">Original price</span>
  19872.          <span class="money price__compare-at--max" data-price-compare-max>
  19873.            $58.99
  19874.          </span>
  19875.        
  19876.      </div>
  19877.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19878.        <span class="visually-hidden">Original price</span>
  19879.        <span class="money price__compare-at--single" data-price-compare>
  19880.          
  19881.        </span>
  19882.      </div>
  19883.    
  19884.  
  19885.  
  19886.  <div class="price__current price__current--emphasize " data-price-container>
  19887.  
  19888.    
  19889.  
  19890.    
  19891.      
  19892.      
  19893.      <span class="money" data-price>
  19894.        $58.99
  19895.      </span>
  19896.    
  19897.    
  19898.  </div>
  19899.  
  19900.  
  19901.    
  19902.    <div class="price__current--hidden" data-current-price-range-hidden>
  19903.      
  19904.        <span class="money price__current--min" data-price-min>$58.99</span>
  19905.        -
  19906.        <span class="money price__current--max" data-price-max>$58.99</span>
  19907.      
  19908.    </div>
  19909.    <div class="price__current--hidden" data-current-price-hidden>
  19910.      <span class="visually-hidden">Current price</span>
  19911.      <span class="money" data-price>
  19912.        $58.99
  19913.      </span>
  19914.    </div>
  19915.  
  19916.  
  19917.  
  19918.    
  19919.    
  19920.    
  19921.    
  19922.  
  19923.    <div
  19924.      class="
  19925.        productitem__unit-price
  19926.        hidden
  19927.      "
  19928.      data-unit-price
  19929.    >
  19930.      <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>
  19931.    </div>
  19932.  
  19933.  
  19934.  
  19935. </div>
  19936.  
  19937.  
  19938.            </div>
  19939.  
  19940.            <div class="productitem--listview-badge">
  19941.              
  19942.  
  19943.  
  19944.  
  19945.  
  19946.  
  19947.  
  19948.  
  19949.  
  19950.  
  19951.  
  19952.  
  19953.  
  19954.  
  19955.  
  19956.  
  19957.  
  19958.  
  19959.  
  19960.  
  19961.  
  19962.  
  19963.  
  19964.  
  19965.  
  19966.  
  19967.  
  19968.  
  19969.            </div>
  19970.  
  19971.            
  19972.              <div
  19973.                class="
  19974.                  productitem--action
  19975.                  quickshop-button
  19976.                  
  19977.                "
  19978.              >
  19979.                <button
  19980.                  class="productitem--action-trigger button-secondary"
  19981.                  data-quickshop-full
  19982.                  
  19983.                  
  19984.                  type="button"
  19985.                >
  19986.                  Quick shop
  19987.                </button>
  19988.              </div>
  19989.            
  19990.  
  19991.            
  19992.              <div
  19993.                class="
  19994.                  productitem--action
  19995.                  atc--button
  19996.                  
  19997.                "
  19998.              >
  19999.                <button
  20000.                  class="productitem--action-trigger productitem--action-atc button-primary"
  20001.                  type="button"
  20002.                  aria-label="Add to cart"
  20003.                  
  20004.                    data-quick-buy
  20005.                  
  20006.                  data-variant-id="29408090816599"
  20007.                  
  20008.                >
  20009.                  <span class="atc-button--text">
  20010.                    Add to cart
  20011.                  </span>
  20012.                  <span class="atc-button--icon"><svg
  20013.  aria-hidden="true"
  20014.  focusable="false"
  20015.  role="presentation"
  20016.  width="26"
  20017.  height="26"
  20018.  viewBox="0 0 26 26"
  20019.  xmlns="http://www.w3.org/2000/svg"
  20020. >
  20021.  <g fill-rule="nonzero" fill="currentColor">
  20022.    <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"/>
  20023.  </g>
  20024. </svg></span>
  20025.                </button>
  20026.              </div>
  20027.            
  20028.          </div>
  20029.        
  20030.      
  20031.    </div>
  20032.  </div>
  20033.  
  20034.  
  20035.    <script type="application/json" data-quick-buy-settings>
  20036.      {
  20037.        "cart_redirection": true,
  20038.        "money_format": "${{amount}}"
  20039.      }
  20040.    </script>
  20041.  
  20042. </li>
  20043.    
  20044.  
  20045.    
  20046.  </ul>
  20047.  
  20048.  
  20049.    
  20050.      <a
  20051.        class="
  20052.          button-primary
  20053.          featured-collection__button
  20054.        "
  20055.        href="/collections/shop-the-best-selling"
  20056.      >
  20057.        View All
  20058.      </a>
  20059.    
  20060.  
  20061. </section>
  20062.  
  20063.  
  20064. <div class="productitem-quickshop" data-product-quickshop>
  20065.  <span class="quickshop-spinner"><svg
  20066.  aria-hidden="true"
  20067.  focusable="false"
  20068.  role="presentation"
  20069.  width="26"
  20070.  height="26"
  20071.  viewBox="0 0 26 26"
  20072.  xmlns="http://www.w3.org/2000/svg"
  20073. >
  20074.  <g fill-rule="nonzero" fill="currentColor">
  20075.    <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"/>
  20076.  </g>
  20077. </svg></span>
  20078. </div>
  20079.  
  20080.  
  20081. </div><div id="shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114" class="shopify-section slideshow--section">
  20082.  
  20083.  
  20084.  
  20085. <script type="application/pxs-animation-mapping+json">
  20086.  {
  20087.    "blocks": [".slideshow-slide"],
  20088.    "elements": [
  20089.      ".slideshow-slide__heading",
  20090.      ".slideshow-slide__subheading",
  20091.      ".slideshow-slide__text",
  20092.      ".slideshow-slide__button"
  20093.    ]
  20094.  }
  20095. </script>
  20096.  
  20097. <style data-shopify>
  20098.  #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 {
  20099.    --autoplay-interval: 5s;
  20100.  }
  20101.  
  20102.  
  20103.    @media screen and (min-width: 720px) {
  20104.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  20105.        height: vw;
  20106.      }
  20107.    }
  20108.  
  20109.  
  20110.  
  20111.    @media screen and (max-width: 719px) {
  20112.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  20113.        
  20114.          height: vw;
  20115.        
  20116.      }
  20117.    }
  20118.  
  20119. </style>
  20120.  
  20121.  
  20122.  
  20123.  
  20124. <script
  20125.  type="application/json"
  20126.  data-section-type="pxs-slideshow"
  20127.  data-section-id="template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114"
  20128.  data-section-data
  20129. >
  20130.  {
  20131.    "enable_autoplay": true,
  20132.    "autoplay_interval": 5,
  20133.    "mobile_navigation_adjust": true,
  20134.    "transition_fade": null,
  20135.    "slide_attraction": null,
  20136.    "slide_friction": null,
  20137.    "next_text": "Next slide",
  20138.    "previous_text": "Previous slide"
  20139.  }
  20140. </script>
  20141.  
  20142. <section
  20143.  class="
  20144.    slideshow
  20145.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  20146.  "
  20147.  aria-label="Slideshow"
  20148.  data-autoplay="true"
  20149.  data-autoplay-interval="5"
  20150.  data-banner="false"
  20151.  data-slideshow
  20152. ><div
  20153.    class="slideshow__wrapper "
  20154.    data-slideshow-wrapper
  20155.  ></div><div
  20156.    class="slideshow__current-slide visually-hidden"
  20157.    aria-live="polite"
  20158.    aria-atomic="true"
  20159.    data-slide-counter
  20160.    data-counter-template="Slide {{ count }} of {{ total }}"
  20161.  >
  20162.  </div>
  20163. </section>
  20164.  
  20165.  
  20166.  
  20167. </div><div id="shopify-section-template--15492296147031__516e59b8-141e-43e3-8f1d-46287735da01" class="shopify-section logolist--section"><script type="application/pxs-animation-mapping+json">
  20168.  {
  20169.    "blocks": [".logolist--inner"],
  20170.    "elements": [
  20171.      ".logolist--item"
  20172.    ]
  20173.  }
  20174. </script>
  20175.  
  20176. <section class="logolist--container">
  20177.  
  20178.    <h2 class="home-section--title">
  20179.      Search By Brands
  20180.    </h2>
  20181.  
  20182.  
  20183.  <div class="home-section--content logolist--inner">
  20184.    
  20185.      <div class="logolist--item" >
  20186.        
  20187.          <a
  20188.            class="logolist--link"
  20189.            href="/collections/acer-parts-canada"
  20190.            target="_blank"
  20191.          >
  20192.        
  20193.  
  20194.        
  20195.          
  20196.  
  20197.  
  20198.    <noscript data-rimg-noscript>
  20199.      <img loading="lazy"
  20200.        
  20201.          src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  20202.        
  20203.  
  20204.        alt=""
  20205.        data-rimg="noscript"
  20206.        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"
  20207.        class="logolist--image"
  20208.        style="
  20209.        object-fit:cover;object-position:50.0% 50.0%;
  20210.      
  20211. "
  20212.        
  20213.      >
  20214.    </noscript>
  20215.  
  20216.  
  20217.  <img loading="lazy"
  20218.    
  20219.      src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  20220.    
  20221.    alt=""
  20222.  
  20223.    
  20224.      data-rimg="lazy"
  20225.      data-rimg-scale="1"
  20226.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Acer_{size}.png?v=1698309818"
  20227.      data-rimg-max="1024x247"
  20228.      data-rimg-crop="false"
  20229.      
  20230.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='39'></svg>"
  20231.    
  20232.  
  20233.    class="logolist--image"
  20234.    style="
  20235.        object-fit:cover;object-position:50.0% 50.0%;
  20236.      
  20237. "
  20238.    
  20239.  >
  20240.  
  20241.  
  20242.  
  20243.  <div data-rimg-canvas></div>
  20244.  
  20245.  
  20246.        
  20247.  
  20248.        
  20249.          </a>
  20250.        
  20251.      </div>
  20252.    
  20253.      <div class="logolist--item" >
  20254.        
  20255.          <a
  20256.            class="logolist--link"
  20257.            href="/collections/dell-laptop-batteries"
  20258.            target="_blank"
  20259.          >
  20260.        
  20261.  
  20262.        
  20263.          
  20264.  
  20265.  
  20266.    <noscript data-rimg-noscript>
  20267.      <img loading="lazy"
  20268.        
  20269.          src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  20270.        
  20271.  
  20272.        alt=""
  20273.        data-rimg="noscript"
  20274.        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"
  20275.        class="logolist--image"
  20276.        style="
  20277.        object-fit:cover;object-position:50.0% 50.0%;
  20278.      
  20279. "
  20280.        
  20281.      >
  20282.    </noscript>
  20283.  
  20284.  
  20285.  <img loading="lazy"
  20286.    
  20287.      src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  20288.    
  20289.    alt=""
  20290.  
  20291.    
  20292.      data-rimg="lazy"
  20293.      data-rimg-scale="1"
  20294.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_{size}.png?v=1698309835"
  20295.      data-rimg-max="2048x2048"
  20296.      data-rimg-crop="false"
  20297.      
  20298.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20299.    
  20300.  
  20301.    class="logolist--image"
  20302.    style="
  20303.        object-fit:cover;object-position:50.0% 50.0%;
  20304.      
  20305. "
  20306.    
  20307.  >
  20308.  
  20309.  
  20310.  
  20311.  <div data-rimg-canvas></div>
  20312.  
  20313.  
  20314.        
  20315.  
  20316.        
  20317.          </a>
  20318.        
  20319.      </div>
  20320.    
  20321.      <div class="logolist--item" >
  20322.        
  20323.          <a
  20324.            class="logolist--link"
  20325.            href="/collections/asus"
  20326.            target="_blank"
  20327.          >
  20328.        
  20329.  
  20330.        
  20331.          
  20332.  
  20333.  
  20334.    <noscript data-rimg-noscript>
  20335.      <img loading="lazy"
  20336.        
  20337.          src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20338.        
  20339.  
  20340.        alt=""
  20341.        data-rimg="noscript"
  20342.        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"
  20343.        class="logolist--image"
  20344.        style="
  20345.        object-fit:cover;object-position:50.0% 50.0%;
  20346.      
  20347. "
  20348.        
  20349.      >
  20350.    </noscript>
  20351.  
  20352.  
  20353.  <img loading="lazy"
  20354.    
  20355.      src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20356.    
  20357.    alt=""
  20358.  
  20359.    
  20360.      data-rimg="lazy"
  20361.      data-rimg-scale="1"
  20362.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Asus_{size}.png?v=1698309865"
  20363.      data-rimg-max="504x100"
  20364.      data-rimg-crop="false"
  20365.      
  20366.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='32'></svg>"
  20367.    
  20368.  
  20369.    class="logolist--image"
  20370.    style="
  20371.        object-fit:cover;object-position:50.0% 50.0%;
  20372.      
  20373. "
  20374.    
  20375.  >
  20376.  
  20377.  
  20378.  
  20379.  <div data-rimg-canvas></div>
  20380.  
  20381.  
  20382.        
  20383.  
  20384.        
  20385.          </a>
  20386.        
  20387.      </div>
  20388.    
  20389.      <div class="logolist--item" >
  20390.        
  20391.          <a
  20392.            class="logolist--link"
  20393.            href="/collections/fujitsu"
  20394.            target="_blank"
  20395.          >
  20396.        
  20397.  
  20398.        
  20399.          
  20400.  
  20401.  
  20402.    <noscript data-rimg-noscript>
  20403.      <img loading="lazy"
  20404.        
  20405.          src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20406.        
  20407.  
  20408.        alt=""
  20409.        data-rimg="noscript"
  20410.        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"
  20411.        class="logolist--image"
  20412.        style="
  20413.        object-fit:cover;object-position:50.0% 50.0%;
  20414.      
  20415. "
  20416.        
  20417.      >
  20418.    </noscript>
  20419.  
  20420.  
  20421.  <img loading="lazy"
  20422.    
  20423.      src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20424.    
  20425.    alt=""
  20426.  
  20427.    
  20428.      data-rimg="lazy"
  20429.      data-rimg-scale="1"
  20430.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_{size}.png?v=1698309977"
  20431.      data-rimg-max="1280x602"
  20432.      data-rimg-crop="false"
  20433.      
  20434.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='76'></svg>"
  20435.    
  20436.  
  20437.    class="logolist--image"
  20438.    style="
  20439.        object-fit:cover;object-position:50.0% 50.0%;
  20440.      
  20441. "
  20442.    
  20443.  >
  20444.  
  20445.  
  20446.  
  20447.  <div data-rimg-canvas></div>
  20448.  
  20449.  
  20450.        
  20451.  
  20452.        
  20453.          </a>
  20454.        
  20455.      </div>
  20456.    
  20457.      <div class="logolist--item" >
  20458.        
  20459.          <a
  20460.            class="logolist--link"
  20461.            href="/collections/samsung"
  20462.            target="_blank"
  20463.          >
  20464.        
  20465.  
  20466.        
  20467.          
  20468.  
  20469.  
  20470.    <noscript data-rimg-noscript>
  20471.      <img loading="lazy"
  20472.        
  20473.          src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20474.        
  20475.  
  20476.        alt=""
  20477.        data-rimg="noscript"
  20478.        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"
  20479.        class="logolist--image"
  20480.        style="
  20481.        object-fit:cover;object-position:50.0% 50.0%;
  20482.      
  20483. "
  20484.        
  20485.      >
  20486.    </noscript>
  20487.  
  20488.  
  20489.  <img loading="lazy"
  20490.    
  20491.      src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20492.    
  20493.    alt=""
  20494.  
  20495.    
  20496.      data-rimg="lazy"
  20497.      data-rimg-scale="1"
  20498.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_{size}.png?v=1698309930"
  20499.      data-rimg-max="7051x1080"
  20500.      data-rimg-crop="false"
  20501.      
  20502.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20503.    
  20504.  
  20505.    class="logolist--image"
  20506.    style="
  20507.        object-fit:cover;object-position:50.0% 50.0%;
  20508.      
  20509. "
  20510.    
  20511.  >
  20512.  
  20513.  
  20514.  
  20515.  <div data-rimg-canvas></div>
  20516.  
  20517.  
  20518.        
  20519.  
  20520.        
  20521.          </a>
  20522.        
  20523.      </div>
  20524.    
  20525.      <div class="logolist--item" >
  20526.        
  20527.          <a
  20528.            class="logolist--link"
  20529.            href="/collections/apple"
  20530.            target="_blank"
  20531.          >
  20532.        
  20533.  
  20534.        
  20535.          
  20536.  
  20537.  
  20538.    <noscript data-rimg-noscript>
  20539.      <img loading="lazy"
  20540.        
  20541.          src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20542.        
  20543.  
  20544.        alt=""
  20545.        data-rimg="noscript"
  20546.        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"
  20547.        class="logolist--image"
  20548.        style="
  20549.        object-fit:cover;object-position:50.0% 50.0%;
  20550.      
  20551. "
  20552.        
  20553.      >
  20554.    </noscript>
  20555.  
  20556.  
  20557.  <img loading="lazy"
  20558.    
  20559.      src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20560.    
  20561.    alt=""
  20562.  
  20563.    
  20564.      data-rimg="lazy"
  20565.      data-rimg-scale="1"
  20566.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Apple-Logo_{size}.jpg?v=1698309948"
  20567.      data-rimg-max="3840x2160"
  20568.      data-rimg-crop="false"
  20569.      
  20570.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='90'></svg>"
  20571.    
  20572.  
  20573.    class="logolist--image"
  20574.    style="
  20575.        object-fit:cover;object-position:50.0% 50.0%;
  20576.      
  20577. "
  20578.    
  20579.  >
  20580.  
  20581.  
  20582.  
  20583.  <div data-rimg-canvas></div>
  20584.  
  20585.  
  20586.        
  20587.  
  20588.        
  20589.          </a>
  20590.        
  20591.      </div>
  20592.    
  20593.      <div class="logolist--item" >
  20594.        
  20595.          <a
  20596.            class="logolist--link"
  20597.            href="/collections/hp-laptop-battery"
  20598.            target="_blank"
  20599.          >
  20600.        
  20601.  
  20602.        
  20603.          
  20604.  
  20605.  
  20606.    <noscript data-rimg-noscript>
  20607.      <img loading="lazy"
  20608.        
  20609.          src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20610.        
  20611.  
  20612.        alt=""
  20613.        data-rimg="noscript"
  20614.        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"
  20615.        class="logolist--image"
  20616.        style="
  20617.        object-fit:cover;object-position:50.0% 50.0%;
  20618.      
  20619. "
  20620.        
  20621.      >
  20622.    </noscript>
  20623.  
  20624.  
  20625.  <img loading="lazy"
  20626.    
  20627.      src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20628.    
  20629.    alt=""
  20630.  
  20631.    
  20632.      data-rimg="lazy"
  20633.      data-rimg-scale="1"
  20634.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_{size}.png?v=1698310007"
  20635.      data-rimg-max="2048x2048"
  20636.      data-rimg-crop="false"
  20637.      
  20638.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20639.    
  20640.  
  20641.    class="logolist--image"
  20642.    style="
  20643.        object-fit:cover;object-position:50.0% 50.0%;
  20644.      
  20645. "
  20646.    
  20647.  >
  20648.  
  20649.  
  20650.  
  20651.  <div data-rimg-canvas></div>
  20652.  
  20653.  
  20654.        
  20655.  
  20656.        
  20657.          </a>
  20658.        
  20659.      </div>
  20660.    
  20661.      <div class="logolist--item" >
  20662.        
  20663.          <a
  20664.            class="logolist--link"
  20665.            href="/collections/all"
  20666.            target="_blank"
  20667.          >
  20668.        
  20669.  
  20670.        
  20671.          
  20672.  
  20673.  
  20674.    <noscript data-rimg-noscript>
  20675.      <img loading="lazy"
  20676.        
  20677.          src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20678.        
  20679.  
  20680.        alt=""
  20681.        data-rimg="noscript"
  20682.        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"
  20683.        class="logolist--image"
  20684.        style="
  20685.        object-fit:cover;object-position:50.0% 50.0%;
  20686.      
  20687. "
  20688.        
  20689.      >
  20690.    </noscript>
  20691.  
  20692.  
  20693.  <img loading="lazy"
  20694.    
  20695.      src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20696.    
  20697.    alt=""
  20698.  
  20699.    
  20700.      data-rimg="lazy"
  20701.      data-rimg-scale="1"
  20702.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_{size}.png?v=1698310074"
  20703.      data-rimg-max="5000x3125"
  20704.      data-rimg-crop="false"
  20705.      
  20706.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='100'></svg>"
  20707.    
  20708.  
  20709.    class="logolist--image"
  20710.    style="
  20711.        object-fit:cover;object-position:50.0% 50.0%;
  20712.      
  20713. "
  20714.    
  20715.  >
  20716.  
  20717.  
  20718.  
  20719.  <div data-rimg-canvas></div>
  20720.  
  20721.  
  20722.        
  20723.  
  20724.        
  20725.          </a>
  20726.        
  20727.      </div>
  20728.    
  20729.      <div class="logolist--item" >
  20730.        
  20731.          <a
  20732.            class="logolist--link"
  20733.            href="/collections/all"
  20734.            target="_blank"
  20735.          >
  20736.        
  20737.  
  20738.        
  20739.          
  20740.  
  20741.  
  20742.    <noscript data-rimg-noscript>
  20743.      <img loading="lazy"
  20744.        
  20745.          src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20746.        
  20747.  
  20748.        alt=""
  20749.        data-rimg="noscript"
  20750.        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"
  20751.        class="logolist--image"
  20752.        style="
  20753.        object-fit:cover;object-position:50.0% 50.0%;
  20754.      
  20755. "
  20756.        
  20757.      >
  20758.    </noscript>
  20759.  
  20760.  
  20761.  <img loading="lazy"
  20762.    
  20763.      src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20764.    
  20765.    alt=""
  20766.  
  20767.    
  20768.      data-rimg="lazy"
  20769.      data-rimg-scale="1"
  20770.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Alienware_{size}.png?v=1698310052"
  20771.      data-rimg-max="860x231"
  20772.      data-rimg-crop="false"
  20773.      
  20774.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='43'></svg>"
  20775.    
  20776.  
  20777.    class="logolist--image"
  20778.    style="
  20779.        object-fit:cover;object-position:50.0% 50.0%;
  20780.      
  20781. "
  20782.    
  20783.  >
  20784.  
  20785.  
  20786.  
  20787.  <div data-rimg-canvas></div>
  20788.  
  20789.  
  20790.        
  20791.  
  20792.        
  20793.          </a>
  20794.        
  20795.      </div>
  20796.    
  20797.      <div class="logolist--item" >
  20798.        
  20799.          <a
  20800.            class="logolist--link"
  20801.            href="/collections/all"
  20802.            target="_blank"
  20803.          >
  20804.        
  20805.  
  20806.        
  20807.          
  20808.  
  20809.  
  20810.    <noscript data-rimg-noscript>
  20811.      <img loading="lazy"
  20812.        
  20813.          src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20814.        
  20815.  
  20816.        alt=""
  20817.        data-rimg="noscript"
  20818.        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"
  20819.        class="logolist--image"
  20820.        style="
  20821.        object-fit:cover;object-position:50.0% 50.0%;
  20822.      
  20823. "
  20824.        
  20825.      >
  20826.    </noscript>
  20827.  
  20828.  
  20829.  <img loading="lazy"
  20830.    
  20831.      src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20832.    
  20833.    alt=""
  20834.  
  20835.    
  20836.      data-rimg="lazy"
  20837.      data-rimg-scale="1"
  20838.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_{size}.png?v=1698310106"
  20839.      data-rimg-max="1200x183"
  20840.      data-rimg-crop="false"
  20841.      
  20842.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20843.    
  20844.  
  20845.    class="logolist--image"
  20846.    style="
  20847.        object-fit:cover;object-position:50.0% 50.0%;
  20848.      
  20849. "
  20850.    
  20851.  >
  20852.  
  20853.  
  20854.  
  20855.  <div data-rimg-canvas></div>
  20856.  
  20857.  
  20858.        
  20859.  
  20860.        
  20861.          </a>
  20862.        
  20863.      </div>
  20864.    
  20865.      <div class="logolist--item" >
  20866.        
  20867.          <a
  20868.            class="logolist--link"
  20869.            href="/collections/all"
  20870.            target="_blank"
  20871.          >
  20872.        
  20873.  
  20874.        
  20875.          
  20876.  
  20877.  
  20878.    <noscript data-rimg-noscript>
  20879.      <img loading="lazy"
  20880.        
  20881.          src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20882.        
  20883.  
  20884.        alt=""
  20885.        data-rimg="noscript"
  20886.        srcset="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364 1x, //laptopparts.ca/cdn/shop/files/Panasonic_224x224.png?v=1698310364 1.4x"
  20887.        class="logolist--image"
  20888.        style="
  20889.        object-fit:cover;object-position:50.0% 50.0%;
  20890.      
  20891. "
  20892.        
  20893.      >
  20894.    </noscript>
  20895.  
  20896.  
  20897.  <img loading="lazy"
  20898.    
  20899.      src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20900.    
  20901.    alt=""
  20902.  
  20903.    
  20904.      data-rimg="lazy"
  20905.      data-rimg-scale="1"
  20906.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Panasonic_{size}.png?v=1698310364"
  20907.      data-rimg-max="225x225"
  20908.      data-rimg-crop="false"
  20909.      
  20910.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20911.    
  20912.  
  20913.    class="logolist--image"
  20914.    style="
  20915.        object-fit:cover;object-position:50.0% 50.0%;
  20916.      
  20917. "
  20918.    
  20919.  >
  20920.  
  20921.  
  20922.  
  20923.  <div data-rimg-canvas></div>
  20924.  
  20925.  
  20926.        
  20927.  
  20928.        
  20929.          </a>
  20930.        
  20931.      </div>
  20932.    
  20933.      <div class="logolist--item" >
  20934.        
  20935.          <a
  20936.            class="logolist--link"
  20937.            href="/collections/all"
  20938.            target="_blank"
  20939.          >
  20940.        
  20941.  
  20942.        
  20943.          
  20944.  
  20945.  
  20946.    <noscript data-rimg-noscript>
  20947.      <img loading="lazy"
  20948.        
  20949.          src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20950.        
  20951.  
  20952.        alt=""
  20953.        data-rimg="noscript"
  20954.        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"
  20955.        class="logolist--image"
  20956.        style="
  20957.        object-fit:cover;object-position:50.0% 50.0%;
  20958.      
  20959. "
  20960.        
  20961.      >
  20962.    </noscript>
  20963.  
  20964.  
  20965.  <img loading="lazy"
  20966.    
  20967.      src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20968.    
  20969.    alt=""
  20970.  
  20971.    
  20972.      data-rimg="lazy"
  20973.      data-rimg-scale="1"
  20974.      data-rimg-template="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_{size}.png?v=1698310433"
  20975.      data-rimg-max="666x375"
  20976.      data-rimg-crop="false"
  20977.      
  20978.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='91'></svg>"
  20979.    
  20980.  
  20981.    class="logolist--image"
  20982.    style="
  20983.        object-fit:cover;object-position:50.0% 50.0%;
  20984.      
  20985. "
  20986.    
  20987.  >
  20988.  
  20989.  
  20990.  
  20991.  <div data-rimg-canvas></div>
  20992.  
  20993.  
  20994.        
  20995.  
  20996.        
  20997.          </a>
  20998.        
  20999.      </div>
  21000.    
  21001.  </div>
  21002. </section>
  21003.  
  21004. </div><div id="shopify-section-template--15492296147031__16962663497dd9ec87" class="shopify-section"><div class="product-section--container">
  21005.  
  21006. </div>
  21007.  
  21008.  
  21009. </div><div id="shopify-section-template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706" class="shopify-section highlights-banner"><script
  21010.  type="application/json"
  21011.  data-section-type="dynamic-highlights-banner"
  21012.  data-section-id="template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706">
  21013. </script>
  21014.  
  21015. <style>
  21016.  
  21017.  
  21018.    .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706.highlights-banner__container {
  21019.      background-color: #000000;
  21020.    }
  21021.  
  21022.  
  21023.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:before {
  21024.    background: linear-gradient( to right, #000000 10%, rgba(0, 0, 0, 0) 100%);
  21025.  }
  21026.  
  21027.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:after {
  21028.    background: linear-gradient( to left, #000000 10%, rgba(0, 0, 0, 0) 100%);
  21029.  }
  21030.  
  21031.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__block {
  21032.    color: #ffffff;
  21033.  }
  21034.  
  21035.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__icon {
  21036.    color: #fe0000;
  21037.  }
  21038. </style>
  21039.  
  21040. <script type="application/pxs-animation-mapping+json">
  21041.  {
  21042.    "blocks": [".highlights-banners-block"],
  21043.    "elements": []
  21044.  }
  21045. </script>
  21046.  
  21047. <div class="
  21048.  highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706
  21049.  highlights-banner__container
  21050.  highlights-banner__mobile-layout--slider
  21051.  full-width
  21052.  "
  21053. >
  21054.  <div class="highlights-banner__content highlight-banner__count-4"
  21055.   data-highlights-slider
  21056.  >
  21057.    
  21058.      
  21059.        <div
  21060.          class="highlights-banner__block highlights-banner__align-left"
  21061.          
  21062.          data-highlights-block
  21063.        >
  21064.          
  21065.            <div class="highlights-banner__icon">
  21066.              
  21067.                
  21068.  
  21069.  
  21070.                                                                    <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>                                                
  21071.  
  21072.              
  21073.            </div>
  21074.          
  21075.  
  21076.          <div class="highlights-banner__text">
  21077.            
  21078.              <span class="highlights-banner__heading">
  21079.                Quality and Saving
  21080.              </span>
  21081.            
  21082.  
  21083.            
  21084.              <p>Comprehensive quality control and affordable prices</p>
  21085.            
  21086.          </div>
  21087.          
  21088.        </div>
  21089.      
  21090.    
  21091.      
  21092.        <div
  21093.          class="highlights-banner__block highlights-banner__align-left"
  21094.          
  21095.          data-highlights-block
  21096.        >
  21097.          
  21098.            <div class="highlights-banner__icon">
  21099.              
  21100.                
  21101.  
  21102.  
  21103.                                  <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>                                                                                  
  21104.  
  21105.              
  21106.            </div>
  21107.          
  21108.  
  21109.          <div class="highlights-banner__text">
  21110.            
  21111.              <span class="highlights-banner__heading">
  21112.                Huge Inventory
  21113.              </span>
  21114.            
  21115.  
  21116.            
  21117.              <p>largest available inventory of parts in Canada</p>
  21118.            
  21119.          </div>
  21120.          
  21121.        </div>
  21122.      
  21123.    
  21124.      
  21125.        <div
  21126.          class="highlights-banner__block highlights-banner__align-left"
  21127.          
  21128.          data-highlights-block
  21129.        >
  21130.          
  21131.            <div class="highlights-banner__icon">
  21132.              
  21133.                
  21134.  
  21135.  
  21136.                            <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>                                                                                        
  21137.  
  21138.              
  21139.            </div>
  21140.          
  21141.  
  21142.          <div class="highlights-banner__text">
  21143.            
  21144.              <span class="highlights-banner__heading">
  21145.                Fast Shipping
  21146.              </span>
  21147.            
  21148.  
  21149.            
  21150.              <p>Fast and convenient door to door delivery</p>
  21151.            
  21152.          </div>
  21153.          
  21154.        </div>
  21155.      
  21156.    
  21157.      
  21158.        <div
  21159.          class="highlights-banner__block highlights-banner__align-left"
  21160.          
  21161.          data-highlights-block
  21162.        >
  21163.          
  21164.            <div class="highlights-banner__icon">
  21165.              
  21166.                
  21167.  
  21168.  
  21169.                          <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>                                                                                          
  21170.  
  21171.              
  21172.            </div>
  21173.          
  21174.  
  21175.          <div class="highlights-banner__text">
  21176.            
  21177.              <span class="highlights-banner__heading">
  21178.                Payment Security
  21179.              </span>
  21180.            
  21181.  
  21182.            
  21183.              <p>We have secured payment methods</p>
  21184.            
  21185.          </div>
  21186.          
  21187.        </div>
  21188.      
  21189.    
  21190.  </div>
  21191. </div>
  21192.  
  21193. </div><div id="shopify-section-template--15492296147031__dynamic_html_knfnMB" class="shopify-section html--section"><script
  21194.  type="application/json"
  21195.  data-section-id="template--15492296147031__dynamic_html_knfnMB"
  21196.  data-section-type="dynamic-html"
  21197. ></script>
  21198.  
  21199. <section class="custom-html--container">
  21200.  
  21201.  <div class="rte" data-rte>
  21202.    <h1 style="text-align:center; margin-bottom:-50px">ABOUT US</h1>
  21203.  </div>
  21204. </section>
  21205.  
  21206. </div><div id="shopify-section-template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0" class="shopify-section rich-text--section"><script
  21207.  type="application/json"
  21208.  data-section-id="template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0"
  21209.  data-section-type="dynamic-rich-text"
  21210. ></script>
  21211.  
  21212. <script type="application/pxs-animation-mapping+json">
  21213.  {
  21214.    "blocks": [".rich-text-block"],
  21215.    "elements": []
  21216.  }
  21217. </script>
  21218.  
  21219. <section
  21220.  class="
  21221.    rich-text--container
  21222.    rich-text-full-width
  21223.  "
  21224. >
  21225.    <div
  21226.      class="
  21227.        rich-text-block
  21228.        rich-text-alignment-center
  21229.      "
  21230.      
  21231.    >
  21232.        
  21233.  
  21234.        
  21235.          <div class="rich-text-content rte" data-rte>
  21236.            <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>
  21237.          </div>
  21238.        
  21239.    </div>
  21240. </section>
  21241.  
  21242. </div><div id="shopify-section-template--15492296147031__dynamic_html_fKi4qq" class="shopify-section html--section"><script
  21243.  type="application/json"
  21244.  data-section-id="template--15492296147031__dynamic_html_fKi4qq"
  21245.  data-section-type="dynamic-html"
  21246. ></script>
  21247.  
  21248. <section class="custom-html--container">
  21249.  
  21250.  <div class="rte" data-rte>
  21251.    <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>
  21252.  </div>
  21253. </section>
  21254.  
  21255. </div>
  21256.    </main>
  21257.  
  21258.    <!-- BEGIN sections: footer-group -->
  21259. <div id="shopify-section-sections--15492291100759__footer" class="shopify-section shopify-section-group-footer-group"><script
  21260.  type="application/json"
  21261.  data-section-id="sections--15492291100759__footer"
  21262.  data-section-type="static-footer">
  21263. </script>
  21264.  
  21265.  
  21266.  
  21267.  
  21268.  
  21269. <footer role="contentinfo" aria-label="Footer">
  21270.  <section class="site-footer-wrapper">
  21271.    
  21272.      <div class="site-footer-item">
  21273.        <div class="site-footer-blocks column-count-4">
  21274.          <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  21275.  
  21276.  
  21277.      <h2 class="site-footer-block-title" data-accordion-trigger>
  21278.        FURTHER INFO.
  21279.  
  21280.        <span class="site-footer-block-icon accordion--icon">
  21281.          <svg
  21282.  aria-hidden="true"
  21283.  focusable="false"
  21284.  role="presentation"
  21285.  width="14"
  21286.  height="8"
  21287.  viewBox="0 0 14 8"
  21288.  fill="none"
  21289.  xmlns="http://www.w3.org/2000/svg"
  21290. >
  21291.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21292.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21293. </svg>
  21294.  
  21295.        </span>
  21296.      </h2>
  21297.  
  21298.      <div class="site-footer-block-content">
  21299.        
  21300.  
  21301.  
  21302.  
  21303.  
  21304.  
  21305.  
  21306.  
  21307.  
  21308.  
  21309.  
  21310.  
  21311.  
  21312. <ul
  21313.  class="
  21314.    navmenu
  21315.    navmenu-depth-1
  21316.    
  21317.    
  21318.  "
  21319.  data-navmenu
  21320.  data-accordion-content
  21321.  
  21322.  
  21323. >
  21324.  
  21325.    
  21326.  
  21327.    
  21328.    
  21329.  
  21330.    
  21331.    
  21332.  
  21333.    
  21334.  
  21335.    
  21336.      <li
  21337.        class="navmenu-item navmenu-id-home"
  21338.      >
  21339.        <a
  21340.        class="
  21341.          navmenu-link
  21342.          navmenu-link-depth-1
  21343.          navmenu-link-active
  21344.        "
  21345.        href="/"
  21346.        >
  21347.          
  21348.          Home
  21349. </a>
  21350.      </li>
  21351.    
  21352.  
  21353.    
  21354.  
  21355.    
  21356.    
  21357.  
  21358.    
  21359.    
  21360.  
  21361.    
  21362.  
  21363.    
  21364.      <li
  21365.        class="navmenu-item navmenu-id-search"
  21366.      >
  21367.        <a
  21368.        class="
  21369.          navmenu-link
  21370.          navmenu-link-depth-1
  21371.          
  21372.        "
  21373.        href="/search"
  21374.        >
  21375.          
  21376.          Search
  21377. </a>
  21378.      </li>
  21379.    
  21380.  
  21381.    
  21382.  
  21383.    
  21384.    
  21385.  
  21386.    
  21387.    
  21388.  
  21389.    
  21390.  
  21391.    
  21392.      <li
  21393.        class="navmenu-item navmenu-id-about-us"
  21394.      >
  21395.        <a
  21396.        class="
  21397.          navmenu-link
  21398.          navmenu-link-depth-1
  21399.          
  21400.        "
  21401.        href="/pages/about-us"
  21402.        >
  21403.          
  21404.          About Us
  21405. </a>
  21406.      </li>
  21407.    
  21408.  
  21409.    
  21410.  
  21411.    
  21412.    
  21413.  
  21414.    
  21415.    
  21416.  
  21417.    
  21418.  
  21419.    
  21420.      <li
  21421.        class="navmenu-item navmenu-id-parts-request"
  21422.      >
  21423.        <a
  21424.        class="
  21425.          navmenu-link
  21426.          navmenu-link-depth-1
  21427.          
  21428.        "
  21429.        href="/pages/part-request"
  21430.        >
  21431.          
  21432.          Parts Request
  21433. </a>
  21434.      </li>
  21435.    
  21436.  
  21437.    
  21438.  
  21439.    
  21440.    
  21441.  
  21442.    
  21443.    
  21444.  
  21445.    
  21446.  
  21447.    
  21448.      <li
  21449.        class="navmenu-item navmenu-id-repair-centers"
  21450.      >
  21451.        <a
  21452.        class="
  21453.          navmenu-link
  21454.          navmenu-link-depth-1
  21455.          
  21456.        "
  21457.        href="/pages/store-locator"
  21458.        >
  21459.          
  21460.          Repair Centers
  21461. </a>
  21462.      </li>
  21463.    
  21464.  
  21465.    
  21466.  
  21467.    
  21468.    
  21469.  
  21470.    
  21471.    
  21472.  
  21473.    
  21474.  
  21475.    
  21476.      <li
  21477.        class="navmenu-item navmenu-id-francais"
  21478.      >
  21479.        <a
  21480.        class="
  21481.          navmenu-link
  21482.          navmenu-link-depth-1
  21483.          
  21484.        "
  21485.        href="/pages/francais"
  21486.        >
  21487.          
  21488.          Français
  21489. </a>
  21490.      </li>
  21491.    
  21492.  
  21493.    
  21494.  
  21495.    
  21496.    
  21497.  
  21498.    
  21499.    
  21500.  
  21501.    
  21502.  
  21503.    
  21504.      <li
  21505.        class="navmenu-item navmenu-id-reviews"
  21506.      >
  21507.        <a
  21508.        class="
  21509.          navmenu-link
  21510.          navmenu-link-depth-1
  21511.          
  21512.        "
  21513.        href="/pages/reviews"
  21514.        >
  21515.          
  21516.          Reviews
  21517. </a>
  21518.      </li>
  21519.    
  21520.  
  21521. </ul>
  21522.  
  21523.  
  21524.        <!-- TG seal - snippets/footer.liquid -->
  21525.        
  21526.          <div style="margin-top: 2em;">
  21527.            <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>
  21528.            <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>
  21529.          </div>
  21530.        
  21531.        <!-- END TG seal - snippets/footer.liquid -->
  21532.      </div>
  21533.  
  21534. </div>
  21535. <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  21536.  
  21537.  
  21538.      <h2 class="site-footer-block-title" data-accordion-trigger>
  21539.        CUSTOMER SERVICE
  21540.  
  21541.        <span class="site-footer-block-icon accordion--icon">
  21542.          <svg
  21543.  aria-hidden="true"
  21544.  focusable="false"
  21545.  role="presentation"
  21546.  width="14"
  21547.  height="8"
  21548.  viewBox="0 0 14 8"
  21549.  fill="none"
  21550.  xmlns="http://www.w3.org/2000/svg"
  21551. >
  21552.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21553.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21554. </svg>
  21555.  
  21556.        </span>
  21557.      </h2>
  21558.  
  21559.      <div class="site-footer-block-content">
  21560.        
  21561.  
  21562.  
  21563.  
  21564.  
  21565.  
  21566.  
  21567.  
  21568.  
  21569.  
  21570.  
  21571.  
  21572.  
  21573. <ul
  21574.  class="
  21575.    navmenu
  21576.    navmenu-depth-1
  21577.    
  21578.    
  21579.  "
  21580.  data-navmenu
  21581.  data-accordion-content
  21582.  
  21583.  
  21584. >
  21585.  
  21586.    
  21587.  
  21588.    
  21589.    
  21590.  
  21591.    
  21592.    
  21593.  
  21594.    
  21595.  
  21596.    
  21597.      <li
  21598.        class="navmenu-item navmenu-id-privacy-policy"
  21599.      >
  21600.        <a
  21601.        class="
  21602.          navmenu-link
  21603.          navmenu-link-depth-1
  21604.          
  21605.        "
  21606.        href="/pages/privacy-policy"
  21607.        >
  21608.          
  21609.          Privacy Policy
  21610. </a>
  21611.      </li>
  21612.    
  21613.  
  21614.    
  21615.  
  21616.    
  21617.    
  21618.  
  21619.    
  21620.    
  21621.  
  21622.    
  21623.  
  21624.    
  21625.      <li
  21626.        class="navmenu-item navmenu-id-return-policy"
  21627.      >
  21628.        <a
  21629.        class="
  21630.          navmenu-link
  21631.          navmenu-link-depth-1
  21632.          
  21633.        "
  21634.        href="/pages/returns"
  21635.        >
  21636.          
  21637.          Return Policy
  21638. </a>
  21639.      </li>
  21640.    
  21641.  
  21642.    
  21643.  
  21644.    
  21645.    
  21646.  
  21647.    
  21648.    
  21649.  
  21650.    
  21651.  
  21652.    
  21653.      <li
  21654.        class="navmenu-item navmenu-id-shipping"
  21655.      >
  21656.        <a
  21657.        class="
  21658.          navmenu-link
  21659.          navmenu-link-depth-1
  21660.          
  21661.        "
  21662.        href="/pages/shipping"
  21663.        >
  21664.          
  21665.          Shipping
  21666. </a>
  21667.      </li>
  21668.    
  21669.  
  21670.    
  21671.  
  21672.    
  21673.    
  21674.  
  21675.    
  21676.    
  21677.  
  21678.    
  21679.  
  21680.    
  21681.      <li
  21682.        class="navmenu-item navmenu-id-warranty"
  21683.      >
  21684.        <a
  21685.        class="
  21686.          navmenu-link
  21687.          navmenu-link-depth-1
  21688.          
  21689.        "
  21690.        href="/pages/warranty"
  21691.        >
  21692.          
  21693.          Warranty
  21694. </a>
  21695.      </li>
  21696.    
  21697.  
  21698.    
  21699.  
  21700.    
  21701.    
  21702.  
  21703.    
  21704.    
  21705.  
  21706.    
  21707.  
  21708.    
  21709.      <li
  21710.        class="navmenu-item navmenu-id-blogs"
  21711.      >
  21712.        <a
  21713.        class="
  21714.          navmenu-link
  21715.          navmenu-link-depth-1
  21716.          
  21717.        "
  21718.        href="/blogs/news/how-to-enhance-your-laptops-performance-top-tips-for-optimization"
  21719.        >
  21720.          
  21721.          Blogs
  21722. </a>
  21723.      </li>
  21724.    
  21725.  
  21726. </ul>
  21727.  
  21728.  
  21729.        <!-- TG seal - snippets/footer.liquid -->
  21730.        
  21731.        <!-- END TG seal - snippets/footer.liquid -->
  21732.      </div>
  21733.  
  21734. </div>
  21735. <div class="site-footer-block-item  site-footer-block-social-accounts  " >
  21736.  
  21737.  
  21738.    
  21739.  
  21740.  
  21741.  
  21742.  
  21743.  
  21744.  
  21745.  
  21746.  
  21747.  
  21748.  
  21749.  
  21750.  
  21751.  
  21752.  
  21753.  
  21754.  
  21755.  
  21756.  
  21757.  
  21758.  
  21759.  
  21760.  
  21761.    
  21762.    
  21763.  
  21764.  
  21765.  
  21766.  
  21767.    <h2 class="site-footer-block-title">
  21768.      Follow us
  21769.    </h2>
  21770.  
  21771.    <div class="site-footer-block-content">
  21772.  
  21773.  
  21774.  <div class="social-icons">
  21775.  
  21776.  
  21777. <a
  21778.  class="social-link"
  21779.  title="Facebook"
  21780.  href="https://web.facebook.com/laptopparts.ca/?_rdc=1&amp;_rdr"
  21781.  target="_blank">
  21782. <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>
  21783.  
  21784.    <span class="visually-hidden">Find us on Facebook</span>
  21785.  
  21786. </a>
  21787.  
  21788.  
  21789.  
  21790.  
  21791. <a
  21792.  class="social-link"
  21793.  title="Twitter"
  21794.  href="https://twitter.com/i/flow/login?redirect_after_login=%2FLaptopParts_ca"
  21795.  target="_blank">
  21796. <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>
  21797.  
  21798.    <span class="visually-hidden">Find us on Twitter</span>
  21799.  
  21800. </a>
  21801.  
  21802. </div>
  21803.  
  21804.  
  21805.    </div>
  21806.  
  21807.  
  21808.  
  21809.  
  21810. </div>
  21811. <div class="site-footer-block-item  site-footer-block-rich-text  " >
  21812.  
  21813.  
  21814.    
  21815.      <h2 class="site-footer-block-title">
  21816.        Contact Us
  21817.      </h2>
  21818.    
  21819.  
  21820.    
  21821.      <div class="site-footer-block-content rte">
  21822.        <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>
  21823.      </div>
  21824.    
  21825.  
  21826.    
  21827.  
  21828. </div>
  21829.  
  21830.        </div>
  21831.      </div>
  21832.    
  21833.  
  21834.    <div class="site-footer-item site-footer-item--information">
  21835.      <div class="site-footer__row site-footer__row--first">
  21836. <div class="site-footer-right ">
  21837.        <div class="shopify-cross-border">
  21838.          
  21839.        
  21840.          
  21841.        </div>
  21842.        
  21843. <ul class="payment-icons">
  21844.          
  21845.            <li class="payment-icons-item">
  21846.              <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>
  21847.  
  21848.            </li>
  21849.          
  21850.            <li class="payment-icons-item">
  21851.              <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>
  21852.  
  21853.            </li>
  21854.          
  21855.            <li class="payment-icons-item">
  21856.              <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>
  21857.            </li>
  21858.          
  21859.            <li class="payment-icons-item">
  21860.              <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>
  21861.            </li>
  21862.          
  21863.            <li class="payment-icons-item">
  21864.              <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>
  21865.  
  21866.            </li>
  21867.          
  21868.            <li class="payment-icons-item">
  21869.              <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>
  21870.            </li>
  21871.          
  21872.            <li class="payment-icons-item">
  21873.              <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>
  21874.            </li>
  21875.          
  21876.            <li class="payment-icons-item">
  21877.              <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>
  21878.  
  21879.            </li>
  21880.          
  21881.            <li class="payment-icons-item">
  21882.              <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>
  21883.            </li>
  21884.          
  21885.        </ul></div>
  21886.      </div>
  21887.  
  21888.      <div class="site-footer__row site-footer__row--second">
  21889.        <div class="site-footer__row-inner-wrapper-left"><p class="site-footer-credits">
  21890.            <b>LaptopParts.ca</b>
  21891.          </p>
  21892.  
  21893.          <p class="site-footer-credits" style="color:black;">Developed By <a href="https://searchaly.com" style="text-decoration:none;color:black;">Searchaly</a>
  21894.          </p>
  21895.        </div>
  21896.  
  21897.        
  21898. <div class="site-footer-right ">
  21899.        <div class="shopify-cross-border">
  21900.          
  21901.        
  21902.          
  21903.        </div>
  21904.        
  21905. <ul class="payment-icons">
  21906.          
  21907.            <li class="payment-icons-item">
  21908.              <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>
  21909.  
  21910.            </li>
  21911.          
  21912.            <li class="payment-icons-item">
  21913.              <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>
  21914.  
  21915.            </li>
  21916.          
  21917.            <li class="payment-icons-item">
  21918.              <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>
  21919.            </li>
  21920.          
  21921.            <li class="payment-icons-item">
  21922.              <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>
  21923.            </li>
  21924.          
  21925.            <li class="payment-icons-item">
  21926.              <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>
  21927.  
  21928.            </li>
  21929.          
  21930.            <li class="payment-icons-item">
  21931.              <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>
  21932.            </li>
  21933.          
  21934.            <li class="payment-icons-item">
  21935.              <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>
  21936.            </li>
  21937.          
  21938.            <li class="payment-icons-item">
  21939.              <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>
  21940.  
  21941.            </li>
  21942.          
  21943.            <li class="payment-icons-item">
  21944.              <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>
  21945.            </li>
  21946.          
  21947.        </ul></div>
  21948.      </div>
  21949.    </div>
  21950.  </section>
  21951. </footer>
  21952.  
  21953. </div>
  21954. <!-- END sections: footer-group -->
  21955.  
  21956.    
  21957.    <div style="display: none;" aria-hidden="true" data-templates>
  21958.      
  21959.      <div
  21960.        class="message-banner--container"
  21961.        role="alert"
  21962.        data-message-banner
  21963.      >
  21964.        <div class="message-banner--outer">
  21965.          <div class="message-banner--inner" data-message-banner-content></div>
  21966.  
  21967.          <button
  21968.            class="message-banner--close"
  21969.            type="button"
  21970.            aria-label="Close"
  21971.            data-message-banner-close
  21972.          ><svg
  21973.  aria-hidden="true"
  21974.  focusable="false"
  21975.  role="presentation"
  21976.  xmlns="http://www.w3.org/2000/svg"
  21977.  width="13"
  21978.  height="13"
  21979.  viewBox="0 0 13 13"
  21980. >
  21981.  <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"/>
  21982. </svg></button>
  21983.        </div>
  21984.      </div>
  21985.      
  21986.  
  21987.      
  21988.      <section class="atc-banner--container" role="log" data-atc-banner>
  21989.        <div class="atc-banner--outer">
  21990.          <div class="atc-banner--inner">
  21991.            <div class="atc-banner--product">
  21992.              <h2 class="atc-banner--product-title">
  21993.                <span class="atc-banner--product-title--icon">
  21994.                  
  21995.  
  21996.  
  21997.                <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>                                                                                                    
  21998.  
  21999.                </span>
  22000.                Added to your cart:
  22001.              </h2>
  22002.  
  22003.              <div class="atc--product">
  22004.                <div class="atc--product-image" data-atc-banner-product-image>
  22005.                  <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>
  22006.                </div>
  22007.                <div class="atc--product-details">
  22008.                  <h2 class="atc--product-details--title" data-atc-banner-product-title></h2>
  22009.                  <span class="atc--product-details--options" data-atc-banner-product-options></span>
  22010.                  <span class="atc--product-details--price">
  22011.                    <span class="atc--product-details--price-quantity" data-atc-banner-product-price-quantity></span>
  22012.                    <span class="atc--product-details--price-value money" data-atc-banner-product-price-value></span>
  22013.                    <span
  22014.                      class="atc--product-details--price-discounted money"
  22015.                      data-atc-banner-product-price-discounted
  22016.                    ></span>
  22017.                    <span class="atc--product-details--unit-price hidden" data-atc-banner-unit-price>
  22018.                      ** total_quantity ** | ** unit_price ** / ** unit_measure **
  22019.                    </span>
  22020.                  </span>
  22021.                  <ul class="discount-list" data-atc-banner-product-discounts>
  22022.                    <li class="discount-list-item">
  22023.                      
  22024.  
  22025.  
  22026.                                                                        <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>                                            
  22027.  
  22028.                      <span class="discount-title"></span>
  22029.                      (-<span class="money discount-amount"></span>)
  22030.                    </li>
  22031.                  </ul>
  22032.                  <span class="atc--line-item-subscriptions" data-atc-banner-product-subscription-title></span>
  22033.                </div>
  22034.              </div>
  22035.            </div>
  22036.  
  22037.            <div class="atc-banner--cart">
  22038.              <div class="atc-banner--cart-subtotal">
  22039.                <span class="atc-subtotal--label">
  22040.                  Cart subtotal
  22041.                </span>
  22042.                <span class="atc-subtotal--price money" data-atc-banner-cart-subtotal></span>
  22043.              </div>
  22044.  
  22045.              <footer class="atc-banner--cart-footer">
  22046.                <a
  22047.                  class="button-secondary atc-button--viewcart"
  22048.                  href="/cart"
  22049.                  data-atc-banner-cart-button
  22050.                >
  22051.                  View cart (<span></span>)
  22052.                </a>
  22053.                <form
  22054.                  action="/cart"
  22055.                  method="post"
  22056.                  aria-label="cart checkout"
  22057.                >
  22058.                  <button class="button-primary atc-button--checkout" type="submit" name="checkout">
  22059.                    
  22060.                      <svg
  22061. width="20"
  22062. height="20"
  22063. viewBox="0 0 20 20"
  22064. fill="none"
  22065. xmlns="http://www.w3.org/2000/svg">
  22066. <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"/>
  22067. <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"/>
  22068. </svg>
  22069.  
  22070.                    
  22071.                    <span>Checkout</span>
  22072.                  </button>
  22073.                </form>
  22074.              </footer>
  22075.            </div>
  22076.          </div>
  22077.  
  22078.          <button
  22079.            class="atc-banner--close"
  22080.            type="button"
  22081.            aria-label="Close"
  22082.            data-atc-banner-close
  22083.          ><svg
  22084.  aria-hidden="true"
  22085.  focusable="false"
  22086.  role="presentation"
  22087.  xmlns="http://www.w3.org/2000/svg"
  22088.  width="13"
  22089.  height="13"
  22090.  viewBox="0 0 13 13"
  22091. >
  22092.  <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"/>
  22093. </svg></button>
  22094.        </div>
  22095.      </section>
  22096.      
  22097.    </div>
  22098.  
  22099.    
  22100.    
  22101.    <div class="modal" data-modal-container aria-label="modal window" data-trap-focus>
  22102.      <div class="modal-inner" data-modal-inner>
  22103.        <button
  22104.          class="modal-close"
  22105.          type="button"
  22106.          aria-label="Close"
  22107.          data-modal-close
  22108.        >
  22109.          <svg
  22110.  aria-hidden="true"
  22111.  focusable="false"
  22112.  role="presentation"
  22113.  xmlns="http://www.w3.org/2000/svg"
  22114.  width="13"
  22115.  height="13"
  22116.  viewBox="0 0 13 13"
  22117. >
  22118.  <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"/>
  22119. </svg>
  22120.        </button>
  22121.        <div class="modal-content" data-modal-content></div>
  22122.      </div>
  22123.    </div>
  22124.  
  22125.    <div class="modal-1" data-modal-container-1 aria-label="modal window">
  22126.      <div class="modal-inner" data-modal-inner>
  22127.        <button
  22128.          class="modal-close"
  22129.          type="button"
  22130.          aria-label="Close"
  22131.          data-modal-1-close
  22132.        >
  22133.          <svg
  22134.  aria-hidden="true"
  22135.  focusable="false"
  22136.  role="presentation"
  22137.  xmlns="http://www.w3.org/2000/svg"
  22138.  width="13"
  22139.  height="13"
  22140.  viewBox="0 0 13 13"
  22141. >
  22142.  <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"/>
  22143. </svg>
  22144.        </button>
  22145.        <div class="modal-content" data-modal-content></div>
  22146.      </div>
  22147.    </div>
  22148.    
  22149.  
  22150.    
  22151.    
  22152.    
  22153.    <div
  22154.      class="pswp"
  22155.      tabindex="-1"
  22156.      role="dialog"
  22157.      aria-hidden="true"
  22158.      aria-label="Product zoom dialog"
  22159.      data-photoswipe
  22160.    >
  22161.      
  22162.      <div class="pswp__bg"></div>
  22163.  
  22164.      
  22165.      <div class="pswp__scroll-wrap">
  22166.        
  22167.        <div class="pswp__container" aria-hidden="true">
  22168.          <div class="pswp__item"></div>
  22169.          <div class="pswp__item"></div>
  22170.          <div class="pswp__item"></div>
  22171.        </div>
  22172.  
  22173.        
  22174.        <div class="pswp__ui pswp__ui--hidden">
  22175.          <div class="pswp__top-bar">
  22176.            
  22177.            <div class="pswp__counter"></div>
  22178.            <button class="pswp__button pswp__button--close" title="Close">
  22179.              <span tabindex="-1">
  22180.                
  22181.  
  22182.  
  22183.              <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>                                                                                                      
  22184.  
  22185.              </span>
  22186.            </button>
  22187.            <button class="pswp__button pswp__button--share" title="Share"></button>
  22188.            <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
  22189.            <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
  22190.  
  22191.            
  22192.            
  22193.            <div class="pswp__preloader">
  22194.              <div class="pswp__preloader__icn">
  22195.                <div class="pswp__preloader__cut">
  22196.                  <div class="pswp__preloader__donut"></div>
  22197.                </div>
  22198.              </div>
  22199.            </div>
  22200.          </div>
  22201.  
  22202.          <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
  22203.            <div class="pswp__share-tooltip"></div>
  22204.          </div>
  22205.  
  22206.          <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
  22207.          <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button>
  22208.  
  22209.          <div class="pswp__caption">
  22210.            <div class="pswp__caption__center"></div>
  22211.          </div>
  22212.        </div>
  22213.      </div>
  22214.      <div class="product-zoom--thumbnails" data-photoswipe-thumbs>
  22215.        <button
  22216.          class="gallery-navigation--scroll-button scroll-left"
  22217.          aria-label="Scroll thumbnails left"
  22218.          data-gallery-scroll-button
  22219.        >
  22220.          <svg
  22221.  aria-hidden="true"
  22222.  focusable="false"
  22223.  role="presentation"
  22224.  width="14"
  22225.  height="8"
  22226.  viewBox="0 0 14 8"
  22227.  fill="none"
  22228.  xmlns="http://www.w3.org/2000/svg"
  22229. >
  22230.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  22231.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  22232. </svg>
  22233.  
  22234.        </button>
  22235.        <button
  22236.          class="gallery-navigation--scroll-button scroll-right"
  22237.          aria-label="Scroll thumbnails right"
  22238.          data-gallery-scroll-button
  22239.        >
  22240.          <svg
  22241.  aria-hidden="true"
  22242.  focusable="false"
  22243.  role="presentation"
  22244.  width="14"
  22245.  height="8"
  22246.  viewBox="0 0 14 8"
  22247.  fill="none"
  22248.  xmlns="http://www.w3.org/2000/svg"
  22249. >
  22250.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  22251.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  22252. </svg>
  22253.  
  22254.        </button>
  22255.        <div class="product-zoom--thumb-scroller" data-photoswipe-thumb-scroller></div>
  22256.      </div>
  22257.    </div>
  22258.    
  22259.  
  22260.    
  22261.    
  22262.    
  22263.    
  22264.    
  22265.  
  22266.    
  22267.  
  22268.    
  22269.  
  22270.      <script>
  22271.        (
  22272.          function () {
  22273.            var classes = {
  22274.              block: 'pxu-lia-block',
  22275.              element: 'pxu-lia-element',
  22276.            };
  22277.  
  22278.            document
  22279.              .querySelectorAll('[type="application/pxs-animation-mapping+json"]')
  22280.              .forEach(function (mappingEl) {
  22281.                const section = mappingEl.parentNode;
  22282.                try {
  22283.                  const mapping = JSON.parse(mappingEl.innerHTML);
  22284.                  mapping.elements.forEach(function (elementSelector) {
  22285.                    section
  22286.                      .querySelectorAll(elementSelector)
  22287.                      .forEach(function (element) { element.classList.add(classes.element); });
  22288.                  });
  22289.  
  22290.                  mapping.blocks.forEach(function (blockSelector) {
  22291.                    section
  22292.                      .querySelectorAll(blockSelector)
  22293.                      .forEach(function (block) { block.classList.add(classes.block); });
  22294.                  });
  22295.                } catch (error) {
  22296.                  console.warn('Unable to parse animation mapping', mappingEl, error);
  22297.                }
  22298.            });
  22299.          }
  22300.        )()
  22301.      </script>
  22302.    
  22303.  
  22304.    <script
  22305.      src="//laptopparts.ca/cdn/shop/t/20/assets/empire.js?v=121528316695943026921712444022"
  22306.      data-scripts
  22307.      data-shopify-api-url="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/api.jquery-b0af070cfe3f5cf7c92f9e2a5da2665ee07ed2aad63bb408f8d6672f894a5996.js"
  22308.      data-shopify-countries="/services/javascripts/countries.js"
  22309.      data-shopify-common="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/shopify_common-33bb9d312118840468a53f36b59c62c1e8f2b7d1a0a77250db9e300441827470.js"
  22310.      data-shopify-cart="//laptopparts.ca/cdn/shop/t/20/assets/jquery.cart.js?66896"
  22311.      data-pxu-polyfills="//laptopparts.ca/cdn/shop/t/20/assets/polyfills.min.js?v=41774645620324957141712444022"
  22312.    ></script>
  22313.  
  22314.    
  22315.  
  22316.  
  22317.  
  22318.  
  22319.  
  22320.  
  22321.  
  22322.  
  22323.  
  22324.  
  22325.  
  22326.  
  22327.  
  22328.  
  22329. <script type="application/ld+json">
  22330.  {
  22331.    "@context": "http://schema.org",
  22332.    "@type": "WebSite",
  22333.    "name": "LaptopParts.ca",
  22334.    "url": "https://laptopparts.ca"
  22335.  }
  22336. </script>
  22337.  
  22338.  
  22339.    <script>
  22340.      (function () {
  22341.        function handleFirstTab(e) {
  22342.          if (e.keyCode === 9) { // the "I am a keyboard user" key
  22343.            document.body.classList.add('user-is-tabbing');
  22344.            window.removeEventListener('keydown', handleFirstTab);
  22345.          }
  22346.        }
  22347.        window.addEventListener('keydown', handleFirstTab);
  22348.      })();
  22349.    </script>
  22350.  
  22351.    
  22352.      <link href="//laptopparts.ca/cdn/shop/t/20/assets/ripple.css?v=100240391239311985871712444022" rel="stylesheet" type="text/css" media="all" />
  22353.    
  22354.  
  22355.    <script
  22356.      src="//laptopparts.ca/cdn/shop/t/20/assets/instantPage.min.js?v=75111080190164688561712444022"
  22357.      type="module"
  22358.      defer
  22359.    ></script>
  22360.    <script
  22361.      src="//clever-predictive-search.thesupportheroes.com/js/core/main.min.js?timestamp=1698326561&shop=laptoppartsatp.myshopify.com"
  22362.      defer
  22363.    ></script>
  22364. <!-- 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 -->
  22365.     <!-- Shopper Approved - layout/theme.liquid -->  
  22366.    <style>
  22367.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span{
  22368.        vertical-align: -1px;
  22369.      }
  22370.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span:last-child{
  22371.        vertical-align: -1px;
  22372.      }
  22373.      .star_container{
  22374.        height: 24px;
  22375.        margin-bottom: 5px;
  22376.      }
  22377.      .star_container .ind_cnt {
  22378.            display: inline;
  22379.            padding-left: 8px;
  22380.            font-size: 13px;
  22381.            vertical-align: 3px;
  22382.            text-align: center;
  22383.            width: 100%;
  22384.        }
  22385.      #product_just_stars .SA__rating_wrap, #product_just_stars .SA__total_reviews{
  22386.        display: inline !important;
  22387.    }
  22388.    #product_just_stars .SA__review_widget_item .SA__total_reviews a{
  22389.        font-size: 13px !important;
  22390.        vertical-align: 0px !important;
  22391.        /*border-right: 1px solid #000;
  22392.  padding-right: 10px;
  22393.  margin-right: 10px;*/
  22394.  text-decoration: underline;
  22395.    }
  22396.    </style>
  22397.    <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>
  22398.    <!-- END Shopper Approved - layout/theme.liquid -->
  22399.      <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>
  22400. <script type="text/javascript">window.Beacon('init', '4c7bc089-215e-4a80-9d06-25571d96425f')</script>
  22401.        <div id="shopify-block-AeXdFL3NiTloxRjRUY__14952540001915115444" class="shopify-block shopify-app-block">
  22402.  
  22403.  
  22404.  
  22405.  
  22406. <link id="upcart-stylesheet" rel="preload" href="https://cdn.shopify.com/extensions/6164864d-a0a4-43c5-a182-8fdf3f87b744/upcart-cart-drawer-81/assets/upcart-stylesheet.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
  22407.  
  22408.  
  22409.  
  22410. <script>
  22411.  
  22412.  function b64DecodeUnicode(str) {
  22413.    try {
  22414.        return decodeURIComponent(
  22415.        atob(str)
  22416.            .split('')
  22417.            .map(function (c) {
  22418.            return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
  22419.            })
  22420.            .join(''),
  22421.        );
  22422.    } catch {
  22423.        return str;
  22424.    }
  22425.  }
  22426. </script>
  22427.  
  22428.  
  22429. <script>
  22430. (function() {
  22431.    window.upcartSettings = {};
  22432.    window.upcartSettings.upcartSettings = {};
  22433.    window.upcartSettings.upcartEditorSettings = {};
  22434.    window.upcartSettings.stickyCartButtonEditorSettings = {};
  22435.  
  22436.    
  22437.    
  22438.    
  22439.  
  22440.    let val;
  22441.  
  22442.    val = b64DecodeUnicode("cmlnaHQ=");
  22443.    if (val === '') {
  22444.        val = b64DecodeUnicode("cmlnaHQ=");
  22445.    }
  22446.    window.upcartSettings.upcartSettings.cartPosition = val;
  22447.  
  22448.    val = b64DecodeUnicode("ZmFsc2U=");
  22449.    if (val === '') {
  22450.        val = b64DecodeUnicode("ZmFsc2U=");
  22451.    }
  22452.    val = JSON.parse(val);
  22453.    window.upcartSettings.upcartSettings.disableSticky = val;
  22454.  
  22455.    val = b64DecodeUnicode("dHJ1ZQ==");
  22456.    if (val === '') {
  22457.        val = b64DecodeUnicode("dHJ1ZQ==");
  22458.    }
  22459.    val = JSON.parse(val);
  22460.    window.upcartSettings.upcartSettings.openOnAddToCart = val;
  22461.  
  22462.    val = b64DecodeUnicode("ZmFsc2U=");
  22463.    if (val === '') {
  22464.        val = b64DecodeUnicode("ZmFsc2U=");
  22465.    }
  22466.    val = JSON.parse(val);
  22467.    window.upcartSettings.upcartSettings.redirectToCart = val;
  22468.  
  22469.    val = b64DecodeUnicode("dHJ1ZQ==");
  22470.    if (val === '') {
  22471.        val = b64DecodeUnicode("ZmFsc2U=");
  22472.    }
  22473.    val = JSON.parse(val);
  22474.    window.upcartSettings.upcartSettings.enableCartSkeletons = val;
  22475.  
  22476.    val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJZb3VyIFNob3BwaW5nIENhcnQiLCJjaGVja291dCI6IlNlY3VyZSBDaGVja291dCDigKIge3t0b3RhbF9wcmljZX19IiwiYWRkVGV4dCI6IkFkZCIsImVtcHR5Q2FydCI6IllvdXIgY2FydCBpcyBlbXB0eSIsImRpc2NvdW50U2F2aW5ncyI6IlNhdmUiLCJjb250aW51ZVNob3BwaW5nIjoiT3IgY29udGludWUgc2hvcHBpbmciLCJ0b3RhbFNhdmluZ3MiOiJEaXNjb3VudHMiLCJzdWJ0b3RhbCI6IlN1YnRvdGFsIn0=");
  22477.    if (val === '') {
  22478.        val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJDYXJ0IOKAoiB7e2NhcnRfcXVhbnRpdHl9fSIsImNoZWNrb3V0IjoiQ2hlY2tvdXQg4oCiIHt7dG90YWxfcHJpY2V9fSIsImFkZFRleHQiOiJBZGQiLCJlbXB0eUNhcnQiOiJZb3VyIGNhcnQgaXMgZW1wdHkiLCJkaXNjb3VudFNhdmluZ3MiOiJTYXZlIiwiY29udGludWVTaG9wcGluZyI6Ik9yIGNvbnRpbnVlIHNob3BwaW5nIiwidG90YWxTYXZpbmdzIjoiRGlzY291bnRzIiwic3VidG90YWwiOiJTdWJ0b3RhbCIsImJ1bmRsZUhpZGVTaW5ndWxhckl0ZW1UZXh0IjoiSGlkZSAxIGl0ZW0iLCJidW5kbGVTaG93U2luZ3VsYXJJdGVtVGV4dCI6IlNob3cgMSBpdGVtIiwiYnVuZGxlSGlkZU11bHRpcGxlSXRlbXNUZXh0IjoiSGlkZSB7TlVNQkVSX09GX0lURU1TfSBpdGVtcyIsImJ1bmRsZVNob3dNdWx0aXBsZUl0ZW1zVGV4dCI6IlNob3cge05VTUJFUl9PRl9JVEVNU30gaXRlbXMifQ==");
  22479.    }
  22480.    val = JSON.parse(val);
  22481.    window.upcartSettings.upcartSettings.translations = val;
  22482.  
  22483.    val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22484.    if (val === '') {
  22485.        val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22486.    }
  22487.    val = JSON.parse(val);
  22488.    window.upcartSettings.upcartSettings.htmlFields = val;
  22489.  
  22490.    val = b64DecodeUnicode("dHJ1ZQ==");
  22491.    if (val === '') {
  22492.        val = b64DecodeUnicode("dHJ1ZQ==");
  22493.    }
  22494.    val = JSON.parse(val);
  22495.    window.upcartSettings.upcartSettings.automaticDiscount = val;
  22496.  
  22497.    val = b64DecodeUnicode("ZmFsc2U=");
  22498.    if (val === '') {
  22499.        val = b64DecodeUnicode("ZmFsc2U=");
  22500.    }
  22501.    val = JSON.parse(val);
  22502.    window.upcartSettings.upcartSettings.basePriceForDiscount = val;
  22503.  
  22504.    val = b64DecodeUnicode("dHJ1ZQ==");
  22505.    if (val === '') {
  22506.        val = b64DecodeUnicode("ZmFsc2U=");
  22507.    }
  22508.    val = JSON.parse(val);
  22509.    window.upcartSettings.upcartSettings.hideSingleUnderscoredProperties = val;
  22510.  
  22511.    val = b64DecodeUnicode("ZmFsc2U=");
  22512.    if (val === '') {
  22513.        val = b64DecodeUnicode("ZmFsc2U=");
  22514.    }
  22515.    val = JSON.parse(val);
  22516.    window.upcartSettings.upcartSettings.showContinueShoppingButton = val;
  22517.  
  22518.    val = b64DecodeUnicode("ZmFsc2U=");
  22519.    if (val === '') {
  22520.        val = b64DecodeUnicode("ZmFsc2U=");
  22521.    }
  22522.    val = JSON.parse(val);
  22523.    window.upcartSettings.upcartSettings.ajaxRaceConditionPrevention = val;
  22524.  
  22525.    val = b64DecodeUnicode("ZmFsc2U=");
  22526.    if (val === '') {
  22527.        val = b64DecodeUnicode("ZmFsc2U=");
  22528.    }
  22529.    val = JSON.parse(val);
  22530.    window.upcartSettings.upcartSettings.htmlFieldForceReRender = val;
  22531.  
  22532.    val = b64DecodeUnicode("ZmFsc2U=");
  22533.    if (val === '') {
  22534.        val = b64DecodeUnicode("ZmFsc2U=");
  22535.    }
  22536.    val = JSON.parse(val);
  22537.    window.upcartSettings.upcartSettings.skipGoogleFonts = val;
  22538.  
  22539.    val = b64DecodeUnicode("ZmFsc2U=");
  22540.    if (val === '') {
  22541.        val = b64DecodeUnicode("ZmFsc2U=");
  22542.    }
  22543.    val = JSON.parse(val);
  22544.    window.upcartSettings.upcartSettings.overrideScrollLocking = val;
  22545.  
  22546.    val = b64DecodeUnicode("MTAw");
  22547.    if (val === '') {
  22548.        val = b64DecodeUnicode("MTAw");
  22549.    }
  22550.    window.upcartSettings.upcartSettings.trafficAllocationPercent = val;
  22551.  
  22552.    val = b64DecodeUnicode("dHJ1ZQ==");
  22553.    if (val === '') {
  22554.        val = b64DecodeUnicode("ZmFsc2U=");
  22555.    }
  22556.    val = JSON.parse(val);
  22557.    window.upcartSettings.upcartSettings.renderCartInShadowDom = val;
  22558.  
  22559.    val = b64DecodeUnicode("ZmFsc2U=");
  22560.    if (val === '') {
  22561.        val = b64DecodeUnicode("ZmFsc2U=");
  22562.    }
  22563.    val = JSON.parse(val);
  22564.    window.upcartSettings.upcartSettings.cartEventTracking = val;
  22565.  
  22566.    val = b64DecodeUnicode("bGluZQ==");
  22567.    if (val === '') {
  22568.        val = b64DecodeUnicode("bGluZQ==");
  22569.    }
  22570.    window.upcartSettings.upcartSettings.updateItemIdentifier = val;
  22571.  
  22572.    val = b64DecodeUnicode("Knt9");
  22573.    if (val === '') {
  22574.        val = b64DecodeUnicode("Knt9");
  22575.    }
  22576.    window.upcartSettings.upcartSettings.customCSS = val;
  22577.  
  22578.    val = b64DecodeUnicode("Knt9");
  22579.    if (val === '') {
  22580.        val = b64DecodeUnicode("Knt9");
  22581.    }
  22582.    window.upcartSettings.upcartSettings.customStickyCartCSS = val;
  22583.  
  22584.    val = b64DecodeUnicode("ZmFsc2U=");
  22585.    if (val === '') {
  22586.        val = b64DecodeUnicode("ZmFsc2U=");
  22587.    }
  22588.    val = JSON.parse(val);
  22589.    window.upcartSettings.upcartSettings.integrationZapietEnabled = val;
  22590.  
  22591.    val = b64DecodeUnicode("ZmFsc2U=");
  22592.    if (val === '') {
  22593.        val = b64DecodeUnicode("ZmFsc2U=");
  22594.    }
  22595.    val = JSON.parse(val);
  22596.    window.upcartSettings.upcartSettings.integrationYmqEnabled = val;
  22597.  
  22598.    val = b64DecodeUnicode("dHJ1ZQ==");
  22599.    if (val === '') {
  22600.        val = b64DecodeUnicode("dHJ1ZQ==");
  22601.    }
  22602.    val = JSON.parse(val);
  22603.    window.upcartSettings.upcartEditorSettings.cartIsEnabled = val;
  22604.  
  22605.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwYTlkMWMiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCJ9fQ==");
  22606.    if (val === '') {
  22607.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwMDAwMDAiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCIsImNhcnRXaWR0aCI6eyJkZXNrdG9wIjoiYmFzZSIsIm1vYmlsZSI6ImZ1bGwifX19");
  22608.    }
  22609.    val = JSON.parse(val);
  22610.    window.upcartSettings.upcartEditorSettings.settingsModule = val;
  22611.  
  22612.    val = b64DecodeUnicode("");
  22613.    if (val === '') {
  22614.        val = b64DecodeUnicode("IzJlYTgxOA==");
  22615.    }
  22616.    window.upcartSettings.upcartEditorSettings.designSettingsCartSavingsTextColor = val;
  22617.  
  22618.    val = b64DecodeUnicode("");
  22619.    if (val === '') {
  22620.        val = b64DecodeUnicode("YmFzZQ==");
  22621.    }
  22622.    window.upcartSettings.upcartEditorSettings.headerBorderBottom = val;
  22623.  
  22624.    val = b64DecodeUnicode("");
  22625.    if (val === '') {
  22626.        val = b64DecodeUnicode("YmFzZQ==");
  22627.    }
  22628.    window.upcartSettings.upcartEditorSettings.headerHeight = val;
  22629.  
  22630.    val = b64DecodeUnicode("");
  22631.    if (val === '') {
  22632.        val = b64DecodeUnicode("I2ZmZmZmZjAw");
  22633.    }
  22634.    window.upcartSettings.upcartEditorSettings.headerBackgroundColor = val;
  22635.  
  22636.    val = b64DecodeUnicode("");
  22637.    if (val === '') {
  22638.        val = b64DecodeUnicode("eyJ0eXBlIjoiaW5oZXJpdEhlYWRpbmdTdHlsZXMiLCJoZWFkaW5nTGV2ZWwiOiJoMiJ9");
  22639.    }
  22640.    val = JSON.parse(val);
  22641.    window.upcartSettings.upcartEditorSettings.headerTitleContent = val;
  22642.  
  22643.    val = b64DecodeUnicode("");
  22644.    if (val === '') {
  22645.        val = b64DecodeUnicode("c2lkZQ==");
  22646.    }
  22647.    window.upcartSettings.upcartEditorSettings.headerTitleAlignment = val;
  22648.  
  22649.    val = b64DecodeUnicode("");
  22650.    if (val === '') {
  22651.        val = b64DecodeUnicode("dGl0bGVfX2Nsb3NlQnV0dG9u");
  22652.    }
  22653.    window.upcartSettings.upcartEditorSettings.headerElementArrangement = val;
  22654.  
  22655.    val = b64DecodeUnicode("");
  22656.    if (val === '') {
  22657.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMDBjIiwib25Ib3ZlciI6IiMwMDAwMDAxNCJ9");
  22658.    }
  22659.    val = JSON.parse(val);
  22660.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBackgroundColor = val;
  22661.  
  22662.    val = b64DecodeUnicode("");
  22663.    if (val === '') {
  22664.        val = b64DecodeUnicode("eyJiYXNlIjoiIzYzNzM4MSIsIm9uSG92ZXIiOm51bGx9");
  22665.    }
  22666.    val = JSON.parse(val);
  22667.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconColor = val;
  22668.  
  22669.    val = b64DecodeUnicode("");
  22670.    if (val === '') {
  22671.        val = b64DecodeUnicode("c21hbGw=");
  22672.    }
  22673.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconSize = val;
  22674.  
  22675.    val = b64DecodeUnicode("");
  22676.    if (val === '') {
  22677.        val = b64DecodeUnicode("YmFzZQ==");
  22678.    }
  22679.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconStrokeWidth = val;
  22680.  
  22681.    val = b64DecodeUnicode("");
  22682.    if (val === '') {
  22683.        val = b64DecodeUnicode("bm9uZQ==");
  22684.    }
  22685.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderWidth = val;
  22686.  
  22687.    val = b64DecodeUnicode("");
  22688.    if (val === '') {
  22689.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMCIsIm9uSG92ZXIiOm51bGx9");
  22690.    }
  22691.    val = JSON.parse(val);
  22692.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderColor = val;
  22693.  
  22694.    val = b64DecodeUnicode("dHJ1ZQ==");
  22695.    if (val === '') {
  22696.        val = b64DecodeUnicode("ZmFsc2U=");
  22697.    }
  22698.    val = JSON.parse(val);
  22699.    window.upcartSettings.upcartEditorSettings.announcementModule = val;
  22700.  
  22701.    val = b64DecodeUnicode("PHA+PHN0cm9uZz4qKioqKiAgRlJFRSBTSElQUElORyAqKioqKjwvc3Ryb25nPjwvcD4K");
  22702.    if (val === '') {
  22703.        val = b64DecodeUnicode("PHA+WW91ciBwcm9kdWN0cyBhcmUgcmVzZXJ2ZWQgZm9yIDxiPntUSU1FUn08L2I+IG1pbnV0ZXMhPC9wPg==");
  22704.    }
  22705.    window.upcartSettings.upcartEditorSettings.announcementEditor = val;
  22706.  
  22707.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22708.    if (val === '') {
  22709.        val = b64DecodeUnicode("I0NERTBFMA==");
  22710.    }
  22711.    window.upcartSettings.upcartEditorSettings.announcementBackgroundColor = val;
  22712.  
  22713.    val = b64DecodeUnicode("dG9w");
  22714.    if (val === '') {
  22715.        val = b64DecodeUnicode("dG9w");
  22716.    }
  22717.    window.upcartSettings.upcartEditorSettings.announcementModulePosition = val;
  22718.  
  22719.    val = b64DecodeUnicode("IzEwOWMxYw==");
  22720.    if (val === '') {
  22721.        val = b64DecodeUnicode("I0M1RTZGRA==");
  22722.    }
  22723.    window.upcartSettings.upcartEditorSettings.announcementBorderColor = val;
  22724.  
  22725.    val = b64DecodeUnicode("MA==");
  22726.    if (val === '') {
  22727.        val = b64DecodeUnicode("MDA6MDA=");
  22728.    }
  22729.    window.upcartSettings.upcartEditorSettings.announcementTimer = val;
  22730.  
  22731.    val = b64DecodeUnicode("");
  22732.    if (val === '') {
  22733.        val = b64DecodeUnicode("YmFzZQ==");
  22734.    }
  22735.    window.upcartSettings.upcartEditorSettings.announcementHeight = val;
  22736.  
  22737.    val = b64DecodeUnicode("");
  22738.    if (val === '') {
  22739.        val = b64DecodeUnicode("MTU=");
  22740.    }
  22741.    window.upcartSettings.upcartEditorSettings.announcementTextFontSizePx = val;
  22742.  
  22743.    val = b64DecodeUnicode("ZmFsc2U=");
  22744.    if (val === '') {
  22745.        val = b64DecodeUnicode("ZmFsc2U=");
  22746.    }
  22747.    val = JSON.parse(val);
  22748.    window.upcartSettings.upcartEditorSettings.rewardsModule = val;
  22749.  
  22750.    val = b64DecodeUnicode("I0UyRTJFMg==");
  22751.    if (val === '') {
  22752.        val = b64DecodeUnicode("I0UyRTJFMg==");
  22753.    }
  22754.    window.upcartSettings.upcartEditorSettings.rewardsBarBackgroundColor = val;
  22755.  
  22756.    val = b64DecodeUnicode("IzkzRDNGRg==");
  22757.    if (val === '') {
  22758.        val = b64DecodeUnicode("IzkzRDNGRg==");
  22759.    }
  22760.    window.upcartSettings.upcartEditorSettings.rewardsBarForegroundColor = val;
  22761.  
  22762.    val = b64DecodeUnicode("Y2FydFRvdGFs");
  22763.    if (val === '') {
  22764.        val = b64DecodeUnicode("Y2FydFRvdGFs");
  22765.    }
  22766.    window.upcartSettings.upcartEditorSettings.rewardsBasis = val;
  22767.  
  22768.    val = b64DecodeUnicode("ZmFsc2U=");
  22769.    if (val === '') {
  22770.        val = b64DecodeUnicode("ZmFsc2U=");
  22771.    }
  22772.    val = JSON.parse(val);
  22773.    window.upcartSettings.upcartEditorSettings.rewardsProductLinkVisible = val;
  22774.  
  22775.    val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22776.    if (val === '') {
  22777.        val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22778.    }
  22779.    window.upcartSettings.upcartEditorSettings.rewardsTargetType = val;
  22780.  
  22781.    val = b64DecodeUnicode("MTI1");
  22782.    if (val === '') {
  22783.        val = b64DecodeUnicode("MTI1");
  22784.    }
  22785.    window.upcartSettings.upcartEditorSettings.rewardsMinAmount = val;
  22786.  
  22787.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22788.    if (val === '') {
  22789.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22790.    }
  22791.    window.upcartSettings.upcartEditorSettings.rewardsEditor = val;
  22792.  
  22793.    val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22794.    if (val === '') {
  22795.        val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22796.    }
  22797.    window.upcartSettings.upcartEditorSettings.rewardsEditorAfterText = val;
  22798.  
  22799.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22800.    if (val === '') {
  22801.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22802.    }
  22803.    window.upcartSettings.upcartEditorSettings.rewardsEditorForItemCount = val;
  22804.  
  22805.    val = b64DecodeUnicode("NQ==");
  22806.    if (val === '') {
  22807.        val = b64DecodeUnicode("NQ==");
  22808.    }
  22809.    window.upcartSettings.upcartEditorSettings.rewardsItemCount = val;
  22810.  
  22811.    val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22812.    if (val === '') {
  22813.        val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22814.    }
  22815.    val = JSON.parse(val);
  22816.    window.upcartSettings.upcartEditorSettings.rewardsTiers = val;
  22817.  
  22818.    val = b64DecodeUnicode("W10=");
  22819.    if (val === '') {
  22820.        val = b64DecodeUnicode("W10=");
  22821.    }
  22822.    val = JSON.parse(val);
  22823.    window.upcartSettings.upcartEditorSettings.rewardsTierProducts = val;
  22824.  
  22825.    val = b64DecodeUnicode("ZmFsc2U=");
  22826.    if (val === '') {
  22827.        val = b64DecodeUnicode("ZmFsc2U=");
  22828.    }
  22829.    val = JSON.parse(val);
  22830.    window.upcartSettings.upcartEditorSettings.rewardsShowIconWithSingleTier = val;
  22831.  
  22832.    val = b64DecodeUnicode("dHJ1ZQ==");
  22833.    if (val === '') {
  22834.        val = b64DecodeUnicode("ZmFsc2U=");
  22835.    }
  22836.    val = JSON.parse(val);
  22837.    window.upcartSettings.upcartEditorSettings.rewardsShowOnEmptyCart = val;
  22838.  
  22839.    val = b64DecodeUnicode("ZmFsc2U=");
  22840.    if (val === '') {
  22841.        val = b64DecodeUnicode("ZmFsc2U=");
  22842.    }
  22843.    val = JSON.parse(val);
  22844.    window.upcartSettings.upcartEditorSettings.recommendationsModule = val;
  22845.  
  22846.    val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22847.    if (val === '') {
  22848.        val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22849.    }
  22850.    window.upcartSettings.upcartEditorSettings.recommendationsHeaderText = val;
  22851.  
  22852.    val = b64DecodeUnicode("ZmFsc2U=");
  22853.    if (val === '') {
  22854.        val = b64DecodeUnicode("ZmFsc2U=");
  22855.    }
  22856.    val = JSON.parse(val);
  22857.    window.upcartSettings.upcartEditorSettings.recommendationsEnableShopNowButton = val;
  22858.  
  22859.    val = b64DecodeUnicode("U2hvcCBOb3c=");
  22860.    if (val === '') {
  22861.        val = b64DecodeUnicode("U2hvcCBOb3c=");
  22862.    }
  22863.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonText = val;
  22864.  
  22865.    val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22866.    if (val === '') {
  22867.        val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22868.    }
  22869.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonURL = val;
  22870.  
  22871.    val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22872.    if (val === '') {
  22873.        val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22874.    }
  22875.    val = JSON.parse(val);
  22876.    window.upcartSettings.upcartEditorSettings.recommendationItems = val;
  22877.  
  22878.    val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22879.    if (val === '') {
  22880.        val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22881.    }
  22882.    window.upcartSettings.upcartEditorSettings.recommendationsProductRecommendationsHeaderText = val;
  22883.  
  22884.    val = b64DecodeUnicode("Mw==");
  22885.    if (val === '') {
  22886.        val = b64DecodeUnicode("Mw==");
  22887.    }
  22888.    window.upcartSettings.upcartEditorSettings.recommendationsMaxRecommendationsToShow = val;
  22889.  
  22890.    val = b64DecodeUnicode("dmVydGljYWw=");
  22891.    if (val === '') {
  22892.        val = b64DecodeUnicode("dmVydGljYWw=");
  22893.    }
  22894.    window.upcartSettings.upcartEditorSettings.recommendationsDirection = val;
  22895.  
  22896.    val = b64DecodeUnicode("dHJ1ZQ==");
  22897.    if (val === '') {
  22898.        val = b64DecodeUnicode("ZmFsc2U=");
  22899.    }
  22900.    val = JSON.parse(val);
  22901.    window.upcartSettings.upcartEditorSettings.upsellsModule = val;
  22902.  
  22903.    val = b64DecodeUnicode("dmVydGljYWw=");
  22904.    if (val === '') {
  22905.        val = b64DecodeUnicode("aG9yaXpvbnRhbA==");
  22906.    }
  22907.    window.upcartSettings.upcartEditorSettings.upsellsDirection = val;
  22908.  
  22909.    val = b64DecodeUnicode("PHA+PC9wPgo=");
  22910.    if (val === '') {
  22911.        val = b64DecodeUnicode("WW91J2xsIGxvdmUgdGhlc2U=");
  22912.    }
  22913.    window.upcartSettings.upcartEditorSettings.upsellsTitle = val;
  22914.  
  22915.    val = b64DecodeUnicode("Mw==");
  22916.    if (val === '') {
  22917.        val = b64DecodeUnicode("MTA=");
  22918.    }
  22919.    window.upcartSettings.upcartEditorSettings.maximumUpsellsToShow = val;
  22920.  
  22921.    val = b64DecodeUnicode("dHJ1ZQ==");
  22922.    if (val === '') {
  22923.        val = b64DecodeUnicode("ZmFsc2U=");
  22924.    }
  22925.    val = JSON.parse(val);
  22926.    window.upcartSettings.upcartEditorSettings.upsellsShouldLimit = val;
  22927.  
  22928.    val = b64DecodeUnicode("ZmFsc2U=");
  22929.    if (val === '') {
  22930.        val = b64DecodeUnicode("ZmFsc2U=");
  22931.    }
  22932.    val = JSON.parse(val);
  22933.    window.upcartSettings.upcartEditorSettings.upsellsTrigger = val;
  22934.  
  22935.    val = b64DecodeUnicode("ZmFsc2U=");
  22936.    if (val === '') {
  22937.        val = b64DecodeUnicode("ZmFsc2U=");
  22938.    }
  22939.    val = JSON.parse(val);
  22940.    window.upcartSettings.upcartEditorSettings.showUpsellItemsAlreadyInCart = val;
  22941.  
  22942.    val = b64DecodeUnicode("W3siaWQiOiIzNDM4MyIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzY1NzA2MjE1OTk4MzEiLCJzaG9ydElkIjoiNjU3MDYyMTU5OTgzMSIsInZhcmlhbnRzIjpbIjM5MzMzODE4MjY5NzgzIl0sImhhbmRsZSI6IjNtLXN0aWNrZXItZG91YmxlLXNpZGVkLXRhcGUtYWRoZXNpdmUtZm9yLWNlbGwtcGhvbmUtY29tcHV0ZXItcmVwYWlyIiwidGl0bGUiOiJOZXcgQmxhY2sgM00gU3RpY2tlciBEb3VibGUgU2lkZWQgVGFwZSBBZGhlc2l2ZSBGb3IgQ2VsbCBQaG9uZSAmIENvbXB1dGVyIFJlcGFpcnMiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvdGFwZTIuanBnP3Y9MTcyODkyMzA3MCJ9XX19LHsiaWQiOiI1NzA5NCIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzczMjM4ODQwMjc5OTEiLCJzaG9ydElkIjoiNzMyMzg4NDAyNzk5MSIsInZhcmlhbnRzIjpbIjQxMzYwNTgyOTM0NjE1Il0sImhhbmRsZSI6IjExNS1pbi0xLW1hZ25ldGljLXByZWNpc2lvbi1zY3Jld2RyaXZlci1zZXQtcGMtcGhvbmUtZWxlY3Ryb25pY3MtcmVwYWlyLXRvb2wta2l0IiwidGl0bGUiOiJOZXcgTGFwdG9wIFJlcGFpciBUb29sIGtpdCAxMTUgaW4gMSBNYWduZXRpYyBQcmVjaXNpb24gU2NyZXdkcml2ZXIgU2V0IiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL3MtbDEwMDBfNTE2ZTAyNjQtZGNmMy00NTdmLWI1MmItYjgwNzZmMTQwMGIyLndlYnA/dj0xNzMxNDIwNTQ4In1dfX0seyJpZCI6IiIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzY3NzgxMTA4Njk1OTEiLCJzaG9ydElkIjoiNjc3ODExMDg2OTU5MSIsInZhcmlhbnRzIjpbIjM5ODI5OTUxODQwMzQzIl0sImhhbmRsZSI6Im50MDN1MTg1bi0wNjRnLTMwd2gtbGlxdWlkYXRpb24tc2FsZS1uZXctbmV0YWMtNjRnYi11c2ItZmxhc2gtZHJpdmUtdXNiLTMtMC11MTg1IiwidGl0bGUiOiJMSVFVSURBVElPTiBTQUxFIE5ldyBOZXRhYyA2NEdCIFVTQiBGbGFzaCBEcml2ZSBVU0IgMy4wIFUxODUgTlQwM1UxODVOLTA2NEctMzBXSCIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9udDAzdTE4NW4tMDY0Zy0zMHdoLmpwZz92PTE3Mjc5NTc0NTAifV19fV0=");
  22943.    if (val === '') {
  22944.        val = b64DecodeUnicode("W3siX2lkIjoiIiwidHJpZ2dlciI6bnVsbCwidXBzZWxsIjpudWxsfV0=");
  22945.    }
  22946.    val = JSON.parse(val);
  22947.    window.upcartSettings.upcartEditorSettings.upsellsItems = val;
  22948.  
  22949.    val = b64DecodeUnicode("Ym90dG9t");
  22950.    if (val === '') {
  22951.        val = b64DecodeUnicode("Ym90dG9t");
  22952.    }
  22953.    window.upcartSettings.upcartEditorSettings.upsellsModulePosition = val;
  22954.  
  22955.    val = b64DecodeUnicode("ZmFsc2U=");
  22956.    if (val === '') {
  22957.        val = b64DecodeUnicode("ZmFsc2U=");
  22958.    }
  22959.    val = JSON.parse(val);
  22960.    window.upcartSettings.upcartEditorSettings.recommendedUpsells = val;
  22961.  
  22962.    val = b64DecodeUnicode("ZmFsc2U=");
  22963.    if (val === '') {
  22964.        val = b64DecodeUnicode("ZmFsc2U=");
  22965.    }
  22966.    val = JSON.parse(val);
  22967.    window.upcartSettings.upcartEditorSettings.smartVariantMatching = val;
  22968.  
  22969.    val = b64DecodeUnicode("cmVsYXRlZA==");
  22970.    if (val === '') {
  22971.        val = b64DecodeUnicode("cmVsYXRlZA==");
  22972.    }
  22973.    window.upcartSettings.upcartEditorSettings.upsellRecommendationIntent = val;
  22974.  
  22975.    val = b64DecodeUnicode("dHJ1ZQ==");
  22976.    if (val === '') {
  22977.        val = b64DecodeUnicode("ZmFsc2U=");
  22978.    }
  22979.    val = JSON.parse(val);
  22980.    window.upcartSettings.upcartEditorSettings.addonsModule = val;
  22981.  
  22982.    val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjp0cnVlLCJwcm9kdWN0SGFuZGxlIjoic2hpcHBpbmctcHJvdGVjdGlvbiIsImRlZmF1bHRCZWhhdmlvciI6dHJ1ZSwidGllcnMiOlt7Im1heENhcnRUb3RhbCI6OTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjIuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk0NDc5MSJ9LHsibWF4Q2FydFRvdGFsIjoxOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjMuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk3NzU1OSJ9LHsibWF4Q2FydFRvdGFsIjoyOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjQuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDAxMDMyNyJ9LHsibWF4Q2FydFRvdGFsIjozOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjUuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDA0MzA5NSJ9LHsibWF4Q2FydFRvdGFsIjpudWxsLCJ0ZW1wb3JhcnlEYXRhRm9yQWRtaW4iOnsidmFyaWFudFByaWNlIjo2Ljk5fSwidmFyaWFudElkIjoiNDEzNjU2MDAwNzU4NjMifV0sInVzZVByZURpc2NvdW50ZWRUb3RhbCI6dHJ1ZX0sInByb2R1Y3RBZGRvbiI6eyJhY3RpdmUiOmZhbHNlLCJwcm9kdWN0SGFuZGxlIjpudWxsLCJwcm9kdWN0IjpudWxsLCJkZWZhdWx0QmVoYXZpb3IiOmZhbHNlfX0=");
  22983.    if (val === '') {
  22984.        val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjpmYWxzZSwicHJvZHVjdEhhbmRsZSI6bnVsbCwiZGVmYXVsdEJlaGF2aW9yIjpmYWxzZSwidGllcnMiOltdLCJ1c2VQcmVEaXNjb3VudGVkVG90YWwiOmZhbHNlfSwicHJvZHVjdEFkZG9uIjp7ImFjdGl2ZSI6ZmFsc2UsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGwsImRlZmF1bHRCZWhhdmlvciI6ZmFsc2V9fQ==");
  22985.    }
  22986.    val = JSON.parse(val);
  22987.    window.upcartSettings.upcartEditorSettings.addonsField = val;
  22988.  
  22989.    val = b64DecodeUnicode("dHJ1ZQ==");
  22990.    if (val === '') {
  22991.        val = b64DecodeUnicode("ZmFsc2U=");
  22992.    }
  22993.    val = JSON.parse(val);
  22994.    window.upcartSettings.upcartEditorSettings.addonsShouldBeCounted = val;
  22995.  
  22996.    val = b64DecodeUnicode("dHJ1ZQ==");
  22997.    if (val === '') {
  22998.        val = b64DecodeUnicode("ZmFsc2U=");
  22999.    }
  23000.    val = JSON.parse(val);
  23001.    window.upcartSettings.upcartEditorSettings.notesModule = val;
  23002.  
  23003.    val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zIC0gTGFwdG9wIG1vZGVsIE51bWJlcjwvcD4K");
  23004.    if (val === '') {
  23005.        val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zPC9wPg==");
  23006.    }
  23007.    window.upcartSettings.upcartEditorSettings.notesTitle = val;
  23008.  
  23009.    val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  23010.    if (val === '') {
  23011.        val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  23012.    }
  23013.    window.upcartSettings.upcartEditorSettings.notesPlaceholder = val;
  23014.  
  23015.    val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  23016.    if (val === '') {
  23017.        val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  23018.    }
  23019.    window.upcartSettings.upcartEditorSettings.notesPlacement = val;
  23020.  
  23021.    val = b64DecodeUnicode("dHJ1ZQ==");
  23022.    if (val === '') {
  23023.        val = b64DecodeUnicode("ZmFsc2U=");
  23024.    }
  23025.    val = JSON.parse(val);
  23026.    window.upcartSettings.upcartEditorSettings.trustBadgesModule = val;
  23027.  
  23028.    val = b64DecodeUnicode("eyJ1cmwiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL1VwY2FydF9UcnVzdF9CYWRnZV8xNzMyMzA5MzM1OTQyLmpwZz92PTE3MzIzMDkzMzgiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  23029.    if (val === '') {
  23030.        val = b64DecodeUnicode("eyJ1cmwiOiIiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  23031.    }
  23032.    val = JSON.parse(val);
  23033.    window.upcartSettings.upcartEditorSettings.trustBadges = val;
  23034.  
  23035.    val = b64DecodeUnicode("dHJ1ZQ==");
  23036.    if (val === '') {
  23037.        val = b64DecodeUnicode("ZmFsc2U=");
  23038.    }
  23039.    val = JSON.parse(val);
  23040.    window.upcartSettings.upcartEditorSettings.discountCodeModule = val;
  23041.  
  23042.    val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  23043.    if (val === '') {
  23044.        val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  23045.    }
  23046.    window.upcartSettings.upcartEditorSettings.discountCodePlaceholder = val;
  23047.  
  23048.    val = b64DecodeUnicode("QXBwbHk=");
  23049.    if (val === '') {
  23050.        val = b64DecodeUnicode("QXBwbHk=");
  23051.    }
  23052.    window.upcartSettings.upcartEditorSettings.discountCodeButtonText = val;
  23053.  
  23054.    val = b64DecodeUnicode("ZmFsc2U=");
  23055.    if (val === '') {
  23056.        val = b64DecodeUnicode("ZmFsc2U=");
  23057.    }
  23058.    val = JSON.parse(val);
  23059.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesModule = val;
  23060.  
  23061.    val = b64DecodeUnicode("ZmFsc2U=");
  23062.    if (val === '') {
  23063.        val = b64DecodeUnicode("ZmFsc2U=");
  23064.    }
  23065.    val = JSON.parse(val);
  23066.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesPreventDowngrades = val;
  23067.  
  23068.    val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  23069.    if (val === '') {
  23070.        val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  23071.    }
  23072.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesButtonText = val;
  23073.  
  23074.    val = b64DecodeUnicode("ZmFsc2U=");
  23075.    if (val === '') {
  23076.        val = b64DecodeUnicode("ZmFsc2U=");
  23077.    }
  23078.    val = JSON.parse(val);
  23079.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsTextOverride = val;
  23080.  
  23081.    val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  23082.    if (val === '') {
  23083.        val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  23084.    }
  23085.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsText = val;
  23086.  
  23087.    val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  23088.    if (val === '') {
  23089.        val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  23090.    }
  23091.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOneTimePurchaseText = val;
  23092.  
  23093.    val = b64DecodeUnicode("dHJ1ZQ==");
  23094.    if (val === '') {
  23095.        val = b64DecodeUnicode("ZmFsc2U=");
  23096.    }
  23097.    val = JSON.parse(val);
  23098.    window.upcartSettings.upcartEditorSettings.expressPayModule = val;
  23099.  
  23100.    val = b64DecodeUnicode("W10=");
  23101.    if (val === '') {
  23102.        val = b64DecodeUnicode("W10=");
  23103.    }
  23104.    val = JSON.parse(val);
  23105.    window.upcartSettings.upcartEditorSettings.expressPayEnabledGateways = val;
  23106.  
  23107.    val = b64DecodeUnicode("MQ==");
  23108.    if (val === '') {
  23109.        val = b64DecodeUnicode("MQ==");
  23110.    }
  23111.    window.upcartSettings.upcartEditorSettings.expressPayVersion = val;
  23112.  
  23113.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  23114.    if (val === '') {
  23115.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  23116.    }
  23117.    val = JSON.parse(val);
  23118.    window.upcartSettings.upcartEditorSettings.expressPayAcceleratedCheckoutStyles = val;
  23119.  
  23120.    val = b64DecodeUnicode("dHJ1ZQ==");
  23121.    if (val === '') {
  23122.        val = b64DecodeUnicode("dHJ1ZQ==");
  23123.    }
  23124.    val = JSON.parse(val);
  23125.    window.upcartSettings.upcartEditorSettings.expressPayHideBuyerConsent = val;
  23126.  
  23127.    val = b64DecodeUnicode("ZmFsc2U=");
  23128.    if (val === '') {
  23129.        val = b64DecodeUnicode("ZmFsc2U=");
  23130.    }
  23131.    val = JSON.parse(val);
  23132.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartButtonIsEnabled = val;
  23133.  
  23134.    val = b64DecodeUnicode("IzQzYmUwYQ==");
  23135.    if (val === '') {
  23136.        val = b64DecodeUnicode("IzAwMDAwMA==");
  23137.    }
  23138.    window.upcartSettings.stickyCartButtonEditorSettings.backgroundColor = val;
  23139.  
  23140.    val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23141.    if (val === '') {
  23142.        val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23143.    }
  23144.    window.upcartSettings.stickyCartButtonEditorSettings.deviceSettings = val;
  23145.  
  23146.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23147.    if (val === '') {
  23148.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23149.    }
  23150.    window.upcartSettings.stickyCartButtonEditorSettings.iconColor = val;
  23151.  
  23152.    val = b64DecodeUnicode("c3RhbmRhcmRDYXJ0");
  23153.    if (val === '') {
  23154.        val = b64DecodeUnicode("c3F1YXJlQmFn");
  23155.    }
  23156.    window.upcartSettings.stickyCartButtonEditorSettings.iconStyle = val;
  23157.  
  23158.    val = b64DecodeUnicode("I2U0MjYyNg==");
  23159.    if (val === '') {
  23160.        val = b64DecodeUnicode("I2U0MjYyNg==");
  23161.    }
  23162.    window.upcartSettings.stickyCartButtonEditorSettings.quantityBackgroundColor = val;
  23163.  
  23164.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23165.    if (val === '') {
  23166.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23167.    }
  23168.    window.upcartSettings.stickyCartButtonEditorSettings.quantityTextColor = val;
  23169.  
  23170.    val = b64DecodeUnicode("Y2VudGVyUmlnaHQ=");
  23171.    if (val === '') {
  23172.        val = b64DecodeUnicode("Ym90dG9tUmlnaHQ=");
  23173.    }
  23174.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartPosition = val;
  23175.  
  23176. })();
  23177. </script>
  23178.  
  23179.  
  23180.  
  23181.  
  23182.  <div id="upcart-additional-checkout-buttons" style="position: absolute !important; margin-left: -9999px !important; display: block !important;" class="additional-checkout-buttons">
  23183.    
  23184.    <div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
  23185.    <div class="upcart-additional-checkout-buttons-svgs">
  23186.  
  23187.      
  23188.  
  23189.      
  23190.  
  23191.      
  23192.  
  23193.      
  23194.  
  23195.      
  23196.  
  23197.      
  23198.    </div>
  23199.  </div>
  23200.  
  23201.  
  23202.  
  23203.  
  23204. <script>
  23205.  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};
  23206.  window.upcartMoneyFormat = "${{amount}}";
  23207.  window.upcartStorefrontPublicAccessToken = '53e72a50badb7e504187b4c7431817bf' || undefined;
  23208.  window.upcartClientLocalizationCountry = {
  23209.    isoCode: 'CA',
  23210.    currency: 'CurrencyDrop',
  23211.    name: 'Canada'
  23212.  };
  23213.  window.upcartMyShopifyDomain = 'laptoppartsatp.myshopify.com';
  23214. </script>
  23215.  
  23216. <script>
  23217.  window.upcartPreloadedCart.items = window.upcartPreloadedCart.items.map((line) => {
  23218.    
  23219.  
  23220.    return line;
  23221.  });
  23222. </script>
  23223.  
  23224. <div id="upCart"></div>
  23225. <div id="upCartStickyButton"></div>
  23226.  
  23227. <style id="upCart-customCSS">
  23228.  *{}
  23229. </style>
  23230.  
  23231.  
  23232. </div><div id="shopify-block-AN2k5QkMvdUJ0UDFZd__8171265131012698934" class="shopify-block shopify-app-block">
  23233.  
  23234. <input class="OrichiAppEmbed" type="hidden">
  23235. <input
  23236.  class="OrichiCustomerTags"
  23237.  type="hidden"
  23238.  value="" />
  23239. <input
  23240.  class="OrichiCustomerEmail"
  23241.  type="hidden"
  23242.  value="" />
  23243.  
  23244.  
  23245.  
  23246.  
  23247.  <script async src="https://cdn.shopify.com/extensions/4acc9011-492c-484b-bc2f-04bf497830e8/oc-quantity-breaks-limit-296/assets/front.min.js"></script>
  23248.  
  23249.  
  23250. <script>
  23251.  var orichiDiscount = {
  23252.    productJSPath: 'https://cdn.shopify.com/extensions/4acc9011-492c-484b-bc2f-04bf497830e8/oc-quantity-breaks-limit-296/assets/productpage.min.js',
  23253.    cartJSPath: 'https://cdn.shopify.com/extensions/4acc9011-492c-484b-bc2f-04bf497830e8/oc-quantity-breaks-limit-296/assets/cartajax.min.js'
  23254.  }
  23255. </script>
  23256.  
  23257.  
  23258.  
  23259. <script>
  23260.  
  23261.    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"}};
  23262.  
  23263. </script>
  23264.  
  23265. </div></body>
  23266. </html>
  23267.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda