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

Source: https://laptopparts.ca

  1. <!doctype html>
  2. <html class="no-js no-touch" lang="en">
  3.  <head>
  4. <!-- Start of Booster Apps Seo-0.1-->
  5. <title>Genuine Laptop Parts Canada </title><meta name="google-site-verification" content="CrDzWSvAeMDFWNGBM_-BRbrjFQyoT_40-GZWV79wfbw" />
  6. <meta name="description" content="Laptop Parts Canada Acer Parts Lenovo Parts HP laptop Parts Dell Parts Asus Parts MacBook Parts Alienware Parts Toshiba Parts Razer Parts Laptop Charger Laptop Battery Laptop AC Adapter Laptop Screen" /><script type="application/ld+json">
  7.  {
  8.    "@context": "https://schema.org",
  9.    "@type": "Organization",
  10.    "name": "LaptopParts.ca",
  11.    "url": "https://laptopparts.ca",
  12.    "description": "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!","image": "https://laptopparts.ca/cdn/shop/t/20/assets/logo.png?128523",
  13.      "logo": "https://laptopparts.ca/cdn/shop/t/20/assets/logo.png?128523","sameAs": [""]
  14.  }
  15. </script><script type="application/ld+json">
  16.  {
  17.    "@context": "https://schema.org",
  18.    "@type": "WebSite",
  19.    "name": "LaptopParts.ca",
  20.    "url": "https://laptopparts.ca",
  21.    "potentialAction": {
  22.      "@type": "SearchAction",
  23.      "query-input": "required name=query",
  24.      "target": "https://laptopparts.ca/search?q={query}"
  25.    }
  26.  }
  27. </script>
  28. <!-- end of Booster Apps SEO -->
  29.    
  30.        <!-- Google tag (gtag.js) -->
  31.    <script async src="https://www.googletagmanager.com/gtag/js?id=AW-977549716"></script>
  32.    <script>
  33.      window.dataLayer = window.dataLayer || [];
  34.      function gtag(){dataLayer.push(arguments);}
  35.      gtag('js', new Date());
  36.  
  37.      gtag('config', 'AW-977549716');
  38.    </script>
  39.    <!-- Google Tag Manager -->
  40.    <script>
  41.      (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  42.      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  43.      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  44.      'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  45.      })(window,document,'script','dataLayer','GTM-WDHHF23');
  46.    </script>
  47.    <!-- End Google Tag Manager -->
  48.    <script>  
  49.  /**
  50.  * Author: shipon islam
  51.  * Version: 1.1.0
  52.  * Last Update: 17 Sep 2023
  53.  */
  54.  
  55.  (function() {
  56.      class GTM_DataLayer {
  57.        constructor() {
  58.          window.dataLayer = window.dataLayer || [];
  59.          this.formattedItemId = true;
  60.  
  61.          this.miniCartButtonSelector = [
  62.            // 'a[href="/cart"]',
  63.          ];
  64.  
  65.          this.beginCheckoutbuttons = [
  66.            'button[name="checkout"]',
  67.            '.additional-checkout-buttons',
  68.          ];
  69.  
  70.          this.shopifyDeirectPaymentButtonLink = [
  71.            '.shopify-payment-button'
  72.          ]
  73.  
  74.          this.isAjaxCartIncrementDecrement = true;
  75.  
  76.          this.addToWishListSelectors = {
  77.            'addWishListIcon': '',
  78.            'gridItemSelector': '',
  79.            'productLinkSelector': ''
  80.          }
  81.  
  82.          this.quickViewSelector = {
  83.            'quickViewElement': '',
  84.            'gridItemSelector': '',
  85.            'productLinkSelector': ''
  86.          }
  87.          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}
  88.          this.countryCode = "CA";
  89.          this.collectData();          
  90.        }
  91.  
  92.        updateCart() {
  93.          fetch("/cart.js")
  94.          .then((response) => response.json())
  95.          .then((data) => {
  96.            this.cart = data;
  97.          });
  98.        }
  99.  
  100.        collectData() {
  101.            this.customerData();
  102.            this.ajaxRequestData();
  103.            this.miniCartData();
  104.            this.beginCheckoutData();
  105.  
  106.            
  107.  
  108.            
  109.  
  110.            
  111.            
  112.            this.addToWishListData();
  113.            this.quickViewData();
  114.            this.newsletterSignupData();
  115.        }
  116.  
  117.        //logged in customer data
  118.        customerData() {
  119.            const currentUser = {};
  120.            
  121.  
  122.            window.dataLayer = window.dataLayer || [];
  123.            dataLayer.push({
  124.              customer: currentUser
  125.            })
  126.        }
  127.  
  128.        // shipon_add_to_cart, shipon_remove_from_cart
  129.        ajaxRequestData() {
  130.          const self = this;
  131.          let originalFetch = window.fetch;
  132.          
  133.          window.fetch = function () {
  134.            return originalFetch.apply(this, arguments).then((response) => {
  135.              if (response.ok) {
  136.                let cloneResponse = response.clone();
  137.                // add to cart
  138.                if (arguments[0].includes("/cart/add.js") || arguments[0].includes("/cart/add")) {
  139.                  cloneResponse.text().then((text) => {
  140.                    let item = JSON.parse(text);
  141.                    self.singleCartItemDataLayer('shipon_add_to_cart', item);
  142.                    self.updateCart();
  143.                  });
  144.                }else if(arguments[0].includes("/cart/change")) {
  145.                   cloneResponse.text().then((text) => {
  146.                    let newCart = JSON.parse(text);
  147.                    let newCartItems = newCart.items;
  148.                    let oldCartItems = self.cart.items;
  149.  
  150.                    for(let i = 0; i < oldCartItems.length; i++) {
  151.                      let item = oldCartItems[i];
  152.                      let newItem = newCartItems.find(newItems => newItems.id === item.id);
  153.  
  154.  
  155.                      if(newItem) {
  156.  
  157.                        if(newItem.quantity > item.quantity) {
  158.                          // cart item increment
  159.                          let quantity = (newItem.quantity - item.quantity);
  160.                          let updatedItem = {...item, quantity}
  161.                          self.singleCartItemDataLayer('shipon_add_to_cart', updatedItem);
  162.                          self.updateCart();
  163.  
  164.                        }else if(newItem.quantity < item.quantity) {
  165.                          // cart item decrement
  166.                          let quantity = (item.quantity - newItem.quantity);
  167.                          let updatedItem = {...item, quantity}
  168.                          self.singleCartItemDataLayer('shipon_remove_from_cart', updatedItem);
  169.                          self.updateCart();
  170.                        }
  171.                        
  172.  
  173.                      }else {
  174.                        self.singleCartItemDataLayer('shipon_remove_from_cart', item);
  175.                        self.updateCart();
  176.                      }
  177.                    }
  178.                  });
  179.                }
  180.              }
  181.              return response;
  182.            });
  183.          }
  184.        }
  185.  
  186.        // shipon_view_cart
  187.        miniCartData() {
  188.          if(this.miniCartButtonSelector.length) {
  189.            let self = this;
  190.            this.miniCartButtonSelector.forEach((selector) => {
  191.              let miniCartButton = document.querySelector(selector);
  192.              if(miniCartButton) {
  193.                miniCartButton.addEventListener('click', () => {
  194.                  self.cartItemsDataLayer('shipon_view_cart', self.cart);
  195.                });
  196.              }
  197.            });
  198.          }
  199.        }
  200.  
  201.        // shipon_begin_checkout
  202.        beginCheckoutData() {
  203.          let self = this;
  204.          document.addEventListener('click', () => {
  205.            let targetElement = event.target.closest(self.beginCheckoutbuttons.join(', '));
  206.            if(targetElement) {
  207.              self.cartItemsDataLayer('shipon_begin_checkout', self.cart);
  208.            }
  209.          });
  210.        }
  211.  
  212.        // shipon_view_cart, shipon_add_to_cart, shipon_remove_from_cart
  213.        viewCartPageData() {
  214.          
  215.          this.cartItemsDataLayer('shipon_view_cart', this.cart);
  216.  
  217.          //if cart quantity chagne reload page
  218.          if(!this.isAjaxCartIncrementDecrement) {
  219.            const self = this;
  220.            document.addEventListener('pointerdown', (event) => {
  221.              const target = event.target.closest('a[href*="/cart/change?"]');
  222.              if(target) {
  223.                const linkUrl = target.getAttribute('href');
  224.                const queryString = linkUrl.split("?")[1];
  225.                const urlParams = new URLSearchParams(queryString);
  226.                const newQuantity = urlParams.get("quantity");
  227.                const line = urlParams.get("line");
  228.                const cart_id = urlParams.get("id");
  229.        
  230.                
  231.                if(newQuantity && (line || cart_id)) {
  232.                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
  233.        
  234.                  let event = 'shipon_add_to_cart';
  235.                  if(newQuantity < item.quantity) {
  236.                    event = 'shipon_remove_from_cart';
  237.                  }
  238.        
  239.                  let quantity = Math.abs(newQuantity - item.quantity);
  240.                  item['quantity'] = quantity;
  241.        
  242.                  self.singleCartItemDataLayer(event, item);
  243.                }
  244.              }
  245.            });
  246.          }
  247.        }
  248.  
  249.        productSinglePage() {
  250.        
  251.        }
  252.  
  253.        collectionsPageData() {
  254.          var ecommerce = {
  255.            'items': [
  256.              
  257.              ]
  258.          };
  259.  
  260.          ecommerce['item_list_id'] = null
  261.          ecommerce['item_list_name'] = null
  262.  
  263.          this.cartItemsDataLayer('shipon_view_item_list', ecommerce);
  264.        }
  265.        
  266.        
  267.        // add to wishlist
  268.        addToWishListData() {
  269.          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
  270.            const self = this;
  271.            document.addEventListener('pointerdown', (event) => {
  272.              let target = event.target;
  273.              
  274.              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
  275.                let pageULR = window.location.href.replace(/\?.+/, '');
  276.                let requestURL = undefined;
  277.          
  278.                if(/\/products\/[^/]+$/.test(pageULR)) {
  279.                  requestURL = pageULR;
  280.                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
  281.                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
  282.                  if(itemElement) {
  283.                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
  284.                    if(linkElement) {
  285.                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  286.                      if(link && /\/products\/[^/]+$/.test(link)) {
  287.                        requestURL = link;
  288.                      }
  289.                    }
  290.                  }
  291.                }
  292.  
  293.                if(requestURL) {
  294.                  fetch(requestURL + '.json')
  295.                    .then(res => res.json())
  296.                    .then(result => {
  297.                      let data = result.product;                    
  298.                      if(data) {
  299.                        let dataLayerData = {
  300.                         product_id: data.id,
  301.                            variant_id: data.variants[0].id,
  302.                            product_title: data.title,
  303.                         quantity: 1,
  304.                         final_price: parseFloat(data.variants[0].price) * 100,
  305.                         total_discount: 0,
  306.                         product_type: data.product_type,
  307.                         vendor: data.vendor,
  308.                         variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  309.                         sku: data.variants[0].sku,
  310.                        }
  311.  
  312.                        self.singleCartItemDataLayer('shipon_add_to_wishlist', dataLayerData);
  313.                      }
  314.                    });
  315.                }
  316.              }
  317.            });
  318.          }
  319.        }
  320.  
  321.        quickViewData() {
  322.          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
  323.            const self = this;
  324.            document.addEventListener('pointerdown', (event) => {
  325.              let target = event.target;
  326.              if(target.closest(self.quickViewSelector.quickViewElement)) {
  327.                let requestURL = undefined;
  328.                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
  329.                
  330.                if(itemElement) {
  331.                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
  332.                  if(linkElement) {
  333.                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  334.                    if(link && /\/products\/[^/]+$/.test(link)) {
  335.                      requestURL = link;
  336.                    }
  337.                  }
  338.                }  
  339.                
  340.                if(requestURL) {
  341.                    fetch(requestURL + '.json')
  342.                      .then(res => res.json())
  343.                      .then(result => {
  344.                        let data = result.product;                    
  345.                        if(data) {
  346.                          let dataLayerData = {
  347.                           product_id: data.id,
  348.                            variant_id: data.variants[0].id,
  349.                            product_title: data.title,
  350.                           quantity: 1,
  351.                           final_price: parseFloat(data.variants[0].price) * 100,
  352.                           total_discount: 0,
  353.                           product_type: data.product_type,
  354.                           vendor: data.vendor,
  355.                           variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  356.                           sku: data.variants[0].sku,
  357.                          }
  358.  
  359.                          self.singleCartItemDataLayer('shipon_view_item', dataLayerData);
  360.                          self.quickViewVariants = data.variants;
  361.                          self.quickViewedItem = dataLayerData;
  362.                        }
  363.                      });
  364.                  }
  365.              }
  366.            });
  367.  
  368.            
  369.              if(this.shopifyDeirectPaymentButtonLink.length) {
  370.                let self = this;
  371.                document.addEventListener('pointerdown', (event) => {
  372.                  let target = event.target;
  373.                  let checkoutButton = event.target.closest(this.shopifyDeirectPaymentButtonLink.join(', '));
  374.                  
  375.                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
  376.  
  377.                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
  378.                    if(checkoutForm) {
  379.                        let quantity = 1;
  380.                        let varientInput = checkoutForm.querySelector('input[name="id"]');
  381.                        let quantitySelector = checkoutForm.getAttribute('id');
  382.  
  383.                        if(quantitySelector) {
  384.                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
  385.                          if(quentityInput) {
  386.                              quantity = +quentityInput.value;
  387.                          }
  388.                        }
  389.  
  390.                        if(varientInput) {
  391.                            let variant_id = parseInt(varientInput.value);
  392.  
  393.                            if(variant_id) {
  394.                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
  395.                                if(variant && self.quickViewedItem) {
  396.                                    self.quickViewedItem['variant_id'] = variant_id;
  397.                                    self.quickViewedItem['variant_title'] = variant.title;
  398.                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
  399.                                    self.quickViewedItem['quantity'] = quantity;
  400.    
  401.                                    self.singleCartItemDataLayer('shipon_add_to_cart', self.quickViewedItem);
  402.                                    self.singleCartItemDataLayer('shipon_begin_checkout', self.quickViewedItem);
  403.                                }
  404.                            }
  405.                        }
  406.                    }
  407.  
  408.                  }
  409.                });
  410.            }
  411.            
  412.          }
  413.        }
  414.  
  415.        // single item add in dataLyaer
  416.        singleCartItemDataLayer(event, item) {
  417.          dataLayer.push({ "ecommerce": null });
  418.          const dataLayerData = {
  419.            "event": event,
  420.            "ecommerce": {
  421.              "currency": this.cart.currency,
  422.              "value": +(((item.final_price / 100) * item.quantity).toFixed(2)),
  423.              "items": [{
  424.                  "item_id": this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id,
  425.                  "variant_id": item.variant_id.toString(),
  426.                  "item_name": item.product_title,
  427.                  "quantity": item.quantity,
  428.                  "price": +((item.final_price / 100).toFixed(2)),
  429.                  "discount": item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  430.              }]
  431.            }
  432.          }
  433.  
  434.          if(item.product_type) {
  435.            dataLayerData.ecommerce['items'][0]['item_category'] = item.product_type;
  436.          }
  437.  
  438.          if(item.vendor) {
  439.            dataLayerData.ecommerce['items'][0]['item_brand'] = item.vendor;
  440.          }
  441.  
  442.          if(item.variant_title && item.variant_title !== 'Default Title') {
  443.            dataLayerData.ecommerce['items'][0]['item_variant'] = item.variant_title;
  444.          }
  445.  
  446.          if(item.sku) {
  447.            dataLayerData.ecommerce['items'][0]['sku'] = item.sku;
  448.          }
  449.  
  450.          if(item.item_list_id) {
  451.            dataLayerData.ecommerce['items'][0]['item_list_id'] = item.item_list_id;
  452.          }
  453.          
  454.          if(item.item_list_name) {
  455.            dataLayerData.ecommerce['items'][0]['item_list_name'] = item.item_list_name;
  456.          }
  457.          
  458.          dataLayer.push(dataLayerData);
  459.        };
  460.  
  461.        // multiple items add in dataLayer
  462.        cartItemsDataLayer(event, cart) {
  463.          dataLayer.push({ 'ecommerce': null });
  464.          const dataLayerData = {
  465.            'event': event,
  466.            'ecommerce': {
  467.               'currency': this.cart.currency,
  468.               'items': cart.items.map((item, index) => {
  469.                 const itemDataLayerData = {
  470.                    'index': index,
  471.                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
  472.                    'variant_id': item.variant_id.toString(),
  473.                    'item_name': item.product_title,
  474.                    'quantity': item.quantity,
  475.                    'price': +((item.final_price / 100).toFixed(2)),
  476.                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  477.                }
  478.  
  479.                if(item.product_type) {
  480.                  itemDataLayerData['item_category'] = item.product_type;
  481.                }
  482.                
  483.                 if(item.vendor) {
  484.                  itemDataLayerData['item_brand'] = item.vendor;
  485.                }
  486.  
  487.                                
  488.                if(item.variant_title && item.variant_title !== 'Default Title') {
  489.                  itemDataLayerData['item_variant'] = item.variant_title;
  490.                }
  491.              
  492.                if(item.sku) {
  493.                  itemDataLayerData['sku'] = item.sku;
  494.                }
  495.  
  496.                if(item.item_list_name) {
  497.                  itemDataLayerData['item_list_name'] = item.item_list_name;
  498.                }
  499.  
  500.                if(item.item_list_id) {
  501.                  itemDataLayerData['item_list_id'] = item.item_list_id;
  502.                }
  503.  
  504.                return itemDataLayerData;
  505.              })
  506.            }
  507.          }
  508.  
  509.          if(cart.total_price) {
  510.            dataLayerData['ecommerce']['value'] = +((cart.total_price / 100).toFixed(2))
  511.          }
  512.          
  513.          if(cart.item_list_id) {
  514.            dataLayerData['ecommerce']['item_list_id'] = cart.item_list_id;
  515.          }
  516.          
  517.          if(cart.item_list_name) {
  518.            dataLayerData['ecommerce']['item_list_name'] = cart.item_list_name;
  519.          }
  520.          
  521.          dataLayer.push(dataLayerData);
  522.        }
  523.  
  524.        
  525.        // newsletters signup
  526.        newsletterSignupData() {
  527.        document.addEventListener('click', function(event) {
  528.          let target = event.target.closest('form[action^="/contact"] button[type="submit"]');
  529.          let targetForm = event.target.closest('form[action^="/contact"]');
  530.          if(target && targetForm) {
  531.            let email = targetForm.querySelector('input[type="email"]').value;
  532.            let formType = targetForm.querySelector('input[name="contact[tags]"]');
  533.            if(formType && formType.value === 'newsletter') {
  534.              let form_location = window.location.href;
  535.              let form_id = targetForm.getAttribute('id');
  536.              let form_classes = targetForm.getAttribute('class');
  537.        
  538.              dataLayer.push({
  539.                event: 'newsletter_signup',
  540.                email: email,
  541.                form_location,
  542.                form_id,
  543.                form_classes
  544.              });
  545.            }
  546.          }
  547.        });
  548.      }
  549.      }
  550.      
  551.  
  552.      document.addEventListener('DOMContentLoaded', function() {
  553.        try{
  554.          new GTM_DataLayer();
  555.        }catch(error) {
  556.          console.log(error);
  557.        }
  558.      });
  559.    
  560.  })();
  561. </script>
  562.  
  563.  
  564.  
  565.    <script>
  566.      window.Store = window.Store || {};
  567.      window.Store.id = 11386172;
  568.    </script>
  569.    <meta charset="utf-8">
  570.    <meta http-equiv="x-ua-compatible" content="IE=edge">
  571.  
  572.    <link rel="preconnect" href="https://cdn.shopify.com">
  573.    <link rel="preconnect" href="https://fonts.shopifycdn.com">
  574.    <link rel="preconnect" href="https://v.shopify.com">
  575.    <link rel="preconnect" href="https://cdn.shopifycloud.com">
  576.  
  577.    
  578.  
  579.    
  580.  
  581.    
  582.  <link rel="shortcut icon" href="//laptopparts.ca/cdn/shop/files/favicon_32x32.png?v=1635931652" type="image/png">
  583.  
  584.  
  585.    
  586.      <link rel="canonical" href="https://laptopparts.ca/">
  587.    
  588.  
  589.    <meta name="viewport" content="width=device-width">
  590.  
  591.    
  592.    
  593.  
  594.  
  595.  
  596.  
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608. <meta property="og:site_name" content="LaptopParts.ca">
  609. <meta property="og:url" content="https://laptopparts.ca/">
  610. <meta property="og:title" content="Original Laptop &amp; Tablet Parts in Canada">
  611. <meta property="og:type" content="website">
  612. <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!">
  613.  
  614.  
  615.  
  616.  
  617.    
  618.    
  619.    
  620.  
  621.    
  622.    
  623.    <meta
  624.      property="og:image"
  625.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  626.    />
  627.    <meta
  628.      property="og:image:secure_url"
  629.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  630.    />
  631.    <meta property="og:image:width" content="2540" />
  632.    <meta property="og:image:height" content="630" />
  633.    
  634.    
  635.    <meta property="og:image:alt" content="Social media image" />
  636.  
  637.  
  638.  
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  <meta name="twitter:site" content="@i/flow/login?redirect_after_login=%2FLaptopParts_ca">
  647.  
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655. <meta name="twitter:title" content="Original Laptop &amp; Tablet Parts in Canada">
  656. <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!">
  657.  
  658.  
  659.    
  660.    
  661.    
  662.      
  663.      
  664.      <meta name="twitter:card" content="summary_large_image">
  665.    
  666.    
  667.    <meta
  668.      property="twitter:image"
  669.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_1200x600_crop_center.png?v=1696410523"
  670.    />
  671.    <meta property="twitter:image:width" content="1200" />
  672.    <meta property="twitter:image:height" content="600" />
  673.    
  674.    
  675.    <meta property="twitter:image:alt" content="Social media image" />
  676.  
  677. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/preconnect_resources.js" type="text/javascript"></script>
  678. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/globo_checkout.js" type="text/javascript"></script>
  679.  
  680.  
  681.  
  682.    <link rel="preload" href="//laptopparts.ca/cdn/fonts/nunito_sans/nunitosans_n7.25d963ed46da26098ebeab731e90d8802d989fa5.woff2?h1=bGFwdG9wcGFydHMuY2E&h2=bGFwdG9wcGFydHNhdHAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=212bc52e2c90dc60ee3351ff747ed161ce425ebd2313c33978515f41d526c500" as="font" crossorigin="anonymous">
  683.    <link rel="preload" as="style" href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=3927405376854068221759332395">
  684.  
  685.    <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">
  686. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/11386172/digital_wallets/dialog">
  687. <meta name="shopify-checkout-api-token" content="d20210e10f5cfcb163289d215c1a7239">
  688. <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">
  689. <script async="async" src="/checkouts/internal/preloads.js?locale=en-CA"></script>
  690. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  691. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-CA&shop_id=11386172" crossorigin="anonymous"></script>
  692. <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>
  693. <script id="shopify-features" type="application/json">{"accessToken":"d20210e10f5cfcb163289d215c1a7239","betas":["rich-media-storefront-analytics"],"domain":"laptopparts.ca","predictiveSearch":true,"shopId":11386172,"locale":"en"}</script>
  694. <script>var Shopify = Shopify || {};
  695. Shopify.shop = "laptoppartsatp.myshopify.com";
  696. Shopify.locale = "en";
  697. Shopify.currency = {"active":"CAD","rate":"1.0"};
  698. Shopify.country = "CA";
  699. Shopify.theme = {"name":"LaptopParts.ca |- Optimized","id":126947917911,"schema_name":"Empire","schema_version":"9.1.1","theme_store_id":838,"role":"main"};
  700. Shopify.theme.handle = "null";
  701. Shopify.theme.style = {"id":null,"handle":null};
  702. Shopify.cdnHost = "laptopparts.ca/cdn";
  703. Shopify.routes = Shopify.routes || {};
  704. Shopify.routes.root = "/";</script>
  705. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  706. <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>
  707. <script>
  708.  window.ShopifyPay = window.ShopifyPay || {};
  709.  window.ShopifyPay.apiHost = "shop.app\/pay";
  710.  window.ShopifyPay.redirectState = null;
  711. </script>
  712. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  713. <script defer="defer" async type="module" src="//laptopparts.ca/cdn/shopifycloud/shop-js/modules/v2/client.init-shop-cart-sync_DAckXMQ2.en.esm.js"></script>
  714. <script defer="defer" async type="module" src="//laptopparts.ca/cdn/shopifycloud/shop-js/modules/v2/chunk.common_CxX9rxRX.esm.js"></script>
  715. <script type="module">
  716.  await import("//laptopparts.ca/cdn/shopifycloud/shop-js/modules/v2/client.init-shop-cart-sync_DAckXMQ2.en.esm.js");
  717. await import("//laptopparts.ca/cdn/shopifycloud/shop-js/modules/v2/chunk.common_CxX9rxRX.esm.js");
  718.  
  719.  window.Shopify.SignInWithShop?.initShopCartSync?.({"fedCMEnabled":true,"windoidEnabled":true});
  720.  
  721. </script>
  722. <script>
  723.  window.Shopify = window.Shopify || {};
  724.  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  725.  window.Shopify.featureAssets['shop-js'] = {"shop-cart-sync":["modules/v2/client.shop-cart-sync_BQlHEenl.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js"],"init-fed-cm":["modules/v2/client.init-fed-cm_zYBFJDg9.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js"],"shop-button":["modules/v2/client.shop-button_Dgl8N59s.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js"],"init-windoid":["modules/v2/client.init-windoid_DpsNRwr-.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_C-YWs5oB.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js"],"init-shop-cart-sync":["modules/v2/client.init-shop-cart-sync_DAckXMQ2.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_w3l8DFVj.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_CHM2JDlG.en.esm.js","modules/v2/client.shop-login-button_CYjugha5.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js","modules/v2/chunk.modal_CsiuVkKR.esm.js"],"pay-button":["modules/v2/client.pay-button_BrS4MoKu.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_DfTuM7FV.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js","modules/v2/chunk.modal_CsiuVkKR.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_DToHGB2B.en.esm.js","modules/v2/client.shop-login-button_CYjugha5.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js","modules/v2/chunk.modal_CsiuVkKR.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_CYjugha5.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js","modules/v2/chunk.modal_CsiuVkKR.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_DJgsw02-.en.esm.js","modules/v2/client.shop-login-button_CYjugha5.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js","modules/v2/chunk.modal_CsiuVkKR.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_CuPfYnHM.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js","modules/v2/chunk.modal_CsiuVkKR.esm.js"],"lead-capture":["modules/v2/client.lead-capture_djTEAuN9.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js","modules/v2/chunk.modal_CsiuVkKR.esm.js"],"shop-login":["modules/v2/client.shop-login_CqbTOnGA.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js","modules/v2/chunk.modal_CsiuVkKR.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_e_j5xoPV.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js","modules/v2/chunk.modal_CsiuVkKR.esm.js"],"payment-terms":["modules/v2/client.payment-terms_3lZA15ri.en.esm.js","modules/v2/chunk.common_CxX9rxRX.esm.js","modules/v2/chunk.modal_CsiuVkKR.esm.js"]};
  726. </script>
  727. <script>(function() {
  728.  var isLoaded = false;
  729.  function asyncLoad() {
  730.    if (isLoaded) return;
  731.    isLoaded = true;
  732.    var urls = ["\/\/static.zotabox.com\/0\/9\/098c469a55b8508df7cc687731ea9d89\/widgets.js?shop=laptoppartsatp.myshopify.com","https:\/\/sociallogin-3cb0.kxcdn.com\/resource\/resource.js?cache_key=150634481676\u0026shop=laptoppartsatp.myshopify.com","https:\/\/requestquote.w3apps.co\/js\/app.js?shop=laptoppartsatp.myshopify.com","https:\/\/laptopparts.services.answerbase.com\/javascript\/widget\/full-featured-widget.min.js?p=s\u0026ia=%23abqa-widget\u0026iacp=%23cat-abqa-widget\u0026shop=laptoppartsatp.myshopify.com","https:\/\/laptopparts.services.answerbase.com\/javascript\/widget\/cta-widget.min.js?p=s\u0026ia=%23abcta-widget\u0026shop=laptoppartsatp.myshopify.com","https:\/\/cdn.hextom.com\/js\/quickannouncementbar.js?shop=laptoppartsatp.myshopify.com","https:\/\/cdn.richpanel.com\/js\/richpanel_shopify_script.js?appClientId=laptoppartsatp5581\u0026tenantId=laptoppartsatp558\u0026shop=laptoppartsatp.myshopify.com\u0026shop=laptoppartsatp.myshopify.com"];
  733.    for (var i = 0; i < urls.length; i++) {
  734.      var s = document.createElement('script');
  735.      s.type = 'text/javascript';
  736.      s.async = true;
  737.      s.src = urls[i];
  738.      var x = document.getElementsByTagName('script')[0];
  739.      x.parentNode.insertBefore(s, x);
  740.    }
  741.  };
  742.  if(window.attachEvent) {
  743.    window.attachEvent('onload', asyncLoad);
  744.  } else {
  745.    window.addEventListener('load', asyncLoad, false);
  746.  }
  747. })();</script>
  748. <script id="__st">var __st={"a":11386172,"offset":-14400,"reqid":"b52d8cba-4bef-4ea9-9fec-ec59e93f7f5f-1761535672","pageurl":"laptopparts.ca\/","u":"445601e3e404","p":"home"};</script>
  749. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  750. <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>
  751. <script integrity="sha256-52AcMU7V7pcBOXWImdc/TAGTFKeNjmkeM1Pvks/DTgc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/storefront/assets/storefront/load_feature-81c60534.js" crossorigin="anonymous"></script>
  752. <script crossorigin="anonymous" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/storefront/assets/shopify_pay/storefront-65b4c6d7.js?v=20250812"></script>
  753. <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)}};
  754. </script>
  755. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  756.  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);
  757. </script>
  758. <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})}}));
  759. </script>
  760. <link id="shopify-accelerated-checkout-styles" rel="stylesheet" media="screen" href="https://laptopparts.ca/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
  761. <style id="shopify-accelerated-checkout-cart">
  762.        #shopify-buyer-consent {
  763.  margin-top: 1em;
  764.  display: inline-block;
  765.  width: 100%;
  766. }
  767.  
  768. #shopify-buyer-consent.hidden {
  769.  display: none;
  770. }
  771.  
  772. #shopify-subscription-policy-button {
  773.  background: none;
  774.  border: none;
  775.  padding: 0;
  776.  text-decoration: underline;
  777.  font-size: inherit;
  778.  cursor: pointer;
  779. }
  780.  
  781. #shopify-subscription-policy-button::before {
  782.  box-shadow: none;
  783. }
  784.  
  785.      </style>
  786.  
  787. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  788.  
  789.    <link href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=3927405376854068221759332395" rel="stylesheet" type="text/css" media="all" />
  790.  
  791.    
  792.    <script>
  793.      window.Theme = window.Theme || {};
  794.      window.Theme.version = '9.1.1';
  795.      window.Theme.name = 'Empire';
  796.      window.Theme.routes = {
  797.        "root_url": "/",
  798.        "account_url": "/account",
  799.        "account_login_url": "/account/login",
  800.        "account_logout_url": "/account/logout",
  801.        "account_register_url": "/account/register",
  802.        "account_addresses_url": "/account/addresses",
  803.        "collections_url": "/collections",
  804.        "all_products_collection_url": "/collections/all",
  805.        "search_url": "/search",
  806.        "predictive_search_url": "/search/suggest",
  807.        "cart_url": "/cart",
  808.        "cart_add_url": "/cart/add",
  809.        "cart_change_url": "/cart/change",
  810.        "cart_clear_url": "/cart/clear",
  811.        "product_recommendations_url": "/recommendations/products",
  812.      };
  813.    </script>
  814.    
  815.  
  816.    
  817.  
  818.    
  819.    
  820.    
  821.    
  822.      ></script>
  823. <script id='merchantWidgetScript' src="https://www.gstatic.com/shopping/merchant/merchantwidget.js" defer></script>
  824. <script type="text/javascript">
  825.  merchantWidgetScript.addEventListener('load', function () {
  826.    merchantwidget.start({
  827.      position: 'LEFT_BOTTOM',
  828.      sideMargin: 21,
  829.      bottomMargin: 33,
  830.      mobileSideMargin: 11,
  831.      mobileBottomMargin: 19
  832.    });
  833.  });
  834. </script>
  835. <script nowprocket nitro-exclude type="text/javascript" id="sa-dynamic-optimization" data-uuid="214257c8-8997-4ba0-ac14-a582ae3d0522" src="data:text/javascript;base64,dmFyIHNjcmlwdCA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoInNjcmlwdCIpO3NjcmlwdC5zZXRBdHRyaWJ1dGUoIm5vd3Byb2NrZXQiLCAiIik7c2NyaXB0LnNldEF0dHJpYnV0ZSgibml0cm8tZXhjbHVkZSIsICIiKTtzY3JpcHQuc3JjID0gImh0dHBzOi8vZGFzaGJvYXJkLnNlYXJjaGF0bGFzLmNvbS9zY3JpcHRzL2R5bmFtaWNfb3B0aW1pemF0aW9uLmpzIjtzY3JpcHQuZGF0YXNldC51dWlkID0gIjIxNDI1N2M4LTg5OTctNGJhMC1hYzE0LWE1ODJhZTNkMDUyMiI7c2NyaXB0LmlkID0gInNhLWR5bmFtaWMtb3B0aW1pemF0aW9uLWxvYWRlciI7ZG9jdW1lbnQuaGVhZC5hcHBlbmRDaGlsZChzY3JpcHQpOw=="></script>
  836.    
  837.   <!-- BEGIN app block: shopify://apps/okas-live-search-filter/blocks/app-block/77de2d4b-51b0-46d6-9fa5-dbe675e819d8 --><script>
  838.  
  839.    
  840.      
  841.            const _0xY9yrmhE9 = {        "en": {                              "_ls_s_footer_text": "SEE ALL RESULTS",          "_ls_s_no_results_text": "No Results Found",          "_ls_s_sale_text": "Sale",          "_ls_s_products": "PRODUCTS",          "_ls_s_pages": "PAGES",          "_ls_s_blogs": "BLOGS",          "_ls_s_collections": "COLLECTIONS",          "_ls_s_popular": "POPULAR SUGGESTIONS"        }      }        
  842.    
  843.  
  844.  
  845.  if ("undefined" == typeof _ls_loaded) {
  846.    _ls_loaded = !0;
  847.    var e = document.createElement("script");
  848.    e.src = "https://cdn.shopify.com/s/files/1/0331/8097/files/livesearch.complete.min_5fd058c2-0401-4f72-a351-b5ec23e835ff.js?v=1735459337", e.async = !0, document.head.appendChild(e)    
  849.  }  
  850. </script>
  851.  
  852.  
  853.  
  854. <!-- END app block --><script src="https://cdn.shopify.com/extensions/019a1110-d836-7782-a5ec-16ad4349ea7a/js-client-180/assets/pushowl-shopify.js" type="text/javascript" defer="defer"></script>
  855. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  856. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {try {var session_token_from_headers = performance.getEntriesByType('navigation')[0].serverTiming.find(x => x.name == '_s').description;} catch {var session_token_from_headers = undefined;}var session_cookie_matches = document.cookie.match(/_shopify_s=([^;]*)/);var session_token_from_cookie = session_cookie_matches && session_cookie_matches.length === 2 ? session_cookie_matches[1] : "";var session_token = session_token_from_headers || session_token_from_cookie || "";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,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>
  857. <script id="web-pixels-manager-setup">(function e(e,d,r,n,o){if(void 0===o&&(o={}),!Boolean(null===(a=null===(i=window.Shopify)||void 0===i?void 0:i.analytics)||void 0===a?void 0:a.replayQueue)){var i,a;window.Shopify=window.Shopify||{};var t=window.Shopify;t.analytics=t.analytics||{};var s=t.analytics;s.replayQueue=[],s.publish=function(e,d,r){return s.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var l=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),u="modern"===l?"modern":"legacy",c=(null!=n?n:{modern:"",legacy:""})[u],f=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:d,hashVersion:r,buildTarget:u}),m=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:r,bundleTarget:l,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{o.browserTarget=l,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:f,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var d=window.webPixelsManager.init(e)||void 0;if(d){var r=window.Shopify.analytics;r.replayQueue.forEach((function(e){var r=e[0],n=e[1],o=e[2];d.publishCustomEvent(r,n,o)})),r.replayQueue=[],r.publish=d.publishCustomEvent,r.visitor=d.visitor,r.initialized=!0}}},onerror:function(){return m.emit({status:"failed",errorMsg:"".concat(f," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(c)?c:"",scriptDataAttributes:o}),m.emit({status:"loading"})}catch(e){m.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 11386172,storefrontBaseUrl: "https://laptopparts.ca",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["2dca8a86"],webPixelsConfigList: [{"id":"560693335","configuration":"{\"subdomain\": \"laptoppartsatp\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"e091c8bfa11fc7a283f6893ff387550e","type":"APP","apiClientId":1615517,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":[]}},{"id":"392691799","configuration":"{\"config\":\"{\\\"google_tag_ids\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\",\\\"GT-MK9LHHN\\\"],\\\"target_country\\\":\\\"CA\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/GZ2ECPfhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/8pFiCPHhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/1qhMCO7hwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/K-jbCOjhwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/Pl4oCOvhwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/QncHCPrhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/b4EuCPThwI4YEJTzkNID\\\"]}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"b2a88bafab3e21179ed38636efcd8a93","type":"APP","apiClientId":1780363,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":[]}},{"id":"328826967","configuration":"{\"accountID\":\"y3ihof\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"6a625ba12d07d59c743a04dd714cce97","type":"APP","apiClientId":5206611,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":[]}},{"id":"43057239","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Shopper Approved TYP code"},{"id":"69697623","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"AnswerBase Conversion Tracking"},{"id":"127500375","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Microsoft UET Tags"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0450","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},},"https://laptopparts.ca/cdn","b9edae67w24970098p66e94f8amf509c424",{"modern":"","legacy":""},{"shopId":"11386172","storefrontBaseUrl":"https:\/\/laptopparts.ca","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\"]","isMerchantRequest":"false","hashVersion":"b9edae67w24970098p66e94f8amf509c424","publish":"custom","events":"[[\"page_viewed\",{}]]"});</script><script>
  858.  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  859.  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  860.  window.ShopifyAnalytics.meta.currency = 'CAD';
  861.  var meta = {"page":{"pageType":"home"}};
  862.  for (var attr in meta) {
  863.    window.ShopifyAnalytics.meta[attr] = meta[attr];
  864.  }
  865. </script>
  866. <script class="analytics">
  867.  (function () {
  868.    var customDocumentWrite = function(content) {
  869.      var jquery = null;
  870.  
  871.      if (window.jQuery) {
  872.        jquery = window.jQuery;
  873.      } else if (window.Checkout && window.Checkout.$) {
  874.        jquery = window.Checkout.$;
  875.      }
  876.  
  877.      if (jquery) {
  878.        jquery('body').append(content);
  879.      }
  880.    };
  881.  
  882.    var hasLoggedConversion = function(token) {
  883.      if (token) {
  884.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  885.      }
  886.      return false;
  887.    }
  888.  
  889.    var setCookieIfConversion = function(token) {
  890.      if (token) {
  891.        var twoMonthsFromNow = new Date(Date.now());
  892.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  893.  
  894.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  895.      }
  896.    }
  897.  
  898.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  899.    if (trekkie.integrations) {
  900.      return;
  901.    }
  902.    trekkie.methods = [
  903.      'identify',
  904.      'page',
  905.      'ready',
  906.      'track',
  907.      'trackForm',
  908.      'trackLink'
  909.    ];
  910.    trekkie.factory = function(method) {
  911.      return function() {
  912.        var args = Array.prototype.slice.call(arguments);
  913.        args.unshift(method);
  914.        trekkie.push(args);
  915.        return trekkie;
  916.      };
  917.    };
  918.    for (var i = 0; i < trekkie.methods.length; i++) {
  919.      var key = trekkie.methods[i];
  920.      trekkie[key] = trekkie.factory(key);
  921.    }
  922.    trekkie.load = function(config) {
  923.      trekkie.config = config || {};
  924.      trekkie.config.initialDocumentCookie = document.cookie;
  925.      var first = document.getElementsByTagName('script')[0];
  926.      var script = document.createElement('script');
  927.      script.type = 'text/javascript';
  928.      script.onerror = function(e) {
  929.        var scriptFallback = document.createElement('script');
  930.        scriptFallback.type = 'text/javascript';
  931.        scriptFallback.onerror = function(error) {
  932.                var Monorail = {
  933.      produce: function produce(monorailDomain, schemaId, payload) {
  934.        var currentMs = new Date().getTime();
  935.        var event = {
  936.          schema_id: schemaId,
  937.          payload: payload,
  938.          metadata: {
  939.            event_created_at_ms: currentMs,
  940.            event_sent_at_ms: currentMs
  941.          }
  942.        };
  943.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  944.      },
  945.      sendRequest: function sendRequest(endpointUrl, payload) {
  946.        // Try the sendBeacon API
  947.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  948.          var blobData = new window.Blob([payload], {
  949.            type: 'text/plain'
  950.          });
  951.  
  952.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  953.            return true;
  954.          } // sendBeacon was not successful
  955.  
  956.        } // XHR beacon
  957.  
  958.        var xhr = new XMLHttpRequest();
  959.  
  960.        try {
  961.          xhr.open('POST', endpointUrl);
  962.          xhr.setRequestHeader('Content-Type', 'text/plain');
  963.          xhr.send(payload);
  964.        } catch (e) {
  965.          console.log(e);
  966.        }
  967.  
  968.        return false;
  969.      },
  970.      isIos12: function isIos12() {
  971.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  972.      }
  973.    };
  974.    Monorail.produce('monorail-edge.shopifysvc.com',
  975.      'trekkie_storefront_load_errors/1.1',
  976.      {shop_id: 11386172,
  977.      theme_id: 126947917911,
  978.      app_name: "storefront",
  979.      context_url: window.location.href,
  980.      source_url: "//laptopparts.ca/cdn/s/trekkie.storefront.c0eceebb76071d7a99a30a6868e89c0f0e60ff26.min.js"});
  981.  
  982.        };
  983.        scriptFallback.async = true;
  984.        scriptFallback.src = '//laptopparts.ca/cdn/s/trekkie.storefront.c0eceebb76071d7a99a30a6868e89c0f0e60ff26.min.js';
  985.        first.parentNode.insertBefore(scriptFallback, first);
  986.      };
  987.      script.async = true;
  988.      script.src = '//laptopparts.ca/cdn/s/trekkie.storefront.c0eceebb76071d7a99a30a6868e89c0f0e60ff26.min.js';
  989.      first.parentNode.insertBefore(script, first);
  990.    };
  991.    trekkie.load(
  992.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":11386172,"isMerchantRequest":null,"themeId":126947917911,"themeCityHash":"12050458301926377361","contentLanguage":"en","currency":"CAD","eventMetadataId":"de7bd9c4-d4e4-4712-9594-0f7abd256e1d"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["f0df213a"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  993.    );
  994.  
  995.    var loaded = false;
  996.    trekkie.ready(function() {
  997.      if (loaded) return;
  998.      loaded = true;
  999.  
  1000.      window.ShopifyAnalytics.lib = window.trekkie;
  1001.  
  1002.      var originalDocumentWrite = document.write;
  1003.      document.write = customDocumentWrite;
  1004.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  1005.      document.write = originalDocumentWrite;
  1006.  
  1007.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  1008.  
  1009.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1010.      var token = match? match[1]: undefined;
  1011.      if (!hasLoggedConversion(token)) {
  1012.        setCookieIfConversion(token);
  1013.        
  1014.      }
  1015.    });
  1016.  
  1017.  
  1018.        var eventsListenerScript = document.createElement('script');
  1019.        eventsListenerScript.async = true;
  1020.        eventsListenerScript.src = "//laptopparts.ca/cdn/shopifycloud/storefront/assets/shop_events_listener-51af0056.js";
  1021.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  1022.  
  1023. })();</script>
  1024. <script
  1025.  defer
  1026.  src="https://laptopparts.ca/cdn/shopifycloud/perf-kit/shopify-perf-kit-2.1.1.min.js"
  1027.  data-application="storefront-renderer"
  1028.  data-shop-id="11386172"
  1029.  data-render-region="gcp-us-east1"
  1030.  data-page-type="index"
  1031.  data-theme-instance-id="126947917911"
  1032.  data-theme-name="Empire"
  1033.  data-theme-version="9.1.1"
  1034.  data-monorail-region="shop_domain"
  1035.  data-resource-timing-sampling-rate="10"
  1036.  data-shs="true"
  1037.  data-shs-beacon="true"
  1038.  data-shs-export-with-fetch="true"
  1039.  data-shs-logs-sample-rate="1"
  1040. ></script>
  1041. </head>
  1042.  
  1043.  <body
  1044.    class="template-index"
  1045.    data-instant-allow-query-string
  1046.    
  1047.  >
  1048.    <script>
  1049.      document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
  1050.      if(window.Shopify&&window.Shopify.designMode)document.documentElement.className+=' in-theme-editor';
  1051.      if(('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch)document.documentElement.className=document.documentElement.className.replace(/\bno-touch\b/,'has-touch');
  1052.    </script>
  1053.  
  1054.    <!-- Google Tag Manager (noscript) -->
  1055.    <noscript
  1056.      ><iframe
  1057.        loading="lazy"
  1058.        src="https://www.googletagmanager.com/ns.html?id=GTM-WDHHF23"
  1059.        height="0"
  1060.        width="0"
  1061.        style="display:none;visibility:hidden"
  1062.      ></iframe
  1063.    ></noscript>
  1064.    <!-- End Google Tag Manager (noscript) -->
  1065.  
  1066.    
  1067.    <svg
  1068.      class="icon-star-reference"
  1069.      aria-hidden="true"
  1070.      focusable="false"
  1071.      role="presentation"
  1072.      xmlns="http://www.w3.org/2000/svg"
  1073.      width="20"
  1074.      height="20"
  1075.      viewBox="3 3 17 17"
  1076.      fill="none"
  1077.    >
  1078.      <symbol id="icon-star">
  1079.        <rect class="icon-star-background" width="20" height="20" fill="currentColor"/>
  1080.        <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"/>
  1081.      </symbol>
  1082.      <clipPath id="icon-star-clip">
  1083.        <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"/>
  1084.      </clipPath>
  1085.    </svg>
  1086.    
  1087.  
  1088.    <a class="skip-to-main" href="#site-main">Skip to content</a>
  1089.  
  1090.    <!-- BEGIN sections: header-group -->
  1091. <div id="shopify-section-sections--15492291133527__announcement-bar" class="shopify-section shopify-section-group-header-group site-announcement"><script
  1092.  type="application/json"
  1093.  data-section-id="sections--15492291133527__announcement-bar"
  1094.  data-section-type="static-announcement">
  1095. </script>
  1096.  
  1097.  
  1098.  
  1099.  
  1100.  
  1101.  
  1102.  
  1103.  
  1104.  
  1105.  
  1106.    <div
  1107.      class="
  1108.        announcement-bar
  1109.        
  1110.      "
  1111.      style="
  1112.        color: #ffffff;
  1113.        background: #fe0000;
  1114.      "
  1115.      data-announcement-bar
  1116.    >
  1117.      
  1118.  
  1119.      
  1120.        <div class="announcement-bar-text">
  1121.          📞 <b>Text us at 613-704-4708</b>
  1122.  
  1123. <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>
  1124.        </div>
  1125.      
  1126.  
  1127.      <div class="announcement-bar-text-mobile">
  1128.        
  1129.          📞 <b>Text us at 613-704-4708</b>
  1130.  
  1131. <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>
  1132.        
  1133.      </div>
  1134.    </div>
  1135.  
  1136.  
  1137.  
  1138. </div><div id="shopify-section-sections--15492291133527__header" class="shopify-section shopify-section-group-header-group site-header-wrapper">
  1139.  
  1140.  
  1141. <script
  1142.  type="application/json"
  1143.  data-section-id="sections--15492291133527__header"
  1144.  data-section-type="static-header"
  1145.  data-section-data>
  1146.  {
  1147.    "settings": {
  1148.      "sticky_header": false,
  1149.      "has_box_shadow": false,
  1150.      "live_search": {
  1151.        "enable": false,
  1152.        "money_format": "${{amount}}",
  1153.        "show_mobile_search_bar": false
  1154.      }
  1155.    }
  1156.  }
  1157. </script>
  1158.  
  1159.  
  1160.  
  1161.  
  1162.  
  1163. <style data-shopify>
  1164.  .site-logo {
  1165.    max-width: 250px;
  1166.  }
  1167.  
  1168.  .site-logo-image {
  1169.    max-height: 100px;
  1170.  }
  1171. </style>
  1172.  
  1173. <header
  1174.  class="site-header site-header-nav--open"
  1175.  role="banner"
  1176.  data-site-header
  1177. >
  1178.  <div
  1179.    class="
  1180.      site-header-main
  1181.      
  1182.        site-header--full-width
  1183.      
  1184.    "
  1185.    data-site-header-main
  1186.    
  1187.    
  1188.      data-site-header-mobile-search-button
  1189.    
  1190.  >
  1191.    <button class="site-header-menu-toggle" data-menu-toggle>
  1192.      <div class="site-header-menu-toggle--button" tabindex="-1">
  1193.        <span class="toggle-icon--bar toggle-icon--bar-top"></span>
  1194.        <span class="toggle-icon--bar toggle-icon--bar-middle"></span>
  1195.        <span class="toggle-icon--bar toggle-icon--bar-bottom"></span>
  1196.        <span class="visually-hidden">Menu</span>
  1197.      </div>
  1198.    </button>
  1199.  
  1200.    
  1201.      
  1202.      
  1203.        <a
  1204.          class="site-header-mobile-search-button"
  1205.          href="/search"
  1206.        >
  1207.          
  1208.        <div class="site-header-mobile-search-button--button" tabindex="-1">
  1209.          <svg
  1210.  aria-hidden="true"
  1211.  focusable="false"
  1212.  role="presentation"
  1213.  xmlns="http://www.w3.org/2000/svg"
  1214.  width="23"
  1215.  height="24"
  1216.  fill="none"
  1217.  viewBox="0 0 23 24"
  1218. >
  1219.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1220.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1221. </svg>
  1222.  
  1223.        </div>
  1224.      
  1225.        </a>
  1226.      
  1227.    
  1228.  
  1229.    <div
  1230.      class="
  1231.        site-header-main-content
  1232.        
  1233.      "
  1234.    >
  1235.      <div class="site-header-logo">
  1236.        <a
  1237.          class="site-logo"
  1238.          href="/">
  1239.          
  1240.            
  1241.            
  1242.  
  1243.            
  1244.  
  1245.  
  1246.  
  1247.  <img loading="lazy"
  1248.    
  1249.      src="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523"
  1250.    
  1251.    alt=""
  1252.  
  1253.    
  1254.      data-rimg
  1255.      srcset="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523 1x"
  1256.    
  1257.  
  1258.    class="site-logo-image"
  1259.    style="
  1260.        object-fit:cover;object-position:50.0% 50.0%;
  1261.      
  1262. "
  1263.    
  1264.  >
  1265.  
  1266.  
  1267.  
  1268.  
  1269.          
  1270.        </a>
  1271.      </div>
  1272.  
  1273.      
  1274.  
  1275.  
  1276.  
  1277.  
  1278.  
  1279. <div class="live-search" data-live-search><form
  1280.    class="
  1281.      live-search-form
  1282.      form-fields-inline
  1283.      
  1284.    "
  1285.    action="/search"
  1286.    method="get"
  1287.    role="search"
  1288.    aria-label="Product"
  1289.    data-live-search-form
  1290.  >
  1291.    <div class="form-field no-label"><span class="form-field-select-wrapper live-search-filter-wrapper">
  1292.          <select class="live-search-filter" data-live-search-filter data-filter-all="All categories">
  1293.            
  1294.            <option value="" selected>All categories</option>
  1295.            <option value="" disabled>------</option>
  1296.            
  1297.              
  1298.  
  1299. <option value="product_type:AC Adapters">AC Adapters</option>
  1300. <option value="product_type:Accessories">Accessories</option>
  1301. <option value="product_type:Adapter Card">Adapter Card</option>
  1302. <option value="product_type:Antennas">Antennas</option>
  1303. <option value="product_type:Appliances &gt; Fans">Appliances > Fans</option>
  1304. <option value="product_type:Batteries">Batteries</option>
  1305. <option value="product_type:Battery">Battery</option>
  1306. <option value="product_type:Bezels Cases &amp; Covers">Bezels Cases & Covers</option>
  1307. <option value="product_type:Boards">Boards</option>
  1308. <option value="product_type:Cables">Cables</option>
  1309. <option value="product_type:Cases Covers &amp; Bezels">Cases Covers & Bezels</option>
  1310. <option value="product_type:Connectors">Connectors</option>
  1311. <option value="product_type:DC Jack Cables">DC Jack Cables</option>
  1312. <option value="product_type:Docking Station">Docking Station</option>
  1313. <option value="product_type:Drives">Drives</option>
  1314. <option value="product_type:Fans">Fans</option>
  1315. <option value="product_type:Hard Drive">Hard Drive</option>
  1316. <option value="product_type:Hard Drive Brackets">Hard Drive Brackets</option>
  1317. <option value="product_type:Hard Drive Disk Caddy">Hard Drive Disk Caddy</option>
  1318. <option value="product_type:Hard Drives">Hard Drives</option>
  1319. <option value="product_type:Hinges">Hinges</option>
  1320. <option value="product_type:Keyboards">Keyboards</option>
  1321. <option value="product_type:Memory">Memory</option>
  1322. <option value="product_type:Misc">Misc</option>
  1323. <option value="product_type:Motherboards">Motherboards</option>
  1324. <option value="product_type:Network Cards">Network Cards</option>
  1325. <option value="product_type:Optical Cables">Optical Cables</option>
  1326. <option value="product_type:Optical Drives">Optical Drives</option>
  1327. <option value="product_type:Palmrests">Palmrests</option>
  1328. <option value="product_type:Parts">Parts</option>
  1329. <option value="product_type:Phone Parts">Phone Parts</option>
  1330. <option value="product_type:Power Supplies">Power Supplies</option>
  1331. <option value="product_type:Printer Parts">Printer Parts</option>
  1332. <option value="product_type:Screen">Screen</option>
  1333. <option value="product_type:Screens">Screens</option>
  1334. <option value="product_type:Screens - Touch Digitizers">Screens - Touch Digitizers</option>
  1335. <option value="product_type:Screws">Screws</option>
  1336. <option value="product_type:Server Parts">Server Parts</option>
  1337. <option value="product_type:Short Low Profile Bracket">Short Low Profile Bracket</option>
  1338. <option value="product_type:Speakers">Speakers</option>
  1339. <option value="product_type:Tablet Parts">Tablet Parts</option>
  1340. <option value="product_type:Touchpads">Touchpads</option>
  1341. <option value="product_type:UpCart - Shipping Protection">UpCart - Shipping Protection</option>
  1342. <option value="product_type:Video Card">Video Card</option>
  1343. <option value="product_type:Wireless Mouse Receiver">Wireless Mouse Receiver</option>
  1344.            
  1345.          </select>
  1346.          <label class="live-search-filter-label form-field-select" data-live-search-filter-label>All categories
  1347. </label>
  1348.          <svg
  1349.  aria-hidden="true"
  1350.  focusable="false"
  1351.  role="presentation"
  1352.  width="8"
  1353.  height="6"
  1354.  viewBox="0 0 8 6"
  1355.  fill="none"
  1356.  xmlns="http://www.w3.org/2000/svg"
  1357.  class="icon-chevron-down"
  1358. >
  1359. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1360. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1361. </svg>
  1362.  
  1363.        </span><input
  1364.        class="form-field-input live-search-form-field"
  1365.        type="text"
  1366.        name="q"
  1367.        aria-label="Search"
  1368.        placeholder="What are you looking for?"
  1369.        
  1370.        autocomplete="off"
  1371.        data-live-search-input
  1372.      >
  1373.      <button
  1374.        class="live-search-takeover-cancel"
  1375.        type="button"
  1376.        data-live-search-takeover-cancel>
  1377.        Cancel
  1378.      </button>
  1379.  
  1380.      <button
  1381.        class="live-search-button"
  1382.        type="submit"
  1383.        aria-label="Search"
  1384.        data-live-search-submit
  1385.      >
  1386.        <span class="search-icon search-icon--inactive">
  1387.          <svg
  1388.  aria-hidden="true"
  1389.  focusable="false"
  1390.  role="presentation"
  1391.  xmlns="http://www.w3.org/2000/svg"
  1392.  width="23"
  1393.  height="24"
  1394.  fill="none"
  1395.  viewBox="0 0 23 24"
  1396. >
  1397.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1398.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1399. </svg>
  1400.  
  1401.        </span>
  1402.        <span class="search-icon search-icon--active">
  1403.          <svg
  1404.  aria-hidden="true"
  1405.  focusable="false"
  1406.  role="presentation"
  1407.  width="26"
  1408.  height="26"
  1409.  viewBox="0 0 26 26"
  1410.  xmlns="http://www.w3.org/2000/svg"
  1411. >
  1412.  <g fill-rule="nonzero" fill="currentColor">
  1413.    <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"/>
  1414.  </g>
  1415. </svg>
  1416.        </span>
  1417.      </button>
  1418.    </div>
  1419.  
  1420.    <div class="search-flydown" data-live-search-flydown>
  1421.      <div class="search-flydown--placeholder" data-live-search-placeholder>
  1422.        <div class="search-flydown--product-items">
  1423.          
  1424.            <a class="search-flydown--product search-flydown--product" href="#">
  1425.              
  1426.  
  1427.              <div class="search-flydown--product-text">
  1428.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1429.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1430.              </div>
  1431.            </a>
  1432.          
  1433.            <a class="search-flydown--product search-flydown--product" href="#">
  1434.              
  1435.  
  1436.              <div class="search-flydown--product-text">
  1437.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1438.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1439.              </div>
  1440.            </a>
  1441.          
  1442.            <a class="search-flydown--product search-flydown--product" href="#">
  1443.              
  1444.  
  1445.              <div class="search-flydown--product-text">
  1446.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1447.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1448.              </div>
  1449.            </a>
  1450.          
  1451.        </div>
  1452.      </div>
  1453.  
  1454.      <div
  1455.        class="
  1456.          search-flydown--results
  1457.          search-flydown--results--no-images
  1458.        "
  1459.        data-live-search-results
  1460.      ></div>
  1461.  
  1462.      
  1463.    </div>
  1464.  </form>
  1465. </div>
  1466.  
  1467.  
  1468.      
  1469.    </div>
  1470.  
  1471.    <div class="site-header-right">
  1472.      <ul class="site-header-actions" data-header-actions>
  1473.  
  1474.    
  1475.      <li class="site-header-actions__account-link">
  1476.        <a
  1477.          class="site-header_account-link-anchor"
  1478.          href="/account/login"
  1479.        >
  1480.          <span class="site-header__account-icon">
  1481.            
  1482.  
  1483.  
  1484.    <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>                                                                                                                
  1485.  
  1486.          </span>
  1487.          
  1488.          <span class="site-header_account-link-text">
  1489.            Login
  1490.          </span>
  1491.        </a>
  1492.      </li>
  1493.    
  1494.  
  1495. </ul>
  1496.  
  1497.  
  1498.      <div class="site-header-cart">
  1499.        <a class="site-header-cart--button" href="/cart">
  1500.          <span
  1501.            class="site-header-cart--count "
  1502.            data-header-cart-count="">
  1503.          </span>
  1504.          <span class="site-header-cart-icon site-header-cart-icon--svg">
  1505.            
  1506.              
  1507.  
  1508.  
  1509.            <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>                                                                                                        
  1510.  
  1511.            
  1512.          </span>
  1513.          <span class="visually-hidden">View cart</span>
  1514.        </a>
  1515.      </div>
  1516.    </div>
  1517.  </div>
  1518.  
  1519.  <div
  1520.    class="
  1521.      site-navigation-wrapper
  1522.      
  1523.        site-navigation--has-actions
  1524.      
  1525.      
  1526.        site-header--full-width
  1527.      
  1528.    "
  1529.    data-site-navigation
  1530.    id="site-header-nav"
  1531.  >
  1532.    <nav
  1533.      class="site-navigation"
  1534.      aria-label="Main"
  1535.    >
  1536.      
  1537.  
  1538.  
  1539.  
  1540.  
  1541. <ul
  1542.  class="navmenu navmenu-depth-1"
  1543.  data-navmenu
  1544.  aria-label="Main Menu 02"
  1545. >
  1546.  
  1547.    
  1548.    
  1549.  
  1550.    
  1551.    
  1552.    
  1553.    
  1554. <li
  1555.      class="navmenu-item              navmenu-basic__item                  navmenu-id-home"
  1556.      
  1557.      
  1558.      
  1559.    >
  1560.      
  1561.        <a
  1562.      
  1563.        class="
  1564.          navmenu-link
  1565.          navmenu-link-depth-1
  1566.          
  1567.          navmenu-link-active
  1568.        "
  1569.        
  1570.          href="/"
  1571.        
  1572.      >
  1573.        Home
  1574.        
  1575.      
  1576.        </a>
  1577.      
  1578.  
  1579.      
  1580.      </details>
  1581.    </li>
  1582.  
  1583.    
  1584.    
  1585.  
  1586.    
  1587.    
  1588.    
  1589.    
  1590. <li
  1591.      class="navmenu-item                    navmenu-item-parent                  navmenu-meganav__item-parent                    navmenu-id-shop"
  1592.      
  1593.        data-navmenu-meganav-trigger
  1594.        data-navmenu-meganav-type="multi-column-menu"
  1595.      
  1596.      data-navmenu-parent
  1597.      
  1598.    >
  1599.      
  1600.        <details data-navmenu-details>
  1601.        <summary
  1602.      
  1603.        class="
  1604.          navmenu-link
  1605.          navmenu-link-depth-1
  1606.          navmenu-link-parent
  1607.          
  1608.        "
  1609.        
  1610.          aria-haspopup="true"
  1611.          aria-expanded="false"
  1612.          data-href="/collections/all"
  1613.        
  1614.      >
  1615.        Shop
  1616.        
  1617.          <span
  1618.            class="navmenu-icon navmenu-icon-depth-1"
  1619.            data-navmenu-trigger
  1620.          >
  1621.            <svg
  1622.  aria-hidden="true"
  1623.  focusable="false"
  1624.  role="presentation"
  1625.  width="8"
  1626.  height="6"
  1627.  viewBox="0 0 8 6"
  1628.  fill="none"
  1629.  xmlns="http://www.w3.org/2000/svg"
  1630.  class="icon-chevron-down"
  1631. >
  1632. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1633. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1634. </svg>
  1635.  
  1636.          </span>
  1637.        
  1638.      
  1639.        </summary>
  1640.      
  1641.  
  1642.      
  1643.        
  1644.            
  1645.  
  1646.  
  1647.  
  1648.  
  1649.  
  1650.  
  1651.  
  1652. <div
  1653.  class="navmenu-submenu  navmenu-meganav  navmenu-meganav--desktop"
  1654.  data-navmenu-submenu
  1655.  data-meganav-menu
  1656.  data-meganav-id="3b13d0a4-b646-40a2-af69-91c68056aced"
  1657. >
  1658.  <div class="navmenu-meganav-wrapper navmenu-multi-column-items">
  1659.    <ul class="navmenu navmenu-depth-2 multi-column-count-5">
  1660.      
  1661.        
  1662.          <li class="navmenu-item">
  1663.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1664.              Laptop Components
  1665.            </a>
  1666.            <ul>
  1667.            
  1668.              <li class="navmenu-item">
  1669.                <a href="/collections/ac-adapters" class="navmenu-link">
  1670.                  AC Adapters
  1671.                </a>
  1672.              </li>
  1673.            
  1674.              <li class="navmenu-item">
  1675.                <a href="/collections/batteries" class="navmenu-link">
  1676.                  Batteries
  1677.                </a>
  1678.              </li>
  1679.            
  1680.              <li class="navmenu-item">
  1681.                <a href="/collections/cases-covers-bezels" class="navmenu-link">
  1682.                  Bezels Cases & Covers
  1683.                </a>
  1684.              </li>
  1685.            
  1686.              <li class="navmenu-item">
  1687.                <a href="/collections/boards" class="navmenu-link">
  1688.                  Boards
  1689.                </a>
  1690.              </li>
  1691.            
  1692.              <li class="navmenu-item">
  1693.                <a href="/collections/cables" class="navmenu-link">
  1694.                  Cables
  1695.                </a>
  1696.              </li>
  1697.            
  1698.              <li class="navmenu-item">
  1699.                <a href="/collections/dc-jack-cables" class="navmenu-link">
  1700.                  DC Jack Cables
  1701.                </a>
  1702.              </li>
  1703.            
  1704.              <li class="navmenu-item">
  1705.                <a href="/collections/fans" class="navmenu-link">
  1706.                  Fans
  1707.                </a>
  1708.              </li>
  1709.            
  1710.              <li class="navmenu-item">
  1711.                <a href="/collections/hard-drive-brackets" class="navmenu-link">
  1712.                  Hard Drive Brackets
  1713.                </a>
  1714.              </li>
  1715.            
  1716.              <li class="navmenu-item">
  1717.                <a href="/collections/laptop-hard-drive" class="navmenu-link">
  1718.                  Hard Drives
  1719.                </a>
  1720.              </li>
  1721.            
  1722.              <li class="navmenu-item">
  1723.                <a href="/collections/laptop-case-parts" class="navmenu-link">
  1724.                  - Laptop Case Parts
  1725.                </a>
  1726.              </li>
  1727.            
  1728.              <li class="navmenu-item">
  1729.                <a href="/collections/hinges" class="navmenu-link">
  1730.                  Hinges
  1731.                </a>
  1732.              </li>
  1733.            
  1734.              <li class="navmenu-item">
  1735.                <a href="/collections/laptop-case" class="navmenu-link">
  1736.                  Laptop Case
  1737.                </a>
  1738.              </li>
  1739.            
  1740.              <li class="navmenu-item">
  1741.                <a href="/collections/laptop-cover" class="navmenu-link">
  1742.                  Laptop Cover
  1743.                </a>
  1744.              </li>
  1745.            
  1746.              <li class="navmenu-item">
  1747.                <a href="/collections/thermal-printer" class="navmenu-link">
  1748.                  Thermal Printer
  1749.                </a>
  1750.              </li>
  1751.            
  1752.            </ul>
  1753.          </li>
  1754.        
  1755.      
  1756.        
  1757.          <li class="navmenu-item">
  1758.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1759.              .....
  1760.            </a>
  1761.            <ul>
  1762.            
  1763.              <li class="navmenu-item">
  1764.                <a href="/collections/keyboards-1" class="navmenu-link">
  1765.                  Keyboards
  1766.                </a>
  1767.              </li>
  1768.            
  1769.              <li class="navmenu-item">
  1770.                <a href="/collections/acer-keyboard" class="navmenu-link">
  1771.                  - Acer keyboard
  1772.                </a>
  1773.              </li>
  1774.            
  1775.              <li class="navmenu-item">
  1776.                <a href="/collections/asus-keyboard" class="navmenu-link">
  1777.                  - Asus keyboards
  1778.                </a>
  1779.              </li>
  1780.            
  1781.              <li class="navmenu-item">
  1782.                <a href="/collections/dell-keyboard" class="navmenu-link">
  1783.                  - Dell keyboard
  1784.                </a>
  1785.              </li>
  1786.            
  1787.              <li class="navmenu-item">
  1788.                <a href="/collections/lenovo-keyboard" class="navmenu-link">
  1789.                  - Lenovo keyboard
  1790.                </a>
  1791.              </li>
  1792.            
  1793.              <li class="navmenu-item">
  1794.                <a href="/collections/hp-keyboard" class="navmenu-link">
  1795.                  - Hp Keyboard
  1796.                </a>
  1797.              </li>
  1798.            
  1799.              <li class="navmenu-item">
  1800.                <a href="/collections/backlit-keyboard" class="navmenu-link">
  1801.                  - Backlit Keyboards
  1802.                </a>
  1803.              </li>
  1804.            
  1805.              <li class="navmenu-item">
  1806.                <a href="/collections/memory" class="navmenu-link">
  1807.                  Memory
  1808.                </a>
  1809.              </li>
  1810.            
  1811.              <li class="navmenu-item">
  1812.                <a href="/collections/motherboards" class="navmenu-link">
  1813.                  Motherboards
  1814.                </a>
  1815.              </li>
  1816.            
  1817.              <li class="navmenu-item">
  1818.                <a href="/collections/optical-drives" class="navmenu-link">
  1819.                  Optical Drives
  1820.                </a>
  1821.              </li>
  1822.            
  1823.              <li class="navmenu-item">
  1824.                <a href="/collections/power-supplies" class="navmenu-link">
  1825.                  Power Supplies
  1826.                </a>
  1827.              </li>
  1828.            
  1829.              <li class="navmenu-item">
  1830.                <a href="/collections/screens" class="navmenu-link">
  1831.                  Screens
  1832.                </a>
  1833.              </li>
  1834.            
  1835.              <li class="navmenu-item">
  1836.                <a href="/collections/touch-screen-laptop" class="navmenu-link">
  1837.                  - Touch Screen Laptop
  1838.                </a>
  1839.              </li>
  1840.            
  1841.              <li class="navmenu-item">
  1842.                <a href="/collections/screens-touch-digitizers" class="navmenu-link">
  1843.                  Screens - Touch Digitizers
  1844.                </a>
  1845.              </li>
  1846.            
  1847.              <li class="navmenu-item">
  1848.                <a href="/collections/speakers" class="navmenu-link">
  1849.                  Speakers
  1850.                </a>
  1851.              </li>
  1852.            
  1853.              <li class="navmenu-item">
  1854.                <a href="/collections/touchpads" class="navmenu-link">
  1855.                  Touchpads
  1856.                </a>
  1857.              </li>
  1858.            
  1859.            </ul>
  1860.          </li>
  1861.        
  1862.      
  1863.        
  1864.          <li class="navmenu-item">
  1865.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1866.              Other Components
  1867.            </a>
  1868.            <ul>
  1869.            
  1870.              <li class="navmenu-item">
  1871.                <a href="/collections/accessories" class="navmenu-link">
  1872.                  Accessories
  1873.                </a>
  1874.              </li>
  1875.            
  1876.              <li class="navmenu-item">
  1877.                <a href="/collections/phone-parts" class="navmenu-link">
  1878.                  Phone Parts
  1879.                </a>
  1880.              </li>
  1881.            
  1882.              <li class="navmenu-item">
  1883.                <a href="/collections/printer-parts" class="navmenu-link">
  1884.                  Printer Parts
  1885.                </a>
  1886.              </li>
  1887.            
  1888.              <li class="navmenu-item">
  1889.                <a href="/collections/server-parts" class="navmenu-link">
  1890.                  Server Parts
  1891.                </a>
  1892.              </li>
  1893.            
  1894.              <li class="navmenu-item">
  1895.                <a href="/collections/tablet-parts" class="navmenu-link">
  1896.                  Tablet Parts
  1897.                </a>
  1898.              </li>
  1899.            
  1900.            </ul>
  1901.          </li>
  1902.        
  1903.      
  1904.    </ul>
  1905.  </div>
  1906. </div>
  1907.  
  1908.          
  1909.      
  1910.      </details>
  1911.    </li>
  1912.  
  1913.    
  1914.    
  1915.  
  1916.    
  1917.    
  1918.    
  1919.    
  1920. <li
  1921.      class="navmenu-item              navmenu-basic__item                  navmenu-id-about-us"
  1922.      
  1923.      
  1924.      
  1925.    >
  1926.      
  1927.        <a
  1928.      
  1929.        class="
  1930.          navmenu-link
  1931.          navmenu-link-depth-1
  1932.          
  1933.          
  1934.        "
  1935.        
  1936.          href="/pages/about-us"
  1937.        
  1938.      >
  1939.        About Us
  1940.        
  1941.      
  1942.        </a>
  1943.      
  1944.  
  1945.      
  1946.      </details>
  1947.    </li>
  1948.  
  1949.    
  1950.    
  1951.  
  1952.    
  1953.    
  1954.    
  1955.    
  1956. <li
  1957.      class="navmenu-item              navmenu-basic__item                  navmenu-id-repair-centers"
  1958.      
  1959.      
  1960.      
  1961.    >
  1962.      
  1963.        <a
  1964.      
  1965.        class="
  1966.          navmenu-link
  1967.          navmenu-link-depth-1
  1968.          
  1969.          
  1970.        "
  1971.        
  1972.          href="/pages/store-locator"
  1973.        
  1974.      >
  1975.        Repair Centers
  1976.        
  1977.      
  1978.        </a>
  1979.      
  1980.  
  1981.      
  1982.      </details>
  1983.    </li>
  1984.  
  1985.    
  1986.    
  1987.  
  1988.    
  1989.    
  1990.    
  1991.    
  1992. <li
  1993.      class="navmenu-item              navmenu-basic__item                  navmenu-id-parts-request"
  1994.      
  1995.      
  1996.      
  1997.    >
  1998.      
  1999.        <a
  2000.      
  2001.        class="
  2002.          navmenu-link
  2003.          navmenu-link-depth-1
  2004.          
  2005.          
  2006.        "
  2007.        
  2008.          href="/pages/part-request"
  2009.        
  2010.      >
  2011.        Parts Request
  2012.        
  2013.      
  2014.        </a>
  2015.      
  2016.  
  2017.      
  2018.      </details>
  2019.    </li>
  2020.  
  2021.    
  2022.    
  2023.  
  2024.    
  2025.    
  2026.    
  2027.    
  2028. <li
  2029.      class="navmenu-item              navmenu-basic__item                  navmenu-id-shipping"
  2030.      
  2031.      
  2032.      
  2033.    >
  2034.      
  2035.        <a
  2036.      
  2037.        class="
  2038.          navmenu-link
  2039.          navmenu-link-depth-1
  2040.          
  2041.          
  2042.        "
  2043.        
  2044.          href="/pages/shipping"
  2045.        
  2046.      >
  2047.        Shipping
  2048.        
  2049.      
  2050.        </a>
  2051.      
  2052.  
  2053.      
  2054.      </details>
  2055.    </li>
  2056.  
  2057.    
  2058.    
  2059.  
  2060.    
  2061.    
  2062.    
  2063.    
  2064. <li
  2065.      class="navmenu-item              navmenu-basic__item                  navmenu-id-francais"
  2066.      
  2067.      
  2068.      
  2069.    >
  2070.      
  2071.        <a
  2072.      
  2073.        class="
  2074.          navmenu-link
  2075.          navmenu-link-depth-1
  2076.          
  2077.          
  2078.        "
  2079.        
  2080.          href="/pages/francais"
  2081.        
  2082.      >
  2083.        Français
  2084.        
  2085.      
  2086.        </a>
  2087.      
  2088.  
  2089.      
  2090.      </details>
  2091.    </li>
  2092.  
  2093. </ul>
  2094.  
  2095.  
  2096.      
  2097.    </nav>
  2098.  </div>
  2099.  
  2100.  <div class="site-mobile-nav" id="site-mobile-nav" data-mobile-nav tabindex="0">
  2101.  <div class="mobile-nav-panel" data-mobile-nav-panel>
  2102.  
  2103.    <ul class="site-header-actions" data-header-actions>
  2104.  
  2105.    
  2106.      <li class="site-header-actions__account-link">
  2107.        <a
  2108.          class="site-header_account-link-anchor"
  2109.          href="/account/login"
  2110.        >
  2111.          <span class="site-header__account-icon">
  2112.            
  2113.  
  2114.  
  2115.    <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>                                                                                                                
  2116.  
  2117.          </span>
  2118.          
  2119.          <span class="site-header_account-link-text">
  2120.            Login
  2121.          </span>
  2122.        </a>
  2123.      </li>
  2124.    
  2125.  
  2126. </ul>
  2127.  
  2128.  
  2129.    <a
  2130.      class="mobile-nav-close"
  2131.      href="#site-header-nav"
  2132.      data-mobile-nav-close>
  2133.      <svg
  2134.  aria-hidden="true"
  2135.  focusable="false"
  2136.  role="presentation"
  2137.  xmlns="http://www.w3.org/2000/svg"
  2138.  width="13"
  2139.  height="13"
  2140.  viewBox="0 0 13 13"
  2141. >
  2142.  <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"/>
  2143. </svg>
  2144.      <span class="visually-hidden">Close</span>
  2145.    </a>
  2146.  
  2147.    <div class="mobile-nav-content" data-mobile-nav-content>
  2148.      
  2149.  
  2150.  
  2151.  
  2152.  
  2153. <ul
  2154.  class="navmenu navmenu-depth-1"
  2155.  data-navmenu
  2156.  aria-label="Main Menu 02"
  2157. >
  2158.  
  2159.    
  2160.    
  2161.  
  2162.    
  2163.    
  2164.    
  2165. <li
  2166.      class="navmenu-item            navmenu-id-home"
  2167.      
  2168.    >
  2169.      <a
  2170.        class="navmenu-link  navmenu-link-active"
  2171.        href="/"
  2172.        
  2173.      >
  2174.        Home
  2175.      </a>
  2176.  
  2177.      
  2178.  
  2179.      
  2180.      
  2181.  
  2182.      
  2183.  
  2184.      
  2185.    </li>
  2186.  
  2187.    
  2188.    
  2189.  
  2190.    
  2191.    
  2192.    
  2193. <li
  2194.      class="navmenu-item      navmenu-item-parent      navmenu-id-shop"
  2195.      data-navmenu-parent
  2196.    >
  2197.      <a
  2198.        class="navmenu-link navmenu-link-parent "
  2199.        href="/collections/all"
  2200.        
  2201.          aria-haspopup="true"
  2202.          aria-expanded="false"
  2203.        
  2204.      >
  2205.        Shop
  2206.      </a>
  2207.  
  2208.      
  2209.        
  2210.  
  2211.  
  2212.  
  2213. <button
  2214.  class="navmenu-button"
  2215.  data-navmenu-trigger
  2216.  aria-expanded="false"
  2217. >
  2218.  <div class="navmenu-button-wrapper" tabindex="-1">
  2219.    <span class="navmenu-icon ">
  2220.      <svg
  2221.  aria-hidden="true"
  2222.  focusable="false"
  2223.  role="presentation"
  2224.  width="8"
  2225.  height="6"
  2226.  viewBox="0 0 8 6"
  2227.  fill="none"
  2228.  xmlns="http://www.w3.org/2000/svg"
  2229.  class="icon-chevron-down"
  2230. >
  2231. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2232. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2233. </svg>
  2234.  
  2235.    </span>
  2236.    <span class="visually-hidden">Shop</span>
  2237.  </div>
  2238. </button>
  2239.  
  2240.      
  2241.  
  2242.      
  2243.      
  2244.  
  2245.      
  2246.        
  2247.  
  2248.  
  2249.  
  2250.  
  2251.  
  2252.  
  2253.  
  2254.  
  2255.  
  2256.  
  2257.  
  2258.  
  2259. <ul
  2260.  class="
  2261.    navmenu
  2262.    navmenu-depth-2
  2263.    navmenu-submenu
  2264.    
  2265.  "
  2266.  data-navmenu
  2267.  data-accordion-content
  2268.  data-navmenu-submenu
  2269.  aria-label="Main Menu 02"
  2270. >
  2271.  
  2272.    
  2273.  
  2274.    
  2275.    
  2276.  
  2277.    
  2278.    
  2279.  
  2280.    
  2281.  
  2282.    
  2283. <li
  2284.        class="navmenu-item        navmenu-item-parent        navmenu-id-laptop-components"
  2285.        data-navmenu-parent
  2286.      >
  2287.        
  2288.          <a
  2289.            href="/collections/all"
  2290.        
  2291.          class="navmenu-link navmenu-link-parent "
  2292.          
  2293.            aria-haspopup="true"
  2294.            aria-expanded="false"
  2295.          
  2296.        >
  2297.          
  2298.          Laptop Components
  2299.  
  2300.        
  2301.          </a>
  2302.        
  2303.  
  2304.        
  2305.          
  2306.  
  2307.  
  2308.  
  2309. <button
  2310.  class="navmenu-button"
  2311.  data-navmenu-trigger
  2312.  aria-expanded="false"
  2313. >
  2314.  <div class="navmenu-button-wrapper" tabindex="-1">
  2315.    <span class="navmenu-icon navmenu-icon-depth-2">
  2316.      <svg
  2317.  aria-hidden="true"
  2318.  focusable="false"
  2319.  role="presentation"
  2320.  width="8"
  2321.  height="6"
  2322.  viewBox="0 0 8 6"
  2323.  fill="none"
  2324.  xmlns="http://www.w3.org/2000/svg"
  2325.  class="icon-chevron-down"
  2326. >
  2327. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2328. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2329. </svg>
  2330.  
  2331.    </span>
  2332.    <span class="visually-hidden">Laptop Components</span>
  2333.  </div>
  2334. </button>
  2335.  
  2336.        
  2337.  
  2338.        
  2339.          
  2340.  
  2341.  
  2342.  
  2343.  
  2344.  
  2345.  
  2346.  
  2347.  
  2348.  
  2349.  
  2350.  
  2351.  
  2352. <ul
  2353.  class="
  2354.    navmenu
  2355.    navmenu-depth-3
  2356.    navmenu-submenu
  2357.    
  2358.  "
  2359.  data-navmenu
  2360.  data-accordion-content
  2361.  data-navmenu-submenu
  2362.  aria-label="Main Menu 02"
  2363. >
  2364.  
  2365.    
  2366.  
  2367.    
  2368.    
  2369.  
  2370.    
  2371.    
  2372.  
  2373.    
  2374.  
  2375.    
  2376.      <li
  2377.        class="navmenu-item navmenu-id-ac-adapters"
  2378.      >
  2379.        <a
  2380.        class="
  2381.          navmenu-link
  2382.          navmenu-link-depth-3
  2383.          
  2384.        "
  2385.        href="/collections/ac-adapters"
  2386.        >
  2387.          
  2388.          AC Adapters
  2389. </a>
  2390.      </li>
  2391.    
  2392.  
  2393.    
  2394.  
  2395.    
  2396.    
  2397.  
  2398.    
  2399.    
  2400.  
  2401.    
  2402.  
  2403.    
  2404.      <li
  2405.        class="navmenu-item navmenu-id-batteries"
  2406.      >
  2407.        <a
  2408.        class="
  2409.          navmenu-link
  2410.          navmenu-link-depth-3
  2411.          
  2412.        "
  2413.        href="/collections/batteries"
  2414.        >
  2415.          
  2416.          Batteries
  2417. </a>
  2418.      </li>
  2419.    
  2420.  
  2421.    
  2422.  
  2423.    
  2424.    
  2425.  
  2426.    
  2427.    
  2428.  
  2429.    
  2430.  
  2431.    
  2432.      <li
  2433.        class="navmenu-item navmenu-id-bezels-cases-covers"
  2434.      >
  2435.        <a
  2436.        class="
  2437.          navmenu-link
  2438.          navmenu-link-depth-3
  2439.          
  2440.        "
  2441.        href="/collections/cases-covers-bezels"
  2442.        >
  2443.          
  2444.          Bezels Cases & Covers
  2445. </a>
  2446.      </li>
  2447.    
  2448.  
  2449.    
  2450.  
  2451.    
  2452.    
  2453.  
  2454.    
  2455.    
  2456.  
  2457.    
  2458.  
  2459.    
  2460.      <li
  2461.        class="navmenu-item navmenu-id-boards"
  2462.      >
  2463.        <a
  2464.        class="
  2465.          navmenu-link
  2466.          navmenu-link-depth-3
  2467.          
  2468.        "
  2469.        href="/collections/boards"
  2470.        >
  2471.          
  2472.          Boards
  2473. </a>
  2474.      </li>
  2475.    
  2476.  
  2477.    
  2478.  
  2479.    
  2480.    
  2481.  
  2482.    
  2483.    
  2484.  
  2485.    
  2486.  
  2487.    
  2488.      <li
  2489.        class="navmenu-item navmenu-id-cables"
  2490.      >
  2491.        <a
  2492.        class="
  2493.          navmenu-link
  2494.          navmenu-link-depth-3
  2495.          
  2496.        "
  2497.        href="/collections/cables"
  2498.        >
  2499.          
  2500.          Cables
  2501. </a>
  2502.      </li>
  2503.    
  2504.  
  2505.    
  2506.  
  2507.    
  2508.    
  2509.  
  2510.    
  2511.    
  2512.  
  2513.    
  2514.  
  2515.    
  2516.      <li
  2517.        class="navmenu-item navmenu-id-dc-jack-cables"
  2518.      >
  2519.        <a
  2520.        class="
  2521.          navmenu-link
  2522.          navmenu-link-depth-3
  2523.          
  2524.        "
  2525.        href="/collections/dc-jack-cables"
  2526.        >
  2527.          
  2528.          DC Jack Cables
  2529. </a>
  2530.      </li>
  2531.    
  2532.  
  2533.    
  2534.  
  2535.    
  2536.    
  2537.  
  2538.    
  2539.    
  2540.  
  2541.    
  2542.  
  2543.    
  2544.      <li
  2545.        class="navmenu-item navmenu-id-fans"
  2546.      >
  2547.        <a
  2548.        class="
  2549.          navmenu-link
  2550.          navmenu-link-depth-3
  2551.          
  2552.        "
  2553.        href="/collections/fans"
  2554.        >
  2555.          
  2556.          Fans
  2557. </a>
  2558.      </li>
  2559.    
  2560.  
  2561.    
  2562.  
  2563.    
  2564.    
  2565.  
  2566.    
  2567.    
  2568.  
  2569.    
  2570.  
  2571.    
  2572.      <li
  2573.        class="navmenu-item navmenu-id-hard-drive-brackets"
  2574.      >
  2575.        <a
  2576.        class="
  2577.          navmenu-link
  2578.          navmenu-link-depth-3
  2579.          
  2580.        "
  2581.        href="/collections/hard-drive-brackets"
  2582.        >
  2583.          
  2584.          Hard Drive Brackets
  2585. </a>
  2586.      </li>
  2587.    
  2588.  
  2589.    
  2590.  
  2591.    
  2592.    
  2593.  
  2594.    
  2595.    
  2596.  
  2597.    
  2598.  
  2599.    
  2600.      <li
  2601.        class="navmenu-item navmenu-id-hard-drives"
  2602.      >
  2603.        <a
  2604.        class="
  2605.          navmenu-link
  2606.          navmenu-link-depth-3
  2607.          
  2608.        "
  2609.        href="/collections/laptop-hard-drive"
  2610.        >
  2611.          
  2612.          Hard Drives
  2613. </a>
  2614.      </li>
  2615.    
  2616.  
  2617.    
  2618.  
  2619.    
  2620.    
  2621.  
  2622.    
  2623.    
  2624.  
  2625.    
  2626.  
  2627.    
  2628.      <li
  2629.        class="navmenu-item navmenu-id-laptop-case-parts"
  2630.      >
  2631.        <a
  2632.        class="
  2633.          navmenu-link
  2634.          navmenu-link-depth-3
  2635.          
  2636.        "
  2637.        href="/collections/laptop-case-parts"
  2638.        >
  2639.          
  2640.          - Laptop Case Parts
  2641. </a>
  2642.      </li>
  2643.    
  2644.  
  2645.    
  2646.  
  2647.    
  2648.    
  2649.  
  2650.    
  2651.    
  2652.  
  2653.    
  2654.  
  2655.    
  2656.      <li
  2657.        class="navmenu-item navmenu-id-hinges"
  2658.      >
  2659.        <a
  2660.        class="
  2661.          navmenu-link
  2662.          navmenu-link-depth-3
  2663.          
  2664.        "
  2665.        href="/collections/hinges"
  2666.        >
  2667.          
  2668.          Hinges
  2669. </a>
  2670.      </li>
  2671.    
  2672.  
  2673.    
  2674.  
  2675.    
  2676.    
  2677.  
  2678.    
  2679.    
  2680.  
  2681.    
  2682.  
  2683.    
  2684.      <li
  2685.        class="navmenu-item navmenu-id-laptop-case"
  2686.      >
  2687.        <a
  2688.        class="
  2689.          navmenu-link
  2690.          navmenu-link-depth-3
  2691.          
  2692.        "
  2693.        href="/collections/laptop-case"
  2694.        >
  2695.          
  2696.          Laptop Case
  2697. </a>
  2698.      </li>
  2699.    
  2700.  
  2701.    
  2702.  
  2703.    
  2704.    
  2705.  
  2706.    
  2707.    
  2708.  
  2709.    
  2710.  
  2711.    
  2712.      <li
  2713.        class="navmenu-item navmenu-id-laptop-cover"
  2714.      >
  2715.        <a
  2716.        class="
  2717.          navmenu-link
  2718.          navmenu-link-depth-3
  2719.          
  2720.        "
  2721.        href="/collections/laptop-cover"
  2722.        >
  2723.          
  2724.          Laptop Cover
  2725. </a>
  2726.      </li>
  2727.    
  2728.  
  2729.    
  2730.  
  2731.    
  2732.    
  2733.  
  2734.    
  2735.    
  2736.  
  2737.    
  2738.  
  2739.    
  2740.      <li
  2741.        class="navmenu-item navmenu-id-thermal-printer"
  2742.      >
  2743.        <a
  2744.        class="
  2745.          navmenu-link
  2746.          navmenu-link-depth-3
  2747.          
  2748.        "
  2749.        href="/collections/thermal-printer"
  2750.        >
  2751.          
  2752.          Thermal Printer
  2753. </a>
  2754.      </li>
  2755.    
  2756.  
  2757. </ul>
  2758.  
  2759.        
  2760.        
  2761.      </li>
  2762.    
  2763.  
  2764.    
  2765.  
  2766.    
  2767.    
  2768.  
  2769.    
  2770.    
  2771.  
  2772.    
  2773.  
  2774.    
  2775. <li
  2776.        class="navmenu-item        navmenu-item-parent        navmenu-id-"
  2777.        data-navmenu-parent
  2778.      >
  2779.        
  2780.          <a
  2781.            href="/collections/all"
  2782.        
  2783.          class="navmenu-link navmenu-link-parent "
  2784.          
  2785.            aria-haspopup="true"
  2786.            aria-expanded="false"
  2787.          
  2788.        >
  2789.          
  2790.          .....
  2791.  
  2792.        
  2793.          </a>
  2794.        
  2795.  
  2796.        
  2797.          
  2798.  
  2799.  
  2800.  
  2801. <button
  2802.  class="navmenu-button"
  2803.  data-navmenu-trigger
  2804.  aria-expanded="false"
  2805. >
  2806.  <div class="navmenu-button-wrapper" tabindex="-1">
  2807.    <span class="navmenu-icon navmenu-icon-depth-2">
  2808.      <svg
  2809.  aria-hidden="true"
  2810.  focusable="false"
  2811.  role="presentation"
  2812.  width="8"
  2813.  height="6"
  2814.  viewBox="0 0 8 6"
  2815.  fill="none"
  2816.  xmlns="http://www.w3.org/2000/svg"
  2817.  class="icon-chevron-down"
  2818. >
  2819. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2820. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2821. </svg>
  2822.  
  2823.    </span>
  2824.    <span class="visually-hidden">.....</span>
  2825.  </div>
  2826. </button>
  2827.  
  2828.        
  2829.  
  2830.        
  2831.          
  2832.  
  2833.  
  2834.  
  2835.  
  2836.  
  2837.  
  2838.  
  2839.  
  2840.  
  2841.  
  2842.  
  2843.  
  2844. <ul
  2845.  class="
  2846.    navmenu
  2847.    navmenu-depth-3
  2848.    navmenu-submenu
  2849.    
  2850.  "
  2851.  data-navmenu
  2852.  data-accordion-content
  2853.  data-navmenu-submenu
  2854.  aria-label="Main Menu 02"
  2855. >
  2856.  
  2857.    
  2858.  
  2859.    
  2860.    
  2861.  
  2862.    
  2863.    
  2864.  
  2865.    
  2866.  
  2867.    
  2868.      <li
  2869.        class="navmenu-item navmenu-id-keyboards"
  2870.      >
  2871.        <a
  2872.        class="
  2873.          navmenu-link
  2874.          navmenu-link-depth-3
  2875.          
  2876.        "
  2877.        href="/collections/keyboards-1"
  2878.        >
  2879.          
  2880.          Keyboards
  2881. </a>
  2882.      </li>
  2883.    
  2884.  
  2885.    
  2886.  
  2887.    
  2888.    
  2889.  
  2890.    
  2891.    
  2892.  
  2893.    
  2894.  
  2895.    
  2896.      <li
  2897.        class="navmenu-item navmenu-id-acer-keyboard"
  2898.      >
  2899.        <a
  2900.        class="
  2901.          navmenu-link
  2902.          navmenu-link-depth-3
  2903.          
  2904.        "
  2905.        href="/collections/acer-keyboard"
  2906.        >
  2907.          
  2908.          - Acer keyboard
  2909. </a>
  2910.      </li>
  2911.    
  2912.  
  2913.    
  2914.  
  2915.    
  2916.    
  2917.  
  2918.    
  2919.    
  2920.  
  2921.    
  2922.  
  2923.    
  2924.      <li
  2925.        class="navmenu-item navmenu-id-asus-keyboards"
  2926.      >
  2927.        <a
  2928.        class="
  2929.          navmenu-link
  2930.          navmenu-link-depth-3
  2931.          
  2932.        "
  2933.        href="/collections/asus-keyboard"
  2934.        >
  2935.          
  2936.          - Asus keyboards
  2937. </a>
  2938.      </li>
  2939.    
  2940.  
  2941.    
  2942.  
  2943.    
  2944.    
  2945.  
  2946.    
  2947.    
  2948.  
  2949.    
  2950.  
  2951.    
  2952.      <li
  2953.        class="navmenu-item navmenu-id-dell-keyboard"
  2954.      >
  2955.        <a
  2956.        class="
  2957.          navmenu-link
  2958.          navmenu-link-depth-3
  2959.          
  2960.        "
  2961.        href="/collections/dell-keyboard"
  2962.        >
  2963.          
  2964.          - Dell keyboard
  2965. </a>
  2966.      </li>
  2967.    
  2968.  
  2969.    
  2970.  
  2971.    
  2972.    
  2973.  
  2974.    
  2975.    
  2976.  
  2977.    
  2978.  
  2979.    
  2980.      <li
  2981.        class="navmenu-item navmenu-id-lenovo-keyboard"
  2982.      >
  2983.        <a
  2984.        class="
  2985.          navmenu-link
  2986.          navmenu-link-depth-3
  2987.          
  2988.        "
  2989.        href="/collections/lenovo-keyboard"
  2990.        >
  2991.          
  2992.          - Lenovo keyboard
  2993. </a>
  2994.      </li>
  2995.    
  2996.  
  2997.    
  2998.  
  2999.    
  3000.    
  3001.  
  3002.    
  3003.    
  3004.  
  3005.    
  3006.  
  3007.    
  3008.      <li
  3009.        class="navmenu-item navmenu-id-hp-keyboard"
  3010.      >
  3011.        <a
  3012.        class="
  3013.          navmenu-link
  3014.          navmenu-link-depth-3
  3015.          
  3016.        "
  3017.        href="/collections/hp-keyboard"
  3018.        >
  3019.          
  3020.          - Hp Keyboard
  3021. </a>
  3022.      </li>
  3023.    
  3024.  
  3025.    
  3026.  
  3027.    
  3028.    
  3029.  
  3030.    
  3031.    
  3032.  
  3033.    
  3034.  
  3035.    
  3036.      <li
  3037.        class="navmenu-item navmenu-id-backlit-keyboards"
  3038.      >
  3039.        <a
  3040.        class="
  3041.          navmenu-link
  3042.          navmenu-link-depth-3
  3043.          
  3044.        "
  3045.        href="/collections/backlit-keyboard"
  3046.        >
  3047.          
  3048.          - Backlit Keyboards
  3049. </a>
  3050.      </li>
  3051.    
  3052.  
  3053.    
  3054.  
  3055.    
  3056.    
  3057.  
  3058.    
  3059.    
  3060.  
  3061.    
  3062.  
  3063.    
  3064.      <li
  3065.        class="navmenu-item navmenu-id-memory"
  3066.      >
  3067.        <a
  3068.        class="
  3069.          navmenu-link
  3070.          navmenu-link-depth-3
  3071.          
  3072.        "
  3073.        href="/collections/memory"
  3074.        >
  3075.          
  3076.          Memory
  3077. </a>
  3078.      </li>
  3079.    
  3080.  
  3081.    
  3082.  
  3083.    
  3084.    
  3085.  
  3086.    
  3087.    
  3088.  
  3089.    
  3090.  
  3091.    
  3092.      <li
  3093.        class="navmenu-item navmenu-id-motherboards"
  3094.      >
  3095.        <a
  3096.        class="
  3097.          navmenu-link
  3098.          navmenu-link-depth-3
  3099.          
  3100.        "
  3101.        href="/collections/motherboards"
  3102.        >
  3103.          
  3104.          Motherboards
  3105. </a>
  3106.      </li>
  3107.    
  3108.  
  3109.    
  3110.  
  3111.    
  3112.    
  3113.  
  3114.    
  3115.    
  3116.  
  3117.    
  3118.  
  3119.    
  3120.      <li
  3121.        class="navmenu-item navmenu-id-optical-drives"
  3122.      >
  3123.        <a
  3124.        class="
  3125.          navmenu-link
  3126.          navmenu-link-depth-3
  3127.          
  3128.        "
  3129.        href="/collections/optical-drives"
  3130.        >
  3131.          
  3132.          Optical Drives
  3133. </a>
  3134.      </li>
  3135.    
  3136.  
  3137.    
  3138.  
  3139.    
  3140.    
  3141.  
  3142.    
  3143.    
  3144.  
  3145.    
  3146.  
  3147.    
  3148.      <li
  3149.        class="navmenu-item navmenu-id-power-supplies"
  3150.      >
  3151.        <a
  3152.        class="
  3153.          navmenu-link
  3154.          navmenu-link-depth-3
  3155.          
  3156.        "
  3157.        href="/collections/power-supplies"
  3158.        >
  3159.          
  3160.          Power Supplies
  3161. </a>
  3162.      </li>
  3163.    
  3164.  
  3165.    
  3166.  
  3167.    
  3168.    
  3169.  
  3170.    
  3171.    
  3172.  
  3173.    
  3174.  
  3175.    
  3176.      <li
  3177.        class="navmenu-item navmenu-id-screens"
  3178.      >
  3179.        <a
  3180.        class="
  3181.          navmenu-link
  3182.          navmenu-link-depth-3
  3183.          
  3184.        "
  3185.        href="/collections/screens"
  3186.        >
  3187.          
  3188.          Screens
  3189. </a>
  3190.      </li>
  3191.    
  3192.  
  3193.    
  3194.  
  3195.    
  3196.    
  3197.  
  3198.    
  3199.    
  3200.  
  3201.    
  3202.  
  3203.    
  3204.      <li
  3205.        class="navmenu-item navmenu-id-touch-screen-laptop"
  3206.      >
  3207.        <a
  3208.        class="
  3209.          navmenu-link
  3210.          navmenu-link-depth-3
  3211.          
  3212.        "
  3213.        href="/collections/touch-screen-laptop"
  3214.        >
  3215.          
  3216.          - Touch Screen Laptop
  3217. </a>
  3218.      </li>
  3219.    
  3220.  
  3221.    
  3222.  
  3223.    
  3224.    
  3225.  
  3226.    
  3227.    
  3228.  
  3229.    
  3230.  
  3231.    
  3232.      <li
  3233.        class="navmenu-item navmenu-id-screens-touch-digitizers"
  3234.      >
  3235.        <a
  3236.        class="
  3237.          navmenu-link
  3238.          navmenu-link-depth-3
  3239.          
  3240.        "
  3241.        href="/collections/screens-touch-digitizers"
  3242.        >
  3243.          
  3244.          Screens - Touch Digitizers
  3245. </a>
  3246.      </li>
  3247.    
  3248.  
  3249.    
  3250.  
  3251.    
  3252.    
  3253.  
  3254.    
  3255.    
  3256.  
  3257.    
  3258.  
  3259.    
  3260.      <li
  3261.        class="navmenu-item navmenu-id-speakers"
  3262.      >
  3263.        <a
  3264.        class="
  3265.          navmenu-link
  3266.          navmenu-link-depth-3
  3267.          
  3268.        "
  3269.        href="/collections/speakers"
  3270.        >
  3271.          
  3272.          Speakers
  3273. </a>
  3274.      </li>
  3275.    
  3276.  
  3277.    
  3278.  
  3279.    
  3280.    
  3281.  
  3282.    
  3283.    
  3284.  
  3285.    
  3286.  
  3287.    
  3288.      <li
  3289.        class="navmenu-item navmenu-id-touchpads"
  3290.      >
  3291.        <a
  3292.        class="
  3293.          navmenu-link
  3294.          navmenu-link-depth-3
  3295.          
  3296.        "
  3297.        href="/collections/touchpads"
  3298.        >
  3299.          
  3300.          Touchpads
  3301. </a>
  3302.      </li>
  3303.    
  3304.  
  3305. </ul>
  3306.  
  3307.        
  3308.        
  3309.      </li>
  3310.    
  3311.  
  3312.    
  3313.  
  3314.    
  3315.    
  3316.  
  3317.    
  3318.    
  3319.  
  3320.    
  3321.  
  3322.    
  3323. <li
  3324.        class="navmenu-item        navmenu-item-parent        navmenu-id-other-components"
  3325.        data-navmenu-parent
  3326.      >
  3327.        
  3328.          <a
  3329.            href="/collections/all"
  3330.        
  3331.          class="navmenu-link navmenu-link-parent "
  3332.          
  3333.            aria-haspopup="true"
  3334.            aria-expanded="false"
  3335.          
  3336.        >
  3337.          
  3338.          Other Components
  3339.  
  3340.        
  3341.          </a>
  3342.        
  3343.  
  3344.        
  3345.          
  3346.  
  3347.  
  3348.  
  3349. <button
  3350.  class="navmenu-button"
  3351.  data-navmenu-trigger
  3352.  aria-expanded="false"
  3353. >
  3354.  <div class="navmenu-button-wrapper" tabindex="-1">
  3355.    <span class="navmenu-icon navmenu-icon-depth-2">
  3356.      <svg
  3357.  aria-hidden="true"
  3358.  focusable="false"
  3359.  role="presentation"
  3360.  width="8"
  3361.  height="6"
  3362.  viewBox="0 0 8 6"
  3363.  fill="none"
  3364.  xmlns="http://www.w3.org/2000/svg"
  3365.  class="icon-chevron-down"
  3366. >
  3367. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3368. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3369. </svg>
  3370.  
  3371.    </span>
  3372.    <span class="visually-hidden">Other Components</span>
  3373.  </div>
  3374. </button>
  3375.  
  3376.        
  3377.  
  3378.        
  3379.          
  3380.  
  3381.  
  3382.  
  3383.  
  3384.  
  3385.  
  3386.  
  3387.  
  3388.  
  3389.  
  3390.  
  3391.  
  3392. <ul
  3393.  class="
  3394.    navmenu
  3395.    navmenu-depth-3
  3396.    navmenu-submenu
  3397.    
  3398.  "
  3399.  data-navmenu
  3400.  data-accordion-content
  3401.  data-navmenu-submenu
  3402.  aria-label="Main Menu 02"
  3403. >
  3404.  
  3405.    
  3406.  
  3407.    
  3408.    
  3409.  
  3410.    
  3411.    
  3412.  
  3413.    
  3414.  
  3415.    
  3416.      <li
  3417.        class="navmenu-item navmenu-id-accessories"
  3418.      >
  3419.        <a
  3420.        class="
  3421.          navmenu-link
  3422.          navmenu-link-depth-3
  3423.          
  3424.        "
  3425.        href="/collections/accessories"
  3426.        >
  3427.          
  3428.          Accessories
  3429. </a>
  3430.      </li>
  3431.    
  3432.  
  3433.    
  3434.  
  3435.    
  3436.    
  3437.  
  3438.    
  3439.    
  3440.  
  3441.    
  3442.  
  3443.    
  3444.      <li
  3445.        class="navmenu-item navmenu-id-phone-parts"
  3446.      >
  3447.        <a
  3448.        class="
  3449.          navmenu-link
  3450.          navmenu-link-depth-3
  3451.          
  3452.        "
  3453.        href="/collections/phone-parts"
  3454.        >
  3455.          
  3456.          Phone Parts
  3457. </a>
  3458.      </li>
  3459.    
  3460.  
  3461.    
  3462.  
  3463.    
  3464.    
  3465.  
  3466.    
  3467.    
  3468.  
  3469.    
  3470.  
  3471.    
  3472.      <li
  3473.        class="navmenu-item navmenu-id-printer-parts"
  3474.      >
  3475.        <a
  3476.        class="
  3477.          navmenu-link
  3478.          navmenu-link-depth-3
  3479.          
  3480.        "
  3481.        href="/collections/printer-parts"
  3482.        >
  3483.          
  3484.          Printer Parts
  3485. </a>
  3486.      </li>
  3487.    
  3488.  
  3489.    
  3490.  
  3491.    
  3492.    
  3493.  
  3494.    
  3495.    
  3496.  
  3497.    
  3498.  
  3499.    
  3500.      <li
  3501.        class="navmenu-item navmenu-id-server-parts"
  3502.      >
  3503.        <a
  3504.        class="
  3505.          navmenu-link
  3506.          navmenu-link-depth-3
  3507.          
  3508.        "
  3509.        href="/collections/server-parts"
  3510.        >
  3511.          
  3512.          Server Parts
  3513. </a>
  3514.      </li>
  3515.    
  3516.  
  3517.    
  3518.  
  3519.    
  3520.    
  3521.  
  3522.    
  3523.    
  3524.  
  3525.    
  3526.  
  3527.    
  3528.      <li
  3529.        class="navmenu-item navmenu-id-tablet-parts"
  3530.      >
  3531.        <a
  3532.        class="
  3533.          navmenu-link
  3534.          navmenu-link-depth-3
  3535.          
  3536.        "
  3537.        href="/collections/tablet-parts"
  3538.        >
  3539.          
  3540.          Tablet Parts
  3541. </a>
  3542.      </li>
  3543.    
  3544.  
  3545. </ul>
  3546.  
  3547.        
  3548.        
  3549.      </li>
  3550.    
  3551.  
  3552. </ul>
  3553.  
  3554.      
  3555.  
  3556.      
  3557.    </li>
  3558.  
  3559.    
  3560.    
  3561.  
  3562.    
  3563.    
  3564.    
  3565. <li
  3566.      class="navmenu-item            navmenu-id-about-us"
  3567.      
  3568.    >
  3569.      <a
  3570.        class="navmenu-link  "
  3571.        href="/pages/about-us"
  3572.        
  3573.      >
  3574.        About Us
  3575.      </a>
  3576.  
  3577.      
  3578.  
  3579.      
  3580.      
  3581.  
  3582.      
  3583.  
  3584.      
  3585.    </li>
  3586.  
  3587.    
  3588.    
  3589.  
  3590.    
  3591.    
  3592.    
  3593. <li
  3594.      class="navmenu-item            navmenu-id-repair-centers"
  3595.      
  3596.    >
  3597.      <a
  3598.        class="navmenu-link  "
  3599.        href="/pages/store-locator"
  3600.        
  3601.      >
  3602.        Repair Centers
  3603.      </a>
  3604.  
  3605.      
  3606.  
  3607.      
  3608.      
  3609.  
  3610.      
  3611.  
  3612.      
  3613.    </li>
  3614.  
  3615.    
  3616.    
  3617.  
  3618.    
  3619.    
  3620.    
  3621. <li
  3622.      class="navmenu-item            navmenu-id-parts-request"
  3623.      
  3624.    >
  3625.      <a
  3626.        class="navmenu-link  "
  3627.        href="/pages/part-request"
  3628.        
  3629.      >
  3630.        Parts Request
  3631.      </a>
  3632.  
  3633.      
  3634.  
  3635.      
  3636.      
  3637.  
  3638.      
  3639.  
  3640.      
  3641.    </li>
  3642.  
  3643.    
  3644.    
  3645.  
  3646.    
  3647.    
  3648.    
  3649. <li
  3650.      class="navmenu-item            navmenu-id-shipping"
  3651.      
  3652.    >
  3653.      <a
  3654.        class="navmenu-link  "
  3655.        href="/pages/shipping"
  3656.        
  3657.      >
  3658.        Shipping
  3659.      </a>
  3660.  
  3661.      
  3662.  
  3663.      
  3664.      
  3665.  
  3666.      
  3667.  
  3668.      
  3669.    </li>
  3670.  
  3671.    
  3672.    
  3673.  
  3674.    
  3675.    
  3676.    
  3677. <li
  3678.      class="navmenu-item            navmenu-id-francais"
  3679.      
  3680.    >
  3681.      <a
  3682.        class="navmenu-link  "
  3683.        href="/pages/francais"
  3684.        
  3685.      >
  3686.        Français
  3687.      </a>
  3688.  
  3689.      
  3690.  
  3691.      
  3692.      
  3693.  
  3694.      
  3695.  
  3696.      
  3697.    </li>
  3698.  
  3699. </ul>
  3700.  
  3701.  
  3702.      
  3703.    </div>
  3704.    <div class="utility-bar__mobile-disclosure" data-utility-mobile></div>
  3705.  </div>
  3706.  
  3707.  <div class="mobile-nav-overlay" data-mobile-nav-overlay></div>
  3708. </div>
  3709.  
  3710. </header>
  3711.  
  3712. </div>
  3713. <!-- END sections: header-group -->
  3714.  
  3715.    <div style="--background-color: #fff">
  3716.      
  3717.  
  3718.  
  3719.    </div>
  3720.  
  3721.    <div class="intersection-target" data-header-intersection-target></div>
  3722.    <div class="site-main-dimmer" data-site-main-dimmer></div>
  3723.    <main id="site-main" class="site-main" aria-label="Main content" tabindex="-1">
  3724.      <div id="shopify-section-template--15492296147031__dynamic_slideshow" class="shopify-section slideshow--section">
  3725.  
  3726.  
  3727.  
  3728. <script type="application/pxs-animation-mapping+json">
  3729.  {
  3730.    "blocks": [".slideshow-slide"],
  3731.    "elements": [
  3732.      ".slideshow-slide__heading",
  3733.      ".slideshow-slide__subheading",
  3734.      ".slideshow-slide__text",
  3735.      ".slideshow-slide__button"
  3736.    ]
  3737.  }
  3738. </script>
  3739.  
  3740. <style data-shopify>
  3741.  #shopify-section-template--15492296147031__dynamic_slideshow {
  3742.    --autoplay-interval: 5s;
  3743.  }
  3744.  
  3745.  
  3746.    @media screen and (min-width: 720px) {
  3747.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3748.        height: 55.55555555555556vw;
  3749.      }
  3750.    }
  3751.  
  3752.  
  3753.  
  3754.    @media screen and (max-width: 719px) {
  3755.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3756.        
  3757.          height: 55.55555555555556vw;
  3758.        
  3759.      }
  3760.    }
  3761.  
  3762. </style>
  3763.  
  3764.  
  3765.  
  3766.  
  3767. <script
  3768.  type="application/json"
  3769.  data-section-type="pxs-slideshow"
  3770.  data-section-id="template--15492296147031__dynamic_slideshow"
  3771.  data-section-data
  3772. >
  3773.  {
  3774.    "enable_autoplay": true,
  3775.    "autoplay_interval": 5,
  3776.    "mobile_navigation_adjust": true,
  3777.    "transition_fade": null,
  3778.    "slide_attraction": null,
  3779.    "slide_friction": null,
  3780.    "next_text": "Next slide",
  3781.    "previous_text": "Previous slide"
  3782.  }
  3783. </script>
  3784.  
  3785. <section
  3786.  class="
  3787.    slideshow
  3788.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  3789.  "
  3790.  aria-label="Slideshow"
  3791.  data-autoplay="true"
  3792.  data-autoplay-interval="5"
  3793.  data-banner="false"
  3794.  data-slideshow
  3795. ><div
  3796.    class="slideshow__wrapper "
  3797.    data-slideshow-wrapper
  3798.  >
  3799.  
  3800.  
  3801. <div
  3802.  class="slideshow-slide  "
  3803.  aria-label="Slide 1 of 5"
  3804.  data-text-color="#FFFFFF"
  3805.  tabindex="-1"
  3806.  data-slideshow-slide
  3807.  data-slide-index="0"
  3808.  
  3809. ><div
  3810.      class="
  3811.        slideshow-slide__image-wrapper
  3812.        
  3813.      "
  3814.      data-slide-image-wrapper
  3815.    >
  3816.  
  3817.  
  3818.    <noscript data-rimg-noscript>
  3819.      <img loading="lazy"
  3820.        
  3821.          src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3822.        
  3823.  
  3824.        alt=""
  3825.        data-rimg="noscript"
  3826.        srcset="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850 1x"
  3827.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3828.        style="
  3829.        object-fit:cover;object-position:50.0% 50.0%;
  3830.      
  3831. "
  3832.        
  3833.      >
  3834.    </noscript>
  3835.  
  3836.  
  3837.  <img loading="lazy"
  3838.    
  3839.      src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3840.    
  3841.    alt=""
  3842.  
  3843.    
  3844.      data-rimg="lazy"
  3845.      data-rimg-scale="1"
  3846.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2_1_{size}.jpg?v=1739722850"
  3847.      data-rimg-max="1800x1000"
  3848.      data-rimg-crop="false"
  3849.      
  3850.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3851.    
  3852.  
  3853.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3854.    style="
  3855.        object-fit:cover;object-position:50.0% 50.0%;
  3856.      
  3857. "
  3858.    
  3859.  >
  3860.  
  3861.  
  3862.  
  3863.  <div data-rimg-canvas></div>
  3864.  
  3865.  
  3866. <div
  3867.          class="
  3868.            slideshow-slide__overlay
  3869.            
  3870.          "
  3871.          style="
  3872.            
  3873.              background-color: #000000;
  3874.            
  3875.            opacity: 0.01;
  3876.          "
  3877.        ></div></div><div
  3878.    class="
  3879.      slideshow-slide__content
  3880.      slideshow-slide__content--slide_tJp4ET
  3881.      slideshow-slide__content--text-center
  3882.    "
  3883.    data-slide-content
  3884.  ></div>
  3885. </div>
  3886.  
  3887.  
  3888.  
  3889.  
  3890. <div
  3891.  class="slideshow-slide  "
  3892.  aria-label="Slide 2 of 5"
  3893.  data-text-color="#FFFFFF"
  3894.  tabindex="-1"
  3895.  data-slideshow-slide
  3896.  data-slide-index="1"
  3897.  
  3898. ><div
  3899.      class="
  3900.        slideshow-slide__image-wrapper
  3901.        
  3902.      "
  3903.      data-slide-image-wrapper
  3904.    >
  3905.  
  3906.  
  3907.    <noscript data-rimg-noscript>
  3908.      <img loading="lazy"
  3909.        
  3910.          src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3911.        
  3912.  
  3913.        alt=""
  3914.        data-rimg="noscript"
  3915.        srcset="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692 1x"
  3916.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3917.        style="
  3918.        object-fit:cover;object-position:50.0% 50.0%;
  3919.      
  3920. "
  3921.        
  3922.      >
  3923.    </noscript>
  3924.  
  3925.  
  3926.  <img loading="lazy"
  3927.    
  3928.      src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3929.    
  3930.    alt=""
  3931.  
  3932.    
  3933.      data-rimg="lazy"
  3934.      data-rimg-scale="1"
  3935.      data-rimg-template="//laptopparts.ca/cdn/shop/files/3_1_{size}.jpg?v=1739722692"
  3936.      data-rimg-max="1800x1000"
  3937.      data-rimg-crop="false"
  3938.      
  3939.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3940.    
  3941.  
  3942.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3943.    style="
  3944.        object-fit:cover;object-position:50.0% 50.0%;
  3945.      
  3946. "
  3947.    
  3948.  >
  3949.  
  3950.  
  3951.  
  3952.  <div data-rimg-canvas></div>
  3953.  
  3954.  
  3955. <div
  3956.          class="
  3957.            slideshow-slide__overlay
  3958.            
  3959.          "
  3960.          style="
  3961.            
  3962.              background-color: #000000;
  3963.            
  3964.            opacity: 0.01;
  3965.          "
  3966.        ></div></div><div
  3967.    class="
  3968.      slideshow-slide__content
  3969.      slideshow-slide__content--slide_QztrPf
  3970.      slideshow-slide__content--text-center
  3971.    "
  3972.    data-slide-content
  3973.  ></div>
  3974. </div>
  3975.  
  3976.  
  3977.  
  3978.  
  3979. <div
  3980.  class="slideshow-slide  "
  3981.  aria-label="Slide 3 of 5"
  3982.  data-text-color="#FFFFFF"
  3983.  tabindex="-1"
  3984.  data-slideshow-slide
  3985.  data-slide-index="2"
  3986.  
  3987. ><div
  3988.      class="
  3989.        slideshow-slide__image-wrapper
  3990.        
  3991.      "
  3992.      data-slide-image-wrapper
  3993.    >
  3994.  
  3995.  
  3996.    <noscript data-rimg-noscript>
  3997.      <img loading="lazy"
  3998.        
  3999.          src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  4000.        
  4001.  
  4002.        alt=""
  4003.        data-rimg="noscript"
  4004.        srcset="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085 1x"
  4005.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4006.        style="
  4007.        object-fit:cover;object-position:50.0% 50.0%;
  4008.      
  4009. "
  4010.        
  4011.      >
  4012.    </noscript>
  4013.  
  4014.  
  4015.  <img loading="lazy"
  4016.    
  4017.      src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  4018.    
  4019.    alt=""
  4020.  
  4021.    
  4022.      data-rimg="lazy"
  4023.      data-rimg-scale="1"
  4024.      data-rimg-template="//laptopparts.ca/cdn/shop/files/1_1_{size}.jpg?v=1739723085"
  4025.      data-rimg-max="1800x1000"
  4026.      data-rimg-crop="false"
  4027.      
  4028.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4029.    
  4030.  
  4031.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4032.    style="
  4033.        object-fit:cover;object-position:50.0% 50.0%;
  4034.      
  4035. "
  4036.    
  4037.  >
  4038.  
  4039.  
  4040.  
  4041.  <div data-rimg-canvas></div>
  4042.  
  4043.  
  4044. <div
  4045.          class="
  4046.            slideshow-slide__overlay
  4047.            
  4048.          "
  4049.          style="
  4050.            
  4051.              background-color: #000000;
  4052.            
  4053.            opacity: 0.01;
  4054.          "
  4055.        ></div></div><div
  4056.    class="
  4057.      slideshow-slide__content
  4058.      slideshow-slide__content--slide_UPfjBG
  4059.      slideshow-slide__content--text-center
  4060.    "
  4061.    data-slide-content
  4062.  ></div>
  4063. </div>
  4064.  
  4065.  
  4066.  
  4067.  
  4068. <div
  4069.  class="slideshow-slide  "
  4070.  aria-label="Slide 4 of 5"
  4071.  data-text-color="#ffffff"
  4072.  tabindex="-1"
  4073.  data-slideshow-slide
  4074.  data-slide-index="3"
  4075.  
  4076. ><div
  4077.      class="
  4078.        slideshow-slide__image-wrapper
  4079.        
  4080.      "
  4081.      data-slide-image-wrapper
  4082.    >
  4083.  
  4084.  
  4085.    <noscript data-rimg-noscript>
  4086.      <img loading="lazy"
  4087.        
  4088.          src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4089.        
  4090.  
  4091.        alt=""
  4092.        data-rimg="noscript"
  4093.        srcset="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350 1x"
  4094.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4095.        style="
  4096.        object-fit:cover;object-position:50.0% 50.0%;
  4097.      
  4098. "
  4099.        
  4100.      >
  4101.    </noscript>
  4102.  
  4103.  
  4104.  <img loading="lazy"
  4105.    
  4106.      src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4107.    
  4108.    alt=""
  4109.  
  4110.    
  4111.      data-rimg="lazy"
  4112.      data-rimg-scale="1"
  4113.      data-rimg-template="//laptopparts.ca/cdn/shop/files/5_{size}.jpg?v=1739723350"
  4114.      data-rimg-max="1800x1000"
  4115.      data-rimg-crop="false"
  4116.      
  4117.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4118.    
  4119.  
  4120.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4121.    style="
  4122.        object-fit:cover;object-position:50.0% 50.0%;
  4123.      
  4124. "
  4125.    
  4126.  >
  4127.  
  4128.  
  4129.  
  4130.  <div data-rimg-canvas></div>
  4131.  
  4132.  
  4133. <div
  4134.          class="
  4135.            slideshow-slide__overlay
  4136.            
  4137.          "
  4138.          style="
  4139.            
  4140.              background-color: #000000;
  4141.            
  4142.            opacity: 0.01;
  4143.          "
  4144.        ></div></div><div
  4145.    class="
  4146.      slideshow-slide__content
  4147.      slideshow-slide__content--slide_MbNDbx
  4148.      slideshow-slide__content--text-center
  4149.    "
  4150.    data-slide-content
  4151.  ></div>
  4152. </div>
  4153.  
  4154.  
  4155.  
  4156.  
  4157. <div
  4158.  class="slideshow-slide  "
  4159.  aria-label="Slide 5 of 5"
  4160.  data-text-color="#FFFFFF"
  4161.  tabindex="-1"
  4162.  data-slideshow-slide
  4163.  data-slide-index="4"
  4164.  
  4165. ><div
  4166.      class="
  4167.        slideshow-slide__image-wrapper
  4168.        
  4169.      "
  4170.      data-slide-image-wrapper
  4171.    >
  4172.  
  4173.  
  4174.    <noscript data-rimg-noscript>
  4175.      <img loading="lazy"
  4176.        
  4177.          src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4178.        
  4179.  
  4180.        alt=""
  4181.        data-rimg="noscript"
  4182.        srcset="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234 1x"
  4183.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4184.        style="
  4185.        object-fit:cover;object-position:50.0% 50.0%;
  4186.      
  4187. "
  4188.        
  4189.      >
  4190.    </noscript>
  4191.  
  4192.  
  4193.  <img loading="lazy"
  4194.    
  4195.      src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4196.    
  4197.    alt=""
  4198.  
  4199.    
  4200.      data-rimg="lazy"
  4201.      data-rimg-scale="1"
  4202.      data-rimg-template="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_{size}.jpg?v=1739723234"
  4203.      data-rimg-max="1800x1000"
  4204.      data-rimg-crop="false"
  4205.      
  4206.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4207.    
  4208.  
  4209.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4210.    style="
  4211.        object-fit:cover;object-position:50.0% 50.0%;
  4212.      
  4213. "
  4214.    
  4215.  >
  4216.  
  4217.  
  4218.  
  4219.  <div data-rimg-canvas></div>
  4220.  
  4221.  
  4222. <div
  4223.          class="
  4224.            slideshow-slide__overlay
  4225.            
  4226.          "
  4227.          style="
  4228.            
  4229.              background-color: #000000;
  4230.            
  4231.            opacity: 0.01;
  4232.          "
  4233.        ></div></div><div
  4234.    class="
  4235.      slideshow-slide__content
  4236.      slideshow-slide__content--slide_eGUxJ7
  4237.      slideshow-slide__content--text-center
  4238.    "
  4239.    data-slide-content
  4240.  ></div>
  4241. </div>
  4242.  
  4243. </div><ol
  4244.      class="slideshow-pagination"
  4245.      data-slideshow-pagination
  4246.    ><li class="slideshow-pagination__dot">
  4247.          <button
  4248.            class="slideshow-pagination__button"
  4249.            data-selected="true"
  4250.            data-slide-button="0"
  4251.          >
  4252.            
  4253.              
  4254.    <div class="circle-timer">
  4255.      <svg class="circle-timer__svg">
  4256.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4257.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4258.      </svg>
  4259.    </div>
  4260.  
  4261.            
  4262.            <span class="visually-hidden">Slide 1</span>
  4263.          </button>
  4264.        </li><li class="slideshow-pagination__dot">
  4265.          <button
  4266.            class="slideshow-pagination__button"
  4267.            data-selected="false"
  4268.            data-slide-button="1"
  4269.          >
  4270.            
  4271.              
  4272.    <div class="circle-timer">
  4273.      <svg class="circle-timer__svg">
  4274.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4275.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4276.      </svg>
  4277.    </div>
  4278.  
  4279.            
  4280.            <span class="visually-hidden">Slide 2</span>
  4281.          </button>
  4282.        </li><li class="slideshow-pagination__dot">
  4283.          <button
  4284.            class="slideshow-pagination__button"
  4285.            data-selected="false"
  4286.            data-slide-button="2"
  4287.          >
  4288.            
  4289.              
  4290.    <div class="circle-timer">
  4291.      <svg class="circle-timer__svg">
  4292.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4293.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4294.      </svg>
  4295.    </div>
  4296.  
  4297.            
  4298.            <span class="visually-hidden">Slide 3</span>
  4299.          </button>
  4300.        </li><li class="slideshow-pagination__dot">
  4301.          <button
  4302.            class="slideshow-pagination__button"
  4303.            data-selected="false"
  4304.            data-slide-button="3"
  4305.          >
  4306.            
  4307.              
  4308.    <div class="circle-timer">
  4309.      <svg class="circle-timer__svg">
  4310.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4311.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4312.      </svg>
  4313.    </div>
  4314.  
  4315.            
  4316.            <span class="visually-hidden">Slide 4</span>
  4317.          </button>
  4318.        </li><li class="slideshow-pagination__dot">
  4319.          <button
  4320.            class="slideshow-pagination__button"
  4321.            data-selected="false"
  4322.            data-slide-button="4"
  4323.          >
  4324.            
  4325.              
  4326.    <div class="circle-timer">
  4327.      <svg class="circle-timer__svg">
  4328.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4329.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4330.      </svg>
  4331.    </div>
  4332.  
  4333.            
  4334.            <span class="visually-hidden">Slide 5</span>
  4335.          </button>
  4336.        </li></ol><div
  4337.    class="slideshow__current-slide visually-hidden"
  4338.    aria-live="polite"
  4339.    aria-atomic="true"
  4340.    data-slide-counter
  4341.    data-counter-template="Slide {{ count }} of {{ total }}"
  4342.  >
  4343.  </div>
  4344. </section>
  4345.  
  4346.  
  4347.  
  4348. </div><div id="shopify-section-template--15492296147031__dynamic_featured_collection" class="shopify-section featured-collection--section"><script
  4349.  type="application/json"
  4350.  data-section-id="template--15492296147031__dynamic_featured_collection"
  4351.  data-section-type="dynamic-featured-collection"
  4352. ></script>
  4353.  
  4354. <script type="application/pxs-animation-mapping+json">
  4355.  {
  4356.    "blocks": [
  4357.      ".featured-collection__title-card"
  4358.    ],
  4359.    "elements": [
  4360.      ".featured-collection__title-card-pre-heading",
  4361.      ".featured-collection__title-card-heading",
  4362.      ".featured-collection__title-card-button"
  4363.    ]
  4364.  }
  4365. </script>
  4366.  
  4367.  
  4368.  
  4369.  
  4370.  
  4371.  
  4372.  
  4373.  
  4374.  
  4375.  
  4376.  
  4377.  
  4378.  
  4379.  
  4380.  
  4381. <style data-shopify>
  4382.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card {
  4383.    color: ;
  4384.  }
  4385.  
  4386.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card-outer::before {
  4387.    background-color: ;
  4388.    opacity: 0.0;
  4389.  }
  4390.  
  4391.  @media screen and (min-width: 1080px) {
  4392.    #shopify-section-template--15492296147031__dynamic_featured_collection [data-layout="grid"] .featured-collection__title-card {
  4393.      
  4394.    }
  4395.  }
  4396. </style>
  4397.  
  4398.  
  4399.  
  4400.  
  4401.  
  4402.  
  4403.  
  4404.  
  4405.  
  4406.  
  4407.  
  4408.  
  4409.  
  4410.  
  4411.  
  4412. <section class="featured-collection__container" data-featured-collection>
  4413.  
  4414.    <h2 class="home-section--title">
  4415.      Shop The Best Selling
  4416.    </h2>
  4417.  
  4418.  
  4419.  <ul
  4420.    class="home-section--content featured-collection__content"
  4421.    data-content
  4422.    data-layout="slideshow"
  4423.  >
  4424.    
  4425.  
  4426.    
  4427.      
  4428.  
  4429.  
  4430.  
  4431.  
  4432.  
  4433.  
  4434.  
  4435.  
  4436.  
  4437.  
  4438.  
  4439.  
  4440.  
  4441.  
  4442.  
  4443.  
  4444.  
  4445.  
  4446.  
  4447.  
  4448.  
  4449.  
  4450.  
  4451.  
  4452.  
  4453.  
  4454.  
  4455.  
  4456.  
  4457.  
  4458.  
  4459.  
  4460.    
  4461.  
  4462.  
  4463.  
  4464. <li
  4465.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  4466.  data-product-item
  4467.  data-product-quickshop-url="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4468.  
  4469. >
  4470.  <div class="productitem" data-product-item-content>
  4471.    
  4472.    
  4473.    
  4474.    
  4475.  
  4476.    
  4477.  
  4478.    
  4479.  
  4480.    <div class="productitem__container">
  4481.      
  4482.  
  4483.      <div class="productitem__image-container">
  4484.        <a target="_blank"
  4485.          class="productitem--image-link"
  4486.          href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4487.          aria-label="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4488.          tabindex="-1"
  4489.          data-product-page-link
  4490.        >
  4491.          <figure
  4492.            class="productitem--image"
  4493.            data-product-item-image
  4494.            
  4495.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  4496.            
  4497.          >
  4498.            
  4499.              
  4500.              
  4501.  
  4502.  
  4503.    <noscript data-rimg-noscript>
  4504.      <img loading="lazy"
  4505.        
  4506.          src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4507.        
  4508.  
  4509.        alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4510.        data-rimg="noscript"
  4511.        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"
  4512.        class="productitem--image-primary"
  4513.        
  4514.        
  4515.      >
  4516.    </noscript>
  4517.  
  4518.  
  4519.  <img loading="lazy"
  4520.    
  4521.      src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4522.    
  4523.    alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4524.  
  4525.    
  4526.      data-rimg="lazy"
  4527.      data-rimg-scale="1"
  4528.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_{size}.jpg?v=1729018033"
  4529.      data-rimg-max="1000x1000"
  4530.      data-rimg-crop="false"
  4531.      
  4532.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  4533.    
  4534.  
  4535.    class="productitem--image-primary"
  4536.    
  4537.    
  4538.  >
  4539.  
  4540.  
  4541.  
  4542.  <div data-rimg-canvas></div>
  4543.  
  4544.  
  4545.            
  4546.  
  4547.            
  4548.  
  4549.  
  4550.  
  4551.  
  4552.  
  4553.  
  4554.  
  4555.  
  4556.  
  4557.  
  4558.  
  4559.  
  4560.  
  4561.  
  4562.  
  4563.  
  4564.  
  4565.  
  4566.  
  4567.  
  4568.  
  4569.  
  4570.  
  4571.  
  4572.  
  4573.  
  4574.  
  4575.          </figure>
  4576.        </a>
  4577.      </div><div class="productitem--info">
  4578.        
  4579.          
  4580.  
  4581.        
  4582.  
  4583.        
  4584.          
  4585.  
  4586.  
  4587.  
  4588.  
  4589.  
  4590.  
  4591.  
  4592.  
  4593.  
  4594.  
  4595.  
  4596.  
  4597.  
  4598.  
  4599.  
  4600.  
  4601.  
  4602.  
  4603.  
  4604.  
  4605.  
  4606.  
  4607.  
  4608.  
  4609.  
  4610.  
  4611.  
  4612.  
  4613.  
  4614.  
  4615. <div class="price productitem__price ">
  4616.  
  4617.    <div
  4618.      class="price__compare-at visible"
  4619.      data-price-compare-container
  4620.    >
  4621.  
  4622.      
  4623.        <span class="money price__original" data-price-original></span>
  4624.      
  4625.    </div>
  4626.  
  4627.  
  4628.    
  4629.      
  4630.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4631.        
  4632.          <span class="visually-hidden">Original price</span>
  4633.          <span class="money price__compare-at--min" data-price-compare-min>
  4634.            $115.98
  4635.          </span>
  4636.          -
  4637.          <span class="visually-hidden">Original price</span>
  4638.          <span class="money price__compare-at--max" data-price-compare-max>
  4639.            $115.98
  4640.          </span>
  4641.        
  4642.      </div>
  4643.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4644.        <span class="visually-hidden">Original price</span>
  4645.        <span class="money price__compare-at--single" data-price-compare>
  4646.          
  4647.        </span>
  4648.      </div>
  4649.    
  4650.  
  4651.  
  4652.  <div class="price__current price__current--emphasize " data-price-container>
  4653.  
  4654.    
  4655.  
  4656.    
  4657.      
  4658.      
  4659.      <span class="money" data-price>
  4660.        $115.98
  4661.      </span>
  4662.    
  4663.    
  4664.  </div>
  4665.  
  4666.  
  4667.    
  4668.    <div class="price__current--hidden" data-current-price-range-hidden>
  4669.      
  4670.        <span class="money price__current--min" data-price-min>$115.98</span>
  4671.        -
  4672.        <span class="money price__current--max" data-price-max>$115.98</span>
  4673.      
  4674.    </div>
  4675.    <div class="price__current--hidden" data-current-price-hidden>
  4676.      <span class="visually-hidden">Current price</span>
  4677.      <span class="money" data-price>
  4678.        $115.98
  4679.      </span>
  4680.    </div>
  4681.  
  4682.  
  4683.  
  4684.    
  4685.    
  4686.    
  4687.    
  4688.  
  4689.    <div
  4690.      class="
  4691.        productitem__unit-price
  4692.        hidden
  4693.      "
  4694.      data-unit-price
  4695.    >
  4696.      <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>
  4697.    </div>
  4698.  
  4699.  
  4700.  
  4701. </div>
  4702.  
  4703.  
  4704.        
  4705.  
  4706.        <h2 class="productitem--title">
  4707.          <a href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen" data-product-page-link>
  4708.            14 Lcd Screen for Dell Latitude 7480 7490 Laptops - FHD Only B140HAN03.3 KW8T4
  4709.          </a>
  4710.        </h2>
  4711.  
  4712.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  4713.        <div class="star_container 3959626498135"></div>
  4714.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  4715.  
  4716.        
  4717.          
  4718.            <span class="productitem--vendor">
  4719.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  4720.            </span>
  4721.          
  4722.        
  4723.  
  4724.        
  4725.  
  4726.        
  4727.          
  4728.            <div class="productitem__stock-level">
  4729.              <!--
  4730.  
  4731.  
  4732.  
  4733.  
  4734.  
  4735.  
  4736.  
  4737. <div class="product-stock-level-wrapper" >
  4738.  
  4739.    <span class="
  4740.  product-stock-level
  4741.  product-stock-level--continue-selling
  4742.  
  4743. ">
  4744.      
  4745.  
  4746.      <span class="product-stock-level__text">
  4747.        
  4748.        <div class="product-stock-level__badge-text">
  4749.          
  4750.  
  4751.    In stock
  4752.  
  4753.  
  4754.        </div>
  4755.      </span>
  4756.    </span>
  4757.  
  4758. </div>
  4759. -->
  4760.              
  4761.  
  4762.  
  4763.    
  4764.      <b style="color:green">In stock</b>
  4765.    
  4766.  
  4767.  
  4768.  
  4769.  
  4770.  
  4771.  
  4772.  
  4773.            </div>
  4774.          
  4775.  
  4776.          
  4777.            
  4778.          
  4779.        
  4780.  
  4781.        
  4782.          <div class="productitem--description">
  4783.            <p>
  4784. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  4785.  
  4786. Compatible Part #s: B140HAN03.3, KW8T4
  4787.  
  4788. Compatible Models:
  4789. Dell Latitude 74...</p>
  4790.  
  4791.            
  4792.              <a
  4793.                href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4794.                class="productitem--link"
  4795.                data-product-page-link
  4796.              >
  4797.                View full details
  4798.              </a>
  4799.            
  4800.          </div>
  4801.        
  4802.      </div>
  4803.  
  4804.      
  4805.        
  4806.          
  4807.          
  4808.          
  4809.  
  4810.          
  4811.          
  4812.  
  4813.          
  4814.  
  4815.          
  4816.  
  4817.          <div class="productitem--actions" data-product-actions>
  4818.            <div class="productitem--listview-price">
  4819.              
  4820.  
  4821.  
  4822.  
  4823.  
  4824.  
  4825.  
  4826.  
  4827.  
  4828.  
  4829.  
  4830.  
  4831.  
  4832.  
  4833.  
  4834.  
  4835.  
  4836.  
  4837.  
  4838.  
  4839.  
  4840.  
  4841.  
  4842.  
  4843.  
  4844.  
  4845.  
  4846.  
  4847.  
  4848.  
  4849.  
  4850. <div class="price productitem__price ">
  4851.  
  4852.    <div
  4853.      class="price__compare-at visible"
  4854.      data-price-compare-container
  4855.    >
  4856.  
  4857.      
  4858.        <span class="money price__original" data-price-original></span>
  4859.      
  4860.    </div>
  4861.  
  4862.  
  4863.    
  4864.      
  4865.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4866.        
  4867.          <span class="visually-hidden">Original price</span>
  4868.          <span class="money price__compare-at--min" data-price-compare-min>
  4869.            $115.98
  4870.          </span>
  4871.          -
  4872.          <span class="visually-hidden">Original price</span>
  4873.          <span class="money price__compare-at--max" data-price-compare-max>
  4874.            $115.98
  4875.          </span>
  4876.        
  4877.      </div>
  4878.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4879.        <span class="visually-hidden">Original price</span>
  4880.        <span class="money price__compare-at--single" data-price-compare>
  4881.          
  4882.        </span>
  4883.      </div>
  4884.    
  4885.  
  4886.  
  4887.  <div class="price__current price__current--emphasize " data-price-container>
  4888.  
  4889.    
  4890.  
  4891.    
  4892.      
  4893.      
  4894.      <span class="money" data-price>
  4895.        $115.98
  4896.      </span>
  4897.    
  4898.    
  4899.  </div>
  4900.  
  4901.  
  4902.    
  4903.    <div class="price__current--hidden" data-current-price-range-hidden>
  4904.      
  4905.        <span class="money price__current--min" data-price-min>$115.98</span>
  4906.        -
  4907.        <span class="money price__current--max" data-price-max>$115.98</span>
  4908.      
  4909.    </div>
  4910.    <div class="price__current--hidden" data-current-price-hidden>
  4911.      <span class="visually-hidden">Current price</span>
  4912.      <span class="money" data-price>
  4913.        $115.98
  4914.      </span>
  4915.    </div>
  4916.  
  4917.  
  4918.  
  4919.    
  4920.    
  4921.    
  4922.    
  4923.  
  4924.    <div
  4925.      class="
  4926.        productitem__unit-price
  4927.        hidden
  4928.      "
  4929.      data-unit-price
  4930.    >
  4931.      <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>
  4932.    </div>
  4933.  
  4934.  
  4935.  
  4936. </div>
  4937.  
  4938.  
  4939.            </div>
  4940.  
  4941.            <div class="productitem--listview-badge">
  4942.              
  4943.  
  4944.  
  4945.  
  4946.  
  4947.  
  4948.  
  4949.  
  4950.  
  4951.  
  4952.  
  4953.  
  4954.  
  4955.  
  4956.  
  4957.  
  4958.  
  4959.  
  4960.  
  4961.  
  4962.  
  4963.  
  4964.  
  4965.  
  4966.  
  4967.  
  4968.  
  4969.  
  4970.            </div>
  4971.  
  4972.            
  4973.              <div
  4974.                class="
  4975.                  productitem--action
  4976.                  quickshop-button
  4977.                  
  4978.                "
  4979.              >
  4980.                <button
  4981.                  class="productitem--action-trigger button-secondary"
  4982.                  data-quickshop-full
  4983.                  
  4984.                  
  4985.                  type="button"
  4986.                >
  4987.                  Quick shop
  4988.                </button>
  4989.              </div>
  4990.            
  4991.  
  4992.            
  4993.              <div
  4994.                class="
  4995.                  productitem--action
  4996.                  atc--button
  4997.                  
  4998.                "
  4999.              >
  5000.                <button
  5001.                  class="productitem--action-trigger productitem--action-atc button-primary"
  5002.                  type="button"
  5003.                  aria-label="Add to cart"
  5004.                  
  5005.                    data-quick-buy
  5006.                  
  5007.                  data-variant-id="29564289744983"
  5008.                  
  5009.                >
  5010.                  <span class="atc-button--text">
  5011.                    Add to cart
  5012.                  </span>
  5013.                  <span class="atc-button--icon"><svg
  5014.  aria-hidden="true"
  5015.  focusable="false"
  5016.  role="presentation"
  5017.  width="26"
  5018.  height="26"
  5019.  viewBox="0 0 26 26"
  5020.  xmlns="http://www.w3.org/2000/svg"
  5021. >
  5022.  <g fill-rule="nonzero" fill="currentColor">
  5023.    <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"/>
  5024.  </g>
  5025. </svg></span>
  5026.                </button>
  5027.              </div>
  5028.            
  5029.          </div>
  5030.        
  5031.      
  5032.    </div>
  5033.  </div>
  5034.  
  5035.  
  5036.    <script type="application/json" data-quick-buy-settings>
  5037.      {
  5038.        "cart_redirection": true,
  5039.        "money_format": "${{amount}}"
  5040.      }
  5041.    </script>
  5042.  
  5043. </li>
  5044.    
  5045.      
  5046.  
  5047.  
  5048.  
  5049.  
  5050.  
  5051.  
  5052.  
  5053.  
  5054.  
  5055.  
  5056.  
  5057.  
  5058.  
  5059.  
  5060.  
  5061.  
  5062.  
  5063.  
  5064.  
  5065.  
  5066.  
  5067.  
  5068.  
  5069.  
  5070.  
  5071.  
  5072.  
  5073.  
  5074.  
  5075.  
  5076.  
  5077.  
  5078.    
  5079.  
  5080.  
  5081.  
  5082. <li
  5083.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  5084.  data-product-item
  5085.  data-product-quickshop-url="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5086.  
  5087. >
  5088.  <div class="productitem" data-product-item-content>
  5089.    
  5090.    
  5091.    
  5092.    
  5093.  
  5094.    
  5095.  
  5096.    
  5097.  
  5098.    <div class="productitem__container">
  5099.      
  5100.  
  5101.      <div class="productitem__image-container">
  5102.        <a target="_blank"
  5103.          class="productitem--image-link"
  5104.          href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5105.          aria-label="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5106.          tabindex="-1"
  5107.          data-product-page-link
  5108.        >
  5109.          <figure
  5110.            class="productitem--image"
  5111.            data-product-item-image
  5112.            
  5113.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5114.            
  5115.          >
  5116.            
  5117.              
  5118.              
  5119.  
  5120.  
  5121.    <noscript data-rimg-noscript>
  5122.      <img loading="lazy"
  5123.        
  5124.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5125.        
  5126.  
  5127.        alt="20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug - LaptopParts.ca"
  5128.        data-rimg="noscript"
  5129.        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"
  5130.        class="productitem--image-primary"
  5131.        
  5132.        
  5133.      >
  5134.    </noscript>
  5135.  
  5136.  
  5137.  <img loading="lazy"
  5138.    
  5139.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5140.    
  5141.    alt="20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug - LaptopParts.ca"
  5142.  
  5143.    
  5144.      data-rimg="lazy"
  5145.      data-rimg-scale="1"
  5146.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_{size}.jpg?v=1648053872"
  5147.      data-rimg-max="600x600"
  5148.      data-rimg-crop="false"
  5149.      
  5150.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  5151.    
  5152.  
  5153.    class="productitem--image-primary"
  5154.    
  5155.    
  5156.  >
  5157.  
  5158.  
  5159.  
  5160.  <div data-rimg-canvas></div>
  5161.  
  5162.  
  5163.            
  5164.  
  5165.            
  5166.  
  5167.  
  5168.  
  5169.  
  5170.  
  5171.  
  5172.  
  5173.  
  5174.  
  5175.  
  5176.  
  5177.  
  5178.  
  5179.  
  5180.  
  5181.  
  5182.  
  5183.  
  5184.  
  5185.  
  5186.  
  5187.  
  5188.  
  5189.  
  5190.  
  5191.  
  5192.  
  5193.          </figure>
  5194.        </a>
  5195.      </div><div class="productitem--info">
  5196.        
  5197.          
  5198.  
  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.  
  5228.  
  5229.  
  5230.  
  5231.  
  5232.  
  5233. <div class="price productitem__price ">
  5234.  
  5235.    <div
  5236.      class="price__compare-at visible"
  5237.      data-price-compare-container
  5238.    >
  5239.  
  5240.      
  5241.        <span class="money price__original" data-price-original></span>
  5242.      
  5243.    </div>
  5244.  
  5245.  
  5246.    
  5247.      
  5248.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5249.        
  5250.          <span class="visually-hidden">Original price</span>
  5251.          <span class="money price__compare-at--min" data-price-compare-min>
  5252.            $90.99
  5253.          </span>
  5254.          -
  5255.          <span class="visually-hidden">Original price</span>
  5256.          <span class="money price__compare-at--max" data-price-compare-max>
  5257.            $90.99
  5258.          </span>
  5259.        
  5260.      </div>
  5261.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5262.        <span class="visually-hidden">Original price</span>
  5263.        <span class="money price__compare-at--single" data-price-compare>
  5264.          
  5265.        </span>
  5266.      </div>
  5267.    
  5268.  
  5269.  
  5270.  <div class="price__current price__current--emphasize " data-price-container>
  5271.  
  5272.    
  5273.  
  5274.    
  5275.      
  5276.      
  5277.      <span class="money" data-price>
  5278.        $90.99
  5279.      </span>
  5280.    
  5281.    
  5282.  </div>
  5283.  
  5284.  
  5285.    
  5286.    <div class="price__current--hidden" data-current-price-range-hidden>
  5287.      
  5288.        <span class="money price__current--min" data-price-min>$90.99</span>
  5289.        -
  5290.        <span class="money price__current--max" data-price-max>$90.99</span>
  5291.      
  5292.    </div>
  5293.    <div class="price__current--hidden" data-current-price-hidden>
  5294.      <span class="visually-hidden">Current price</span>
  5295.      <span class="money" data-price>
  5296.        $90.99
  5297.      </span>
  5298.    </div>
  5299.  
  5300.  
  5301.  
  5302.    
  5303.    
  5304.    
  5305.    
  5306.  
  5307.    <div
  5308.      class="
  5309.        productitem__unit-price
  5310.        hidden
  5311.      "
  5312.      data-unit-price
  5313.    >
  5314.      <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>
  5315.    </div>
  5316.  
  5317.  
  5318.  
  5319. </div>
  5320.  
  5321.  
  5322.        
  5323.  
  5324.        <h2 class="productitem--title">
  5325.          <a href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  5326.            20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  5327.          </a>
  5328.        </h2>
  5329.  
  5330.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5331.        <div class="star_container 3483510112343"></div>
  5332.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5333.  
  5334.        
  5335.          
  5336.            <span class="productitem--vendor">
  5337.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  5338.            </span>
  5339.          
  5340.        
  5341.  
  5342.        
  5343.  
  5344.        
  5345.          
  5346.            <div class="productitem__stock-level">
  5347.              <!--
  5348.  
  5349.  
  5350.  
  5351.  
  5352.  
  5353.  
  5354.  
  5355. <div class="product-stock-level-wrapper" >
  5356.  
  5357.    <span class="
  5358.  product-stock-level
  5359.  product-stock-level--continue-selling
  5360.  
  5361. ">
  5362.      
  5363.  
  5364.      <span class="product-stock-level__text">
  5365.        
  5366.        <div class="product-stock-level__badge-text">
  5367.          
  5368.  
  5369.    In stock
  5370.  
  5371.  
  5372.        </div>
  5373.      </span>
  5374.    </span>
  5375.  
  5376. </div>
  5377. -->
  5378.              
  5379.  
  5380.  
  5381.    
  5382.      <b style="color:green">In stock</b>
  5383.    
  5384.  
  5385.  
  5386.  
  5387.  
  5388.  
  5389.  
  5390.  
  5391.            </div>
  5392.          
  5393.  
  5394.          
  5395.            
  5396.          
  5397.        
  5398.  
  5399.        
  5400.          <div class="productitem--description">
  5401.            <p>Plugs directly into AC outlet.
  5402.  
  5403. Input: 100-240V ~ 50-60Hz
  5404. Output: 12V – 1.5A 18W
  5405. Connector Tip: mini USB
  5406. Colour: Black
  5407.  
  5408. Compatible Part #s: KP.01...</p>
  5409.  
  5410.            
  5411.              <a
  5412.                href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5413.                class="productitem--link"
  5414.                data-product-page-link
  5415.              >
  5416.                View full details
  5417.              </a>
  5418.            
  5419.          </div>
  5420.        
  5421.      </div>
  5422.  
  5423.      
  5424.        
  5425.          
  5426.          
  5427.          
  5428.  
  5429.          
  5430.          
  5431.  
  5432.          
  5433.  
  5434.          
  5435.  
  5436.          <div class="productitem--actions" data-product-actions>
  5437.            <div class="productitem--listview-price">
  5438.              
  5439.  
  5440.  
  5441.  
  5442.  
  5443.  
  5444.  
  5445.  
  5446.  
  5447.  
  5448.  
  5449.  
  5450.  
  5451.  
  5452.  
  5453.  
  5454.  
  5455.  
  5456.  
  5457.  
  5458.  
  5459.  
  5460.  
  5461.  
  5462.  
  5463.  
  5464.  
  5465.  
  5466.  
  5467.  
  5468.  
  5469. <div class="price productitem__price ">
  5470.  
  5471.    <div
  5472.      class="price__compare-at visible"
  5473.      data-price-compare-container
  5474.    >
  5475.  
  5476.      
  5477.        <span class="money price__original" data-price-original></span>
  5478.      
  5479.    </div>
  5480.  
  5481.  
  5482.    
  5483.      
  5484.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5485.        
  5486.          <span class="visually-hidden">Original price</span>
  5487.          <span class="money price__compare-at--min" data-price-compare-min>
  5488.            $90.99
  5489.          </span>
  5490.          -
  5491.          <span class="visually-hidden">Original price</span>
  5492.          <span class="money price__compare-at--max" data-price-compare-max>
  5493.            $90.99
  5494.          </span>
  5495.        
  5496.      </div>
  5497.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5498.        <span class="visually-hidden">Original price</span>
  5499.        <span class="money price__compare-at--single" data-price-compare>
  5500.          
  5501.        </span>
  5502.      </div>
  5503.    
  5504.  
  5505.  
  5506.  <div class="price__current price__current--emphasize " data-price-container>
  5507.  
  5508.    
  5509.  
  5510.    
  5511.      
  5512.      
  5513.      <span class="money" data-price>
  5514.        $90.99
  5515.      </span>
  5516.    
  5517.    
  5518.  </div>
  5519.  
  5520.  
  5521.    
  5522.    <div class="price__current--hidden" data-current-price-range-hidden>
  5523.      
  5524.        <span class="money price__current--min" data-price-min>$90.99</span>
  5525.        -
  5526.        <span class="money price__current--max" data-price-max>$90.99</span>
  5527.      
  5528.    </div>
  5529.    <div class="price__current--hidden" data-current-price-hidden>
  5530.      <span class="visually-hidden">Current price</span>
  5531.      <span class="money" data-price>
  5532.        $90.99
  5533.      </span>
  5534.    </div>
  5535.  
  5536.  
  5537.  
  5538.    
  5539.    
  5540.    
  5541.    
  5542.  
  5543.    <div
  5544.      class="
  5545.        productitem__unit-price
  5546.        hidden
  5547.      "
  5548.      data-unit-price
  5549.    >
  5550.      <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>
  5551.    </div>
  5552.  
  5553.  
  5554.  
  5555. </div>
  5556.  
  5557.  
  5558.            </div>
  5559.  
  5560.            <div class="productitem--listview-badge">
  5561.              
  5562.  
  5563.  
  5564.  
  5565.  
  5566.  
  5567.  
  5568.  
  5569.  
  5570.  
  5571.  
  5572.  
  5573.  
  5574.  
  5575.  
  5576.  
  5577.  
  5578.  
  5579.  
  5580.  
  5581.  
  5582.  
  5583.  
  5584.  
  5585.  
  5586.  
  5587.  
  5588.  
  5589.            </div>
  5590.  
  5591.            
  5592.              <div
  5593.                class="
  5594.                  productitem--action
  5595.                  quickshop-button
  5596.                  
  5597.                "
  5598.              >
  5599.                <button
  5600.                  class="productitem--action-trigger button-secondary"
  5601.                  data-quickshop-full
  5602.                  
  5603.                  
  5604.                  type="button"
  5605.                >
  5606.                  Quick shop
  5607.                </button>
  5608.              </div>
  5609.            
  5610.  
  5611.            
  5612.              <div
  5613.                class="
  5614.                  productitem--action
  5615.                  atc--button
  5616.                  
  5617.                "
  5618.              >
  5619.                <button
  5620.                  class="productitem--action-trigger productitem--action-atc button-primary"
  5621.                  type="button"
  5622.                  aria-label="Add to cart"
  5623.                  
  5624.                    data-quick-buy
  5625.                  
  5626.                  data-variant-id="39666212798551"
  5627.                  
  5628.                >
  5629.                  <span class="atc-button--text">
  5630.                    Add to cart
  5631.                  </span>
  5632.                  <span class="atc-button--icon"><svg
  5633.  aria-hidden="true"
  5634.  focusable="false"
  5635.  role="presentation"
  5636.  width="26"
  5637.  height="26"
  5638.  viewBox="0 0 26 26"
  5639.  xmlns="http://www.w3.org/2000/svg"
  5640. >
  5641.  <g fill-rule="nonzero" fill="currentColor">
  5642.    <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"/>
  5643.  </g>
  5644. </svg></span>
  5645.                </button>
  5646.              </div>
  5647.            
  5648.          </div>
  5649.        
  5650.      
  5651.    </div>
  5652.  </div>
  5653.  
  5654.  
  5655.    <script type="application/json" data-quick-buy-settings>
  5656.      {
  5657.        "cart_redirection": true,
  5658.        "money_format": "${{amount}}"
  5659.      }
  5660.    </script>
  5661.  
  5662. </li>
  5663.    
  5664.      
  5665.  
  5666.  
  5667.  
  5668.  
  5669.  
  5670.  
  5671.  
  5672.  
  5673.  
  5674.  
  5675.  
  5676.  
  5677.  
  5678.  
  5679.  
  5680.  
  5681.  
  5682.  
  5683.  
  5684.  
  5685.    
  5686.    
  5687.  
  5688.  
  5689.  
  5690.  
  5691.  
  5692.  
  5693.  
  5694.  
  5695.  
  5696.  
  5697.  
  5698.    
  5699.  
  5700.  
  5701.  
  5702. <li
  5703.  class="productgrid--item  imagestyle--natural    productitem--sale  productitem--emphasis      show-actions--mobile"
  5704.  data-product-item
  5705.  data-product-quickshop-url="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5706.  
  5707. >
  5708.  <div class="productitem" data-product-item-content>
  5709.    
  5710.    
  5711.    
  5712.    
  5713.  
  5714.    
  5715.  
  5716.    
  5717.  
  5718.    <div class="productitem__container">
  5719.      
  5720.  
  5721.      <div class="productitem__image-container">
  5722.        <a target="_blank"
  5723.          class="productitem--image-link"
  5724.          href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5725.          aria-label="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5726.          tabindex="-1"
  5727.          data-product-page-link
  5728.        >
  5729.          <figure
  5730.            class="productitem--image"
  5731.            data-product-item-image
  5732.            
  5733.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5734.            
  5735.          >
  5736.            
  5737.              
  5738.              
  5739.  
  5740.  
  5741.    <noscript data-rimg-noscript>
  5742.      <img loading="lazy"
  5743.        
  5744.          src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1759501226"
  5745.        
  5746.  
  5747.        alt="B156HTN03.6"
  5748.        data-rimg="noscript"
  5749.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1759501226 1x"
  5750.        class="productitem--image-primary"
  5751.        
  5752.        
  5753.      >
  5754.    </noscript>
  5755.  
  5756.  
  5757.  <img loading="lazy"
  5758.    
  5759.      src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1759501226"
  5760.    
  5761.    alt="B156HTN03.6"
  5762.  
  5763.    
  5764.      data-rimg="lazy"
  5765.      data-rimg-scale="1"
  5766.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_{size}.jpg?v=1759501226"
  5767.      data-rimg-max="500x500"
  5768.      data-rimg-crop="false"
  5769.      
  5770.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  5771.    
  5772.  
  5773.    class="productitem--image-primary"
  5774.    
  5775.    
  5776.  >
  5777.  
  5778.  
  5779.  
  5780.  <div data-rimg-canvas></div>
  5781.  
  5782.  
  5783.            
  5784.  
  5785.            
  5786.  
  5787.  
  5788.  
  5789.  
  5790.  
  5791.  
  5792.  
  5793.  
  5794.  
  5795.  
  5796.  
  5797.  
  5798.  
  5799.  
  5800.  
  5801.  
  5802.  
  5803.  
  5804.  
  5805.  
  5806.  
  5807.  
  5808.  
  5809.  
  5810.  
  5811.  
  5812.  
  5813.  
  5814.  
  5815.  
  5816.  
  5817.  <span class="productitem__badge productitem__badge--sale"
  5818.    data-badge-sales
  5819.    
  5820.  >
  5821.    <span data-badge-sales-range>
  5822.      
  5823.        
  5824.          Save <span data-price-percent-saved>28</span>%
  5825.        
  5826.      
  5827.    </span>
  5828.    <span data-badge-sales-single style="display: none;">
  5829.      
  5830.        Save <span data-price-percent-saved></span>%
  5831.      
  5832.    </span>
  5833.  </span>
  5834.          </figure>
  5835.        </a>
  5836.      </div><div class="productitem--info">
  5837.        
  5838.          
  5839.  
  5840.        
  5841.  
  5842.        
  5843.          
  5844.  
  5845.  
  5846.  
  5847.  
  5848.  
  5849.  
  5850.  
  5851.  
  5852.  
  5853.  
  5854.  
  5855.  
  5856.  
  5857.  
  5858.  
  5859.  
  5860.  
  5861.  
  5862.  
  5863.  
  5864.  
  5865.  
  5866.  
  5867.  
  5868.  
  5869.  
  5870.  
  5871.  
  5872.  
  5873.  
  5874. <div class="price productitem__price ">
  5875.  
  5876.    <div
  5877.      class="price__compare-at visible"
  5878.      data-price-compare-container
  5879.    >
  5880.  
  5881.      
  5882.        <span class="visually-hidden">Original price</span>
  5883.        <span class="money price__compare-at--single" data-price-compare>
  5884.          $147.99
  5885.        </span>
  5886.      
  5887.    </div>
  5888.  
  5889.  
  5890.    
  5891.      
  5892.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5893.        
  5894.          <span class="visually-hidden">Original price</span>
  5895.          <span class="money price__compare-at--min" data-price-compare-min>
  5896.            $147.99
  5897.          </span>
  5898.          -
  5899.          <span class="visually-hidden">Original price</span>
  5900.          <span class="money price__compare-at--max" data-price-compare-max>
  5901.            $147.99
  5902.          </span>
  5903.        
  5904.      </div>
  5905.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5906.        <span class="visually-hidden">Original price</span>
  5907.        <span class="money price__compare-at--single" data-price-compare>
  5908.          $147.99
  5909.        </span>
  5910.      </div>
  5911.    
  5912.  
  5913.  
  5914.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  5915.  
  5916.    
  5917.  
  5918.    
  5919.      
  5920.      
  5921.        <span class="visually-hidden">Current price</span>
  5922.      
  5923.      <span class="money" data-price>
  5924.        $105.98
  5925.      </span>
  5926.    
  5927.    
  5928.  </div>
  5929.  
  5930.  
  5931.    
  5932.    <div class="price__current--hidden" data-current-price-range-hidden>
  5933.      
  5934.        <span class="money price__current--min" data-price-min>$105.98</span>
  5935.        -
  5936.        <span class="money price__current--max" data-price-max>$105.98</span>
  5937.      
  5938.    </div>
  5939.    <div class="price__current--hidden" data-current-price-hidden>
  5940.      <span class="visually-hidden">Current price</span>
  5941.      <span class="money" data-price>
  5942.        $105.98
  5943.      </span>
  5944.    </div>
  5945.  
  5946.  
  5947.  
  5948.    
  5949.    
  5950.    
  5951.    
  5952.  
  5953.    <div
  5954.      class="
  5955.        productitem__unit-price
  5956.        hidden
  5957.      "
  5958.      data-unit-price
  5959.    >
  5960.      <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>
  5961.    </div>
  5962.  
  5963.  
  5964.  
  5965. </div>
  5966.  
  5967.  
  5968.        
  5969.  
  5970.        <h2 class="productitem--title">
  5971.          <a href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops" data-product-page-link>
  5972.            15.6 FHD 1920x1080 Lcd Led Screen Lenovo Y50-70 Laptops B156HTN03.6
  5973.          </a>
  5974.        </h2>
  5975.  
  5976.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5977.        <div class="star_container 3929811353687"></div>
  5978.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5979.  
  5980.        
  5981.          
  5982.            <span class="productitem--vendor">
  5983.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  5984.            </span>
  5985.          
  5986.        
  5987.  
  5988.        
  5989.  
  5990.        
  5991.          
  5992.            <div class="productitem__stock-level">
  5993.              <!--
  5994.  
  5995.  
  5996.  
  5997.  
  5998.  
  5999.  
  6000.  
  6001. <div class="product-stock-level-wrapper" >
  6002.  
  6003.    <span class="
  6004.  product-stock-level
  6005.  product-stock-level--continue-selling
  6006.  
  6007. ">
  6008.      
  6009.  
  6010.      <span class="product-stock-level__text">
  6011.        
  6012.        <div class="product-stock-level__badge-text">
  6013.          
  6014.  
  6015.    In stock
  6016.  
  6017.  
  6018.        </div>
  6019.      </span>
  6020.    </span>
  6021.  
  6022. </div>
  6023. -->
  6024.              
  6025.  
  6026.  
  6027.    
  6028.      <b style="color:green">In stock</b>
  6029.    
  6030.  
  6031.  
  6032.  
  6033.  
  6034.  
  6035.  
  6036.  
  6037.            </div>
  6038.          
  6039.  
  6040.          
  6041.            
  6042.          
  6043.        
  6044.  
  6045.        
  6046.          <div class="productitem--description">
  6047.            <p>
  6048. 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>
  6049.  
  6050.            
  6051.              <a
  6052.                href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  6053.                class="productitem--link"
  6054.                data-product-page-link
  6055.              >
  6056.                View full details
  6057.              </a>
  6058.            
  6059.          </div>
  6060.        
  6061.      </div>
  6062.  
  6063.      
  6064.        
  6065.          
  6066.          
  6067.          
  6068.  
  6069.          
  6070.          
  6071.  
  6072.          
  6073.  
  6074.          
  6075.  
  6076.          <div class="productitem--actions" data-product-actions>
  6077.            <div class="productitem--listview-price">
  6078.              
  6079.  
  6080.  
  6081.  
  6082.  
  6083.  
  6084.  
  6085.  
  6086.  
  6087.  
  6088.  
  6089.  
  6090.  
  6091.  
  6092.  
  6093.  
  6094.  
  6095.  
  6096.  
  6097.  
  6098.  
  6099.  
  6100.  
  6101.  
  6102.  
  6103.  
  6104.  
  6105.  
  6106.  
  6107.  
  6108.  
  6109. <div class="price productitem__price ">
  6110.  
  6111.    <div
  6112.      class="price__compare-at visible"
  6113.      data-price-compare-container
  6114.    >
  6115.  
  6116.      
  6117.        <span class="visually-hidden">Original price</span>
  6118.        <span class="money price__compare-at--single" data-price-compare>
  6119.          $147.99
  6120.        </span>
  6121.      
  6122.    </div>
  6123.  
  6124.  
  6125.    
  6126.      
  6127.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6128.        
  6129.          <span class="visually-hidden">Original price</span>
  6130.          <span class="money price__compare-at--min" data-price-compare-min>
  6131.            $147.99
  6132.          </span>
  6133.          -
  6134.          <span class="visually-hidden">Original price</span>
  6135.          <span class="money price__compare-at--max" data-price-compare-max>
  6136.            $147.99
  6137.          </span>
  6138.        
  6139.      </div>
  6140.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6141.        <span class="visually-hidden">Original price</span>
  6142.        <span class="money price__compare-at--single" data-price-compare>
  6143.          $147.99
  6144.        </span>
  6145.      </div>
  6146.    
  6147.  
  6148.  
  6149.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  6150.  
  6151.    
  6152.  
  6153.    
  6154.      
  6155.      
  6156.        <span class="visually-hidden">Current price</span>
  6157.      
  6158.      <span class="money" data-price>
  6159.        $105.98
  6160.      </span>
  6161.    
  6162.    
  6163.  </div>
  6164.  
  6165.  
  6166.    
  6167.    <div class="price__current--hidden" data-current-price-range-hidden>
  6168.      
  6169.        <span class="money price__current--min" data-price-min>$105.98</span>
  6170.        -
  6171.        <span class="money price__current--max" data-price-max>$105.98</span>
  6172.      
  6173.    </div>
  6174.    <div class="price__current--hidden" data-current-price-hidden>
  6175.      <span class="visually-hidden">Current price</span>
  6176.      <span class="money" data-price>
  6177.        $105.98
  6178.      </span>
  6179.    </div>
  6180.  
  6181.  
  6182.  
  6183.    
  6184.    
  6185.    
  6186.    
  6187.  
  6188.    <div
  6189.      class="
  6190.        productitem__unit-price
  6191.        hidden
  6192.      "
  6193.      data-unit-price
  6194.    >
  6195.      <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>
  6196.    </div>
  6197.  
  6198.  
  6199.  
  6200. </div>
  6201.  
  6202.  
  6203.            </div>
  6204.  
  6205.            <div class="productitem--listview-badge">
  6206.              
  6207.  
  6208.  
  6209.  
  6210.  
  6211.  
  6212.  
  6213.  
  6214.  
  6215.  
  6216.  
  6217.  
  6218.  
  6219.  
  6220.  
  6221.  
  6222.  
  6223.  
  6224.  
  6225.  
  6226.  
  6227.  
  6228.  
  6229.  
  6230.  
  6231.  
  6232.  
  6233.  
  6234.  
  6235.  
  6236.  
  6237.  
  6238.  <span class="productitem__badge productitem__badge--sale"
  6239.    data-badge-sales
  6240.    
  6241.  >
  6242.    <span data-badge-sales-range>
  6243.      
  6244.        
  6245.          Save <span data-price-percent-saved>28</span>%
  6246.        
  6247.      
  6248.    </span>
  6249.    <span data-badge-sales-single style="display: none;">
  6250.      
  6251.        Save <span data-price-percent-saved></span>%
  6252.      
  6253.    </span>
  6254.  </span>
  6255.            </div>
  6256.  
  6257.            
  6258.              <div
  6259.                class="
  6260.                  productitem--action
  6261.                  quickshop-button
  6262.                  
  6263.                "
  6264.              >
  6265.                <button
  6266.                  class="productitem--action-trigger button-secondary"
  6267.                  data-quickshop-full
  6268.                  
  6269.                  
  6270.                  type="button"
  6271.                >
  6272.                  Quick shop
  6273.                </button>
  6274.              </div>
  6275.            
  6276.  
  6277.            
  6278.              <div
  6279.                class="
  6280.                  productitem--action
  6281.                  atc--button
  6282.                  
  6283.                "
  6284.              >
  6285.                <button
  6286.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6287.                  type="button"
  6288.                  aria-label="Add to cart"
  6289.                  
  6290.                    data-quick-buy
  6291.                  
  6292.                  data-variant-id="29564283551831"
  6293.                  
  6294.                >
  6295.                  <span class="atc-button--text">
  6296.                    Add to cart
  6297.                  </span>
  6298.                  <span class="atc-button--icon"><svg
  6299.  aria-hidden="true"
  6300.  focusable="false"
  6301.  role="presentation"
  6302.  width="26"
  6303.  height="26"
  6304.  viewBox="0 0 26 26"
  6305.  xmlns="http://www.w3.org/2000/svg"
  6306. >
  6307.  <g fill-rule="nonzero" fill="currentColor">
  6308.    <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"/>
  6309.  </g>
  6310. </svg></span>
  6311.                </button>
  6312.              </div>
  6313.            
  6314.          </div>
  6315.        
  6316.      
  6317.    </div>
  6318.  </div>
  6319.  
  6320.  
  6321.    <script type="application/json" data-quick-buy-settings>
  6322.      {
  6323.        "cart_redirection": true,
  6324.        "money_format": "${{amount}}"
  6325.      }
  6326.    </script>
  6327.  
  6328. </li>
  6329.    
  6330.      
  6331.  
  6332.  
  6333.  
  6334.  
  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.  
  6367. <li
  6368.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6369.  data-product-item
  6370.  data-product-quickshop-url="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6371.  
  6372. >
  6373.  <div class="productitem" data-product-item-content>
  6374.    
  6375.    
  6376.    
  6377.    
  6378.  
  6379.    
  6380.  
  6381.    
  6382.  
  6383.    <div class="productitem__container">
  6384.      
  6385.  
  6386.      <div class="productitem__image-container">
  6387.        <a target="_blank"
  6388.          class="productitem--image-link"
  6389.          href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6390.          aria-label="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6391.          tabindex="-1"
  6392.          data-product-page-link
  6393.        >
  6394.          <figure
  6395.            class="productitem--image"
  6396.            data-product-item-image
  6397.            
  6398.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6399.            
  6400.          >
  6401.            
  6402.              
  6403.              
  6404.  
  6405.  
  6406.    <noscript data-rimg-noscript>
  6407.      <img loading="lazy"
  6408.        
  6409.          src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1759501007"
  6410.        
  6411.  
  6412.        alt="Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW - LaptopParts.ca"
  6413.        data-rimg="noscript"
  6414.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1759501007 1x, //laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_998x998.jpg?v=1759501007 1.95x"
  6415.        class="productitem--image-primary"
  6416.        
  6417.        
  6418.      >
  6419.    </noscript>
  6420.  
  6421.  
  6422.  <img loading="lazy"
  6423.    
  6424.      src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1759501007"
  6425.    
  6426.    alt="Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW - LaptopParts.ca"
  6427.  
  6428.    
  6429.      data-rimg="lazy"
  6430.      data-rimg-scale="1"
  6431.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_{size}.jpg?v=1759501007"
  6432.      data-rimg-max="1000x1000"
  6433.      data-rimg-crop="false"
  6434.      
  6435.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  6436.    
  6437.  
  6438.    class="productitem--image-primary"
  6439.    
  6440.    
  6441.  >
  6442.  
  6443.  
  6444.  
  6445.  <div data-rimg-canvas></div>
  6446.  
  6447.  
  6448.            
  6449.  
  6450.            
  6451.  
  6452.  
  6453.  
  6454.  
  6455.  
  6456.  
  6457.  
  6458.  
  6459.  
  6460.  
  6461.  
  6462.  
  6463.  
  6464.  
  6465.  
  6466.  
  6467.  
  6468.  
  6469.  
  6470.  
  6471.  
  6472.  
  6473.  
  6474.  
  6475.  
  6476.  
  6477.  
  6478.          </figure>
  6479.        </a>
  6480.      </div><div class="productitem--info">
  6481.        
  6482.          
  6483.  
  6484.        
  6485.  
  6486.        
  6487.          
  6488.  
  6489.  
  6490.  
  6491.  
  6492.  
  6493.  
  6494.  
  6495.  
  6496.  
  6497.  
  6498.  
  6499.  
  6500.  
  6501.  
  6502.  
  6503.  
  6504.  
  6505.  
  6506.  
  6507.  
  6508.  
  6509.  
  6510.  
  6511.  
  6512.  
  6513.  
  6514.  
  6515.  
  6516.  
  6517.  
  6518. <div class="price productitem__price ">
  6519.  
  6520.    <div
  6521.      class="price__compare-at visible"
  6522.      data-price-compare-container
  6523.    >
  6524.  
  6525.      
  6526.        <span class="money price__original" data-price-original></span>
  6527.      
  6528.    </div>
  6529.  
  6530.  
  6531.    
  6532.      
  6533.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6534.        
  6535.          <span class="visually-hidden">Original price</span>
  6536.          <span class="money price__compare-at--min" data-price-compare-min>
  6537.            $115.98
  6538.          </span>
  6539.          -
  6540.          <span class="visually-hidden">Original price</span>
  6541.          <span class="money price__compare-at--max" data-price-compare-max>
  6542.            $115.98
  6543.          </span>
  6544.        
  6545.      </div>
  6546.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6547.        <span class="visually-hidden">Original price</span>
  6548.        <span class="money price__compare-at--single" data-price-compare>
  6549.          
  6550.        </span>
  6551.      </div>
  6552.    
  6553.  
  6554.  
  6555.  <div class="price__current price__current--emphasize " data-price-container>
  6556.  
  6557.    
  6558.  
  6559.    
  6560.      
  6561.      
  6562.      <span class="money" data-price>
  6563.        $115.98
  6564.      </span>
  6565.    
  6566.    
  6567.  </div>
  6568.  
  6569.  
  6570.    
  6571.    <div class="price__current--hidden" data-current-price-range-hidden>
  6572.      
  6573.        <span class="money price__current--min" data-price-min>$115.98</span>
  6574.        -
  6575.        <span class="money price__current--max" data-price-max>$115.98</span>
  6576.      
  6577.    </div>
  6578.    <div class="price__current--hidden" data-current-price-hidden>
  6579.      <span class="visually-hidden">Current price</span>
  6580.      <span class="money" data-price>
  6581.        $115.98
  6582.      </span>
  6583.    </div>
  6584.  
  6585.  
  6586.  
  6587.    
  6588.    
  6589.    
  6590.    
  6591.  
  6592.    <div
  6593.      class="
  6594.        productitem__unit-price
  6595.        hidden
  6596.      "
  6597.      data-unit-price
  6598.    >
  6599.      <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>
  6600.    </div>
  6601.  
  6602.  
  6603.  
  6604. </div>
  6605.  
  6606.  
  6607.        
  6608.  
  6609.        <h2 class="productitem--title">
  6610.          <a href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw" data-product-page-link>
  6611.            Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW
  6612.          </a>
  6613.        </h2>
  6614.  
  6615.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  6616.        <div class="star_container 3929789694039"></div>
  6617.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  6618.  
  6619.        
  6620.          
  6621.            <span class="productitem--vendor">
  6622.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  6623.            </span>
  6624.          
  6625.        
  6626.  
  6627.        
  6628.  
  6629.        
  6630.          
  6631.            <div class="productitem__stock-level">
  6632.              <!--
  6633.  
  6634.  
  6635.  
  6636.  
  6637.  
  6638.  
  6639.  
  6640. <div class="product-stock-level-wrapper" >
  6641.  
  6642.    <span class="
  6643.  product-stock-level
  6644.  product-stock-level--continue-selling
  6645.  
  6646. ">
  6647.      
  6648.  
  6649.      <span class="product-stock-level__text">
  6650.        
  6651.        <div class="product-stock-level__badge-text">
  6652.          
  6653.  
  6654.    In stock
  6655.  
  6656.  
  6657.        </div>
  6658.      </span>
  6659.    </span>
  6660.  
  6661. </div>
  6662. -->
  6663.              
  6664.  
  6665.  
  6666.    
  6667.      <b style="color:green">In stock</b>
  6668.    
  6669.  
  6670.  
  6671.  
  6672.  
  6673.  
  6674.  
  6675.  
  6676.            </div>
  6677.          
  6678.  
  6679.          
  6680.            
  6681.          
  6682.        
  6683.  
  6684.        
  6685.          <div class="productitem--description">
  6686.            <p>
  6687. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  6688.  
  6689. Compatible Part #s: KGYYH, 48DGW, N140HCE-G52
  6690.  
  6691. Compatible Models:
  6692. Dell Lati...</p>
  6693.  
  6694.            
  6695.              <a
  6696.                href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6697.                class="productitem--link"
  6698.                data-product-page-link
  6699.              >
  6700.                View full details
  6701.              </a>
  6702.            
  6703.          </div>
  6704.        
  6705.      </div>
  6706.  
  6707.      
  6708.        
  6709.          
  6710.          
  6711.          
  6712.  
  6713.          
  6714.          
  6715.  
  6716.          
  6717.  
  6718.          
  6719.  
  6720.          <div class="productitem--actions" data-product-actions>
  6721.            <div class="productitem--listview-price">
  6722.              
  6723.  
  6724.  
  6725.  
  6726.  
  6727.  
  6728.  
  6729.  
  6730.  
  6731.  
  6732.  
  6733.  
  6734.  
  6735.  
  6736.  
  6737.  
  6738.  
  6739.  
  6740.  
  6741.  
  6742.  
  6743.  
  6744.  
  6745.  
  6746.  
  6747.  
  6748.  
  6749.  
  6750.  
  6751.  
  6752.  
  6753. <div class="price productitem__price ">
  6754.  
  6755.    <div
  6756.      class="price__compare-at visible"
  6757.      data-price-compare-container
  6758.    >
  6759.  
  6760.      
  6761.        <span class="money price__original" data-price-original></span>
  6762.      
  6763.    </div>
  6764.  
  6765.  
  6766.    
  6767.      
  6768.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6769.        
  6770.          <span class="visually-hidden">Original price</span>
  6771.          <span class="money price__compare-at--min" data-price-compare-min>
  6772.            $115.98
  6773.          </span>
  6774.          -
  6775.          <span class="visually-hidden">Original price</span>
  6776.          <span class="money price__compare-at--max" data-price-compare-max>
  6777.            $115.98
  6778.          </span>
  6779.        
  6780.      </div>
  6781.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6782.        <span class="visually-hidden">Original price</span>
  6783.        <span class="money price__compare-at--single" data-price-compare>
  6784.          
  6785.        </span>
  6786.      </div>
  6787.    
  6788.  
  6789.  
  6790.  <div class="price__current price__current--emphasize " data-price-container>
  6791.  
  6792.    
  6793.  
  6794.    
  6795.      
  6796.      
  6797.      <span class="money" data-price>
  6798.        $115.98
  6799.      </span>
  6800.    
  6801.    
  6802.  </div>
  6803.  
  6804.  
  6805.    
  6806.    <div class="price__current--hidden" data-current-price-range-hidden>
  6807.      
  6808.        <span class="money price__current--min" data-price-min>$115.98</span>
  6809.        -
  6810.        <span class="money price__current--max" data-price-max>$115.98</span>
  6811.      
  6812.    </div>
  6813.    <div class="price__current--hidden" data-current-price-hidden>
  6814.      <span class="visually-hidden">Current price</span>
  6815.      <span class="money" data-price>
  6816.        $115.98
  6817.      </span>
  6818.    </div>
  6819.  
  6820.  
  6821.  
  6822.    
  6823.    
  6824.    
  6825.    
  6826.  
  6827.    <div
  6828.      class="
  6829.        productitem__unit-price
  6830.        hidden
  6831.      "
  6832.      data-unit-price
  6833.    >
  6834.      <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>
  6835.    </div>
  6836.  
  6837.  
  6838.  
  6839. </div>
  6840.  
  6841.  
  6842.            </div>
  6843.  
  6844.            <div class="productitem--listview-badge">
  6845.              
  6846.  
  6847.  
  6848.  
  6849.  
  6850.  
  6851.  
  6852.  
  6853.  
  6854.  
  6855.  
  6856.  
  6857.  
  6858.  
  6859.  
  6860.  
  6861.  
  6862.  
  6863.  
  6864.  
  6865.  
  6866.  
  6867.  
  6868.  
  6869.  
  6870.  
  6871.  
  6872.  
  6873.            </div>
  6874.  
  6875.            
  6876.              <div
  6877.                class="
  6878.                  productitem--action
  6879.                  quickshop-button
  6880.                  
  6881.                "
  6882.              >
  6883.                <button
  6884.                  class="productitem--action-trigger button-secondary"
  6885.                  data-quickshop-full
  6886.                  
  6887.                  
  6888.                  type="button"
  6889.                >
  6890.                  Quick shop
  6891.                </button>
  6892.              </div>
  6893.            
  6894.  
  6895.            
  6896.              <div
  6897.                class="
  6898.                  productitem--action
  6899.                  atc--button
  6900.                  
  6901.                "
  6902.              >
  6903.                <button
  6904.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6905.                  type="button"
  6906.                  aria-label="Add to cart"
  6907.                  
  6908.                    data-quick-buy
  6909.                  
  6910.                  data-variant-id="29462328246359"
  6911.                  
  6912.                >
  6913.                  <span class="atc-button--text">
  6914.                    Add to cart
  6915.                  </span>
  6916.                  <span class="atc-button--icon"><svg
  6917.  aria-hidden="true"
  6918.  focusable="false"
  6919.  role="presentation"
  6920.  width="26"
  6921.  height="26"
  6922.  viewBox="0 0 26 26"
  6923.  xmlns="http://www.w3.org/2000/svg"
  6924. >
  6925.  <g fill-rule="nonzero" fill="currentColor">
  6926.    <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"/>
  6927.  </g>
  6928. </svg></span>
  6929.                </button>
  6930.              </div>
  6931.            
  6932.          </div>
  6933.        
  6934.      
  6935.    </div>
  6936.  </div>
  6937.  
  6938.  
  6939.    <script type="application/json" data-quick-buy-settings>
  6940.      {
  6941.        "cart_redirection": true,
  6942.        "money_format": "${{amount}}"
  6943.      }
  6944.    </script>
  6945.  
  6946. </li>
  6947.    
  6948.      
  6949.  
  6950.  
  6951.  
  6952.  
  6953.  
  6954.  
  6955.  
  6956.  
  6957.  
  6958.  
  6959.  
  6960.  
  6961.  
  6962.  
  6963.  
  6964.  
  6965.  
  6966.  
  6967.  
  6968.  
  6969.  
  6970.  
  6971.  
  6972.  
  6973.  
  6974.  
  6975.  
  6976.  
  6977.  
  6978.  
  6979.  
  6980.  
  6981.    
  6982.  
  6983.  
  6984.  
  6985. <li
  6986.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6987.  data-product-item
  6988.  data-product-quickshop-url="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6989.  
  6990. >
  6991.  <div class="productitem" data-product-item-content>
  6992.    
  6993.    
  6994.    
  6995.    
  6996.  
  6997.    
  6998.  
  6999.    
  7000.  
  7001.    <div class="productitem__container">
  7002.      
  7003.  
  7004.      <div class="productitem__image-container">
  7005.        <a target="_blank"
  7006.          class="productitem--image-link"
  7007.          href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  7008.          aria-label="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  7009.          tabindex="-1"
  7010.          data-product-page-link
  7011.        >
  7012.          <figure
  7013.            class="productitem--image"
  7014.            data-product-item-image
  7015.            
  7016.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7017.            
  7018.          >
  7019.            
  7020.              
  7021.              
  7022.  
  7023.  
  7024.    <noscript data-rimg-noscript>
  7025.      <img loading="lazy"
  7026.        
  7027.          src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  7028.        
  7029.  
  7030.        alt="4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable - LaptopParts.ca"
  7031.        data-rimg="noscript"
  7032.        srcset="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251 1x, //laptopparts.ca/cdn/shop/products/molex1_599x599.jpg?v=1697125251 1.17x"
  7033.        class="productitem--image-primary"
  7034.        
  7035.        
  7036.      >
  7037.    </noscript>
  7038.  
  7039.  
  7040.  <img loading="lazy"
  7041.    
  7042.      src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  7043.    
  7044.    alt="4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable - LaptopParts.ca"
  7045.  
  7046.    
  7047.      data-rimg="lazy"
  7048.      data-rimg-scale="1"
  7049.      data-rimg-template="//laptopparts.ca/cdn/shop/products/molex1_{size}.jpg?v=1697125251"
  7050.      data-rimg-max="603x603"
  7051.      data-rimg-crop="false"
  7052.      
  7053.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7054.    
  7055.  
  7056.    class="productitem--image-primary"
  7057.    
  7058.    
  7059.  >
  7060.  
  7061.  
  7062.  
  7063.  <div data-rimg-canvas></div>
  7064.  
  7065.  
  7066.            
  7067.  
  7068.            
  7069.  
  7070.  
  7071.  
  7072.  
  7073.  
  7074.  
  7075.  
  7076.  
  7077.  
  7078.  
  7079.  
  7080.  
  7081.  
  7082.  
  7083.  
  7084.  
  7085.  
  7086.  
  7087.  
  7088.  
  7089.  
  7090.  
  7091.  
  7092.  
  7093.  
  7094.  
  7095.  
  7096.          </figure>
  7097.        </a>
  7098.      </div><div class="productitem--info">
  7099.        
  7100.          
  7101.  
  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.  
  7131.  
  7132.  
  7133.  
  7134.  
  7135.  
  7136. <div class="price productitem__price ">
  7137.  
  7138.    <div
  7139.      class="price__compare-at visible"
  7140.      data-price-compare-container
  7141.    >
  7142.  
  7143.      
  7144.        <span class="money price__original" data-price-original></span>
  7145.      
  7146.    </div>
  7147.  
  7148.  
  7149.    
  7150.      
  7151.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7152.        
  7153.          <span class="visually-hidden">Original price</span>
  7154.          <span class="money price__compare-at--min" data-price-compare-min>
  7155.            $36.99
  7156.          </span>
  7157.          -
  7158.          <span class="visually-hidden">Original price</span>
  7159.          <span class="money price__compare-at--max" data-price-compare-max>
  7160.            $36.99
  7161.          </span>
  7162.        
  7163.      </div>
  7164.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7165.        <span class="visually-hidden">Original price</span>
  7166.        <span class="money price__compare-at--single" data-price-compare>
  7167.          
  7168.        </span>
  7169.      </div>
  7170.    
  7171.  
  7172.  
  7173.  <div class="price__current price__current--emphasize " data-price-container>
  7174.  
  7175.    
  7176.  
  7177.    
  7178.      
  7179.      
  7180.      <span class="money" data-price>
  7181.        $36.99
  7182.      </span>
  7183.    
  7184.    
  7185.  </div>
  7186.  
  7187.  
  7188.    
  7189.    <div class="price__current--hidden" data-current-price-range-hidden>
  7190.      
  7191.        <span class="money price__current--min" data-price-min>$36.99</span>
  7192.        -
  7193.        <span class="money price__current--max" data-price-max>$36.99</span>
  7194.      
  7195.    </div>
  7196.    <div class="price__current--hidden" data-current-price-hidden>
  7197.      <span class="visually-hidden">Current price</span>
  7198.      <span class="money" data-price>
  7199.        $36.99
  7200.      </span>
  7201.    </div>
  7202.  
  7203.  
  7204.  
  7205.    
  7206.    
  7207.    
  7208.    
  7209.  
  7210.    <div
  7211.      class="
  7212.        productitem__unit-price
  7213.        hidden
  7214.      "
  7215.      data-unit-price
  7216.    >
  7217.      <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>
  7218.    </div>
  7219.  
  7220.  
  7221.  
  7222. </div>
  7223.  
  7224.  
  7225.        
  7226.  
  7227.        <h2 class="productitem--title">
  7228.          <a href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable" data-product-page-link>
  7229.            4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable
  7230.          </a>
  7231.        </h2>
  7232.  
  7233.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7234.        <div class="star_container 1416490647575"></div>
  7235.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7236.  
  7237.        
  7238.          
  7239.            <span class="productitem--vendor">
  7240.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  7241.            </span>
  7242.          
  7243.        
  7244.  
  7245.        
  7246.  
  7247.        
  7248.          
  7249.            <div class="productitem__stock-level">
  7250.              <!--
  7251.  
  7252.  
  7253.  
  7254.  
  7255.  
  7256.  
  7257.  
  7258. <div class="product-stock-level-wrapper" >
  7259.  
  7260.    <span class="
  7261.  product-stock-level
  7262.  product-stock-level--continue-selling
  7263.  
  7264. ">
  7265.      
  7266.  
  7267.      <span class="product-stock-level__text">
  7268.        
  7269.        <div class="product-stock-level__badge-text">
  7270.          
  7271.  
  7272.    In stock
  7273.  
  7274.  
  7275.        </div>
  7276.      </span>
  7277.    </span>
  7278.  
  7279. </div>
  7280. -->
  7281.              
  7282.  
  7283.  
  7284.    
  7285.      <b style="color:green">In stock</b>
  7286.    
  7287.  
  7288.  
  7289.  
  7290.  
  7291.  
  7292.  
  7293.  
  7294.            </div>
  7295.          
  7296.  
  7297.          
  7298.            
  7299.          
  7300.        
  7301.  
  7302.        
  7303.          <div class="productitem--description">
  7304.            <p>4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable</p>
  7305.  
  7306.            
  7307.          </div>
  7308.        
  7309.      </div>
  7310.  
  7311.      
  7312.        
  7313.          
  7314.          
  7315.          
  7316.  
  7317.          
  7318.          
  7319.  
  7320.          
  7321.  
  7322.          
  7323.  
  7324.          <div class="productitem--actions" data-product-actions>
  7325.            <div class="productitem--listview-price">
  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.  
  7354.  
  7355.  
  7356.  
  7357. <div class="price productitem__price ">
  7358.  
  7359.    <div
  7360.      class="price__compare-at visible"
  7361.      data-price-compare-container
  7362.    >
  7363.  
  7364.      
  7365.        <span class="money price__original" data-price-original></span>
  7366.      
  7367.    </div>
  7368.  
  7369.  
  7370.    
  7371.      
  7372.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7373.        
  7374.          <span class="visually-hidden">Original price</span>
  7375.          <span class="money price__compare-at--min" data-price-compare-min>
  7376.            $36.99
  7377.          </span>
  7378.          -
  7379.          <span class="visually-hidden">Original price</span>
  7380.          <span class="money price__compare-at--max" data-price-compare-max>
  7381.            $36.99
  7382.          </span>
  7383.        
  7384.      </div>
  7385.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7386.        <span class="visually-hidden">Original price</span>
  7387.        <span class="money price__compare-at--single" data-price-compare>
  7388.          
  7389.        </span>
  7390.      </div>
  7391.    
  7392.  
  7393.  
  7394.  <div class="price__current price__current--emphasize " data-price-container>
  7395.  
  7396.    
  7397.  
  7398.    
  7399.      
  7400.      
  7401.      <span class="money" data-price>
  7402.        $36.99
  7403.      </span>
  7404.    
  7405.    
  7406.  </div>
  7407.  
  7408.  
  7409.    
  7410.    <div class="price__current--hidden" data-current-price-range-hidden>
  7411.      
  7412.        <span class="money price__current--min" data-price-min>$36.99</span>
  7413.        -
  7414.        <span class="money price__current--max" data-price-max>$36.99</span>
  7415.      
  7416.    </div>
  7417.    <div class="price__current--hidden" data-current-price-hidden>
  7418.      <span class="visually-hidden">Current price</span>
  7419.      <span class="money" data-price>
  7420.        $36.99
  7421.      </span>
  7422.    </div>
  7423.  
  7424.  
  7425.  
  7426.    
  7427.    
  7428.    
  7429.    
  7430.  
  7431.    <div
  7432.      class="
  7433.        productitem__unit-price
  7434.        hidden
  7435.      "
  7436.      data-unit-price
  7437.    >
  7438.      <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>
  7439.    </div>
  7440.  
  7441.  
  7442.  
  7443. </div>
  7444.  
  7445.  
  7446.            </div>
  7447.  
  7448.            <div class="productitem--listview-badge">
  7449.              
  7450.  
  7451.  
  7452.  
  7453.  
  7454.  
  7455.  
  7456.  
  7457.  
  7458.  
  7459.  
  7460.  
  7461.  
  7462.  
  7463.  
  7464.  
  7465.  
  7466.  
  7467.  
  7468.  
  7469.  
  7470.  
  7471.  
  7472.  
  7473.  
  7474.  
  7475.  
  7476.  
  7477.            </div>
  7478.  
  7479.            
  7480.              <div
  7481.                class="
  7482.                  productitem--action
  7483.                  quickshop-button
  7484.                  
  7485.                "
  7486.              >
  7487.                <button
  7488.                  class="productitem--action-trigger button-secondary"
  7489.                  data-quickshop-full
  7490.                  
  7491.                  
  7492.                  type="button"
  7493.                >
  7494.                  Quick shop
  7495.                </button>
  7496.              </div>
  7497.            
  7498.  
  7499.            
  7500.              <div
  7501.                class="
  7502.                  productitem--action
  7503.                  atc--button
  7504.                  
  7505.                "
  7506.              >
  7507.                <button
  7508.                  class="productitem--action-trigger productitem--action-atc button-primary"
  7509.                  type="button"
  7510.                  aria-label="Add to cart"
  7511.                  
  7512.                    data-quick-buy
  7513.                  
  7514.                  data-variant-id="12583329333271"
  7515.                  
  7516.                >
  7517.                  <span class="atc-button--text">
  7518.                    Add to cart
  7519.                  </span>
  7520.                  <span class="atc-button--icon"><svg
  7521.  aria-hidden="true"
  7522.  focusable="false"
  7523.  role="presentation"
  7524.  width="26"
  7525.  height="26"
  7526.  viewBox="0 0 26 26"
  7527.  xmlns="http://www.w3.org/2000/svg"
  7528. >
  7529.  <g fill-rule="nonzero" fill="currentColor">
  7530.    <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"/>
  7531.  </g>
  7532. </svg></span>
  7533.                </button>
  7534.              </div>
  7535.            
  7536.          </div>
  7537.        
  7538.      
  7539.    </div>
  7540.  </div>
  7541.  
  7542.  
  7543.    <script type="application/json" data-quick-buy-settings>
  7544.      {
  7545.        "cart_redirection": true,
  7546.        "money_format": "${{amount}}"
  7547.      }
  7548.    </script>
  7549.  
  7550. </li>
  7551.    
  7552.      
  7553.  
  7554.  
  7555.  
  7556.  
  7557.  
  7558.  
  7559.  
  7560.  
  7561.  
  7562.  
  7563.  
  7564.  
  7565.  
  7566.  
  7567.  
  7568.  
  7569.  
  7570.  
  7571.  
  7572.  
  7573.  
  7574.  
  7575.  
  7576.  
  7577.  
  7578.  
  7579.  
  7580.  
  7581.  
  7582.  
  7583.  
  7584.  
  7585.    
  7586.  
  7587.  
  7588.  
  7589. <li
  7590.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  7591.  data-product-item
  7592.  data-product-quickshop-url="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7593.  
  7594. >
  7595.  <div class="productitem" data-product-item-content>
  7596.    
  7597.    
  7598.    
  7599.    
  7600.  
  7601.    
  7602.  
  7603.    
  7604.  
  7605.    <div class="productitem__container">
  7606.      
  7607.  
  7608.      <div class="productitem__image-container">
  7609.        <a target="_blank"
  7610.          class="productitem--image-link"
  7611.          href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7612.          aria-label="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7613.          tabindex="-1"
  7614.          data-product-page-link
  7615.        >
  7616.          <figure
  7617.            class="productitem--image"
  7618.            data-product-item-image
  7619.            
  7620.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7621.            
  7622.          >
  7623.            
  7624.              
  7625.              
  7626.  
  7627.  
  7628.    <noscript data-rimg-noscript>
  7629.      <img loading="lazy"
  7630.        
  7631.          src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7632.        
  7633.  
  7634.        alt="MacBook Pro"
  7635.        data-rimg="noscript"
  7636.        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"
  7637.        class="productitem--image-primary"
  7638.        
  7639.        
  7640.      >
  7641.    </noscript>
  7642.  
  7643.  
  7644.  <img loading="lazy"
  7645.    
  7646.      src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7647.    
  7648.    alt="MacBook Pro"
  7649.  
  7650.    
  7651.      data-rimg="lazy"
  7652.      data-rimg-scale="1"
  7653.      data-rimg-template="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_{size}.jpg?v=1726123088"
  7654.      data-rimg-max="1000x1000"
  7655.      data-rimg-crop="false"
  7656.      
  7657.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7658.    
  7659.  
  7660.    class="productitem--image-primary"
  7661.    
  7662.    
  7663.  >
  7664.  
  7665.  
  7666.  
  7667.  <div data-rimg-canvas></div>
  7668.  
  7669.  
  7670.            
  7671.  
  7672.            
  7673.  
  7674.  
  7675.  
  7676.  
  7677.  
  7678.  
  7679.  
  7680.  
  7681.  
  7682.  
  7683.  
  7684.  
  7685.  
  7686.  
  7687.  
  7688.  
  7689.  
  7690.  
  7691.  
  7692.  
  7693.  
  7694.  
  7695.  
  7696.  
  7697.  
  7698.  
  7699.  
  7700.          </figure>
  7701.        </a>
  7702.      </div><div class="productitem--info">
  7703.        
  7704.          
  7705.  
  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.  
  7735.  
  7736.  
  7737.  
  7738.  
  7739.  
  7740. <div class="price productitem__price ">
  7741.  
  7742.    <div
  7743.      class="price__compare-at visible"
  7744.      data-price-compare-container
  7745.    >
  7746.  
  7747.      
  7748.        <span class="money price__original" data-price-original></span>
  7749.      
  7750.    </div>
  7751.  
  7752.  
  7753.    
  7754.      
  7755.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7756.        
  7757.          <span class="visually-hidden">Original price</span>
  7758.          <span class="money price__compare-at--min" data-price-compare-min>
  7759.            $40.98
  7760.          </span>
  7761.          -
  7762.          <span class="visually-hidden">Original price</span>
  7763.          <span class="money price__compare-at--max" data-price-compare-max>
  7764.            $40.98
  7765.          </span>
  7766.        
  7767.      </div>
  7768.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7769.        <span class="visually-hidden">Original price</span>
  7770.        <span class="money price__compare-at--single" data-price-compare>
  7771.          
  7772.        </span>
  7773.      </div>
  7774.    
  7775.  
  7776.  
  7777.  <div class="price__current price__current--emphasize " data-price-container>
  7778.  
  7779.    
  7780.  
  7781.    
  7782.      
  7783.      
  7784.      <span class="money" data-price>
  7785.        $40.98
  7786.      </span>
  7787.    
  7788.    
  7789.  </div>
  7790.  
  7791.  
  7792.    
  7793.    <div class="price__current--hidden" data-current-price-range-hidden>
  7794.      
  7795.        <span class="money price__current--min" data-price-min>$40.98</span>
  7796.        -
  7797.        <span class="money price__current--max" data-price-max>$40.98</span>
  7798.      
  7799.    </div>
  7800.    <div class="price__current--hidden" data-current-price-hidden>
  7801.      <span class="visually-hidden">Current price</span>
  7802.      <span class="money" data-price>
  7803.        $40.98
  7804.      </span>
  7805.    </div>
  7806.  
  7807.  
  7808.  
  7809.    
  7810.    
  7811.    
  7812.    
  7813.  
  7814.    <div
  7815.      class="
  7816.        productitem__unit-price
  7817.        hidden
  7818.      "
  7819.      data-unit-price
  7820.    >
  7821.      <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>
  7822.    </div>
  7823.  
  7824.  
  7825.  
  7826. </div>
  7827.  
  7828.  
  7829.        
  7830.  
  7831.        <h2 class="productitem--title">
  7832.          <a href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011" data-product-page-link>
  7833.            60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011
  7834.          </a>
  7835.        </h2>
  7836.  
  7837.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7838.        <div class="star_container 6872720015447"></div>
  7839.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7840.  
  7841.        
  7842.          
  7843.            <span class="productitem--vendor">
  7844.              <a href="/collections/vendors?q=Apple" title="Apple">Apple</a>
  7845.            </span>
  7846.          
  7847.        
  7848.  
  7849.        
  7850.  
  7851.        
  7852.          
  7853.            <div class="productitem__stock-level">
  7854.              <!--
  7855.  
  7856.  
  7857.  
  7858.  
  7859.  
  7860.  
  7861.  
  7862. <div class="product-stock-level-wrapper" >
  7863.  
  7864.    <span class="
  7865.  product-stock-level
  7866.  product-stock-level--continue-selling
  7867.  
  7868. ">
  7869.      
  7870.  
  7871.      <span class="product-stock-level__text">
  7872.        
  7873.        <div class="product-stock-level__badge-text">
  7874.          
  7875.  
  7876.    In stock
  7877.  
  7878.  
  7879.        </div>
  7880.      </span>
  7881.    </span>
  7882.  
  7883. </div>
  7884. -->
  7885.              
  7886.  
  7887.  
  7888.    
  7889.      <b style="color:green">In stock</b>
  7890.    
  7891.  
  7892.  
  7893.  
  7894.  
  7895.  
  7896.  
  7897.  
  7898.            </div>
  7899.          
  7900.  
  7901.          
  7902.            
  7903.          
  7904.        
  7905.  
  7906.        
  7907.          <div class="productitem--description">
  7908.            <p>Plugs directly into AC outlet.
  7909. 60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011 
  7910. Input: 100-240V ~ 50-60Hz
  7911. Output: 1...</p>
  7912.  
  7913.            
  7914.              <a
  7915.                href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7916.                class="productitem--link"
  7917.                data-product-page-link
  7918.              >
  7919.                View full details
  7920.              </a>
  7921.            
  7922.          </div>
  7923.        
  7924.      </div>
  7925.  
  7926.      
  7927.        
  7928.          
  7929.          
  7930.          
  7931.  
  7932.          
  7933.          
  7934.  
  7935.          
  7936.  
  7937.          
  7938.  
  7939.          <div class="productitem--actions" data-product-actions>
  7940.            <div class="productitem--listview-price">
  7941.              
  7942.  
  7943.  
  7944.  
  7945.  
  7946.  
  7947.  
  7948.  
  7949.  
  7950.  
  7951.  
  7952.  
  7953.  
  7954.  
  7955.  
  7956.  
  7957.  
  7958.  
  7959.  
  7960.  
  7961.  
  7962.  
  7963.  
  7964.  
  7965.  
  7966.  
  7967.  
  7968.  
  7969.  
  7970.  
  7971.  
  7972. <div class="price productitem__price ">
  7973.  
  7974.    <div
  7975.      class="price__compare-at visible"
  7976.      data-price-compare-container
  7977.    >
  7978.  
  7979.      
  7980.        <span class="money price__original" data-price-original></span>
  7981.      
  7982.    </div>
  7983.  
  7984.  
  7985.    
  7986.      
  7987.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7988.        
  7989.          <span class="visually-hidden">Original price</span>
  7990.          <span class="money price__compare-at--min" data-price-compare-min>
  7991.            $40.98
  7992.          </span>
  7993.          -
  7994.          <span class="visually-hidden">Original price</span>
  7995.          <span class="money price__compare-at--max" data-price-compare-max>
  7996.            $40.98
  7997.          </span>
  7998.        
  7999.      </div>
  8000.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8001.        <span class="visually-hidden">Original price</span>
  8002.        <span class="money price__compare-at--single" data-price-compare>
  8003.          
  8004.        </span>
  8005.      </div>
  8006.    
  8007.  
  8008.  
  8009.  <div class="price__current price__current--emphasize " data-price-container>
  8010.  
  8011.    
  8012.  
  8013.    
  8014.      
  8015.      
  8016.      <span class="money" data-price>
  8017.        $40.98
  8018.      </span>
  8019.    
  8020.    
  8021.  </div>
  8022.  
  8023.  
  8024.    
  8025.    <div class="price__current--hidden" data-current-price-range-hidden>
  8026.      
  8027.        <span class="money price__current--min" data-price-min>$40.98</span>
  8028.        -
  8029.        <span class="money price__current--max" data-price-max>$40.98</span>
  8030.      
  8031.    </div>
  8032.    <div class="price__current--hidden" data-current-price-hidden>
  8033.      <span class="visually-hidden">Current price</span>
  8034.      <span class="money" data-price>
  8035.        $40.98
  8036.      </span>
  8037.    </div>
  8038.  
  8039.  
  8040.  
  8041.    
  8042.    
  8043.    
  8044.    
  8045.  
  8046.    <div
  8047.      class="
  8048.        productitem__unit-price
  8049.        hidden
  8050.      "
  8051.      data-unit-price
  8052.    >
  8053.      <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>
  8054.    </div>
  8055.  
  8056.  
  8057.  
  8058. </div>
  8059.  
  8060.  
  8061.            </div>
  8062.  
  8063.            <div class="productitem--listview-badge">
  8064.              
  8065.  
  8066.  
  8067.  
  8068.  
  8069.  
  8070.  
  8071.  
  8072.  
  8073.  
  8074.  
  8075.  
  8076.  
  8077.  
  8078.  
  8079.  
  8080.  
  8081.  
  8082.  
  8083.  
  8084.  
  8085.  
  8086.  
  8087.  
  8088.  
  8089.  
  8090.  
  8091.  
  8092.            </div>
  8093.  
  8094.            
  8095.              <div
  8096.                class="
  8097.                  productitem--action
  8098.                  quickshop-button
  8099.                  
  8100.                "
  8101.              >
  8102.                <button
  8103.                  class="productitem--action-trigger button-secondary"
  8104.                  data-quickshop-full
  8105.                  
  8106.                  
  8107.                  type="button"
  8108.                >
  8109.                  Quick shop
  8110.                </button>
  8111.              </div>
  8112.            
  8113.  
  8114.            
  8115.              <div
  8116.                class="
  8117.                  productitem--action
  8118.                  atc--button
  8119.                  
  8120.                "
  8121.              >
  8122.                <button
  8123.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8124.                  type="button"
  8125.                  aria-label="Add to cart"
  8126.                  
  8127.                    data-quick-buy
  8128.                  
  8129.                  data-variant-id="40156967370839"
  8130.                  
  8131.                >
  8132.                  <span class="atc-button--text">
  8133.                    Add to cart
  8134.                  </span>
  8135.                  <span class="atc-button--icon"><svg
  8136.  aria-hidden="true"
  8137.  focusable="false"
  8138.  role="presentation"
  8139.  width="26"
  8140.  height="26"
  8141.  viewBox="0 0 26 26"
  8142.  xmlns="http://www.w3.org/2000/svg"
  8143. >
  8144.  <g fill-rule="nonzero" fill="currentColor">
  8145.    <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"/>
  8146.  </g>
  8147. </svg></span>
  8148.                </button>
  8149.              </div>
  8150.            
  8151.          </div>
  8152.        
  8153.      
  8154.    </div>
  8155.  </div>
  8156.  
  8157.  
  8158.    <script type="application/json" data-quick-buy-settings>
  8159.      {
  8160.        "cart_redirection": true,
  8161.        "money_format": "${{amount}}"
  8162.      }
  8163.    </script>
  8164.  
  8165. </li>
  8166.    
  8167.      
  8168.  
  8169.  
  8170.  
  8171.  
  8172.  
  8173.  
  8174.  
  8175.  
  8176.  
  8177.  
  8178.  
  8179.  
  8180.  
  8181.  
  8182.  
  8183.  
  8184.  
  8185.  
  8186.  
  8187.  
  8188.  
  8189.  
  8190.  
  8191.  
  8192.  
  8193.  
  8194.  
  8195.  
  8196.  
  8197.  
  8198.  
  8199.  
  8200.    
  8201.  
  8202.  
  8203.  
  8204. <li
  8205.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8206.  data-product-item
  8207.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8208.  
  8209. >
  8210.  <div class="productitem" data-product-item-content>
  8211.    
  8212.    
  8213.    
  8214.    
  8215.  
  8216.    
  8217.  
  8218.    
  8219.  
  8220.    <div class="productitem__container">
  8221.      
  8222.  
  8223.      <div class="productitem__image-container">
  8224.        <a target="_blank"
  8225.          class="productitem--image-link"
  8226.          href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8227.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8228.          tabindex="-1"
  8229.          data-product-page-link
  8230.        >
  8231.          <figure
  8232.            class="productitem--image"
  8233.            data-product-item-image
  8234.            
  8235.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8236.            
  8237.          >
  8238.            
  8239.              
  8240.              
  8241.  
  8242.  
  8243.    <noscript data-rimg-noscript>
  8244.      <img loading="lazy"
  8245.        
  8246.          src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1759501418"
  8247.        
  8248.  
  8249.        alt="15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8 - LaptopParts.ca"
  8250.        data-rimg="noscript"
  8251.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1759501418 1x"
  8252.        class="productitem--image-primary"
  8253.        
  8254.        
  8255.      >
  8256.    </noscript>
  8257.  
  8258.  
  8259.  <img loading="lazy"
  8260.    
  8261.      src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1759501418"
  8262.    
  8263.    alt="15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8 - LaptopParts.ca"
  8264.  
  8265.    
  8266.      data-rimg="lazy"
  8267.      data-rimg-scale="1"
  8268.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_{size}.jpg?v=1759501418"
  8269.      data-rimg-max="500x500"
  8270.      data-rimg-crop="false"
  8271.      
  8272.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8273.    
  8274.  
  8275.    class="productitem--image-primary"
  8276.    
  8277.    
  8278.  >
  8279.  
  8280.  
  8281.  
  8282.  <div data-rimg-canvas></div>
  8283.  
  8284.  
  8285.            
  8286.  
  8287.            
  8288.  
  8289.  
  8290.  
  8291.  
  8292.  
  8293.  
  8294.  
  8295.  
  8296.  
  8297.  
  8298.  
  8299.  
  8300.  
  8301.  
  8302.  
  8303.  
  8304.  
  8305.  
  8306.  
  8307.  
  8308.  
  8309.  
  8310.  
  8311.  
  8312.  
  8313.  
  8314.  
  8315.          </figure>
  8316.        </a>
  8317.      </div><div class="productitem--info">
  8318.        
  8319.          
  8320.  
  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.  
  8350.  
  8351.  
  8352.  
  8353.  
  8354.  
  8355. <div class="price productitem__price ">
  8356.  
  8357.    <div
  8358.      class="price__compare-at visible"
  8359.      data-price-compare-container
  8360.    >
  8361.  
  8362.      
  8363.        <span class="money price__original" data-price-original></span>
  8364.      
  8365.    </div>
  8366.  
  8367.  
  8368.    
  8369.      
  8370.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8371.        
  8372.          <span class="visually-hidden">Original price</span>
  8373.          <span class="money price__compare-at--min" data-price-compare-min>
  8374.            $253.99
  8375.          </span>
  8376.          -
  8377.          <span class="visually-hidden">Original price</span>
  8378.          <span class="money price__compare-at--max" data-price-compare-max>
  8379.            $253.99
  8380.          </span>
  8381.        
  8382.      </div>
  8383.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8384.        <span class="visually-hidden">Original price</span>
  8385.        <span class="money price__compare-at--single" data-price-compare>
  8386.          
  8387.        </span>
  8388.      </div>
  8389.    
  8390.  
  8391.  
  8392.  <div class="price__current price__current--emphasize " data-price-container>
  8393.  
  8394.    
  8395.  
  8396.    
  8397.      
  8398.      
  8399.      <span class="money" data-price>
  8400.        $253.99
  8401.      </span>
  8402.    
  8403.    
  8404.  </div>
  8405.  
  8406.  
  8407.    
  8408.    <div class="price__current--hidden" data-current-price-range-hidden>
  8409.      
  8410.        <span class="money price__current--min" data-price-min>$253.99</span>
  8411.        -
  8412.        <span class="money price__current--max" data-price-max>$253.99</span>
  8413.      
  8414.    </div>
  8415.    <div class="price__current--hidden" data-current-price-hidden>
  8416.      <span class="visually-hidden">Current price</span>
  8417.      <span class="money" data-price>
  8418.        $253.99
  8419.      </span>
  8420.    </div>
  8421.  
  8422.  
  8423.  
  8424.    
  8425.    
  8426.    
  8427.    
  8428.  
  8429.    <div
  8430.      class="
  8431.        productitem__unit-price
  8432.        hidden
  8433.      "
  8434.      data-unit-price
  8435.    >
  8436.      <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>
  8437.    </div>
  8438.  
  8439.  
  8440.  
  8441. </div>
  8442.  
  8443.  
  8444.        
  8445.  
  8446.        <h2 class="productitem--title">
  8447.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8" data-product-page-link>
  8448.            15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8
  8449.          </a>
  8450.        </h2>
  8451.  
  8452.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8453.        <div class="star_container 3933207593047"></div>
  8454.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8455.  
  8456.        
  8457.          
  8458.            <span class="productitem--vendor">
  8459.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  8460.            </span>
  8461.          
  8462.        
  8463.  
  8464.        
  8465.  
  8466.        
  8467.          
  8468.            <div class="productitem__stock-level">
  8469.              <!--
  8470.  
  8471.  
  8472.  
  8473.  
  8474.  
  8475.  
  8476.  
  8477. <div class="product-stock-level-wrapper" >
  8478.  
  8479.    <span class="
  8480.  product-stock-level
  8481.  product-stock-level--continue-selling
  8482.  
  8483. ">
  8484.      
  8485.  
  8486.      <span class="product-stock-level__text">
  8487.        
  8488.        <div class="product-stock-level__badge-text">
  8489.          
  8490.  
  8491.    In stock
  8492.  
  8493.  
  8494.        </div>
  8495.      </span>
  8496.    </span>
  8497.  
  8498. </div>
  8499. -->
  8500.              
  8501.  
  8502.  
  8503.    
  8504.      <b style="color:green">In stock</b>
  8505.    
  8506.  
  8507.  
  8508.  
  8509.  
  8510.  
  8511.  
  8512.  
  8513.            </div>
  8514.          
  8515.  
  8516.          
  8517.            
  8518.          
  8519.        
  8520.  
  8521.        
  8522.          <div class="productitem--description">
  8523.            <p>
  8524. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  8525.  
  8526. **This screen will only work if your laptop is one of the models below that ca...</p>
  8527.  
  8528.            
  8529.              <a
  8530.                href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8531.                class="productitem--link"
  8532.                data-product-page-link
  8533.              >
  8534.                View full details
  8535.              </a>
  8536.            
  8537.          </div>
  8538.        
  8539.      </div>
  8540.  
  8541.      
  8542.        
  8543.          
  8544.          
  8545.          
  8546.  
  8547.          
  8548.          
  8549.  
  8550.          
  8551.  
  8552.          
  8553.  
  8554.          <div class="productitem--actions" data-product-actions>
  8555.            <div class="productitem--listview-price">
  8556.              
  8557.  
  8558.  
  8559.  
  8560.  
  8561.  
  8562.  
  8563.  
  8564.  
  8565.  
  8566.  
  8567.  
  8568.  
  8569.  
  8570.  
  8571.  
  8572.  
  8573.  
  8574.  
  8575.  
  8576.  
  8577.  
  8578.  
  8579.  
  8580.  
  8581.  
  8582.  
  8583.  
  8584.  
  8585.  
  8586.  
  8587. <div class="price productitem__price ">
  8588.  
  8589.    <div
  8590.      class="price__compare-at visible"
  8591.      data-price-compare-container
  8592.    >
  8593.  
  8594.      
  8595.        <span class="money price__original" data-price-original></span>
  8596.      
  8597.    </div>
  8598.  
  8599.  
  8600.    
  8601.      
  8602.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8603.        
  8604.          <span class="visually-hidden">Original price</span>
  8605.          <span class="money price__compare-at--min" data-price-compare-min>
  8606.            $253.99
  8607.          </span>
  8608.          -
  8609.          <span class="visually-hidden">Original price</span>
  8610.          <span class="money price__compare-at--max" data-price-compare-max>
  8611.            $253.99
  8612.          </span>
  8613.        
  8614.      </div>
  8615.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8616.        <span class="visually-hidden">Original price</span>
  8617.        <span class="money price__compare-at--single" data-price-compare>
  8618.          
  8619.        </span>
  8620.      </div>
  8621.    
  8622.  
  8623.  
  8624.  <div class="price__current price__current--emphasize " data-price-container>
  8625.  
  8626.    
  8627.  
  8628.    
  8629.      
  8630.      
  8631.      <span class="money" data-price>
  8632.        $253.99
  8633.      </span>
  8634.    
  8635.    
  8636.  </div>
  8637.  
  8638.  
  8639.    
  8640.    <div class="price__current--hidden" data-current-price-range-hidden>
  8641.      
  8642.        <span class="money price__current--min" data-price-min>$253.99</span>
  8643.        -
  8644.        <span class="money price__current--max" data-price-max>$253.99</span>
  8645.      
  8646.    </div>
  8647.    <div class="price__current--hidden" data-current-price-hidden>
  8648.      <span class="visually-hidden">Current price</span>
  8649.      <span class="money" data-price>
  8650.        $253.99
  8651.      </span>
  8652.    </div>
  8653.  
  8654.  
  8655.  
  8656.    
  8657.    
  8658.    
  8659.    
  8660.  
  8661.    <div
  8662.      class="
  8663.        productitem__unit-price
  8664.        hidden
  8665.      "
  8666.      data-unit-price
  8667.    >
  8668.      <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>
  8669.    </div>
  8670.  
  8671.  
  8672.  
  8673. </div>
  8674.  
  8675.  
  8676.            </div>
  8677.  
  8678.            <div class="productitem--listview-badge">
  8679.              
  8680.  
  8681.  
  8682.  
  8683.  
  8684.  
  8685.  
  8686.  
  8687.  
  8688.  
  8689.  
  8690.  
  8691.  
  8692.  
  8693.  
  8694.  
  8695.  
  8696.  
  8697.  
  8698.  
  8699.  
  8700.  
  8701.  
  8702.  
  8703.  
  8704.  
  8705.  
  8706.  
  8707.            </div>
  8708.  
  8709.            
  8710.              <div
  8711.                class="
  8712.                  productitem--action
  8713.                  quickshop-button
  8714.                  
  8715.                "
  8716.              >
  8717.                <button
  8718.                  class="productitem--action-trigger button-secondary"
  8719.                  data-quickshop-full
  8720.                  
  8721.                  
  8722.                  type="button"
  8723.                >
  8724.                  Quick shop
  8725.                </button>
  8726.              </div>
  8727.            
  8728.  
  8729.            
  8730.              <div
  8731.                class="
  8732.                  productitem--action
  8733.                  atc--button
  8734.                  
  8735.                "
  8736.              >
  8737.                <button
  8738.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8739.                  type="button"
  8740.                  aria-label="Add to cart"
  8741.                  
  8742.                    data-quick-buy
  8743.                  
  8744.                  data-variant-id="29531492974679"
  8745.                  
  8746.                >
  8747.                  <span class="atc-button--text">
  8748.                    Add to cart
  8749.                  </span>
  8750.                  <span class="atc-button--icon"><svg
  8751.  aria-hidden="true"
  8752.  focusable="false"
  8753.  role="presentation"
  8754.  width="26"
  8755.  height="26"
  8756.  viewBox="0 0 26 26"
  8757.  xmlns="http://www.w3.org/2000/svg"
  8758. >
  8759.  <g fill-rule="nonzero" fill="currentColor">
  8760.    <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"/>
  8761.  </g>
  8762. </svg></span>
  8763.                </button>
  8764.              </div>
  8765.            
  8766.          </div>
  8767.        
  8768.      
  8769.    </div>
  8770.  </div>
  8771.  
  8772.  
  8773.    <script type="application/json" data-quick-buy-settings>
  8774.      {
  8775.        "cart_redirection": true,
  8776.        "money_format": "${{amount}}"
  8777.      }
  8778.    </script>
  8779.  
  8780. </li>
  8781.    
  8782.      
  8783.  
  8784.  
  8785.  
  8786.  
  8787.  
  8788.  
  8789.  
  8790.  
  8791.  
  8792.  
  8793.  
  8794.  
  8795.  
  8796.  
  8797.  
  8798.  
  8799.  
  8800.  
  8801.  
  8802.  
  8803.  
  8804.  
  8805.  
  8806.  
  8807.  
  8808.  
  8809.  
  8810.  
  8811.  
  8812.  
  8813.  
  8814.  
  8815.    
  8816.  
  8817.  
  8818.  
  8819. <li
  8820.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8821.  data-product-item
  8822.  data-product-quickshop-url="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8823.  
  8824. >
  8825.  <div class="productitem" data-product-item-content>
  8826.    
  8827.    
  8828.    
  8829.    
  8830.  
  8831.    
  8832.  
  8833.    
  8834.  
  8835.    <div class="productitem__container">
  8836.      
  8837.  
  8838.      <div class="productitem__image-container">
  8839.        <a target="_blank"
  8840.          class="productitem--image-link"
  8841.          href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8842.          aria-label="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8843.          tabindex="-1"
  8844.          data-product-page-link
  8845.        >
  8846.          <figure
  8847.            class="productitem--image"
  8848.            data-product-item-image
  8849.            
  8850.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8851.            
  8852.          >
  8853.            
  8854.              
  8855.              
  8856.  
  8857.  
  8858.    <noscript data-rimg-noscript>
  8859.      <img loading="lazy"
  8860.        
  8861.          src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1759505963"
  8862.        
  8863.  
  8864.        alt="Updated alt text"
  8865.        data-rimg="noscript"
  8866.        srcset="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1759505963 1x"
  8867.        class="productitem--image-primary"
  8868.        
  8869.        
  8870.      >
  8871.    </noscript>
  8872.  
  8873.  
  8874.  <img loading="lazy"
  8875.    
  8876.      src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1759505963"
  8877.    
  8878.    alt="Updated alt text"
  8879.  
  8880.    
  8881.      data-rimg="lazy"
  8882.      data-rimg-scale="1"
  8883.      data-rimg-template="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_{size}.jpg?v=1759505963"
  8884.      data-rimg-max="500x500"
  8885.      data-rimg-crop="false"
  8886.      
  8887.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8888.    
  8889.  
  8890.    class="productitem--image-primary"
  8891.    
  8892.    
  8893.  >
  8894.  
  8895.  
  8896.  
  8897.  <div data-rimg-canvas></div>
  8898.  
  8899.  
  8900.            
  8901.  
  8902.            
  8903.  
  8904.  
  8905.  
  8906.  
  8907.  
  8908.  
  8909.  
  8910.  
  8911.  
  8912.  
  8913.  
  8914.  
  8915.  
  8916.  
  8917.  
  8918.  
  8919.  
  8920.  
  8921.  
  8922.  
  8923.  
  8924.  
  8925.  
  8926.  
  8927.  
  8928.  
  8929.  
  8930.          </figure>
  8931.        </a>
  8932.      </div><div class="productitem--info">
  8933.        
  8934.          
  8935.  
  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.  
  8965.  
  8966.  
  8967.  
  8968.  
  8969.  
  8970. <div class="price productitem__price ">
  8971.  
  8972.    <div
  8973.      class="price__compare-at visible"
  8974.      data-price-compare-container
  8975.    >
  8976.  
  8977.      
  8978.        <span class="money price__original" data-price-original></span>
  8979.      
  8980.    </div>
  8981.  
  8982.  
  8983.    
  8984.      
  8985.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8986.        
  8987.          <span class="visually-hidden">Original price</span>
  8988.          <span class="money price__compare-at--min" data-price-compare-min>
  8989.            $53.97
  8990.          </span>
  8991.          -
  8992.          <span class="visually-hidden">Original price</span>
  8993.          <span class="money price__compare-at--max" data-price-compare-max>
  8994.            $53.97
  8995.          </span>
  8996.        
  8997.      </div>
  8998.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8999.        <span class="visually-hidden">Original price</span>
  9000.        <span class="money price__compare-at--single" data-price-compare>
  9001.          
  9002.        </span>
  9003.      </div>
  9004.    
  9005.  
  9006.  
  9007.  <div class="price__current price__current--emphasize " data-price-container>
  9008.  
  9009.    
  9010.  
  9011.    
  9012.      
  9013.      
  9014.      <span class="money" data-price>
  9015.        $53.97
  9016.      </span>
  9017.    
  9018.    
  9019.  </div>
  9020.  
  9021.  
  9022.    
  9023.    <div class="price__current--hidden" data-current-price-range-hidden>
  9024.      
  9025.        <span class="money price__current--min" data-price-min>$53.97</span>
  9026.        -
  9027.        <span class="money price__current--max" data-price-max>$53.97</span>
  9028.      
  9029.    </div>
  9030.    <div class="price__current--hidden" data-current-price-hidden>
  9031.      <span class="visually-hidden">Current price</span>
  9032.      <span class="money" data-price>
  9033.        $53.97
  9034.      </span>
  9035.    </div>
  9036.  
  9037.  
  9038.  
  9039.    
  9040.    
  9041.    
  9042.    
  9043.  
  9044.    <div
  9045.      class="
  9046.        productitem__unit-price
  9047.        hidden
  9048.      "
  9049.      data-unit-price
  9050.    >
  9051.      <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>
  9052.    </div>
  9053.  
  9054.  
  9055.  
  9056. </div>
  9057.  
  9058.  
  9059.        
  9060.  
  9061.        <h2 class="productitem--title">
  9062.          <a href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23" data-product-page-link>
  9063.            19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9064.          </a>
  9065.        </h2>
  9066.  
  9067.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9068.        <div class="star_container 6872273420375"></div>
  9069.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9070.  
  9071.        
  9072.          
  9073.            <span class="productitem--vendor">
  9074.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  9075.            </span>
  9076.          
  9077.        
  9078.  
  9079.        
  9080.  
  9081.        
  9082.          
  9083.            <div class="productitem__stock-level">
  9084.              <!--
  9085.  
  9086.  
  9087.  
  9088.  
  9089.  
  9090.  
  9091.  
  9092. <div class="product-stock-level-wrapper" >
  9093.  
  9094.    <span class="
  9095.  product-stock-level
  9096.  product-stock-level--continue-selling
  9097.  
  9098. ">
  9099.      
  9100.  
  9101.      <span class="product-stock-level__text">
  9102.        
  9103.        <div class="product-stock-level__badge-text">
  9104.          
  9105.  
  9106.    In stock
  9107.  
  9108.  
  9109.        </div>
  9110.      </span>
  9111.    </span>
  9112.  
  9113. </div>
  9114. -->
  9115.              
  9116.  
  9117.  
  9118.    
  9119.      <b style="color:green">In stock</b>
  9120.    
  9121.  
  9122.  
  9123.  
  9124.  
  9125.  
  9126.  
  9127.  
  9128.            </div>
  9129.          
  9130.  
  9131.          
  9132.            
  9133.          
  9134.        
  9135.  
  9136.        
  9137.          <div class="productitem--description">
  9138.            <p>19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9139. Includes power cord.
  9140.  
  9141. Input: 100-240V ~ 50-60Hz
  9142. Output: 19V –...</p>
  9143.  
  9144.            
  9145.              <a
  9146.                href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9147.                class="productitem--link"
  9148.                data-product-page-link
  9149.              >
  9150.                View full details
  9151.              </a>
  9152.            
  9153.          </div>
  9154.        
  9155.      </div>
  9156.  
  9157.      
  9158.        
  9159.          
  9160.          
  9161.          
  9162.  
  9163.          
  9164.          
  9165.  
  9166.          
  9167.  
  9168.          
  9169.  
  9170.          <div class="productitem--actions" data-product-actions>
  9171.            <div class="productitem--listview-price">
  9172.              
  9173.  
  9174.  
  9175.  
  9176.  
  9177.  
  9178.  
  9179.  
  9180.  
  9181.  
  9182.  
  9183.  
  9184.  
  9185.  
  9186.  
  9187.  
  9188.  
  9189.  
  9190.  
  9191.  
  9192.  
  9193.  
  9194.  
  9195.  
  9196.  
  9197.  
  9198.  
  9199.  
  9200.  
  9201.  
  9202.  
  9203. <div class="price productitem__price ">
  9204.  
  9205.    <div
  9206.      class="price__compare-at visible"
  9207.      data-price-compare-container
  9208.    >
  9209.  
  9210.      
  9211.        <span class="money price__original" data-price-original></span>
  9212.      
  9213.    </div>
  9214.  
  9215.  
  9216.    
  9217.      
  9218.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9219.        
  9220.          <span class="visually-hidden">Original price</span>
  9221.          <span class="money price__compare-at--min" data-price-compare-min>
  9222.            $53.97
  9223.          </span>
  9224.          -
  9225.          <span class="visually-hidden">Original price</span>
  9226.          <span class="money price__compare-at--max" data-price-compare-max>
  9227.            $53.97
  9228.          </span>
  9229.        
  9230.      </div>
  9231.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9232.        <span class="visually-hidden">Original price</span>
  9233.        <span class="money price__compare-at--single" data-price-compare>
  9234.          
  9235.        </span>
  9236.      </div>
  9237.    
  9238.  
  9239.  
  9240.  <div class="price__current price__current--emphasize " data-price-container>
  9241.  
  9242.    
  9243.  
  9244.    
  9245.      
  9246.      
  9247.      <span class="money" data-price>
  9248.        $53.97
  9249.      </span>
  9250.    
  9251.    
  9252.  </div>
  9253.  
  9254.  
  9255.    
  9256.    <div class="price__current--hidden" data-current-price-range-hidden>
  9257.      
  9258.        <span class="money price__current--min" data-price-min>$53.97</span>
  9259.        -
  9260.        <span class="money price__current--max" data-price-max>$53.97</span>
  9261.      
  9262.    </div>
  9263.    <div class="price__current--hidden" data-current-price-hidden>
  9264.      <span class="visually-hidden">Current price</span>
  9265.      <span class="money" data-price>
  9266.        $53.97
  9267.      </span>
  9268.    </div>
  9269.  
  9270.  
  9271.  
  9272.    
  9273.    
  9274.    
  9275.    
  9276.  
  9277.    <div
  9278.      class="
  9279.        productitem__unit-price
  9280.        hidden
  9281.      "
  9282.      data-unit-price
  9283.    >
  9284.      <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>
  9285.    </div>
  9286.  
  9287.  
  9288.  
  9289. </div>
  9290.  
  9291.  
  9292.            </div>
  9293.  
  9294.            <div class="productitem--listview-badge">
  9295.              
  9296.  
  9297.  
  9298.  
  9299.  
  9300.  
  9301.  
  9302.  
  9303.  
  9304.  
  9305.  
  9306.  
  9307.  
  9308.  
  9309.  
  9310.  
  9311.  
  9312.  
  9313.  
  9314.  
  9315.  
  9316.  
  9317.  
  9318.  
  9319.  
  9320.  
  9321.  
  9322.  
  9323.            </div>
  9324.  
  9325.            
  9326.              <div
  9327.                class="
  9328.                  productitem--action
  9329.                  quickshop-button
  9330.                  
  9331.                "
  9332.              >
  9333.                <button
  9334.                  class="productitem--action-trigger button-secondary"
  9335.                  data-quickshop-full
  9336.                  
  9337.                  
  9338.                  type="button"
  9339.                >
  9340.                  Quick shop
  9341.                </button>
  9342.              </div>
  9343.            
  9344.  
  9345.            
  9346.              <div
  9347.                class="
  9348.                  productitem--action
  9349.                  atc--button
  9350.                  
  9351.                "
  9352.              >
  9353.                <button
  9354.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9355.                  type="button"
  9356.                  aria-label="Add to cart"
  9357.                  
  9358.                    data-quick-buy
  9359.                  
  9360.                  data-variant-id="40155858534487"
  9361.                  
  9362.                >
  9363.                  <span class="atc-button--text">
  9364.                    Add to cart
  9365.                  </span>
  9366.                  <span class="atc-button--icon"><svg
  9367.  aria-hidden="true"
  9368.  focusable="false"
  9369.  role="presentation"
  9370.  width="26"
  9371.  height="26"
  9372.  viewBox="0 0 26 26"
  9373.  xmlns="http://www.w3.org/2000/svg"
  9374. >
  9375.  <g fill-rule="nonzero" fill="currentColor">
  9376.    <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"/>
  9377.  </g>
  9378. </svg></span>
  9379.                </button>
  9380.              </div>
  9381.            
  9382.          </div>
  9383.        
  9384.      
  9385.    </div>
  9386.  </div>
  9387.  
  9388.  
  9389.    <script type="application/json" data-quick-buy-settings>
  9390.      {
  9391.        "cart_redirection": true,
  9392.        "money_format": "${{amount}}"
  9393.      }
  9394.    </script>
  9395.  
  9396. </li>
  9397.    
  9398.      
  9399.  
  9400.  
  9401.  
  9402.  
  9403.  
  9404.  
  9405.  
  9406.  
  9407.  
  9408.  
  9409.  
  9410.  
  9411.  
  9412.  
  9413.  
  9414.  
  9415.  
  9416.  
  9417.  
  9418.  
  9419.  
  9420.  
  9421.  
  9422.  
  9423.  
  9424.  
  9425.  
  9426.  
  9427.  
  9428.  
  9429.  
  9430.  
  9431.    
  9432.  
  9433.  
  9434.  
  9435. <li
  9436.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9437.  data-product-item
  9438.  data-product-quickshop-url="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9439.  
  9440. >
  9441.  <div class="productitem" data-product-item-content>
  9442.    
  9443.    
  9444.    
  9445.    
  9446.  
  9447.    
  9448.  
  9449.    
  9450.  
  9451.    <div class="productitem__container">
  9452.      
  9453.  
  9454.      <div class="productitem__image-container">
  9455.        <a target="_blank"
  9456.          class="productitem--image-link"
  9457.          href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9458.          aria-label="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9459.          tabindex="-1"
  9460.          data-product-page-link
  9461.        >
  9462.          <figure
  9463.            class="productitem--image"
  9464.            data-product-item-image
  9465.            
  9466.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9467.            
  9468.          >
  9469.            
  9470.              
  9471.              
  9472.  
  9473.  
  9474.    <noscript data-rimg-noscript>
  9475.      <img loading="lazy"
  9476.        
  9477.          src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1759502248"
  9478.        
  9479.  
  9480.        alt="2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable - LaptopParts.ca"
  9481.        data-rimg="noscript"
  9482.        srcset="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1759502248 1x, //laptopparts.ca/cdn/shop/products/z1_799x799.jpg?v=1759502248 1.56x"
  9483.        class="productitem--image-primary"
  9484.        
  9485.        
  9486.      >
  9487.    </noscript>
  9488.  
  9489.  
  9490.  <img loading="lazy"
  9491.    
  9492.      src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1759502248"
  9493.    
  9494.    alt="2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable - LaptopParts.ca"
  9495.  
  9496.    
  9497.      data-rimg="lazy"
  9498.      data-rimg-scale="1"
  9499.      data-rimg-template="//laptopparts.ca/cdn/shop/products/z1_{size}.jpg?v=1759502248"
  9500.      data-rimg-max="800x800"
  9501.      data-rimg-crop="false"
  9502.      
  9503.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  9504.    
  9505.  
  9506.    class="productitem--image-primary"
  9507.    
  9508.    
  9509.  >
  9510.  
  9511.  
  9512.  
  9513.  <div data-rimg-canvas></div>
  9514.  
  9515.  
  9516.            
  9517.  
  9518.            
  9519.  
  9520.  
  9521.  
  9522.  
  9523.  
  9524.  
  9525.  
  9526.  
  9527.  
  9528.  
  9529.  
  9530.  
  9531.  
  9532.  
  9533.  
  9534.  
  9535.  
  9536.  
  9537.  
  9538.  
  9539.  
  9540.  
  9541.  
  9542.  
  9543.  
  9544.  
  9545.  
  9546.          </figure>
  9547.        </a>
  9548.      </div><div class="productitem--info">
  9549.        
  9550.          
  9551.  
  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.  
  9581.  
  9582.  
  9583.  
  9584.  
  9585.  
  9586. <div class="price productitem__price ">
  9587.  
  9588.    <div
  9589.      class="price__compare-at visible"
  9590.      data-price-compare-container
  9591.    >
  9592.  
  9593.      
  9594.        <span class="money price__original" data-price-original></span>
  9595.      
  9596.    </div>
  9597.  
  9598.  
  9599.    
  9600.      
  9601.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9602.        
  9603.          <span class="visually-hidden">Original price</span>
  9604.          <span class="money price__compare-at--min" data-price-compare-min>
  9605.            $38.99
  9606.          </span>
  9607.          -
  9608.          <span class="visually-hidden">Original price</span>
  9609.          <span class="money price__compare-at--max" data-price-compare-max>
  9610.            $38.99
  9611.          </span>
  9612.        
  9613.      </div>
  9614.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9615.        <span class="visually-hidden">Original price</span>
  9616.        <span class="money price__compare-at--single" data-price-compare>
  9617.          
  9618.        </span>
  9619.      </div>
  9620.    
  9621.  
  9622.  
  9623.  <div class="price__current price__current--emphasize " data-price-container>
  9624.  
  9625.    
  9626.  
  9627.    
  9628.      
  9629.      
  9630.      <span class="money" data-price>
  9631.        $38.99
  9632.      </span>
  9633.    
  9634.    
  9635.  </div>
  9636.  
  9637.  
  9638.    
  9639.    <div class="price__current--hidden" data-current-price-range-hidden>
  9640.      
  9641.        <span class="money price__current--min" data-price-min>$38.99</span>
  9642.        -
  9643.        <span class="money price__current--max" data-price-max>$38.99</span>
  9644.      
  9645.    </div>
  9646.    <div class="price__current--hidden" data-current-price-hidden>
  9647.      <span class="visually-hidden">Current price</span>
  9648.      <span class="money" data-price>
  9649.        $38.99
  9650.      </span>
  9651.    </div>
  9652.  
  9653.  
  9654.  
  9655.    
  9656.    
  9657.    
  9658.    
  9659.  
  9660.    <div
  9661.      class="
  9662.        productitem__unit-price
  9663.        hidden
  9664.      "
  9665.      data-unit-price
  9666.    >
  9667.      <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>
  9668.    </div>
  9669.  
  9670.  
  9671.  
  9672. </div>
  9673.  
  9674.  
  9675.        
  9676.  
  9677.        <h2 class="productitem--title">
  9678.          <a href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable" data-product-page-link>
  9679.            2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable
  9680.          </a>
  9681.        </h2>
  9682.  
  9683.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9684.        <div class="star_container 4421896306775"></div>
  9685.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9686.  
  9687.        
  9688.          
  9689.            <span class="productitem--vendor">
  9690.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  9691.            </span>
  9692.          
  9693.        
  9694.  
  9695.        
  9696.  
  9697.        
  9698.          
  9699.            <div class="productitem__stock-level">
  9700.              <!--
  9701.  
  9702.  
  9703.  
  9704.  
  9705.  
  9706.  
  9707.  
  9708. <div class="product-stock-level-wrapper" >
  9709.  
  9710.    <span class="
  9711.  product-stock-level
  9712.  product-stock-level--continue-selling
  9713.  
  9714. ">
  9715.      
  9716.  
  9717.      <span class="product-stock-level__text">
  9718.        
  9719.        <div class="product-stock-level__badge-text">
  9720.          
  9721.  
  9722.    In stock
  9723.  
  9724.  
  9725.        </div>
  9726.      </span>
  9727.    </span>
  9728.  
  9729. </div>
  9730. -->
  9731.              
  9732.  
  9733.  
  9734.    
  9735.      <b style="color:green">In stock</b>
  9736.    
  9737.  
  9738.  
  9739.  
  9740.  
  9741.  
  9742.  
  9743.  
  9744.            </div>
  9745.          
  9746.  
  9747.          
  9748.            
  9749.          
  9750.        
  9751.  
  9752.        
  9753.          <div class="productitem--description">
  9754.            <p>Cable Length(approx.): 15cm ± 10% (Just Cable)Connector Type: 1.x SATA Power 15-pin, Male2 x Molex IDE 4-pin, Female</p>
  9755.  
  9756.            
  9757.          </div>
  9758.        
  9759.      </div>
  9760.  
  9761.      
  9762.        
  9763.          
  9764.          
  9765.          
  9766.  
  9767.          
  9768.          
  9769.  
  9770.          
  9771.  
  9772.          
  9773.  
  9774.          <div class="productitem--actions" data-product-actions>
  9775.            <div class="productitem--listview-price">
  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.  
  9804.  
  9805.  
  9806.  
  9807. <div class="price productitem__price ">
  9808.  
  9809.    <div
  9810.      class="price__compare-at visible"
  9811.      data-price-compare-container
  9812.    >
  9813.  
  9814.      
  9815.        <span class="money price__original" data-price-original></span>
  9816.      
  9817.    </div>
  9818.  
  9819.  
  9820.    
  9821.      
  9822.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9823.        
  9824.          <span class="visually-hidden">Original price</span>
  9825.          <span class="money price__compare-at--min" data-price-compare-min>
  9826.            $38.99
  9827.          </span>
  9828.          -
  9829.          <span class="visually-hidden">Original price</span>
  9830.          <span class="money price__compare-at--max" data-price-compare-max>
  9831.            $38.99
  9832.          </span>
  9833.        
  9834.      </div>
  9835.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9836.        <span class="visually-hidden">Original price</span>
  9837.        <span class="money price__compare-at--single" data-price-compare>
  9838.          
  9839.        </span>
  9840.      </div>
  9841.    
  9842.  
  9843.  
  9844.  <div class="price__current price__current--emphasize " data-price-container>
  9845.  
  9846.    
  9847.  
  9848.    
  9849.      
  9850.      
  9851.      <span class="money" data-price>
  9852.        $38.99
  9853.      </span>
  9854.    
  9855.    
  9856.  </div>
  9857.  
  9858.  
  9859.    
  9860.    <div class="price__current--hidden" data-current-price-range-hidden>
  9861.      
  9862.        <span class="money price__current--min" data-price-min>$38.99</span>
  9863.        -
  9864.        <span class="money price__current--max" data-price-max>$38.99</span>
  9865.      
  9866.    </div>
  9867.    <div class="price__current--hidden" data-current-price-hidden>
  9868.      <span class="visually-hidden">Current price</span>
  9869.      <span class="money" data-price>
  9870.        $38.99
  9871.      </span>
  9872.    </div>
  9873.  
  9874.  
  9875.  
  9876.    
  9877.    
  9878.    
  9879.    
  9880.  
  9881.    <div
  9882.      class="
  9883.        productitem__unit-price
  9884.        hidden
  9885.      "
  9886.      data-unit-price
  9887.    >
  9888.      <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>
  9889.    </div>
  9890.  
  9891.  
  9892.  
  9893. </div>
  9894.  
  9895.  
  9896.            </div>
  9897.  
  9898.            <div class="productitem--listview-badge">
  9899.              
  9900.  
  9901.  
  9902.  
  9903.  
  9904.  
  9905.  
  9906.  
  9907.  
  9908.  
  9909.  
  9910.  
  9911.  
  9912.  
  9913.  
  9914.  
  9915.  
  9916.  
  9917.  
  9918.  
  9919.  
  9920.  
  9921.  
  9922.  
  9923.  
  9924.  
  9925.  
  9926.  
  9927.            </div>
  9928.  
  9929.            
  9930.              <div
  9931.                class="
  9932.                  productitem--action
  9933.                  quickshop-button
  9934.                  
  9935.                "
  9936.              >
  9937.                <button
  9938.                  class="productitem--action-trigger button-secondary"
  9939.                  data-quickshop-full
  9940.                  
  9941.                  
  9942.                  type="button"
  9943.                >
  9944.                  Quick shop
  9945.                </button>
  9946.              </div>
  9947.            
  9948.  
  9949.            
  9950.              <div
  9951.                class="
  9952.                  productitem--action
  9953.                  atc--button
  9954.                  
  9955.                "
  9956.              >
  9957.                <button
  9958.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9959.                  type="button"
  9960.                  aria-label="Add to cart"
  9961.                  
  9962.                    data-quick-buy
  9963.                  
  9964.                  data-variant-id="31550087692375"
  9965.                  
  9966.                >
  9967.                  <span class="atc-button--text">
  9968.                    Add to cart
  9969.                  </span>
  9970.                  <span class="atc-button--icon"><svg
  9971.  aria-hidden="true"
  9972.  focusable="false"
  9973.  role="presentation"
  9974.  width="26"
  9975.  height="26"
  9976.  viewBox="0 0 26 26"
  9977.  xmlns="http://www.w3.org/2000/svg"
  9978. >
  9979.  <g fill-rule="nonzero" fill="currentColor">
  9980.    <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"/>
  9981.  </g>
  9982. </svg></span>
  9983.                </button>
  9984.              </div>
  9985.            
  9986.          </div>
  9987.        
  9988.      
  9989.    </div>
  9990.  </div>
  9991.  
  9992.  
  9993.    <script type="application/json" data-quick-buy-settings>
  9994.      {
  9995.        "cart_redirection": true,
  9996.        "money_format": "${{amount}}"
  9997.      }
  9998.    </script>
  9999.  
  10000. </li>
  10001.    
  10002.      
  10003.  
  10004.  
  10005.  
  10006.  
  10007.  
  10008.  
  10009.  
  10010.  
  10011.  
  10012.  
  10013.  
  10014.  
  10015.  
  10016.  
  10017.  
  10018.  
  10019.  
  10020.  
  10021.  
  10022.  
  10023.  
  10024.  
  10025.  
  10026.  
  10027.  
  10028.  
  10029.  
  10030.  
  10031.  
  10032.  
  10033.  
  10034.  
  10035.    
  10036.  
  10037.  
  10038.  
  10039. <li
  10040.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  10041.  data-product-item
  10042.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10043.  
  10044. >
  10045.  <div class="productitem" data-product-item-content>
  10046.    
  10047.    
  10048.    
  10049.    
  10050.  
  10051.    
  10052.  
  10053.    
  10054.  
  10055.    <div class="productitem__container">
  10056.      
  10057.  
  10058.      <div class="productitem__image-container">
  10059.        <a target="_blank"
  10060.          class="productitem--image-link"
  10061.          href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10062.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10063.          tabindex="-1"
  10064.          data-product-page-link
  10065.        >
  10066.          <figure
  10067.            class="productitem--image"
  10068.            data-product-item-image
  10069.            
  10070.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10071.            
  10072.          >
  10073.            
  10074.              
  10075.              
  10076.  
  10077.  
  10078.    <noscript data-rimg-noscript>
  10079.      <img loading="lazy"
  10080.        
  10081.          src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10082.        
  10083.  
  10084.        alt="15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0 - LaptopParts.ca"
  10085.        data-rimg="noscript"
  10086.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824 1x"
  10087.        class="productitem--image-primary"
  10088.        
  10089.        
  10090.      >
  10091.    </noscript>
  10092.  
  10093.  
  10094.  <img loading="lazy"
  10095.    
  10096.      src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10097.    
  10098.    alt="15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0 - LaptopParts.ca"
  10099.  
  10100.    
  10101.      data-rimg="lazy"
  10102.      data-rimg-scale="1"
  10103.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_{size}.jpg?v=1648039824"
  10104.      data-rimg-max="500x500"
  10105.      data-rimg-crop="false"
  10106.      
  10107.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  10108.    
  10109.  
  10110.    class="productitem--image-primary"
  10111.    
  10112.    
  10113.  >
  10114.  
  10115.  
  10116.  
  10117.  <div data-rimg-canvas></div>
  10118.  
  10119.  
  10120.            
  10121.  
  10122.            
  10123.  
  10124.  
  10125.  
  10126.  
  10127.  
  10128.  
  10129.  
  10130.  
  10131.  
  10132.  
  10133.  
  10134.  
  10135.  
  10136.  
  10137.  
  10138.  
  10139.  
  10140.  
  10141.  
  10142.  
  10143.  
  10144.  
  10145.  
  10146.  
  10147.  
  10148.  
  10149.  
  10150.          </figure>
  10151.        </a>
  10152.      </div><div class="productitem--info">
  10153.        
  10154.          
  10155.  
  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.  
  10185.  
  10186.  
  10187.  
  10188.  
  10189.  
  10190. <div class="price productitem__price ">
  10191.  
  10192.    <div
  10193.      class="price__compare-at visible"
  10194.      data-price-compare-container
  10195.    >
  10196.  
  10197.      
  10198.        <span class="money price__original" data-price-original></span>
  10199.      
  10200.    </div>
  10201.  
  10202.  
  10203.    
  10204.      
  10205.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10206.        
  10207.          <span class="visually-hidden">Original price</span>
  10208.          <span class="money price__compare-at--min" data-price-compare-min>
  10209.            $253.99
  10210.          </span>
  10211.          -
  10212.          <span class="visually-hidden">Original price</span>
  10213.          <span class="money price__compare-at--max" data-price-compare-max>
  10214.            $253.99
  10215.          </span>
  10216.        
  10217.      </div>
  10218.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10219.        <span class="visually-hidden">Original price</span>
  10220.        <span class="money price__compare-at--single" data-price-compare>
  10221.          
  10222.        </span>
  10223.      </div>
  10224.    
  10225.  
  10226.  
  10227.  <div class="price__current price__current--emphasize " data-price-container>
  10228.  
  10229.    
  10230.  
  10231.    
  10232.      
  10233.      
  10234.      <span class="money" data-price>
  10235.        $253.99
  10236.      </span>
  10237.    
  10238.    
  10239.  </div>
  10240.  
  10241.  
  10242.    
  10243.    <div class="price__current--hidden" data-current-price-range-hidden>
  10244.      
  10245.        <span class="money price__current--min" data-price-min>$253.99</span>
  10246.        -
  10247.        <span class="money price__current--max" data-price-max>$253.99</span>
  10248.      
  10249.    </div>
  10250.    <div class="price__current--hidden" data-current-price-hidden>
  10251.      <span class="visually-hidden">Current price</span>
  10252.      <span class="money" data-price>
  10253.        $253.99
  10254.      </span>
  10255.    </div>
  10256.  
  10257.  
  10258.  
  10259.    
  10260.    
  10261.    
  10262.    
  10263.  
  10264.    <div
  10265.      class="
  10266.        productitem__unit-price
  10267.        hidden
  10268.      "
  10269.      data-unit-price
  10270.    >
  10271.      <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>
  10272.    </div>
  10273.  
  10274.  
  10275.  
  10276. </div>
  10277.  
  10278.  
  10279.        
  10280.  
  10281.        <h2 class="productitem--title">
  10282.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops" data-product-page-link>
  10283.            15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0
  10284.          </a>
  10285.        </h2>
  10286.  
  10287.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10288.        <div class="star_container 3929811091543"></div>
  10289.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10290.  
  10291.        
  10292.          
  10293.            <span class="productitem--vendor">
  10294.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  10295.            </span>
  10296.          
  10297.        
  10298.  
  10299.        
  10300.  
  10301.        
  10302.          
  10303.            <div class="productitem__stock-level">
  10304.              <!--
  10305.  
  10306.  
  10307.  
  10308.  
  10309.  
  10310.  
  10311.  
  10312. <div class="product-stock-level-wrapper" >
  10313.  
  10314.    <span class="
  10315.  product-stock-level
  10316.  product-stock-level--continue-selling
  10317.  
  10318. ">
  10319.      
  10320.  
  10321.      <span class="product-stock-level__text">
  10322.        
  10323.        <div class="product-stock-level__badge-text">
  10324.          
  10325.  
  10326.    In stock
  10327.  
  10328.  
  10329.        </div>
  10330.      </span>
  10331.    </span>
  10332.  
  10333. </div>
  10334. -->
  10335.              
  10336.  
  10337.  
  10338.    
  10339.      <b style="color:green">In stock</b>
  10340.    
  10341.  
  10342.  
  10343.  
  10344.  
  10345.  
  10346.  
  10347.  
  10348.            </div>
  10349.          
  10350.  
  10351.          
  10352.            
  10353.          
  10354.        
  10355.  
  10356.        
  10357.          <div class="productitem--description">
  10358.            <p>
  10359. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  10360.  
  10361. **This screen will only work if your laptop is one of the models below that ca...</p>
  10362.  
  10363.            
  10364.              <a
  10365.                href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10366.                class="productitem--link"
  10367.                data-product-page-link
  10368.              >
  10369.                View full details
  10370.              </a>
  10371.            
  10372.          </div>
  10373.        
  10374.      </div>
  10375.  
  10376.      
  10377.        
  10378.          
  10379.          
  10380.          
  10381.  
  10382.          
  10383.          
  10384.  
  10385.          
  10386.  
  10387.          
  10388.  
  10389.          <div class="productitem--actions" data-product-actions>
  10390.            <div class="productitem--listview-price">
  10391.              
  10392.  
  10393.  
  10394.  
  10395.  
  10396.  
  10397.  
  10398.  
  10399.  
  10400.  
  10401.  
  10402.  
  10403.  
  10404.  
  10405.  
  10406.  
  10407.  
  10408.  
  10409.  
  10410.  
  10411.  
  10412.  
  10413.  
  10414.  
  10415.  
  10416.  
  10417.  
  10418.  
  10419.  
  10420.  
  10421.  
  10422. <div class="price productitem__price ">
  10423.  
  10424.    <div
  10425.      class="price__compare-at visible"
  10426.      data-price-compare-container
  10427.    >
  10428.  
  10429.      
  10430.        <span class="money price__original" data-price-original></span>
  10431.      
  10432.    </div>
  10433.  
  10434.  
  10435.    
  10436.      
  10437.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10438.        
  10439.          <span class="visually-hidden">Original price</span>
  10440.          <span class="money price__compare-at--min" data-price-compare-min>
  10441.            $253.99
  10442.          </span>
  10443.          -
  10444.          <span class="visually-hidden">Original price</span>
  10445.          <span class="money price__compare-at--max" data-price-compare-max>
  10446.            $253.99
  10447.          </span>
  10448.        
  10449.      </div>
  10450.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10451.        <span class="visually-hidden">Original price</span>
  10452.        <span class="money price__compare-at--single" data-price-compare>
  10453.          
  10454.        </span>
  10455.      </div>
  10456.    
  10457.  
  10458.  
  10459.  <div class="price__current price__current--emphasize " data-price-container>
  10460.  
  10461.    
  10462.  
  10463.    
  10464.      
  10465.      
  10466.      <span class="money" data-price>
  10467.        $253.99
  10468.      </span>
  10469.    
  10470.    
  10471.  </div>
  10472.  
  10473.  
  10474.    
  10475.    <div class="price__current--hidden" data-current-price-range-hidden>
  10476.      
  10477.        <span class="money price__current--min" data-price-min>$253.99</span>
  10478.        -
  10479.        <span class="money price__current--max" data-price-max>$253.99</span>
  10480.      
  10481.    </div>
  10482.    <div class="price__current--hidden" data-current-price-hidden>
  10483.      <span class="visually-hidden">Current price</span>
  10484.      <span class="money" data-price>
  10485.        $253.99
  10486.      </span>
  10487.    </div>
  10488.  
  10489.  
  10490.  
  10491.    
  10492.    
  10493.    
  10494.    
  10495.  
  10496.    <div
  10497.      class="
  10498.        productitem__unit-price
  10499.        hidden
  10500.      "
  10501.      data-unit-price
  10502.    >
  10503.      <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>
  10504.    </div>
  10505.  
  10506.  
  10507.  
  10508. </div>
  10509.  
  10510.  
  10511.            </div>
  10512.  
  10513.            <div class="productitem--listview-badge">
  10514.              
  10515.  
  10516.  
  10517.  
  10518.  
  10519.  
  10520.  
  10521.  
  10522.  
  10523.  
  10524.  
  10525.  
  10526.  
  10527.  
  10528.  
  10529.  
  10530.  
  10531.  
  10532.  
  10533.  
  10534.  
  10535.  
  10536.  
  10537.  
  10538.  
  10539.  
  10540.  
  10541.  
  10542.            </div>
  10543.  
  10544.            
  10545.              <div
  10546.                class="
  10547.                  productitem--action
  10548.                  quickshop-button
  10549.                  
  10550.                "
  10551.              >
  10552.                <button
  10553.                  class="productitem--action-trigger button-secondary"
  10554.                  data-quickshop-full
  10555.                  
  10556.                  
  10557.                  type="button"
  10558.                >
  10559.                  Quick shop
  10560.                </button>
  10561.              </div>
  10562.            
  10563.  
  10564.            
  10565.              <div
  10566.                class="
  10567.                  productitem--action
  10568.                  atc--button
  10569.                  
  10570.                "
  10571.              >
  10572.                <button
  10573.                  class="productitem--action-trigger productitem--action-atc button-primary"
  10574.                  type="button"
  10575.                  aria-label="Add to cart"
  10576.                  
  10577.                    data-quick-buy
  10578.                  
  10579.                  data-variant-id="29564283224151"
  10580.                  
  10581.                >
  10582.                  <span class="atc-button--text">
  10583.                    Add to cart
  10584.                  </span>
  10585.                  <span class="atc-button--icon"><svg
  10586.  aria-hidden="true"
  10587.  focusable="false"
  10588.  role="presentation"
  10589.  width="26"
  10590.  height="26"
  10591.  viewBox="0 0 26 26"
  10592.  xmlns="http://www.w3.org/2000/svg"
  10593. >
  10594.  <g fill-rule="nonzero" fill="currentColor">
  10595.    <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"/>
  10596.  </g>
  10597. </svg></span>
  10598.                </button>
  10599.              </div>
  10600.            
  10601.          </div>
  10602.        
  10603.      
  10604.    </div>
  10605.  </div>
  10606.  
  10607.  
  10608.    <script type="application/json" data-quick-buy-settings>
  10609.      {
  10610.        "cart_redirection": true,
  10611.        "money_format": "${{amount}}"
  10612.      }
  10613.    </script>
  10614.  
  10615. </li>
  10616.    
  10617.      
  10618.  
  10619.  
  10620.  
  10621.  
  10622.  
  10623.  
  10624.  
  10625.  
  10626.  
  10627.  
  10628.  
  10629.  
  10630.  
  10631.  
  10632.  
  10633.  
  10634.  
  10635.  
  10636.  
  10637.  
  10638.  
  10639.  
  10640.  
  10641.  
  10642.  
  10643.  
  10644.  
  10645.  
  10646.  
  10647.  
  10648.  
  10649.  
  10650.    
  10651.  
  10652.  
  10653.  
  10654. <li
  10655.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  10656.  data-product-item
  10657.  data-product-quickshop-url="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10658.  
  10659. >
  10660.  <div class="productitem" data-product-item-content>
  10661.    
  10662.    
  10663.    
  10664.    
  10665.  
  10666.    
  10667.  
  10668.    
  10669.  
  10670.    <div class="productitem__container">
  10671.      
  10672.  
  10673.      <div class="productitem__image-container">
  10674.        <a target="_blank"
  10675.          class="productitem--image-link"
  10676.          href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10677.          aria-label="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10678.          tabindex="-1"
  10679.          data-product-page-link
  10680.        >
  10681.          <figure
  10682.            class="productitem--image"
  10683.            data-product-item-image
  10684.            
  10685.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10686.            
  10687.          >
  10688.            
  10689.              
  10690.              
  10691.  
  10692.  
  10693.    <noscript data-rimg-noscript>
  10694.      <img loading="lazy"
  10695.        
  10696.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10697.        
  10698.  
  10699.        alt="5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug - LaptopParts.ca"
  10700.        data-rimg="noscript"
  10701.        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"
  10702.        class="productitem--image-primary"
  10703.        
  10704.        
  10705.      >
  10706.    </noscript>
  10707.  
  10708.  
  10709.  <img loading="lazy"
  10710.    
  10711.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10712.    
  10713.    alt="5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug - LaptopParts.ca"
  10714.  
  10715.    
  10716.      data-rimg="lazy"
  10717.      data-rimg-scale="1"
  10718.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_{size}.jpg?v=1648053007"
  10719.      data-rimg-max="600x600"
  10720.      data-rimg-crop="false"
  10721.      
  10722.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  10723.    
  10724.  
  10725.    class="productitem--image-primary"
  10726.    
  10727.    
  10728.  >
  10729.  
  10730.  
  10731.  
  10732.  <div data-rimg-canvas></div>
  10733.  
  10734.  
  10735.            
  10736.  
  10737.            
  10738.  
  10739.  
  10740.  
  10741.  
  10742.  
  10743.  
  10744.  
  10745.  
  10746.  
  10747.  
  10748.  
  10749.  
  10750.  
  10751.  
  10752.  
  10753.  
  10754.  
  10755.  
  10756.  
  10757.  
  10758.  
  10759.  
  10760.  
  10761.  
  10762.  
  10763.  
  10764.  
  10765.          </figure>
  10766.        </a>
  10767.      </div><div class="productitem--info">
  10768.        
  10769.          
  10770.  
  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.  
  10800.  
  10801.  
  10802.  
  10803.  
  10804.  
  10805. <div class="price productitem__price ">
  10806.  
  10807.    <div
  10808.      class="price__compare-at visible"
  10809.      data-price-compare-container
  10810.    >
  10811.  
  10812.      
  10813.        <span class="money price__original" data-price-original></span>
  10814.      
  10815.    </div>
  10816.  
  10817.  
  10818.    
  10819.      
  10820.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10821.        
  10822.          <span class="visually-hidden">Original price</span>
  10823.          <span class="money price__compare-at--min" data-price-compare-min>
  10824.            $38.99
  10825.          </span>
  10826.          -
  10827.          <span class="visually-hidden">Original price</span>
  10828.          <span class="money price__compare-at--max" data-price-compare-max>
  10829.            $38.99
  10830.          </span>
  10831.        
  10832.      </div>
  10833.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10834.        <span class="visually-hidden">Original price</span>
  10835.        <span class="money price__compare-at--single" data-price-compare>
  10836.          
  10837.        </span>
  10838.      </div>
  10839.    
  10840.  
  10841.  
  10842.  <div class="price__current price__current--emphasize " data-price-container>
  10843.  
  10844.    
  10845.  
  10846.    
  10847.      
  10848.      
  10849.      <span class="money" data-price>
  10850.        $38.99
  10851.      </span>
  10852.    
  10853.    
  10854.  </div>
  10855.  
  10856.  
  10857.    
  10858.    <div class="price__current--hidden" data-current-price-range-hidden>
  10859.      
  10860.        <span class="money price__current--min" data-price-min>$38.99</span>
  10861.        -
  10862.        <span class="money price__current--max" data-price-max>$38.99</span>
  10863.      
  10864.    </div>
  10865.    <div class="price__current--hidden" data-current-price-hidden>
  10866.      <span class="visually-hidden">Current price</span>
  10867.      <span class="money" data-price>
  10868.        $38.99
  10869.      </span>
  10870.    </div>
  10871.  
  10872.  
  10873.  
  10874.    
  10875.    
  10876.    
  10877.    
  10878.  
  10879.    <div
  10880.      class="
  10881.        productitem__unit-price
  10882.        hidden
  10883.      "
  10884.      data-unit-price
  10885.    >
  10886.      <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>
  10887.    </div>
  10888.  
  10889.  
  10890.  
  10891. </div>
  10892.  
  10893.  
  10894.        
  10895.  
  10896.        <h2 class="productitem--title">
  10897.          <a href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  10898.            5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  10899.          </a>
  10900.        </h2>
  10901.  
  10902.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10903.        <div class="star_container 3483509915735"></div>
  10904.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10905.  
  10906.        
  10907.          
  10908.            <span class="productitem--vendor">
  10909.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  10910.            </span>
  10911.          
  10912.        
  10913.  
  10914.        
  10915.  
  10916.        
  10917.          
  10918.            <div class="productitem__stock-level">
  10919.              <!--
  10920.  
  10921.  
  10922.  
  10923.  
  10924.  
  10925.  
  10926.  
  10927. <div class="product-stock-level-wrapper" >
  10928.  
  10929.    <span class="
  10930.  product-stock-level
  10931.  product-stock-level--continue-selling
  10932.  
  10933. ">
  10934.      
  10935.  
  10936.      <span class="product-stock-level__text">
  10937.        
  10938.        <div class="product-stock-level__badge-text">
  10939.          
  10940.  
  10941.    In stock
  10942.  
  10943.  
  10944.        </div>
  10945.      </span>
  10946.    </span>
  10947.  
  10948. </div>
  10949. -->
  10950.              
  10951.  
  10952.  
  10953.    
  10954.      <b style="color:green">In stock</b>
  10955.    
  10956.  
  10957.  
  10958.  
  10959.  
  10960.  
  10961.  
  10962.  
  10963.            </div>
  10964.          
  10965.  
  10966.          
  10967.            
  10968.          
  10969.        
  10970.  
  10971.        
  10972.          <div class="productitem--description">
  10973.            <p>Plugs directly into AC outlet.
  10974.  
  10975. Input: 100-240V ~ 50-60Hz
  10976. Output: 12V – 1.5A 18W
  10977. Connector Tip: mini USB
  10978. Colour: Black
  10979.  
  10980. Compatible Part #s: KP.01...</p>
  10981.  
  10982.            
  10983.              <a
  10984.                href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10985.                class="productitem--link"
  10986.                data-product-page-link
  10987.              >
  10988.                View full details
  10989.              </a>
  10990.            
  10991.          </div>
  10992.        
  10993.      </div>
  10994.  
  10995.      
  10996.        
  10997.          
  10998.          
  10999.          
  11000.  
  11001.          
  11002.          
  11003.  
  11004.          
  11005.  
  11006.          
  11007.  
  11008.          <div class="productitem--actions" data-product-actions>
  11009.            <div class="productitem--listview-price">
  11010.              
  11011.  
  11012.  
  11013.  
  11014.  
  11015.  
  11016.  
  11017.  
  11018.  
  11019.  
  11020.  
  11021.  
  11022.  
  11023.  
  11024.  
  11025.  
  11026.  
  11027.  
  11028.  
  11029.  
  11030.  
  11031.  
  11032.  
  11033.  
  11034.  
  11035.  
  11036.  
  11037.  
  11038.  
  11039.  
  11040.  
  11041. <div class="price productitem__price ">
  11042.  
  11043.    <div
  11044.      class="price__compare-at visible"
  11045.      data-price-compare-container
  11046.    >
  11047.  
  11048.      
  11049.        <span class="money price__original" data-price-original></span>
  11050.      
  11051.    </div>
  11052.  
  11053.  
  11054.    
  11055.      
  11056.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11057.        
  11058.          <span class="visually-hidden">Original price</span>
  11059.          <span class="money price__compare-at--min" data-price-compare-min>
  11060.            $38.99
  11061.          </span>
  11062.          -
  11063.          <span class="visually-hidden">Original price</span>
  11064.          <span class="money price__compare-at--max" data-price-compare-max>
  11065.            $38.99
  11066.          </span>
  11067.        
  11068.      </div>
  11069.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11070.        <span class="visually-hidden">Original price</span>
  11071.        <span class="money price__compare-at--single" data-price-compare>
  11072.          
  11073.        </span>
  11074.      </div>
  11075.    
  11076.  
  11077.  
  11078.  <div class="price__current price__current--emphasize " data-price-container>
  11079.  
  11080.    
  11081.  
  11082.    
  11083.      
  11084.      
  11085.      <span class="money" data-price>
  11086.        $38.99
  11087.      </span>
  11088.    
  11089.    
  11090.  </div>
  11091.  
  11092.  
  11093.    
  11094.    <div class="price__current--hidden" data-current-price-range-hidden>
  11095.      
  11096.        <span class="money price__current--min" data-price-min>$38.99</span>
  11097.        -
  11098.        <span class="money price__current--max" data-price-max>$38.99</span>
  11099.      
  11100.    </div>
  11101.    <div class="price__current--hidden" data-current-price-hidden>
  11102.      <span class="visually-hidden">Current price</span>
  11103.      <span class="money" data-price>
  11104.        $38.99
  11105.      </span>
  11106.    </div>
  11107.  
  11108.  
  11109.  
  11110.    
  11111.    
  11112.    
  11113.    
  11114.  
  11115.    <div
  11116.      class="
  11117.        productitem__unit-price
  11118.        hidden
  11119.      "
  11120.      data-unit-price
  11121.    >
  11122.      <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>
  11123.    </div>
  11124.  
  11125.  
  11126.  
  11127. </div>
  11128.  
  11129.  
  11130.            </div>
  11131.  
  11132.            <div class="productitem--listview-badge">
  11133.              
  11134.  
  11135.  
  11136.  
  11137.  
  11138.  
  11139.  
  11140.  
  11141.  
  11142.  
  11143.  
  11144.  
  11145.  
  11146.  
  11147.  
  11148.  
  11149.  
  11150.  
  11151.  
  11152.  
  11153.  
  11154.  
  11155.  
  11156.  
  11157.  
  11158.  
  11159.  
  11160.  
  11161.            </div>
  11162.  
  11163.            
  11164.              <div
  11165.                class="
  11166.                  productitem--action
  11167.                  quickshop-button
  11168.                  
  11169.                "
  11170.              >
  11171.                <button
  11172.                  class="productitem--action-trigger button-secondary"
  11173.                  data-quickshop-full
  11174.                  
  11175.                  
  11176.                  type="button"
  11177.                >
  11178.                  Quick shop
  11179.                </button>
  11180.              </div>
  11181.            
  11182.  
  11183.            
  11184.              <div
  11185.                class="
  11186.                  productitem--action
  11187.                  atc--button
  11188.                  
  11189.                "
  11190.              >
  11191.                <button
  11192.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11193.                  type="button"
  11194.                  aria-label="Add to cart"
  11195.                  
  11196.                    data-quick-buy
  11197.                  
  11198.                  data-variant-id="39666212831319"
  11199.                  
  11200.                >
  11201.                  <span class="atc-button--text">
  11202.                    Add to cart
  11203.                  </span>
  11204.                  <span class="atc-button--icon"><svg
  11205.  aria-hidden="true"
  11206.  focusable="false"
  11207.  role="presentation"
  11208.  width="26"
  11209.  height="26"
  11210.  viewBox="0 0 26 26"
  11211.  xmlns="http://www.w3.org/2000/svg"
  11212. >
  11213.  <g fill-rule="nonzero" fill="currentColor">
  11214.    <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"/>
  11215.  </g>
  11216. </svg></span>
  11217.                </button>
  11218.              </div>
  11219.            
  11220.          </div>
  11221.        
  11222.      
  11223.    </div>
  11224.  </div>
  11225.  
  11226.  
  11227.    <script type="application/json" data-quick-buy-settings>
  11228.      {
  11229.        "cart_redirection": true,
  11230.        "money_format": "${{amount}}"
  11231.      }
  11232.    </script>
  11233.  
  11234. </li>
  11235.    
  11236.      
  11237.  
  11238.  
  11239.  
  11240.  
  11241.  
  11242.  
  11243.  
  11244.  
  11245.  
  11246.  
  11247.  
  11248.  
  11249.  
  11250.  
  11251.  
  11252.  
  11253.  
  11254.  
  11255.  
  11256.  
  11257.  
  11258.  
  11259.  
  11260.  
  11261.  
  11262.  
  11263.  
  11264.  
  11265.  
  11266.  
  11267.  
  11268.  
  11269.    
  11270.  
  11271.  
  11272.  
  11273. <li
  11274.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11275.  data-product-item
  11276.  data-product-quickshop-url="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11277.  
  11278. >
  11279.  <div class="productitem" data-product-item-content>
  11280.    
  11281.    
  11282.    
  11283.    
  11284.  
  11285.    
  11286.  
  11287.    
  11288.  
  11289.    <div class="productitem__container">
  11290.      
  11291.  
  11292.      <div class="productitem__image-container">
  11293.        <a target="_blank"
  11294.          class="productitem--image-link"
  11295.          href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11296.          aria-label="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11297.          tabindex="-1"
  11298.          data-product-page-link
  11299.        >
  11300.          <figure
  11301.            class="productitem--image"
  11302.            data-product-item-image
  11303.            
  11304.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11305.            
  11306.          >
  11307.            
  11308.              
  11309.              
  11310.  
  11311.  
  11312.    <noscript data-rimg-noscript>
  11313.      <img loading="lazy"
  11314.        
  11315.          src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11316.        
  11317.  
  11318.        alt="5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A - LaptopParts.ca"
  11319.        data-rimg="noscript"
  11320.        srcset="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863 1x"
  11321.        class="productitem--image-primary"
  11322.        
  11323.        
  11324.      >
  11325.    </noscript>
  11326.  
  11327.  
  11328.  <img loading="lazy"
  11329.    
  11330.      src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11331.    
  11332.    alt="5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A - LaptopParts.ca"
  11333.  
  11334.    
  11335.      data-rimg="lazy"
  11336.      data-rimg-scale="1"
  11337.      data-rimg-template="//laptopparts.ca/cdn/shop/products/8291_{size}.jpg?v=1648090863"
  11338.      data-rimg-max="500x500"
  11339.      data-rimg-crop="false"
  11340.      
  11341.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  11342.    
  11343.  
  11344.    class="productitem--image-primary"
  11345.    
  11346.    
  11347.  >
  11348.  
  11349.  
  11350.  
  11351.  <div data-rimg-canvas></div>
  11352.  
  11353.  
  11354.            
  11355.  
  11356.            
  11357.  
  11358.  
  11359.  
  11360.  
  11361.  
  11362.  
  11363.  
  11364.  
  11365.  
  11366.  
  11367.  
  11368.  
  11369.  
  11370.  
  11371.  
  11372.  
  11373.  
  11374.  
  11375.  
  11376.  
  11377.  
  11378.  
  11379.  
  11380.  
  11381.  
  11382.  
  11383.  
  11384.          </figure>
  11385.        </a>
  11386.      </div><div class="productitem--info">
  11387.        
  11388.          
  11389.  
  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.  
  11419.  
  11420.  
  11421.  
  11422.  
  11423.  
  11424. <div class="price productitem__price ">
  11425.  
  11426.    <div
  11427.      class="price__compare-at visible"
  11428.      data-price-compare-container
  11429.    >
  11430.  
  11431.      
  11432.        <span class="money price__original" data-price-original></span>
  11433.      
  11434.    </div>
  11435.  
  11436.  
  11437.    
  11438.      
  11439.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11440.        
  11441.          <span class="visually-hidden">Original price</span>
  11442.          <span class="money price__compare-at--min" data-price-compare-min>
  11443.            $106.99
  11444.          </span>
  11445.          -
  11446.          <span class="visually-hidden">Original price</span>
  11447.          <span class="money price__compare-at--max" data-price-compare-max>
  11448.            $106.99
  11449.          </span>
  11450.        
  11451.      </div>
  11452.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11453.        <span class="visually-hidden">Original price</span>
  11454.        <span class="money price__compare-at--single" data-price-compare>
  11455.          
  11456.        </span>
  11457.      </div>
  11458.    
  11459.  
  11460.  
  11461.  <div class="price__current price__current--emphasize " data-price-container>
  11462.  
  11463.    
  11464.  
  11465.    
  11466.      
  11467.      
  11468.      <span class="money" data-price>
  11469.        $106.99
  11470.      </span>
  11471.    
  11472.    
  11473.  </div>
  11474.  
  11475.  
  11476.    
  11477.    <div class="price__current--hidden" data-current-price-range-hidden>
  11478.      
  11479.        <span class="money price__current--min" data-price-min>$106.99</span>
  11480.        -
  11481.        <span class="money price__current--max" data-price-max>$106.99</span>
  11482.      
  11483.    </div>
  11484.    <div class="price__current--hidden" data-current-price-hidden>
  11485.      <span class="visually-hidden">Current price</span>
  11486.      <span class="money" data-price>
  11487.        $106.99
  11488.      </span>
  11489.    </div>
  11490.  
  11491.  
  11492.  
  11493.    
  11494.    
  11495.    
  11496.    
  11497.  
  11498.    <div
  11499.      class="
  11500.        productitem__unit-price
  11501.        hidden
  11502.      "
  11503.      data-unit-price
  11504.    >
  11505.      <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>
  11506.    </div>
  11507.  
  11508.  
  11509.  
  11510. </div>
  11511.  
  11512.  
  11513.        
  11514.  
  11515.        <h2 class="productitem--title">
  11516.          <a href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a" data-product-page-link>
  11517.            5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A
  11518.          </a>
  11519.        </h2>
  11520.  
  11521.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  11522.        <div class="star_container 592337698839"></div>
  11523.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  11524.  
  11525.        
  11526.          
  11527.            <span class="productitem--vendor">
  11528.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  11529.            </span>
  11530.          
  11531.        
  11532.  
  11533.        
  11534.  
  11535.        
  11536.          
  11537.            <div class="productitem__stock-level">
  11538.              <!--
  11539.  
  11540.  
  11541.  
  11542.  
  11543.  
  11544.  
  11545.  
  11546. <div class="product-stock-level-wrapper" >
  11547.  
  11548.    <span class="
  11549.  product-stock-level
  11550.  product-stock-level--continue-selling
  11551.  
  11552. ">
  11553.      
  11554.  
  11555.      <span class="product-stock-level__text">
  11556.        
  11557.        <div class="product-stock-level__badge-text">
  11558.          
  11559.  
  11560.    In stock
  11561.  
  11562.  
  11563.        </div>
  11564.      </span>
  11565.    </span>
  11566.  
  11567. </div>
  11568. -->
  11569.              
  11570.  
  11571.  
  11572.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  11573.  
  11574.  
  11575.  
  11576.  
  11577.            </div>
  11578.          
  11579.  
  11580.          
  11581.            
  11582.          
  11583.        
  11584.  
  11585.        
  11586.          <div class="productitem--description">
  11587.            <p>
  11588. Description: 5 slot printhead for select HP printers. This item is refurbished.  Compatible Part #'s: CB326-30002, CN642A.  Compatible Models: HP ...</p>
  11589.  
  11590.            
  11591.              <a
  11592.                href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11593.                class="productitem--link"
  11594.                data-product-page-link
  11595.              >
  11596.                View full details
  11597.              </a>
  11598.            
  11599.          </div>
  11600.        
  11601.      </div>
  11602.  
  11603.      
  11604.        
  11605.          
  11606.          
  11607.          
  11608.  
  11609.          
  11610.          
  11611.  
  11612.          
  11613.  
  11614.          
  11615.  
  11616.          <div class="productitem--actions" data-product-actions>
  11617.            <div class="productitem--listview-price">
  11618.              
  11619.  
  11620.  
  11621.  
  11622.  
  11623.  
  11624.  
  11625.  
  11626.  
  11627.  
  11628.  
  11629.  
  11630.  
  11631.  
  11632.  
  11633.  
  11634.  
  11635.  
  11636.  
  11637.  
  11638.  
  11639.  
  11640.  
  11641.  
  11642.  
  11643.  
  11644.  
  11645.  
  11646.  
  11647.  
  11648.  
  11649. <div class="price productitem__price ">
  11650.  
  11651.    <div
  11652.      class="price__compare-at visible"
  11653.      data-price-compare-container
  11654.    >
  11655.  
  11656.      
  11657.        <span class="money price__original" data-price-original></span>
  11658.      
  11659.    </div>
  11660.  
  11661.  
  11662.    
  11663.      
  11664.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11665.        
  11666.          <span class="visually-hidden">Original price</span>
  11667.          <span class="money price__compare-at--min" data-price-compare-min>
  11668.            $106.99
  11669.          </span>
  11670.          -
  11671.          <span class="visually-hidden">Original price</span>
  11672.          <span class="money price__compare-at--max" data-price-compare-max>
  11673.            $106.99
  11674.          </span>
  11675.        
  11676.      </div>
  11677.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11678.        <span class="visually-hidden">Original price</span>
  11679.        <span class="money price__compare-at--single" data-price-compare>
  11680.          
  11681.        </span>
  11682.      </div>
  11683.    
  11684.  
  11685.  
  11686.  <div class="price__current price__current--emphasize " data-price-container>
  11687.  
  11688.    
  11689.  
  11690.    
  11691.      
  11692.      
  11693.      <span class="money" data-price>
  11694.        $106.99
  11695.      </span>
  11696.    
  11697.    
  11698.  </div>
  11699.  
  11700.  
  11701.    
  11702.    <div class="price__current--hidden" data-current-price-range-hidden>
  11703.      
  11704.        <span class="money price__current--min" data-price-min>$106.99</span>
  11705.        -
  11706.        <span class="money price__current--max" data-price-max>$106.99</span>
  11707.      
  11708.    </div>
  11709.    <div class="price__current--hidden" data-current-price-hidden>
  11710.      <span class="visually-hidden">Current price</span>
  11711.      <span class="money" data-price>
  11712.        $106.99
  11713.      </span>
  11714.    </div>
  11715.  
  11716.  
  11717.  
  11718.    
  11719.    
  11720.    
  11721.    
  11722.  
  11723.    <div
  11724.      class="
  11725.        productitem__unit-price
  11726.        hidden
  11727.      "
  11728.      data-unit-price
  11729.    >
  11730.      <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>
  11731.    </div>
  11732.  
  11733.  
  11734.  
  11735. </div>
  11736.  
  11737.  
  11738.            </div>
  11739.  
  11740.            <div class="productitem--listview-badge">
  11741.              
  11742.  
  11743.  
  11744.  
  11745.  
  11746.  
  11747.  
  11748.  
  11749.  
  11750.  
  11751.  
  11752.  
  11753.  
  11754.  
  11755.  
  11756.  
  11757.  
  11758.  
  11759.  
  11760.  
  11761.  
  11762.  
  11763.  
  11764.  
  11765.  
  11766.  
  11767.  
  11768.  
  11769.            </div>
  11770.  
  11771.            
  11772.              <div
  11773.                class="
  11774.                  productitem--action
  11775.                  quickshop-button
  11776.                  
  11777.                "
  11778.              >
  11779.                <button
  11780.                  class="productitem--action-trigger button-secondary"
  11781.                  data-quickshop-full
  11782.                  
  11783.                  
  11784.                  type="button"
  11785.                >
  11786.                  Quick shop
  11787.                </button>
  11788.              </div>
  11789.            
  11790.  
  11791.            
  11792.              <div
  11793.                class="
  11794.                  productitem--action
  11795.                  atc--button
  11796.                  
  11797.                "
  11798.              >
  11799.                <button
  11800.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11801.                  type="button"
  11802.                  aria-label="Add to cart"
  11803.                  
  11804.                    data-quick-buy
  11805.                  
  11806.                  data-variant-id="6936707596311"
  11807.                  
  11808.                >
  11809.                  <span class="atc-button--text">
  11810.                    Add to cart
  11811.                  </span>
  11812.                  <span class="atc-button--icon"><svg
  11813.  aria-hidden="true"
  11814.  focusable="false"
  11815.  role="presentation"
  11816.  width="26"
  11817.  height="26"
  11818.  viewBox="0 0 26 26"
  11819.  xmlns="http://www.w3.org/2000/svg"
  11820. >
  11821.  <g fill-rule="nonzero" fill="currentColor">
  11822.    <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"/>
  11823.  </g>
  11824. </svg></span>
  11825.                </button>
  11826.              </div>
  11827.            
  11828.          </div>
  11829.        
  11830.      
  11831.    </div>
  11832.  </div>
  11833.  
  11834.  
  11835.    <script type="application/json" data-quick-buy-settings>
  11836.      {
  11837.        "cart_redirection": true,
  11838.        "money_format": "${{amount}}"
  11839.      }
  11840.    </script>
  11841.  
  11842. </li>
  11843.    
  11844.      
  11845.  
  11846.  
  11847.  
  11848.  
  11849.  
  11850.  
  11851.  
  11852.  
  11853.  
  11854.  
  11855.  
  11856.  
  11857.  
  11858.  
  11859.  
  11860.  
  11861.  
  11862.  
  11863.  
  11864.  
  11865.  
  11866.  
  11867.  
  11868.  
  11869.  
  11870.  
  11871.  
  11872.  
  11873.  
  11874.  
  11875.  
  11876.  
  11877.    
  11878.  
  11879.  
  11880.  
  11881. <li
  11882.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11883.  data-product-item
  11884.  data-product-quickshop-url="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11885.  
  11886. >
  11887.  <div class="productitem" data-product-item-content>
  11888.    
  11889.    
  11890.    
  11891.    
  11892.  
  11893.    
  11894.  
  11895.    
  11896.  
  11897.    <div class="productitem__container">
  11898.      
  11899.  
  11900.      <div class="productitem__image-container">
  11901.        <a target="_blank"
  11902.          class="productitem--image-link"
  11903.          href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11904.          aria-label="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11905.          tabindex="-1"
  11906.          data-product-page-link
  11907.        >
  11908.          <figure
  11909.            class="productitem--image"
  11910.            data-product-item-image
  11911.            
  11912.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11913.            
  11914.          >
  11915.            
  11916.              
  11917.              
  11918.  
  11919.  
  11920.    <noscript data-rimg-noscript>
  11921.      <img loading="lazy"
  11922.        
  11923.          src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1759447396"
  11924.        
  11925.  
  11926.        alt="500GB 7mm 2.5&quot; 7200RPM Laptop Hard Drive for Lenovo - LaptopParts.ca"
  11927.        data-rimg="noscript"
  11928.        srcset="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1759447396 1x, //laptopparts.ca/cdn/shop/products/500gb_998x998.jpg?v=1759447396 1.95x"
  11929.        class="productitem--image-primary"
  11930.        
  11931.        
  11932.      >
  11933.    </noscript>
  11934.  
  11935.  
  11936.  <img loading="lazy"
  11937.    
  11938.      src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1759447396"
  11939.    
  11940.    alt="500GB 7mm 2.5&quot; 7200RPM Laptop Hard Drive for Lenovo - LaptopParts.ca"
  11941.  
  11942.    
  11943.      data-rimg="lazy"
  11944.      data-rimg-scale="1"
  11945.      data-rimg-template="//laptopparts.ca/cdn/shop/products/500gb_{size}.jpg?v=1759447396"
  11946.      data-rimg-max="1000x1000"
  11947.      data-rimg-crop="false"
  11948.      
  11949.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  11950.    
  11951.  
  11952.    class="productitem--image-primary"
  11953.    
  11954.    
  11955.  >
  11956.  
  11957.  
  11958.  
  11959.  <div data-rimg-canvas></div>
  11960.  
  11961.  
  11962.            
  11963.  
  11964.            
  11965.  
  11966.  
  11967.  
  11968.  
  11969.  
  11970.  
  11971.  
  11972.  
  11973.  
  11974.  
  11975.  
  11976.  
  11977.  
  11978.  
  11979.  
  11980.  
  11981.  
  11982.  
  11983.  
  11984.  
  11985.  
  11986.  
  11987.  
  11988.  
  11989.  
  11990.  
  11991.  
  11992.          </figure>
  11993.        </a>
  11994.      </div><div class="productitem--info">
  11995.        
  11996.          
  11997.  
  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.  
  12027.  
  12028.  
  12029.  
  12030.  
  12031.  
  12032. <div class="price productitem__price ">
  12033.  
  12034.    <div
  12035.      class="price__compare-at visible"
  12036.      data-price-compare-container
  12037.    >
  12038.  
  12039.      
  12040.        <span class="money price__original" data-price-original></span>
  12041.      
  12042.    </div>
  12043.  
  12044.  
  12045.    
  12046.      
  12047.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12048.        
  12049.          <span class="visually-hidden">Original price</span>
  12050.          <span class="money price__compare-at--min" data-price-compare-min>
  12051.            $62.99
  12052.          </span>
  12053.          -
  12054.          <span class="visually-hidden">Original price</span>
  12055.          <span class="money price__compare-at--max" data-price-compare-max>
  12056.            $62.99
  12057.          </span>
  12058.        
  12059.      </div>
  12060.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12061.        <span class="visually-hidden">Original price</span>
  12062.        <span class="money price__compare-at--single" data-price-compare>
  12063.          
  12064.        </span>
  12065.      </div>
  12066.    
  12067.  
  12068.  
  12069.  <div class="price__current price__current--emphasize " data-price-container>
  12070.  
  12071.    
  12072.  
  12073.    
  12074.      
  12075.      
  12076.      <span class="money" data-price>
  12077.        $62.99
  12078.      </span>
  12079.    
  12080.    
  12081.  </div>
  12082.  
  12083.  
  12084.    
  12085.    <div class="price__current--hidden" data-current-price-range-hidden>
  12086.      
  12087.        <span class="money price__current--min" data-price-min>$62.99</span>
  12088.        -
  12089.        <span class="money price__current--max" data-price-max>$62.99</span>
  12090.      
  12091.    </div>
  12092.    <div class="price__current--hidden" data-current-price-hidden>
  12093.      <span class="visually-hidden">Current price</span>
  12094.      <span class="money" data-price>
  12095.        $62.99
  12096.      </span>
  12097.    </div>
  12098.  
  12099.  
  12100.  
  12101.    
  12102.    
  12103.    
  12104.    
  12105.  
  12106.    <div
  12107.      class="
  12108.        productitem__unit-price
  12109.        hidden
  12110.      "
  12111.      data-unit-price
  12112.    >
  12113.      <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>
  12114.    </div>
  12115.  
  12116.  
  12117.  
  12118. </div>
  12119.  
  12120.  
  12121.        
  12122.  
  12123.        <h2 class="productitem--title">
  12124.          <a href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo" data-product-page-link>
  12125.            500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo
  12126.          </a>
  12127.        </h2>
  12128.  
  12129.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12130.        <div class="star_container 1362179063831"></div>
  12131.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12132.  
  12133.        
  12134.          
  12135.            <span class="productitem--vendor">
  12136.              <a href="/collections/vendors?q=Lenovo" title="Lenovo">Lenovo</a>
  12137.            </span>
  12138.          
  12139.        
  12140.  
  12141.        
  12142.  
  12143.        
  12144.          
  12145.            <div class="productitem__stock-level">
  12146.              <!--
  12147.  
  12148.  
  12149.  
  12150.  
  12151.  
  12152.  
  12153.  
  12154. <div class="product-stock-level-wrapper" >
  12155.  
  12156.    <span class="
  12157.  product-stock-level
  12158.  product-stock-level--continue-selling
  12159.  
  12160. ">
  12161.      
  12162.  
  12163.      <span class="product-stock-level__text">
  12164.        
  12165.        <div class="product-stock-level__badge-text">
  12166.          
  12167.  
  12168.    In stock
  12169.  
  12170.  
  12171.        </div>
  12172.      </span>
  12173.    </span>
  12174.  
  12175. </div>
  12176. -->
  12177.              
  12178.  
  12179.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12180.  
  12181.  
  12182.  
  12183.  
  12184.  
  12185.  
  12186.  
  12187.            </div>
  12188.          
  12189.  
  12190.          
  12191.            
  12192.          
  12193.        
  12194.  
  12195.        
  12196.          <div class="productitem--description">
  12197.            <p>500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo</p>
  12198.  
  12199.            
  12200.          </div>
  12201.        
  12202.      </div>
  12203.  
  12204.      
  12205.        
  12206.          
  12207.          
  12208.          
  12209.  
  12210.          
  12211.          
  12212.  
  12213.          
  12214.  
  12215.          
  12216.  
  12217.          <div class="productitem--actions" data-product-actions>
  12218.            <div class="productitem--listview-price">
  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.  
  12250. <div class="price productitem__price ">
  12251.  
  12252.    <div
  12253.      class="price__compare-at visible"
  12254.      data-price-compare-container
  12255.    >
  12256.  
  12257.      
  12258.        <span class="money price__original" data-price-original></span>
  12259.      
  12260.    </div>
  12261.  
  12262.  
  12263.    
  12264.      
  12265.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12266.        
  12267.          <span class="visually-hidden">Original price</span>
  12268.          <span class="money price__compare-at--min" data-price-compare-min>
  12269.            $62.99
  12270.          </span>
  12271.          -
  12272.          <span class="visually-hidden">Original price</span>
  12273.          <span class="money price__compare-at--max" data-price-compare-max>
  12274.            $62.99
  12275.          </span>
  12276.        
  12277.      </div>
  12278.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12279.        <span class="visually-hidden">Original price</span>
  12280.        <span class="money price__compare-at--single" data-price-compare>
  12281.          
  12282.        </span>
  12283.      </div>
  12284.    
  12285.  
  12286.  
  12287.  <div class="price__current price__current--emphasize " data-price-container>
  12288.  
  12289.    
  12290.  
  12291.    
  12292.      
  12293.      
  12294.      <span class="money" data-price>
  12295.        $62.99
  12296.      </span>
  12297.    
  12298.    
  12299.  </div>
  12300.  
  12301.  
  12302.    
  12303.    <div class="price__current--hidden" data-current-price-range-hidden>
  12304.      
  12305.        <span class="money price__current--min" data-price-min>$62.99</span>
  12306.        -
  12307.        <span class="money price__current--max" data-price-max>$62.99</span>
  12308.      
  12309.    </div>
  12310.    <div class="price__current--hidden" data-current-price-hidden>
  12311.      <span class="visually-hidden">Current price</span>
  12312.      <span class="money" data-price>
  12313.        $62.99
  12314.      </span>
  12315.    </div>
  12316.  
  12317.  
  12318.  
  12319.    
  12320.    
  12321.    
  12322.    
  12323.  
  12324.    <div
  12325.      class="
  12326.        productitem__unit-price
  12327.        hidden
  12328.      "
  12329.      data-unit-price
  12330.    >
  12331.      <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>
  12332.    </div>
  12333.  
  12334.  
  12335.  
  12336. </div>
  12337.  
  12338.  
  12339.            </div>
  12340.  
  12341.            <div class="productitem--listview-badge">
  12342.              
  12343.  
  12344.  
  12345.  
  12346.  
  12347.  
  12348.  
  12349.  
  12350.  
  12351.  
  12352.  
  12353.  
  12354.  
  12355.  
  12356.  
  12357.  
  12358.  
  12359.  
  12360.  
  12361.  
  12362.  
  12363.  
  12364.  
  12365.  
  12366.  
  12367.  
  12368.  
  12369.  
  12370.            </div>
  12371.  
  12372.            
  12373.              <div
  12374.                class="
  12375.                  productitem--action
  12376.                  quickshop-button
  12377.                  
  12378.                "
  12379.              >
  12380.                <button
  12381.                  class="productitem--action-trigger button-secondary"
  12382.                  data-quickshop-full
  12383.                  
  12384.                  
  12385.                  type="button"
  12386.                >
  12387.                  Quick shop
  12388.                </button>
  12389.              </div>
  12390.            
  12391.  
  12392.            
  12393.              <div
  12394.                class="
  12395.                  productitem--action
  12396.                  atc--button
  12397.                  
  12398.                "
  12399.              >
  12400.                <button
  12401.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12402.                  type="button"
  12403.                  aria-label="Add to cart"
  12404.                  
  12405.                    data-quick-buy
  12406.                  
  12407.                  data-variant-id="12366737309719"
  12408.                  
  12409.                >
  12410.                  <span class="atc-button--text">
  12411.                    Add to cart
  12412.                  </span>
  12413.                  <span class="atc-button--icon"><svg
  12414.  aria-hidden="true"
  12415.  focusable="false"
  12416.  role="presentation"
  12417.  width="26"
  12418.  height="26"
  12419.  viewBox="0 0 26 26"
  12420.  xmlns="http://www.w3.org/2000/svg"
  12421. >
  12422.  <g fill-rule="nonzero" fill="currentColor">
  12423.    <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"/>
  12424.  </g>
  12425. </svg></span>
  12426.                </button>
  12427.              </div>
  12428.            
  12429.          </div>
  12430.        
  12431.      
  12432.    </div>
  12433.  </div>
  12434.  
  12435.  
  12436.    <script type="application/json" data-quick-buy-settings>
  12437.      {
  12438.        "cart_redirection": true,
  12439.        "money_format": "${{amount}}"
  12440.      }
  12441.    </script>
  12442.  
  12443. </li>
  12444.    
  12445.      
  12446.  
  12447.  
  12448.  
  12449.  
  12450.  
  12451.  
  12452.  
  12453.  
  12454.  
  12455.  
  12456.  
  12457.  
  12458.  
  12459.  
  12460.  
  12461.  
  12462.  
  12463.  
  12464.  
  12465.  
  12466.  
  12467.  
  12468.  
  12469.  
  12470.  
  12471.  
  12472.  
  12473.  
  12474.  
  12475.  
  12476.  
  12477.  
  12478.    
  12479.  
  12480.  
  12481.  
  12482. <li
  12483.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  12484.  data-product-item
  12485.  data-product-quickshop-url="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12486.  
  12487. >
  12488.  <div class="productitem" data-product-item-content>
  12489.    
  12490.    
  12491.    
  12492.    
  12493.  
  12494.    
  12495.  
  12496.    
  12497.  
  12498.    <div class="productitem__container">
  12499.      
  12500.  
  12501.      <div class="productitem__image-container">
  12502.        <a target="_blank"
  12503.          class="productitem--image-link"
  12504.          href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12505.          aria-label="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12506.          tabindex="-1"
  12507.          data-product-page-link
  12508.        >
  12509.          <figure
  12510.            class="productitem--image"
  12511.            data-product-item-image
  12512.            
  12513.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  12514.            
  12515.          >
  12516.            
  12517.              
  12518.              
  12519.  
  12520.  
  12521.    <noscript data-rimg-noscript>
  12522.      <img loading="lazy"
  12523.        
  12524.          src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12525.        
  12526.  
  12527.        alt="4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10 - LaptopParts.ca"
  12528.        data-rimg="noscript"
  12529.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700 1x"
  12530.        class="productitem--image-primary"
  12531.        
  12532.        
  12533.      >
  12534.    </noscript>
  12535.  
  12536.  
  12537.  <img loading="lazy"
  12538.    
  12539.      src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12540.    
  12541.    alt="4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10 - LaptopParts.ca"
  12542.  
  12543.    
  12544.      data-rimg="lazy"
  12545.      data-rimg-scale="1"
  12546.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_{size}.jpg?v=1648042700"
  12547.      data-rimg-max="500x500"
  12548.      data-rimg-crop="false"
  12549.      
  12550.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  12551.    
  12552.  
  12553.    class="productitem--image-primary"
  12554.    
  12555.    
  12556.  >
  12557.  
  12558.  
  12559.  
  12560.  <div data-rimg-canvas></div>
  12561.  
  12562.  
  12563.            
  12564.  
  12565.            
  12566.  
  12567.  
  12568.  
  12569.  
  12570.  
  12571.  
  12572.  
  12573.  
  12574.  
  12575.  
  12576.  
  12577.  
  12578.  
  12579.  
  12580.  
  12581.  
  12582.  
  12583.  
  12584.  
  12585.  
  12586.  
  12587.  
  12588.  
  12589.  
  12590.  
  12591.  
  12592.  
  12593.          </figure>
  12594.        </a>
  12595.      </div><div class="productitem--info">
  12596.        
  12597.          
  12598.  
  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.  
  12628.  
  12629.  
  12630.  
  12631.  
  12632.  
  12633. <div class="price productitem__price ">
  12634.  
  12635.    <div
  12636.      class="price__compare-at visible"
  12637.      data-price-compare-container
  12638.    >
  12639.  
  12640.      
  12641.        <span class="money price__original" data-price-original></span>
  12642.      
  12643.    </div>
  12644.  
  12645.  
  12646.    
  12647.      
  12648.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12649.        
  12650.          <span class="visually-hidden">Original price</span>
  12651.          <span class="money price__compare-at--min" data-price-compare-min>
  12652.            $54.99
  12653.          </span>
  12654.          -
  12655.          <span class="visually-hidden">Original price</span>
  12656.          <span class="money price__compare-at--max" data-price-compare-max>
  12657.            $54.99
  12658.          </span>
  12659.        
  12660.      </div>
  12661.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12662.        <span class="visually-hidden">Original price</span>
  12663.        <span class="money price__compare-at--single" data-price-compare>
  12664.          
  12665.        </span>
  12666.      </div>
  12667.    
  12668.  
  12669.  
  12670.  <div class="price__current price__current--emphasize " data-price-container>
  12671.  
  12672.    
  12673.  
  12674.    
  12675.      
  12676.      
  12677.      <span class="money" data-price>
  12678.        $54.99
  12679.      </span>
  12680.    
  12681.    
  12682.  </div>
  12683.  
  12684.  
  12685.    
  12686.    <div class="price__current--hidden" data-current-price-range-hidden>
  12687.      
  12688.        <span class="money price__current--min" data-price-min>$54.99</span>
  12689.        -
  12690.        <span class="money price__current--max" data-price-max>$54.99</span>
  12691.      
  12692.    </div>
  12693.    <div class="price__current--hidden" data-current-price-hidden>
  12694.      <span class="visually-hidden">Current price</span>
  12695.      <span class="money" data-price>
  12696.        $54.99
  12697.      </span>
  12698.    </div>
  12699.  
  12700.  
  12701.  
  12702.    
  12703.    
  12704.    
  12705.    
  12706.  
  12707.    <div
  12708.      class="
  12709.        productitem__unit-price
  12710.        hidden
  12711.      "
  12712.      data-unit-price
  12713.    >
  12714.      <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>
  12715.    </div>
  12716.  
  12717.  
  12718.  
  12719. </div>
  12720.  
  12721.  
  12722.        
  12723.  
  12724.        <h2 class="productitem--title">
  12725.          <a href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10" data-product-page-link>
  12726.            4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10
  12727.          </a>
  12728.        </h2>
  12729.  
  12730.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12731.        <div class="star_container 3929813123159"></div>
  12732.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12733.  
  12734.        
  12735.          
  12736.            <span class="productitem--vendor">
  12737.              <a href="/collections/vendors?q=Dell" title="Dell">Dell</a>
  12738.            </span>
  12739.          
  12740.        
  12741.  
  12742.        
  12743.  
  12744.        
  12745.          
  12746.            <div class="productitem__stock-level">
  12747.              <!--
  12748.  
  12749.  
  12750.  
  12751.  
  12752.  
  12753.  
  12754.  
  12755. <div class="product-stock-level-wrapper" >
  12756.  
  12757.    <span class="
  12758.  product-stock-level
  12759.  product-stock-level--continue-selling
  12760.  
  12761. ">
  12762.      
  12763.  
  12764.      <span class="product-stock-level__text">
  12765.        
  12766.        <div class="product-stock-level__badge-text">
  12767.          
  12768.  
  12769.    In stock
  12770.  
  12771.  
  12772.        </div>
  12773.      </span>
  12774.    </span>
  12775.  
  12776. </div>
  12777. -->
  12778.              
  12779.  
  12780.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12781.  
  12782.  
  12783.  
  12784.  
  12785.  
  12786.  
  12787.  
  12788.            </div>
  12789.          
  12790.  
  12791.          
  12792.            
  12793.          
  12794.        
  12795.  
  12796.        
  12797.          <div class="productitem--description">
  12798.            <p>
  12799. 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>
  12800.  
  12801.            
  12802.              <a
  12803.                href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12804.                class="productitem--link"
  12805.                data-product-page-link
  12806.              >
  12807.                View full details
  12808.              </a>
  12809.            
  12810.          </div>
  12811.        
  12812.      </div>
  12813.  
  12814.      
  12815.        
  12816.          
  12817.          
  12818.          
  12819.  
  12820.          
  12821.          
  12822.  
  12823.          
  12824.  
  12825.          
  12826.  
  12827.          <div class="productitem--actions" data-product-actions>
  12828.            <div class="productitem--listview-price">
  12829.              
  12830.  
  12831.  
  12832.  
  12833.  
  12834.  
  12835.  
  12836.  
  12837.  
  12838.  
  12839.  
  12840.  
  12841.  
  12842.  
  12843.  
  12844.  
  12845.  
  12846.  
  12847.  
  12848.  
  12849.  
  12850.  
  12851.  
  12852.  
  12853.  
  12854.  
  12855.  
  12856.  
  12857.  
  12858.  
  12859.  
  12860. <div class="price productitem__price ">
  12861.  
  12862.    <div
  12863.      class="price__compare-at visible"
  12864.      data-price-compare-container
  12865.    >
  12866.  
  12867.      
  12868.        <span class="money price__original" data-price-original></span>
  12869.      
  12870.    </div>
  12871.  
  12872.  
  12873.    
  12874.      
  12875.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12876.        
  12877.          <span class="visually-hidden">Original price</span>
  12878.          <span class="money price__compare-at--min" data-price-compare-min>
  12879.            $54.99
  12880.          </span>
  12881.          -
  12882.          <span class="visually-hidden">Original price</span>
  12883.          <span class="money price__compare-at--max" data-price-compare-max>
  12884.            $54.99
  12885.          </span>
  12886.        
  12887.      </div>
  12888.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12889.        <span class="visually-hidden">Original price</span>
  12890.        <span class="money price__compare-at--single" data-price-compare>
  12891.          
  12892.        </span>
  12893.      </div>
  12894.    
  12895.  
  12896.  
  12897.  <div class="price__current price__current--emphasize " data-price-container>
  12898.  
  12899.    
  12900.  
  12901.    
  12902.      
  12903.      
  12904.      <span class="money" data-price>
  12905.        $54.99
  12906.      </span>
  12907.    
  12908.    
  12909.  </div>
  12910.  
  12911.  
  12912.    
  12913.    <div class="price__current--hidden" data-current-price-range-hidden>
  12914.      
  12915.        <span class="money price__current--min" data-price-min>$54.99</span>
  12916.        -
  12917.        <span class="money price__current--max" data-price-max>$54.99</span>
  12918.      
  12919.    </div>
  12920.    <div class="price__current--hidden" data-current-price-hidden>
  12921.      <span class="visually-hidden">Current price</span>
  12922.      <span class="money" data-price>
  12923.        $54.99
  12924.      </span>
  12925.    </div>
  12926.  
  12927.  
  12928.  
  12929.    
  12930.    
  12931.    
  12932.    
  12933.  
  12934.    <div
  12935.      class="
  12936.        productitem__unit-price
  12937.        hidden
  12938.      "
  12939.      data-unit-price
  12940.    >
  12941.      <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>
  12942.    </div>
  12943.  
  12944.  
  12945.  
  12946. </div>
  12947.  
  12948.  
  12949.            </div>
  12950.  
  12951.            <div class="productitem--listview-badge">
  12952.              
  12953.  
  12954.  
  12955.  
  12956.  
  12957.  
  12958.  
  12959.  
  12960.  
  12961.  
  12962.  
  12963.  
  12964.  
  12965.  
  12966.  
  12967.  
  12968.  
  12969.  
  12970.  
  12971.  
  12972.  
  12973.  
  12974.  
  12975.  
  12976.  
  12977.  
  12978.  
  12979.  
  12980.            </div>
  12981.  
  12982.            
  12983.              <div
  12984.                class="
  12985.                  productitem--action
  12986.                  quickshop-button
  12987.                  
  12988.                "
  12989.              >
  12990.                <button
  12991.                  class="productitem--action-trigger button-secondary"
  12992.                  data-quickshop-full
  12993.                  
  12994.                  
  12995.                  type="button"
  12996.                >
  12997.                  Quick shop
  12998.                </button>
  12999.              </div>
  13000.            
  13001.  
  13002.            
  13003.              <div
  13004.                class="
  13005.                  productitem--action
  13006.                  atc--button
  13007.                  
  13008.                "
  13009.              >
  13010.                <button
  13011.                  class="productitem--action-trigger productitem--action-atc button-primary"
  13012.                  type="button"
  13013.                  aria-label="Add to cart"
  13014.                  
  13015.                    data-quick-buy
  13016.                  
  13017.                  data-variant-id="29531497529431"
  13018.                  
  13019.                >
  13020.                  <span class="atc-button--text">
  13021.                    Add to cart
  13022.                  </span>
  13023.                  <span class="atc-button--icon"><svg
  13024.  aria-hidden="true"
  13025.  focusable="false"
  13026.  role="presentation"
  13027.  width="26"
  13028.  height="26"
  13029.  viewBox="0 0 26 26"
  13030.  xmlns="http://www.w3.org/2000/svg"
  13031. >
  13032.  <g fill-rule="nonzero" fill="currentColor">
  13033.    <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"/>
  13034.  </g>
  13035. </svg></span>
  13036.                </button>
  13037.              </div>
  13038.            
  13039.          </div>
  13040.        
  13041.      
  13042.    </div>
  13043.  </div>
  13044.  
  13045.  
  13046.    <script type="application/json" data-quick-buy-settings>
  13047.      {
  13048.        "cart_redirection": true,
  13049.        "money_format": "${{amount}}"
  13050.      }
  13051.    </script>
  13052.  
  13053. </li>
  13054.    
  13055.      
  13056.  
  13057.  
  13058.  
  13059.  
  13060.  
  13061.  
  13062.  
  13063.  
  13064.  
  13065.  
  13066.  
  13067.  
  13068.  
  13069.  
  13070.  
  13071.  
  13072.  
  13073.  
  13074.  
  13075.  
  13076.  
  13077.  
  13078.  
  13079.  
  13080.  
  13081.  
  13082.  
  13083.  
  13084.  
  13085.  
  13086.  
  13087.  
  13088.    
  13089.  
  13090.  
  13091.  
  13092. <li
  13093.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13094.  data-product-item
  13095.  data-product-quickshop-url="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13096.  
  13097. >
  13098.  <div class="productitem" data-product-item-content>
  13099.    
  13100.    
  13101.    
  13102.    
  13103.  
  13104.    
  13105.  
  13106.    
  13107.  
  13108.    <div class="productitem__container">
  13109.      
  13110.  
  13111.      <div class="productitem__image-container">
  13112.        <a target="_blank"
  13113.          class="productitem--image-link"
  13114.          href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13115.          aria-label="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13116.          tabindex="-1"
  13117.          data-product-page-link
  13118.        >
  13119.          <figure
  13120.            class="productitem--image"
  13121.            data-product-item-image
  13122.            
  13123.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13124.            
  13125.          >
  13126.            
  13127.              
  13128.              
  13129.  
  13130.  
  13131.    <noscript data-rimg-noscript>
  13132.      <img loading="lazy"
  13133.        
  13134.          src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1759506295"
  13135.        
  13136.  
  13137.        alt="925740-002"
  13138.        data-rimg="noscript"
  13139.        srcset="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1759506295 1x, //laptopparts.ca/cdn/shop/files/tpn-ca06_1024x1024.jpg?v=1759506295 2x, //laptopparts.ca/cdn/shop/files/tpn-ca06_1039x1039.jpg?v=1759506295 2.03x"
  13140.        class="productitem--image-primary"
  13141.        
  13142.        
  13143.      >
  13144.    </noscript>
  13145.  
  13146.  
  13147.  <img loading="lazy"
  13148.    
  13149.      src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1759506295"
  13150.    
  13151.    alt="925740-002"
  13152.  
  13153.    
  13154.      data-rimg="lazy"
  13155.      data-rimg-scale="1"
  13156.      data-rimg-template="//laptopparts.ca/cdn/shop/files/tpn-ca06_{size}.jpg?v=1759506295"
  13157.      data-rimg-max="1043x1043"
  13158.      data-rimg-crop="false"
  13159.      
  13160.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  13161.    
  13162.  
  13163.    class="productitem--image-primary"
  13164.    
  13165.    
  13166.  >
  13167.  
  13168.  
  13169.  
  13170.  <div data-rimg-canvas></div>
  13171.  
  13172.  
  13173.            
  13174.  
  13175.            
  13176.  
  13177.  
  13178.  
  13179.  
  13180.  
  13181.  
  13182.  
  13183.  
  13184.  
  13185.  
  13186.  
  13187.  
  13188.  
  13189.  
  13190.  
  13191.  
  13192.  
  13193.  
  13194.  
  13195.  
  13196.  
  13197.  
  13198.  
  13199.  
  13200.  
  13201.  
  13202.  
  13203.          </figure>
  13204.        </a>
  13205.      </div><div class="productitem--info">
  13206.        
  13207.          
  13208.  
  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.  
  13238.  
  13239.  
  13240.  
  13241.  
  13242.  
  13243. <div class="price productitem__price ">
  13244.  
  13245.    <div
  13246.      class="price__compare-at visible"
  13247.      data-price-compare-container
  13248.    >
  13249.  
  13250.      
  13251.        <span class="money price__original" data-price-original></span>
  13252.      
  13253.    </div>
  13254.  
  13255.  
  13256.    
  13257.      
  13258.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13259.        
  13260.          <span class="visually-hidden">Original price</span>
  13261.          <span class="money price__compare-at--min" data-price-compare-min>
  13262.            $65.98
  13263.          </span>
  13264.          -
  13265.          <span class="visually-hidden">Original price</span>
  13266.          <span class="money price__compare-at--max" data-price-compare-max>
  13267.            $65.98
  13268.          </span>
  13269.        
  13270.      </div>
  13271.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13272.        <span class="visually-hidden">Original price</span>
  13273.        <span class="money price__compare-at--single" data-price-compare>
  13274.          
  13275.        </span>
  13276.      </div>
  13277.    
  13278.  
  13279.  
  13280.  <div class="price__current price__current--emphasize " data-price-container>
  13281.  
  13282.    
  13283.  
  13284.    
  13285.      
  13286.      
  13287.      <span class="money" data-price>
  13288.        $65.98
  13289.      </span>
  13290.    
  13291.    
  13292.  </div>
  13293.  
  13294.  
  13295.    
  13296.    <div class="price__current--hidden" data-current-price-range-hidden>
  13297.      
  13298.        <span class="money price__current--min" data-price-min>$65.98</span>
  13299.        -
  13300.        <span class="money price__current--max" data-price-max>$65.98</span>
  13301.      
  13302.    </div>
  13303.    <div class="price__current--hidden" data-current-price-hidden>
  13304.      <span class="visually-hidden">Current price</span>
  13305.      <span class="money" data-price>
  13306.        $65.98
  13307.      </span>
  13308.    </div>
  13309.  
  13310.  
  13311.  
  13312.    
  13313.    
  13314.    
  13315.    
  13316.  
  13317.    <div
  13318.      class="
  13319.        productitem__unit-price
  13320.        hidden
  13321.      "
  13322.      data-unit-price
  13323.    >
  13324.      <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>
  13325.    </div>
  13326.  
  13327.  
  13328.  
  13329. </div>
  13330.  
  13331.  
  13332.        
  13333.  
  13334.        <h2 class="productitem--title">
  13335.          <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>
  13336.            925740-002 Genuine 65W USB Type-C Adapter Charger for HP Elite X2 1012 G2 Elitebook x360
  13337.          </a>
  13338.        </h2>
  13339.  
  13340.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13341.        <div class="star_container 6881873985623"></div>
  13342.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13343.  
  13344.        
  13345.          
  13346.            <span class="productitem--vendor">
  13347.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  13348.            </span>
  13349.          
  13350.        
  13351.  
  13352.        
  13353.  
  13354.        
  13355.          
  13356.            <div class="productitem__stock-level">
  13357.              <!--
  13358.  
  13359.  
  13360.  
  13361.  
  13362.  
  13363.  
  13364.  
  13365. <div class="product-stock-level-wrapper" >
  13366.  
  13367.    <span class="
  13368.  product-stock-level
  13369.  product-stock-level--continue-selling
  13370.  
  13371. ">
  13372.      
  13373.  
  13374.      <span class="product-stock-level__text">
  13375.        
  13376.        <div class="product-stock-level__badge-text">
  13377.          
  13378.  
  13379.    In stock
  13380.  
  13381.  
  13382.        </div>
  13383.      </span>
  13384.    </span>
  13385.  
  13386. </div>
  13387. -->
  13388.              
  13389.  
  13390.  
  13391.    
  13392.      <b style="color:green">In stock</b>
  13393.    
  13394.  
  13395.  
  13396.  
  13397.  
  13398.  
  13399.  
  13400.  
  13401.            </div>
  13402.          
  13403.  
  13404.          
  13405.            
  13406.          
  13407.        
  13408.  
  13409.        
  13410.          <div class="productitem--description">
  13411.            <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>
  13412.  
  13413.            
  13414.              <a
  13415.                href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13416.                class="productitem--link"
  13417.                data-product-page-link
  13418.              >
  13419.                View full details
  13420.              </a>
  13421.            
  13422.          </div>
  13423.        
  13424.      </div>
  13425.  
  13426.      
  13427.        
  13428.          
  13429.          
  13430.          
  13431.  
  13432.          
  13433.          
  13434.  
  13435.          
  13436.  
  13437.          
  13438.  
  13439.          <div class="productitem--actions" data-product-actions>
  13440.            <div class="productitem--listview-price">
  13441.              
  13442.  
  13443.  
  13444.  
  13445.  
  13446.  
  13447.  
  13448.  
  13449.  
  13450.  
  13451.  
  13452.  
  13453.  
  13454.  
  13455.  
  13456.  
  13457.  
  13458.  
  13459.  
  13460.  
  13461.  
  13462.  
  13463.  
  13464.  
  13465.  
  13466.  
  13467.  
  13468.  
  13469.  
  13470.  
  13471.  
  13472. <div class="price productitem__price ">
  13473.  
  13474.    <div
  13475.      class="price__compare-at visible"
  13476.      data-price-compare-container
  13477.    >
  13478.  
  13479.      
  13480.        <span class="money price__original" data-price-original></span>
  13481.      
  13482.    </div>
  13483.  
  13484.  
  13485.    
  13486.      
  13487.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13488.        
  13489.          <span class="visually-hidden">Original price</span>
  13490.          <span class="money price__compare-at--min" data-price-compare-min>
  13491.            $65.98
  13492.          </span>
  13493.          -
  13494.          <span class="visually-hidden">Original price</span>
  13495.          <span class="money price__compare-at--max" data-price-compare-max>
  13496.            $65.98
  13497.          </span>
  13498.        
  13499.      </div>
  13500.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13501.        <span class="visually-hidden">Original price</span>
  13502.        <span class="money price__compare-at--single" data-price-compare>
  13503.          
  13504.        </span>
  13505.      </div>
  13506.    
  13507.  
  13508.  
  13509.  <div class="price__current price__current--emphasize " data-price-container>
  13510.  
  13511.    
  13512.  
  13513.    
  13514.      
  13515.      
  13516.      <span class="money" data-price>
  13517.        $65.98
  13518.      </span>
  13519.    
  13520.    
  13521.  </div>
  13522.  
  13523.  
  13524.    
  13525.    <div class="price__current--hidden" data-current-price-range-hidden>
  13526.      
  13527.        <span class="money price__current--min" data-price-min>$65.98</span>
  13528.        -
  13529.        <span class="money price__current--max" data-price-max>$65.98</span>
  13530.      
  13531.    </div>
  13532.    <div class="price__current--hidden" data-current-price-hidden>
  13533.      <span class="visually-hidden">Current price</span>
  13534.      <span class="money" data-price>
  13535.        $65.98
  13536.      </span>
  13537.    </div>
  13538.  
  13539.  
  13540.  
  13541.    
  13542.    
  13543.    
  13544.    
  13545.  
  13546.    <div
  13547.      class="
  13548.        productitem__unit-price
  13549.        hidden
  13550.      "
  13551.      data-unit-price
  13552.    >
  13553.      <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>
  13554.    </div>
  13555.  
  13556.  
  13557.  
  13558. </div>
  13559.  
  13560.  
  13561.            </div>
  13562.  
  13563.            <div class="productitem--listview-badge">
  13564.              
  13565.  
  13566.  
  13567.  
  13568.  
  13569.  
  13570.  
  13571.  
  13572.  
  13573.  
  13574.  
  13575.  
  13576.  
  13577.  
  13578.  
  13579.  
  13580.  
  13581.  
  13582.  
  13583.  
  13584.  
  13585.  
  13586.  
  13587.  
  13588.  
  13589.  
  13590.  
  13591.  
  13592.            </div>
  13593.  
  13594.            
  13595.              <div
  13596.                class="
  13597.                  productitem--action
  13598.                  quickshop-button
  13599.                  
  13600.                "
  13601.              >
  13602.                <button
  13603.                  class="productitem--action-trigger button-secondary"
  13604.                  data-quickshop-full
  13605.                  
  13606.                  
  13607.                  type="button"
  13608.                >
  13609.                  Quick shop
  13610.                </button>
  13611.              </div>
  13612.            
  13613.  
  13614.            
  13615.              <div
  13616.                class="
  13617.                  productitem--action
  13618.                  atc--button
  13619.                  
  13620.                "
  13621.              >
  13622.                <button
  13623.                  class="productitem--action-trigger productitem--action-atc button-primary"
  13624.                  type="button"
  13625.                  aria-label="Add to cart"
  13626.                  
  13627.                    data-quick-buy
  13628.                  
  13629.                  data-variant-id="40183331749975"
  13630.                  
  13631.                >
  13632.                  <span class="atc-button--text">
  13633.                    Add to cart
  13634.                  </span>
  13635.                  <span class="atc-button--icon"><svg
  13636.  aria-hidden="true"
  13637.  focusable="false"
  13638.  role="presentation"
  13639.  width="26"
  13640.  height="26"
  13641.  viewBox="0 0 26 26"
  13642.  xmlns="http://www.w3.org/2000/svg"
  13643. >
  13644.  <g fill-rule="nonzero" fill="currentColor">
  13645.    <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"/>
  13646.  </g>
  13647. </svg></span>
  13648.                </button>
  13649.              </div>
  13650.            
  13651.          </div>
  13652.        
  13653.      
  13654.    </div>
  13655.  </div>
  13656.  
  13657.  
  13658.    <script type="application/json" data-quick-buy-settings>
  13659.      {
  13660.        "cart_redirection": true,
  13661.        "money_format": "${{amount}}"
  13662.      }
  13663.    </script>
  13664.  
  13665. </li>
  13666.    
  13667.      
  13668.  
  13669.  
  13670.  
  13671.  
  13672.  
  13673.  
  13674.  
  13675.  
  13676.  
  13677.  
  13678.  
  13679.  
  13680.  
  13681.  
  13682.  
  13683.  
  13684.  
  13685.  
  13686.  
  13687.  
  13688.  
  13689.  
  13690.  
  13691.  
  13692.  
  13693.  
  13694.  
  13695.  
  13696.  
  13697.  
  13698.  
  13699.  
  13700.    
  13701.  
  13702.  
  13703.  
  13704. <li
  13705.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13706.  data-product-item
  13707.  data-product-quickshop-url="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13708.  
  13709. >
  13710.  <div class="productitem" data-product-item-content>
  13711.    
  13712.    
  13713.    
  13714.    
  13715.  
  13716.    
  13717.  
  13718.    
  13719.  
  13720.    <div class="productitem__container">
  13721.      
  13722.  
  13723.      <div class="productitem__image-container">
  13724.        <a target="_blank"
  13725.          class="productitem--image-link"
  13726.          href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13727.          aria-label="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13728.          tabindex="-1"
  13729.          data-product-page-link
  13730.        >
  13731.          <figure
  13732.            class="productitem--image"
  13733.            data-product-item-image
  13734.            
  13735.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13736.            
  13737.          >
  13738.            
  13739.              
  13740.              
  13741.  
  13742.  
  13743.    <noscript data-rimg-noscript>
  13744.      <img loading="lazy"
  13745.        
  13746.          src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1759501265"
  13747.        
  13748.  
  13749.        alt="Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001 - LaptopParts.ca"
  13750.        data-rimg="noscript"
  13751.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1759501265 1x"
  13752.        class="productitem--image-primary"
  13753.        
  13754.        
  13755.      >
  13756.    </noscript>
  13757.  
  13758.  
  13759.  <img loading="lazy"
  13760.    
  13761.      src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1759501265"
  13762.    
  13763.    alt="Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001 - LaptopParts.ca"
  13764.  
  13765.    
  13766.      data-rimg="lazy"
  13767.      data-rimg-scale="1"
  13768.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_{size}.jpg?v=1759501265"
  13769.      data-rimg-max="500x500"
  13770.      data-rimg-crop="false"
  13771.      
  13772.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  13773.    
  13774.  
  13775.    class="productitem--image-primary"
  13776.    
  13777.    
  13778.  >
  13779.  
  13780.  
  13781.  
  13782.  <div data-rimg-canvas></div>
  13783.  
  13784.  
  13785.            
  13786.  
  13787.            
  13788.  
  13789.  
  13790.  
  13791.  
  13792.  
  13793.  
  13794.  
  13795.  
  13796.  
  13797.  
  13798.  
  13799.  
  13800.  
  13801.  
  13802.  
  13803.  
  13804.  
  13805.  
  13806.  
  13807.  
  13808.  
  13809.  
  13810.  
  13811.  
  13812.  
  13813.  
  13814.  
  13815.          </figure>
  13816.        </a>
  13817.      </div><div class="productitem--info">
  13818.        
  13819.          
  13820.  
  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.  
  13850.  
  13851.  
  13852.  
  13853.  
  13854.  
  13855. <div class="price productitem__price ">
  13856.  
  13857.    <div
  13858.      class="price__compare-at visible"
  13859.      data-price-compare-container
  13860.    >
  13861.  
  13862.      
  13863.        <span class="money price__original" data-price-original></span>
  13864.      
  13865.    </div>
  13866.  
  13867.  
  13868.    
  13869.      
  13870.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13871.        
  13872.          <span class="visually-hidden">Original price</span>
  13873.          <span class="money price__compare-at--min" data-price-compare-min>
  13874.            $54.99
  13875.          </span>
  13876.          -
  13877.          <span class="visually-hidden">Original price</span>
  13878.          <span class="money price__compare-at--max" data-price-compare-max>
  13879.            $54.99
  13880.          </span>
  13881.        
  13882.      </div>
  13883.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13884.        <span class="visually-hidden">Original price</span>
  13885.        <span class="money price__compare-at--single" data-price-compare>
  13886.          
  13887.        </span>
  13888.      </div>
  13889.    
  13890.  
  13891.  
  13892.  <div class="price__current price__current--emphasize " data-price-container>
  13893.  
  13894.    
  13895.  
  13896.    
  13897.      
  13898.      
  13899.      <span class="money" data-price>
  13900.        $54.99
  13901.      </span>
  13902.    
  13903.    
  13904.  </div>
  13905.  
  13906.  
  13907.    
  13908.    <div class="price__current--hidden" data-current-price-range-hidden>
  13909.      
  13910.        <span class="money price__current--min" data-price-min>$54.99</span>
  13911.        -
  13912.        <span class="money price__current--max" data-price-max>$54.99</span>
  13913.      
  13914.    </div>
  13915.    <div class="price__current--hidden" data-current-price-hidden>
  13916.      <span class="visually-hidden">Current price</span>
  13917.      <span class="money" data-price>
  13918.        $54.99
  13919.      </span>
  13920.    </div>
  13921.  
  13922.  
  13923.  
  13924.    
  13925.    
  13926.    
  13927.    
  13928.  
  13929.    <div
  13930.      class="
  13931.        productitem__unit-price
  13932.        hidden
  13933.      "
  13934.      data-unit-price
  13935.    >
  13936.      <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>
  13937.    </div>
  13938.  
  13939.  
  13940.  
  13941. </div>
  13942.  
  13943.  
  13944.        
  13945.  
  13946.        <h2 class="productitem--title">
  13947.          <a href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001" data-product-page-link>
  13948.            Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001
  13949.          </a>
  13950.        </h2>
  13951.  
  13952.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13953.        <div class="star_container 3929815122007"></div>
  13954.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13955.  
  13956.        
  13957.          
  13958.            <span class="productitem--vendor">
  13959.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  13960.            </span>
  13961.          
  13962.        
  13963.  
  13964.        
  13965.  
  13966.        
  13967.          
  13968.            <div class="productitem__stock-level">
  13969.              <!--
  13970.  
  13971.  
  13972.  
  13973.  
  13974.  
  13975.  
  13976.  
  13977. <div class="product-stock-level-wrapper" >
  13978.  
  13979.    <span class="
  13980.  product-stock-level
  13981.  product-stock-level--continue-selling
  13982.  
  13983. ">
  13984.      
  13985.  
  13986.      <span class="product-stock-level__text">
  13987.        
  13988.        <div class="product-stock-level__badge-text">
  13989.          
  13990.  
  13991.    In stock
  13992.  
  13993.  
  13994.        </div>
  13995.      </span>
  13996.    </span>
  13997.  
  13998. </div>
  13999. -->
  14000.              
  14001.  
  14002.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  14003.  
  14004.  
  14005.  
  14006.  
  14007.  
  14008.  
  14009.  
  14010.            </div>
  14011.          
  14012.  
  14013.          
  14014.            
  14015.          
  14016.        
  14017.  
  14018.        
  14019.          <div class="productitem--description">
  14020.            <p>
  14021. Description: New Acer server replacement case cooling fan.
  14022.  
  14023. Compatible Part #'s: HI.R4300.001, DS09225B12UP021.
  14024.  
  14025. Compatible Models:
  14026. Acer Altos AT1...</p>
  14027.  
  14028.            
  14029.              <a
  14030.                href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  14031.                class="productitem--link"
  14032.                data-product-page-link
  14033.              >
  14034.                View full details
  14035.              </a>
  14036.            
  14037.          </div>
  14038.        
  14039.      </div>
  14040.  
  14041.      
  14042.        
  14043.          
  14044.          
  14045.          
  14046.  
  14047.          
  14048.          
  14049.  
  14050.          
  14051.  
  14052.          
  14053.  
  14054.          <div class="productitem--actions" data-product-actions>
  14055.            <div class="productitem--listview-price">
  14056.              
  14057.  
  14058.  
  14059.  
  14060.  
  14061.  
  14062.  
  14063.  
  14064.  
  14065.  
  14066.  
  14067.  
  14068.  
  14069.  
  14070.  
  14071.  
  14072.  
  14073.  
  14074.  
  14075.  
  14076.  
  14077.  
  14078.  
  14079.  
  14080.  
  14081.  
  14082.  
  14083.  
  14084.  
  14085.  
  14086.  
  14087. <div class="price productitem__price ">
  14088.  
  14089.    <div
  14090.      class="price__compare-at visible"
  14091.      data-price-compare-container
  14092.    >
  14093.  
  14094.      
  14095.        <span class="money price__original" data-price-original></span>
  14096.      
  14097.    </div>
  14098.  
  14099.  
  14100.    
  14101.      
  14102.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14103.        
  14104.          <span class="visually-hidden">Original price</span>
  14105.          <span class="money price__compare-at--min" data-price-compare-min>
  14106.            $54.99
  14107.          </span>
  14108.          -
  14109.          <span class="visually-hidden">Original price</span>
  14110.          <span class="money price__compare-at--max" data-price-compare-max>
  14111.            $54.99
  14112.          </span>
  14113.        
  14114.      </div>
  14115.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14116.        <span class="visually-hidden">Original price</span>
  14117.        <span class="money price__compare-at--single" data-price-compare>
  14118.          
  14119.        </span>
  14120.      </div>
  14121.    
  14122.  
  14123.  
  14124.  <div class="price__current price__current--emphasize " data-price-container>
  14125.  
  14126.    
  14127.  
  14128.    
  14129.      
  14130.      
  14131.      <span class="money" data-price>
  14132.        $54.99
  14133.      </span>
  14134.    
  14135.    
  14136.  </div>
  14137.  
  14138.  
  14139.    
  14140.    <div class="price__current--hidden" data-current-price-range-hidden>
  14141.      
  14142.        <span class="money price__current--min" data-price-min>$54.99</span>
  14143.        -
  14144.        <span class="money price__current--max" data-price-max>$54.99</span>
  14145.      
  14146.    </div>
  14147.    <div class="price__current--hidden" data-current-price-hidden>
  14148.      <span class="visually-hidden">Current price</span>
  14149.      <span class="money" data-price>
  14150.        $54.99
  14151.      </span>
  14152.    </div>
  14153.  
  14154.  
  14155.  
  14156.    
  14157.    
  14158.    
  14159.    
  14160.  
  14161.    <div
  14162.      class="
  14163.        productitem__unit-price
  14164.        hidden
  14165.      "
  14166.      data-unit-price
  14167.    >
  14168.      <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>
  14169.    </div>
  14170.  
  14171.  
  14172.  
  14173. </div>
  14174.  
  14175.  
  14176.            </div>
  14177.  
  14178.            <div class="productitem--listview-badge">
  14179.              
  14180.  
  14181.  
  14182.  
  14183.  
  14184.  
  14185.  
  14186.  
  14187.  
  14188.  
  14189.  
  14190.  
  14191.  
  14192.  
  14193.  
  14194.  
  14195.  
  14196.  
  14197.  
  14198.  
  14199.  
  14200.  
  14201.  
  14202.  
  14203.  
  14204.  
  14205.  
  14206.  
  14207.            </div>
  14208.  
  14209.            
  14210.              <div
  14211.                class="
  14212.                  productitem--action
  14213.                  quickshop-button
  14214.                  
  14215.                "
  14216.              >
  14217.                <button
  14218.                  class="productitem--action-trigger button-secondary"
  14219.                  data-quickshop-full
  14220.                  
  14221.                  
  14222.                  type="button"
  14223.                >
  14224.                  Quick shop
  14225.                </button>
  14226.              </div>
  14227.            
  14228.  
  14229.            
  14230.              <div
  14231.                class="
  14232.                  productitem--action
  14233.                  atc--button
  14234.                  
  14235.                "
  14236.              >
  14237.                <button
  14238.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14239.                  type="button"
  14240.                  aria-label="Add to cart"
  14241.                  
  14242.                    data-quick-buy
  14243.                  
  14244.                  data-variant-id="29507473014871"
  14245.                  
  14246.                >
  14247.                  <span class="atc-button--text">
  14248.                    Add to cart
  14249.                  </span>
  14250.                  <span class="atc-button--icon"><svg
  14251.  aria-hidden="true"
  14252.  focusable="false"
  14253.  role="presentation"
  14254.  width="26"
  14255.  height="26"
  14256.  viewBox="0 0 26 26"
  14257.  xmlns="http://www.w3.org/2000/svg"
  14258. >
  14259.  <g fill-rule="nonzero" fill="currentColor">
  14260.    <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"/>
  14261.  </g>
  14262. </svg></span>
  14263.                </button>
  14264.              </div>
  14265.            
  14266.          </div>
  14267.        
  14268.      
  14269.    </div>
  14270.  </div>
  14271.  
  14272.  
  14273.    <script type="application/json" data-quick-buy-settings>
  14274.      {
  14275.        "cart_redirection": true,
  14276.        "money_format": "${{amount}}"
  14277.      }
  14278.    </script>
  14279.  
  14280. </li>
  14281.    
  14282.      
  14283.  
  14284.  
  14285.  
  14286.  
  14287.  
  14288.  
  14289.  
  14290.  
  14291.  
  14292.  
  14293.  
  14294.  
  14295.  
  14296.  
  14297.  
  14298.  
  14299.  
  14300.  
  14301.  
  14302.  
  14303.  
  14304.  
  14305.  
  14306.  
  14307.  
  14308.  
  14309.  
  14310.  
  14311.  
  14312.  
  14313.  
  14314.  
  14315.    
  14316.  
  14317.  
  14318.  
  14319. <li
  14320.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14321.  data-product-item
  14322.  data-product-quickshop-url="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14323.  
  14324. >
  14325.  <div class="productitem" data-product-item-content>
  14326.    
  14327.    
  14328.    
  14329.    
  14330.  
  14331.    
  14332.  
  14333.    
  14334.  
  14335.    <div class="productitem__container">
  14336.      
  14337.  
  14338.      <div class="productitem__image-container">
  14339.        <a target="_blank"
  14340.          class="productitem--image-link"
  14341.          href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14342.          aria-label="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14343.          tabindex="-1"
  14344.          data-product-page-link
  14345.        >
  14346.          <figure
  14347.            class="productitem--image"
  14348.            data-product-item-image
  14349.            
  14350.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14351.            
  14352.          >
  14353.            
  14354.              
  14355.              
  14356.  
  14357.  
  14358.    <noscript data-rimg-noscript>
  14359.      <img loading="lazy"
  14360.        
  14361.          src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14362.        
  14363.  
  14364.        alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14365.        data-rimg="noscript"
  14366.        srcset="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372 1x"
  14367.        class="productitem--image-primary"
  14368.        
  14369.        
  14370.      >
  14371.    </noscript>
  14372.  
  14373.  
  14374.  <img loading="lazy"
  14375.    
  14376.      src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14377.    
  14378.    alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14379.  
  14380.    
  14381.      data-rimg="lazy"
  14382.      data-rimg-scale="1"
  14383.      data-rimg-template="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_{size}.jpg?v=1715271372"
  14384.      data-rimg-max="500x500"
  14385.      data-rimg-crop="false"
  14386.      
  14387.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14388.    
  14389.  
  14390.    class="productitem--image-primary"
  14391.    
  14392.    
  14393.  >
  14394.  
  14395.  
  14396.  
  14397.  <div data-rimg-canvas></div>
  14398.  
  14399.  
  14400.            
  14401.  
  14402.            
  14403.  
  14404.  
  14405.  
  14406.  
  14407.  
  14408.  
  14409.  
  14410.  
  14411.  
  14412.  
  14413.  
  14414.  
  14415.  
  14416.  
  14417.  
  14418.  
  14419.  
  14420.  
  14421.  
  14422.  
  14423.  
  14424.  
  14425.  
  14426.  
  14427.  
  14428.  
  14429.  
  14430.          </figure>
  14431.        </a>
  14432.      </div><div class="productitem--info">
  14433.        
  14434.          
  14435.  
  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.  
  14465.  
  14466.  
  14467.  
  14468.  
  14469.  
  14470. <div class="price productitem__price ">
  14471.  
  14472.    <div
  14473.      class="price__compare-at visible"
  14474.      data-price-compare-container
  14475.    >
  14476.  
  14477.      
  14478.        <span class="money price__original" data-price-original></span>
  14479.      
  14480.    </div>
  14481.  
  14482.  
  14483.    
  14484.      
  14485.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14486.        
  14487.          <span class="visually-hidden">Original price</span>
  14488.          <span class="money price__compare-at--min" data-price-compare-min>
  14489.            $106.99
  14490.          </span>
  14491.          -
  14492.          <span class="visually-hidden">Original price</span>
  14493.          <span class="money price__compare-at--max" data-price-compare-max>
  14494.            $106.99
  14495.          </span>
  14496.        
  14497.      </div>
  14498.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14499.        <span class="visually-hidden">Original price</span>
  14500.        <span class="money price__compare-at--single" data-price-compare>
  14501.          
  14502.        </span>
  14503.      </div>
  14504.    
  14505.  
  14506.  
  14507.  <div class="price__current price__current--emphasize " data-price-container>
  14508.  
  14509.    
  14510.  
  14511.    
  14512.      
  14513.      
  14514.      <span class="money" data-price>
  14515.        $106.99
  14516.      </span>
  14517.    
  14518.    
  14519.  </div>
  14520.  
  14521.  
  14522.    
  14523.    <div class="price__current--hidden" data-current-price-range-hidden>
  14524.      
  14525.        <span class="money price__current--min" data-price-min>$106.99</span>
  14526.        -
  14527.        <span class="money price__current--max" data-price-max>$106.99</span>
  14528.      
  14529.    </div>
  14530.    <div class="price__current--hidden" data-current-price-hidden>
  14531.      <span class="visually-hidden">Current price</span>
  14532.      <span class="money" data-price>
  14533.        $106.99
  14534.      </span>
  14535.    </div>
  14536.  
  14537.  
  14538.  
  14539.    
  14540.    
  14541.    
  14542.    
  14543.  
  14544.    <div
  14545.      class="
  14546.        productitem__unit-price
  14547.        hidden
  14548.      "
  14549.      data-unit-price
  14550.    >
  14551.      <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>
  14552.    </div>
  14553.  
  14554.  
  14555.  
  14556. </div>
  14557.  
  14558.  
  14559.        
  14560.  
  14561.        <h2 class="productitem--title">
  14562.          <a href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  14563.            Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual
  14564.          </a>
  14565.        </h2>
  14566.  
  14567.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  14568.        <div class="star_container 4451279622"></div>
  14569.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  14570.  
  14571.        
  14572.          
  14573.            <span class="productitem--vendor">
  14574.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  14575.            </span>
  14576.          
  14577.        
  14578.  
  14579.        
  14580.  
  14581.        
  14582.          
  14583.            <div class="productitem__stock-level">
  14584.              <!--
  14585.  
  14586.  
  14587.  
  14588.  
  14589.  
  14590.  
  14591.  
  14592. <div class="product-stock-level-wrapper" >
  14593.  
  14594.    <span class="
  14595.  product-stock-level
  14596.  product-stock-level--continue-selling
  14597.  
  14598. ">
  14599.      
  14600.  
  14601.      <span class="product-stock-level__text">
  14602.        
  14603.        <div class="product-stock-level__badge-text">
  14604.          
  14605.  
  14606.    In stock
  14607.  
  14608.  
  14609.        </div>
  14610.      </span>
  14611.    </span>
  14612.  
  14613. </div>
  14614. -->
  14615.              
  14616.  
  14617.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  14618.  
  14619.  
  14620.  
  14621.  
  14622.  
  14623.  
  14624.  
  14625.            </div>
  14626.          
  14627.  
  14628.          
  14629.            
  14630.          
  14631.        
  14632.  
  14633.        
  14634.          <div class="productitem--description">
  14635.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  14636.  
  14637.            
  14638.              <a
  14639.                href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14640.                class="productitem--link"
  14641.                data-product-page-link
  14642.              >
  14643.                View full details
  14644.              </a>
  14645.            
  14646.          </div>
  14647.        
  14648.      </div>
  14649.  
  14650.      
  14651.        
  14652.          
  14653.          
  14654.          
  14655.  
  14656.          
  14657.          
  14658.  
  14659.          
  14660.  
  14661.          
  14662.  
  14663.          <div class="productitem--actions" data-product-actions>
  14664.            <div class="productitem--listview-price">
  14665.              
  14666.  
  14667.  
  14668.  
  14669.  
  14670.  
  14671.  
  14672.  
  14673.  
  14674.  
  14675.  
  14676.  
  14677.  
  14678.  
  14679.  
  14680.  
  14681.  
  14682.  
  14683.  
  14684.  
  14685.  
  14686.  
  14687.  
  14688.  
  14689.  
  14690.  
  14691.  
  14692.  
  14693.  
  14694.  
  14695.  
  14696. <div class="price productitem__price ">
  14697.  
  14698.    <div
  14699.      class="price__compare-at visible"
  14700.      data-price-compare-container
  14701.    >
  14702.  
  14703.      
  14704.        <span class="money price__original" data-price-original></span>
  14705.      
  14706.    </div>
  14707.  
  14708.  
  14709.    
  14710.      
  14711.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14712.        
  14713.          <span class="visually-hidden">Original price</span>
  14714.          <span class="money price__compare-at--min" data-price-compare-min>
  14715.            $106.99
  14716.          </span>
  14717.          -
  14718.          <span class="visually-hidden">Original price</span>
  14719.          <span class="money price__compare-at--max" data-price-compare-max>
  14720.            $106.99
  14721.          </span>
  14722.        
  14723.      </div>
  14724.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14725.        <span class="visually-hidden">Original price</span>
  14726.        <span class="money price__compare-at--single" data-price-compare>
  14727.          
  14728.        </span>
  14729.      </div>
  14730.    
  14731.  
  14732.  
  14733.  <div class="price__current price__current--emphasize " data-price-container>
  14734.  
  14735.    
  14736.  
  14737.    
  14738.      
  14739.      
  14740.      <span class="money" data-price>
  14741.        $106.99
  14742.      </span>
  14743.    
  14744.    
  14745.  </div>
  14746.  
  14747.  
  14748.    
  14749.    <div class="price__current--hidden" data-current-price-range-hidden>
  14750.      
  14751.        <span class="money price__current--min" data-price-min>$106.99</span>
  14752.        -
  14753.        <span class="money price__current--max" data-price-max>$106.99</span>
  14754.      
  14755.    </div>
  14756.    <div class="price__current--hidden" data-current-price-hidden>
  14757.      <span class="visually-hidden">Current price</span>
  14758.      <span class="money" data-price>
  14759.        $106.99
  14760.      </span>
  14761.    </div>
  14762.  
  14763.  
  14764.  
  14765.    
  14766.    
  14767.    
  14768.    
  14769.  
  14770.    <div
  14771.      class="
  14772.        productitem__unit-price
  14773.        hidden
  14774.      "
  14775.      data-unit-price
  14776.    >
  14777.      <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>
  14778.    </div>
  14779.  
  14780.  
  14781.  
  14782. </div>
  14783.  
  14784.  
  14785.            </div>
  14786.  
  14787.            <div class="productitem--listview-badge">
  14788.              
  14789.  
  14790.  
  14791.  
  14792.  
  14793.  
  14794.  
  14795.  
  14796.  
  14797.  
  14798.  
  14799.  
  14800.  
  14801.  
  14802.  
  14803.  
  14804.  
  14805.  
  14806.  
  14807.  
  14808.  
  14809.  
  14810.  
  14811.  
  14812.  
  14813.  
  14814.  
  14815.  
  14816.            </div>
  14817.  
  14818.            
  14819.              <div
  14820.                class="
  14821.                  productitem--action
  14822.                  quickshop-button
  14823.                  
  14824.                "
  14825.              >
  14826.                <button
  14827.                  class="productitem--action-trigger button-secondary"
  14828.                  data-quickshop-full
  14829.                  
  14830.                  
  14831.                  type="button"
  14832.                >
  14833.                  Quick shop
  14834.                </button>
  14835.              </div>
  14836.            
  14837.  
  14838.            
  14839.              <div
  14840.                class="
  14841.                  productitem--action
  14842.                  atc--button
  14843.                  
  14844.                "
  14845.              >
  14846.                <button
  14847.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14848.                  type="button"
  14849.                  aria-label="Add to cart"
  14850.                  
  14851.                    data-quick-buy
  14852.                  
  14853.                  data-variant-id="39666365366359"
  14854.                  
  14855.                >
  14856.                  <span class="atc-button--text">
  14857.                    Add to cart
  14858.                  </span>
  14859.                  <span class="atc-button--icon"><svg
  14860.  aria-hidden="true"
  14861.  focusable="false"
  14862.  role="presentation"
  14863.  width="26"
  14864.  height="26"
  14865.  viewBox="0 0 26 26"
  14866.  xmlns="http://www.w3.org/2000/svg"
  14867. >
  14868.  <g fill-rule="nonzero" fill="currentColor">
  14869.    <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"/>
  14870.  </g>
  14871. </svg></span>
  14872.                </button>
  14873.              </div>
  14874.            
  14875.          </div>
  14876.        
  14877.      
  14878.    </div>
  14879.  </div>
  14880.  
  14881.  
  14882.    <script type="application/json" data-quick-buy-settings>
  14883.      {
  14884.        "cart_redirection": true,
  14885.        "money_format": "${{amount}}"
  14886.      }
  14887.    </script>
  14888.  
  14889. </li>
  14890.    
  14891.      
  14892.  
  14893.  
  14894.  
  14895.  
  14896.  
  14897.  
  14898.  
  14899.  
  14900.  
  14901.  
  14902.  
  14903.  
  14904.  
  14905.  
  14906.  
  14907.  
  14908.  
  14909.  
  14910.  
  14911.  
  14912.  
  14913.  
  14914.  
  14915.  
  14916.  
  14917.  
  14918.  
  14919.  
  14920.  
  14921.  
  14922.  
  14923.  
  14924.    
  14925.  
  14926.  
  14927.  
  14928. <li
  14929.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14930.  data-product-item
  14931.  data-product-quickshop-url="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14932.  
  14933. >
  14934.  <div class="productitem" data-product-item-content>
  14935.    
  14936.    
  14937.    
  14938.    
  14939.  
  14940.    
  14941.  
  14942.    
  14943.  
  14944.    <div class="productitem__container">
  14945.      
  14946.  
  14947.      <div class="productitem__image-container">
  14948.        <a target="_blank"
  14949.          class="productitem--image-link"
  14950.          href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14951.          aria-label="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14952.          tabindex="-1"
  14953.          data-product-page-link
  14954.        >
  14955.          <figure
  14956.            class="productitem--image"
  14957.            data-product-item-image
  14958.            
  14959.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14960.            
  14961.          >
  14962.            
  14963.              
  14964.              
  14965.  
  14966.  
  14967.    <noscript data-rimg-noscript>
  14968.      <img loading="lazy"
  14969.        
  14970.          src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14971.        
  14972.  
  14973.        alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14974.        data-rimg="noscript"
  14975.        srcset="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378 1x"
  14976.        class="productitem--image-primary"
  14977.        
  14978.        
  14979.      >
  14980.    </noscript>
  14981.  
  14982.  
  14983.  <img loading="lazy"
  14984.    
  14985.      src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14986.    
  14987.    alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14988.  
  14989.    
  14990.      data-rimg="lazy"
  14991.      data-rimg-scale="1"
  14992.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_{size}.jpg?v=1715271378"
  14993.      data-rimg-max="500x500"
  14994.      data-rimg-crop="false"
  14995.      
  14996.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14997.    
  14998.  
  14999.    class="productitem--image-primary"
  15000.    
  15001.    
  15002.  >
  15003.  
  15004.  
  15005.  
  15006.  <div data-rimg-canvas></div>
  15007.  
  15008.  
  15009.            
  15010.  
  15011.            
  15012.  
  15013.  
  15014.  
  15015.  
  15016.  
  15017.  
  15018.  
  15019.  
  15020.  
  15021.  
  15022.  
  15023.  
  15024.  
  15025.  
  15026.  
  15027.  
  15028.  
  15029.  
  15030.  
  15031.  
  15032.  
  15033.  
  15034.  
  15035.  
  15036.  
  15037.  
  15038.  
  15039.          </figure>
  15040.        </a>
  15041.      </div><div class="productitem--info">
  15042.        
  15043.          
  15044.  
  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.  
  15074.  
  15075.  
  15076.  
  15077.  
  15078.  
  15079. <div class="price productitem__price ">
  15080.  
  15081.    <div
  15082.      class="price__compare-at visible"
  15083.      data-price-compare-container
  15084.    >
  15085.  
  15086.      
  15087.        <span class="money price__original" data-price-original></span>
  15088.      
  15089.    </div>
  15090.  
  15091.  
  15092.    
  15093.      
  15094.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15095.        
  15096.          <span class="visually-hidden">Original price</span>
  15097.          <span class="money price__compare-at--min" data-price-compare-min>
  15098.            $106.99
  15099.          </span>
  15100.          -
  15101.          <span class="visually-hidden">Original price</span>
  15102.          <span class="money price__compare-at--max" data-price-compare-max>
  15103.            $106.99
  15104.          </span>
  15105.        
  15106.      </div>
  15107.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15108.        <span class="visually-hidden">Original price</span>
  15109.        <span class="money price__compare-at--single" data-price-compare>
  15110.          
  15111.        </span>
  15112.      </div>
  15113.    
  15114.  
  15115.  
  15116.  <div class="price__current price__current--emphasize " data-price-container>
  15117.  
  15118.    
  15119.  
  15120.    
  15121.      
  15122.      
  15123.      <span class="money" data-price>
  15124.        $106.99
  15125.      </span>
  15126.    
  15127.    
  15128.  </div>
  15129.  
  15130.  
  15131.    
  15132.    <div class="price__current--hidden" data-current-price-range-hidden>
  15133.      
  15134.        <span class="money price__current--min" data-price-min>$106.99</span>
  15135.        -
  15136.        <span class="money price__current--max" data-price-max>$106.99</span>
  15137.      
  15138.    </div>
  15139.    <div class="price__current--hidden" data-current-price-hidden>
  15140.      <span class="visually-hidden">Current price</span>
  15141.      <span class="money" data-price>
  15142.        $106.99
  15143.      </span>
  15144.    </div>
  15145.  
  15146.  
  15147.  
  15148.    
  15149.    
  15150.    
  15151.    
  15152.  
  15153.    <div
  15154.      class="
  15155.        productitem__unit-price
  15156.        hidden
  15157.      "
  15158.      data-unit-price
  15159.    >
  15160.      <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>
  15161.    </div>
  15162.  
  15163.  
  15164.  
  15165. </div>
  15166.  
  15167.  
  15168.        
  15169.  
  15170.        <h2 class="productitem--title">
  15171.          <a href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  15172.            Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual
  15173.          </a>
  15174.        </h2>
  15175.  
  15176.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15177.        <div class="star_container 4451280006"></div>
  15178.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15179.  
  15180.        
  15181.          
  15182.            <span class="productitem--vendor">
  15183.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15184.            </span>
  15185.          
  15186.        
  15187.  
  15188.        
  15189.  
  15190.        
  15191.          
  15192.            <div class="productitem__stock-level">
  15193.              <!--
  15194.  
  15195.  
  15196.  
  15197.  
  15198.  
  15199.  
  15200.  
  15201. <div class="product-stock-level-wrapper" >
  15202.  
  15203.    <span class="
  15204.  product-stock-level
  15205.  product-stock-level--continue-selling
  15206.  
  15207. ">
  15208.      
  15209.  
  15210.      <span class="product-stock-level__text">
  15211.        
  15212.        <div class="product-stock-level__badge-text">
  15213.          
  15214.  
  15215.    In stock
  15216.  
  15217.  
  15218.        </div>
  15219.      </span>
  15220.    </span>
  15221.  
  15222. </div>
  15223. -->
  15224.              
  15225.  
  15226.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  15227.  
  15228.  
  15229.  
  15230.  
  15231.  
  15232.  
  15233.  
  15234.            </div>
  15235.          
  15236.  
  15237.          
  15238.            
  15239.          
  15240.        
  15241.  
  15242.        
  15243.          <div class="productitem--description">
  15244.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  15245.  
  15246.            
  15247.              <a
  15248.                href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  15249.                class="productitem--link"
  15250.                data-product-page-link
  15251.              >
  15252.                View full details
  15253.              </a>
  15254.            
  15255.          </div>
  15256.        
  15257.      </div>
  15258.  
  15259.      
  15260.        
  15261.          
  15262.          
  15263.          
  15264.  
  15265.          
  15266.          
  15267.  
  15268.          
  15269.  
  15270.          
  15271.  
  15272.          <div class="productitem--actions" data-product-actions>
  15273.            <div class="productitem--listview-price">
  15274.              
  15275.  
  15276.  
  15277.  
  15278.  
  15279.  
  15280.  
  15281.  
  15282.  
  15283.  
  15284.  
  15285.  
  15286.  
  15287.  
  15288.  
  15289.  
  15290.  
  15291.  
  15292.  
  15293.  
  15294.  
  15295.  
  15296.  
  15297.  
  15298.  
  15299.  
  15300.  
  15301.  
  15302.  
  15303.  
  15304.  
  15305. <div class="price productitem__price ">
  15306.  
  15307.    <div
  15308.      class="price__compare-at visible"
  15309.      data-price-compare-container
  15310.    >
  15311.  
  15312.      
  15313.        <span class="money price__original" data-price-original></span>
  15314.      
  15315.    </div>
  15316.  
  15317.  
  15318.    
  15319.      
  15320.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15321.        
  15322.          <span class="visually-hidden">Original price</span>
  15323.          <span class="money price__compare-at--min" data-price-compare-min>
  15324.            $106.99
  15325.          </span>
  15326.          -
  15327.          <span class="visually-hidden">Original price</span>
  15328.          <span class="money price__compare-at--max" data-price-compare-max>
  15329.            $106.99
  15330.          </span>
  15331.        
  15332.      </div>
  15333.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15334.        <span class="visually-hidden">Original price</span>
  15335.        <span class="money price__compare-at--single" data-price-compare>
  15336.          
  15337.        </span>
  15338.      </div>
  15339.    
  15340.  
  15341.  
  15342.  <div class="price__current price__current--emphasize " data-price-container>
  15343.  
  15344.    
  15345.  
  15346.    
  15347.      
  15348.      
  15349.      <span class="money" data-price>
  15350.        $106.99
  15351.      </span>
  15352.    
  15353.    
  15354.  </div>
  15355.  
  15356.  
  15357.    
  15358.    <div class="price__current--hidden" data-current-price-range-hidden>
  15359.      
  15360.        <span class="money price__current--min" data-price-min>$106.99</span>
  15361.        -
  15362.        <span class="money price__current--max" data-price-max>$106.99</span>
  15363.      
  15364.    </div>
  15365.    <div class="price__current--hidden" data-current-price-hidden>
  15366.      <span class="visually-hidden">Current price</span>
  15367.      <span class="money" data-price>
  15368.        $106.99
  15369.      </span>
  15370.    </div>
  15371.  
  15372.  
  15373.  
  15374.    
  15375.    
  15376.    
  15377.    
  15378.  
  15379.    <div
  15380.      class="
  15381.        productitem__unit-price
  15382.        hidden
  15383.      "
  15384.      data-unit-price
  15385.    >
  15386.      <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>
  15387.    </div>
  15388.  
  15389.  
  15390.  
  15391. </div>
  15392.  
  15393.  
  15394.            </div>
  15395.  
  15396.            <div class="productitem--listview-badge">
  15397.              
  15398.  
  15399.  
  15400.  
  15401.  
  15402.  
  15403.  
  15404.  
  15405.  
  15406.  
  15407.  
  15408.  
  15409.  
  15410.  
  15411.  
  15412.  
  15413.  
  15414.  
  15415.  
  15416.  
  15417.  
  15418.  
  15419.  
  15420.  
  15421.  
  15422.  
  15423.  
  15424.  
  15425.            </div>
  15426.  
  15427.            
  15428.              <div
  15429.                class="
  15430.                  productitem--action
  15431.                  quickshop-button
  15432.                  
  15433.                "
  15434.              >
  15435.                <button
  15436.                  class="productitem--action-trigger button-secondary"
  15437.                  data-quickshop-full
  15438.                  
  15439.                  
  15440.                  type="button"
  15441.                >
  15442.                  Quick shop
  15443.                </button>
  15444.              </div>
  15445.            
  15446.  
  15447.            
  15448.              <div
  15449.                class="
  15450.                  productitem--action
  15451.                  atc--button
  15452.                  
  15453.                "
  15454.              >
  15455.                <button
  15456.                  class="productitem--action-trigger productitem--action-atc button-primary"
  15457.                  type="button"
  15458.                  aria-label="Add to cart"
  15459.                  
  15460.                    data-quick-buy
  15461.                  
  15462.                  data-variant-id="39666365268055"
  15463.                  
  15464.                >
  15465.                  <span class="atc-button--text">
  15466.                    Add to cart
  15467.                  </span>
  15468.                  <span class="atc-button--icon"><svg
  15469.  aria-hidden="true"
  15470.  focusable="false"
  15471.  role="presentation"
  15472.  width="26"
  15473.  height="26"
  15474.  viewBox="0 0 26 26"
  15475.  xmlns="http://www.w3.org/2000/svg"
  15476. >
  15477.  <g fill-rule="nonzero" fill="currentColor">
  15478.    <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"/>
  15479.  </g>
  15480. </svg></span>
  15481.                </button>
  15482.              </div>
  15483.            
  15484.          </div>
  15485.        
  15486.      
  15487.    </div>
  15488.  </div>
  15489.  
  15490.  
  15491.    <script type="application/json" data-quick-buy-settings>
  15492.      {
  15493.        "cart_redirection": true,
  15494.        "money_format": "${{amount}}"
  15495.      }
  15496.    </script>
  15497.  
  15498. </li>
  15499.    
  15500.      
  15501.  
  15502.  
  15503.  
  15504.  
  15505.  
  15506.  
  15507.  
  15508.  
  15509.  
  15510.  
  15511.  
  15512.  
  15513.  
  15514.  
  15515.  
  15516.  
  15517.  
  15518.  
  15519.  
  15520.  
  15521.  
  15522.  
  15523.  
  15524.  
  15525.  
  15526.  
  15527.  
  15528.  
  15529.  
  15530.  
  15531.  
  15532.  
  15533.    
  15534.  
  15535.  
  15536.  
  15537. <li
  15538.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  15539.  data-product-item
  15540.  data-product-quickshop-url="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15541.  
  15542. >
  15543.  <div class="productitem" data-product-item-content>
  15544.    
  15545.    
  15546.    
  15547.    
  15548.  
  15549.    
  15550.  
  15551.    
  15552.  
  15553.    <div class="productitem__container">
  15554.      
  15555.  
  15556.      <div class="productitem__image-container">
  15557.        <a target="_blank"
  15558.          class="productitem--image-link"
  15559.          href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15560.          aria-label="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15561.          tabindex="-1"
  15562.          data-product-page-link
  15563.        >
  15564.          <figure
  15565.            class="productitem--image"
  15566.            data-product-item-image
  15567.            
  15568.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  15569.            
  15570.          >
  15571.            
  15572.              
  15573.              
  15574.  
  15575.  
  15576.    <noscript data-rimg-noscript>
  15577.      <img loading="lazy"
  15578.        
  15579.          src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1759441297"
  15580.        
  15581.  
  15582.        alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15583.        data-rimg="noscript"
  15584.        srcset="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1759441297 1x"
  15585.        class="productitem--image-primary"
  15586.        
  15587.        
  15588.      >
  15589.    </noscript>
  15590.  
  15591.  
  15592.  <img loading="lazy"
  15593.    
  15594.      src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1759441297"
  15595.    
  15596.    alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15597.  
  15598.    
  15599.      data-rimg="lazy"
  15600.      data-rimg-scale="1"
  15601.      data-rimg-template="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_{size}.jpg?v=1759441297"
  15602.      data-rimg-max="500x500"
  15603.      data-rimg-crop="false"
  15604.      
  15605.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  15606.    
  15607.  
  15608.    class="productitem--image-primary"
  15609.    
  15610.    
  15611.  >
  15612.  
  15613.  
  15614.  
  15615.  <div data-rimg-canvas></div>
  15616.  
  15617.  
  15618.            
  15619.  
  15620.            
  15621.  
  15622.  
  15623.  
  15624.  
  15625.  
  15626.  
  15627.  
  15628.  
  15629.  
  15630.  
  15631.  
  15632.  
  15633.  
  15634.  
  15635.  
  15636.  
  15637.  
  15638.  
  15639.  
  15640.  
  15641.  
  15642.  
  15643.  
  15644.  
  15645.  
  15646.  
  15647.  
  15648.          </figure>
  15649.        </a>
  15650.      </div><div class="productitem--info">
  15651.        
  15652.          
  15653.  
  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.  
  15683.  
  15684.  
  15685.  
  15686.  
  15687.  
  15688. <div class="price productitem__price ">
  15689.  
  15690.    <div
  15691.      class="price__compare-at visible"
  15692.      data-price-compare-container
  15693.    >
  15694.  
  15695.      
  15696.        <span class="money price__original" data-price-original></span>
  15697.      
  15698.    </div>
  15699.  
  15700.  
  15701.    
  15702.      
  15703.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15704.        
  15705.          <span class="visually-hidden">Original price</span>
  15706.          <span class="money price__compare-at--min" data-price-compare-min>
  15707.            $86.99
  15708.          </span>
  15709.          -
  15710.          <span class="visually-hidden">Original price</span>
  15711.          <span class="money price__compare-at--max" data-price-compare-max>
  15712.            $86.99
  15713.          </span>
  15714.        
  15715.      </div>
  15716.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15717.        <span class="visually-hidden">Original price</span>
  15718.        <span class="money price__compare-at--single" data-price-compare>
  15719.          
  15720.        </span>
  15721.      </div>
  15722.    
  15723.  
  15724.  
  15725.  <div class="price__current price__current--emphasize " data-price-container>
  15726.  
  15727.    
  15728.  
  15729.    
  15730.      
  15731.      
  15732.      <span class="money" data-price>
  15733.        $86.99
  15734.      </span>
  15735.    
  15736.    
  15737.  </div>
  15738.  
  15739.  
  15740.    
  15741.    <div class="price__current--hidden" data-current-price-range-hidden>
  15742.      
  15743.        <span class="money price__current--min" data-price-min>$86.99</span>
  15744.        -
  15745.        <span class="money price__current--max" data-price-max>$86.99</span>
  15746.      
  15747.    </div>
  15748.    <div class="price__current--hidden" data-current-price-hidden>
  15749.      <span class="visually-hidden">Current price</span>
  15750.      <span class="money" data-price>
  15751.        $86.99
  15752.      </span>
  15753.    </div>
  15754.  
  15755.  
  15756.  
  15757.    
  15758.    
  15759.    
  15760.    
  15761.  
  15762.    <div
  15763.      class="
  15764.        productitem__unit-price
  15765.        hidden
  15766.      "
  15767.      data-unit-price
  15768.    >
  15769.      <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>
  15770.    </div>
  15771.  
  15772.  
  15773.  
  15774. </div>
  15775.  
  15776.  
  15777.        
  15778.  
  15779.        <h2 class="productitem--title">
  15780.          <a href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m" data-product-page-link>
  15781.            Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M
  15782.          </a>
  15783.        </h2>
  15784.  
  15785.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15786.        <div class="star_container 4451281286"></div>
  15787.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15788.  
  15789.        
  15790.          
  15791.            <span class="productitem--vendor">
  15792.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15793.            </span>
  15794.          
  15795.        
  15796.  
  15797.        
  15798.  
  15799.        
  15800.          
  15801.            <div class="productitem__stock-level">
  15802.              <!--
  15803.  
  15804.  
  15805.  
  15806.  
  15807.  
  15808.  
  15809.  
  15810. <div class="product-stock-level-wrapper" >
  15811.  
  15812.    <span class="
  15813.  product-stock-level
  15814.  product-stock-level--continue-selling
  15815.  
  15816. ">
  15817.      
  15818.  
  15819.      <span class="product-stock-level__text">
  15820.        
  15821.        <div class="product-stock-level__badge-text">
  15822.          
  15823.  
  15824.    In stock
  15825.  
  15826.  
  15827.        </div>
  15828.      </span>
  15829.    </span>
  15830.  
  15831. </div>
  15832. -->
  15833.              
  15834.  
  15835.  
  15836.    
  15837.      <b style="color:green">In stock</b>
  15838.    
  15839.  
  15840.  
  15841.  
  15842.  
  15843.  
  15844.  
  15845.  
  15846.            </div>
  15847.          
  15848.  
  15849.          
  15850.            
  15851.          
  15852.        
  15853.  
  15854.        
  15855.          <div class="productitem--description">
  15856.            <p>Description: New genuine Acer laptop replacement keyboard. Canadian Bilingual layout. Part #'s: KB.I140A.114, KBI140A114, NSK-AM02M, 9J.N1P82.02M. ...</p>
  15857.  
  15858.            
  15859.              <a
  15860.                href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15861.                class="productitem--link"
  15862.                data-product-page-link
  15863.              >
  15864.                View full details
  15865.              </a>
  15866.            
  15867.          </div>
  15868.        
  15869.      </div>
  15870.  
  15871.      
  15872.        
  15873.          
  15874.          
  15875.          
  15876.  
  15877.          
  15878.          
  15879.  
  15880.          
  15881.  
  15882.          
  15883.  
  15884.          <div class="productitem--actions" data-product-actions>
  15885.            <div class="productitem--listview-price">
  15886.              
  15887.  
  15888.  
  15889.  
  15890.  
  15891.  
  15892.  
  15893.  
  15894.  
  15895.  
  15896.  
  15897.  
  15898.  
  15899.  
  15900.  
  15901.  
  15902.  
  15903.  
  15904.  
  15905.  
  15906.  
  15907.  
  15908.  
  15909.  
  15910.  
  15911.  
  15912.  
  15913.  
  15914.  
  15915.  
  15916.  
  15917. <div class="price productitem__price ">
  15918.  
  15919.    <div
  15920.      class="price__compare-at visible"
  15921.      data-price-compare-container
  15922.    >
  15923.  
  15924.      
  15925.        <span class="money price__original" data-price-original></span>
  15926.      
  15927.    </div>
  15928.  
  15929.  
  15930.    
  15931.      
  15932.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15933.        
  15934.          <span class="visually-hidden">Original price</span>
  15935.          <span class="money price__compare-at--min" data-price-compare-min>
  15936.            $86.99
  15937.          </span>
  15938.          -
  15939.          <span class="visually-hidden">Original price</span>
  15940.          <span class="money price__compare-at--max" data-price-compare-max>
  15941.            $86.99
  15942.          </span>
  15943.        
  15944.      </div>
  15945.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15946.        <span class="visually-hidden">Original price</span>
  15947.        <span class="money price__compare-at--single" data-price-compare>
  15948.          
  15949.        </span>
  15950.      </div>
  15951.    
  15952.  
  15953.  
  15954.  <div class="price__current price__current--emphasize " data-price-container>
  15955.  
  15956.    
  15957.  
  15958.    
  15959.      
  15960.      
  15961.      <span class="money" data-price>
  15962.        $86.99
  15963.      </span>
  15964.    
  15965.    
  15966.  </div>
  15967.  
  15968.  
  15969.    
  15970.    <div class="price__current--hidden" data-current-price-range-hidden>
  15971.      
  15972.        <span class="money price__current--min" data-price-min>$86.99</span>
  15973.        -
  15974.        <span class="money price__current--max" data-price-max>$86.99</span>
  15975.      
  15976.    </div>
  15977.    <div class="price__current--hidden" data-current-price-hidden>
  15978.      <span class="visually-hidden">Current price</span>
  15979.      <span class="money" data-price>
  15980.        $86.99
  15981.      </span>
  15982.    </div>
  15983.  
  15984.  
  15985.  
  15986.    
  15987.    
  15988.    
  15989.    
  15990.  
  15991.    <div
  15992.      class="
  15993.        productitem__unit-price
  15994.        hidden
  15995.      "
  15996.      data-unit-price
  15997.    >
  15998.      <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>
  15999.    </div>
  16000.  
  16001.  
  16002.  
  16003. </div>
  16004.  
  16005.  
  16006.            </div>
  16007.  
  16008.            <div class="productitem--listview-badge">
  16009.              
  16010.  
  16011.  
  16012.  
  16013.  
  16014.  
  16015.  
  16016.  
  16017.  
  16018.  
  16019.  
  16020.  
  16021.  
  16022.  
  16023.  
  16024.  
  16025.  
  16026.  
  16027.  
  16028.  
  16029.  
  16030.  
  16031.  
  16032.  
  16033.  
  16034.  
  16035.  
  16036.  
  16037.            </div>
  16038.  
  16039.            
  16040.              <div
  16041.                class="
  16042.                  productitem--action
  16043.                  quickshop-button
  16044.                  
  16045.                "
  16046.              >
  16047.                <button
  16048.                  class="productitem--action-trigger button-secondary"
  16049.                  data-quickshop-full
  16050.                  
  16051.                  
  16052.                  type="button"
  16053.                >
  16054.                  Quick shop
  16055.                </button>
  16056.              </div>
  16057.            
  16058.  
  16059.            
  16060.              <div
  16061.                class="
  16062.                  productitem--action
  16063.                  atc--button
  16064.                  
  16065.                "
  16066.              >
  16067.                <button
  16068.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16069.                  type="button"
  16070.                  aria-label="Add to cart"
  16071.                  
  16072.                    data-quick-buy
  16073.                  
  16074.                  data-variant-id="39666363793495"
  16075.                  
  16076.                >
  16077.                  <span class="atc-button--text">
  16078.                    Add to cart
  16079.                  </span>
  16080.                  <span class="atc-button--icon"><svg
  16081.  aria-hidden="true"
  16082.  focusable="false"
  16083.  role="presentation"
  16084.  width="26"
  16085.  height="26"
  16086.  viewBox="0 0 26 26"
  16087.  xmlns="http://www.w3.org/2000/svg"
  16088. >
  16089.  <g fill-rule="nonzero" fill="currentColor">
  16090.    <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"/>
  16091.  </g>
  16092. </svg></span>
  16093.                </button>
  16094.              </div>
  16095.            
  16096.          </div>
  16097.        
  16098.      
  16099.    </div>
  16100.  </div>
  16101.  
  16102.  
  16103.    <script type="application/json" data-quick-buy-settings>
  16104.      {
  16105.        "cart_redirection": true,
  16106.        "money_format": "${{amount}}"
  16107.      }
  16108.    </script>
  16109.  
  16110. </li>
  16111.    
  16112.      
  16113.  
  16114.  
  16115.  
  16116.  
  16117.  
  16118.  
  16119.  
  16120.  
  16121.  
  16122.  
  16123.  
  16124.  
  16125.  
  16126.  
  16127.  
  16128.  
  16129.  
  16130.  
  16131.  
  16132.  
  16133.  
  16134.  
  16135.  
  16136.  
  16137.  
  16138.  
  16139.  
  16140.  
  16141.  
  16142.  
  16143.  
  16144.  
  16145.    
  16146.  
  16147.  
  16148.  
  16149. <li
  16150.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16151.  data-product-item
  16152.  data-product-quickshop-url="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16153.  
  16154. >
  16155.  <div class="productitem" data-product-item-content>
  16156.    
  16157.    
  16158.    
  16159.    
  16160.  
  16161.    
  16162.  
  16163.    
  16164.  
  16165.    <div class="productitem__container">
  16166.      
  16167.  
  16168.      <div class="productitem__image-container">
  16169.        <a target="_blank"
  16170.          class="productitem--image-link"
  16171.          href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16172.          aria-label="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16173.          tabindex="-1"
  16174.          data-product-page-link
  16175.        >
  16176.          <figure
  16177.            class="productitem--image"
  16178.            data-product-item-image
  16179.            
  16180.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  16181.            
  16182.          >
  16183.            
  16184.              
  16185.              
  16186.  
  16187.  
  16188.    <noscript data-rimg-noscript>
  16189.      <img loading="lazy"
  16190.        
  16191.          src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16192.        
  16193.  
  16194.        alt="Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210 - LaptopParts.ca"
  16195.        data-rimg="noscript"
  16196.        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"
  16197.        class="productitem--image-primary"
  16198.        
  16199.        
  16200.      >
  16201.    </noscript>
  16202.  
  16203.  
  16204.  <img loading="lazy"
  16205.    
  16206.      src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16207.    
  16208.    alt="Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210 - LaptopParts.ca"
  16209.  
  16210.    
  16211.      data-rimg="lazy"
  16212.      data-rimg-scale="1"
  16213.      data-rimg-template="//laptopparts.ca/cdn/shop/products/33.paa02.007_{size}.jpg?v=1697125255"
  16214.      data-rimg-max="655x655"
  16215.      data-rimg-crop="false"
  16216.      
  16217.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  16218.    
  16219.  
  16220.    class="productitem--image-primary"
  16221.    
  16222.    
  16223.  >
  16224.  
  16225.  
  16226.  
  16227.  <div data-rimg-canvas></div>
  16228.  
  16229.  
  16230.            
  16231.  
  16232.            
  16233.  
  16234.  
  16235.  
  16236.  
  16237.  
  16238.  
  16239.  
  16240.  
  16241.  
  16242.  
  16243.  
  16244.  
  16245.  
  16246.  
  16247.  
  16248.  
  16249.  
  16250.  
  16251.  
  16252.  
  16253.  
  16254.  
  16255.  
  16256.  
  16257.  
  16258.  
  16259.  
  16260.          </figure>
  16261.        </a>
  16262.      </div><div class="productitem--info">
  16263.        
  16264.          
  16265.  
  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.  
  16295.  
  16296.  
  16297.  
  16298.  
  16299.  
  16300. <div class="price productitem__price ">
  16301.  
  16302.    <div
  16303.      class="price__compare-at visible"
  16304.      data-price-compare-container
  16305.    >
  16306.  
  16307.      
  16308.        <span class="money price__original" data-price-original></span>
  16309.      
  16310.    </div>
  16311.  
  16312.  
  16313.    
  16314.      
  16315.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16316.        
  16317.          <span class="visually-hidden">Original price</span>
  16318.          <span class="money price__compare-at--min" data-price-compare-min>
  16319.            $65.99
  16320.          </span>
  16321.          -
  16322.          <span class="visually-hidden">Original price</span>
  16323.          <span class="money price__compare-at--max" data-price-compare-max>
  16324.            $65.99
  16325.          </span>
  16326.        
  16327.      </div>
  16328.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16329.        <span class="visually-hidden">Original price</span>
  16330.        <span class="money price__compare-at--single" data-price-compare>
  16331.          
  16332.        </span>
  16333.      </div>
  16334.    
  16335.  
  16336.  
  16337.  <div class="price__current price__current--emphasize " data-price-container>
  16338.  
  16339.    
  16340.  
  16341.    
  16342.      
  16343.      
  16344.      <span class="money" data-price>
  16345.        $65.99
  16346.      </span>
  16347.    
  16348.    
  16349.  </div>
  16350.  
  16351.  
  16352.    
  16353.    <div class="price__current--hidden" data-current-price-range-hidden>
  16354.      
  16355.        <span class="money price__current--min" data-price-min>$65.99</span>
  16356.        -
  16357.        <span class="money price__current--max" data-price-max>$65.99</span>
  16358.      
  16359.    </div>
  16360.    <div class="price__current--hidden" data-current-price-hidden>
  16361.      <span class="visually-hidden">Current price</span>
  16362.      <span class="money" data-price>
  16363.        $65.99
  16364.      </span>
  16365.    </div>
  16366.  
  16367.  
  16368.  
  16369.    
  16370.    
  16371.    
  16372.    
  16373.  
  16374.    <div
  16375.      class="
  16376.        productitem__unit-price
  16377.        hidden
  16378.      "
  16379.      data-unit-price
  16380.    >
  16381.      <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>
  16382.    </div>
  16383.  
  16384.  
  16385.  
  16386. </div>
  16387.  
  16388.  
  16389.        
  16390.  
  16391.        <h2 class="productitem--title">
  16392.          <a href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210" data-product-page-link>
  16393.            Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210
  16394.          </a>
  16395.        </h2>
  16396.  
  16397.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16398.        <div class="star_container 243102056471"></div>
  16399.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16400.  
  16401.        
  16402.          
  16403.            <span class="productitem--vendor">
  16404.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16405.            </span>
  16406.          
  16407.        
  16408.  
  16409.        
  16410.  
  16411.        
  16412.          
  16413.            <div class="productitem__stock-level">
  16414.              <!--
  16415.  
  16416.  
  16417.  
  16418.  
  16419.  
  16420.  
  16421.  
  16422. <div class="product-stock-level-wrapper" >
  16423.  
  16424.    <span class="
  16425.  product-stock-level
  16426.  product-stock-level--continue-selling
  16427.  
  16428. ">
  16429.      
  16430.  
  16431.      <span class="product-stock-level__text">
  16432.        
  16433.        <div class="product-stock-level__badge-text">
  16434.          
  16435.  
  16436.    In stock
  16437.  
  16438.  
  16439.        </div>
  16440.      </span>
  16441.    </span>
  16442.  
  16443. </div>
  16444. -->
  16445.              
  16446.  
  16447.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  16448.  
  16449.  
  16450.  
  16451.  
  16452.  
  16453.  
  16454.  
  16455.            </div>
  16456.          
  16457.  
  16458.          
  16459.            
  16460.          
  16461.        
  16462.  
  16463.        
  16464.          <div class="productitem--description">
  16465.            <p>Description: New genuine Acer laptop hinge and bracket set.
  16466. Part #'s: 33.PAA02.007, 091203 240, 091221 210.
  16467. Compatible Models: Acer Aspire 4235, 42...</p>
  16468.  
  16469.            
  16470.              <a
  16471.                href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16472.                class="productitem--link"
  16473.                data-product-page-link
  16474.              >
  16475.                View full details
  16476.              </a>
  16477.            
  16478.          </div>
  16479.        
  16480.      </div>
  16481.  
  16482.      
  16483.        
  16484.          
  16485.          
  16486.          
  16487.  
  16488.          
  16489.          
  16490.  
  16491.          
  16492.  
  16493.          
  16494.  
  16495.          <div class="productitem--actions" data-product-actions>
  16496.            <div class="productitem--listview-price">
  16497.              
  16498.  
  16499.  
  16500.  
  16501.  
  16502.  
  16503.  
  16504.  
  16505.  
  16506.  
  16507.  
  16508.  
  16509.  
  16510.  
  16511.  
  16512.  
  16513.  
  16514.  
  16515.  
  16516.  
  16517.  
  16518.  
  16519.  
  16520.  
  16521.  
  16522.  
  16523.  
  16524.  
  16525.  
  16526.  
  16527.  
  16528. <div class="price productitem__price ">
  16529.  
  16530.    <div
  16531.      class="price__compare-at visible"
  16532.      data-price-compare-container
  16533.    >
  16534.  
  16535.      
  16536.        <span class="money price__original" data-price-original></span>
  16537.      
  16538.    </div>
  16539.  
  16540.  
  16541.    
  16542.      
  16543.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16544.        
  16545.          <span class="visually-hidden">Original price</span>
  16546.          <span class="money price__compare-at--min" data-price-compare-min>
  16547.            $65.99
  16548.          </span>
  16549.          -
  16550.          <span class="visually-hidden">Original price</span>
  16551.          <span class="money price__compare-at--max" data-price-compare-max>
  16552.            $65.99
  16553.          </span>
  16554.        
  16555.      </div>
  16556.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16557.        <span class="visually-hidden">Original price</span>
  16558.        <span class="money price__compare-at--single" data-price-compare>
  16559.          
  16560.        </span>
  16561.      </div>
  16562.    
  16563.  
  16564.  
  16565.  <div class="price__current price__current--emphasize " data-price-container>
  16566.  
  16567.    
  16568.  
  16569.    
  16570.      
  16571.      
  16572.      <span class="money" data-price>
  16573.        $65.99
  16574.      </span>
  16575.    
  16576.    
  16577.  </div>
  16578.  
  16579.  
  16580.    
  16581.    <div class="price__current--hidden" data-current-price-range-hidden>
  16582.      
  16583.        <span class="money price__current--min" data-price-min>$65.99</span>
  16584.        -
  16585.        <span class="money price__current--max" data-price-max>$65.99</span>
  16586.      
  16587.    </div>
  16588.    <div class="price__current--hidden" data-current-price-hidden>
  16589.      <span class="visually-hidden">Current price</span>
  16590.      <span class="money" data-price>
  16591.        $65.99
  16592.      </span>
  16593.    </div>
  16594.  
  16595.  
  16596.  
  16597.    
  16598.    
  16599.    
  16600.    
  16601.  
  16602.    <div
  16603.      class="
  16604.        productitem__unit-price
  16605.        hidden
  16606.      "
  16607.      data-unit-price
  16608.    >
  16609.      <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>
  16610.    </div>
  16611.  
  16612.  
  16613.  
  16614. </div>
  16615.  
  16616.  
  16617.            </div>
  16618.  
  16619.            <div class="productitem--listview-badge">
  16620.              
  16621.  
  16622.  
  16623.  
  16624.  
  16625.  
  16626.  
  16627.  
  16628.  
  16629.  
  16630.  
  16631.  
  16632.  
  16633.  
  16634.  
  16635.  
  16636.  
  16637.  
  16638.  
  16639.  
  16640.  
  16641.  
  16642.  
  16643.  
  16644.  
  16645.  
  16646.  
  16647.  
  16648.            </div>
  16649.  
  16650.            
  16651.              <div
  16652.                class="
  16653.                  productitem--action
  16654.                  quickshop-button
  16655.                  
  16656.                "
  16657.              >
  16658.                <button
  16659.                  class="productitem--action-trigger button-secondary"
  16660.                  data-quickshop-full
  16661.                  
  16662.                  
  16663.                  type="button"
  16664.                >
  16665.                  Quick shop
  16666.                </button>
  16667.              </div>
  16668.            
  16669.  
  16670.            
  16671.              <div
  16672.                class="
  16673.                  productitem--action
  16674.                  atc--button
  16675.                  
  16676.                "
  16677.              >
  16678.                <button
  16679.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16680.                  type="button"
  16681.                  aria-label="Add to cart"
  16682.                  
  16683.                    data-quick-buy
  16684.                  
  16685.                  data-variant-id="2838819504151"
  16686.                  
  16687.                >
  16688.                  <span class="atc-button--text">
  16689.                    Add to cart
  16690.                  </span>
  16691.                  <span class="atc-button--icon"><svg
  16692.  aria-hidden="true"
  16693.  focusable="false"
  16694.  role="presentation"
  16695.  width="26"
  16696.  height="26"
  16697.  viewBox="0 0 26 26"
  16698.  xmlns="http://www.w3.org/2000/svg"
  16699. >
  16700.  <g fill-rule="nonzero" fill="currentColor">
  16701.    <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"/>
  16702.  </g>
  16703. </svg></span>
  16704.                </button>
  16705.              </div>
  16706.            
  16707.          </div>
  16708.        
  16709.      
  16710.    </div>
  16711.  </div>
  16712.  
  16713.  
  16714.    <script type="application/json" data-quick-buy-settings>
  16715.      {
  16716.        "cart_redirection": true,
  16717.        "money_format": "${{amount}}"
  16718.      }
  16719.    </script>
  16720.  
  16721. </li>
  16722.    
  16723.      
  16724.  
  16725.  
  16726.  
  16727.  
  16728.  
  16729.  
  16730.  
  16731.  
  16732.  
  16733.  
  16734.  
  16735.  
  16736.  
  16737.  
  16738.  
  16739.  
  16740.  
  16741.  
  16742.  
  16743.  
  16744.  
  16745.  
  16746.  
  16747.  
  16748.  
  16749.  
  16750.  
  16751.  
  16752.  
  16753.  
  16754.  
  16755.  
  16756.    
  16757.  
  16758.  
  16759.  
  16760. <li
  16761.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16762.  data-product-item
  16763.  data-product-quickshop-url="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16764.  
  16765. >
  16766.  <div class="productitem" data-product-item-content>
  16767.    
  16768.    
  16769.    
  16770.    
  16771.  
  16772.    
  16773.  
  16774.    
  16775.  
  16776.    <div class="productitem__container">
  16777.      
  16778.  
  16779.      <div class="productitem__image-container">
  16780.        <a target="_blank"
  16781.          class="productitem--image-link"
  16782.          href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16783.          aria-label="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16784.          tabindex="-1"
  16785.          data-product-page-link
  16786.        >
  16787.          <figure
  16788.            class="productitem--image"
  16789.            data-product-item-image
  16790.            
  16791.              style="--product-grid-item-image-aspect-ratio: 0.5231513476157568;"
  16792.            
  16793.          >
  16794.            
  16795.              
  16796.              
  16797.  
  16798.  
  16799.    <noscript data-rimg-noscript>
  16800.      <img loading="lazy"
  16801.        
  16802.          src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16803.        
  16804.  
  16805.        alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16806.        data-rimg="noscript"
  16807.        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"
  16808.        class="productitem--image-primary"
  16809.        
  16810.        
  16811.      >
  16812.    </noscript>
  16813.  
  16814.  
  16815.  <img loading="lazy"
  16816.    
  16817.      src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16818.    
  16819.    alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16820.  
  16821.    
  16822.      data-rimg="lazy"
  16823.      data-rimg-scale="1"
  16824.      data-rimg-template="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_{size}.jpg?v=1728212053"
  16825.      data-rimg-max="757x1447"
  16826.      data-rimg-crop="false"
  16827.      
  16828.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='979'></svg>"
  16829.    
  16830.  
  16831.    class="productitem--image-primary"
  16832.    
  16833.    
  16834.  >
  16835.  
  16836.  
  16837.  
  16838.  <div data-rimg-canvas></div>
  16839.  
  16840.  
  16841.            
  16842.  
  16843.            
  16844.  
  16845.  
  16846.  
  16847.  
  16848.  
  16849.  
  16850.  
  16851.  
  16852.  
  16853.  
  16854.  
  16855.  
  16856.  
  16857.  
  16858.  
  16859.  
  16860.  
  16861.  
  16862.  
  16863.  
  16864.  
  16865.  
  16866.  
  16867.  
  16868.  
  16869.  
  16870.  
  16871.          </figure>
  16872.        </a>
  16873.      </div><div class="productitem--info">
  16874.        
  16875.          
  16876.  
  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.  
  16906.  
  16907.  
  16908.  
  16909.  
  16910.  
  16911. <div class="price productitem__price ">
  16912.  
  16913.    <div
  16914.      class="price__compare-at visible"
  16915.      data-price-compare-container
  16916.    >
  16917.  
  16918.      
  16919.        <span class="money price__original" data-price-original></span>
  16920.      
  16921.    </div>
  16922.  
  16923.  
  16924.    
  16925.      
  16926.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16927.        
  16928.          <span class="visually-hidden">Original price</span>
  16929.          <span class="money price__compare-at--min" data-price-compare-min>
  16930.            $50.98
  16931.          </span>
  16932.          -
  16933.          <span class="visually-hidden">Original price</span>
  16934.          <span class="money price__compare-at--max" data-price-compare-max>
  16935.            $50.98
  16936.          </span>
  16937.        
  16938.      </div>
  16939.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16940.        <span class="visually-hidden">Original price</span>
  16941.        <span class="money price__compare-at--single" data-price-compare>
  16942.          
  16943.        </span>
  16944.      </div>
  16945.    
  16946.  
  16947.  
  16948.  <div class="price__current price__current--emphasize " data-price-container>
  16949.  
  16950.    
  16951.  
  16952.    
  16953.      
  16954.      
  16955.      <span class="money" data-price>
  16956.        $50.98
  16957.      </span>
  16958.    
  16959.    
  16960.  </div>
  16961.  
  16962.  
  16963.    
  16964.    <div class="price__current--hidden" data-current-price-range-hidden>
  16965.      
  16966.        <span class="money price__current--min" data-price-min>$50.98</span>
  16967.        -
  16968.        <span class="money price__current--max" data-price-max>$50.98</span>
  16969.      
  16970.    </div>
  16971.    <div class="price__current--hidden" data-current-price-hidden>
  16972.      <span class="visually-hidden">Current price</span>
  16973.      <span class="money" data-price>
  16974.        $50.98
  16975.      </span>
  16976.    </div>
  16977.  
  16978.  
  16979.  
  16980.    
  16981.    
  16982.    
  16983.    
  16984.  
  16985.    <div
  16986.      class="
  16987.        productitem__unit-price
  16988.        hidden
  16989.      "
  16990.      data-unit-price
  16991.    >
  16992.      <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>
  16993.    </div>
  16994.  
  16995.  
  16996.  
  16997. </div>
  16998.  
  16999.  
  17000.        
  17001.  
  17002.        <h2 class="productitem--title">
  17003.          <a href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set" data-product-page-link>
  17004.            Acer Aspire 5 A515-41 A515-41G A515-51 A515-51G Right & Left Lcd Hinge Set 33.GP4N2.003
  17005.          </a>
  17006.        </h2>
  17007.  
  17008.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  17009.        <div class="star_container 1468469608471"></div>
  17010.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  17011.  
  17012.        
  17013.          
  17014.            <span class="productitem--vendor">
  17015.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  17016.            </span>
  17017.          
  17018.        
  17019.  
  17020.        
  17021.  
  17022.        
  17023.          
  17024.            <div class="productitem__stock-level">
  17025.              <!--
  17026.  
  17027.  
  17028.  
  17029.  
  17030.  
  17031.  
  17032.  
  17033. <div class="product-stock-level-wrapper" >
  17034.  
  17035.    <span class="
  17036.  product-stock-level
  17037.  product-stock-level--continue-selling
  17038.  
  17039. ">
  17040.      
  17041.  
  17042.      <span class="product-stock-level__text">
  17043.        
  17044.        <div class="product-stock-level__badge-text">
  17045.          
  17046.  
  17047.    In stock
  17048.  
  17049.  
  17050.        </div>
  17051.      </span>
  17052.    </span>
  17053.  
  17054. </div>
  17055. -->
  17056.              
  17057.  
  17058.  
  17059.    
  17060.      <b style="color:green">In stock</b>
  17061.    
  17062.  
  17063.  
  17064.  
  17065.  
  17066.  
  17067.  
  17068.  
  17069.            </div>
  17070.          
  17071.  
  17072.          
  17073.            
  17074.          
  17075.        
  17076.  
  17077.        
  17078.          <div class="productitem--description">
  17079.            <p>
  17080. Description: New Acer right and left laptop lcd hinge set.
  17081.  
  17082.  
  17083. Compatible Part #'s: 33.GP4N2.003, 33.GP4N2.004Compatible Models:Acer Aspire 3 A315-...</p>
  17084.  
  17085.            
  17086.              <a
  17087.                href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  17088.                class="productitem--link"
  17089.                data-product-page-link
  17090.              >
  17091.                View full details
  17092.              </a>
  17093.            
  17094.          </div>
  17095.        
  17096.      </div>
  17097.  
  17098.      
  17099.        
  17100.          
  17101.          
  17102.          
  17103.  
  17104.          
  17105.          
  17106.  
  17107.          
  17108.  
  17109.          
  17110.  
  17111.          <div class="productitem--actions" data-product-actions>
  17112.            <div class="productitem--listview-price">
  17113.              
  17114.  
  17115.  
  17116.  
  17117.  
  17118.  
  17119.  
  17120.  
  17121.  
  17122.  
  17123.  
  17124.  
  17125.  
  17126.  
  17127.  
  17128.  
  17129.  
  17130.  
  17131.  
  17132.  
  17133.  
  17134.  
  17135.  
  17136.  
  17137.  
  17138.  
  17139.  
  17140.  
  17141.  
  17142.  
  17143.  
  17144. <div class="price productitem__price ">
  17145.  
  17146.    <div
  17147.      class="price__compare-at visible"
  17148.      data-price-compare-container
  17149.    >
  17150.  
  17151.      
  17152.        <span class="money price__original" data-price-original></span>
  17153.      
  17154.    </div>
  17155.  
  17156.  
  17157.    
  17158.      
  17159.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17160.        
  17161.          <span class="visually-hidden">Original price</span>
  17162.          <span class="money price__compare-at--min" data-price-compare-min>
  17163.            $50.98
  17164.          </span>
  17165.          -
  17166.          <span class="visually-hidden">Original price</span>
  17167.          <span class="money price__compare-at--max" data-price-compare-max>
  17168.            $50.98
  17169.          </span>
  17170.        
  17171.      </div>
  17172.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17173.        <span class="visually-hidden">Original price</span>
  17174.        <span class="money price__compare-at--single" data-price-compare>
  17175.          
  17176.        </span>
  17177.      </div>
  17178.    
  17179.  
  17180.  
  17181.  <div class="price__current price__current--emphasize " data-price-container>
  17182.  
  17183.    
  17184.  
  17185.    
  17186.      
  17187.      
  17188.      <span class="money" data-price>
  17189.        $50.98
  17190.      </span>
  17191.    
  17192.    
  17193.  </div>
  17194.  
  17195.  
  17196.    
  17197.    <div class="price__current--hidden" data-current-price-range-hidden>
  17198.      
  17199.        <span class="money price__current--min" data-price-min>$50.98</span>
  17200.        -
  17201.        <span class="money price__current--max" data-price-max>$50.98</span>
  17202.      
  17203.    </div>
  17204.    <div class="price__current--hidden" data-current-price-hidden>
  17205.      <span class="visually-hidden">Current price</span>
  17206.      <span class="money" data-price>
  17207.        $50.98
  17208.      </span>
  17209.    </div>
  17210.  
  17211.  
  17212.  
  17213.    
  17214.    
  17215.    
  17216.    
  17217.  
  17218.    <div
  17219.      class="
  17220.        productitem__unit-price
  17221.        hidden
  17222.      "
  17223.      data-unit-price
  17224.    >
  17225.      <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>
  17226.    </div>
  17227.  
  17228.  
  17229.  
  17230. </div>
  17231.  
  17232.  
  17233.            </div>
  17234.  
  17235.            <div class="productitem--listview-badge">
  17236.              
  17237.  
  17238.  
  17239.  
  17240.  
  17241.  
  17242.  
  17243.  
  17244.  
  17245.  
  17246.  
  17247.  
  17248.  
  17249.  
  17250.  
  17251.  
  17252.  
  17253.  
  17254.  
  17255.  
  17256.  
  17257.  
  17258.  
  17259.  
  17260.  
  17261.  
  17262.  
  17263.  
  17264.            </div>
  17265.  
  17266.            
  17267.              <div
  17268.                class="
  17269.                  productitem--action
  17270.                  quickshop-button
  17271.                  
  17272.                "
  17273.              >
  17274.                <button
  17275.                  class="productitem--action-trigger button-secondary"
  17276.                  data-quickshop-full
  17277.                  
  17278.                  
  17279.                  type="button"
  17280.                >
  17281.                  Quick shop
  17282.                </button>
  17283.              </div>
  17284.            
  17285.  
  17286.            
  17287.              <div
  17288.                class="
  17289.                  productitem--action
  17290.                  atc--button
  17291.                  
  17292.                "
  17293.              >
  17294.                <button
  17295.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17296.                  type="button"
  17297.                  aria-label="Add to cart"
  17298.                  
  17299.                    data-quick-buy
  17300.                  
  17301.                  data-variant-id="12807718895639"
  17302.                  
  17303.                >
  17304.                  <span class="atc-button--text">
  17305.                    Add to cart
  17306.                  </span>
  17307.                  <span class="atc-button--icon"><svg
  17308.  aria-hidden="true"
  17309.  focusable="false"
  17310.  role="presentation"
  17311.  width="26"
  17312.  height="26"
  17313.  viewBox="0 0 26 26"
  17314.  xmlns="http://www.w3.org/2000/svg"
  17315. >
  17316.  <g fill-rule="nonzero" fill="currentColor">
  17317.    <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"/>
  17318.  </g>
  17319. </svg></span>
  17320.                </button>
  17321.              </div>
  17322.            
  17323.          </div>
  17324.        
  17325.      
  17326.    </div>
  17327.  </div>
  17328.  
  17329.  
  17330.    <script type="application/json" data-quick-buy-settings>
  17331.      {
  17332.        "cart_redirection": true,
  17333.        "money_format": "${{amount}}"
  17334.      }
  17335.    </script>
  17336.  
  17337. </li>
  17338.    
  17339.      
  17340.  
  17341.  
  17342.  
  17343.  
  17344.  
  17345.  
  17346.  
  17347.  
  17348.  
  17349.  
  17350.  
  17351.  
  17352.  
  17353.  
  17354.  
  17355.  
  17356.  
  17357.  
  17358.  
  17359.  
  17360.  
  17361.  
  17362.  
  17363.  
  17364.  
  17365.  
  17366.  
  17367.  
  17368.  
  17369.  
  17370.  
  17371.  
  17372.    
  17373.  
  17374.  
  17375.  
  17376. <li
  17377.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17378.  data-product-item
  17379.  data-product-quickshop-url="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17380.  
  17381. >
  17382.  <div class="productitem" data-product-item-content>
  17383.    
  17384.    
  17385.    
  17386.    
  17387.  
  17388.    
  17389.  
  17390.    
  17391.  
  17392.    <div class="productitem__container">
  17393.      
  17394.  
  17395.      <div class="productitem__image-container">
  17396.        <a target="_blank"
  17397.          class="productitem--image-link"
  17398.          href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17399.          aria-label="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17400.          tabindex="-1"
  17401.          data-product-page-link
  17402.        >
  17403.          <figure
  17404.            class="productitem--image"
  17405.            data-product-item-image
  17406.            
  17407.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17408.            
  17409.          >
  17410.            
  17411.              
  17412.              
  17413.  
  17414.  
  17415.    <noscript data-rimg-noscript>
  17416.      <img loading="lazy"
  17417.        
  17418.          src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17419.        
  17420.  
  17421.        alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17422.        data-rimg="noscript"
  17423.        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"
  17424.        class="productitem--image-primary"
  17425.        
  17426.        
  17427.      >
  17428.    </noscript>
  17429.  
  17430.  
  17431.  <img loading="lazy"
  17432.    
  17433.      src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17434.    
  17435.    alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17436.  
  17437.    
  17438.      data-rimg="lazy"
  17439.      data-rimg-scale="1"
  17440.      data-rimg-template="//laptopparts.ca/cdn/shop/products/23.apq0n.001_{size}.jpg?v=1715271966"
  17441.      data-rimg-max="600x600"
  17442.      data-rimg-crop="false"
  17443.      
  17444.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17445.    
  17446.  
  17447.    class="productitem--image-primary"
  17448.    
  17449.    
  17450.  >
  17451.  
  17452.  
  17453.  
  17454.  <div data-rimg-canvas></div>
  17455.  
  17456.  
  17457.            
  17458.  
  17459.            
  17460.  
  17461.  
  17462.  
  17463.  
  17464.  
  17465.  
  17466.  
  17467.  
  17468.  
  17469.  
  17470.  
  17471.  
  17472.  
  17473.  
  17474.  
  17475.  
  17476.  
  17477.  
  17478.  
  17479.  
  17480.  
  17481.  
  17482.  
  17483.  
  17484.  
  17485.  
  17486.  
  17487.          </figure>
  17488.        </a>
  17489.      </div><div class="productitem--info">
  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.  
  17519.  
  17520.  
  17521.  
  17522.  
  17523.  
  17524.  
  17525.  
  17526.  
  17527. <div class="price productitem__price ">
  17528.  
  17529.    <div
  17530.      class="price__compare-at visible"
  17531.      data-price-compare-container
  17532.    >
  17533.  
  17534.      
  17535.        <span class="money price__original" data-price-original></span>
  17536.      
  17537.    </div>
  17538.  
  17539.  
  17540.    
  17541.      
  17542.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17543.        
  17544.          <span class="visually-hidden">Original price</span>
  17545.          <span class="money price__compare-at--min" data-price-compare-min>
  17546.            $58.99
  17547.          </span>
  17548.          -
  17549.          <span class="visually-hidden">Original price</span>
  17550.          <span class="money price__compare-at--max" data-price-compare-max>
  17551.            $58.99
  17552.          </span>
  17553.        
  17554.      </div>
  17555.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17556.        <span class="visually-hidden">Original price</span>
  17557.        <span class="money price__compare-at--single" data-price-compare>
  17558.          
  17559.        </span>
  17560.      </div>
  17561.    
  17562.  
  17563.  
  17564.  <div class="price__current price__current--emphasize " data-price-container>
  17565.  
  17566.    
  17567.  
  17568.    
  17569.      
  17570.      
  17571.      <span class="money" data-price>
  17572.        $58.99
  17573.      </span>
  17574.    
  17575.    
  17576.  </div>
  17577.  
  17578.  
  17579.    
  17580.    <div class="price__current--hidden" data-current-price-range-hidden>
  17581.      
  17582.        <span class="money price__current--min" data-price-min>$58.99</span>
  17583.        -
  17584.        <span class="money price__current--max" data-price-max>$58.99</span>
  17585.      
  17586.    </div>
  17587.    <div class="price__current--hidden" data-current-price-hidden>
  17588.      <span class="visually-hidden">Current price</span>
  17589.      <span class="money" data-price>
  17590.        $58.99
  17591.      </span>
  17592.    </div>
  17593.  
  17594.  
  17595.  
  17596.    
  17597.    
  17598.    
  17599.    
  17600.  
  17601.    <div
  17602.      class="
  17603.        productitem__unit-price
  17604.        hidden
  17605.      "
  17606.      data-unit-price
  17607.    >
  17608.      <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>
  17609.    </div>
  17610.  
  17611.  
  17612.  
  17613. </div>
  17614.  
  17615.  
  17616.        
  17617.  
  17618.        <h2 class="productitem--title">
  17619.          <a href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a" data-product-page-link>
  17620.            Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A
  17621.          </a>
  17622.        </h2>
  17623.  
  17624.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  17625.        <div class="star_container 4451325446"></div>
  17626.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  17627.  
  17628.        
  17629.          
  17630.            <span class="productitem--vendor">
  17631.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  17632.            </span>
  17633.          
  17634.        
  17635.  
  17636.        
  17637.  
  17638.        
  17639.          
  17640.            <div class="productitem__stock-level">
  17641.              <!--
  17642.  
  17643.  
  17644.  
  17645.  
  17646.  
  17647.  
  17648.  
  17649. <div class="product-stock-level-wrapper" >
  17650.  
  17651.    <span class="
  17652.  product-stock-level
  17653.  product-stock-level--continue-selling
  17654.  
  17655. ">
  17656.      
  17657.  
  17658.      <span class="product-stock-level__text">
  17659.        
  17660.        <div class="product-stock-level__badge-text">
  17661.          
  17662.  
  17663.    In stock
  17664.  
  17665.  
  17666.        </div>
  17667.      </span>
  17668.    </span>
  17669.  
  17670. </div>
  17671. -->
  17672.              
  17673.  
  17674.  
  17675.    
  17676.      <b style="color:green">In stock</b>
  17677.    
  17678.  
  17679.  
  17680.  
  17681.  
  17682.  
  17683.  
  17684.  
  17685.            </div>
  17686.          
  17687.  
  17688.          
  17689.            
  17690.          
  17691.        
  17692.  
  17693.        
  17694.          <div class="productitem--description">
  17695.            <p>Genuine Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A</p>
  17696.  
  17697.            
  17698.          </div>
  17699.        
  17700.      </div>
  17701.  
  17702.      
  17703.        
  17704.          
  17705.          
  17706.          
  17707.  
  17708.          
  17709.          
  17710.  
  17711.          
  17712.  
  17713.          
  17714.  
  17715.          <div class="productitem--actions" data-product-actions>
  17716.            <div class="productitem--listview-price">
  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.  
  17742.  
  17743.  
  17744.  
  17745.  
  17746.  
  17747.  
  17748. <div class="price productitem__price ">
  17749.  
  17750.    <div
  17751.      class="price__compare-at visible"
  17752.      data-price-compare-container
  17753.    >
  17754.  
  17755.      
  17756.        <span class="money price__original" data-price-original></span>
  17757.      
  17758.    </div>
  17759.  
  17760.  
  17761.    
  17762.      
  17763.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17764.        
  17765.          <span class="visually-hidden">Original price</span>
  17766.          <span class="money price__compare-at--min" data-price-compare-min>
  17767.            $58.99
  17768.          </span>
  17769.          -
  17770.          <span class="visually-hidden">Original price</span>
  17771.          <span class="money price__compare-at--max" data-price-compare-max>
  17772.            $58.99
  17773.          </span>
  17774.        
  17775.      </div>
  17776.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17777.        <span class="visually-hidden">Original price</span>
  17778.        <span class="money price__compare-at--single" data-price-compare>
  17779.          
  17780.        </span>
  17781.      </div>
  17782.    
  17783.  
  17784.  
  17785.  <div class="price__current price__current--emphasize " data-price-container>
  17786.  
  17787.    
  17788.  
  17789.    
  17790.      
  17791.      
  17792.      <span class="money" data-price>
  17793.        $58.99
  17794.      </span>
  17795.    
  17796.    
  17797.  </div>
  17798.  
  17799.  
  17800.    
  17801.    <div class="price__current--hidden" data-current-price-range-hidden>
  17802.      
  17803.        <span class="money price__current--min" data-price-min>$58.99</span>
  17804.        -
  17805.        <span class="money price__current--max" data-price-max>$58.99</span>
  17806.      
  17807.    </div>
  17808.    <div class="price__current--hidden" data-current-price-hidden>
  17809.      <span class="visually-hidden">Current price</span>
  17810.      <span class="money" data-price>
  17811.        $58.99
  17812.      </span>
  17813.    </div>
  17814.  
  17815.  
  17816.  
  17817.    
  17818.    
  17819.    
  17820.    
  17821.  
  17822.    <div
  17823.      class="
  17824.        productitem__unit-price
  17825.        hidden
  17826.      "
  17827.      data-unit-price
  17828.    >
  17829.      <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>
  17830.    </div>
  17831.  
  17832.  
  17833.  
  17834. </div>
  17835.  
  17836.  
  17837.            </div>
  17838.  
  17839.            <div class="productitem--listview-badge">
  17840.              
  17841.  
  17842.  
  17843.  
  17844.  
  17845.  
  17846.  
  17847.  
  17848.  
  17849.  
  17850.  
  17851.  
  17852.  
  17853.  
  17854.  
  17855.  
  17856.  
  17857.  
  17858.  
  17859.  
  17860.  
  17861.  
  17862.  
  17863.  
  17864.  
  17865.  
  17866.  
  17867.  
  17868.            </div>
  17869.  
  17870.            
  17871.              <div
  17872.                class="
  17873.                  productitem--action
  17874.                  quickshop-button
  17875.                  
  17876.                "
  17877.              >
  17878.                <button
  17879.                  class="productitem--action-trigger button-secondary"
  17880.                  data-quickshop-full
  17881.                  
  17882.                  
  17883.                  type="button"
  17884.                >
  17885.                  Quick shop
  17886.                </button>
  17887.              </div>
  17888.            
  17889.  
  17890.            
  17891.              <div
  17892.                class="
  17893.                  productitem--action
  17894.                  atc--button
  17895.                  
  17896.                "
  17897.              >
  17898.                <button
  17899.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17900.                  type="button"
  17901.                  aria-label="Add to cart"
  17902.                  
  17903.                    data-quick-buy
  17904.                  
  17905.                  data-variant-id="39666095259735"
  17906.                  
  17907.                >
  17908.                  <span class="atc-button--text">
  17909.                    Add to cart
  17910.                  </span>
  17911.                  <span class="atc-button--icon"><svg
  17912.  aria-hidden="true"
  17913.  focusable="false"
  17914.  role="presentation"
  17915.  width="26"
  17916.  height="26"
  17917.  viewBox="0 0 26 26"
  17918.  xmlns="http://www.w3.org/2000/svg"
  17919. >
  17920.  <g fill-rule="nonzero" fill="currentColor">
  17921.    <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"/>
  17922.  </g>
  17923. </svg></span>
  17924.                </button>
  17925.              </div>
  17926.            
  17927.          </div>
  17928.        
  17929.      
  17930.    </div>
  17931.  </div>
  17932.  
  17933.  
  17934.    <script type="application/json" data-quick-buy-settings>
  17935.      {
  17936.        "cart_redirection": true,
  17937.        "money_format": "${{amount}}"
  17938.      }
  17939.    </script>
  17940.  
  17941. </li>
  17942.    
  17943.      
  17944.  
  17945.  
  17946.  
  17947.  
  17948.  
  17949.  
  17950.  
  17951.  
  17952.  
  17953.  
  17954.  
  17955.  
  17956.  
  17957.  
  17958.  
  17959.  
  17960.  
  17961.  
  17962.  
  17963.  
  17964.  
  17965.  
  17966.  
  17967.  
  17968.  
  17969.  
  17970.  
  17971.  
  17972.  
  17973.  
  17974.  
  17975.  
  17976.    
  17977.  
  17978.  
  17979.  
  17980. <li
  17981.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17982.  data-product-item
  17983.  data-product-quickshop-url="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17984.  
  17985. >
  17986.  <div class="productitem" data-product-item-content>
  17987.    
  17988.    
  17989.    
  17990.    
  17991.  
  17992.    
  17993.  
  17994.    
  17995.  
  17996.    <div class="productitem__container">
  17997.      
  17998.  
  17999.      <div class="productitem__image-container">
  18000.        <a target="_blank"
  18001.          class="productitem--image-link"
  18002.          href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18003.          aria-label="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18004.          tabindex="-1"
  18005.          data-product-page-link
  18006.        >
  18007.          <figure
  18008.            class="productitem--image"
  18009.            data-product-item-image
  18010.            
  18011.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  18012.            
  18013.          >
  18014.            
  18015.              
  18016.              
  18017.  
  18018.  
  18019.    <noscript data-rimg-noscript>
  18020.      <img loading="lazy"
  18021.        
  18022.          src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1759442132"
  18023.        
  18024.  
  18025.        alt="Acer Aspire 5742Z USB Board 55.R4F02.002 - LaptopParts.ca"
  18026.        data-rimg="noscript"
  18027.        srcset="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1759442132 1x, //laptopparts.ca/cdn/shop/products/55.r4f02.002_599x599.png?v=1759442132 1.17x"
  18028.        class="productitem--image-primary"
  18029.        
  18030.        
  18031.      >
  18032.    </noscript>
  18033.  
  18034.  
  18035.  <img loading="lazy"
  18036.    
  18037.      src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1759442132"
  18038.    
  18039.    alt="Acer Aspire 5742Z USB Board 55.R4F02.002 - LaptopParts.ca"
  18040.  
  18041.    
  18042.      data-rimg="lazy"
  18043.      data-rimg-scale="1"
  18044.      data-rimg-template="//laptopparts.ca/cdn/shop/products/55.r4f02.002_{size}.png?v=1759442132"
  18045.      data-rimg-max="603x603"
  18046.      data-rimg-crop="false"
  18047.      
  18048.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  18049.    
  18050.  
  18051.    class="productitem--image-primary"
  18052.    
  18053.    
  18054.  >
  18055.  
  18056.  
  18057.  
  18058.  <div data-rimg-canvas></div>
  18059.  
  18060.  
  18061.            
  18062.  
  18063.            
  18064.  
  18065.  
  18066.  
  18067.  
  18068.  
  18069.  
  18070.  
  18071.  
  18072.  
  18073.  
  18074.  
  18075.  
  18076.  
  18077.  
  18078.  
  18079.  
  18080.  
  18081.  
  18082.  
  18083.  
  18084.  
  18085.  
  18086.  
  18087.  
  18088.  
  18089.  
  18090.  
  18091.          </figure>
  18092.        </a>
  18093.      </div><div class="productitem--info">
  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.  
  18123.  
  18124.  
  18125.  
  18126.  
  18127.  
  18128.  
  18129.  
  18130.  
  18131. <div class="price productitem__price ">
  18132.  
  18133.    <div
  18134.      class="price__compare-at visible"
  18135.      data-price-compare-container
  18136.    >
  18137.  
  18138.      
  18139.        <span class="money price__original" data-price-original></span>
  18140.      
  18141.    </div>
  18142.  
  18143.  
  18144.    
  18145.      
  18146.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18147.        
  18148.          <span class="visually-hidden">Original price</span>
  18149.          <span class="money price__compare-at--min" data-price-compare-min>
  18150.            $56.99
  18151.          </span>
  18152.          -
  18153.          <span class="visually-hidden">Original price</span>
  18154.          <span class="money price__compare-at--max" data-price-compare-max>
  18155.            $56.99
  18156.          </span>
  18157.        
  18158.      </div>
  18159.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18160.        <span class="visually-hidden">Original price</span>
  18161.        <span class="money price__compare-at--single" data-price-compare>
  18162.          
  18163.        </span>
  18164.      </div>
  18165.    
  18166.  
  18167.  
  18168.  <div class="price__current price__current--emphasize " data-price-container>
  18169.  
  18170.    
  18171.  
  18172.    
  18173.      
  18174.      
  18175.      <span class="money" data-price>
  18176.        $56.99
  18177.      </span>
  18178.    
  18179.    
  18180.  </div>
  18181.  
  18182.  
  18183.    
  18184.    <div class="price__current--hidden" data-current-price-range-hidden>
  18185.      
  18186.        <span class="money price__current--min" data-price-min>$56.99</span>
  18187.        -
  18188.        <span class="money price__current--max" data-price-max>$56.99</span>
  18189.      
  18190.    </div>
  18191.    <div class="price__current--hidden" data-current-price-hidden>
  18192.      <span class="visually-hidden">Current price</span>
  18193.      <span class="money" data-price>
  18194.        $56.99
  18195.      </span>
  18196.    </div>
  18197.  
  18198.  
  18199.  
  18200.    
  18201.    
  18202.    
  18203.    
  18204.  
  18205.    <div
  18206.      class="
  18207.        productitem__unit-price
  18208.        hidden
  18209.      "
  18210.      data-unit-price
  18211.    >
  18212.      <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>
  18213.    </div>
  18214.  
  18215.  
  18216.  
  18217. </div>
  18218.  
  18219.  
  18220.        
  18221.  
  18222.        <h2 class="productitem--title">
  18223.          <a href="/products/55-r4f02-002-acer-aspire-5742z-usb-board" data-product-page-link>
  18224.            Acer Aspire 5742Z USB Board 55.R4F02.002
  18225.          </a>
  18226.        </h2>
  18227.  
  18228.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18229.        <div class="star_container 4605263622"></div>
  18230.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18231.  
  18232.        
  18233.          
  18234.            <span class="productitem--vendor">
  18235.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18236.            </span>
  18237.          
  18238.        
  18239.  
  18240.        
  18241.  
  18242.        
  18243.          
  18244.            <div class="productitem__stock-level">
  18245.              <!--
  18246.  
  18247.  
  18248.  
  18249.  
  18250.  
  18251.  
  18252.  
  18253. <div class="product-stock-level-wrapper" >
  18254.  
  18255.    <span class="
  18256.  product-stock-level
  18257.  product-stock-level--continue-selling
  18258.  
  18259. ">
  18260.      
  18261.  
  18262.      <span class="product-stock-level__text">
  18263.        
  18264.        <div class="product-stock-level__badge-text">
  18265.          
  18266.  
  18267.    In stock
  18268.  
  18269.  
  18270.        </div>
  18271.      </span>
  18272.    </span>
  18273.  
  18274. </div>
  18275. -->
  18276.              
  18277.  
  18278.  
  18279.    
  18280.      <b style="color:green">In stock</b>
  18281.    
  18282.  
  18283.  
  18284.  
  18285.  
  18286.  
  18287.  
  18288.  
  18289.            </div>
  18290.          
  18291.  
  18292.          
  18293.            
  18294.          
  18295.        
  18296.  
  18297.        
  18298.          <div class="productitem--description">
  18299.            <p>55.R4F02.002 Acer Aspire 5742Z USB Board - Pulled from working laptops
  18300. Compatible Models:
  18301. Aspire 5252, 5333, 5336, 5552, 5733, 5736, 5742
  18302. Gateway N...</p>
  18303.  
  18304.            
  18305.              <a
  18306.                href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18307.                class="productitem--link"
  18308.                data-product-page-link
  18309.              >
  18310.                View full details
  18311.              </a>
  18312.            
  18313.          </div>
  18314.        
  18315.      </div>
  18316.  
  18317.      
  18318.        
  18319.          
  18320.          
  18321.          
  18322.  
  18323.          
  18324.          
  18325.  
  18326.          
  18327.  
  18328.          
  18329.  
  18330.          <div class="productitem--actions" data-product-actions>
  18331.            <div class="productitem--listview-price">
  18332.              
  18333.  
  18334.  
  18335.  
  18336.  
  18337.  
  18338.  
  18339.  
  18340.  
  18341.  
  18342.  
  18343.  
  18344.  
  18345.  
  18346.  
  18347.  
  18348.  
  18349.  
  18350.  
  18351.  
  18352.  
  18353.  
  18354.  
  18355.  
  18356.  
  18357.  
  18358.  
  18359.  
  18360.  
  18361.  
  18362.  
  18363. <div class="price productitem__price ">
  18364.  
  18365.    <div
  18366.      class="price__compare-at visible"
  18367.      data-price-compare-container
  18368.    >
  18369.  
  18370.      
  18371.        <span class="money price__original" data-price-original></span>
  18372.      
  18373.    </div>
  18374.  
  18375.  
  18376.    
  18377.      
  18378.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18379.        
  18380.          <span class="visually-hidden">Original price</span>
  18381.          <span class="money price__compare-at--min" data-price-compare-min>
  18382.            $56.99
  18383.          </span>
  18384.          -
  18385.          <span class="visually-hidden">Original price</span>
  18386.          <span class="money price__compare-at--max" data-price-compare-max>
  18387.            $56.99
  18388.          </span>
  18389.        
  18390.      </div>
  18391.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18392.        <span class="visually-hidden">Original price</span>
  18393.        <span class="money price__compare-at--single" data-price-compare>
  18394.          
  18395.        </span>
  18396.      </div>
  18397.    
  18398.  
  18399.  
  18400.  <div class="price__current price__current--emphasize " data-price-container>
  18401.  
  18402.    
  18403.  
  18404.    
  18405.      
  18406.      
  18407.      <span class="money" data-price>
  18408.        $56.99
  18409.      </span>
  18410.    
  18411.    
  18412.  </div>
  18413.  
  18414.  
  18415.    
  18416.    <div class="price__current--hidden" data-current-price-range-hidden>
  18417.      
  18418.        <span class="money price__current--min" data-price-min>$56.99</span>
  18419.        -
  18420.        <span class="money price__current--max" data-price-max>$56.99</span>
  18421.      
  18422.    </div>
  18423.    <div class="price__current--hidden" data-current-price-hidden>
  18424.      <span class="visually-hidden">Current price</span>
  18425.      <span class="money" data-price>
  18426.        $56.99
  18427.      </span>
  18428.    </div>
  18429.  
  18430.  
  18431.  
  18432.    
  18433.    
  18434.    
  18435.    
  18436.  
  18437.    <div
  18438.      class="
  18439.        productitem__unit-price
  18440.        hidden
  18441.      "
  18442.      data-unit-price
  18443.    >
  18444.      <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>
  18445.    </div>
  18446.  
  18447.  
  18448.  
  18449. </div>
  18450.  
  18451.  
  18452.            </div>
  18453.  
  18454.            <div class="productitem--listview-badge">
  18455.              
  18456.  
  18457.  
  18458.  
  18459.  
  18460.  
  18461.  
  18462.  
  18463.  
  18464.  
  18465.  
  18466.  
  18467.  
  18468.  
  18469.  
  18470.  
  18471.  
  18472.  
  18473.  
  18474.  
  18475.  
  18476.  
  18477.  
  18478.  
  18479.  
  18480.  
  18481.  
  18482.  
  18483.            </div>
  18484.  
  18485.            
  18486.              <div
  18487.                class="
  18488.                  productitem--action
  18489.                  quickshop-button
  18490.                  
  18491.                "
  18492.              >
  18493.                <button
  18494.                  class="productitem--action-trigger button-secondary"
  18495.                  data-quickshop-full
  18496.                  
  18497.                  
  18498.                  type="button"
  18499.                >
  18500.                  Quick shop
  18501.                </button>
  18502.              </div>
  18503.            
  18504.  
  18505.            
  18506.              <div
  18507.                class="
  18508.                  productitem--action
  18509.                  atc--button
  18510.                  
  18511.                "
  18512.              >
  18513.                <button
  18514.                  class="productitem--action-trigger productitem--action-atc button-primary"
  18515.                  type="button"
  18516.                  aria-label="Add to cart"
  18517.                  
  18518.                    data-quick-buy
  18519.                  
  18520.                  data-variant-id="15084894150"
  18521.                  
  18522.                >
  18523.                  <span class="atc-button--text">
  18524.                    Add to cart
  18525.                  </span>
  18526.                  <span class="atc-button--icon"><svg
  18527.  aria-hidden="true"
  18528.  focusable="false"
  18529.  role="presentation"
  18530.  width="26"
  18531.  height="26"
  18532.  viewBox="0 0 26 26"
  18533.  xmlns="http://www.w3.org/2000/svg"
  18534. >
  18535.  <g fill-rule="nonzero" fill="currentColor">
  18536.    <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"/>
  18537.  </g>
  18538. </svg></span>
  18539.                </button>
  18540.              </div>
  18541.            
  18542.          </div>
  18543.        
  18544.      
  18545.    </div>
  18546.  </div>
  18547.  
  18548.  
  18549.    <script type="application/json" data-quick-buy-settings>
  18550.      {
  18551.        "cart_redirection": true,
  18552.        "money_format": "${{amount}}"
  18553.      }
  18554.    </script>
  18555.  
  18556. </li>
  18557.    
  18558.      
  18559.  
  18560.  
  18561.  
  18562.  
  18563.  
  18564.  
  18565.  
  18566.  
  18567.  
  18568.  
  18569.  
  18570.  
  18571.  
  18572.  
  18573.  
  18574.  
  18575.  
  18576.  
  18577.  
  18578.  
  18579.  
  18580.  
  18581.  
  18582.  
  18583.  
  18584.  
  18585.  
  18586.  
  18587.  
  18588.  
  18589.  
  18590.  
  18591.    
  18592.  
  18593.  
  18594.  
  18595. <li
  18596.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  18597.  data-product-item
  18598.  data-product-quickshop-url="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18599.  
  18600. >
  18601.  <div class="productitem" data-product-item-content>
  18602.    
  18603.    
  18604.    
  18605.    
  18606.  
  18607.    
  18608.  
  18609.    
  18610.  
  18611.    <div class="productitem__container">
  18612.      
  18613.  
  18614.      <div class="productitem__image-container">
  18615.        <a target="_blank"
  18616.          class="productitem--image-link"
  18617.          href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18618.          aria-label="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18619.          tabindex="-1"
  18620.          data-product-page-link
  18621.        >
  18622.          <figure
  18623.            class="productitem--image"
  18624.            data-product-item-image
  18625.            
  18626.              style="--product-grid-item-image-aspect-ratio: 1.3333333333333333;"
  18627.            
  18628.          >
  18629.            
  18630.              
  18631.              
  18632.  
  18633.  
  18634.    <noscript data-rimg-noscript>
  18635.      <img loading="lazy"
  18636.        
  18637.          src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1759500979"
  18638.        
  18639.  
  18640.        alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18641.        data-rimg="noscript"
  18642.        srcset="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1759500979 1x, //laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_1024x768.jpg?v=1759500979 2x, //laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_1495x1121.jpg?v=1759500979 2.92x"
  18643.        class="productitem--image-primary"
  18644.        
  18645.        
  18646.      >
  18647.    </noscript>
  18648.  
  18649.  
  18650.  <img loading="lazy"
  18651.    
  18652.      src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1759500979"
  18653.    
  18654.    alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18655.  
  18656.    
  18657.      data-rimg="lazy"
  18658.      data-rimg-scale="1"
  18659.      data-rimg-template="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_{size}.jpg?v=1759500979"
  18660.      data-rimg-max="1500x1125"
  18661.      data-rimg-crop="false"
  18662.      
  18663.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='384'></svg>"
  18664.    
  18665.  
  18666.    class="productitem--image-primary"
  18667.    
  18668.    
  18669.  >
  18670.  
  18671.  
  18672.  
  18673.  <div data-rimg-canvas></div>
  18674.  
  18675.  
  18676.            
  18677.  
  18678.            
  18679.  
  18680.  
  18681.  
  18682.  
  18683.  
  18684.  
  18685.  
  18686.  
  18687.  
  18688.  
  18689.  
  18690.  
  18691.  
  18692.  
  18693.  
  18694.  
  18695.  
  18696.  
  18697.  
  18698.  
  18699.  
  18700.  
  18701.  
  18702.  
  18703.  
  18704.  
  18705.  
  18706.          </figure>
  18707.        </a>
  18708.      </div><div class="productitem--info">
  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.  
  18738.  
  18739.  
  18740.  
  18741.  
  18742.  
  18743.  
  18744.  
  18745.  
  18746. <div class="price productitem__price ">
  18747.  
  18748.    <div
  18749.      class="price__compare-at visible"
  18750.      data-price-compare-container
  18751.    >
  18752.  
  18753.      
  18754.        <span class="money price__original" data-price-original></span>
  18755.      
  18756.    </div>
  18757.  
  18758.  
  18759.    
  18760.      
  18761.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18762.        
  18763.          <span class="visually-hidden">Original price</span>
  18764.          <span class="money price__compare-at--min" data-price-compare-min>
  18765.            $56.99
  18766.          </span>
  18767.          -
  18768.          <span class="visually-hidden">Original price</span>
  18769.          <span class="money price__compare-at--max" data-price-compare-max>
  18770.            $56.99
  18771.          </span>
  18772.        
  18773.      </div>
  18774.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18775.        <span class="visually-hidden">Original price</span>
  18776.        <span class="money price__compare-at--single" data-price-compare>
  18777.          
  18778.        </span>
  18779.      </div>
  18780.    
  18781.  
  18782.  
  18783.  <div class="price__current price__current--emphasize " data-price-container>
  18784.  
  18785.    
  18786.  
  18787.    
  18788.      
  18789.      
  18790.      <span class="money" data-price>
  18791.        $56.99
  18792.      </span>
  18793.    
  18794.    
  18795.  </div>
  18796.  
  18797.  
  18798.    
  18799.    <div class="price__current--hidden" data-current-price-range-hidden>
  18800.      
  18801.        <span class="money price__current--min" data-price-min>$56.99</span>
  18802.        -
  18803.        <span class="money price__current--max" data-price-max>$56.99</span>
  18804.      
  18805.    </div>
  18806.    <div class="price__current--hidden" data-current-price-hidden>
  18807.      <span class="visually-hidden">Current price</span>
  18808.      <span class="money" data-price>
  18809.        $56.99
  18810.      </span>
  18811.    </div>
  18812.  
  18813.  
  18814.  
  18815.    
  18816.    
  18817.    
  18818.    
  18819.  
  18820.    <div
  18821.      class="
  18822.        productitem__unit-price
  18823.        hidden
  18824.      "
  18825.      data-unit-price
  18826.    >
  18827.      <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>
  18828.    </div>
  18829.  
  18830.  
  18831.  
  18832. </div>
  18833.  
  18834.  
  18835.        
  18836.  
  18837.        <h2 class="productitem--title">
  18838.          <a href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1" data-product-page-link>
  18839.            Acer Aspire 7 A715-72 A715-72G A717-72 A717-72G Laptop Cpu Fan 23.GXBN2.001
  18840.          </a>
  18841.        </h2>
  18842.  
  18843.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18844.        <div class="star_container 3929786187863"></div>
  18845.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18846.  
  18847.        
  18848.          
  18849.            <span class="productitem--vendor">
  18850.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18851.            </span>
  18852.          
  18853.        
  18854.  
  18855.        
  18856.  
  18857.        
  18858.          
  18859.            <div class="productitem__stock-level">
  18860.              <!--
  18861.  
  18862.  
  18863.  
  18864.  
  18865.  
  18866.  
  18867.  
  18868. <div class="product-stock-level-wrapper" >
  18869.  
  18870.    <span class="
  18871.  product-stock-level
  18872.  product-stock-level--continue-selling
  18873.  
  18874. ">
  18875.      
  18876.  
  18877.      <span class="product-stock-level__text">
  18878.        
  18879.        <div class="product-stock-level__badge-text">
  18880.          
  18881.  
  18882.    In stock
  18883.  
  18884.  
  18885.        </div>
  18886.      </span>
  18887.    </span>
  18888.  
  18889. </div>
  18890. -->
  18891.              
  18892.  
  18893.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  18894.  
  18895.  
  18896.  
  18897.  
  18898.  
  18899.  
  18900.  
  18901.            </div>
  18902.          
  18903.  
  18904.          
  18905.            
  18906.          
  18907.        
  18908.  
  18909.        
  18910.          <div class="productitem--description">
  18911.            <p>
  18912. Description: New Acer laptop cpu fan.
  18913.  
  18914. Compatible Part #'s: 23.GXBN2.001
  18915.  
  18916. Compatible Models:
  18917. Acer Aspire 7 A715-72, A715-72G
  18918. Acer Aspire 7 A717-7...</p>
  18919.  
  18920.            
  18921.              <a
  18922.                href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18923.                class="productitem--link"
  18924.                data-product-page-link
  18925.              >
  18926.                View full details
  18927.              </a>
  18928.            
  18929.          </div>
  18930.        
  18931.      </div>
  18932.  
  18933.      
  18934.        
  18935.          
  18936.          
  18937.          
  18938.  
  18939.          
  18940.          
  18941.  
  18942.          
  18943.  
  18944.          
  18945.  
  18946.          <div class="productitem--actions" data-product-actions>
  18947.            <div class="productitem--listview-price">
  18948.              
  18949.  
  18950.  
  18951.  
  18952.  
  18953.  
  18954.  
  18955.  
  18956.  
  18957.  
  18958.  
  18959.  
  18960.  
  18961.  
  18962.  
  18963.  
  18964.  
  18965.  
  18966.  
  18967.  
  18968.  
  18969.  
  18970.  
  18971.  
  18972.  
  18973.  
  18974.  
  18975.  
  18976.  
  18977.  
  18978.  
  18979. <div class="price productitem__price ">
  18980.  
  18981.    <div
  18982.      class="price__compare-at visible"
  18983.      data-price-compare-container
  18984.    >
  18985.  
  18986.      
  18987.        <span class="money price__original" data-price-original></span>
  18988.      
  18989.    </div>
  18990.  
  18991.  
  18992.    
  18993.      
  18994.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18995.        
  18996.          <span class="visually-hidden">Original price</span>
  18997.          <span class="money price__compare-at--min" data-price-compare-min>
  18998.            $56.99
  18999.          </span>
  19000.          -
  19001.          <span class="visually-hidden">Original price</span>
  19002.          <span class="money price__compare-at--max" data-price-compare-max>
  19003.            $56.99
  19004.          </span>
  19005.        
  19006.      </div>
  19007.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19008.        <span class="visually-hidden">Original price</span>
  19009.        <span class="money price__compare-at--single" data-price-compare>
  19010.          
  19011.        </span>
  19012.      </div>
  19013.    
  19014.  
  19015.  
  19016.  <div class="price__current price__current--emphasize " data-price-container>
  19017.  
  19018.    
  19019.  
  19020.    
  19021.      
  19022.      
  19023.      <span class="money" data-price>
  19024.        $56.99
  19025.      </span>
  19026.    
  19027.    
  19028.  </div>
  19029.  
  19030.  
  19031.    
  19032.    <div class="price__current--hidden" data-current-price-range-hidden>
  19033.      
  19034.        <span class="money price__current--min" data-price-min>$56.99</span>
  19035.        -
  19036.        <span class="money price__current--max" data-price-max>$56.99</span>
  19037.      
  19038.    </div>
  19039.    <div class="price__current--hidden" data-current-price-hidden>
  19040.      <span class="visually-hidden">Current price</span>
  19041.      <span class="money" data-price>
  19042.        $56.99
  19043.      </span>
  19044.    </div>
  19045.  
  19046.  
  19047.  
  19048.    
  19049.    
  19050.    
  19051.    
  19052.  
  19053.    <div
  19054.      class="
  19055.        productitem__unit-price
  19056.        hidden
  19057.      "
  19058.      data-unit-price
  19059.    >
  19060.      <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>
  19061.    </div>
  19062.  
  19063.  
  19064.  
  19065. </div>
  19066.  
  19067.  
  19068.            </div>
  19069.  
  19070.            <div class="productitem--listview-badge">
  19071.              
  19072.  
  19073.  
  19074.  
  19075.  
  19076.  
  19077.  
  19078.  
  19079.  
  19080.  
  19081.  
  19082.  
  19083.  
  19084.  
  19085.  
  19086.  
  19087.  
  19088.  
  19089.  
  19090.  
  19091.  
  19092.  
  19093.  
  19094.  
  19095.  
  19096.  
  19097.  
  19098.  
  19099.            </div>
  19100.  
  19101.            
  19102.              <div
  19103.                class="
  19104.                  productitem--action
  19105.                  quickshop-button
  19106.                  
  19107.                "
  19108.              >
  19109.                <button
  19110.                  class="productitem--action-trigger button-secondary"
  19111.                  data-quickshop-full
  19112.                  
  19113.                  
  19114.                  type="button"
  19115.                >
  19116.                  Quick shop
  19117.                </button>
  19118.              </div>
  19119.            
  19120.  
  19121.            
  19122.              <div
  19123.                class="
  19124.                  productitem--action
  19125.                  atc--button
  19126.                  
  19127.                "
  19128.              >
  19129.                <button
  19130.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19131.                  type="button"
  19132.                  aria-label="Add to cart"
  19133.                  
  19134.                    data-quick-buy
  19135.                  
  19136.                  data-variant-id="29440907575383"
  19137.                  
  19138.                >
  19139.                  <span class="atc-button--text">
  19140.                    Add to cart
  19141.                  </span>
  19142.                  <span class="atc-button--icon"><svg
  19143.  aria-hidden="true"
  19144.  focusable="false"
  19145.  role="presentation"
  19146.  width="26"
  19147.  height="26"
  19148.  viewBox="0 0 26 26"
  19149.  xmlns="http://www.w3.org/2000/svg"
  19150. >
  19151.  <g fill-rule="nonzero" fill="currentColor">
  19152.    <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"/>
  19153.  </g>
  19154. </svg></span>
  19155.                </button>
  19156.              </div>
  19157.            
  19158.          </div>
  19159.        
  19160.      
  19161.    </div>
  19162.  </div>
  19163.  
  19164.  
  19165.    <script type="application/json" data-quick-buy-settings>
  19166.      {
  19167.        "cart_redirection": true,
  19168.        "money_format": "${{amount}}"
  19169.      }
  19170.    </script>
  19171.  
  19172. </li>
  19173.    
  19174.      
  19175.  
  19176.  
  19177.  
  19178.  
  19179.  
  19180.  
  19181.  
  19182.  
  19183.  
  19184.  
  19185.  
  19186.  
  19187.  
  19188.  
  19189.  
  19190.  
  19191.  
  19192.  
  19193.  
  19194.  
  19195.  
  19196.  
  19197.  
  19198.  
  19199.  
  19200.  
  19201.  
  19202.  
  19203.  
  19204.  
  19205.  
  19206.  
  19207.    
  19208.  
  19209.  
  19210.  
  19211. <li
  19212.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  19213.  data-product-item
  19214.  data-product-quickshop-url="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19215.  
  19216. >
  19217.  <div class="productitem" data-product-item-content>
  19218.    
  19219.    
  19220.    
  19221.    
  19222.  
  19223.    
  19224.  
  19225.    
  19226.  
  19227.    <div class="productitem__container">
  19228.      
  19229.  
  19230.      <div class="productitem__image-container">
  19231.        <a target="_blank"
  19232.          class="productitem--image-link"
  19233.          href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19234.          aria-label="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19235.          tabindex="-1"
  19236.          data-product-page-link
  19237.        >
  19238.          <figure
  19239.            class="productitem--image"
  19240.            data-product-item-image
  19241.            
  19242.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  19243.            
  19244.          >
  19245.            
  19246.              
  19247.              
  19248.  
  19249.  
  19250.    <noscript data-rimg-noscript>
  19251.      <img loading="lazy"
  19252.        
  19253.          src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19254.        
  19255.  
  19256.        alt="Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001 - LaptopParts.ca"
  19257.        data-rimg="noscript"
  19258.        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"
  19259.        class="productitem--image-primary"
  19260.        
  19261.        
  19262.      >
  19263.    </noscript>
  19264.  
  19265.  
  19266.  <img loading="lazy"
  19267.    
  19268.      src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19269.    
  19270.    alt="Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001 - LaptopParts.ca"
  19271.  
  19272.    
  19273.      data-rimg="lazy"
  19274.      data-rimg-scale="1"
  19275.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_{size}.jpg?v=1697125259"
  19276.      data-rimg-max="2048x2048"
  19277.      data-rimg-crop="false"
  19278.      
  19279.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  19280.    
  19281.  
  19282.    class="productitem--image-primary"
  19283.    
  19284.    
  19285.  >
  19286.  
  19287.  
  19288.  
  19289.  <div data-rimg-canvas></div>
  19290.  
  19291.  
  19292.            
  19293.  
  19294.            
  19295.  
  19296.  
  19297.  
  19298.  
  19299.  
  19300.  
  19301.  
  19302.  
  19303.  
  19304.  
  19305.  
  19306.  
  19307.  
  19308.  
  19309.  
  19310.  
  19311.  
  19312.  
  19313.  
  19314.  
  19315.  
  19316.  
  19317.  
  19318.  
  19319.  
  19320.  
  19321.  
  19322.          </figure>
  19323.        </a>
  19324.      </div><div class="productitem--info">
  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.  
  19354.  
  19355.  
  19356.  
  19357.  
  19358.  
  19359.  
  19360.  
  19361.  
  19362. <div class="price productitem__price ">
  19363.  
  19364.    <div
  19365.      class="price__compare-at visible"
  19366.      data-price-compare-container
  19367.    >
  19368.  
  19369.      
  19370.        <span class="money price__original" data-price-original></span>
  19371.      
  19372.    </div>
  19373.  
  19374.  
  19375.    
  19376.      
  19377.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19378.        
  19379.          <span class="visually-hidden">Original price</span>
  19380.          <span class="money price__compare-at--min" data-price-compare-min>
  19381.            $64.99
  19382.          </span>
  19383.          -
  19384.          <span class="visually-hidden">Original price</span>
  19385.          <span class="money price__compare-at--max" data-price-compare-max>
  19386.            $64.99
  19387.          </span>
  19388.        
  19389.      </div>
  19390.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19391.        <span class="visually-hidden">Original price</span>
  19392.        <span class="money price__compare-at--single" data-price-compare>
  19393.          
  19394.        </span>
  19395.      </div>
  19396.    
  19397.  
  19398.  
  19399.  <div class="price__current price__current--emphasize " data-price-container>
  19400.  
  19401.    
  19402.  
  19403.    
  19404.      
  19405.      
  19406.      <span class="money" data-price>
  19407.        $64.99
  19408.      </span>
  19409.    
  19410.    
  19411.  </div>
  19412.  
  19413.  
  19414.    
  19415.    <div class="price__current--hidden" data-current-price-range-hidden>
  19416.      
  19417.        <span class="money price__current--min" data-price-min>$64.99</span>
  19418.        -
  19419.        <span class="money price__current--max" data-price-max>$64.99</span>
  19420.      
  19421.    </div>
  19422.    <div class="price__current--hidden" data-current-price-hidden>
  19423.      <span class="visually-hidden">Current price</span>
  19424.      <span class="money" data-price>
  19425.        $64.99
  19426.      </span>
  19427.    </div>
  19428.  
  19429.  
  19430.  
  19431.    
  19432.    
  19433.    
  19434.    
  19435.  
  19436.    <div
  19437.      class="
  19438.        productitem__unit-price
  19439.        hidden
  19440.      "
  19441.      data-unit-price
  19442.    >
  19443.      <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>
  19444.    </div>
  19445.  
  19446.  
  19447.  
  19448. </div>
  19449.  
  19450.  
  19451.        
  19452.  
  19453.        <h2 class="productitem--title">
  19454.          <a href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001" data-product-page-link>
  19455.            Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001
  19456.          </a>
  19457.        </h2>
  19458.  
  19459.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  19460.        <div class="star_container 3929790414935"></div>
  19461.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  19462.  
  19463.        
  19464.          
  19465.            <span class="productitem--vendor">
  19466.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  19467.            </span>
  19468.          
  19469.        
  19470.  
  19471.        
  19472.  
  19473.        
  19474.          
  19475.            <div class="productitem__stock-level">
  19476.              <!--
  19477.  
  19478.  
  19479.  
  19480.  
  19481.  
  19482.  
  19483.  
  19484. <div class="product-stock-level-wrapper" >
  19485.  
  19486.    <span class="
  19487.  product-stock-level
  19488.  product-stock-level--continue-selling
  19489.  
  19490. ">
  19491.      
  19492.  
  19493.      <span class="product-stock-level__text">
  19494.        
  19495.        <div class="product-stock-level__badge-text">
  19496.          
  19497.  
  19498.    In stock
  19499.  
  19500.  
  19501.        </div>
  19502.      </span>
  19503.    </span>
  19504.  
  19505. </div>
  19506. -->
  19507.              
  19508.  
  19509.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  19510.  
  19511.  
  19512.  
  19513.  
  19514.  
  19515.  
  19516.  
  19517.            </div>
  19518.          
  19519.  
  19520.          
  19521.            
  19522.          
  19523.        
  19524.  
  19525.        
  19526.          <div class="productitem--description">
  19527.            <p>
  19528. Description: New genuine Acer laptop dc jack cable. 45 watt version.
  19529.  
  19530. Compatible Part #'s: 50.GNSN7.001
  19531.  
  19532. Compatible Models:
  19533. Acer Aspire 1 A114-31
  19534. ...</p>
  19535.  
  19536.            
  19537.              <a
  19538.                href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19539.                class="productitem--link"
  19540.                data-product-page-link
  19541.              >
  19542.                View full details
  19543.              </a>
  19544.            
  19545.          </div>
  19546.        
  19547.      </div>
  19548.  
  19549.      
  19550.        
  19551.          
  19552.          
  19553.          
  19554.  
  19555.          
  19556.          
  19557.  
  19558.          
  19559.  
  19560.          
  19561.  
  19562.          <div class="productitem--actions" data-product-actions>
  19563.            <div class="productitem--listview-price">
  19564.              
  19565.  
  19566.  
  19567.  
  19568.  
  19569.  
  19570.  
  19571.  
  19572.  
  19573.  
  19574.  
  19575.  
  19576.  
  19577.  
  19578.  
  19579.  
  19580.  
  19581.  
  19582.  
  19583.  
  19584.  
  19585.  
  19586.  
  19587.  
  19588.  
  19589.  
  19590.  
  19591.  
  19592.  
  19593.  
  19594.  
  19595. <div class="price productitem__price ">
  19596.  
  19597.    <div
  19598.      class="price__compare-at visible"
  19599.      data-price-compare-container
  19600.    >
  19601.  
  19602.      
  19603.        <span class="money price__original" data-price-original></span>
  19604.      
  19605.    </div>
  19606.  
  19607.  
  19608.    
  19609.      
  19610.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19611.        
  19612.          <span class="visually-hidden">Original price</span>
  19613.          <span class="money price__compare-at--min" data-price-compare-min>
  19614.            $64.99
  19615.          </span>
  19616.          -
  19617.          <span class="visually-hidden">Original price</span>
  19618.          <span class="money price__compare-at--max" data-price-compare-max>
  19619.            $64.99
  19620.          </span>
  19621.        
  19622.      </div>
  19623.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19624.        <span class="visually-hidden">Original price</span>
  19625.        <span class="money price__compare-at--single" data-price-compare>
  19626.          
  19627.        </span>
  19628.      </div>
  19629.    
  19630.  
  19631.  
  19632.  <div class="price__current price__current--emphasize " data-price-container>
  19633.  
  19634.    
  19635.  
  19636.    
  19637.      
  19638.      
  19639.      <span class="money" data-price>
  19640.        $64.99
  19641.      </span>
  19642.    
  19643.    
  19644.  </div>
  19645.  
  19646.  
  19647.    
  19648.    <div class="price__current--hidden" data-current-price-range-hidden>
  19649.      
  19650.        <span class="money price__current--min" data-price-min>$64.99</span>
  19651.        -
  19652.        <span class="money price__current--max" data-price-max>$64.99</span>
  19653.      
  19654.    </div>
  19655.    <div class="price__current--hidden" data-current-price-hidden>
  19656.      <span class="visually-hidden">Current price</span>
  19657.      <span class="money" data-price>
  19658.        $64.99
  19659.      </span>
  19660.    </div>
  19661.  
  19662.  
  19663.  
  19664.    
  19665.    
  19666.    
  19667.    
  19668.  
  19669.    <div
  19670.      class="
  19671.        productitem__unit-price
  19672.        hidden
  19673.      "
  19674.      data-unit-price
  19675.    >
  19676.      <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>
  19677.    </div>
  19678.  
  19679.  
  19680.  
  19681. </div>
  19682.  
  19683.  
  19684.            </div>
  19685.  
  19686.            <div class="productitem--listview-badge">
  19687.              
  19688.  
  19689.  
  19690.  
  19691.  
  19692.  
  19693.  
  19694.  
  19695.  
  19696.  
  19697.  
  19698.  
  19699.  
  19700.  
  19701.  
  19702.  
  19703.  
  19704.  
  19705.  
  19706.  
  19707.  
  19708.  
  19709.  
  19710.  
  19711.  
  19712.  
  19713.  
  19714.  
  19715.            </div>
  19716.  
  19717.            
  19718.              <div
  19719.                class="
  19720.                  productitem--action
  19721.                  quickshop-button
  19722.                  
  19723.                "
  19724.              >
  19725.                <button
  19726.                  class="productitem--action-trigger button-secondary"
  19727.                  data-quickshop-full
  19728.                  
  19729.                  
  19730.                  type="button"
  19731.                >
  19732.                  Quick shop
  19733.                </button>
  19734.              </div>
  19735.            
  19736.  
  19737.            
  19738.              <div
  19739.                class="
  19740.                  productitem--action
  19741.                  atc--button
  19742.                  
  19743.                "
  19744.              >
  19745.                <button
  19746.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19747.                  type="button"
  19748.                  aria-label="Add to cart"
  19749.                  
  19750.                    data-quick-buy
  19751.                  
  19752.                  data-variant-id="29408090816599"
  19753.                  
  19754.                >
  19755.                  <span class="atc-button--text">
  19756.                    Add to cart
  19757.                  </span>
  19758.                  <span class="atc-button--icon"><svg
  19759.  aria-hidden="true"
  19760.  focusable="false"
  19761.  role="presentation"
  19762.  width="26"
  19763.  height="26"
  19764.  viewBox="0 0 26 26"
  19765.  xmlns="http://www.w3.org/2000/svg"
  19766. >
  19767.  <g fill-rule="nonzero" fill="currentColor">
  19768.    <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"/>
  19769.  </g>
  19770. </svg></span>
  19771.                </button>
  19772.              </div>
  19773.            
  19774.          </div>
  19775.        
  19776.      
  19777.    </div>
  19778.  </div>
  19779.  
  19780.  
  19781.    <script type="application/json" data-quick-buy-settings>
  19782.      {
  19783.        "cart_redirection": true,
  19784.        "money_format": "${{amount}}"
  19785.      }
  19786.    </script>
  19787.  
  19788. </li>
  19789.    
  19790.  
  19791.    
  19792.  </ul>
  19793.  
  19794.  
  19795.    
  19796.      <a
  19797.        class="
  19798.          button-primary
  19799.          featured-collection__button
  19800.        "
  19801.        href="/collections/shop-the-best-selling"
  19802.      >
  19803.        View All
  19804.      </a>
  19805.    
  19806.  
  19807. </section>
  19808.  
  19809.  
  19810. <div class="productitem-quickshop" data-product-quickshop>
  19811.  <span class="quickshop-spinner"><svg
  19812.  aria-hidden="true"
  19813.  focusable="false"
  19814.  role="presentation"
  19815.  width="26"
  19816.  height="26"
  19817.  viewBox="0 0 26 26"
  19818.  xmlns="http://www.w3.org/2000/svg"
  19819. >
  19820.  <g fill-rule="nonzero" fill="currentColor">
  19821.    <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"/>
  19822.  </g>
  19823. </svg></span>
  19824. </div>
  19825.  
  19826.  
  19827. </div><div id="shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114" class="shopify-section slideshow--section">
  19828.  
  19829.  
  19830.  
  19831. <script type="application/pxs-animation-mapping+json">
  19832.  {
  19833.    "blocks": [".slideshow-slide"],
  19834.    "elements": [
  19835.      ".slideshow-slide__heading",
  19836.      ".slideshow-slide__subheading",
  19837.      ".slideshow-slide__text",
  19838.      ".slideshow-slide__button"
  19839.    ]
  19840.  }
  19841. </script>
  19842.  
  19843. <style data-shopify>
  19844.  #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 {
  19845.    --autoplay-interval: 5s;
  19846.  }
  19847.  
  19848.  
  19849.    @media screen and (min-width: 720px) {
  19850.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19851.        height: vw;
  19852.      }
  19853.    }
  19854.  
  19855.  
  19856.  
  19857.    @media screen and (max-width: 719px) {
  19858.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19859.        
  19860.          height: vw;
  19861.        
  19862.      }
  19863.    }
  19864.  
  19865. </style>
  19866.  
  19867.  
  19868.  
  19869.  
  19870. <script
  19871.  type="application/json"
  19872.  data-section-type="pxs-slideshow"
  19873.  data-section-id="template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114"
  19874.  data-section-data
  19875. >
  19876.  {
  19877.    "enable_autoplay": true,
  19878.    "autoplay_interval": 5,
  19879.    "mobile_navigation_adjust": true,
  19880.    "transition_fade": null,
  19881.    "slide_attraction": null,
  19882.    "slide_friction": null,
  19883.    "next_text": "Next slide",
  19884.    "previous_text": "Previous slide"
  19885.  }
  19886. </script>
  19887.  
  19888. <section
  19889.  class="
  19890.    slideshow
  19891.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  19892.  "
  19893.  aria-label="Slideshow"
  19894.  data-autoplay="true"
  19895.  data-autoplay-interval="5"
  19896.  data-banner="false"
  19897.  data-slideshow
  19898. ><div
  19899.    class="slideshow__wrapper "
  19900.    data-slideshow-wrapper
  19901.  ></div><div
  19902.    class="slideshow__current-slide visually-hidden"
  19903.    aria-live="polite"
  19904.    aria-atomic="true"
  19905.    data-slide-counter
  19906.    data-counter-template="Slide {{ count }} of {{ total }}"
  19907.  >
  19908.  </div>
  19909. </section>
  19910.  
  19911.  
  19912.  
  19913. </div><div id="shopify-section-template--15492296147031__516e59b8-141e-43e3-8f1d-46287735da01" class="shopify-section logolist--section"><script type="application/pxs-animation-mapping+json">
  19914.  {
  19915.    "blocks": [".logolist--inner"],
  19916.    "elements": [
  19917.      ".logolist--item"
  19918.    ]
  19919.  }
  19920. </script>
  19921.  
  19922. <section class="logolist--container">
  19923.  
  19924.    <h2 class="home-section--title">
  19925.      Search By Brands
  19926.    </h2>
  19927.  
  19928.  
  19929.  <div class="home-section--content logolist--inner">
  19930.    
  19931.      <div class="logolist--item" >
  19932.        
  19933.          <a
  19934.            class="logolist--link"
  19935.            href="/collections/acer-parts-canada"
  19936.            target="_blank"
  19937.          >
  19938.        
  19939.  
  19940.        
  19941.          
  19942.  
  19943.  
  19944.    <noscript data-rimg-noscript>
  19945.      <img loading="lazy"
  19946.        
  19947.          src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19948.        
  19949.  
  19950.        alt=""
  19951.        data-rimg="noscript"
  19952.        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"
  19953.        class="logolist--image"
  19954.        style="
  19955.        object-fit:cover;object-position:50.0% 50.0%;
  19956.      
  19957. "
  19958.        
  19959.      >
  19960.    </noscript>
  19961.  
  19962.  
  19963.  <img loading="lazy"
  19964.    
  19965.      src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19966.    
  19967.    alt=""
  19968.  
  19969.    
  19970.      data-rimg="lazy"
  19971.      data-rimg-scale="1"
  19972.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Acer_{size}.png?v=1698309818"
  19973.      data-rimg-max="1024x247"
  19974.      data-rimg-crop="false"
  19975.      
  19976.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='39'></svg>"
  19977.    
  19978.  
  19979.    class="logolist--image"
  19980.    style="
  19981.        object-fit:cover;object-position:50.0% 50.0%;
  19982.      
  19983. "
  19984.    
  19985.  >
  19986.  
  19987.  
  19988.  
  19989.  <div data-rimg-canvas></div>
  19990.  
  19991.  
  19992.        
  19993.  
  19994.        
  19995.          </a>
  19996.        
  19997.      </div>
  19998.    
  19999.      <div class="logolist--item" >
  20000.        
  20001.          <a
  20002.            class="logolist--link"
  20003.            href="/collections/dell-laptop-batteries"
  20004.            target="_blank"
  20005.          >
  20006.        
  20007.  
  20008.        
  20009.          
  20010.  
  20011.  
  20012.    <noscript data-rimg-noscript>
  20013.      <img loading="lazy"
  20014.        
  20015.          src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  20016.        
  20017.  
  20018.        alt=""
  20019.        data-rimg="noscript"
  20020.        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"
  20021.        class="logolist--image"
  20022.        style="
  20023.        object-fit:cover;object-position:50.0% 50.0%;
  20024.      
  20025. "
  20026.        
  20027.      >
  20028.    </noscript>
  20029.  
  20030.  
  20031.  <img loading="lazy"
  20032.    
  20033.      src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  20034.    
  20035.    alt=""
  20036.  
  20037.    
  20038.      data-rimg="lazy"
  20039.      data-rimg-scale="1"
  20040.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_{size}.png?v=1698309835"
  20041.      data-rimg-max="2048x2048"
  20042.      data-rimg-crop="false"
  20043.      
  20044.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20045.    
  20046.  
  20047.    class="logolist--image"
  20048.    style="
  20049.        object-fit:cover;object-position:50.0% 50.0%;
  20050.      
  20051. "
  20052.    
  20053.  >
  20054.  
  20055.  
  20056.  
  20057.  <div data-rimg-canvas></div>
  20058.  
  20059.  
  20060.        
  20061.  
  20062.        
  20063.          </a>
  20064.        
  20065.      </div>
  20066.    
  20067.      <div class="logolist--item" >
  20068.        
  20069.          <a
  20070.            class="logolist--link"
  20071.            href="/collections/asus"
  20072.            target="_blank"
  20073.          >
  20074.        
  20075.  
  20076.        
  20077.          
  20078.  
  20079.  
  20080.    <noscript data-rimg-noscript>
  20081.      <img loading="lazy"
  20082.        
  20083.          src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20084.        
  20085.  
  20086.        alt=""
  20087.        data-rimg="noscript"
  20088.        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"
  20089.        class="logolist--image"
  20090.        style="
  20091.        object-fit:cover;object-position:50.0% 50.0%;
  20092.      
  20093. "
  20094.        
  20095.      >
  20096.    </noscript>
  20097.  
  20098.  
  20099.  <img loading="lazy"
  20100.    
  20101.      src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20102.    
  20103.    alt=""
  20104.  
  20105.    
  20106.      data-rimg="lazy"
  20107.      data-rimg-scale="1"
  20108.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Asus_{size}.png?v=1698309865"
  20109.      data-rimg-max="504x100"
  20110.      data-rimg-crop="false"
  20111.      
  20112.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='32'></svg>"
  20113.    
  20114.  
  20115.    class="logolist--image"
  20116.    style="
  20117.        object-fit:cover;object-position:50.0% 50.0%;
  20118.      
  20119. "
  20120.    
  20121.  >
  20122.  
  20123.  
  20124.  
  20125.  <div data-rimg-canvas></div>
  20126.  
  20127.  
  20128.        
  20129.  
  20130.        
  20131.          </a>
  20132.        
  20133.      </div>
  20134.    
  20135.      <div class="logolist--item" >
  20136.        
  20137.          <a
  20138.            class="logolist--link"
  20139.            href="/collections/fujitsu"
  20140.            target="_blank"
  20141.          >
  20142.        
  20143.  
  20144.        
  20145.          
  20146.  
  20147.  
  20148.    <noscript data-rimg-noscript>
  20149.      <img loading="lazy"
  20150.        
  20151.          src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20152.        
  20153.  
  20154.        alt=""
  20155.        data-rimg="noscript"
  20156.        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"
  20157.        class="logolist--image"
  20158.        style="
  20159.        object-fit:cover;object-position:50.0% 50.0%;
  20160.      
  20161. "
  20162.        
  20163.      >
  20164.    </noscript>
  20165.  
  20166.  
  20167.  <img loading="lazy"
  20168.    
  20169.      src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20170.    
  20171.    alt=""
  20172.  
  20173.    
  20174.      data-rimg="lazy"
  20175.      data-rimg-scale="1"
  20176.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_{size}.png?v=1698309977"
  20177.      data-rimg-max="1280x602"
  20178.      data-rimg-crop="false"
  20179.      
  20180.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='76'></svg>"
  20181.    
  20182.  
  20183.    class="logolist--image"
  20184.    style="
  20185.        object-fit:cover;object-position:50.0% 50.0%;
  20186.      
  20187. "
  20188.    
  20189.  >
  20190.  
  20191.  
  20192.  
  20193.  <div data-rimg-canvas></div>
  20194.  
  20195.  
  20196.        
  20197.  
  20198.        
  20199.          </a>
  20200.        
  20201.      </div>
  20202.    
  20203.      <div class="logolist--item" >
  20204.        
  20205.          <a
  20206.            class="logolist--link"
  20207.            href="/collections/samsung"
  20208.            target="_blank"
  20209.          >
  20210.        
  20211.  
  20212.        
  20213.          
  20214.  
  20215.  
  20216.    <noscript data-rimg-noscript>
  20217.      <img loading="lazy"
  20218.        
  20219.          src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20220.        
  20221.  
  20222.        alt=""
  20223.        data-rimg="noscript"
  20224.        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"
  20225.        class="logolist--image"
  20226.        style="
  20227.        object-fit:cover;object-position:50.0% 50.0%;
  20228.      
  20229. "
  20230.        
  20231.      >
  20232.    </noscript>
  20233.  
  20234.  
  20235.  <img loading="lazy"
  20236.    
  20237.      src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20238.    
  20239.    alt=""
  20240.  
  20241.    
  20242.      data-rimg="lazy"
  20243.      data-rimg-scale="1"
  20244.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_{size}.png?v=1698309930"
  20245.      data-rimg-max="7051x1080"
  20246.      data-rimg-crop="false"
  20247.      
  20248.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20249.    
  20250.  
  20251.    class="logolist--image"
  20252.    style="
  20253.        object-fit:cover;object-position:50.0% 50.0%;
  20254.      
  20255. "
  20256.    
  20257.  >
  20258.  
  20259.  
  20260.  
  20261.  <div data-rimg-canvas></div>
  20262.  
  20263.  
  20264.        
  20265.  
  20266.        
  20267.          </a>
  20268.        
  20269.      </div>
  20270.    
  20271.      <div class="logolist--item" >
  20272.        
  20273.          <a
  20274.            class="logolist--link"
  20275.            href="/collections/apple"
  20276.            target="_blank"
  20277.          >
  20278.        
  20279.  
  20280.        
  20281.          
  20282.  
  20283.  
  20284.    <noscript data-rimg-noscript>
  20285.      <img loading="lazy"
  20286.        
  20287.          src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20288.        
  20289.  
  20290.        alt=""
  20291.        data-rimg="noscript"
  20292.        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"
  20293.        class="logolist--image"
  20294.        style="
  20295.        object-fit:cover;object-position:50.0% 50.0%;
  20296.      
  20297. "
  20298.        
  20299.      >
  20300.    </noscript>
  20301.  
  20302.  
  20303.  <img loading="lazy"
  20304.    
  20305.      src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20306.    
  20307.    alt=""
  20308.  
  20309.    
  20310.      data-rimg="lazy"
  20311.      data-rimg-scale="1"
  20312.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Apple-Logo_{size}.jpg?v=1698309948"
  20313.      data-rimg-max="3840x2160"
  20314.      data-rimg-crop="false"
  20315.      
  20316.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='90'></svg>"
  20317.    
  20318.  
  20319.    class="logolist--image"
  20320.    style="
  20321.        object-fit:cover;object-position:50.0% 50.0%;
  20322.      
  20323. "
  20324.    
  20325.  >
  20326.  
  20327.  
  20328.  
  20329.  <div data-rimg-canvas></div>
  20330.  
  20331.  
  20332.        
  20333.  
  20334.        
  20335.          </a>
  20336.        
  20337.      </div>
  20338.    
  20339.      <div class="logolist--item" >
  20340.        
  20341.          <a
  20342.            class="logolist--link"
  20343.            href="/collections/hp-laptop-battery"
  20344.            target="_blank"
  20345.          >
  20346.        
  20347.  
  20348.        
  20349.          
  20350.  
  20351.  
  20352.    <noscript data-rimg-noscript>
  20353.      <img loading="lazy"
  20354.        
  20355.          src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20356.        
  20357.  
  20358.        alt=""
  20359.        data-rimg="noscript"
  20360.        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"
  20361.        class="logolist--image"
  20362.        style="
  20363.        object-fit:cover;object-position:50.0% 50.0%;
  20364.      
  20365. "
  20366.        
  20367.      >
  20368.    </noscript>
  20369.  
  20370.  
  20371.  <img loading="lazy"
  20372.    
  20373.      src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20374.    
  20375.    alt=""
  20376.  
  20377.    
  20378.      data-rimg="lazy"
  20379.      data-rimg-scale="1"
  20380.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_{size}.png?v=1698310007"
  20381.      data-rimg-max="2048x2048"
  20382.      data-rimg-crop="false"
  20383.      
  20384.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20385.    
  20386.  
  20387.    class="logolist--image"
  20388.    style="
  20389.        object-fit:cover;object-position:50.0% 50.0%;
  20390.      
  20391. "
  20392.    
  20393.  >
  20394.  
  20395.  
  20396.  
  20397.  <div data-rimg-canvas></div>
  20398.  
  20399.  
  20400.        
  20401.  
  20402.        
  20403.          </a>
  20404.        
  20405.      </div>
  20406.    
  20407.      <div class="logolist--item" >
  20408.        
  20409.          <a
  20410.            class="logolist--link"
  20411.            href="/collections/all"
  20412.            target="_blank"
  20413.          >
  20414.        
  20415.  
  20416.        
  20417.          
  20418.  
  20419.  
  20420.    <noscript data-rimg-noscript>
  20421.      <img loading="lazy"
  20422.        
  20423.          src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20424.        
  20425.  
  20426.        alt=""
  20427.        data-rimg="noscript"
  20428.        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"
  20429.        class="logolist--image"
  20430.        style="
  20431.        object-fit:cover;object-position:50.0% 50.0%;
  20432.      
  20433. "
  20434.        
  20435.      >
  20436.    </noscript>
  20437.  
  20438.  
  20439.  <img loading="lazy"
  20440.    
  20441.      src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20442.    
  20443.    alt=""
  20444.  
  20445.    
  20446.      data-rimg="lazy"
  20447.      data-rimg-scale="1"
  20448.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_{size}.png?v=1698310074"
  20449.      data-rimg-max="5000x3125"
  20450.      data-rimg-crop="false"
  20451.      
  20452.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='100'></svg>"
  20453.    
  20454.  
  20455.    class="logolist--image"
  20456.    style="
  20457.        object-fit:cover;object-position:50.0% 50.0%;
  20458.      
  20459. "
  20460.    
  20461.  >
  20462.  
  20463.  
  20464.  
  20465.  <div data-rimg-canvas></div>
  20466.  
  20467.  
  20468.        
  20469.  
  20470.        
  20471.          </a>
  20472.        
  20473.      </div>
  20474.    
  20475.      <div class="logolist--item" >
  20476.        
  20477.          <a
  20478.            class="logolist--link"
  20479.            href="/collections/all"
  20480.            target="_blank"
  20481.          >
  20482.        
  20483.  
  20484.        
  20485.          
  20486.  
  20487.  
  20488.    <noscript data-rimg-noscript>
  20489.      <img loading="lazy"
  20490.        
  20491.          src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20492.        
  20493.  
  20494.        alt=""
  20495.        data-rimg="noscript"
  20496.        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"
  20497.        class="logolist--image"
  20498.        style="
  20499.        object-fit:cover;object-position:50.0% 50.0%;
  20500.      
  20501. "
  20502.        
  20503.      >
  20504.    </noscript>
  20505.  
  20506.  
  20507.  <img loading="lazy"
  20508.    
  20509.      src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20510.    
  20511.    alt=""
  20512.  
  20513.    
  20514.      data-rimg="lazy"
  20515.      data-rimg-scale="1"
  20516.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Alienware_{size}.png?v=1698310052"
  20517.      data-rimg-max="860x231"
  20518.      data-rimg-crop="false"
  20519.      
  20520.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='43'></svg>"
  20521.    
  20522.  
  20523.    class="logolist--image"
  20524.    style="
  20525.        object-fit:cover;object-position:50.0% 50.0%;
  20526.      
  20527. "
  20528.    
  20529.  >
  20530.  
  20531.  
  20532.  
  20533.  <div data-rimg-canvas></div>
  20534.  
  20535.  
  20536.        
  20537.  
  20538.        
  20539.          </a>
  20540.        
  20541.      </div>
  20542.    
  20543.      <div class="logolist--item" >
  20544.        
  20545.          <a
  20546.            class="logolist--link"
  20547.            href="/collections/all"
  20548.            target="_blank"
  20549.          >
  20550.        
  20551.  
  20552.        
  20553.          
  20554.  
  20555.  
  20556.    <noscript data-rimg-noscript>
  20557.      <img loading="lazy"
  20558.        
  20559.          src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20560.        
  20561.  
  20562.        alt=""
  20563.        data-rimg="noscript"
  20564.        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"
  20565.        class="logolist--image"
  20566.        style="
  20567.        object-fit:cover;object-position:50.0% 50.0%;
  20568.      
  20569. "
  20570.        
  20571.      >
  20572.    </noscript>
  20573.  
  20574.  
  20575.  <img loading="lazy"
  20576.    
  20577.      src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20578.    
  20579.    alt=""
  20580.  
  20581.    
  20582.      data-rimg="lazy"
  20583.      data-rimg-scale="1"
  20584.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_{size}.png?v=1698310106"
  20585.      data-rimg-max="1200x183"
  20586.      data-rimg-crop="false"
  20587.      
  20588.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20589.    
  20590.  
  20591.    class="logolist--image"
  20592.    style="
  20593.        object-fit:cover;object-position:50.0% 50.0%;
  20594.      
  20595. "
  20596.    
  20597.  >
  20598.  
  20599.  
  20600.  
  20601.  <div data-rimg-canvas></div>
  20602.  
  20603.  
  20604.        
  20605.  
  20606.        
  20607.          </a>
  20608.        
  20609.      </div>
  20610.    
  20611.      <div class="logolist--item" >
  20612.        
  20613.          <a
  20614.            class="logolist--link"
  20615.            href="/collections/all"
  20616.            target="_blank"
  20617.          >
  20618.        
  20619.  
  20620.        
  20621.          
  20622.  
  20623.  
  20624.    <noscript data-rimg-noscript>
  20625.      <img loading="lazy"
  20626.        
  20627.          src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20628.        
  20629.  
  20630.        alt=""
  20631.        data-rimg="noscript"
  20632.        srcset="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364 1x, //laptopparts.ca/cdn/shop/files/Panasonic_224x224.png?v=1698310364 1.4x"
  20633.        class="logolist--image"
  20634.        style="
  20635.        object-fit:cover;object-position:50.0% 50.0%;
  20636.      
  20637. "
  20638.        
  20639.      >
  20640.    </noscript>
  20641.  
  20642.  
  20643.  <img loading="lazy"
  20644.    
  20645.      src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20646.    
  20647.    alt=""
  20648.  
  20649.    
  20650.      data-rimg="lazy"
  20651.      data-rimg-scale="1"
  20652.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Panasonic_{size}.png?v=1698310364"
  20653.      data-rimg-max="225x225"
  20654.      data-rimg-crop="false"
  20655.      
  20656.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20657.    
  20658.  
  20659.    class="logolist--image"
  20660.    style="
  20661.        object-fit:cover;object-position:50.0% 50.0%;
  20662.      
  20663. "
  20664.    
  20665.  >
  20666.  
  20667.  
  20668.  
  20669.  <div data-rimg-canvas></div>
  20670.  
  20671.  
  20672.        
  20673.  
  20674.        
  20675.          </a>
  20676.        
  20677.      </div>
  20678.    
  20679.      <div class="logolist--item" >
  20680.        
  20681.          <a
  20682.            class="logolist--link"
  20683.            href="/collections/all"
  20684.            target="_blank"
  20685.          >
  20686.        
  20687.  
  20688.        
  20689.          
  20690.  
  20691.  
  20692.    <noscript data-rimg-noscript>
  20693.      <img loading="lazy"
  20694.        
  20695.          src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20696.        
  20697.  
  20698.        alt=""
  20699.        data-rimg="noscript"
  20700.        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"
  20701.        class="logolist--image"
  20702.        style="
  20703.        object-fit:cover;object-position:50.0% 50.0%;
  20704.      
  20705. "
  20706.        
  20707.      >
  20708.    </noscript>
  20709.  
  20710.  
  20711.  <img loading="lazy"
  20712.    
  20713.      src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20714.    
  20715.    alt=""
  20716.  
  20717.    
  20718.      data-rimg="lazy"
  20719.      data-rimg-scale="1"
  20720.      data-rimg-template="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_{size}.png?v=1698310433"
  20721.      data-rimg-max="666x375"
  20722.      data-rimg-crop="false"
  20723.      
  20724.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='91'></svg>"
  20725.    
  20726.  
  20727.    class="logolist--image"
  20728.    style="
  20729.        object-fit:cover;object-position:50.0% 50.0%;
  20730.      
  20731. "
  20732.    
  20733.  >
  20734.  
  20735.  
  20736.  
  20737.  <div data-rimg-canvas></div>
  20738.  
  20739.  
  20740.        
  20741.  
  20742.        
  20743.          </a>
  20744.        
  20745.      </div>
  20746.    
  20747.  </div>
  20748. </section>
  20749.  
  20750. </div><div id="shopify-section-template--15492296147031__16962663497dd9ec87" class="shopify-section"><div class="product-section--container">
  20751.  
  20752. </div>
  20753.  
  20754.  
  20755. </div><div id="shopify-section-template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706" class="shopify-section highlights-banner"><script
  20756.  type="application/json"
  20757.  data-section-type="dynamic-highlights-banner"
  20758.  data-section-id="template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706">
  20759. </script>
  20760.  
  20761. <style>
  20762.  
  20763.  
  20764.    .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706.highlights-banner__container {
  20765.      background-color: #000000;
  20766.    }
  20767.  
  20768.  
  20769.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:before {
  20770.    background: linear-gradient( to right, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20771.  }
  20772.  
  20773.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:after {
  20774.    background: linear-gradient( to left, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20775.  }
  20776.  
  20777.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__block {
  20778.    color: #ffffff;
  20779.  }
  20780.  
  20781.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__icon {
  20782.    color: #fe0000;
  20783.  }
  20784. </style>
  20785.  
  20786. <script type="application/pxs-animation-mapping+json">
  20787.  {
  20788.    "blocks": [".highlights-banners-block"],
  20789.    "elements": []
  20790.  }
  20791. </script>
  20792.  
  20793. <div class="
  20794.  highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706
  20795.  highlights-banner__container
  20796.  highlights-banner__mobile-layout--slider
  20797.  full-width
  20798.  "
  20799. >
  20800.  <div class="highlights-banner__content highlight-banner__count-4"
  20801.   data-highlights-slider
  20802.  >
  20803.    
  20804.      
  20805.        <div
  20806.          class="highlights-banner__block highlights-banner__align-left"
  20807.          
  20808.          data-highlights-block
  20809.        >
  20810.          
  20811.            <div class="highlights-banner__icon">
  20812.              
  20813.                
  20814.  
  20815.  
  20816.                                                                    <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>                                                
  20817.  
  20818.              
  20819.            </div>
  20820.          
  20821.  
  20822.          <div class="highlights-banner__text">
  20823.            
  20824.              <span class="highlights-banner__heading">
  20825.                Quality and Saving
  20826.              </span>
  20827.            
  20828.  
  20829.            
  20830.              <p>Comprehensive quality control and affordable prices</p>
  20831.            
  20832.          </div>
  20833.          
  20834.        </div>
  20835.      
  20836.    
  20837.      
  20838.        <div
  20839.          class="highlights-banner__block highlights-banner__align-left"
  20840.          
  20841.          data-highlights-block
  20842.        >
  20843.          
  20844.            <div class="highlights-banner__icon">
  20845.              
  20846.                
  20847.  
  20848.  
  20849.                                  <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>                                                                                  
  20850.  
  20851.              
  20852.            </div>
  20853.          
  20854.  
  20855.          <div class="highlights-banner__text">
  20856.            
  20857.              <span class="highlights-banner__heading">
  20858.                Huge Inventory
  20859.              </span>
  20860.            
  20861.  
  20862.            
  20863.              <p>largest available inventory of parts in Canada</p>
  20864.            
  20865.          </div>
  20866.          
  20867.        </div>
  20868.      
  20869.    
  20870.      
  20871.        <div
  20872.          class="highlights-banner__block highlights-banner__align-left"
  20873.          
  20874.          data-highlights-block
  20875.        >
  20876.          
  20877.            <div class="highlights-banner__icon">
  20878.              
  20879.                
  20880.  
  20881.  
  20882.                            <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>                                                                                        
  20883.  
  20884.              
  20885.            </div>
  20886.          
  20887.  
  20888.          <div class="highlights-banner__text">
  20889.            
  20890.              <span class="highlights-banner__heading">
  20891.                Fast Shipping
  20892.              </span>
  20893.            
  20894.  
  20895.            
  20896.              <p>Fast and convenient door to door delivery</p>
  20897.            
  20898.          </div>
  20899.          
  20900.        </div>
  20901.      
  20902.    
  20903.      
  20904.        <div
  20905.          class="highlights-banner__block highlights-banner__align-left"
  20906.          
  20907.          data-highlights-block
  20908.        >
  20909.          
  20910.            <div class="highlights-banner__icon">
  20911.              
  20912.                
  20913.  
  20914.  
  20915.                          <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>                                                                                          
  20916.  
  20917.              
  20918.            </div>
  20919.          
  20920.  
  20921.          <div class="highlights-banner__text">
  20922.            
  20923.              <span class="highlights-banner__heading">
  20924.                Payment Security
  20925.              </span>
  20926.            
  20927.  
  20928.            
  20929.              <p>We have secured payment methods</p>
  20930.            
  20931.          </div>
  20932.          
  20933.        </div>
  20934.      
  20935.    
  20936.  </div>
  20937. </div>
  20938.  
  20939. </div><div id="shopify-section-template--15492296147031__dynamic_html_knfnMB" class="shopify-section html--section"><script
  20940.  type="application/json"
  20941.  data-section-id="template--15492296147031__dynamic_html_knfnMB"
  20942.  data-section-type="dynamic-html"
  20943. ></script>
  20944.  
  20945. <section class="custom-html--container">
  20946.  
  20947.  <div class="rte" data-rte>
  20948.    <h1 style="text-align:center; margin-bottom:-50px">ABOUT US</h1>
  20949.  </div>
  20950. </section>
  20951.  
  20952. </div><div id="shopify-section-template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0" class="shopify-section rich-text--section"><script
  20953.  type="application/json"
  20954.  data-section-id="template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0"
  20955.  data-section-type="dynamic-rich-text"
  20956. ></script>
  20957.  
  20958. <script type="application/pxs-animation-mapping+json">
  20959.  {
  20960.    "blocks": [".rich-text-block"],
  20961.    "elements": []
  20962.  }
  20963. </script>
  20964.  
  20965. <section
  20966.  class="
  20967.    rich-text--container
  20968.    rich-text-full-width
  20969.  "
  20970. >
  20971.    <div
  20972.      class="
  20973.        rich-text-block
  20974.        rich-text-alignment-center
  20975.      "
  20976.      
  20977.    >
  20978.        
  20979.  
  20980.        
  20981.          <div class="rich-text-content rte" data-rte>
  20982.            <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>
  20983.          </div>
  20984.        
  20985.    </div>
  20986. </section>
  20987.  
  20988. </div><div id="shopify-section-template--15492296147031__dynamic_html_fKi4qq" class="shopify-section html--section"><script
  20989.  type="application/json"
  20990.  data-section-id="template--15492296147031__dynamic_html_fKi4qq"
  20991.  data-section-type="dynamic-html"
  20992. ></script>
  20993.  
  20994. <section class="custom-html--container">
  20995.  
  20996.  <div class="rte" data-rte>
  20997.    <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>
  20998.  </div>
  20999. </section>
  21000.  
  21001. </div>
  21002.    </main>
  21003.  
  21004.    <!-- BEGIN sections: footer-group -->
  21005. <div id="shopify-section-sections--15492291100759__footer" class="shopify-section shopify-section-group-footer-group"><script
  21006.  type="application/json"
  21007.  data-section-id="sections--15492291100759__footer"
  21008.  data-section-type="static-footer">
  21009. </script>
  21010.  
  21011.  
  21012.  
  21013.  
  21014.  
  21015. <footer role="contentinfo" aria-label="Footer">
  21016.  <section class="site-footer-wrapper">
  21017.    
  21018.      <div class="site-footer-item">
  21019.        <div class="site-footer-blocks column-count-4">
  21020.          <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  21021.  
  21022.  
  21023.      <h2 class="site-footer-block-title" data-accordion-trigger>
  21024.        FURTHER INFO.
  21025.  
  21026.        <span class="site-footer-block-icon accordion--icon">
  21027.          <svg
  21028.  aria-hidden="true"
  21029.  focusable="false"
  21030.  role="presentation"
  21031.  width="14"
  21032.  height="8"
  21033.  viewBox="0 0 14 8"
  21034.  fill="none"
  21035.  xmlns="http://www.w3.org/2000/svg"
  21036. >
  21037.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21038.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21039. </svg>
  21040.  
  21041.        </span>
  21042.      </h2>
  21043.  
  21044.      <div class="site-footer-block-content">
  21045.        
  21046.  
  21047.  
  21048.  
  21049.  
  21050.  
  21051.  
  21052.  
  21053.  
  21054.  
  21055.  
  21056.  
  21057.  
  21058. <ul
  21059.  class="
  21060.    navmenu
  21061.    navmenu-depth-1
  21062.    
  21063.    
  21064.  "
  21065.  data-navmenu
  21066.  data-accordion-content
  21067.  
  21068.  
  21069. >
  21070.  
  21071.    
  21072.  
  21073.    
  21074.    
  21075.  
  21076.    
  21077.    
  21078.  
  21079.    
  21080.  
  21081.    
  21082.      <li
  21083.        class="navmenu-item navmenu-id-home"
  21084.      >
  21085.        <a
  21086.        class="
  21087.          navmenu-link
  21088.          navmenu-link-depth-1
  21089.          navmenu-link-active
  21090.        "
  21091.        href="/"
  21092.        >
  21093.          
  21094.          Home
  21095. </a>
  21096.      </li>
  21097.    
  21098.  
  21099.    
  21100.  
  21101.    
  21102.    
  21103.  
  21104.    
  21105.    
  21106.  
  21107.    
  21108.  
  21109.    
  21110.      <li
  21111.        class="navmenu-item navmenu-id-search"
  21112.      >
  21113.        <a
  21114.        class="
  21115.          navmenu-link
  21116.          navmenu-link-depth-1
  21117.          
  21118.        "
  21119.        href="/search"
  21120.        >
  21121.          
  21122.          Search
  21123. </a>
  21124.      </li>
  21125.    
  21126.  
  21127.    
  21128.  
  21129.    
  21130.    
  21131.  
  21132.    
  21133.    
  21134.  
  21135.    
  21136.  
  21137.    
  21138.      <li
  21139.        class="navmenu-item navmenu-id-about-us"
  21140.      >
  21141.        <a
  21142.        class="
  21143.          navmenu-link
  21144.          navmenu-link-depth-1
  21145.          
  21146.        "
  21147.        href="/pages/about-us"
  21148.        >
  21149.          
  21150.          About Us
  21151. </a>
  21152.      </li>
  21153.    
  21154.  
  21155.    
  21156.  
  21157.    
  21158.    
  21159.  
  21160.    
  21161.    
  21162.  
  21163.    
  21164.  
  21165.    
  21166.      <li
  21167.        class="navmenu-item navmenu-id-parts-request"
  21168.      >
  21169.        <a
  21170.        class="
  21171.          navmenu-link
  21172.          navmenu-link-depth-1
  21173.          
  21174.        "
  21175.        href="/pages/part-request"
  21176.        >
  21177.          
  21178.          Parts Request
  21179. </a>
  21180.      </li>
  21181.    
  21182.  
  21183.    
  21184.  
  21185.    
  21186.    
  21187.  
  21188.    
  21189.    
  21190.  
  21191.    
  21192.  
  21193.    
  21194.      <li
  21195.        class="navmenu-item navmenu-id-repair-centers"
  21196.      >
  21197.        <a
  21198.        class="
  21199.          navmenu-link
  21200.          navmenu-link-depth-1
  21201.          
  21202.        "
  21203.        href="/pages/store-locator"
  21204.        >
  21205.          
  21206.          Repair Centers
  21207. </a>
  21208.      </li>
  21209.    
  21210.  
  21211.    
  21212.  
  21213.    
  21214.    
  21215.  
  21216.    
  21217.    
  21218.  
  21219.    
  21220.  
  21221.    
  21222.      <li
  21223.        class="navmenu-item navmenu-id-francais"
  21224.      >
  21225.        <a
  21226.        class="
  21227.          navmenu-link
  21228.          navmenu-link-depth-1
  21229.          
  21230.        "
  21231.        href="/pages/francais"
  21232.        >
  21233.          
  21234.          Français
  21235. </a>
  21236.      </li>
  21237.    
  21238.  
  21239.    
  21240.  
  21241.    
  21242.    
  21243.  
  21244.    
  21245.    
  21246.  
  21247.    
  21248.  
  21249.    
  21250.      <li
  21251.        class="navmenu-item navmenu-id-reviews"
  21252.      >
  21253.        <a
  21254.        class="
  21255.          navmenu-link
  21256.          navmenu-link-depth-1
  21257.          
  21258.        "
  21259.        href="/pages/reviews"
  21260.        >
  21261.          
  21262.          Reviews
  21263. </a>
  21264.      </li>
  21265.    
  21266.  
  21267. </ul>
  21268.  
  21269.  
  21270.        <!-- TG seal - snippets/footer.liquid -->
  21271.        
  21272.          <div style="margin-top: 2em;">
  21273.            <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>
  21274.            <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>
  21275.          </div>
  21276.        
  21277.        <!-- END TG seal - snippets/footer.liquid -->
  21278.      </div>
  21279.  
  21280. </div>
  21281. <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  21282.  
  21283.  
  21284.      <h2 class="site-footer-block-title" data-accordion-trigger>
  21285.        CUSTOMER SERVICE
  21286.  
  21287.        <span class="site-footer-block-icon accordion--icon">
  21288.          <svg
  21289.  aria-hidden="true"
  21290.  focusable="false"
  21291.  role="presentation"
  21292.  width="14"
  21293.  height="8"
  21294.  viewBox="0 0 14 8"
  21295.  fill="none"
  21296.  xmlns="http://www.w3.org/2000/svg"
  21297. >
  21298.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21299.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21300. </svg>
  21301.  
  21302.        </span>
  21303.      </h2>
  21304.  
  21305.      <div class="site-footer-block-content">
  21306.        
  21307.  
  21308.  
  21309.  
  21310.  
  21311.  
  21312.  
  21313.  
  21314.  
  21315.  
  21316.  
  21317.  
  21318.  
  21319. <ul
  21320.  class="
  21321.    navmenu
  21322.    navmenu-depth-1
  21323.    
  21324.    
  21325.  "
  21326.  data-navmenu
  21327.  data-accordion-content
  21328.  
  21329.  
  21330. >
  21331.  
  21332.    
  21333.  
  21334.    
  21335.    
  21336.  
  21337.    
  21338.    
  21339.  
  21340.    
  21341.  
  21342.    
  21343.      <li
  21344.        class="navmenu-item navmenu-id-privacy-policy"
  21345.      >
  21346.        <a
  21347.        class="
  21348.          navmenu-link
  21349.          navmenu-link-depth-1
  21350.          
  21351.        "
  21352.        href="/pages/privacy-policy"
  21353.        >
  21354.          
  21355.          Privacy Policy
  21356. </a>
  21357.      </li>
  21358.    
  21359.  
  21360.    
  21361.  
  21362.    
  21363.    
  21364.  
  21365.    
  21366.    
  21367.  
  21368.    
  21369.  
  21370.    
  21371.      <li
  21372.        class="navmenu-item navmenu-id-return-policy"
  21373.      >
  21374.        <a
  21375.        class="
  21376.          navmenu-link
  21377.          navmenu-link-depth-1
  21378.          
  21379.        "
  21380.        href="/pages/returns"
  21381.        >
  21382.          
  21383.          Return Policy
  21384. </a>
  21385.      </li>
  21386.    
  21387.  
  21388.    
  21389.  
  21390.    
  21391.    
  21392.  
  21393.    
  21394.    
  21395.  
  21396.    
  21397.  
  21398.    
  21399.      <li
  21400.        class="navmenu-item navmenu-id-shipping"
  21401.      >
  21402.        <a
  21403.        class="
  21404.          navmenu-link
  21405.          navmenu-link-depth-1
  21406.          
  21407.        "
  21408.        href="/pages/shipping"
  21409.        >
  21410.          
  21411.          Shipping
  21412. </a>
  21413.      </li>
  21414.    
  21415.  
  21416.    
  21417.  
  21418.    
  21419.    
  21420.  
  21421.    
  21422.    
  21423.  
  21424.    
  21425.  
  21426.    
  21427.      <li
  21428.        class="navmenu-item navmenu-id-warranty"
  21429.      >
  21430.        <a
  21431.        class="
  21432.          navmenu-link
  21433.          navmenu-link-depth-1
  21434.          
  21435.        "
  21436.        href="/pages/warranty"
  21437.        >
  21438.          
  21439.          Warranty
  21440. </a>
  21441.      </li>
  21442.    
  21443.  
  21444.    
  21445.  
  21446.    
  21447.    
  21448.  
  21449.    
  21450.    
  21451.  
  21452.    
  21453.  
  21454.    
  21455.      <li
  21456.        class="navmenu-item navmenu-id-blogs"
  21457.      >
  21458.        <a
  21459.        class="
  21460.          navmenu-link
  21461.          navmenu-link-depth-1
  21462.          
  21463.        "
  21464.        href="/blogs/news/how-to-enhance-your-laptops-performance-top-tips-for-optimization"
  21465.        >
  21466.          
  21467.          Blogs
  21468. </a>
  21469.      </li>
  21470.    
  21471.  
  21472. </ul>
  21473.  
  21474.  
  21475.        <!-- TG seal - snippets/footer.liquid -->
  21476.        
  21477.        <!-- END TG seal - snippets/footer.liquid -->
  21478.      </div>
  21479.  
  21480. </div>
  21481. <div class="site-footer-block-item  site-footer-block-social-accounts  " >
  21482.  
  21483.  
  21484.    
  21485.  
  21486.  
  21487.  
  21488.  
  21489.  
  21490.  
  21491.  
  21492.  
  21493.  
  21494.  
  21495.  
  21496.  
  21497.  
  21498.  
  21499.  
  21500.  
  21501.  
  21502.  
  21503.  
  21504.  
  21505.  
  21506.  
  21507.    
  21508.    
  21509.  
  21510.  
  21511.  
  21512.  
  21513.    <h2 class="site-footer-block-title">
  21514.      Follow us
  21515.    </h2>
  21516.  
  21517.    <div class="site-footer-block-content">
  21518.  
  21519.  
  21520.  <div class="social-icons">
  21521.  
  21522.  
  21523. <a
  21524.  class="social-link"
  21525.  title="Facebook"
  21526.  href="https://web.facebook.com/laptopparts.ca/?_rdc=1&amp;_rdr"
  21527.  target="_blank">
  21528. <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>
  21529.  
  21530.    <span class="visually-hidden">Find us on Facebook</span>
  21531.  
  21532. </a>
  21533.  
  21534.  
  21535.  
  21536.  
  21537. <a
  21538.  class="social-link"
  21539.  title="Twitter"
  21540.  href="https://twitter.com/i/flow/login?redirect_after_login=%2FLaptopParts_ca"
  21541.  target="_blank">
  21542. <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>
  21543.  
  21544.    <span class="visually-hidden">Find us on Twitter</span>
  21545.  
  21546. </a>
  21547.  
  21548. </div>
  21549.  
  21550.  
  21551.    </div>
  21552.  
  21553.  
  21554.  
  21555.  
  21556. </div>
  21557. <div class="site-footer-block-item  site-footer-block-rich-text  " >
  21558.  
  21559.  
  21560.    
  21561.      <h2 class="site-footer-block-title">
  21562.        Contact Us
  21563.      </h2>
  21564.    
  21565.  
  21566.    
  21567.      <div class="site-footer-block-content rte">
  21568.        <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>
  21569.      </div>
  21570.    
  21571.  
  21572.    
  21573.  
  21574. </div>
  21575.  
  21576.        </div>
  21577.      </div>
  21578.    
  21579.  
  21580.    <div class="site-footer-item site-footer-item--information">
  21581.      <div class="site-footer__row site-footer__row--first">
  21582. <div class="site-footer-right ">
  21583.        <div class="shopify-cross-border">
  21584.          
  21585.        
  21586.          
  21587.        </div>
  21588.        
  21589. <ul class="payment-icons">
  21590.          
  21591.            <li class="payment-icons-item">
  21592.              <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>
  21593.  
  21594.            </li>
  21595.          
  21596.            <li class="payment-icons-item">
  21597.              <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>
  21598.  
  21599.            </li>
  21600.          
  21601.            <li class="payment-icons-item">
  21602.              <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>
  21603.            </li>
  21604.          
  21605.            <li class="payment-icons-item">
  21606.              <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>
  21607.            </li>
  21608.          
  21609.            <li class="payment-icons-item">
  21610.              <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>
  21611.  
  21612.            </li>
  21613.          
  21614.            <li class="payment-icons-item">
  21615.              <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>
  21616.            </li>
  21617.          
  21618.            <li class="payment-icons-item">
  21619.              <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>
  21620.            </li>
  21621.          
  21622.            <li class="payment-icons-item">
  21623.              <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>
  21624.  
  21625.            </li>
  21626.          
  21627.            <li class="payment-icons-item">
  21628.              <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>
  21629.            </li>
  21630.          
  21631.        </ul></div>
  21632.      </div>
  21633.  
  21634.      <div class="site-footer__row site-footer__row--second">
  21635.        <div class="site-footer__row-inner-wrapper-left"><p class="site-footer-credits">
  21636.            <b>LaptopParts.ca</b>
  21637.          </p>
  21638.  
  21639.          <p class="site-footer-credits" style="color:black;">Developed By <a href="https://searchaly.com" style="text-decoration:none;color:black;">Searchaly</a>
  21640.          </p>
  21641.        </div>
  21642.  
  21643.        
  21644. <div class="site-footer-right ">
  21645.        <div class="shopify-cross-border">
  21646.          
  21647.        
  21648.          
  21649.        </div>
  21650.        
  21651. <ul class="payment-icons">
  21652.          
  21653.            <li class="payment-icons-item">
  21654.              <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>
  21655.  
  21656.            </li>
  21657.          
  21658.            <li class="payment-icons-item">
  21659.              <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>
  21660.  
  21661.            </li>
  21662.          
  21663.            <li class="payment-icons-item">
  21664.              <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>
  21665.            </li>
  21666.          
  21667.            <li class="payment-icons-item">
  21668.              <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>
  21669.            </li>
  21670.          
  21671.            <li class="payment-icons-item">
  21672.              <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>
  21673.  
  21674.            </li>
  21675.          
  21676.            <li class="payment-icons-item">
  21677.              <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>
  21678.            </li>
  21679.          
  21680.            <li class="payment-icons-item">
  21681.              <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>
  21682.            </li>
  21683.          
  21684.            <li class="payment-icons-item">
  21685.              <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>
  21686.  
  21687.            </li>
  21688.          
  21689.            <li class="payment-icons-item">
  21690.              <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>
  21691.            </li>
  21692.          
  21693.        </ul></div>
  21694.      </div>
  21695.    </div>
  21696.  </section>
  21697. </footer>
  21698.  
  21699. </div>
  21700. <!-- END sections: footer-group -->
  21701.  
  21702.    
  21703.    <div style="display: none;" aria-hidden="true" data-templates>
  21704.      
  21705.      <div
  21706.        class="message-banner--container"
  21707.        role="alert"
  21708.        data-message-banner
  21709.      >
  21710.        <div class="message-banner--outer">
  21711.          <div class="message-banner--inner" data-message-banner-content></div>
  21712.  
  21713.          <button
  21714.            class="message-banner--close"
  21715.            type="button"
  21716.            aria-label="Close"
  21717.            data-message-banner-close
  21718.          ><svg
  21719.  aria-hidden="true"
  21720.  focusable="false"
  21721.  role="presentation"
  21722.  xmlns="http://www.w3.org/2000/svg"
  21723.  width="13"
  21724.  height="13"
  21725.  viewBox="0 0 13 13"
  21726. >
  21727.  <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"/>
  21728. </svg></button>
  21729.        </div>
  21730.      </div>
  21731.      
  21732.  
  21733.      
  21734.      <section class="atc-banner--container" role="log" data-atc-banner>
  21735.        <div class="atc-banner--outer">
  21736.          <div class="atc-banner--inner">
  21737.            <div class="atc-banner--product">
  21738.              <h2 class="atc-banner--product-title">
  21739.                <span class="atc-banner--product-title--icon">
  21740.                  
  21741.  
  21742.  
  21743.                <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>                                                                                                    
  21744.  
  21745.                </span>
  21746.                Added to your cart:
  21747.              </h2>
  21748.  
  21749.              <div class="atc--product">
  21750.                <div class="atc--product-image" data-atc-banner-product-image>
  21751.                  <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>
  21752.                </div>
  21753.                <div class="atc--product-details">
  21754.                  <h2 class="atc--product-details--title" data-atc-banner-product-title></h2>
  21755.                  <span class="atc--product-details--options" data-atc-banner-product-options></span>
  21756.                  <span class="atc--product-details--price">
  21757.                    <span class="atc--product-details--price-quantity" data-atc-banner-product-price-quantity></span>
  21758.                    <span class="atc--product-details--price-value money" data-atc-banner-product-price-value></span>
  21759.                    <span
  21760.                      class="atc--product-details--price-discounted money"
  21761.                      data-atc-banner-product-price-discounted
  21762.                    ></span>
  21763.                    <span class="atc--product-details--unit-price hidden" data-atc-banner-unit-price>
  21764.                      ** total_quantity ** | ** unit_price ** / ** unit_measure **
  21765.                    </span>
  21766.                  </span>
  21767.                  <ul class="discount-list" data-atc-banner-product-discounts>
  21768.                    <li class="discount-list-item">
  21769.                      
  21770.  
  21771.  
  21772.                                                                        <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>                                            
  21773.  
  21774.                      <span class="discount-title"></span>
  21775.                      (-<span class="money discount-amount"></span>)
  21776.                    </li>
  21777.                  </ul>
  21778.                  <span class="atc--line-item-subscriptions" data-atc-banner-product-subscription-title></span>
  21779.                </div>
  21780.              </div>
  21781.            </div>
  21782.  
  21783.            <div class="atc-banner--cart">
  21784.              <div class="atc-banner--cart-subtotal">
  21785.                <span class="atc-subtotal--label">
  21786.                  Cart subtotal
  21787.                </span>
  21788.                <span class="atc-subtotal--price money" data-atc-banner-cart-subtotal></span>
  21789.              </div>
  21790.  
  21791.              <footer class="atc-banner--cart-footer">
  21792.                <a
  21793.                  class="button-secondary atc-button--viewcart"
  21794.                  href="/cart"
  21795.                  data-atc-banner-cart-button
  21796.                >
  21797.                  View cart (<span></span>)
  21798.                </a>
  21799.                <form
  21800.                  action="/cart"
  21801.                  method="post"
  21802.                  aria-label="cart checkout"
  21803.                >
  21804.                  <button class="button-primary atc-button--checkout" type="submit" name="checkout">
  21805.                    
  21806.                      <svg
  21807. width="20"
  21808. height="20"
  21809. viewBox="0 0 20 20"
  21810. fill="none"
  21811. xmlns="http://www.w3.org/2000/svg">
  21812. <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"/>
  21813. <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"/>
  21814. </svg>
  21815.  
  21816.                    
  21817.                    <span>Checkout</span>
  21818.                  </button>
  21819.                </form>
  21820.              </footer>
  21821.            </div>
  21822.          </div>
  21823.  
  21824.          <button
  21825.            class="atc-banner--close"
  21826.            type="button"
  21827.            aria-label="Close"
  21828.            data-atc-banner-close
  21829.          ><svg
  21830.  aria-hidden="true"
  21831.  focusable="false"
  21832.  role="presentation"
  21833.  xmlns="http://www.w3.org/2000/svg"
  21834.  width="13"
  21835.  height="13"
  21836.  viewBox="0 0 13 13"
  21837. >
  21838.  <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"/>
  21839. </svg></button>
  21840.        </div>
  21841.      </section>
  21842.      
  21843.    </div>
  21844.  
  21845.    
  21846.    
  21847.    <div class="modal" data-modal-container aria-label="modal window" data-trap-focus>
  21848.      <div class="modal-inner" data-modal-inner>
  21849.        <button
  21850.          class="modal-close"
  21851.          type="button"
  21852.          aria-label="Close"
  21853.          data-modal-close
  21854.        >
  21855.          <svg
  21856.  aria-hidden="true"
  21857.  focusable="false"
  21858.  role="presentation"
  21859.  xmlns="http://www.w3.org/2000/svg"
  21860.  width="13"
  21861.  height="13"
  21862.  viewBox="0 0 13 13"
  21863. >
  21864.  <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"/>
  21865. </svg>
  21866.        </button>
  21867.        <div class="modal-content" data-modal-content></div>
  21868.      </div>
  21869.    </div>
  21870.  
  21871.    <div class="modal-1" data-modal-container-1 aria-label="modal window">
  21872.      <div class="modal-inner" data-modal-inner>
  21873.        <button
  21874.          class="modal-close"
  21875.          type="button"
  21876.          aria-label="Close"
  21877.          data-modal-1-close
  21878.        >
  21879.          <svg
  21880.  aria-hidden="true"
  21881.  focusable="false"
  21882.  role="presentation"
  21883.  xmlns="http://www.w3.org/2000/svg"
  21884.  width="13"
  21885.  height="13"
  21886.  viewBox="0 0 13 13"
  21887. >
  21888.  <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"/>
  21889. </svg>
  21890.        </button>
  21891.        <div class="modal-content" data-modal-content></div>
  21892.      </div>
  21893.    </div>
  21894.    
  21895.  
  21896.    
  21897.    
  21898.    
  21899.    <div
  21900.      class="pswp"
  21901.      tabindex="-1"
  21902.      role="dialog"
  21903.      aria-hidden="true"
  21904.      aria-label="Product zoom dialog"
  21905.      data-photoswipe
  21906.    >
  21907.      
  21908.      <div class="pswp__bg"></div>
  21909.  
  21910.      
  21911.      <div class="pswp__scroll-wrap">
  21912.        
  21913.        <div class="pswp__container" aria-hidden="true">
  21914.          <div class="pswp__item"></div>
  21915.          <div class="pswp__item"></div>
  21916.          <div class="pswp__item"></div>
  21917.        </div>
  21918.  
  21919.        
  21920.        <div class="pswp__ui pswp__ui--hidden">
  21921.          <div class="pswp__top-bar">
  21922.            
  21923.            <div class="pswp__counter"></div>
  21924.            <button class="pswp__button pswp__button--close" title="Close">
  21925.              <span tabindex="-1">
  21926.                
  21927.  
  21928.  
  21929.              <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>                                                                                                      
  21930.  
  21931.              </span>
  21932.            </button>
  21933.            <button class="pswp__button pswp__button--share" title="Share"></button>
  21934.            <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
  21935.            <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
  21936.  
  21937.            
  21938.            
  21939.            <div class="pswp__preloader">
  21940.              <div class="pswp__preloader__icn">
  21941.                <div class="pswp__preloader__cut">
  21942.                  <div class="pswp__preloader__donut"></div>
  21943.                </div>
  21944.              </div>
  21945.            </div>
  21946.          </div>
  21947.  
  21948.          <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
  21949.            <div class="pswp__share-tooltip"></div>
  21950.          </div>
  21951.  
  21952.          <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
  21953.          <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button>
  21954.  
  21955.          <div class="pswp__caption">
  21956.            <div class="pswp__caption__center"></div>
  21957.          </div>
  21958.        </div>
  21959.      </div>
  21960.      <div class="product-zoom--thumbnails" data-photoswipe-thumbs>
  21961.        <button
  21962.          class="gallery-navigation--scroll-button scroll-left"
  21963.          aria-label="Scroll thumbnails left"
  21964.          data-gallery-scroll-button
  21965.        >
  21966.          <svg
  21967.  aria-hidden="true"
  21968.  focusable="false"
  21969.  role="presentation"
  21970.  width="14"
  21971.  height="8"
  21972.  viewBox="0 0 14 8"
  21973.  fill="none"
  21974.  xmlns="http://www.w3.org/2000/svg"
  21975. >
  21976.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21977.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21978. </svg>
  21979.  
  21980.        </button>
  21981.        <button
  21982.          class="gallery-navigation--scroll-button scroll-right"
  21983.          aria-label="Scroll thumbnails right"
  21984.          data-gallery-scroll-button
  21985.        >
  21986.          <svg
  21987.  aria-hidden="true"
  21988.  focusable="false"
  21989.  role="presentation"
  21990.  width="14"
  21991.  height="8"
  21992.  viewBox="0 0 14 8"
  21993.  fill="none"
  21994.  xmlns="http://www.w3.org/2000/svg"
  21995. >
  21996.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21997.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21998. </svg>
  21999.  
  22000.        </button>
  22001.        <div class="product-zoom--thumb-scroller" data-photoswipe-thumb-scroller></div>
  22002.      </div>
  22003.    </div>
  22004.    
  22005.  
  22006.    
  22007.    
  22008.    
  22009.    
  22010.    
  22011.  
  22012.    
  22013.  
  22014.    
  22015.  
  22016.      <script>
  22017.        (
  22018.          function () {
  22019.            var classes = {
  22020.              block: 'pxu-lia-block',
  22021.              element: 'pxu-lia-element',
  22022.            };
  22023.  
  22024.            document
  22025.              .querySelectorAll('[type="application/pxs-animation-mapping+json"]')
  22026.              .forEach(function (mappingEl) {
  22027.                const section = mappingEl.parentNode;
  22028.                try {
  22029.                  const mapping = JSON.parse(mappingEl.innerHTML);
  22030.                  mapping.elements.forEach(function (elementSelector) {
  22031.                    section
  22032.                      .querySelectorAll(elementSelector)
  22033.                      .forEach(function (element) { element.classList.add(classes.element); });
  22034.                  });
  22035.  
  22036.                  mapping.blocks.forEach(function (blockSelector) {
  22037.                    section
  22038.                      .querySelectorAll(blockSelector)
  22039.                      .forEach(function (block) { block.classList.add(classes.block); });
  22040.                  });
  22041.                } catch (error) {
  22042.                  console.warn('Unable to parse animation mapping', mappingEl, error);
  22043.                }
  22044.            });
  22045.          }
  22046.        )()
  22047.      </script>
  22048.    
  22049.  
  22050.    <script
  22051.      src="//laptopparts.ca/cdn/shop/t/20/assets/empire.js?v=101264981332624388091749821448"
  22052.      data-scripts
  22053.      data-shopify-api-url="//laptopparts.ca/cdn/shopifycloud/storefront/assets/themes_support/api.jquery-7ab1a3a4.js"
  22054.      data-shopify-countries="/services/javascripts/countries.js"
  22055.      data-shopify-common="//laptopparts.ca/cdn/shopifycloud/storefront/assets/themes_support/shopify_common-5f594365.js"
  22056.      data-shopify-cart="//laptopparts.ca/cdn/shop/t/20/assets/jquery.cart.js?128523"
  22057.      data-pxu-polyfills="//laptopparts.ca/cdn/shop/t/20/assets/polyfills.min.js?v=41774645620324957141712444022"
  22058.    ></script>
  22059.  
  22060.    
  22061.  
  22062.  
  22063.  
  22064.  
  22065.  
  22066.  
  22067.  
  22068.  
  22069.  
  22070.  
  22071.  
  22072.  
  22073.  
  22074.  
  22075. <script type="application/ld+json">
  22076.  {
  22077.    "@context": "http://schema.org",
  22078.    "@type": "WebSite",
  22079.    "name": "LaptopParts.ca",
  22080.    "url": "https://laptopparts.ca"
  22081.  }
  22082. </script>
  22083.  
  22084.  
  22085.    <script>
  22086.      (function () {
  22087.        function handleFirstTab(e) {
  22088.          if (e.keyCode === 9) { // the "I am a keyboard user" key
  22089.            document.body.classList.add('user-is-tabbing');
  22090.            window.removeEventListener('keydown', handleFirstTab);
  22091.          }
  22092.        }
  22093.        window.addEventListener('keydown', handleFirstTab);
  22094.      })();
  22095.    </script>
  22096.  
  22097.    
  22098.      <link href="//laptopparts.ca/cdn/shop/t/20/assets/ripple.css?v=100240391239311985871712444022" rel="stylesheet" type="text/css" media="all" />
  22099.    
  22100.  
  22101.    <script
  22102.      src="//laptopparts.ca/cdn/shop/t/20/assets/instantPage.min.js?v=75111080190164688561712444022"
  22103.      type="module"
  22104.      defer
  22105.    ></script>
  22106.    <script
  22107.      src="//clever-predictive-search.thesupportheroes.com/js/core/main.min.js?timestamp=1698326561&shop=laptoppartsatp.myshopify.com"
  22108.      defer
  22109.    ></script>
  22110. <!-- 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 -->
  22111.     <!-- Shopper Approved - layout/theme.liquid -->  
  22112.    <style>
  22113.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span{
  22114.        vertical-align: -1px;
  22115.      }
  22116.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span:last-child{
  22117.        vertical-align: -1px;
  22118.      }
  22119.      .star_container{
  22120.        height: 24px;
  22121.        margin-bottom: 5px;
  22122.      }
  22123.      .star_container .ind_cnt {
  22124.            display: inline;
  22125.            padding-left: 8px;
  22126.            font-size: 13px;
  22127.            vertical-align: 3px;
  22128.            text-align: center;
  22129.            width: 100%;
  22130.        }
  22131.      #product_just_stars .SA__rating_wrap, #product_just_stars .SA__total_reviews{
  22132.        display: inline !important;
  22133.    }
  22134.    #product_just_stars .SA__review_widget_item .SA__total_reviews a{
  22135.        font-size: 13px !important;
  22136.        vertical-align: 0px !important;
  22137.        /*border-right: 1px solid #000;
  22138.  padding-right: 10px;
  22139.  margin-right: 10px;*/
  22140.  text-decoration: underline;
  22141.    }
  22142.    </style>
  22143.    <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>
  22144.    <!-- END Shopper Approved - layout/theme.liquid -->
  22145.      <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>
  22146. <script type="text/javascript">window.Beacon('init', '4c7bc089-215e-4a80-9d06-25571d96425f')</script>
  22147.        <div id="shopify-block-AN2k5QkMvdUJ0UDFZd__8171265131012698934" class="shopify-block shopify-app-block">
  22148.  
  22149. <input class="OrichiAppEmbed" type="hidden">
  22150. <input
  22151.  class="OrichiCustomerTags"
  22152.  type="hidden"
  22153.  value="" />
  22154. <input
  22155.  class="OrichiCustomerEmail"
  22156.  type="hidden"
  22157.  value="" />
  22158.  
  22159.  
  22160.  
  22161.  
  22162.  
  22163. <script>
  22164.  var orichiDiscount = {
  22165.    productJSPath:
  22166.      'https://cdn.shopify.com/extensions/019a154a-ba55-73b4-a57a-504474bf4534/discount-quantity-dev-770/assets/productpage.min.js'
  22167.    ,
  22168.    cartJSPath:
  22169.      'https://cdn.shopify.com/extensions/019a154a-ba55-73b4-a57a-504474bf4534/discount-quantity-dev-770/assets/cartajax.min.js'
  22170.    ,
  22171.    currencyFormat: "${{amount}}",
  22172.  }
  22173. </script>
  22174.  
  22175.  
  22176.  
  22177.  
  22178.  <script async src="https://cdn.shopify.com/extensions/019a154a-ba55-73b4-a57a-504474bf4534/discount-quantity-dev-770/assets/front.min.js"></script>
  22179.  
  22180.  
  22181. <script>
  22182.  
  22183.    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"}};
  22184.  
  22185. </script>
  22186.  
  22187. </div><div id="shopify-block-AcThYNTRkUW1SdzMyZ__6610233760104865948" class="shopify-block shopify-app-block"><script>
  22188.  window.pushowlSubdomain = "laptoppartsatp.myshopify.com".split(".")[0]
  22189.  window.isPushowlThemeAppExtentionEnabled = true
  22190.  window.pushowlGUID = "7353a9fb-b9a9-4a80-8011-e3736f9f5b8d"
  22191.  window.pushowlEnvironment = "production"
  22192. </script>
  22193.  
  22194.  
  22195.  
  22196.  
  22197. </div><div id="shopify-block-AeXdFL3NiTloxRjRUY__14952540001915115444" class="shopify-block shopify-app-block">
  22198.  
  22199.  
  22200.  
  22201.  
  22202. <link id="upcart-stylesheet" rel="preload" href="https://cdn.shopify.com/extensions/019a185c-7ed0-7198-b7a6-41c9d2e8943e/upcart-213/assets/upcart-stylesheet.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
  22203.  
  22204.  
  22205.  
  22206.  <script defer type="text/javascript" src="https://cdn.shopify.com/extensions/019a185c-7ed0-7198-b7a6-41c9d2e8943e/upcart-213/assets/upcart-bundle.js"></script>
  22207.  
  22208.  
  22209. <script>
  22210.  
  22211.  function b64DecodeUnicode(str) {
  22212.    try {
  22213.        return decodeURIComponent(
  22214.        atob(str)
  22215.            .split('')
  22216.            .map(function (c) {
  22217.            return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
  22218.            })
  22219.            .join(''),
  22220.        );
  22221.    } catch {
  22222.        return str;
  22223.    }
  22224.  }
  22225. </script>
  22226.  
  22227.  
  22228. <script>
  22229. (function() {
  22230.    window.upcartSettings = {};
  22231.    window.upcartSettings.upcartSettings = {};
  22232.    window.upcartSettings.upcartEditorSettings = {};
  22233.    window.upcartSettings.stickyCartButtonEditorSettings = {};
  22234.  
  22235.    
  22236.    
  22237.    
  22238.  
  22239.    let val;
  22240.  
  22241.    val = b64DecodeUnicode("cmlnaHQ=");
  22242.    if (val === '') {
  22243.        val = b64DecodeUnicode("cmlnaHQ=");
  22244.    }
  22245.    window.upcartSettings.upcartSettings.cartPosition = val;
  22246.  
  22247.    val = b64DecodeUnicode("ZmFsc2U=");
  22248.    if (val === '') {
  22249.        val = b64DecodeUnicode("ZmFsc2U=");
  22250.    }
  22251.    val = JSON.parse(val);
  22252.    window.upcartSettings.upcartSettings.disableSticky = val;
  22253.  
  22254.    val = b64DecodeUnicode("dHJ1ZQ==");
  22255.    if (val === '') {
  22256.        val = b64DecodeUnicode("dHJ1ZQ==");
  22257.    }
  22258.    val = JSON.parse(val);
  22259.    window.upcartSettings.upcartSettings.openOnAddToCart = val;
  22260.  
  22261.    val = b64DecodeUnicode("ZmFsc2U=");
  22262.    if (val === '') {
  22263.        val = b64DecodeUnicode("ZmFsc2U=");
  22264.    }
  22265.    val = JSON.parse(val);
  22266.    window.upcartSettings.upcartSettings.redirectToCart = val;
  22267.  
  22268.    val = b64DecodeUnicode("dHJ1ZQ==");
  22269.    if (val === '') {
  22270.        val = b64DecodeUnicode("ZmFsc2U=");
  22271.    }
  22272.    val = JSON.parse(val);
  22273.    window.upcartSettings.upcartSettings.enableCartSkeletons = val;
  22274.  
  22275.    val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJZb3VyIFNob3BwaW5nIENhcnQiLCJjaGVja291dCI6IlNlY3VyZSBDaGVja291dCDigKIge3t0b3RhbF9wcmljZX19IiwiYWRkVGV4dCI6IkFkZCIsImVtcHR5Q2FydCI6IllvdXIgY2FydCBpcyBlbXB0eSIsImRpc2NvdW50U2F2aW5ncyI6IlNhdmUiLCJjb250aW51ZVNob3BwaW5nIjoiT3IgY29udGludWUgc2hvcHBpbmciLCJ0b3RhbFNhdmluZ3MiOiJEaXNjb3VudHMiLCJzdWJ0b3RhbCI6IlN1YnRvdGFsIn0=");
  22276.    if (val === '') {
  22277.        val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJDYXJ0IOKAoiB7e2NhcnRfcXVhbnRpdHl9fSIsImNoZWNrb3V0IjoiQ2hlY2tvdXQg4oCiIHt7dG90YWxfcHJpY2V9fSIsImFkZFRleHQiOiJBZGQiLCJlbXB0eUNhcnQiOiJZb3VyIGNhcnQgaXMgZW1wdHkiLCJkaXNjb3VudFNhdmluZ3MiOiJTYXZlIiwiY29udGludWVTaG9wcGluZyI6Ik9yIGNvbnRpbnVlIHNob3BwaW5nIiwidG90YWxTYXZpbmdzIjoiRGlzY291bnRzIiwic3VidG90YWwiOiJTdWJ0b3RhbCIsImJ1bmRsZUhpZGVTaW5ndWxhckl0ZW1UZXh0IjoiSGlkZSAxIGl0ZW0iLCJidW5kbGVTaG93U2luZ3VsYXJJdGVtVGV4dCI6IlNob3cgMSBpdGVtIiwiYnVuZGxlSGlkZU11bHRpcGxlSXRlbXNUZXh0IjoiSGlkZSB7TlVNQkVSX09GX0lURU1TfSBpdGVtcyIsImJ1bmRsZVNob3dNdWx0aXBsZUl0ZW1zVGV4dCI6IlNob3cge05VTUJFUl9PRl9JVEVNU30gaXRlbXMifQ==");
  22278.    }
  22279.    val = JSON.parse(val);
  22280.    window.upcartSettings.upcartSettings.translations = val;
  22281.  
  22282.    val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22283.    if (val === '') {
  22284.        val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22285.    }
  22286.    val = JSON.parse(val);
  22287.    window.upcartSettings.upcartSettings.htmlFields = val;
  22288.  
  22289.    val = b64DecodeUnicode("dHJ1ZQ==");
  22290.    if (val === '') {
  22291.        val = b64DecodeUnicode("dHJ1ZQ==");
  22292.    }
  22293.    val = JSON.parse(val);
  22294.    window.upcartSettings.upcartSettings.automaticDiscount = val;
  22295.  
  22296.    val = b64DecodeUnicode("ZmFsc2U=");
  22297.    if (val === '') {
  22298.        val = b64DecodeUnicode("ZmFsc2U=");
  22299.    }
  22300.    val = JSON.parse(val);
  22301.    window.upcartSettings.upcartSettings.basePriceForDiscount = val;
  22302.  
  22303.    val = b64DecodeUnicode("dHJ1ZQ==");
  22304.    if (val === '') {
  22305.        val = b64DecodeUnicode("ZmFsc2U=");
  22306.    }
  22307.    val = JSON.parse(val);
  22308.    window.upcartSettings.upcartSettings.hideSingleUnderscoredProperties = val;
  22309.  
  22310.    val = b64DecodeUnicode("ZmFsc2U=");
  22311.    if (val === '') {
  22312.        val = b64DecodeUnicode("ZmFsc2U=");
  22313.    }
  22314.    val = JSON.parse(val);
  22315.    window.upcartSettings.upcartSettings.showContinueShoppingButton = val;
  22316.  
  22317.    val = b64DecodeUnicode("ZmFsc2U=");
  22318.    if (val === '') {
  22319.        val = b64DecodeUnicode("ZmFsc2U=");
  22320.    }
  22321.    val = JSON.parse(val);
  22322.    window.upcartSettings.upcartSettings.ajaxRaceConditionPrevention = val;
  22323.  
  22324.    val = b64DecodeUnicode("ZmFsc2U=");
  22325.    if (val === '') {
  22326.        val = b64DecodeUnicode("ZmFsc2U=");
  22327.    }
  22328.    val = JSON.parse(val);
  22329.    window.upcartSettings.upcartSettings.htmlFieldForceReRender = val;
  22330.  
  22331.    val = b64DecodeUnicode("ZmFsc2U=");
  22332.    if (val === '') {
  22333.        val = b64DecodeUnicode("ZmFsc2U=");
  22334.    }
  22335.    val = JSON.parse(val);
  22336.    window.upcartSettings.upcartSettings.skipGoogleFonts = val;
  22337.  
  22338.    val = b64DecodeUnicode("ZmFsc2U=");
  22339.    if (val === '') {
  22340.        val = b64DecodeUnicode("ZmFsc2U=");
  22341.    }
  22342.    val = JSON.parse(val);
  22343.    window.upcartSettings.upcartSettings.overrideScrollLocking = val;
  22344.  
  22345.    val = b64DecodeUnicode("MTAw");
  22346.    if (val === '') {
  22347.        val = b64DecodeUnicode("MTAw");
  22348.    }
  22349.    window.upcartSettings.upcartSettings.trafficAllocationPercent = val;
  22350.  
  22351.    val = b64DecodeUnicode("dHJ1ZQ==");
  22352.    if (val === '') {
  22353.        val = b64DecodeUnicode("ZmFsc2U=");
  22354.    }
  22355.    val = JSON.parse(val);
  22356.    window.upcartSettings.upcartSettings.renderCartInShadowDom = val;
  22357.  
  22358.    val = b64DecodeUnicode("dHJ1ZQ==");
  22359.    if (val === '') {
  22360.        val = b64DecodeUnicode("ZmFsc2U=");
  22361.    }
  22362.    val = JSON.parse(val);
  22363.    window.upcartSettings.upcartSettings.cartEventTracking = val;
  22364.  
  22365.    val = b64DecodeUnicode("");
  22366.    if (val === '') {
  22367.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  22368.    }
  22369.    val = JSON.parse(val);
  22370.    window.upcartSettings.upcartSettings.openCartButtonSelection = val;
  22371.  
  22372.    val = b64DecodeUnicode("");
  22373.    if (val === '') {
  22374.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  22375.    }
  22376.    val = JSON.parse(val);
  22377.    window.upcartSettings.upcartSettings.addToCartButtonSelection = val;
  22378.  
  22379.    val = b64DecodeUnicode("bGluZQ==");
  22380.    if (val === '') {
  22381.        val = b64DecodeUnicode("bGluZQ==");
  22382.    }
  22383.    window.upcartSettings.upcartSettings.updateItemIdentifier = val;
  22384.  
  22385.    val = b64DecodeUnicode("Knt9");
  22386.    if (val === '') {
  22387.        val = b64DecodeUnicode("Knt9");
  22388.    }
  22389.    window.upcartSettings.upcartSettings.customCSS = val;
  22390.  
  22391.    val = b64DecodeUnicode("Knt9");
  22392.    if (val === '') {
  22393.        val = b64DecodeUnicode("Knt9");
  22394.    }
  22395.    window.upcartSettings.upcartSettings.customStickyCartCSS = val;
  22396.  
  22397.    val = b64DecodeUnicode("ZmFsc2U=");
  22398.    if (val === '') {
  22399.        val = b64DecodeUnicode("ZmFsc2U=");
  22400.    }
  22401.    val = JSON.parse(val);
  22402.    window.upcartSettings.upcartSettings.integrationZapietEnabled = val;
  22403.  
  22404.    val = b64DecodeUnicode("ZmFsc2U=");
  22405.    if (val === '') {
  22406.        val = b64DecodeUnicode("ZmFsc2U=");
  22407.    }
  22408.    val = JSON.parse(val);
  22409.    window.upcartSettings.upcartSettings.integrationYmqEnabled = val;
  22410.  
  22411.    val = b64DecodeUnicode("");
  22412.    if (val === '') {
  22413.        val = b64DecodeUnicode("eyJzdGF0dXMiOiJESVNBQkxFRCJ9");
  22414.    }
  22415.    val = JSON.parse(val);
  22416.    window.upcartSettings.upcartSettings.customCartBundleInfo = val;
  22417.  
  22418.    val = b64DecodeUnicode("dHJ1ZQ==");
  22419.    if (val === '') {
  22420.        val = b64DecodeUnicode("dHJ1ZQ==");
  22421.    }
  22422.    val = JSON.parse(val);
  22423.    window.upcartSettings.upcartEditorSettings.cartIsEnabled = val;
  22424.  
  22425.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwYTlkMWMiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCJ9fQ==");
  22426.    if (val === '') {
  22427.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwMDAwMDAiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCIsImNhcnRXaWR0aCI6eyJkZXNrdG9wIjoiYmFzZSIsIm1vYmlsZSI6ImZ1bGwifX19");
  22428.    }
  22429.    val = JSON.parse(val);
  22430.    window.upcartSettings.upcartEditorSettings.settingsModule = val;
  22431.  
  22432.    val = b64DecodeUnicode("");
  22433.    if (val === '') {
  22434.        val = b64DecodeUnicode("IzJlYTgxOA==");
  22435.    }
  22436.    window.upcartSettings.upcartEditorSettings.designSettingsCartSavingsTextColor = val;
  22437.  
  22438.    val = b64DecodeUnicode("");
  22439.    if (val === '') {
  22440.        val = b64DecodeUnicode("MS4wLjA=");
  22441.    }
  22442.    window.upcartSettings.upcartEditorSettings.headerModuleVersion = val;
  22443.  
  22444.    val = b64DecodeUnicode("");
  22445.    if (val === '') {
  22446.        val = b64DecodeUnicode("MS4wLjA=");
  22447.    }
  22448.    window.upcartSettings.upcartEditorSettings.announcementModuleVersion = val;
  22449.  
  22450.    val = b64DecodeUnicode("");
  22451.    if (val === '') {
  22452.        val = b64DecodeUnicode("MS4wLjA=");
  22453.    }
  22454.    window.upcartSettings.upcartEditorSettings.upsellsModuleVersion = val;
  22455.  
  22456.    val = b64DecodeUnicode("");
  22457.    if (val === '') {
  22458.        val = b64DecodeUnicode("MS4wLjA=");
  22459.    }
  22460.    window.upcartSettings.upcartEditorSettings.recommendationsModuleVersion = val;
  22461.  
  22462.    val = b64DecodeUnicode("");
  22463.    if (val === '') {
  22464.        val = b64DecodeUnicode("MS4wLjA=");
  22465.    }
  22466.    window.upcartSettings.upcartEditorSettings.notesModuleVersion = val;
  22467.  
  22468.    val = b64DecodeUnicode("");
  22469.    if (val === '') {
  22470.        val = b64DecodeUnicode("MS4wLjA=");
  22471.    }
  22472.    window.upcartSettings.upcartEditorSettings.discountCodeModuleVersion = val;
  22473.  
  22474.    val = b64DecodeUnicode("");
  22475.    if (val === '') {
  22476.        val = b64DecodeUnicode("MS4wLjA=");
  22477.    }
  22478.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleVersion = val;
  22479.  
  22480.    val = b64DecodeUnicode("");
  22481.    if (val === '') {
  22482.        val = b64DecodeUnicode("MS4wLjA=");
  22483.    }
  22484.    window.upcartSettings.upcartEditorSettings.rewardsModuleVersion = val;
  22485.  
  22486.    val = b64DecodeUnicode("");
  22487.    if (val === '') {
  22488.        val = b64DecodeUnicode("MS4wLjA=");
  22489.    }
  22490.    window.upcartSettings.upcartEditorSettings.cartItemsModuleVersion = val;
  22491.  
  22492.    val = b64DecodeUnicode("");
  22493.    if (val === '') {
  22494.        val = b64DecodeUnicode("MS4wLjA=");
  22495.    }
  22496.    window.upcartSettings.upcartEditorSettings.addonsModuleVersion = val;
  22497.  
  22498.    val = b64DecodeUnicode("");
  22499.    if (val === '') {
  22500.        val = b64DecodeUnicode("MS4wLjA=");
  22501.    }
  22502.    window.upcartSettings.upcartEditorSettings.cartSummaryModuleVersion = val;
  22503.  
  22504.    val = b64DecodeUnicode("");
  22505.    if (val === '') {
  22506.        val = b64DecodeUnicode("MS4wLjA=");
  22507.    }
  22508.    window.upcartSettings.upcartEditorSettings.expressPayModuleVersion = val;
  22509.  
  22510.    val = b64DecodeUnicode("");
  22511.    if (val === '') {
  22512.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22513.    }
  22514.    val = JSON.parse(val);
  22515.    window.upcartSettings.upcartEditorSettings.headerModuleCustomJsxTemplates = val;
  22516.  
  22517.    val = b64DecodeUnicode("");
  22518.    if (val === '') {
  22519.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22520.    }
  22521.    val = JSON.parse(val);
  22522.    window.upcartSettings.upcartEditorSettings.announcementModuleCustomJsxTemplates = val;
  22523.  
  22524.    val = b64DecodeUnicode("");
  22525.    if (val === '') {
  22526.        val = b64DecodeUnicode("eyJ1cHNlbGxUaWxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22527.    }
  22528.    val = JSON.parse(val);
  22529.    window.upcartSettings.upcartEditorSettings.upsellsModuleCustomJsxTemplates = val;
  22530.  
  22531.    val = b64DecodeUnicode("");
  22532.    if (val === '') {
  22533.        val = b64DecodeUnicode("eyJyZWNvbW1lbmRhdGlvblRpbGUiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwic2tlbGV0b24iOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfX0=");
  22534.    }
  22535.    val = JSON.parse(val);
  22536.    window.upcartSettings.upcartEditorSettings.recommendationsModuleCustomJsxTemplates = val;
  22537.  
  22538.    val = b64DecodeUnicode("");
  22539.    if (val === '') {
  22540.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22541.    }
  22542.    val = JSON.parse(val);
  22543.    window.upcartSettings.upcartEditorSettings.notesModuleCustomJsxTemplates = val;
  22544.  
  22545.    val = b64DecodeUnicode("");
  22546.    if (val === '') {
  22547.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22548.    }
  22549.    val = JSON.parse(val);
  22550.    window.upcartSettings.upcartEditorSettings.discountModuleCustomJsxTemplates = val;
  22551.  
  22552.    val = b64DecodeUnicode("");
  22553.    if (val === '') {
  22554.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22555.    }
  22556.    val = JSON.parse(val);
  22557.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleCustomJsxTemplates = val;
  22558.  
  22559.    val = b64DecodeUnicode("");
  22560.    if (val === '') {
  22561.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22562.    }
  22563.    val = JSON.parse(val);
  22564.    window.upcartSettings.upcartEditorSettings.rewardsModuleCustomJsxTemplates = val;
  22565.  
  22566.    val = b64DecodeUnicode("");
  22567.    if (val === '') {
  22568.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22569.    }
  22570.    val = JSON.parse(val);
  22571.    window.upcartSettings.upcartEditorSettings.triggeredRewardsModuleCustomJsxTemplates = val;
  22572.  
  22573.    val = b64DecodeUnicode("");
  22574.    if (val === '') {
  22575.        val = b64DecodeUnicode("eyJza2VsZXRvbiI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJwcm9kdWN0VGlsZSI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJ2YXJpYW50Ijp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByb3BlcnRpZXMiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwiYnVuZGxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByaWNlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22576.    }
  22577.    val = JSON.parse(val);
  22578.    window.upcartSettings.upcartEditorSettings.cartItemsModuleCustomJsxTemplates = val;
  22579.  
  22580.    val = b64DecodeUnicode("");
  22581.    if (val === '') {
  22582.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22583.    }
  22584.    val = JSON.parse(val);
  22585.    window.upcartSettings.upcartEditorSettings.cartSummaryModuleCustomJsxTemplates = val;
  22586.  
  22587.    val = b64DecodeUnicode("");
  22588.    if (val === '') {
  22589.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22590.    }
  22591.    val = JSON.parse(val);
  22592.    window.upcartSettings.upcartEditorSettings.addonsModuleCustomJsxTemplates = val;
  22593.  
  22594.    val = b64DecodeUnicode("");
  22595.    if (val === '') {
  22596.        val = b64DecodeUnicode("YmFzZQ==");
  22597.    }
  22598.    window.upcartSettings.upcartEditorSettings.headerBorderBottom = val;
  22599.  
  22600.    val = b64DecodeUnicode("");
  22601.    if (val === '') {
  22602.        val = b64DecodeUnicode("YmFzZQ==");
  22603.    }
  22604.    window.upcartSettings.upcartEditorSettings.headerHeight = val;
  22605.  
  22606.    val = b64DecodeUnicode("");
  22607.    if (val === '') {
  22608.        val = b64DecodeUnicode("I2ZmZmZmZjAw");
  22609.    }
  22610.    window.upcartSettings.upcartEditorSettings.headerBackgroundColor = val;
  22611.  
  22612.    val = b64DecodeUnicode("");
  22613.    if (val === '') {
  22614.        val = b64DecodeUnicode("eyJ0eXBlIjoiaW5oZXJpdEhlYWRpbmdTdHlsZXMiLCJoZWFkaW5nTGV2ZWwiOiJoMiJ9");
  22615.    }
  22616.    val = JSON.parse(val);
  22617.    window.upcartSettings.upcartEditorSettings.headerTitleContent = val;
  22618.  
  22619.    val = b64DecodeUnicode("");
  22620.    if (val === '') {
  22621.        val = b64DecodeUnicode("c2lkZQ==");
  22622.    }
  22623.    window.upcartSettings.upcartEditorSettings.headerTitleAlignment = val;
  22624.  
  22625.    val = b64DecodeUnicode("");
  22626.    if (val === '') {
  22627.        val = b64DecodeUnicode("dGl0bGVfX2Nsb3NlQnV0dG9u");
  22628.    }
  22629.    window.upcartSettings.upcartEditorSettings.headerElementArrangement = val;
  22630.  
  22631.    val = b64DecodeUnicode("");
  22632.    if (val === '') {
  22633.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMDBjIiwib25Ib3ZlciI6IiMwMDAwMDAxNCJ9");
  22634.    }
  22635.    val = JSON.parse(val);
  22636.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBackgroundColor = val;
  22637.  
  22638.    val = b64DecodeUnicode("");
  22639.    if (val === '') {
  22640.        val = b64DecodeUnicode("eyJiYXNlIjoiIzYzNzM4MSIsIm9uSG92ZXIiOm51bGx9");
  22641.    }
  22642.    val = JSON.parse(val);
  22643.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconColor = val;
  22644.  
  22645.    val = b64DecodeUnicode("");
  22646.    if (val === '') {
  22647.        val = b64DecodeUnicode("c21hbGw=");
  22648.    }
  22649.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconSize = val;
  22650.  
  22651.    val = b64DecodeUnicode("");
  22652.    if (val === '') {
  22653.        val = b64DecodeUnicode("YmFzZQ==");
  22654.    }
  22655.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconStrokeWidth = val;
  22656.  
  22657.    val = b64DecodeUnicode("");
  22658.    if (val === '') {
  22659.        val = b64DecodeUnicode("bm9uZQ==");
  22660.    }
  22661.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderWidth = val;
  22662.  
  22663.    val = b64DecodeUnicode("");
  22664.    if (val === '') {
  22665.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMCIsIm9uSG92ZXIiOm51bGx9");
  22666.    }
  22667.    val = JSON.parse(val);
  22668.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderColor = val;
  22669.  
  22670.    val = b64DecodeUnicode("dHJ1ZQ==");
  22671.    if (val === '') {
  22672.        val = b64DecodeUnicode("ZmFsc2U=");
  22673.    }
  22674.    val = JSON.parse(val);
  22675.    window.upcartSettings.upcartEditorSettings.announcementModule = val;
  22676.  
  22677.    val = b64DecodeUnicode("PHA+PHN0cm9uZz4qKioqKiAgRlJFRSBTSElQUElORyAqKioqKjwvc3Ryb25nPjwvcD4K");
  22678.    if (val === '') {
  22679.        val = b64DecodeUnicode("PHA+WW91ciBwcm9kdWN0cyBhcmUgcmVzZXJ2ZWQgZm9yIDxiPntUSU1FUn08L2I+ITwvcD4=");
  22680.    }
  22681.    window.upcartSettings.upcartEditorSettings.announcementEditor = val;
  22682.  
  22683.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22684.    if (val === '') {
  22685.        val = b64DecodeUnicode("I0NERTBFMA==");
  22686.    }
  22687.    window.upcartSettings.upcartEditorSettings.announcementBackgroundColor = val;
  22688.  
  22689.    val = b64DecodeUnicode("dG9w");
  22690.    if (val === '') {
  22691.        val = b64DecodeUnicode("dG9w");
  22692.    }
  22693.    window.upcartSettings.upcartEditorSettings.announcementModulePosition = val;
  22694.  
  22695.    val = b64DecodeUnicode("IzEwOWMxYw==");
  22696.    if (val === '') {
  22697.        val = b64DecodeUnicode("I0M1RTZGRA==");
  22698.    }
  22699.    window.upcartSettings.upcartEditorSettings.announcementBorderColor = val;
  22700.  
  22701.    val = b64DecodeUnicode("MA==");
  22702.    if (val === '') {
  22703.        val = b64DecodeUnicode("MDA6MDA=");
  22704.    }
  22705.    window.upcartSettings.upcartEditorSettings.announcementTimer = val;
  22706.  
  22707.    val = b64DecodeUnicode("");
  22708.    if (val === '') {
  22709.        val = b64DecodeUnicode("YmFzZQ==");
  22710.    }
  22711.    window.upcartSettings.upcartEditorSettings.announcementHeight = val;
  22712.  
  22713.    val = b64DecodeUnicode("");
  22714.    if (val === '') {
  22715.        val = b64DecodeUnicode("MTU=");
  22716.    }
  22717.    window.upcartSettings.upcartEditorSettings.announcementTextFontSizePx = val;
  22718.  
  22719.    val = b64DecodeUnicode("ZmFsc2U=");
  22720.    if (val === '') {
  22721.        val = b64DecodeUnicode("ZmFsc2U=");
  22722.    }
  22723.    val = JSON.parse(val);
  22724.    window.upcartSettings.upcartEditorSettings.rewardsModule = val;
  22725.  
  22726.    val = b64DecodeUnicode("I0UyRTJFMg==");
  22727.    if (val === '') {
  22728.        val = b64DecodeUnicode("I0UyRTJFMg==");
  22729.    }
  22730.    window.upcartSettings.upcartEditorSettings.rewardsBarBackgroundColor = val;
  22731.  
  22732.    val = b64DecodeUnicode("IzkzRDNGRg==");
  22733.    if (val === '') {
  22734.        val = b64DecodeUnicode("IzkzRDNGRg==");
  22735.    }
  22736.    window.upcartSettings.upcartEditorSettings.rewardsBarForegroundColor = val;
  22737.  
  22738.    val = b64DecodeUnicode("Y2FydFRvdGFs");
  22739.    if (val === '') {
  22740.        val = b64DecodeUnicode("Y2FydFRvdGFs");
  22741.    }
  22742.    window.upcartSettings.upcartEditorSettings.rewardsBasis = val;
  22743.  
  22744.    val = b64DecodeUnicode("ZmFsc2U=");
  22745.    if (val === '') {
  22746.        val = b64DecodeUnicode("ZmFsc2U=");
  22747.    }
  22748.    val = JSON.parse(val);
  22749.    window.upcartSettings.upcartEditorSettings.rewardsProductLinkVisible = val;
  22750.  
  22751.    val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22752.    if (val === '') {
  22753.        val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22754.    }
  22755.    window.upcartSettings.upcartEditorSettings.rewardsTargetType = val;
  22756.  
  22757.    val = b64DecodeUnicode("MTI1");
  22758.    if (val === '') {
  22759.        val = b64DecodeUnicode("MTI1");
  22760.    }
  22761.    window.upcartSettings.upcartEditorSettings.rewardsMinAmount = val;
  22762.  
  22763.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22764.    if (val === '') {
  22765.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22766.    }
  22767.    window.upcartSettings.upcartEditorSettings.rewardsEditor = val;
  22768.  
  22769.    val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22770.    if (val === '') {
  22771.        val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22772.    }
  22773.    window.upcartSettings.upcartEditorSettings.rewardsEditorAfterText = val;
  22774.  
  22775.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22776.    if (val === '') {
  22777.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22778.    }
  22779.    window.upcartSettings.upcartEditorSettings.rewardsEditorForItemCount = val;
  22780.  
  22781.    val = b64DecodeUnicode("NQ==");
  22782.    if (val === '') {
  22783.        val = b64DecodeUnicode("NQ==");
  22784.    }
  22785.    window.upcartSettings.upcartEditorSettings.rewardsItemCount = val;
  22786.  
  22787.    val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22788.    if (val === '') {
  22789.        val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22790.    }
  22791.    val = JSON.parse(val);
  22792.    window.upcartSettings.upcartEditorSettings.rewardsTiers = val;
  22793.  
  22794.    val = b64DecodeUnicode("W10=");
  22795.    if (val === '') {
  22796.        val = b64DecodeUnicode("W10=");
  22797.    }
  22798.    val = JSON.parse(val);
  22799.    window.upcartSettings.upcartEditorSettings.rewardsTierProducts = val;
  22800.  
  22801.    val = b64DecodeUnicode("ZmFsc2U=");
  22802.    if (val === '') {
  22803.        val = b64DecodeUnicode("ZmFsc2U=");
  22804.    }
  22805.    val = JSON.parse(val);
  22806.    window.upcartSettings.upcartEditorSettings.rewardsShowIconWithSingleTier = val;
  22807.  
  22808.    val = b64DecodeUnicode("dHJ1ZQ==");
  22809.    if (val === '') {
  22810.        val = b64DecodeUnicode("ZmFsc2U=");
  22811.    }
  22812.    val = JSON.parse(val);
  22813.    window.upcartSettings.upcartEditorSettings.rewardsShowOnEmptyCart = val;
  22814.  
  22815.    val = b64DecodeUnicode("");
  22816.    if (val === '') {
  22817.        val = b64DecodeUnicode("ZmFsc2U=");
  22818.    }
  22819.    val = JSON.parse(val);
  22820.    window.upcartSettings.upcartEditorSettings.rewardsRemovePreviousProducts = val;
  22821.  
  22822.    val = b64DecodeUnicode("");
  22823.    if (val === '') {
  22824.        val = b64DecodeUnicode("W10=");
  22825.    }
  22826.    val = JSON.parse(val);
  22827.    window.upcartSettings.upcartEditorSettings.rewardsFiltering = val;
  22828.  
  22829.    val = b64DecodeUnicode("");
  22830.    if (val === '') {
  22831.        val = b64DecodeUnicode("W10=");
  22832.    }
  22833.    val = JSON.parse(val);
  22834.    window.upcartSettings.upcartEditorSettings.rewardsTriggeredRules = val;
  22835.  
  22836.    val = b64DecodeUnicode("");
  22837.    if (val === '') {
  22838.        val = b64DecodeUnicode("eyJwcm9kdWN0RGlzY291bnRzIjpmYWxzZSwib3JkZXJEaXNjb3VudHMiOmZhbHNlLCJzaGlwcGluZ0Rpc2NvdW50cyI6ZmFsc2V9");
  22839.    }
  22840.    val = JSON.parse(val);
  22841.    window.upcartSettings.upcartEditorSettings.rewardsTriggeredCombinations = val;
  22842.  
  22843.    val = b64DecodeUnicode("ZmFsc2U=");
  22844.    if (val === '') {
  22845.        val = b64DecodeUnicode("ZmFsc2U=");
  22846.    }
  22847.    val = JSON.parse(val);
  22848.    window.upcartSettings.upcartEditorSettings.recommendationsModule = val;
  22849.  
  22850.    val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22851.    if (val === '') {
  22852.        val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22853.    }
  22854.    window.upcartSettings.upcartEditorSettings.recommendationsHeaderText = val;
  22855.  
  22856.    val = b64DecodeUnicode("ZmFsc2U=");
  22857.    if (val === '') {
  22858.        val = b64DecodeUnicode("ZmFsc2U=");
  22859.    }
  22860.    val = JSON.parse(val);
  22861.    window.upcartSettings.upcartEditorSettings.recommendationsEnableShopNowButton = val;
  22862.  
  22863.    val = b64DecodeUnicode("U2hvcCBOb3c=");
  22864.    if (val === '') {
  22865.        val = b64DecodeUnicode("U2hvcCBOb3c=");
  22866.    }
  22867.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonText = val;
  22868.  
  22869.    val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22870.    if (val === '') {
  22871.        val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22872.    }
  22873.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonURL = val;
  22874.  
  22875.    val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22876.    if (val === '') {
  22877.        val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22878.    }
  22879.    val = JSON.parse(val);
  22880.    window.upcartSettings.upcartEditorSettings.recommendationItems = val;
  22881.  
  22882.    val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22883.    if (val === '') {
  22884.        val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22885.    }
  22886.    window.upcartSettings.upcartEditorSettings.recommendationsProductRecommendationsHeaderText = val;
  22887.  
  22888.    val = b64DecodeUnicode("Mw==");
  22889.    if (val === '') {
  22890.        val = b64DecodeUnicode("Mw==");
  22891.    }
  22892.    window.upcartSettings.upcartEditorSettings.recommendationsMaxRecommendationsToShow = val;
  22893.  
  22894.    val = b64DecodeUnicode("dmVydGljYWw=");
  22895.    if (val === '') {
  22896.        val = b64DecodeUnicode("dmVydGljYWw=");
  22897.    }
  22898.    window.upcartSettings.upcartEditorSettings.recommendationsDirection = val;
  22899.  
  22900.    val = b64DecodeUnicode("dHJ1ZQ==");
  22901.    if (val === '') {
  22902.        val = b64DecodeUnicode("ZmFsc2U=");
  22903.    }
  22904.    val = JSON.parse(val);
  22905.    window.upcartSettings.upcartEditorSettings.upsellsModule = val;
  22906.  
  22907.    val = b64DecodeUnicode("dmVydGljYWw=");
  22908.    if (val === '') {
  22909.        val = b64DecodeUnicode("aG9yaXpvbnRhbA==");
  22910.    }
  22911.    window.upcartSettings.upcartEditorSettings.upsellsDirection = val;
  22912.  
  22913.    val = b64DecodeUnicode("PHA+PC9wPgo=");
  22914.    if (val === '') {
  22915.        val = b64DecodeUnicode("WW91J2xsIGxvdmUgdGhlc2U=");
  22916.    }
  22917.    window.upcartSettings.upcartEditorSettings.upsellsTitle = val;
  22918.  
  22919.    val = b64DecodeUnicode("NA==");
  22920.    if (val === '') {
  22921.        val = b64DecodeUnicode("MTA=");
  22922.    }
  22923.    window.upcartSettings.upcartEditorSettings.maximumUpsellsToShow = val;
  22924.  
  22925.    val = b64DecodeUnicode("dHJ1ZQ==");
  22926.    if (val === '') {
  22927.        val = b64DecodeUnicode("ZmFsc2U=");
  22928.    }
  22929.    val = JSON.parse(val);
  22930.    window.upcartSettings.upcartEditorSettings.upsellsShouldLimit = val;
  22931.  
  22932.    val = b64DecodeUnicode("ZmFsc2U=");
  22933.    if (val === '') {
  22934.        val = b64DecodeUnicode("ZmFsc2U=");
  22935.    }
  22936.    val = JSON.parse(val);
  22937.    window.upcartSettings.upcartEditorSettings.upsellsTrigger = val;
  22938.  
  22939.    val = b64DecodeUnicode("ZmFsc2U=");
  22940.    if (val === '') {
  22941.        val = b64DecodeUnicode("ZmFsc2U=");
  22942.    }
  22943.    val = JSON.parse(val);
  22944.    window.upcartSettings.upcartEditorSettings.showUpsellItemsAlreadyInCart = val;
  22945.  
  22946.    val = b64DecodeUnicode("W3siaWQiOiI0ODIiLCJ2IjoyLCJ0cmlnZ2VyIjp7Im9uIjoic3BlY2lmaWMiLCJzZWxlY3Rpb24iOnsidHlwZSI6IkNvbGxlY3Rpb24iLCJjb2xsZWN0aW9uIjp7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Db2xsZWN0aW9uLzE4MjcyNjc5MCIsInRpdGxlIjoiU2NyZWVucyIsImltYWdlIjpudWxsLCJoYW5kbGUiOiJzY3JlZW5zIiwidXBkYXRlZEF0IjoiMjAyNS0wOS0yNVQxMToyNTozM1oiLCJwcm9kdWN0c0NvdW50Ijp7ImNvdW50IjoxNDI3LCJfX3R5cGVuYW1lIjoiQ291bnQifSwic29ydE9yZGVyIjoiQUxQSEFfQVNDIiwiX190eXBlbmFtZSI6IkNvbGxlY3Rpb24ifX19LCJ1cHNlbGwiOnsidHlwZSI6IlByb2R1Y3QiLCJwcm9kdWN0cyI6W3siaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvNzQxMTg5NTE3MzIwNyIsInNob3J0SWQiOiI3NDExODk1MTczMjA3IiwidmFyaWFudHMiOlsiNDE3MDIxOTM2OTI3NTkiXSwiaGFuZGxlIjoibmV3LWxjZC1zY3JlZW4tcHVsbC10YWJzLXN0cmV0Y2gtcmVsZWFzZS1hZGhlc2l2ZS1zdHJpcHMtZm9yLTExLTYtMTMtMy0xNC0xNS02LWxhcHRvcHMtMiIsInRpdGxlIjoiTmV3IExDRCBTY3JlZW4gUHVsbCBUYWJzIFN0cmV0Y2ggUmVsZWFzZSBBZGhlc2l2ZSBTdHJpcHMgRm9yIDExLjZcIiAxMy4zXCIgMTRcIiAxNS42XCIgTGFwdG9wcyIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9zLWwxMDAwXzM5NDhhZjc3LWE0ZDktNGMyNi1iZDkzLTVlZDgyYmI4N2ZhOS53ZWJwP3Y9MTc0NjYzNTIwNCJ9XX19LHsiaWQiOiIyMTI5MSIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzczMjM4ODQwMjc5OTEiLCJzaG9ydElkIjoiNzMyMzg4NDAyNzk5MSIsInZhcmlhbnRzIjpbIjQxMzYwNTgyOTM0NjE1Il0sImhhbmRsZSI6Im5ldy1sYXB0b3AtcmVwYWlyLXRvb2wta2l0LTExNS1pbi0xLW1hZ25ldGljLXByZWNpc2lvbi1zY3Jld2RyaXZlci1zZXQtMiIsInRpdGxlIjoiTmV3IExhcHRvcCBSZXBhaXIgVG9vbCBraXQgMTE1IGluIDEgTWFnbmV0aWMgUHJlY2lzaW9uIFNjcmV3ZHJpdmVyIFNldCIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9zLWwxMDAwXzUxNmUwMjY0LWRjZjMtNDU3Zi1iNTJiLWI4MDc2ZjE0MDBiMi53ZWJwP3Y9MTczMTQyMDU0OCJ9XX19LHsiaWQiOiIxNDI4OSIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzY1NzA2MjE1OTk4MzEiLCJzaG9ydElkIjoiNjU3MDYyMTU5OTgzMSIsInZhcmlhbnRzIjpbIjM5MzMzODE4MjY5NzgzIl0sImhhbmRsZSI6Im5ldy1ibGFjay0zbS1zdGlja2VyLWRvdWJsZS1zaWRlZC01bW0teC01MG0tdGFwZS1hZGhlc2l2ZS1mb3ItY2VsbC1waG9uZS1jb21wdXRlci1yZXBhaXJzIiwidGl0bGUiOiJOZXcgQmxhY2sgM00gU3RpY2tlciBEb3VibGUgU2lkZWQgNW1tIHggNTBtIFRhcGUgQWRoZXNpdmUgRm9yIENlbGwgUGhvbmUgJiBDb21wdXRlciBSZXBhaXJzIn1dfX0seyJpZCI6IjIxNDMyIiwidiI6MiwidHJpZ2dlciI6eyJvbiI6ImFsbCJ9LCJ1cHNlbGwiOnsidHlwZSI6IlByb2R1Y3QiLCJwcm9kdWN0cyI6W3siaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvNzM4Nzg0Nzc4NjU4MyIsInNob3J0SWQiOiI3Mzg3ODQ3Nzg2NTgzIiwidmFyaWFudHMiOlsiNDE2MTQ5NjA4ODU4NDciXSwiaGFuZGxlIjoibmV3LTEyOGdiLXVzYi1mbGFzaC1kcml2ZXMtdXNiLTItMC1ibGFjay1hbmQtc2lsdmVyLWxpcXVpZGF0aW9uLXNhbGUiLCJ0aXRsZSI6Ik5ldyAxMjhHQiBVU0IgRmxhc2ggRHJpdmVzIFVTQiAyLjAgQmxhY2sgYW5kIFNpbHZlciAtIExJUVVJREFUSU9OIFNBTEUiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvcy1sMTAwMF8yODUxNWNhZC1lMjNlLTRjNWItOGU4YS05OTUxNjY3ZDVjZDgud2VicD92PTE3NDIzMjMyNjYifV19fV0=");
  22947.    if (val === '') {
  22948.        val = b64DecodeUnicode("W3siX2lkIjoiIiwidHJpZ2dlciI6bnVsbCwidXBzZWxsIjpudWxsfV0=");
  22949.    }
  22950.    val = JSON.parse(val);
  22951.    window.upcartSettings.upcartEditorSettings.upsellsItems = val;
  22952.  
  22953.    val = b64DecodeUnicode("Ym90dG9t");
  22954.    if (val === '') {
  22955.        val = b64DecodeUnicode("Ym90dG9t");
  22956.    }
  22957.    window.upcartSettings.upcartEditorSettings.upsellsModulePosition = val;
  22958.  
  22959.    val = b64DecodeUnicode("ZmFsc2U=");
  22960.    if (val === '') {
  22961.        val = b64DecodeUnicode("ZmFsc2U=");
  22962.    }
  22963.    val = JSON.parse(val);
  22964.    window.upcartSettings.upcartEditorSettings.recommendedUpsells = val;
  22965.  
  22966.    val = b64DecodeUnicode("ZmFsc2U=");
  22967.    if (val === '') {
  22968.        val = b64DecodeUnicode("ZmFsc2U=");
  22969.    }
  22970.    val = JSON.parse(val);
  22971.    window.upcartSettings.upcartEditorSettings.smartVariantMatching = val;
  22972.  
  22973.    val = b64DecodeUnicode("cmVsYXRlZA==");
  22974.    if (val === '') {
  22975.        val = b64DecodeUnicode("cmVsYXRlZA==");
  22976.    }
  22977.    window.upcartSettings.upcartEditorSettings.upsellRecommendationIntent = val;
  22978.  
  22979.    val = b64DecodeUnicode("");
  22980.    if (val === '') {
  22981.        val = b64DecodeUnicode("bm8tcHJvZHVjdHM=");
  22982.    }
  22983.    window.upcartSettings.upcartEditorSettings.upsellProductReviews = val;
  22984.  
  22985.    val = b64DecodeUnicode("");
  22986.    if (val === '') {
  22987.        val = b64DecodeUnicode("KHt7UkVWSUVXX0NPVU5UfX0gcmV2aWV3cyk=");
  22988.    }
  22989.    window.upcartSettings.upcartEditorSettings.upsellProductReviewsTextTemplate = val;
  22990.  
  22991.    val = b64DecodeUnicode("dHJ1ZQ==");
  22992.    if (val === '') {
  22993.        val = b64DecodeUnicode("ZmFsc2U=");
  22994.    }
  22995.    val = JSON.parse(val);
  22996.    window.upcartSettings.upcartEditorSettings.addonsModule = val;
  22997.  
  22998.    val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjp0cnVlLCJwcm9kdWN0SGFuZGxlIjoic2hpcHBpbmctcHJvdGVjdGlvbiIsImRlZmF1bHRCZWhhdmlvciI6dHJ1ZSwidGllcnMiOlt7Im1heENhcnRUb3RhbCI6OTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjMuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk0NDc5MSJ9LHsibWF4Q2FydFRvdGFsIjoxOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjQuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk3NzU1OSJ9LHsibWF4Q2FydFRvdGFsIjoyOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjUuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDAxMDMyNyJ9LHsibWF4Q2FydFRvdGFsIjozOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjYuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDA0MzA5NSJ9LHsibWF4Q2FydFRvdGFsIjpudWxsLCJ0ZW1wb3JhcnlEYXRhRm9yQWRtaW4iOnsidmFyaWFudFByaWNlIjo3Ljk5fSwidmFyaWFudElkIjoiNDEzNjU2MDAwNzU4NjMifV0sInVzZVByZURpc2NvdW50ZWRUb3RhbCI6dHJ1ZX0sInByb2R1Y3RBZGRvbiI6eyJhY3RpdmUiOmZhbHNlLCJwcm9kdWN0SGFuZGxlIjpudWxsLCJwcm9kdWN0IjpudWxsLCJkZWZhdWx0QmVoYXZpb3IiOmZhbHNlfX0=");
  22999.    if (val === '') {
  23000.        val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjpmYWxzZSwicHJvZHVjdEhhbmRsZSI6bnVsbCwidGllcnMiOltdLCJ1c2VQcmVEaXNjb3VudGVkVG90YWwiOmZhbHNlfSwicHJvZHVjdEFkZG9uIjp7ImFjdGl2ZSI6ZmFsc2UsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGx9fQ==");
  23001.    }
  23002.    val = JSON.parse(val);
  23003.    window.upcartSettings.upcartEditorSettings.addonsField = val;
  23004.  
  23005.    val = b64DecodeUnicode("dHJ1ZQ==");
  23006.    if (val === '') {
  23007.        val = b64DecodeUnicode("ZmFsc2U=");
  23008.    }
  23009.    val = JSON.parse(val);
  23010.    window.upcartSettings.upcartEditorSettings.addonsShouldBeCounted = val;
  23011.  
  23012.    val = b64DecodeUnicode("");
  23013.    if (val === '') {
  23014.        val = b64DecodeUnicode("dHJ1ZQ==");
  23015.    }
  23016.    val = JSON.parse(val);
  23017.    window.upcartSettings.upcartEditorSettings.enableAddonAttributeKey = val;
  23018.  
  23019.    val = b64DecodeUnicode("dHJ1ZQ==");
  23020.    if (val === '') {
  23021.        val = b64DecodeUnicode("ZmFsc2U=");
  23022.    }
  23023.    val = JSON.parse(val);
  23024.    window.upcartSettings.upcartEditorSettings.notesModule = val;
  23025.  
  23026.    val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zIC0gTGFwdG9wIG1vZGVsIE51bWJlcjwvcD4K");
  23027.    if (val === '') {
  23028.        val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zPC9wPg==");
  23029.    }
  23030.    window.upcartSettings.upcartEditorSettings.notesTitle = val;
  23031.  
  23032.    val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  23033.    if (val === '') {
  23034.        val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  23035.    }
  23036.    window.upcartSettings.upcartEditorSettings.notesPlaceholder = val;
  23037.  
  23038.    val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  23039.    if (val === '') {
  23040.        val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  23041.    }
  23042.    window.upcartSettings.upcartEditorSettings.notesPlacement = val;
  23043.  
  23044.    val = b64DecodeUnicode("dHJ1ZQ==");
  23045.    if (val === '') {
  23046.        val = b64DecodeUnicode("ZmFsc2U=");
  23047.    }
  23048.    val = JSON.parse(val);
  23049.    window.upcartSettings.upcartEditorSettings.trustBadgesModule = val;
  23050.  
  23051.    val = b64DecodeUnicode("eyJ1cmwiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL1VwY2FydF9UcnVzdF9CYWRnZV8xNzM5ODgzNjUyMjIxLmpwZz92PTE3Mzk4ODM2NjEiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  23052.    if (val === '') {
  23053.        val = b64DecodeUnicode("eyJ1cmwiOiIiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  23054.    }
  23055.    val = JSON.parse(val);
  23056.    window.upcartSettings.upcartEditorSettings.trustBadges = val;
  23057.  
  23058.    val = b64DecodeUnicode("dHJ1ZQ==");
  23059.    if (val === '') {
  23060.        val = b64DecodeUnicode("ZmFsc2U=");
  23061.    }
  23062.    val = JSON.parse(val);
  23063.    window.upcartSettings.upcartEditorSettings.discountCodeModule = val;
  23064.  
  23065.    val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  23066.    if (val === '') {
  23067.        val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  23068.    }
  23069.    window.upcartSettings.upcartEditorSettings.discountCodePlaceholder = val;
  23070.  
  23071.    val = b64DecodeUnicode("QXBwbHk=");
  23072.    if (val === '') {
  23073.        val = b64DecodeUnicode("QXBwbHk=");
  23074.    }
  23075.    window.upcartSettings.upcartEditorSettings.discountCodeButtonText = val;
  23076.  
  23077.    val = b64DecodeUnicode("ZmFsc2U=");
  23078.    if (val === '') {
  23079.        val = b64DecodeUnicode("ZmFsc2U=");
  23080.    }
  23081.    val = JSON.parse(val);
  23082.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesModule = val;
  23083.  
  23084.    val = b64DecodeUnicode("ZmFsc2U=");
  23085.    if (val === '') {
  23086.        val = b64DecodeUnicode("ZmFsc2U=");
  23087.    }
  23088.    val = JSON.parse(val);
  23089.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesPreventDowngrades = val;
  23090.  
  23091.    val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  23092.    if (val === '') {
  23093.        val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  23094.    }
  23095.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesButtonText = val;
  23096.  
  23097.    val = b64DecodeUnicode("ZmFsc2U=");
  23098.    if (val === '') {
  23099.        val = b64DecodeUnicode("ZmFsc2U=");
  23100.    }
  23101.    val = JSON.parse(val);
  23102.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsTextOverride = val;
  23103.  
  23104.    val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  23105.    if (val === '') {
  23106.        val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  23107.    }
  23108.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsText = val;
  23109.  
  23110.    val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  23111.    if (val === '') {
  23112.        val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  23113.    }
  23114.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOneTimePurchaseText = val;
  23115.  
  23116.    val = b64DecodeUnicode("");
  23117.    if (val === '') {
  23118.        val = b64DecodeUnicode("RnVsbCBwcmljZQ==");
  23119.    }
  23120.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesFullPriceText = val;
  23121.  
  23122.    val = b64DecodeUnicode("");
  23123.    if (val === '') {
  23124.        val = b64DecodeUnicode("U3Vic2NyaXB0aW9uIHBsYW5z");
  23125.    }
  23126.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesSubscriptionPlansText = val;
  23127.  
  23128.    val = b64DecodeUnicode("dHJ1ZQ==");
  23129.    if (val === '') {
  23130.        val = b64DecodeUnicode("ZmFsc2U=");
  23131.    }
  23132.    val = JSON.parse(val);
  23133.    window.upcartSettings.upcartEditorSettings.expressPayModule = val;
  23134.  
  23135.    val = b64DecodeUnicode("W10=");
  23136.    if (val === '') {
  23137.        val = b64DecodeUnicode("W10=");
  23138.    }
  23139.    val = JSON.parse(val);
  23140.    window.upcartSettings.upcartEditorSettings.expressPayEnabledGateways = val;
  23141.  
  23142.    val = b64DecodeUnicode("MQ==");
  23143.    if (val === '') {
  23144.        val = b64DecodeUnicode("MQ==");
  23145.    }
  23146.    window.upcartSettings.upcartEditorSettings.expressPayVersion = val;
  23147.  
  23148.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  23149.    if (val === '') {
  23150.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  23151.    }
  23152.    val = JSON.parse(val);
  23153.    window.upcartSettings.upcartEditorSettings.expressPayAcceleratedCheckoutStyles = val;
  23154.  
  23155.    val = b64DecodeUnicode("dHJ1ZQ==");
  23156.    if (val === '') {
  23157.        val = b64DecodeUnicode("dHJ1ZQ==");
  23158.    }
  23159.    val = JSON.parse(val);
  23160.    window.upcartSettings.upcartEditorSettings.expressPayHideBuyerConsent = val;
  23161.  
  23162.    val = b64DecodeUnicode("ZmFsc2U=");
  23163.    if (val === '') {
  23164.        val = b64DecodeUnicode("ZmFsc2U=");
  23165.    }
  23166.    val = JSON.parse(val);
  23167.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartButtonIsEnabled = val;
  23168.  
  23169.    val = b64DecodeUnicode("IzQzYmUwYQ==");
  23170.    if (val === '') {
  23171.        val = b64DecodeUnicode("IzAwMDAwMA==");
  23172.    }
  23173.    window.upcartSettings.stickyCartButtonEditorSettings.backgroundColor = val;
  23174.  
  23175.    val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23176.    if (val === '') {
  23177.        val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23178.    }
  23179.    window.upcartSettings.stickyCartButtonEditorSettings.deviceSettings = val;
  23180.  
  23181.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23182.    if (val === '') {
  23183.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23184.    }
  23185.    window.upcartSettings.stickyCartButtonEditorSettings.iconColor = val;
  23186.  
  23187.    val = b64DecodeUnicode("c3RhbmRhcmRDYXJ0");
  23188.    if (val === '') {
  23189.        val = b64DecodeUnicode("c3F1YXJlQmFn");
  23190.    }
  23191.    window.upcartSettings.stickyCartButtonEditorSettings.iconStyle = val;
  23192.  
  23193.    val = b64DecodeUnicode("I2U0MjYyNg==");
  23194.    if (val === '') {
  23195.        val = b64DecodeUnicode("I2U0MjYyNg==");
  23196.    }
  23197.    window.upcartSettings.stickyCartButtonEditorSettings.quantityBackgroundColor = val;
  23198.  
  23199.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23200.    if (val === '') {
  23201.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23202.    }
  23203.    window.upcartSettings.stickyCartButtonEditorSettings.quantityTextColor = val;
  23204.  
  23205.    val = b64DecodeUnicode("Y2VudGVyUmlnaHQ=");
  23206.    if (val === '') {
  23207.        val = b64DecodeUnicode("Ym90dG9tUmlnaHQ=");
  23208.    }
  23209.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartPosition = val;
  23210.  
  23211. })();
  23212. </script>
  23213.  
  23214.  
  23215.  
  23216.  
  23217.  <div id="upcart-additional-checkout-buttons" style="position: absolute !important; margin-left: -9999px !important; display: block !important;" class="additional-checkout-buttons">
  23218.    
  23219.    <div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
  23220.    <div class="upcart-additional-checkout-buttons-svgs">
  23221.  
  23222.      
  23223.  
  23224.      
  23225.  
  23226.      
  23227.  
  23228.      
  23229.  
  23230.      
  23231.  
  23232.      
  23233.    </div>
  23234.  </div>
  23235.  
  23236.  
  23237.  
  23238.  
  23239. <script>
  23240.  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};
  23241.  window.upcartMoneyFormat = "${{amount}}";
  23242.  window.upcartStorefrontPublicAccessToken = '53e72a50badb7e504187b4c7431817bf' || undefined;
  23243.  window.upcartClientLocalizationCountry = {
  23244.    isoCode: 'CA',
  23245.    currency: 'CurrencyDrop',
  23246.    name: 'Canada'
  23247.  };
  23248.  window.upcartMyShopifyDomain = 'laptoppartsatp.myshopify.com';
  23249. </script>
  23250.  
  23251.  
  23252. <script>
  23253.    window.upcart = window.upcart || {};
  23254.    window.upcart.customer = { isLoggedIn: false };
  23255.  </script><script>
  23256.  window.upcartPreloadedCart.items = window.upcartPreloadedCart.items.map((line) => {
  23257.    
  23258.  
  23259.    return line;
  23260.  });
  23261. </script>
  23262.  
  23263. <div id="upCart"></div>
  23264. <div id="upCartStickyButton"></div>
  23265.  
  23266. <style id="upCart-customCSS">
  23267.  
  23268.    *{}
  23269.  
  23270. </style>
  23271.  
  23272.  
  23273. </div></body>
  23274. </html>
  23275.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda