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.    <script src="https://app.groas.ai/content.js" type="text/javascript"></script>
  5. <!-- "snippets/booster-seo.liquid" was not rendered, the associated app was uninstalled -->    
  6.        <!-- Google tag (gtag.js) -->
  7.    <script async src="https://www.googletagmanager.com/gtag/js?id=AW-977549716"></script>
  8.    <script>
  9.      window.dataLayer = window.dataLayer || [];
  10.      function gtag(){dataLayer.push(arguments);}
  11.      gtag('js', new Date());
  12.  
  13.      gtag('config', 'AW-977549716');
  14.    </script>
  15.    <!-- Google Tag Manager -->
  16.    <script>
  17.      (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  18.      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  19.      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.async=true;j.src=
  20.      'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  21.      })(window,document,'script','dataLayer','GTM-WDHHF23');
  22.    </script>
  23.    <!-- End Google Tag Manager -->
  24.    <script>  
  25.  /**
  26.  * Author: shipon islam
  27.  * Version: 1.1.0
  28.  * Last Update: 17 Sep 2023
  29.  */
  30.  
  31.  (function() {
  32.      class GTM_DataLayer {
  33.        constructor() {
  34.          window.dataLayer = window.dataLayer || [];
  35.          this.formattedItemId = true;
  36.  
  37.          this.miniCartButtonSelector = [
  38.            // 'a[href="/cart"]',
  39.          ];
  40.  
  41.          this.beginCheckoutbuttons = [
  42.            'button[name="checkout"]',
  43.            '.additional-checkout-buttons',
  44.          ];
  45.  
  46.          this.shopifyDeirectPaymentButtonLink = [
  47.            '.shopify-payment-button'
  48.          ]
  49.  
  50.          this.isAjaxCartIncrementDecrement = true;
  51.  
  52.          this.addToWishListSelectors = {
  53.            'addWishListIcon': '',
  54.            'gridItemSelector': '',
  55.            'productLinkSelector': ''
  56.          }
  57.  
  58.          this.quickViewSelector = {
  59.            'quickViewElement': '',
  60.            'gridItemSelector': '',
  61.            'productLinkSelector': ''
  62.          }
  63.          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}
  64.          this.countryCode = "CA";
  65.          this.collectData();          
  66.        }
  67.  
  68.        updateCart() {
  69.          fetch("/cart.js")
  70.          .then((response) => response.json())
  71.          .then((data) => {
  72.            this.cart = data;
  73.          });
  74.        }
  75.  
  76.        collectData() {
  77.            this.customerData();
  78.            this.ajaxRequestData();
  79.            this.miniCartData();
  80.            this.beginCheckoutData();
  81.  
  82.            
  83.  
  84.            
  85.  
  86.            
  87.            
  88.            this.addToWishListData();
  89.            this.quickViewData();
  90.            this.newsletterSignupData();
  91.        }
  92.  
  93.        //logged in customer data
  94.        customerData() {
  95.            const currentUser = {};
  96.            
  97.  
  98.            window.dataLayer = window.dataLayer || [];
  99.            dataLayer.push({
  100.              customer: currentUser
  101.            })
  102.        }
  103.  
  104.        // shipon_add_to_cart, shipon_remove_from_cart
  105.        ajaxRequestData() {
  106.          const self = this;
  107.          let originalFetch = window.fetch;
  108.          
  109.          window.fetch = function () {
  110.            return originalFetch.apply(this, arguments).then((response) => {
  111.              if (response.ok) {
  112.                let cloneResponse = response.clone();
  113.                // add to cart
  114.                if (arguments[0].includes("/cart/add.js") || arguments[0].includes("/cart/add")) {
  115.                  cloneResponse.text().then((text) => {
  116.                    let item = JSON.parse(text);
  117.                    self.singleCartItemDataLayer('shipon_add_to_cart', item);
  118.                    self.updateCart();
  119.                  });
  120.                }else if(arguments[0].includes("/cart/change")) {
  121.                   cloneResponse.text().then((text) => {
  122.                    let newCart = JSON.parse(text);
  123.                    let newCartItems = newCart.items;
  124.                    let oldCartItems = self.cart.items;
  125.  
  126.                    for(let i = 0; i < oldCartItems.length; i++) {
  127.                      let item = oldCartItems[i];
  128.                      let newItem = newCartItems.find(newItems => newItems.id === item.id);
  129.  
  130.  
  131.                      if(newItem) {
  132.  
  133.                        if(newItem.quantity > item.quantity) {
  134.                          // cart item increment
  135.                          let quantity = (newItem.quantity - item.quantity);
  136.                          let updatedItem = {...item, quantity}
  137.                          self.singleCartItemDataLayer('shipon_add_to_cart', updatedItem);
  138.                          self.updateCart();
  139.  
  140.                        }else if(newItem.quantity < item.quantity) {
  141.                          // cart item decrement
  142.                          let quantity = (item.quantity - newItem.quantity);
  143.                          let updatedItem = {...item, quantity}
  144.                          self.singleCartItemDataLayer('shipon_remove_from_cart', updatedItem);
  145.                          self.updateCart();
  146.                        }
  147.                        
  148.  
  149.                      }else {
  150.                        self.singleCartItemDataLayer('shipon_remove_from_cart', item);
  151.                        self.updateCart();
  152.                      }
  153.                    }
  154.                  });
  155.                }
  156.              }
  157.              return response;
  158.            });
  159.          }
  160.        }
  161.  
  162.        // shipon_view_cart
  163.        miniCartData() {
  164.          if(this.miniCartButtonSelector.length) {
  165.            let self = this;
  166.            this.miniCartButtonSelector.forEach((selector) => {
  167.              let miniCartButton = document.querySelector(selector);
  168.              if(miniCartButton) {
  169.                miniCartButton.addEventListener('click', () => {
  170.                  self.cartItemsDataLayer('shipon_view_cart', self.cart);
  171.                });
  172.              }
  173.            });
  174.          }
  175.        }
  176.  
  177.        // shipon_begin_checkout
  178.        beginCheckoutData() {
  179.          let self = this;
  180.          document.addEventListener('click', () => {
  181.            let targetElement = event.target.closest(self.beginCheckoutbuttons.join(', '));
  182.            if(targetElement) {
  183.              self.cartItemsDataLayer('shipon_begin_checkout', self.cart);
  184.            }
  185.          });
  186.        }
  187.  
  188.        // shipon_view_cart, shipon_add_to_cart, shipon_remove_from_cart
  189.        viewCartPageData() {
  190.          
  191.          this.cartItemsDataLayer('shipon_view_cart', this.cart);
  192.  
  193.          //if cart quantity chagne reload page
  194.          if(!this.isAjaxCartIncrementDecrement) {
  195.            const self = this;
  196.            document.addEventListener('pointerdown', (event) => {
  197.              const target = event.target.closest('a[href*="/cart/change?"]');
  198.              if(target) {
  199.                const linkUrl = target.getAttribute('href');
  200.                const queryString = linkUrl.split("?")[1];
  201.                const urlParams = new URLSearchParams(queryString);
  202.                const newQuantity = urlParams.get("quantity");
  203.                const line = urlParams.get("line");
  204.                const cart_id = urlParams.get("id");
  205.        
  206.                
  207.                if(newQuantity && (line || cart_id)) {
  208.                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
  209.        
  210.                  let event = 'shipon_add_to_cart';
  211.                  if(newQuantity < item.quantity) {
  212.                    event = 'shipon_remove_from_cart';
  213.                  }
  214.        
  215.                  let quantity = Math.abs(newQuantity - item.quantity);
  216.                  item['quantity'] = quantity;
  217.        
  218.                  self.singleCartItemDataLayer(event, item);
  219.                }
  220.              }
  221.            });
  222.          }
  223.        }
  224.  
  225.        productSinglePage() {
  226.        
  227.        }
  228.  
  229.        collectionsPageData() {
  230.          var ecommerce = {
  231.            'items': [
  232.              
  233.              ]
  234.          };
  235.  
  236.          ecommerce['item_list_id'] = null
  237.          ecommerce['item_list_name'] = null
  238.  
  239.          this.cartItemsDataLayer('shipon_view_item_list', ecommerce);
  240.        }
  241.        
  242.        
  243.        // add to wishlist
  244.        addToWishListData() {
  245.          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
  246.            const self = this;
  247.            document.addEventListener('pointerdown', (event) => {
  248.              let target = event.target;
  249.              
  250.              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
  251.                let pageULR = window.location.href.replace(/\?.+/, '');
  252.                let requestURL = undefined;
  253.          
  254.                if(/\/products\/[^/]+$/.test(pageULR)) {
  255.                  requestURL = pageULR;
  256.                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
  257.                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
  258.                  if(itemElement) {
  259.                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
  260.                    if(linkElement) {
  261.                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  262.                      if(link && /\/products\/[^/]+$/.test(link)) {
  263.                        requestURL = link;
  264.                      }
  265.                    }
  266.                  }
  267.                }
  268.  
  269.                if(requestURL) {
  270.                  fetch(requestURL + '.json')
  271.                    .then(res => res.json())
  272.                    .then(result => {
  273.                      let data = result.product;                    
  274.                      if(data) {
  275.                        let dataLayerData = {
  276.                         product_id: data.id,
  277.                            variant_id: data.variants[0].id,
  278.                            product_title: data.title,
  279.                         quantity: 1,
  280.                         final_price: parseFloat(data.variants[0].price) * 100,
  281.                         total_discount: 0,
  282.                         product_type: data.product_type,
  283.                         vendor: data.vendor,
  284.                         variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  285.                         sku: data.variants[0].sku,
  286.                        }
  287.  
  288.                        self.singleCartItemDataLayer('shipon_add_to_wishlist', dataLayerData);
  289.                      }
  290.                    });
  291.                }
  292.              }
  293.            });
  294.          }
  295.        }
  296.  
  297.        quickViewData() {
  298.          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
  299.            const self = this;
  300.            document.addEventListener('pointerdown', (event) => {
  301.              let target = event.target;
  302.              if(target.closest(self.quickViewSelector.quickViewElement)) {
  303.                let requestURL = undefined;
  304.                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
  305.                
  306.                if(itemElement) {
  307.                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
  308.                  if(linkElement) {
  309.                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  310.                    if(link && /\/products\/[^/]+$/.test(link)) {
  311.                      requestURL = link;
  312.                    }
  313.                  }
  314.                }  
  315.                
  316.                if(requestURL) {
  317.                    fetch(requestURL + '.json')
  318.                      .then(res => res.json())
  319.                      .then(result => {
  320.                        let data = result.product;                    
  321.                        if(data) {
  322.                          let dataLayerData = {
  323.                           product_id: data.id,
  324.                            variant_id: data.variants[0].id,
  325.                            product_title: data.title,
  326.                           quantity: 1,
  327.                           final_price: parseFloat(data.variants[0].price) * 100,
  328.                           total_discount: 0,
  329.                           product_type: data.product_type,
  330.                           vendor: data.vendor,
  331.                           variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  332.                           sku: data.variants[0].sku,
  333.                          }
  334.  
  335.                          self.singleCartItemDataLayer('shipon_view_item', dataLayerData);
  336.                          self.quickViewVariants = data.variants;
  337.                          self.quickViewedItem = dataLayerData;
  338.                        }
  339.                      });
  340.                  }
  341.              }
  342.            });
  343.  
  344.            
  345.              if(this.shopifyDeirectPaymentButtonLink.length) {
  346.                let self = this;
  347.                document.addEventListener('pointerdown', (event) => {
  348.                  let target = event.target;
  349.                  let checkoutButton = event.target.closest(this.shopifyDeirectPaymentButtonLink.join(', '));
  350.                  
  351.                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
  352.  
  353.                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
  354.                    if(checkoutForm) {
  355.                        let quantity = 1;
  356.                        let varientInput = checkoutForm.querySelector('input[name="id"]');
  357.                        let quantitySelector = checkoutForm.getAttribute('id');
  358.  
  359.                        if(quantitySelector) {
  360.                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
  361.                          if(quentityInput) {
  362.                              quantity = +quentityInput.value;
  363.                          }
  364.                        }
  365.  
  366.                        if(varientInput) {
  367.                            let variant_id = parseInt(varientInput.value);
  368.  
  369.                            if(variant_id) {
  370.                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
  371.                                if(variant && self.quickViewedItem) {
  372.                                    self.quickViewedItem['variant_id'] = variant_id;
  373.                                    self.quickViewedItem['variant_title'] = variant.title;
  374.                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
  375.                                    self.quickViewedItem['quantity'] = quantity;
  376.    
  377.                                    self.singleCartItemDataLayer('shipon_add_to_cart', self.quickViewedItem);
  378.                                    self.singleCartItemDataLayer('shipon_begin_checkout', self.quickViewedItem);
  379.                                }
  380.                            }
  381.                        }
  382.                    }
  383.  
  384.                  }
  385.                });
  386.            }
  387.            
  388.          }
  389.        }
  390.  
  391.        // single item add in dataLyaer
  392.        singleCartItemDataLayer(event, item) {
  393.          dataLayer.push({ "ecommerce": null });
  394.          const dataLayerData = {
  395.            "event": event,
  396.            "ecommerce": {
  397.              "currency": this.cart.currency,
  398.              "value": +(((item.final_price / 100) * item.quantity).toFixed(2)),
  399.              "items": [{
  400.                  "item_id": this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id,
  401.                  "variant_id": item.variant_id.toString(),
  402.                  "item_name": item.product_title,
  403.                  "quantity": item.quantity,
  404.                  "price": +((item.final_price / 100).toFixed(2)),
  405.                  "discount": item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  406.              }]
  407.            }
  408.          }
  409.  
  410.          if(item.product_type) {
  411.            dataLayerData.ecommerce['items'][0]['item_category'] = item.product_type;
  412.          }
  413.  
  414.          if(item.vendor) {
  415.            dataLayerData.ecommerce['items'][0]['item_brand'] = item.vendor;
  416.          }
  417.  
  418.          if(item.variant_title && item.variant_title !== 'Default Title') {
  419.            dataLayerData.ecommerce['items'][0]['item_variant'] = item.variant_title;
  420.          }
  421.  
  422.          if(item.sku) {
  423.            dataLayerData.ecommerce['items'][0]['sku'] = item.sku;
  424.          }
  425.  
  426.          if(item.item_list_id) {
  427.            dataLayerData.ecommerce['items'][0]['item_list_id'] = item.item_list_id;
  428.          }
  429.          
  430.          if(item.item_list_name) {
  431.            dataLayerData.ecommerce['items'][0]['item_list_name'] = item.item_list_name;
  432.          }
  433.          
  434.          dataLayer.push(dataLayerData);
  435.        };
  436.  
  437.        // multiple items add in dataLayer
  438.        cartItemsDataLayer(event, cart) {
  439.          dataLayer.push({ 'ecommerce': null });
  440.          const dataLayerData = {
  441.            'event': event,
  442.            'ecommerce': {
  443.               'currency': this.cart.currency,
  444.               'items': cart.items.map((item, index) => {
  445.                 const itemDataLayerData = {
  446.                    'index': index,
  447.                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
  448.                    'variant_id': item.variant_id.toString(),
  449.                    'item_name': item.product_title,
  450.                    'quantity': item.quantity,
  451.                    'price': +((item.final_price / 100).toFixed(2)),
  452.                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  453.                }
  454.  
  455.                if(item.product_type) {
  456.                  itemDataLayerData['item_category'] = item.product_type;
  457.                }
  458.                
  459.                 if(item.vendor) {
  460.                  itemDataLayerData['item_brand'] = item.vendor;
  461.                }
  462.  
  463.                                
  464.                if(item.variant_title && item.variant_title !== 'Default Title') {
  465.                  itemDataLayerData['item_variant'] = item.variant_title;
  466.                }
  467.              
  468.                if(item.sku) {
  469.                  itemDataLayerData['sku'] = item.sku;
  470.                }
  471.  
  472.                if(item.item_list_name) {
  473.                  itemDataLayerData['item_list_name'] = item.item_list_name;
  474.                }
  475.  
  476.                if(item.item_list_id) {
  477.                  itemDataLayerData['item_list_id'] = item.item_list_id;
  478.                }
  479.  
  480.                return itemDataLayerData;
  481.              })
  482.            }
  483.          }
  484.  
  485.          if(cart.total_price) {
  486.            dataLayerData['ecommerce']['value'] = +((cart.total_price / 100).toFixed(2))
  487.          }
  488.          
  489.          if(cart.item_list_id) {
  490.            dataLayerData['ecommerce']['item_list_id'] = cart.item_list_id;
  491.          }
  492.          
  493.          if(cart.item_list_name) {
  494.            dataLayerData['ecommerce']['item_list_name'] = cart.item_list_name;
  495.          }
  496.          
  497.          dataLayer.push(dataLayerData);
  498.        }
  499.  
  500.        
  501.        // newsletters signup
  502.        newsletterSignupData() {
  503.        document.addEventListener('click', function(event) {
  504.          let target = event.target.closest('form[action^="/contact"] button[type="submit"]');
  505.          let targetForm = event.target.closest('form[action^="/contact"]');
  506.          if(target && targetForm) {
  507.            let email = targetForm.querySelector('input[type="email"]').value;
  508.            let formType = targetForm.querySelector('input[name="contact[tags]"]');
  509.            if(formType && formType.value === 'newsletter') {
  510.              let form_location = window.location.href;
  511.              let form_id = targetForm.getAttribute('id');
  512.              let form_classes = targetForm.getAttribute('class');
  513.        
  514.              dataLayer.push({
  515.                event: 'newsletter_signup',
  516.                email: email,
  517.                form_location,
  518.                form_id,
  519.                form_classes
  520.              });
  521.            }
  522.          }
  523.        });
  524.      }
  525.      }
  526.      
  527.  
  528.      document.addEventListener('DOMContentLoaded', function() {
  529.        try{
  530.          new GTM_DataLayer();
  531.        }catch(error) {
  532.          console.log(error);
  533.        }
  534.      });
  535.    
  536.  })();
  537. </script>
  538.  
  539.  
  540.  
  541.    <script>
  542.      window.Store = window.Store || {};
  543.      window.Store.id = 11386172;
  544.    </script>
  545.    <meta charset="utf-8">
  546.    <meta http-equiv="x-ua-compatible" content="IE=edge">
  547.  
  548.    <link rel="preconnect" href="https://cdn.shopify.com">
  549.    <link rel="preconnect" href="https://fonts.shopifycdn.com">
  550.    <link rel="preconnect" href="https://v.shopify.com">
  551.    <link rel="preconnect" href="https://cdn.shopifycloud.com">
  552.  
  553.    
  554.  
  555.    
  556.  
  557.    
  558.  <link rel="shortcut icon" href="//laptopparts.ca/cdn/shop/files/favicon_32x32.png?v=1635931652" type="image/png">
  559.  
  560.  
  561.    
  562.      <link rel="canonical" href="https://laptopparts.ca/">
  563.    
  564.  
  565.    <meta name="viewport" content="width=device-width">
  566.  
  567.    
  568.    
  569.  
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584. <meta property="og:site_name" content="LaptopParts.ca">
  585. <meta property="og:url" content="https://laptopparts.ca/">
  586. <meta property="og:title" content="Original Laptop &amp; Tablet Parts in Canada">
  587. <meta property="og:type" content="website">
  588. <meta property="og:description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  589.  
  590.  
  591.  
  592.  
  593.    
  594.    
  595.    
  596.  
  597.    
  598.    
  599.    <meta
  600.      property="og:image"
  601.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  602.    />
  603.    <meta
  604.      property="og:image:secure_url"
  605.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  606.    />
  607.    <meta property="og:image:width" content="2540" />
  608.    <meta property="og:image:height" content="630" />
  609.    
  610.    
  611.    <meta property="og:image:alt" content="Social media image" />
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  <meta name="twitter:site" content="@i/flow/login?redirect_after_login=%2FLaptopParts_ca">
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631. <meta name="twitter:title" content="Original Laptop &amp; Tablet Parts in Canada">
  632. <meta name="twitter:description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  633.  
  634.  
  635.    
  636.    
  637.    
  638.      
  639.      
  640.      <meta name="twitter:card" content="summary_large_image">
  641.    
  642.    
  643.    <meta
  644.      property="twitter:image"
  645.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_1200x600_crop_center.png?v=1696410523"
  646.    />
  647.    <meta property="twitter:image:width" content="1200" />
  648.    <meta property="twitter:image:height" content="600" />
  649.    
  650.    
  651.    <meta property="twitter:image:alt" content="Social media image" />
  652.  
  653. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/preconnect_resources.js" type="text/javascript"></script>
  654. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/globo_checkout.js" type="text/javascript"></script>
  655.  
  656.  
  657.  
  658.    <link rel="preload" href="//laptopparts.ca/cdn/fonts/nunito_sans/nunitosans_n7.25d963ed46da26098ebeab731e90d8802d989fa5.woff2" as="font" crossorigin="anonymous">
  659.    <link rel="preload" as="style" href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=5133477315152471431765911627">
  660.  
  661.    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="CrDzWSvAeMDFWNGBM_-BRbrjFQyoT_40-GZWV79wfbw">
  662. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/11386172/digital_wallets/dialog">
  663. <meta name="shopify-checkout-api-token" content="d20210e10f5cfcb163289d215c1a7239">
  664. <meta id="in-context-paypal-metadata" data-shop-id="11386172" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="CAD">
  665. <script async="async" src="/checkouts/internal/preloads.js?locale=en-CA"></script>
  666. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  667. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-CA&shop_id=11386172" crossorigin="anonymous"></script>
  668. <script id="apple-pay-shop-capabilities" type="application/json">{"shopId":11386172,"countryCode":"CA","currencyCode":"CAD","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/11386172","merchantName":"LaptopParts.ca","requiredBillingContactFields":["postalAddress","email"],"requiredShippingContactFields":["postalAddress","email"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","discover","interac","jcb"],"total":{"type":"pending","label":"LaptopParts.ca","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
  669. <script id="shopify-features" type="application/json">{"accessToken":"d20210e10f5cfcb163289d215c1a7239","betas":["rich-media-storefront-analytics"],"domain":"laptopparts.ca","predictiveSearch":true,"shopId":11386172,"locale":"en"}</script>
  670. <script>var Shopify = Shopify || {};
  671. Shopify.shop = "laptoppartsatp.myshopify.com";
  672. Shopify.locale = "en";
  673. Shopify.currency = {"active":"CAD","rate":"1.0"};
  674. Shopify.country = "CA";
  675. Shopify.theme = {"name":"LaptopParts.ca |- Optimized","id":126947917911,"schema_name":"Empire","schema_version":"9.1.1","theme_store_id":838,"role":"main"};
  676. Shopify.theme.handle = "null";
  677. Shopify.theme.style = {"id":null,"handle":null};
  678. Shopify.cdnHost = "laptopparts.ca/cdn";
  679. Shopify.routes = Shopify.routes || {};
  680. Shopify.routes.root = "/";
  681. Shopify.shopJsCdnBaseUrl = "https://cdn.shopify.com/shopifycloud/shop-js";
  682. Shopify.SignInWithShop = Shopify.SignInWithShop || {};
  683. Shopify.SignInWithShop.User = Shopify.SignInWithShop.User || {};
  684. Shopify.SignInWithShop.User.recognized = false;</script>
  685. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  686. <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>
  687. <script>
  688.  window.ShopifyPay = window.ShopifyPay || {};
  689.  window.ShopifyPay.apiHost = "shop.app\/pay";
  690.  window.ShopifyPay.redirectState = null;
  691. </script>
  692. <script>
  693.  window.Shopify = window.Shopify || {};
  694.  window.Shopify.SignInWithShop = window.Shopify.SignInWithShop || {};
  695.  window.Shopify.SignInWithShop.eligible = true;
  696. </script>
  697. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  698. <script defer="defer" async type="module" src="//laptopparts.ca/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js"></script>
  699. <script type="module">
  700.  await import("//laptopparts.ca/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js");
  701.  
  702.  window.Shopify.SignInWithShop?.initShopCartSync?.({"fedCMEnabled":true,"windoidEnabled":true});
  703.  
  704. </script>
  705. <script>
  706.  window.Shopify = window.Shopify || {};
  707.  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  708.  window.Shopify.featureAssets['shop-js'] = {"shop-toast-manager":["modules/v2/loader.shop-toast-manager.en.esm.js"],"init-shop-user-recognition":["modules/v2/loader.init-shop-user-recognition.en.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/loader.init-shop-email-lookup-coordinator.en.esm.js"],"init-fed-cm":["modules/v2/loader.init-fed-cm.en.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/loader.init-shop-for-new-customer-accounts.en.esm.js"],"init-windoid":["modules/v2/loader.init-windoid.en.esm.js"],"shop-button":["modules/v2/loader.shop-button.en.esm.js"],"shop-cash-offers":["modules/v2/loader.shop-cash-offers.en.esm.js"],"shop-login-button":["modules/v2/loader.shop-login-button.en.esm.js"],"checkout-modal":["modules/v2/loader.checkout-modal.en.esm.js"],"avatar":["modules/v2/loader.avatar.en.esm.js"],"init-shop-cart-sync":["modules/v2/loader.init-shop-cart-sync.en.esm.js"],"init-customer-accounts-sign-up":["modules/v2/loader.init-customer-accounts-sign-up.en.esm.js"],"init-customer-accounts":["modules/v2/loader.init-customer-accounts.en.esm.js"],"shop-user-recognition":["modules/v2/loader.shop-user-recognition.en.esm.js"],"pay-button":["modules/v2/loader.pay-button.en.esm.js"],"shop-login":["modules/v2/loader.shop-login.en.esm.js"],"shop-cart-sync":["modules/v2/loader.shop-cart-sync.en.esm.js"],"shop-follow-button":["modules/v2/loader.shop-follow-button.en.esm.js"],"lead-capture":["modules/v2/loader.lead-capture.en.esm.js"],"payment-terms":["modules/v2/loader.payment-terms.en.esm.js"]};
  709. </script>
  710. <script>(function() {
  711.  var isLoaded = false;
  712.  function asyncLoad() {
  713.    if (isLoaded) return;
  714.    isLoaded = true;
  715.    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:\/\/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","https:\/\/laptopparts.services.answerbase.com\/javascript\/widget\/full-featured-widget.min.js?p=s\u0026ia=.abqa\u0026iacp=.abcat\u0026shop=laptoppartsatp.myshopify.com","https:\/\/laptopparts.services.answerbase.com\/javascript\/widget\/cta-widget.min.js?p=s\u0026ia=.abcta\u0026shop=laptoppartsatp.myshopify.com","\/\/cdn.shopify.com\/proxy\/01c6d9ffebc592f530c92bc4eb31c5843f220c9470afd418481da27d40ddf278\/pixel.wetracked.io\/laptoppartsatp.myshopify.com\/events.js?shop=laptoppartsatp.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA"];
  716.    for (var i = 0; i < urls.length; i++) {
  717.      var s = document.createElement('script');
  718.      s.type = 'text/javascript';
  719.      s.async = true;
  720.      s.src = urls[i];
  721.      var x = document.getElementsByTagName('script')[0];
  722.      x.parentNode.insertBefore(s, x);
  723.    }
  724.  };
  725.  if(window.attachEvent) {
  726.    window.attachEvent('onload', asyncLoad);
  727.  } else {
  728.    window.addEventListener('load', asyncLoad, false);
  729.  }
  730. })();</script>
  731. <script id="__st">var __st={"a":11386172,"offset":-14400,"reqid":"a3fdab83-9021-4226-88a6-9d38962aa9fb-1779349061","pageurl":"laptopparts.ca\/","u":"2ea5cd74c5eb","p":"home"};</script>
  732. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  733. <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>
  734. <script integrity="sha256-JjoPp5ZfB1sSAs5SQaol1x1GgvveM+BgmRzyDexInEQ=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/storefront/assets/storefront/load_feature-1bd60354.js" crossorigin="anonymous"></script>
  735. <script crossorigin="anonymous" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/storefront/assets/shopify_pay/storefront-bf1cdb70.js?v=20250812"></script>
  736. <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)}};
  737. </script>
  738. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  739.  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);
  740. </script>
  741. <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})}}));
  742. </script>
  743. <script async="async" integrity="sha256-haKOhzT83GjvO3v6qzDZfOsoJVFdXid/w2WH/c5LJ+s=" src="//cdn.shopify.com/shopifycloud/storefront/assets/storefront/origin_trials-0583672e.js" crossorigin="anonymous"></script>
  744. <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">
  745. <style id="shopify-accelerated-checkout-cart">
  746.        #shopify-buyer-consent {
  747.  margin-top: 1em;
  748.  display: inline-block;
  749.  width: 100%;
  750. }
  751.  
  752. #shopify-buyer-consent.hidden {
  753.  display: none;
  754. }
  755.  
  756. #shopify-subscription-policy-button {
  757.  background: none;
  758.  border: none;
  759.  padding: 0;
  760.  text-decoration: underline;
  761.  font-size: inherit;
  762.  cursor: pointer;
  763. }
  764.  
  765. #shopify-subscription-policy-button::before {
  766.  box-shadow: none;
  767. }
  768.  
  769.      </style>
  770.  
  771. <script id="shopify-cfh-end">window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  772.  
  773.    <link href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=5133477315152471431765911627" rel="stylesheet" type="text/css" media="all" />
  774.  
  775.    
  776.    <script>
  777.      window.Theme = window.Theme || {};
  778.      window.Theme.version = '9.1.1';
  779.      window.Theme.name = 'Empire';
  780.      window.Theme.routes = {
  781.        "root_url": "/",
  782.        "account_url": "/account",
  783.        "account_login_url": "/account/login",
  784.        "account_logout_url": "/account/logout",
  785.        "account_register_url": "/account/register",
  786.        "account_addresses_url": "/account/addresses",
  787.        "collections_url": "/collections",
  788.        "all_products_collection_url": "/collections/all",
  789.        "search_url": "/search",
  790.        "predictive_search_url": "/search/suggest",
  791.        "cart_url": "/cart",
  792.        "cart_add_url": "/cart/add",
  793.        "cart_change_url": "/cart/change",
  794.        "cart_clear_url": "/cart/clear",
  795.        "product_recommendations_url": "/recommendations/products",
  796.      };
  797.    </script>
  798.    
  799.  
  800.    
  801.  
  802.    
  803.    
  804.    
  805.    
  806. <script id='merchantWidgetScript' src="https://www.gstatic.com/shopping/merchant/merchantwidget.js" defer></script>
  807. <script type="text/javascript">
  808.  merchantWidgetScript.addEventListener('load', function () {
  809.    merchantwidget.start({
  810.      position: 'LEFT_BOTTOM',
  811.      sideMargin: 21,
  812.      bottomMargin: 33,
  813.      mobileSideMargin: 11,
  814.      mobileBottomMargin: 19
  815.    });
  816.  });
  817. </script>
  818. <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>
  819.    
  820.   <!-- BEGIN app block: shopify://apps/index-ai-get-found-by-ai/blocks/schema-markup/019bffd6-1798-7312-ab45-e0a5b7169b7c --><!-- IndexAI-Schema-Active --><script type="application/ld+json">
  821.    {
  822.      "@context": "https://schema.org",
  823.      "@type": "OnlineStore",
  824.      "@id": "https:\/\/laptopparts.ca#organization",
  825.      "name": "LaptopParts.ca",
  826.      "url": "https:\/\/laptopparts.ca"
  827. ,"legalName": "Laptop Parts Canada"
  828. ,"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!"
  829. ,"email": "service@laptopparts.ca"
  830. ,"telephone": "343-337-6133"
  831. ,"numberOfEmployees": {
  832.        "@type": "QuantitativeValue",
  833.        "value": "10"
  834.      },"foundingDate": "2016"
  835. ,"priceRange": "$"
  836. ,"areaServed": "CA"
  837. ,"currenciesAccepted": "CAD"
  838. ,"paymentAccepted": "Credit Card, Paypal, e-transfer"
  839. ,"address": {
  840.        "@type": "PostalAddress","streetAddress": "215 Main St N"
  841. ,"addressLocality": "Alexandria"
  842. ,"postalCode": "K0C1A0"
  843. ,"addressCountry": "CA"
  844. },"hasMap": "https:\/\/www.google.com\/maps\/place\/215+Main+St+N,+Alexandria,+ON+K0C+1A0\/@45.315555,-74.6425637,881m\/data=!3m2!1e3!4b1!4m6!3m5!1s0x4ccea2b66d7d3dc3:0xb674f4d9e59ebea6!8m2!3d45.315555!4d-74.6399888!16s%2Fg%2F11rn02wsmx!5m1!1e1?entry=ttu\u0026g_ep=EgoyMDI2MDMyNC4wIKXMDSoASAFQAw%3D%3D"
  845. ,"contactPoint": {
  846.        "@type": "ContactPoint","contactType": "customer service"
  847. ,"telephone": "343-337-6133"
  848. ,"email": "service@laptopparts.ca"
  849. ,"availableLanguage": "English, french"
  850. ,"hoursAvailable": "Mo-Fr 08:00-16:00"
  851. }}
  852.    </script><script type="application/ld+json">
  853.    {
  854.      "@context": "https://schema.org",
  855.      "@type": "BreadcrumbList",
  856.      "itemListElement": [
  857.        {
  858.          "@type": "ListItem",
  859.          "position": 1,
  860.          "name": "Home",
  861.          "item": "https:\/\/laptopparts.ca"
  862.        }]
  863.    }
  864.    </script><script type="application/ld+json">
  865.    {
  866.      "@context": "https://schema.org",
  867.      "@type": "WebSite",
  868.      "@id": "https:\/\/laptopparts.ca#website",
  869.      "name": "LaptopParts.ca",
  870.      "url": "https:\/\/laptopparts.ca",
  871.      "publisher": {
  872.        "@type": "Organization",
  873.        "@id": "https:\/\/laptopparts.ca#organization"
  874.      },
  875.      "inLanguage": "en"
  876.    }
  877.    </script><script type="application/ld+json">
  878.    {
  879.      "@context": "https://schema.org",
  880.      "@type": "WebPage",
  881.      "@id": "https:\/\/laptopparts.ca\/#webpage",
  882.      "url": "https:\/\/laptopparts.ca\/",
  883.      "name": "Original Laptop \u0026amp; Tablet Parts in Canada",
  884.      "isPartOf": {
  885.        "@type": "WebSite",
  886.        "@id": "https:\/\/laptopparts.ca#website"
  887.      },
  888.      "inLanguage": "en"
  889. }
  890.    </script>
  891. <!-- END app block --><!-- BEGIN app block: shopify://apps/okas-live-search-filter/blocks/app-block/77de2d4b-51b0-46d6-9fa5-dbe675e819d8 --><script>
  892.  
  893.    
  894.      
  895.            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"        }      }        
  896.    
  897.  
  898.  
  899.  if ("undefined" == typeof _ls_loaded) {
  900.    _ls_loaded = !0;
  901.    var e = document.createElement("script");
  902.    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)    
  903.  }  
  904. </script>
  905.  
  906.  
  907.  
  908. <!-- END app block --><script src="https://cdn.shopify.com/extensions/019e3fc0-f099-7bf9-8c02-3f970705f24b/js-client-286/assets/pushowl-shopify.js" type="text/javascript" defer="defer"></script>
  909. <script src="https://cdn.shopify.com/extensions/019e47a3-6ee7-7308-95eb-e0c18d010656/quick-announcement-bar-prod-158/assets/quickannouncementbar.js" type="text/javascript" defer="defer"></script>
  910. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  911. <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>
  912. <script>
  913.  window.__TREKKIE_SHIM_QUEUE = window.__TREKKIE_SHIM_QUEUE || [];
  914. </script>
  915. <script id="web-pixels-manager-setup">(function(){var wpmLoader=function(){"use strict";return function(e,d,r,n){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};if(!Boolean(null==(i=null==(a=window.Shopify)?void 0:a.analytics)?void 0:i.replayQueue)){var a,i;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,u,c,m,p,f,h,g,y,w,v,b,S,P=(u=(l={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+|)/}).modern,c=l.legacy,(m=navigator.userAgent).match(u)?"modern":m.match(c)?"legacy":"unknown"),C="modern"===P?"modern":"legacy",_=(null!=n?n:{modern:"",legacy:""})[C],O=[(p={baseUrl:d,hashVersion:r,buildTarget:C}).baseUrl,"/wpm","/b",p.hashVersion,"modern"===p.buildTarget?"m":"l",".js"].join(""),U=(f={version:r,bundleTarget:P,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint},h=f.version,g=f.bundleTarget,y=f.surface,w=f.pageUrl,v=f.monorailEndpoint,{emit:function(e){var d=e.status,r=e.errorMsg,n=(new Date).getTime(),o=JSON.stringify({metadata:{event_sent_at_ms:n},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:h,bundle_target:g,page_url:w,status:d,surface:y,error_msg:r},metadata:{event_created_at_ms:n}}]});if(!v)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(v,o)}catch(e){}var a=new XMLHttpRequest;try{return a.open("POST",v,!0),a.setRequestHeader("Content-Type","text/plain"),a.send(o),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}});try{o.browserTarget=P,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,a=e.onerror,i=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,i&&(l.integrity=i,l.crossOrigin="anonymous"),s)for(var m in s)if(Object.prototype.hasOwnProperty.call(s,m))try{l.dataset[m]=s[m]}catch(e){}if(o&&l.addEventListener("load",o),a&&l.addEventListener("error",a),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:O,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null==(d=null==(e=window.Shopify)?void 0:e.analytics)?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 U.emit({status:"failed",errorMsg:"".concat(O," has failed to load")})},sri:(b=_,S=/^sha384-[A-Za-z0-9+/=]+$/,"string"==typeof b&&S.test(b)?_:""),scriptDataAttributes:o}),U.emit({status:"loading"})}catch(e){U.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}}}();wpmLoader({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","d5bdd5d0","5acaffe6","6faea013"],webPixelsConfigList: [{"id":"560693335","configuration":"{\"subdomain\":\"laptoppartsatp\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"3c96b93ecd7211fc39b81b5d11b78548","type":"APP","apiClientId":1615517,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["9a3ed68a"]},{"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":"f15305aac1e98c5c26a7c80e7bc37bde","type":"APP","apiClientId":1780363,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["9a3ed68a"]},{"id":"328826967","configuration":"{\"accountID\":\"y3ihof\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"b65996debccfbefebf38e67f078fa46e","type":"APP","apiClientId":5206611,"privacyPurposes":["ANALYTICS"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized"},{"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":"2","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Microsoft UET Tags"},{"id":"136544343","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":[],"name":"PROFITMETRICS"},{"id":"143458391","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"2","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"wetracked"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0460","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0460","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":[],"products":null,"purchasingCompany":null,"page":null},},"https://laptopparts.ca/cdn","7107b92aw4540d021pdd526a22md4e69ac9",{"modern":"","legacy":""},{"trekkieShim":true,"pageType":"home","shopId":"11386172","storefrontBaseUrl":"https:\/\/laptopparts.ca","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\", \"d5bdd5d0\", \"5acaffe6\", \"6faea013\"]","isMerchantRequest":"false","hashVersion":"7107b92aw4540d021pdd526a22md4e69ac9","publish":"custom","events":"[[\"page_viewed\",{}]]"});})();</script><script>
  916.  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  917.  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  918.  window.ShopifyAnalytics.meta.currency = 'CAD';
  919.  var meta = {"page":{"pageType":"home","requestId":"a3fdab83-9021-4226-88a6-9d38962aa9fb-1779349061"}};
  920.  for (var attr in meta) {
  921.    window.ShopifyAnalytics.meta[attr] = meta[attr];
  922.  }
  923. </script>
  924. <script class="analytics">
  925.  (function () {
  926.    var customDocumentWrite = function(content) {
  927.      var jquery = null;
  928.  
  929.      if (window.jQuery) {
  930.        jquery = window.jQuery;
  931.      } else if (window.Checkout && window.Checkout.$) {
  932.        jquery = window.Checkout.$;
  933.      }
  934.  
  935.      if (jquery) {
  936.        jquery('body').append(content);
  937.      }
  938.    };
  939.  
  940.    var hasLoggedConversion = function(token) {
  941.      if (token) {
  942.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  943.      }
  944.      return false;
  945.    }
  946.  
  947.    var setCookieIfConversion = function(token) {
  948.      if (token) {
  949.        var twoMonthsFromNow = new Date(Date.now());
  950.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  951.  
  952.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  953.      }
  954.    }
  955.  
  956.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  957.    window.ShopifyAnalytics.lib.trekkie = window.trekkie;
  958.    if (trekkie.integrations) {
  959.      return;
  960.    }
  961.    trekkie.methods = [
  962.      'identify',
  963.      'page',
  964.      'ready',
  965.      'track',
  966.      'trackForm',
  967.      'trackLink'
  968.    ];
  969.    trekkie.factory = function(method) {
  970.      return function() {
  971.        var args = Array.prototype.slice.call(arguments);
  972.        args.unshift(method);
  973.        trekkie.push(args);
  974.        if (window.__TREKKIE_SHIM_QUEUE && (method == 'track' || method == 'page')) {
  975.          try {
  976.            window.__TREKKIE_SHIM_QUEUE.push({
  977.              from: 'trekkie-stub',
  978.              method: method,
  979.              args: args.slice(1)
  980.            });
  981.          } catch (e) {
  982.            // no-op
  983.          }
  984.        }
  985.        return trekkie;
  986.      };
  987.    };
  988.    for (var i = 0; i < trekkie.methods.length; i++) {
  989.      var key = trekkie.methods[i];
  990.      trekkie[key] = trekkie.factory(key);
  991.    }
  992.    trekkie.load = function(config) {
  993.      trekkie.config = config || {};
  994.      trekkie.config.initialDocumentCookie = document.cookie;
  995.      var first = document.getElementsByTagName('script')[0];
  996. var script = document.createElement('script');
  997. script.type = 'text/javascript';
  998. script.onerror = function(e) {
  999.  var scriptFallback = document.createElement('script');
  1000.  scriptFallback.type = 'text/javascript';
  1001.  scriptFallback.onerror = function(error) {
  1002.          var Monorail = {
  1003.      produce: function produce(monorailDomain, schemaId, payload) {
  1004.        var currentMs = new Date().getTime();
  1005.        var event = {
  1006.          schema_id: schemaId,
  1007.          payload: payload,
  1008.          metadata: {
  1009.            event_created_at_ms: currentMs,
  1010.            event_sent_at_ms: currentMs
  1011.          }
  1012.        };
  1013.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  1014.      },
  1015.      sendRequest: function sendRequest(endpointUrl, payload) {
  1016.        // Try the sendBeacon API
  1017.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  1018.          var blobData = new window.Blob([payload], {
  1019.            type: 'text/plain'
  1020.          });
  1021.  
  1022.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  1023.            return true;
  1024.          } // sendBeacon was not successful
  1025.  
  1026.        } // XHR beacon
  1027.  
  1028.        var xhr = new XMLHttpRequest();
  1029.  
  1030.        try {
  1031.          xhr.open('POST', endpointUrl);
  1032.          xhr.setRequestHeader('Content-Type', 'text/plain');
  1033.          xhr.send(payload);
  1034.        } catch (e) {
  1035.          console.log(e);
  1036.        }
  1037.  
  1038.        return false;
  1039.      },
  1040.      isIos12: function isIos12() {
  1041.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  1042.      }
  1043.    };
  1044.    Monorail.produce('monorail-edge.shopifysvc.com',
  1045.      'trekkie_storefront_load_errors/1.1',
  1046.      {shop_id: 11386172,
  1047.      theme_id: 126947917911,
  1048.      app_name: "storefront",
  1049.      context_url: window.location.href,
  1050.      source_url: "//laptopparts.ca/cdn/s/trekkie.storefront.2aca6cb2c1aba778eb370d48aa89866e7dbe9588.min.js"});
  1051.  
  1052.  };
  1053.  scriptFallback.async = true;
  1054.  scriptFallback.src = '//laptopparts.ca/cdn/s/trekkie.storefront.2aca6cb2c1aba778eb370d48aa89866e7dbe9588.min.js';
  1055.  first.parentNode.insertBefore(scriptFallback, first);
  1056. };
  1057. script.async = true;
  1058. script.src = '//laptopparts.ca/cdn/s/trekkie.storefront.2aca6cb2c1aba778eb370d48aa89866e7dbe9588.min.js';
  1059. first.parentNode.insertBefore(script, first);
  1060.  
  1061.    };
  1062.    trekkie.load(
  1063.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":11386172,"isMerchantRequest":null,"themeId":126947917911,"themeCityHash":"12992441925441748533","contentLanguage":"en","currency":"CAD","eventMetadataId":"bfd401a5-912c-4dcb-b4ed-edbce03356e3"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["b5387b81","d5bdd5d0"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  1064.    );
  1065.  
  1066.    var loaded = false;
  1067.    trekkie.ready(function() {
  1068.      if (loaded) return;
  1069.      loaded = true;
  1070.  
  1071.      window.ShopifyAnalytics.lib = window.trekkie;
  1072.  
  1073.      var originalDocumentWrite = document.write;
  1074.      document.write = customDocumentWrite;
  1075.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  1076.      document.write = originalDocumentWrite;
  1077.  
  1078.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","requestId":"a3fdab83-9021-4226-88a6-9d38962aa9fb-1779349061","shopifyEmitted":true});
  1079.  
  1080.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1081.      var token = match? match[1]: undefined;
  1082.      if (!hasLoggedConversion(token)) {
  1083.        setCookieIfConversion(token);
  1084.        
  1085.      }
  1086.    });
  1087.  
  1088.    var eventsListenerScript = document.createElement('script');
  1089.    eventsListenerScript.async = true;
  1090.    eventsListenerScript.src = "//laptopparts.ca/cdn/shopifycloud/storefront/assets/shop_events_listener-3da45d37.js";
  1091.    document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  1092. })();</script>
  1093. <script
  1094.  defer
  1095.  src="https://laptopparts.ca/cdn/shopifycloud/perf-kit/shopify-perf-kit-3.5.0.min.js"
  1096.  data-application="storefront-renderer"
  1097.  data-shop-id="11386172"
  1098.  data-render-region="gcp-us-east1"
  1099.  data-page-type="index"
  1100.  data-theme-instance-id="126947917911"
  1101.  data-theme-name="Empire"
  1102.  data-theme-version="9.1.1"
  1103.  data-monorail-region="shop_domain"
  1104.  data-resource-timing-sampling-rate="10"
  1105.  data-shs="true"
  1106.  data-shs-beacon="true"
  1107.  data-shs-export-with-fetch="true"
  1108.  data-shs-logs-sample-rate="1"
  1109.  data-shs-beacon-endpoint="https://laptopparts.ca/api/collect"
  1110. ></script>
  1111. </head>
  1112.  
  1113.  <body
  1114.    class="template-index"
  1115.    data-instant-allow-query-string
  1116.    
  1117.  >
  1118.    <script>
  1119.      document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
  1120.      if(window.Shopify&&window.Shopify.designMode)document.documentElement.className+=' in-theme-editor';
  1121.      if(('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch)document.documentElement.className=document.documentElement.className.replace(/\bno-touch\b/,'has-touch');
  1122.    </script>
  1123.  
  1124.    <!-- Google Tag Manager (noscript) -->
  1125.    <noscript
  1126.      ><iframe
  1127.        loading="lazy"
  1128.        src="https://www.googletagmanager.com/ns.html?id=GTM-WDHHF23"
  1129.        height="0"
  1130.        width="0"
  1131.        style="display:none;visibility:hidden"
  1132.      ></iframe
  1133.    ></noscript>
  1134.    <!-- End Google Tag Manager (noscript) -->
  1135.  
  1136.    
  1137.    <svg
  1138.      class="icon-star-reference"
  1139.      aria-hidden="true"
  1140.      focusable="false"
  1141.      role="presentation"
  1142.      xmlns="http://www.w3.org/2000/svg"
  1143.      width="20"
  1144.      height="20"
  1145.      viewBox="3 3 17 17"
  1146.      fill="none"
  1147.    >
  1148.      <symbol id="icon-star">
  1149.        <rect class="icon-star-background" width="20" height="20" fill="currentColor"/>
  1150.        <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"/>
  1151.      </symbol>
  1152.      <clipPath id="icon-star-clip">
  1153.        <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"/>
  1154.      </clipPath>
  1155.    </svg>
  1156.    
  1157.  
  1158.    <a class="skip-to-main" href="#site-main">Skip to content</a>
  1159.  
  1160.    <!-- BEGIN sections: header-group -->
  1161. <div id="shopify-section-sections--15492291133527__announcement-bar" class="shopify-section shopify-section-group-header-group site-announcement"><script
  1162.  type="application/json"
  1163.  data-section-id="sections--15492291133527__announcement-bar"
  1164.  data-section-type="static-announcement">
  1165. </script>
  1166.  
  1167.  
  1168.  
  1169.  
  1170.  
  1171.  
  1172.  
  1173.  
  1174.  
  1175.  
  1176.    <div
  1177.      class="
  1178.        announcement-bar
  1179.        
  1180.      "
  1181.      style="
  1182.        color: #ffffff;
  1183.        background: #fe0000;
  1184.      "
  1185.      data-announcement-bar
  1186.    >
  1187.      
  1188.  
  1189.      
  1190.        <div class="announcement-bar-text">
  1191.          <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b>  
  1192.  
  1193. <b>Text us at 343-337-6133</b>
  1194.  
  1195.  
  1196. <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b></b></b>
  1197.        </div>
  1198.      
  1199.  
  1200.      <div class="announcement-bar-text-mobile">
  1201.        
  1202.          <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b>  
  1203.  
  1204. <b>Text us at 343-337-6133</b>
  1205.  
  1206.  
  1207. <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b></b></b>
  1208.        
  1209.      </div>
  1210.    </div>
  1211.  
  1212.  
  1213.  
  1214. </div><div id="shopify-section-sections--15492291133527__header" class="shopify-section shopify-section-group-header-group site-header-wrapper">
  1215.  
  1216.  
  1217. <script
  1218.  type="application/json"
  1219.  data-section-id="sections--15492291133527__header"
  1220.  data-section-type="static-header"
  1221.  data-section-data>
  1222.  {
  1223.    "settings": {
  1224.      "sticky_header": false,
  1225.      "has_box_shadow": false,
  1226.      "live_search": {
  1227.        "enable": false,
  1228.        "money_format": "${{amount}}",
  1229.        "show_mobile_search_bar": false
  1230.      }
  1231.    }
  1232.  }
  1233. </script>
  1234.  
  1235.  
  1236.  
  1237.  
  1238.  
  1239. <style data-shopify>
  1240.  .site-logo {
  1241.    max-width: 250px;
  1242.  }
  1243.  
  1244.  .site-logo-image {
  1245.    max-height: 100px;
  1246.  }
  1247. </style>
  1248.  
  1249. <header
  1250.  class="site-header site-header-nav--open"
  1251.  role="banner"
  1252.  data-site-header
  1253. >
  1254.  <div
  1255.    class="
  1256.      site-header-main
  1257.      
  1258.        site-header--full-width
  1259.      
  1260.    "
  1261.    data-site-header-main
  1262.    
  1263.    
  1264.      data-site-header-mobile-search-button
  1265.    
  1266.  >
  1267.    <button class="site-header-menu-toggle" data-menu-toggle>
  1268.      <div class="site-header-menu-toggle--button" tabindex="-1">
  1269.        <span class="toggle-icon--bar toggle-icon--bar-top"></span>
  1270.        <span class="toggle-icon--bar toggle-icon--bar-middle"></span>
  1271.        <span class="toggle-icon--bar toggle-icon--bar-bottom"></span>
  1272.        <span class="visually-hidden">Menu</span>
  1273.      </div>
  1274.    </button>
  1275.  
  1276.    
  1277.      
  1278.      
  1279.        <a
  1280.          class="site-header-mobile-search-button"
  1281.          href="/search"
  1282.        >
  1283.          
  1284.        <div class="site-header-mobile-search-button--button" tabindex="-1">
  1285.          <svg
  1286.  aria-hidden="true"
  1287.  focusable="false"
  1288.  role="presentation"
  1289.  xmlns="http://www.w3.org/2000/svg"
  1290.  width="23"
  1291.  height="24"
  1292.  fill="none"
  1293.  viewBox="0 0 23 24"
  1294. >
  1295.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1296.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1297. </svg>
  1298.  
  1299.        </div>
  1300.      
  1301.        </a>
  1302.      
  1303.    
  1304.  
  1305.    <div
  1306.      class="
  1307.        site-header-main-content
  1308.        
  1309.      "
  1310.    >
  1311.      <div class="site-header-logo">
  1312.        <a
  1313.          class="site-logo"
  1314.          href="/">
  1315.          
  1316.            
  1317.            
  1318.  
  1319.            
  1320.  
  1321.  
  1322.  
  1323.  <img loading="lazy"
  1324.    
  1325.      src="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523"
  1326.    
  1327.    alt=""
  1328.  
  1329.    
  1330.      data-rimg
  1331.      srcset="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523 1x"
  1332.    
  1333.  
  1334.    class="site-logo-image"
  1335.    style="
  1336.        object-fit:cover;object-position:50.0% 50.0%;
  1337.      
  1338. "
  1339.    
  1340.  >
  1341.  
  1342.  
  1343.  
  1344.  
  1345.          
  1346.        </a>
  1347.      </div>
  1348.  
  1349.      
  1350.  
  1351.  
  1352.  
  1353.  
  1354.  
  1355. <div class="live-search" data-live-search><form
  1356.    class="
  1357.      live-search-form
  1358.      form-fields-inline
  1359.      
  1360.    "
  1361.    action="/search"
  1362.    method="get"
  1363.    role="search"
  1364.    aria-label="Product"
  1365.    data-live-search-form
  1366.  >
  1367.    <div class="form-field no-label"><span class="form-field-select-wrapper live-search-filter-wrapper">
  1368.          <select class="live-search-filter" data-live-search-filter data-filter-all="All categories">
  1369.            
  1370.            <option value="" selected>All categories</option>
  1371.            <option value="" disabled>------</option>
  1372.            
  1373.              
  1374. <option value="product_type:AC Adapters">AC Adapters</option>
  1375. <option value="product_type:Accessories">Accessories</option>
  1376. <option value="product_type:Accessories">Accessories</option>
  1377. <option value="product_type:Batteries">Batteries</option>
  1378. <option value="product_type:Bezels Cases &amp; Covers">Bezels Cases & Covers</option>
  1379. <option value="product_type:Bezels Cases &amp; covers">Bezels Cases & covers</option>
  1380. <option value="product_type:Boards">Boards</option>
  1381. <option value="product_type:Cables">Cables</option>
  1382. <option value="product_type:Cases Covers &amp; Bezels">Cases Covers & Bezels</option>
  1383. <option value="product_type:DC Jack Cables">DC Jack Cables</option>
  1384. <option value="product_type:Docking Stations">Docking Stations</option>
  1385. <option value="product_type:Fans">Fans</option>
  1386. <option value="product_type:HARD DRIVES">HARD DRIVES</option>
  1387. <option value="product_type:HInge Covers">HInge Covers</option>
  1388. <option value="product_type:Hard Drive Brackets">Hard Drive Brackets</option>
  1389. <option value="product_type:Hard Drives">Hard Drives</option>
  1390. <option value="product_type:HInge Covers">HInge Covers</option>
  1391. <option value="product_type:Hard Drives">Hard Drives</option>
  1392. <option value="product_type:Hinges">Hinges</option>
  1393. <option value="product_type:Hard Drive Brackets">Hard Drive Brackets</option>
  1394. <option value="product_type:Hard Drives">Hard Drives</option>
  1395. <option value="product_type:Hard drive brackets">Hard drive brackets</option>
  1396. <option value="product_type:Hinges">Hinges</option>
  1397. <option value="product_type:Keyboards">Keyboards</option>
  1398. <option value="product_type:LCD Display Cable">LCD Display Cable</option>
  1399. <option value="product_type:Memory">Memory</option>
  1400. <option value="product_type:Motherboards">Motherboards</option>
  1401. <option value="product_type:Network Cards">Network Cards</option>
  1402. <option value="product_type:Optical Cables">Optical Cables</option>
  1403. <option value="product_type:Optical Drives">Optical Drives</option>
  1404. <option value="product_type:POWER SUPPLIES">POWER SUPPLIES</option>
  1405. <option value="product_type:Palmrests">Palmrests</option>
  1406. <option value="product_type:Parts">Parts</option>
  1407. <option value="product_type:Phone Parts">Phone Parts</option>
  1408. <option value="product_type:Power Supplies">Power Supplies</option>
  1409. <option value="product_type:Printer Parts">Printer Parts</option>
  1410. <option value="product_type:Screens">Screens</option>
  1411. <option value="product_type:Screens - Touch Digitizers">Screens - Touch Digitizers</option>
  1412. <option value="product_type:Screws">Screws</option>
  1413. <option value="product_type:Server Parts">Server Parts</option>
  1414. <option value="product_type:Speakers">Speakers</option>
  1415. <option value="product_type:Tablet Parts">Tablet Parts</option>
  1416. <option value="product_type:Touchpads">Touchpads</option>
  1417. <option value="product_type:Upcart - Shipping Protection">Upcart - Shipping Protection</option>
  1418. <option value="product_type:batteries">batteries</option>
  1419. <option value="product_type:fans">fans</option>
  1420. <option value="product_type:keyboards">keyboards</option>
  1421. <option value="product_type:palmrests">palmrests</option>
  1422.            
  1423.          </select>
  1424.          <label class="live-search-filter-label form-field-select" data-live-search-filter-label>All categories
  1425. </label>
  1426.          <svg
  1427.  aria-hidden="true"
  1428.  focusable="false"
  1429.  role="presentation"
  1430.  width="8"
  1431.  height="6"
  1432.  viewBox="0 0 8 6"
  1433.  fill="none"
  1434.  xmlns="http://www.w3.org/2000/svg"
  1435.  class="icon-chevron-down"
  1436. >
  1437. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1438. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1439. </svg>
  1440.  
  1441.        </span><input
  1442.        class="form-field-input live-search-form-field"
  1443.        type="text"
  1444.        name="q"
  1445.        aria-label="Search"
  1446.        placeholder="What are you looking for?"
  1447.        
  1448.        autocomplete="off"
  1449.        data-live-search-input
  1450.      >
  1451.      <button
  1452.        class="live-search-takeover-cancel"
  1453.        type="button"
  1454.        data-live-search-takeover-cancel>
  1455.        Cancel
  1456.      </button>
  1457.  
  1458.      <button
  1459.        class="live-search-button"
  1460.        type="submit"
  1461.        aria-label="Search"
  1462.        data-live-search-submit
  1463.      >
  1464.        <span class="search-icon search-icon--inactive">
  1465.          <svg
  1466.  aria-hidden="true"
  1467.  focusable="false"
  1468.  role="presentation"
  1469.  xmlns="http://www.w3.org/2000/svg"
  1470.  width="23"
  1471.  height="24"
  1472.  fill="none"
  1473.  viewBox="0 0 23 24"
  1474. >
  1475.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1476.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1477. </svg>
  1478.  
  1479.        </span>
  1480.        <span class="search-icon search-icon--active">
  1481.          <svg
  1482.  aria-hidden="true"
  1483.  focusable="false"
  1484.  role="presentation"
  1485.  width="26"
  1486.  height="26"
  1487.  viewBox="0 0 26 26"
  1488.  xmlns="http://www.w3.org/2000/svg"
  1489. >
  1490.  <g fill-rule="nonzero" fill="currentColor">
  1491.    <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"/>
  1492.  </g>
  1493. </svg>
  1494.        </span>
  1495.      </button>
  1496.    </div>
  1497.  
  1498.    <div class="search-flydown" data-live-search-flydown>
  1499.      <div class="search-flydown--placeholder" data-live-search-placeholder>
  1500.        <div class="search-flydown--product-items">
  1501.          
  1502.            <a class="search-flydown--product search-flydown--product" href="#">
  1503.              
  1504.  
  1505.              <div class="search-flydown--product-text">
  1506.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1507.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1508.              </div>
  1509.            </a>
  1510.          
  1511.            <a class="search-flydown--product search-flydown--product" href="#">
  1512.              
  1513.  
  1514.              <div class="search-flydown--product-text">
  1515.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1516.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1517.              </div>
  1518.            </a>
  1519.          
  1520.            <a class="search-flydown--product search-flydown--product" href="#">
  1521.              
  1522.  
  1523.              <div class="search-flydown--product-text">
  1524.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1525.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1526.              </div>
  1527.            </a>
  1528.          
  1529.        </div>
  1530.      </div>
  1531.  
  1532.      <div
  1533.        class="
  1534.          search-flydown--results
  1535.          search-flydown--results--no-images
  1536.        "
  1537.        data-live-search-results
  1538.      ></div>
  1539.  
  1540.      
  1541.    </div>
  1542.  </form>
  1543. </div>
  1544.  
  1545.  
  1546.      
  1547.    </div>
  1548.  
  1549.    <div class="site-header-right">
  1550.      <ul class="site-header-actions" data-header-actions>
  1551.  
  1552.    
  1553.      <li class="site-header-actions__account-link">
  1554.        <a
  1555.          class="site-header_account-link-anchor"
  1556.          href="/account/login"
  1557.        >
  1558.          <span class="site-header__account-icon">
  1559.            
  1560.  
  1561.  
  1562.    <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>                                                                                                                
  1563.  
  1564.          </span>
  1565.          
  1566.          <span class="site-header_account-link-text">
  1567.            Login
  1568.          </span>
  1569.        </a>
  1570.      </li>
  1571.    
  1572.  
  1573. </ul>
  1574.  
  1575.  
  1576.      <div class="site-header-cart">
  1577.        <a class="site-header-cart--button" href="/cart">
  1578.          <span
  1579.            class="site-header-cart--count "
  1580.            data-header-cart-count="">
  1581.          </span>
  1582.          <span class="site-header-cart-icon site-header-cart-icon--svg">
  1583.            
  1584.              
  1585.  
  1586.  
  1587.            <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>                                                                                                        
  1588.  
  1589.            
  1590.          </span>
  1591.          <span class="visually-hidden">View cart</span>
  1592.        </a>
  1593.      </div>
  1594.    </div>
  1595.  </div>
  1596.  
  1597.  <div
  1598.    class="
  1599.      site-navigation-wrapper
  1600.      
  1601.        site-navigation--has-actions
  1602.      
  1603.      
  1604.        site-header--full-width
  1605.      
  1606.    "
  1607.    data-site-navigation
  1608.    id="site-header-nav"
  1609.  >
  1610.    <nav
  1611.      class="site-navigation"
  1612.      aria-label="Main"
  1613.    >
  1614.      
  1615.  
  1616.  
  1617.  
  1618.  
  1619. <ul
  1620.  class="navmenu navmenu-depth-1"
  1621.  data-navmenu
  1622.  aria-label="Main Menu 02"
  1623. >
  1624.  
  1625.    
  1626.    
  1627.  
  1628.    
  1629.    
  1630.    
  1631.    
  1632. <li
  1633.      class="navmenu-item              navmenu-basic__item                  navmenu-id-home"
  1634.      
  1635.      
  1636.      
  1637.    >
  1638.      
  1639.        <a
  1640.      
  1641.        class="
  1642.          navmenu-link
  1643.          navmenu-link-depth-1
  1644.          
  1645.          navmenu-link-active
  1646.        "
  1647.        
  1648.          href="/"
  1649.        
  1650.      >
  1651.        Home
  1652.        
  1653.      
  1654.        </a>
  1655.      
  1656.  
  1657.      
  1658.      </details>
  1659.    </li>
  1660.  
  1661.    
  1662.    
  1663.  
  1664.    
  1665.    
  1666.    
  1667.    
  1668. <li
  1669.      class="navmenu-item                    navmenu-item-parent                  navmenu-meganav__item-parent                    navmenu-id-shop"
  1670.      
  1671.        data-navmenu-meganav-trigger
  1672.        data-navmenu-meganav-type="meganav-sidenav"
  1673.      
  1674.      data-navmenu-parent
  1675.      
  1676.    >
  1677.      
  1678.        <details data-navmenu-details>
  1679.        <summary
  1680.      
  1681.        class="
  1682.          navmenu-link
  1683.          navmenu-link-depth-1
  1684.          navmenu-link-parent
  1685.          
  1686.        "
  1687.        
  1688.          aria-haspopup="true"
  1689.          aria-expanded="false"
  1690.          data-href="/collections/all"
  1691.        
  1692.      >
  1693.        Shop
  1694.        
  1695.          <span
  1696.            class="navmenu-icon navmenu-icon-depth-1"
  1697.            data-navmenu-trigger
  1698.          >
  1699.            <svg
  1700.  aria-hidden="true"
  1701.  focusable="false"
  1702.  role="presentation"
  1703.  width="8"
  1704.  height="6"
  1705.  viewBox="0 0 8 6"
  1706.  fill="none"
  1707.  xmlns="http://www.w3.org/2000/svg"
  1708.  class="icon-chevron-down"
  1709. >
  1710. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1711. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1712. </svg>
  1713.  
  1714.          </span>
  1715.        
  1716.      
  1717.        </summary>
  1718.      
  1719.  
  1720.      
  1721.        
  1722.            
  1723.  
  1724.  
  1725.  
  1726. <div
  1727.  class="navmenu-submenu  navmenu-meganav  navmenu-meganav--desktop"
  1728.  data-navmenu-submenu
  1729.  data-meganav-menu
  1730.  data-meganav-id="meganav_sidenav_mVCWik"
  1731.  
  1732. >
  1733.  <div
  1734.    class="
  1735.      navmenu-meganav-wrapper
  1736.      navmenu-meganav-sidenav__wrapper
  1737.      
  1738.        navmenu-meganav-sidenav__wrapper--images
  1739.      
  1740.    "
  1741.  >
  1742.    <ul
  1743.      class="navmenu  navmenu-depth-2  navmenu-meganav-sidenav__items      navmenu-meganav-sidenav__items--images  "
  1744.      data-navmenu
  1745.    >
  1746.      
  1747.  
  1748.        
  1749.  
  1750.        <li
  1751.          class="navmenu-item          navmenu-item-parent          navmenu-id-laptop-components          navmenu-meganav-sidenav__item"
  1752.          
  1753.            data-navmenu-trigger
  1754.            data-navmenu-parent
  1755.          
  1756.          
  1757.        >
  1758.          
  1759.            <details data-navmenu-details>
  1760.            <summary
  1761.              data-href="/collections/all"
  1762.          
  1763.            class="
  1764.              navmenu-item-text
  1765.              navmenu-link
  1766.              
  1767.                navmenu-link-parent
  1768.              
  1769.              navmenu-meganav-sidenav__item-text
  1770.            "
  1771.            
  1772.              aria-haspopup="true"
  1773.              aria-expanded="false"
  1774.          
  1775.          >
  1776.            <span class="navmenu-meganav-sidenav__submenu-wrapper">
  1777.              <span>Laptop Components</span>
  1778.              
  1779.                <span
  1780.                  class="navmenu-icon navmenu-icon-depth-2"
  1781.                >
  1782.                  <svg
  1783.  aria-hidden="true"
  1784.  focusable="false"
  1785.  role="presentation"
  1786.  width="8"
  1787.  height="6"
  1788.  viewBox="0 0 8 6"
  1789.  fill="none"
  1790.  xmlns="http://www.w3.org/2000/svg"
  1791.  class="icon-chevron-down"
  1792. >
  1793. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1794. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1795. </svg>
  1796.  
  1797.                </span>
  1798.              
  1799.            </span>
  1800.          
  1801.            </summary>
  1802.          
  1803.  
  1804.          
  1805.  
  1806.          
  1807.  
  1808.  
  1809.  
  1810.  
  1811.  
  1812.  
  1813.  
  1814.  
  1815.  
  1816.  
  1817.  
  1818.  
  1819. <ul
  1820.  class="
  1821.    navmenu
  1822.    navmenu-depth-3
  1823.    navmenu-submenu
  1824.    
  1825.  "
  1826.  data-navmenu
  1827.  
  1828.  data-navmenu-submenu
  1829.  
  1830. >
  1831.  
  1832.    
  1833.  
  1834.    
  1835.    
  1836.  
  1837.    
  1838.    
  1839.  
  1840.    
  1841.  
  1842.    
  1843.      <li
  1844.        class="navmenu-item navmenu-id-ac-adapters"
  1845.      >
  1846.        <a
  1847.        class="
  1848.          navmenu-link
  1849.          navmenu-link-depth-3
  1850.          
  1851.        "
  1852.        href="/collections/ac-adapter-power"
  1853.        >
  1854.          
  1855.          AC Adapters
  1856. </a>
  1857.      </li>
  1858.    
  1859.  
  1860.    
  1861.  
  1862.    
  1863.    
  1864.  
  1865.    
  1866.    
  1867.  
  1868.    
  1869.  
  1870.    
  1871.      <li
  1872.        class="navmenu-item navmenu-id-batteries"
  1873.      >
  1874.        <a
  1875.        class="
  1876.          navmenu-link
  1877.          navmenu-link-depth-3
  1878.          
  1879.        "
  1880.        href="/collections/batteries"
  1881.        >
  1882.          
  1883.          Batteries
  1884. </a>
  1885.      </li>
  1886.    
  1887.  
  1888.    
  1889.  
  1890.    
  1891.    
  1892.  
  1893.    
  1894.    
  1895.  
  1896.    
  1897.  
  1898.    
  1899.      <li
  1900.        class="navmenu-item navmenu-id-bezels-cases-covers"
  1901.      >
  1902.        <a
  1903.        class="
  1904.          navmenu-link
  1905.          navmenu-link-depth-3
  1906.          
  1907.        "
  1908.        href="/collections/cases-covers-bezels"
  1909.        >
  1910.          
  1911.          Bezels Cases & Covers
  1912. </a>
  1913.      </li>
  1914.    
  1915.  
  1916.    
  1917.  
  1918.    
  1919.    
  1920.  
  1921.    
  1922.    
  1923.  
  1924.    
  1925.  
  1926.    
  1927.      <li
  1928.        class="navmenu-item navmenu-id-boards"
  1929.      >
  1930.        <a
  1931.        class="
  1932.          navmenu-link
  1933.          navmenu-link-depth-3
  1934.          
  1935.        "
  1936.        href="/collections/boards"
  1937.        >
  1938.          
  1939.          Boards
  1940. </a>
  1941.      </li>
  1942.    
  1943.  
  1944.    
  1945.  
  1946.    
  1947.    
  1948.  
  1949.    
  1950.    
  1951.  
  1952.    
  1953.  
  1954.    
  1955.      <li
  1956.        class="navmenu-item navmenu-id-cables"
  1957.      >
  1958.        <a
  1959.        class="
  1960.          navmenu-link
  1961.          navmenu-link-depth-3
  1962.          
  1963.        "
  1964.        href="/collections/cables"
  1965.        >
  1966.          
  1967.          Cables
  1968. </a>
  1969.      </li>
  1970.    
  1971.  
  1972.    
  1973.  
  1974.    
  1975.    
  1976.  
  1977.    
  1978.    
  1979.  
  1980.    
  1981.  
  1982.    
  1983.      <li
  1984.        class="navmenu-item navmenu-id-dc-jack-cables"
  1985.      >
  1986.        <a
  1987.        class="
  1988.          navmenu-link
  1989.          navmenu-link-depth-3
  1990.          
  1991.        "
  1992.        href="/collections/dc-jack-cables"
  1993.        >
  1994.          
  1995.          DC Jack Cables
  1996. </a>
  1997.      </li>
  1998.    
  1999.  
  2000.    
  2001.  
  2002.    
  2003.    
  2004.  
  2005.    
  2006.    
  2007.  
  2008.    
  2009.  
  2010.    
  2011.      <li
  2012.        class="navmenu-item navmenu-id-fans"
  2013.      >
  2014.        <a
  2015.        class="
  2016.          navmenu-link
  2017.          navmenu-link-depth-3
  2018.          
  2019.        "
  2020.        href="/collections/cpu-fan"
  2021.        >
  2022.          
  2023.          Fans
  2024. </a>
  2025.      </li>
  2026.    
  2027.  
  2028.    
  2029.  
  2030.    
  2031.    
  2032.  
  2033.    
  2034.    
  2035.  
  2036.    
  2037.  
  2038.    
  2039.      <li
  2040.        class="navmenu-item navmenu-id-hard-drive-brackets"
  2041.      >
  2042.        <a
  2043.        class="
  2044.          navmenu-link
  2045.          navmenu-link-depth-3
  2046.          
  2047.        "
  2048.        href="/collections/hard-drive-brackets"
  2049.        >
  2050.          
  2051.          Hard Drive Brackets
  2052. </a>
  2053.      </li>
  2054.    
  2055.  
  2056.    
  2057.  
  2058.    
  2059.    
  2060.  
  2061.    
  2062.    
  2063.  
  2064.    
  2065.  
  2066.    
  2067.      <li
  2068.        class="navmenu-item navmenu-id-hard-drives"
  2069.      >
  2070.        <a
  2071.        class="
  2072.          navmenu-link
  2073.          navmenu-link-depth-3
  2074.          
  2075.        "
  2076.        href="/collections/laptop-hard-drive"
  2077.        >
  2078.          
  2079.          Hard Drives
  2080. </a>
  2081.      </li>
  2082.    
  2083.  
  2084.    
  2085.  
  2086.    
  2087.    
  2088.  
  2089.    
  2090.    
  2091.  
  2092.    
  2093.  
  2094.    
  2095.      <li
  2096.        class="navmenu-item navmenu-id-laptop-case-parts"
  2097.      >
  2098.        <a
  2099.        class="
  2100.          navmenu-link
  2101.          navmenu-link-depth-3
  2102.          
  2103.        "
  2104.        href="/collections/laptop-case-parts"
  2105.        >
  2106.          
  2107.          - Laptop Case Parts
  2108. </a>
  2109.      </li>
  2110.    
  2111.  
  2112.    
  2113.  
  2114.    
  2115.    
  2116.  
  2117.    
  2118.    
  2119.  
  2120.    
  2121.  
  2122.    
  2123.      <li
  2124.        class="navmenu-item navmenu-id-hinges"
  2125.      >
  2126.        <a
  2127.        class="
  2128.          navmenu-link
  2129.          navmenu-link-depth-3
  2130.          
  2131.        "
  2132.        href="/collections/hinges"
  2133.        >
  2134.          
  2135.          Hinges
  2136. </a>
  2137.      </li>
  2138.    
  2139.  
  2140.    
  2141.  
  2142.    
  2143.    
  2144.  
  2145.    
  2146.    
  2147.  
  2148.    
  2149.  
  2150.    
  2151.      <li
  2152.        class="navmenu-item navmenu-id-laptop-case"
  2153.      >
  2154.        <a
  2155.        class="
  2156.          navmenu-link
  2157.          navmenu-link-depth-3
  2158.          
  2159.        "
  2160.        href="/collections/laptop-case"
  2161.        >
  2162.          
  2163.          Laptop Case
  2164. </a>
  2165.      </li>
  2166.    
  2167.  
  2168.    
  2169.  
  2170.    
  2171.    
  2172.  
  2173.    
  2174.    
  2175.  
  2176.    
  2177.  
  2178.    
  2179.      <li
  2180.        class="navmenu-item navmenu-id-laptop-cover"
  2181.      >
  2182.        <a
  2183.        class="
  2184.          navmenu-link
  2185.          navmenu-link-depth-3
  2186.          
  2187.        "
  2188.        href="/collections/laptop-cover"
  2189.        >
  2190.          
  2191.          Laptop Cover
  2192. </a>
  2193.      </li>
  2194.    
  2195.  
  2196.    
  2197.  
  2198.    
  2199.    
  2200.  
  2201.    
  2202.    
  2203.  
  2204.    
  2205.  
  2206.    
  2207.      <li
  2208.        class="navmenu-item navmenu-id-thermal-printer"
  2209.      >
  2210.        <a
  2211.        class="
  2212.          navmenu-link
  2213.          navmenu-link-depth-3
  2214.          
  2215.        "
  2216.        href="/collections/thermal-printer"
  2217.        >
  2218.          
  2219.          Thermal Printer
  2220. </a>
  2221.      </li>
  2222.    
  2223.  
  2224. </ul>
  2225.  
  2226.          
  2227.            </details>
  2228.          
  2229.        </li>
  2230.      
  2231.  
  2232.        
  2233.  
  2234.        <li
  2235.          class="navmenu-item          navmenu-item-parent          navmenu-id-          navmenu-meganav-sidenav__item"
  2236.          
  2237.            data-navmenu-trigger
  2238.            data-navmenu-parent
  2239.          
  2240.          
  2241.        >
  2242.          
  2243.            <details data-navmenu-details>
  2244.            <summary
  2245.              data-href="/collections/all"
  2246.          
  2247.            class="
  2248.              navmenu-item-text
  2249.              navmenu-link
  2250.              
  2251.                navmenu-link-parent
  2252.              
  2253.              navmenu-meganav-sidenav__item-text
  2254.            "
  2255.            
  2256.              aria-haspopup="true"
  2257.              aria-expanded="false"
  2258.          
  2259.          >
  2260.            <span class="navmenu-meganav-sidenav__submenu-wrapper">
  2261.              <span>.....</span>
  2262.              
  2263.                <span
  2264.                  class="navmenu-icon navmenu-icon-depth-2"
  2265.                >
  2266.                  <svg
  2267.  aria-hidden="true"
  2268.  focusable="false"
  2269.  role="presentation"
  2270.  width="8"
  2271.  height="6"
  2272.  viewBox="0 0 8 6"
  2273.  fill="none"
  2274.  xmlns="http://www.w3.org/2000/svg"
  2275.  class="icon-chevron-down"
  2276. >
  2277. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2278. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2279. </svg>
  2280.  
  2281.                </span>
  2282.              
  2283.            </span>
  2284.          
  2285.            </summary>
  2286.          
  2287.  
  2288.          
  2289.  
  2290.          
  2291.  
  2292.  
  2293.  
  2294.  
  2295.  
  2296.  
  2297.  
  2298.  
  2299.  
  2300.  
  2301.  
  2302.  
  2303. <ul
  2304.  class="
  2305.    navmenu
  2306.    navmenu-depth-3
  2307.    navmenu-submenu
  2308.    
  2309.  "
  2310.  data-navmenu
  2311.  
  2312.  data-navmenu-submenu
  2313.  
  2314. >
  2315.  
  2316.    
  2317.  
  2318.    
  2319.    
  2320.  
  2321.    
  2322.    
  2323.  
  2324.    
  2325.  
  2326.    
  2327.      <li
  2328.        class="navmenu-item navmenu-id-keyboards"
  2329.      >
  2330.        <a
  2331.        class="
  2332.          navmenu-link
  2333.          navmenu-link-depth-3
  2334.          
  2335.        "
  2336.        href="/collections/keyboards-1"
  2337.        >
  2338.          
  2339.          Keyboards
  2340. </a>
  2341.      </li>
  2342.    
  2343.  
  2344.    
  2345.  
  2346.    
  2347.    
  2348.  
  2349.    
  2350.    
  2351.  
  2352.    
  2353.  
  2354.    
  2355.      <li
  2356.        class="navmenu-item navmenu-id-acer-keyboard"
  2357.      >
  2358.        <a
  2359.        class="
  2360.          navmenu-link
  2361.          navmenu-link-depth-3
  2362.          
  2363.        "
  2364.        href="/collections/acer-keyboards"
  2365.        >
  2366.          
  2367.          - Acer keyboard
  2368. </a>
  2369.      </li>
  2370.    
  2371.  
  2372.    
  2373.  
  2374.    
  2375.    
  2376.  
  2377.    
  2378.    
  2379.  
  2380.    
  2381.  
  2382.    
  2383.      <li
  2384.        class="navmenu-item navmenu-id-asus-keyboards"
  2385.      >
  2386.        <a
  2387.        class="
  2388.          navmenu-link
  2389.          navmenu-link-depth-3
  2390.          
  2391.        "
  2392.        href="/collections/asus-keyboard"
  2393.        >
  2394.          
  2395.          - Asus keyboards
  2396. </a>
  2397.      </li>
  2398.    
  2399.  
  2400.    
  2401.  
  2402.    
  2403.    
  2404.  
  2405.    
  2406.    
  2407.  
  2408.    
  2409.  
  2410.    
  2411.      <li
  2412.        class="navmenu-item navmenu-id-dell-keyboard"
  2413.      >
  2414.        <a
  2415.        class="
  2416.          navmenu-link
  2417.          navmenu-link-depth-3
  2418.          
  2419.        "
  2420.        href="/collections/dell-keyboard"
  2421.        >
  2422.          
  2423.          - Dell keyboard
  2424. </a>
  2425.      </li>
  2426.    
  2427.  
  2428.    
  2429.  
  2430.    
  2431.    
  2432.  
  2433.    
  2434.    
  2435.  
  2436.    
  2437.  
  2438.    
  2439.      <li
  2440.        class="navmenu-item navmenu-id-lenovo-keyboard"
  2441.      >
  2442.        <a
  2443.        class="
  2444.          navmenu-link
  2445.          navmenu-link-depth-3
  2446.          
  2447.        "
  2448.        href="/collections/lenovo-keyboard"
  2449.        >
  2450.          
  2451.          - Lenovo keyboard
  2452. </a>
  2453.      </li>
  2454.    
  2455.  
  2456.    
  2457.  
  2458.    
  2459.    
  2460.  
  2461.    
  2462.    
  2463.  
  2464.    
  2465.  
  2466.    
  2467.      <li
  2468.        class="navmenu-item navmenu-id-hp-keyboard"
  2469.      >
  2470.        <a
  2471.        class="
  2472.          navmenu-link
  2473.          navmenu-link-depth-3
  2474.          
  2475.        "
  2476.        href="/collections/hp-keyboard"
  2477.        >
  2478.          
  2479.          - Hp Keyboard
  2480. </a>
  2481.      </li>
  2482.    
  2483.  
  2484.    
  2485.  
  2486.    
  2487.    
  2488.  
  2489.    
  2490.    
  2491.  
  2492.    
  2493.  
  2494.    
  2495.      <li
  2496.        class="navmenu-item navmenu-id-backlit-keyboards"
  2497.      >
  2498.        <a
  2499.        class="
  2500.          navmenu-link
  2501.          navmenu-link-depth-3
  2502.          
  2503.        "
  2504.        href="/collections/backlit-keyboard"
  2505.        >
  2506.          
  2507.          - Backlit Keyboards
  2508. </a>
  2509.      </li>
  2510.    
  2511.  
  2512.    
  2513.  
  2514.    
  2515.    
  2516.  
  2517.    
  2518.    
  2519.  
  2520.    
  2521.  
  2522.    
  2523.      <li
  2524.        class="navmenu-item navmenu-id-memory"
  2525.      >
  2526.        <a
  2527.        class="
  2528.          navmenu-link
  2529.          navmenu-link-depth-3
  2530.          
  2531.        "
  2532.        href="/collections/memory"
  2533.        >
  2534.          
  2535.          Memory
  2536. </a>
  2537.      </li>
  2538.    
  2539.  
  2540.    
  2541.  
  2542.    
  2543.    
  2544.  
  2545.    
  2546.    
  2547.  
  2548.    
  2549.  
  2550.    
  2551.      <li
  2552.        class="navmenu-item navmenu-id-motherboards"
  2553.      >
  2554.        <a
  2555.        class="
  2556.          navmenu-link
  2557.          navmenu-link-depth-3
  2558.          
  2559.        "
  2560.        href="/collections/motherboards"
  2561.        >
  2562.          
  2563.          Motherboards
  2564. </a>
  2565.      </li>
  2566.    
  2567.  
  2568.    
  2569.  
  2570.    
  2571.    
  2572.  
  2573.    
  2574.    
  2575.  
  2576.    
  2577.  
  2578.    
  2579.      <li
  2580.        class="navmenu-item navmenu-id-optical-drives"
  2581.      >
  2582.        <a
  2583.        class="
  2584.          navmenu-link
  2585.          navmenu-link-depth-3
  2586.          
  2587.        "
  2588.        href="/collections/optical-drives"
  2589.        >
  2590.          
  2591.          Optical Drives
  2592. </a>
  2593.      </li>
  2594.    
  2595.  
  2596.    
  2597.  
  2598.    
  2599.    
  2600.  
  2601.    
  2602.    
  2603.  
  2604.    
  2605.  
  2606.    
  2607.      <li
  2608.        class="navmenu-item navmenu-id-power-supplies"
  2609.      >
  2610.        <a
  2611.        class="
  2612.          navmenu-link
  2613.          navmenu-link-depth-3
  2614.          
  2615.        "
  2616.        href="/collections/power-supplies"
  2617.        >
  2618.          
  2619.          Power Supplies
  2620. </a>
  2621.      </li>
  2622.    
  2623.  
  2624.    
  2625.  
  2626.    
  2627.    
  2628.  
  2629.    
  2630.    
  2631.  
  2632.    
  2633.  
  2634.    
  2635.      <li
  2636.        class="navmenu-item navmenu-id-screens"
  2637.      >
  2638.        <a
  2639.        class="
  2640.          navmenu-link
  2641.          navmenu-link-depth-3
  2642.          
  2643.        "
  2644.        href="/collections/screens"
  2645.        >
  2646.          
  2647.          Screens
  2648. </a>
  2649.      </li>
  2650.    
  2651.  
  2652.    
  2653.  
  2654.    
  2655.    
  2656.  
  2657.    
  2658.    
  2659.  
  2660.    
  2661.  
  2662.    
  2663.      <li
  2664.        class="navmenu-item navmenu-id-touch-screen-laptop"
  2665.      >
  2666.        <a
  2667.        class="
  2668.          navmenu-link
  2669.          navmenu-link-depth-3
  2670.          
  2671.        "
  2672.        href="/collections/touch-screen-laptop"
  2673.        >
  2674.          
  2675.          - Touch Screen Laptop
  2676. </a>
  2677.      </li>
  2678.    
  2679.  
  2680.    
  2681.  
  2682.    
  2683.    
  2684.  
  2685.    
  2686.    
  2687.  
  2688.    
  2689.  
  2690.    
  2691.      <li
  2692.        class="navmenu-item navmenu-id-screens-touch-digitizers"
  2693.      >
  2694.        <a
  2695.        class="
  2696.          navmenu-link
  2697.          navmenu-link-depth-3
  2698.          
  2699.        "
  2700.        href="/collections/screens-touch-digitizers"
  2701.        >
  2702.          
  2703.          Screens - Touch Digitizers
  2704. </a>
  2705.      </li>
  2706.    
  2707.  
  2708.    
  2709.  
  2710.    
  2711.    
  2712.  
  2713.    
  2714.    
  2715.  
  2716.    
  2717.  
  2718.    
  2719.      <li
  2720.        class="navmenu-item navmenu-id-speakers"
  2721.      >
  2722.        <a
  2723.        class="
  2724.          navmenu-link
  2725.          navmenu-link-depth-3
  2726.          
  2727.        "
  2728.        href="/collections/speakers"
  2729.        >
  2730.          
  2731.          Speakers
  2732. </a>
  2733.      </li>
  2734.    
  2735.  
  2736.    
  2737.  
  2738.    
  2739.    
  2740.  
  2741.    
  2742.    
  2743.  
  2744.    
  2745.  
  2746.    
  2747.      <li
  2748.        class="navmenu-item navmenu-id-touchpads"
  2749.      >
  2750.        <a
  2751.        class="
  2752.          navmenu-link
  2753.          navmenu-link-depth-3
  2754.          
  2755.        "
  2756.        href="/collections/touchpads"
  2757.        >
  2758.          
  2759.          Touchpads
  2760. </a>
  2761.      </li>
  2762.    
  2763.  
  2764. </ul>
  2765.  
  2766.          
  2767.            </details>
  2768.          
  2769.        </li>
  2770.      
  2771.  
  2772.        
  2773.  
  2774.        <li
  2775.          class="navmenu-item          navmenu-item-parent          navmenu-id-other-components          navmenu-meganav-sidenav__item"
  2776.          
  2777.            data-navmenu-trigger
  2778.            data-navmenu-parent
  2779.          
  2780.          
  2781.        >
  2782.          
  2783.            <details data-navmenu-details>
  2784.            <summary
  2785.              data-href="/collections/all"
  2786.          
  2787.            class="
  2788.              navmenu-item-text
  2789.              navmenu-link
  2790.              
  2791.                navmenu-link-parent
  2792.              
  2793.              navmenu-meganav-sidenav__item-text
  2794.            "
  2795.            
  2796.              aria-haspopup="true"
  2797.              aria-expanded="false"
  2798.          
  2799.          >
  2800.            <span class="navmenu-meganav-sidenav__submenu-wrapper">
  2801.              <span>Other Components</span>
  2802.              
  2803.                <span
  2804.                  class="navmenu-icon navmenu-icon-depth-2"
  2805.                >
  2806.                  <svg
  2807.  aria-hidden="true"
  2808.  focusable="false"
  2809.  role="presentation"
  2810.  width="8"
  2811.  height="6"
  2812.  viewBox="0 0 8 6"
  2813.  fill="none"
  2814.  xmlns="http://www.w3.org/2000/svg"
  2815.  class="icon-chevron-down"
  2816. >
  2817. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2818. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2819. </svg>
  2820.  
  2821.                </span>
  2822.              
  2823.            </span>
  2824.          
  2825.            </summary>
  2826.          
  2827.  
  2828.          
  2829.  
  2830.          
  2831.  
  2832.  
  2833.  
  2834.  
  2835.  
  2836.  
  2837.  
  2838.  
  2839.  
  2840.  
  2841.  
  2842.  
  2843. <ul
  2844.  class="
  2845.    navmenu
  2846.    navmenu-depth-3
  2847.    navmenu-submenu
  2848.    
  2849.  "
  2850.  data-navmenu
  2851.  
  2852.  data-navmenu-submenu
  2853.  
  2854. >
  2855.  
  2856.    
  2857.  
  2858.    
  2859.    
  2860.  
  2861.    
  2862.    
  2863.  
  2864.    
  2865.  
  2866.    
  2867.      <li
  2868.        class="navmenu-item navmenu-id-accessories"
  2869.      >
  2870.        <a
  2871.        class="
  2872.          navmenu-link
  2873.          navmenu-link-depth-3
  2874.          
  2875.        "
  2876.        href="/collections/accessories"
  2877.        >
  2878.          
  2879.          Accessories
  2880. </a>
  2881.      </li>
  2882.    
  2883.  
  2884.    
  2885.  
  2886.    
  2887.    
  2888.  
  2889.    
  2890.    
  2891.  
  2892.    
  2893.  
  2894.    
  2895.      <li
  2896.        class="navmenu-item navmenu-id-phone-parts"
  2897.      >
  2898.        <a
  2899.        class="
  2900.          navmenu-link
  2901.          navmenu-link-depth-3
  2902.          
  2903.        "
  2904.        href="/collections/phone-parts"
  2905.        >
  2906.          
  2907.          Phone Parts
  2908. </a>
  2909.      </li>
  2910.    
  2911.  
  2912.    
  2913.  
  2914.    
  2915.    
  2916.  
  2917.    
  2918.    
  2919.  
  2920.    
  2921.  
  2922.    
  2923.      <li
  2924.        class="navmenu-item navmenu-id-printer-parts"
  2925.      >
  2926.        <a
  2927.        class="
  2928.          navmenu-link
  2929.          navmenu-link-depth-3
  2930.          
  2931.        "
  2932.        href="/collections/printer-parts"
  2933.        >
  2934.          
  2935.          Printer Parts
  2936. </a>
  2937.      </li>
  2938.    
  2939.  
  2940.    
  2941.  
  2942.    
  2943.    
  2944.  
  2945.    
  2946.    
  2947.  
  2948.    
  2949.  
  2950.    
  2951.      <li
  2952.        class="navmenu-item navmenu-id-server-parts"
  2953.      >
  2954.        <a
  2955.        class="
  2956.          navmenu-link
  2957.          navmenu-link-depth-3
  2958.          
  2959.        "
  2960.        href="/collections/server-parts"
  2961.        >
  2962.          
  2963.          Server Parts
  2964. </a>
  2965.      </li>
  2966.    
  2967.  
  2968.    
  2969.  
  2970.    
  2971.    
  2972.  
  2973.    
  2974.    
  2975.  
  2976.    
  2977.  
  2978.    
  2979.      <li
  2980.        class="navmenu-item navmenu-id-tablet-parts"
  2981.      >
  2982.        <a
  2983.        class="
  2984.          navmenu-link
  2985.          navmenu-link-depth-3
  2986.          
  2987.        "
  2988.        href="/collections/tablet-parts"
  2989.        >
  2990.          
  2991.          Tablet Parts
  2992. </a>
  2993.      </li>
  2994.    
  2995.  
  2996. </ul>
  2997.  
  2998.          
  2999.            </details>
  3000.          
  3001.        </li>
  3002.      
  3003.    </ul>
  3004.  </div>
  3005. </div>
  3006.  
  3007.        
  3008.      
  3009.      </details>
  3010.    </li>
  3011.  
  3012.    
  3013.    
  3014.  
  3015.    
  3016.    
  3017.    
  3018.    
  3019. <li
  3020.      class="navmenu-item              navmenu-basic__item                  navmenu-id-about-us"
  3021.      
  3022.      
  3023.      
  3024.    >
  3025.      
  3026.        <a
  3027.      
  3028.        class="
  3029.          navmenu-link
  3030.          navmenu-link-depth-1
  3031.          
  3032.          
  3033.        "
  3034.        
  3035.          href="/pages/about-us"
  3036.        
  3037.      >
  3038.        About Us
  3039.        
  3040.      
  3041.        </a>
  3042.      
  3043.  
  3044.      
  3045.      </details>
  3046.    </li>
  3047.  
  3048.    
  3049.    
  3050.  
  3051.    
  3052.    
  3053.    
  3054.    
  3055. <li
  3056.      class="navmenu-item              navmenu-basic__item                  navmenu-id-repair-centers"
  3057.      
  3058.      
  3059.      
  3060.    >
  3061.      
  3062.        <a
  3063.      
  3064.        class="
  3065.          navmenu-link
  3066.          navmenu-link-depth-1
  3067.          
  3068.          
  3069.        "
  3070.        
  3071.          href="/pages/store-locator"
  3072.        
  3073.      >
  3074.        Repair Centers
  3075.        
  3076.      
  3077.        </a>
  3078.      
  3079.  
  3080.      
  3081.      </details>
  3082.    </li>
  3083.  
  3084.    
  3085.    
  3086.  
  3087.    
  3088.    
  3089.    
  3090.    
  3091. <li
  3092.      class="navmenu-item              navmenu-basic__item                  navmenu-id-parts-request"
  3093.      
  3094.      
  3095.      
  3096.    >
  3097.      
  3098.        <a
  3099.      
  3100.        class="
  3101.          navmenu-link
  3102.          navmenu-link-depth-1
  3103.          
  3104.          
  3105.        "
  3106.        
  3107.          href="/pages/part-request"
  3108.        
  3109.      >
  3110.        Parts Request
  3111.        
  3112.      
  3113.        </a>
  3114.      
  3115.  
  3116.      
  3117.      </details>
  3118.    </li>
  3119.  
  3120.    
  3121.    
  3122.  
  3123.    
  3124.    
  3125.    
  3126.    
  3127. <li
  3128.      class="navmenu-item              navmenu-basic__item                  navmenu-id-shipping"
  3129.      
  3130.      
  3131.      
  3132.    >
  3133.      
  3134.        <a
  3135.      
  3136.        class="
  3137.          navmenu-link
  3138.          navmenu-link-depth-1
  3139.          
  3140.          
  3141.        "
  3142.        
  3143.          href="/pages/shipping"
  3144.        
  3145.      >
  3146.        Shipping
  3147.        
  3148.      
  3149.        </a>
  3150.      
  3151.  
  3152.      
  3153.      </details>
  3154.    </li>
  3155.  
  3156.    
  3157.    
  3158.  
  3159.    
  3160.    
  3161.    
  3162.    
  3163. <li
  3164.      class="navmenu-item              navmenu-basic__item                  navmenu-id-francais"
  3165.      
  3166.      
  3167.      
  3168.    >
  3169.      
  3170.        <a
  3171.      
  3172.        class="
  3173.          navmenu-link
  3174.          navmenu-link-depth-1
  3175.          
  3176.          
  3177.        "
  3178.        
  3179.          href="/pages/francais"
  3180.        
  3181.      >
  3182.        Français
  3183.        
  3184.      
  3185.        </a>
  3186.      
  3187.  
  3188.      
  3189.      </details>
  3190.    </li>
  3191.  
  3192. </ul>
  3193.  
  3194.  
  3195.      
  3196.    </nav>
  3197.  </div>
  3198.  
  3199.  <div class="site-mobile-nav" id="site-mobile-nav" data-mobile-nav tabindex="0">
  3200.  <div class="mobile-nav-panel" data-mobile-nav-panel>
  3201.  
  3202.    <ul class="site-header-actions" data-header-actions>
  3203.  
  3204.    
  3205.      <li class="site-header-actions__account-link">
  3206.        <a
  3207.          class="site-header_account-link-anchor"
  3208.          href="/account/login"
  3209.        >
  3210.          <span class="site-header__account-icon">
  3211.            
  3212.  
  3213.  
  3214.    <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>                                                                                                                
  3215.  
  3216.          </span>
  3217.          
  3218.          <span class="site-header_account-link-text">
  3219.            Login
  3220.          </span>
  3221.        </a>
  3222.      </li>
  3223.    
  3224.  
  3225. </ul>
  3226.  
  3227.  
  3228.    <a
  3229.      class="mobile-nav-close"
  3230.      href="#site-header-nav"
  3231.      data-mobile-nav-close>
  3232.      <svg
  3233.  aria-hidden="true"
  3234.  focusable="false"
  3235.  role="presentation"
  3236.  xmlns="http://www.w3.org/2000/svg"
  3237.  width="13"
  3238.  height="13"
  3239.  viewBox="0 0 13 13"
  3240. >
  3241.  <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"/>
  3242. </svg>
  3243.      <span class="visually-hidden">Close</span>
  3244.    </a>
  3245.  
  3246.    <div class="mobile-nav-content" data-mobile-nav-content>
  3247.      
  3248.  
  3249.  
  3250.  
  3251.  
  3252. <ul
  3253.  class="navmenu navmenu-depth-1"
  3254.  data-navmenu
  3255.  aria-label="Main Menu 02"
  3256. >
  3257.  
  3258.    
  3259.    
  3260.  
  3261.    
  3262.    
  3263.    
  3264. <li
  3265.      class="navmenu-item            navmenu-id-home"
  3266.      
  3267.    >
  3268.      <a
  3269.        class="navmenu-link  navmenu-link-active"
  3270.        href="/"
  3271.        
  3272.      >
  3273.        Home
  3274.      </a>
  3275.  
  3276.      
  3277.  
  3278.      
  3279.      
  3280.  
  3281.      
  3282.  
  3283.      
  3284.    </li>
  3285.  
  3286.    
  3287.    
  3288.  
  3289.    
  3290.    
  3291.    
  3292. <li
  3293.      class="navmenu-item      navmenu-item-parent      navmenu-id-shop"
  3294.      data-navmenu-parent
  3295.    >
  3296.      <a
  3297.        class="navmenu-link navmenu-link-parent "
  3298.        href="/collections/all"
  3299.        
  3300.          aria-haspopup="true"
  3301.          aria-expanded="false"
  3302.        
  3303.      >
  3304.        Shop
  3305.      </a>
  3306.  
  3307.      
  3308.        
  3309.  
  3310.  
  3311.  
  3312. <button
  3313.  class="navmenu-button"
  3314.  data-navmenu-trigger
  3315.  aria-expanded="false"
  3316. >
  3317.  <div class="navmenu-button-wrapper" tabindex="-1">
  3318.    <span class="navmenu-icon ">
  3319.      <svg
  3320.  aria-hidden="true"
  3321.  focusable="false"
  3322.  role="presentation"
  3323.  width="8"
  3324.  height="6"
  3325.  viewBox="0 0 8 6"
  3326.  fill="none"
  3327.  xmlns="http://www.w3.org/2000/svg"
  3328.  class="icon-chevron-down"
  3329. >
  3330. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3331. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3332. </svg>
  3333.  
  3334.    </span>
  3335.    <span class="visually-hidden">Shop</span>
  3336.  </div>
  3337. </button>
  3338.  
  3339.      
  3340.  
  3341.      
  3342.      
  3343.  
  3344.      
  3345.        
  3346.  
  3347.  
  3348.  
  3349.  
  3350.  
  3351.  
  3352.  
  3353.  
  3354.  
  3355.  
  3356.  
  3357.  
  3358. <ul
  3359.  class="
  3360.    navmenu
  3361.    navmenu-depth-2
  3362.    navmenu-submenu
  3363.    
  3364.  "
  3365.  data-navmenu
  3366.  data-accordion-content
  3367.  data-navmenu-submenu
  3368.  aria-label="Main Menu 02"
  3369. >
  3370.  
  3371.    
  3372.  
  3373.    
  3374.    
  3375.  
  3376.    
  3377.    
  3378.  
  3379.    
  3380.  
  3381.    
  3382. <li
  3383.        class="navmenu-item        navmenu-item-parent        navmenu-id-laptop-components"
  3384.        data-navmenu-parent
  3385.      >
  3386.        
  3387.          <a
  3388.            href="/collections/all"
  3389.        
  3390.          class="navmenu-link navmenu-link-parent "
  3391.          
  3392.            aria-haspopup="true"
  3393.            aria-expanded="false"
  3394.          
  3395.        >
  3396.          
  3397.          Laptop Components
  3398.  
  3399.        
  3400.          </a>
  3401.        
  3402.  
  3403.        
  3404.          
  3405.  
  3406.  
  3407.  
  3408. <button
  3409.  class="navmenu-button"
  3410.  data-navmenu-trigger
  3411.  aria-expanded="false"
  3412. >
  3413.  <div class="navmenu-button-wrapper" tabindex="-1">
  3414.    <span class="navmenu-icon navmenu-icon-depth-2">
  3415.      <svg
  3416.  aria-hidden="true"
  3417.  focusable="false"
  3418.  role="presentation"
  3419.  width="8"
  3420.  height="6"
  3421.  viewBox="0 0 8 6"
  3422.  fill="none"
  3423.  xmlns="http://www.w3.org/2000/svg"
  3424.  class="icon-chevron-down"
  3425. >
  3426. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3427. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3428. </svg>
  3429.  
  3430.    </span>
  3431.    <span class="visually-hidden">Laptop Components</span>
  3432.  </div>
  3433. </button>
  3434.  
  3435.        
  3436.  
  3437.        
  3438.          
  3439.  
  3440.  
  3441.  
  3442.  
  3443.  
  3444.  
  3445.  
  3446.  
  3447.  
  3448.  
  3449.  
  3450.  
  3451. <ul
  3452.  class="
  3453.    navmenu
  3454.    navmenu-depth-3
  3455.    navmenu-submenu
  3456.    
  3457.  "
  3458.  data-navmenu
  3459.  data-accordion-content
  3460.  data-navmenu-submenu
  3461.  aria-label="Main Menu 02"
  3462. >
  3463.  
  3464.    
  3465.  
  3466.    
  3467.    
  3468.  
  3469.    
  3470.    
  3471.  
  3472.    
  3473.  
  3474.    
  3475.      <li
  3476.        class="navmenu-item navmenu-id-ac-adapters"
  3477.      >
  3478.        <a
  3479.        class="
  3480.          navmenu-link
  3481.          navmenu-link-depth-3
  3482.          
  3483.        "
  3484.        href="/collections/ac-adapter-power"
  3485.        >
  3486.          
  3487.          AC Adapters
  3488. </a>
  3489.      </li>
  3490.    
  3491.  
  3492.    
  3493.  
  3494.    
  3495.    
  3496.  
  3497.    
  3498.    
  3499.  
  3500.    
  3501.  
  3502.    
  3503.      <li
  3504.        class="navmenu-item navmenu-id-batteries"
  3505.      >
  3506.        <a
  3507.        class="
  3508.          navmenu-link
  3509.          navmenu-link-depth-3
  3510.          
  3511.        "
  3512.        href="/collections/batteries"
  3513.        >
  3514.          
  3515.          Batteries
  3516. </a>
  3517.      </li>
  3518.    
  3519.  
  3520.    
  3521.  
  3522.    
  3523.    
  3524.  
  3525.    
  3526.    
  3527.  
  3528.    
  3529.  
  3530.    
  3531.      <li
  3532.        class="navmenu-item navmenu-id-bezels-cases-covers"
  3533.      >
  3534.        <a
  3535.        class="
  3536.          navmenu-link
  3537.          navmenu-link-depth-3
  3538.          
  3539.        "
  3540.        href="/collections/cases-covers-bezels"
  3541.        >
  3542.          
  3543.          Bezels Cases & Covers
  3544. </a>
  3545.      </li>
  3546.    
  3547.  
  3548.    
  3549.  
  3550.    
  3551.    
  3552.  
  3553.    
  3554.    
  3555.  
  3556.    
  3557.  
  3558.    
  3559.      <li
  3560.        class="navmenu-item navmenu-id-boards"
  3561.      >
  3562.        <a
  3563.        class="
  3564.          navmenu-link
  3565.          navmenu-link-depth-3
  3566.          
  3567.        "
  3568.        href="/collections/boards"
  3569.        >
  3570.          
  3571.          Boards
  3572. </a>
  3573.      </li>
  3574.    
  3575.  
  3576.    
  3577.  
  3578.    
  3579.    
  3580.  
  3581.    
  3582.    
  3583.  
  3584.    
  3585.  
  3586.    
  3587.      <li
  3588.        class="navmenu-item navmenu-id-cables"
  3589.      >
  3590.        <a
  3591.        class="
  3592.          navmenu-link
  3593.          navmenu-link-depth-3
  3594.          
  3595.        "
  3596.        href="/collections/cables"
  3597.        >
  3598.          
  3599.          Cables
  3600. </a>
  3601.      </li>
  3602.    
  3603.  
  3604.    
  3605.  
  3606.    
  3607.    
  3608.  
  3609.    
  3610.    
  3611.  
  3612.    
  3613.  
  3614.    
  3615.      <li
  3616.        class="navmenu-item navmenu-id-dc-jack-cables"
  3617.      >
  3618.        <a
  3619.        class="
  3620.          navmenu-link
  3621.          navmenu-link-depth-3
  3622.          
  3623.        "
  3624.        href="/collections/dc-jack-cables"
  3625.        >
  3626.          
  3627.          DC Jack Cables
  3628. </a>
  3629.      </li>
  3630.    
  3631.  
  3632.    
  3633.  
  3634.    
  3635.    
  3636.  
  3637.    
  3638.    
  3639.  
  3640.    
  3641.  
  3642.    
  3643.      <li
  3644.        class="navmenu-item navmenu-id-fans"
  3645.      >
  3646.        <a
  3647.        class="
  3648.          navmenu-link
  3649.          navmenu-link-depth-3
  3650.          
  3651.        "
  3652.        href="/collections/cpu-fan"
  3653.        >
  3654.          
  3655.          Fans
  3656. </a>
  3657.      </li>
  3658.    
  3659.  
  3660.    
  3661.  
  3662.    
  3663.    
  3664.  
  3665.    
  3666.    
  3667.  
  3668.    
  3669.  
  3670.    
  3671.      <li
  3672.        class="navmenu-item navmenu-id-hard-drive-brackets"
  3673.      >
  3674.        <a
  3675.        class="
  3676.          navmenu-link
  3677.          navmenu-link-depth-3
  3678.          
  3679.        "
  3680.        href="/collections/hard-drive-brackets"
  3681.        >
  3682.          
  3683.          Hard Drive Brackets
  3684. </a>
  3685.      </li>
  3686.    
  3687.  
  3688.    
  3689.  
  3690.    
  3691.    
  3692.  
  3693.    
  3694.    
  3695.  
  3696.    
  3697.  
  3698.    
  3699.      <li
  3700.        class="navmenu-item navmenu-id-hard-drives"
  3701.      >
  3702.        <a
  3703.        class="
  3704.          navmenu-link
  3705.          navmenu-link-depth-3
  3706.          
  3707.        "
  3708.        href="/collections/laptop-hard-drive"
  3709.        >
  3710.          
  3711.          Hard Drives
  3712. </a>
  3713.      </li>
  3714.    
  3715.  
  3716.    
  3717.  
  3718.    
  3719.    
  3720.  
  3721.    
  3722.    
  3723.  
  3724.    
  3725.  
  3726.    
  3727.      <li
  3728.        class="navmenu-item navmenu-id-laptop-case-parts"
  3729.      >
  3730.        <a
  3731.        class="
  3732.          navmenu-link
  3733.          navmenu-link-depth-3
  3734.          
  3735.        "
  3736.        href="/collections/laptop-case-parts"
  3737.        >
  3738.          
  3739.          - Laptop Case Parts
  3740. </a>
  3741.      </li>
  3742.    
  3743.  
  3744.    
  3745.  
  3746.    
  3747.    
  3748.  
  3749.    
  3750.    
  3751.  
  3752.    
  3753.  
  3754.    
  3755.      <li
  3756.        class="navmenu-item navmenu-id-hinges"
  3757.      >
  3758.        <a
  3759.        class="
  3760.          navmenu-link
  3761.          navmenu-link-depth-3
  3762.          
  3763.        "
  3764.        href="/collections/hinges"
  3765.        >
  3766.          
  3767.          Hinges
  3768. </a>
  3769.      </li>
  3770.    
  3771.  
  3772.    
  3773.  
  3774.    
  3775.    
  3776.  
  3777.    
  3778.    
  3779.  
  3780.    
  3781.  
  3782.    
  3783.      <li
  3784.        class="navmenu-item navmenu-id-laptop-case"
  3785.      >
  3786.        <a
  3787.        class="
  3788.          navmenu-link
  3789.          navmenu-link-depth-3
  3790.          
  3791.        "
  3792.        href="/collections/laptop-case"
  3793.        >
  3794.          
  3795.          Laptop Case
  3796. </a>
  3797.      </li>
  3798.    
  3799.  
  3800.    
  3801.  
  3802.    
  3803.    
  3804.  
  3805.    
  3806.    
  3807.  
  3808.    
  3809.  
  3810.    
  3811.      <li
  3812.        class="navmenu-item navmenu-id-laptop-cover"
  3813.      >
  3814.        <a
  3815.        class="
  3816.          navmenu-link
  3817.          navmenu-link-depth-3
  3818.          
  3819.        "
  3820.        href="/collections/laptop-cover"
  3821.        >
  3822.          
  3823.          Laptop Cover
  3824. </a>
  3825.      </li>
  3826.    
  3827.  
  3828.    
  3829.  
  3830.    
  3831.    
  3832.  
  3833.    
  3834.    
  3835.  
  3836.    
  3837.  
  3838.    
  3839.      <li
  3840.        class="navmenu-item navmenu-id-thermal-printer"
  3841.      >
  3842.        <a
  3843.        class="
  3844.          navmenu-link
  3845.          navmenu-link-depth-3
  3846.          
  3847.        "
  3848.        href="/collections/thermal-printer"
  3849.        >
  3850.          
  3851.          Thermal Printer
  3852. </a>
  3853.      </li>
  3854.    
  3855.  
  3856. </ul>
  3857.  
  3858.        
  3859.        
  3860.      </li>
  3861.    
  3862.  
  3863.    
  3864.  
  3865.    
  3866.    
  3867.  
  3868.    
  3869.    
  3870.  
  3871.    
  3872.  
  3873.    
  3874. <li
  3875.        class="navmenu-item        navmenu-item-parent        navmenu-id-"
  3876.        data-navmenu-parent
  3877.      >
  3878.        
  3879.          <a
  3880.            href="/collections/all"
  3881.        
  3882.          class="navmenu-link navmenu-link-parent "
  3883.          
  3884.            aria-haspopup="true"
  3885.            aria-expanded="false"
  3886.          
  3887.        >
  3888.          
  3889.          .....
  3890.  
  3891.        
  3892.          </a>
  3893.        
  3894.  
  3895.        
  3896.          
  3897.  
  3898.  
  3899.  
  3900. <button
  3901.  class="navmenu-button"
  3902.  data-navmenu-trigger
  3903.  aria-expanded="false"
  3904. >
  3905.  <div class="navmenu-button-wrapper" tabindex="-1">
  3906.    <span class="navmenu-icon navmenu-icon-depth-2">
  3907.      <svg
  3908.  aria-hidden="true"
  3909.  focusable="false"
  3910.  role="presentation"
  3911.  width="8"
  3912.  height="6"
  3913.  viewBox="0 0 8 6"
  3914.  fill="none"
  3915.  xmlns="http://www.w3.org/2000/svg"
  3916.  class="icon-chevron-down"
  3917. >
  3918. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3919. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3920. </svg>
  3921.  
  3922.    </span>
  3923.    <span class="visually-hidden">.....</span>
  3924.  </div>
  3925. </button>
  3926.  
  3927.        
  3928.  
  3929.        
  3930.          
  3931.  
  3932.  
  3933.  
  3934.  
  3935.  
  3936.  
  3937.  
  3938.  
  3939.  
  3940.  
  3941.  
  3942.  
  3943. <ul
  3944.  class="
  3945.    navmenu
  3946.    navmenu-depth-3
  3947.    navmenu-submenu
  3948.    
  3949.  "
  3950.  data-navmenu
  3951.  data-accordion-content
  3952.  data-navmenu-submenu
  3953.  aria-label="Main Menu 02"
  3954. >
  3955.  
  3956.    
  3957.  
  3958.    
  3959.    
  3960.  
  3961.    
  3962.    
  3963.  
  3964.    
  3965.  
  3966.    
  3967.      <li
  3968.        class="navmenu-item navmenu-id-keyboards"
  3969.      >
  3970.        <a
  3971.        class="
  3972.          navmenu-link
  3973.          navmenu-link-depth-3
  3974.          
  3975.        "
  3976.        href="/collections/keyboards-1"
  3977.        >
  3978.          
  3979.          Keyboards
  3980. </a>
  3981.      </li>
  3982.    
  3983.  
  3984.    
  3985.  
  3986.    
  3987.    
  3988.  
  3989.    
  3990.    
  3991.  
  3992.    
  3993.  
  3994.    
  3995.      <li
  3996.        class="navmenu-item navmenu-id-acer-keyboard"
  3997.      >
  3998.        <a
  3999.        class="
  4000.          navmenu-link
  4001.          navmenu-link-depth-3
  4002.          
  4003.        "
  4004.        href="/collections/acer-keyboards"
  4005.        >
  4006.          
  4007.          - Acer keyboard
  4008. </a>
  4009.      </li>
  4010.    
  4011.  
  4012.    
  4013.  
  4014.    
  4015.    
  4016.  
  4017.    
  4018.    
  4019.  
  4020.    
  4021.  
  4022.    
  4023.      <li
  4024.        class="navmenu-item navmenu-id-asus-keyboards"
  4025.      >
  4026.        <a
  4027.        class="
  4028.          navmenu-link
  4029.          navmenu-link-depth-3
  4030.          
  4031.        "
  4032.        href="/collections/asus-keyboard"
  4033.        >
  4034.          
  4035.          - Asus keyboards
  4036. </a>
  4037.      </li>
  4038.    
  4039.  
  4040.    
  4041.  
  4042.    
  4043.    
  4044.  
  4045.    
  4046.    
  4047.  
  4048.    
  4049.  
  4050.    
  4051.      <li
  4052.        class="navmenu-item navmenu-id-dell-keyboard"
  4053.      >
  4054.        <a
  4055.        class="
  4056.          navmenu-link
  4057.          navmenu-link-depth-3
  4058.          
  4059.        "
  4060.        href="/collections/dell-keyboard"
  4061.        >
  4062.          
  4063.          - Dell keyboard
  4064. </a>
  4065.      </li>
  4066.    
  4067.  
  4068.    
  4069.  
  4070.    
  4071.    
  4072.  
  4073.    
  4074.    
  4075.  
  4076.    
  4077.  
  4078.    
  4079.      <li
  4080.        class="navmenu-item navmenu-id-lenovo-keyboard"
  4081.      >
  4082.        <a
  4083.        class="
  4084.          navmenu-link
  4085.          navmenu-link-depth-3
  4086.          
  4087.        "
  4088.        href="/collections/lenovo-keyboard"
  4089.        >
  4090.          
  4091.          - Lenovo keyboard
  4092. </a>
  4093.      </li>
  4094.    
  4095.  
  4096.    
  4097.  
  4098.    
  4099.    
  4100.  
  4101.    
  4102.    
  4103.  
  4104.    
  4105.  
  4106.    
  4107.      <li
  4108.        class="navmenu-item navmenu-id-hp-keyboard"
  4109.      >
  4110.        <a
  4111.        class="
  4112.          navmenu-link
  4113.          navmenu-link-depth-3
  4114.          
  4115.        "
  4116.        href="/collections/hp-keyboard"
  4117.        >
  4118.          
  4119.          - Hp Keyboard
  4120. </a>
  4121.      </li>
  4122.    
  4123.  
  4124.    
  4125.  
  4126.    
  4127.    
  4128.  
  4129.    
  4130.    
  4131.  
  4132.    
  4133.  
  4134.    
  4135.      <li
  4136.        class="navmenu-item navmenu-id-backlit-keyboards"
  4137.      >
  4138.        <a
  4139.        class="
  4140.          navmenu-link
  4141.          navmenu-link-depth-3
  4142.          
  4143.        "
  4144.        href="/collections/backlit-keyboard"
  4145.        >
  4146.          
  4147.          - Backlit Keyboards
  4148. </a>
  4149.      </li>
  4150.    
  4151.  
  4152.    
  4153.  
  4154.    
  4155.    
  4156.  
  4157.    
  4158.    
  4159.  
  4160.    
  4161.  
  4162.    
  4163.      <li
  4164.        class="navmenu-item navmenu-id-memory"
  4165.      >
  4166.        <a
  4167.        class="
  4168.          navmenu-link
  4169.          navmenu-link-depth-3
  4170.          
  4171.        "
  4172.        href="/collections/memory"
  4173.        >
  4174.          
  4175.          Memory
  4176. </a>
  4177.      </li>
  4178.    
  4179.  
  4180.    
  4181.  
  4182.    
  4183.    
  4184.  
  4185.    
  4186.    
  4187.  
  4188.    
  4189.  
  4190.    
  4191.      <li
  4192.        class="navmenu-item navmenu-id-motherboards"
  4193.      >
  4194.        <a
  4195.        class="
  4196.          navmenu-link
  4197.          navmenu-link-depth-3
  4198.          
  4199.        "
  4200.        href="/collections/motherboards"
  4201.        >
  4202.          
  4203.          Motherboards
  4204. </a>
  4205.      </li>
  4206.    
  4207.  
  4208.    
  4209.  
  4210.    
  4211.    
  4212.  
  4213.    
  4214.    
  4215.  
  4216.    
  4217.  
  4218.    
  4219.      <li
  4220.        class="navmenu-item navmenu-id-optical-drives"
  4221.      >
  4222.        <a
  4223.        class="
  4224.          navmenu-link
  4225.          navmenu-link-depth-3
  4226.          
  4227.        "
  4228.        href="/collections/optical-drives"
  4229.        >
  4230.          
  4231.          Optical Drives
  4232. </a>
  4233.      </li>
  4234.    
  4235.  
  4236.    
  4237.  
  4238.    
  4239.    
  4240.  
  4241.    
  4242.    
  4243.  
  4244.    
  4245.  
  4246.    
  4247.      <li
  4248.        class="navmenu-item navmenu-id-power-supplies"
  4249.      >
  4250.        <a
  4251.        class="
  4252.          navmenu-link
  4253.          navmenu-link-depth-3
  4254.          
  4255.        "
  4256.        href="/collections/power-supplies"
  4257.        >
  4258.          
  4259.          Power Supplies
  4260. </a>
  4261.      </li>
  4262.    
  4263.  
  4264.    
  4265.  
  4266.    
  4267.    
  4268.  
  4269.    
  4270.    
  4271.  
  4272.    
  4273.  
  4274.    
  4275.      <li
  4276.        class="navmenu-item navmenu-id-screens"
  4277.      >
  4278.        <a
  4279.        class="
  4280.          navmenu-link
  4281.          navmenu-link-depth-3
  4282.          
  4283.        "
  4284.        href="/collections/screens"
  4285.        >
  4286.          
  4287.          Screens
  4288. </a>
  4289.      </li>
  4290.    
  4291.  
  4292.    
  4293.  
  4294.    
  4295.    
  4296.  
  4297.    
  4298.    
  4299.  
  4300.    
  4301.  
  4302.    
  4303.      <li
  4304.        class="navmenu-item navmenu-id-touch-screen-laptop"
  4305.      >
  4306.        <a
  4307.        class="
  4308.          navmenu-link
  4309.          navmenu-link-depth-3
  4310.          
  4311.        "
  4312.        href="/collections/touch-screen-laptop"
  4313.        >
  4314.          
  4315.          - Touch Screen Laptop
  4316. </a>
  4317.      </li>
  4318.    
  4319.  
  4320.    
  4321.  
  4322.    
  4323.    
  4324.  
  4325.    
  4326.    
  4327.  
  4328.    
  4329.  
  4330.    
  4331.      <li
  4332.        class="navmenu-item navmenu-id-screens-touch-digitizers"
  4333.      >
  4334.        <a
  4335.        class="
  4336.          navmenu-link
  4337.          navmenu-link-depth-3
  4338.          
  4339.        "
  4340.        href="/collections/screens-touch-digitizers"
  4341.        >
  4342.          
  4343.          Screens - Touch Digitizers
  4344. </a>
  4345.      </li>
  4346.    
  4347.  
  4348.    
  4349.  
  4350.    
  4351.    
  4352.  
  4353.    
  4354.    
  4355.  
  4356.    
  4357.  
  4358.    
  4359.      <li
  4360.        class="navmenu-item navmenu-id-speakers"
  4361.      >
  4362.        <a
  4363.        class="
  4364.          navmenu-link
  4365.          navmenu-link-depth-3
  4366.          
  4367.        "
  4368.        href="/collections/speakers"
  4369.        >
  4370.          
  4371.          Speakers
  4372. </a>
  4373.      </li>
  4374.    
  4375.  
  4376.    
  4377.  
  4378.    
  4379.    
  4380.  
  4381.    
  4382.    
  4383.  
  4384.    
  4385.  
  4386.    
  4387.      <li
  4388.        class="navmenu-item navmenu-id-touchpads"
  4389.      >
  4390.        <a
  4391.        class="
  4392.          navmenu-link
  4393.          navmenu-link-depth-3
  4394.          
  4395.        "
  4396.        href="/collections/touchpads"
  4397.        >
  4398.          
  4399.          Touchpads
  4400. </a>
  4401.      </li>
  4402.    
  4403.  
  4404. </ul>
  4405.  
  4406.        
  4407.        
  4408.      </li>
  4409.    
  4410.  
  4411.    
  4412.  
  4413.    
  4414.    
  4415.  
  4416.    
  4417.    
  4418.  
  4419.    
  4420.  
  4421.    
  4422. <li
  4423.        class="navmenu-item        navmenu-item-parent        navmenu-id-other-components"
  4424.        data-navmenu-parent
  4425.      >
  4426.        
  4427.          <a
  4428.            href="/collections/all"
  4429.        
  4430.          class="navmenu-link navmenu-link-parent "
  4431.          
  4432.            aria-haspopup="true"
  4433.            aria-expanded="false"
  4434.          
  4435.        >
  4436.          
  4437.          Other Components
  4438.  
  4439.        
  4440.          </a>
  4441.        
  4442.  
  4443.        
  4444.          
  4445.  
  4446.  
  4447.  
  4448. <button
  4449.  class="navmenu-button"
  4450.  data-navmenu-trigger
  4451.  aria-expanded="false"
  4452. >
  4453.  <div class="navmenu-button-wrapper" tabindex="-1">
  4454.    <span class="navmenu-icon navmenu-icon-depth-2">
  4455.      <svg
  4456.  aria-hidden="true"
  4457.  focusable="false"
  4458.  role="presentation"
  4459.  width="8"
  4460.  height="6"
  4461.  viewBox="0 0 8 6"
  4462.  fill="none"
  4463.  xmlns="http://www.w3.org/2000/svg"
  4464.  class="icon-chevron-down"
  4465. >
  4466. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  4467. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  4468. </svg>
  4469.  
  4470.    </span>
  4471.    <span class="visually-hidden">Other Components</span>
  4472.  </div>
  4473. </button>
  4474.  
  4475.        
  4476.  
  4477.        
  4478.          
  4479.  
  4480.  
  4481.  
  4482.  
  4483.  
  4484.  
  4485.  
  4486.  
  4487.  
  4488.  
  4489.  
  4490.  
  4491. <ul
  4492.  class="
  4493.    navmenu
  4494.    navmenu-depth-3
  4495.    navmenu-submenu
  4496.    
  4497.  "
  4498.  data-navmenu
  4499.  data-accordion-content
  4500.  data-navmenu-submenu
  4501.  aria-label="Main Menu 02"
  4502. >
  4503.  
  4504.    
  4505.  
  4506.    
  4507.    
  4508.  
  4509.    
  4510.    
  4511.  
  4512.    
  4513.  
  4514.    
  4515.      <li
  4516.        class="navmenu-item navmenu-id-accessories"
  4517.      >
  4518.        <a
  4519.        class="
  4520.          navmenu-link
  4521.          navmenu-link-depth-3
  4522.          
  4523.        "
  4524.        href="/collections/accessories"
  4525.        >
  4526.          
  4527.          Accessories
  4528. </a>
  4529.      </li>
  4530.    
  4531.  
  4532.    
  4533.  
  4534.    
  4535.    
  4536.  
  4537.    
  4538.    
  4539.  
  4540.    
  4541.  
  4542.    
  4543.      <li
  4544.        class="navmenu-item navmenu-id-phone-parts"
  4545.      >
  4546.        <a
  4547.        class="
  4548.          navmenu-link
  4549.          navmenu-link-depth-3
  4550.          
  4551.        "
  4552.        href="/collections/phone-parts"
  4553.        >
  4554.          
  4555.          Phone Parts
  4556. </a>
  4557.      </li>
  4558.    
  4559.  
  4560.    
  4561.  
  4562.    
  4563.    
  4564.  
  4565.    
  4566.    
  4567.  
  4568.    
  4569.  
  4570.    
  4571.      <li
  4572.        class="navmenu-item navmenu-id-printer-parts"
  4573.      >
  4574.        <a
  4575.        class="
  4576.          navmenu-link
  4577.          navmenu-link-depth-3
  4578.          
  4579.        "
  4580.        href="/collections/printer-parts"
  4581.        >
  4582.          
  4583.          Printer Parts
  4584. </a>
  4585.      </li>
  4586.    
  4587.  
  4588.    
  4589.  
  4590.    
  4591.    
  4592.  
  4593.    
  4594.    
  4595.  
  4596.    
  4597.  
  4598.    
  4599.      <li
  4600.        class="navmenu-item navmenu-id-server-parts"
  4601.      >
  4602.        <a
  4603.        class="
  4604.          navmenu-link
  4605.          navmenu-link-depth-3
  4606.          
  4607.        "
  4608.        href="/collections/server-parts"
  4609.        >
  4610.          
  4611.          Server Parts
  4612. </a>
  4613.      </li>
  4614.    
  4615.  
  4616.    
  4617.  
  4618.    
  4619.    
  4620.  
  4621.    
  4622.    
  4623.  
  4624.    
  4625.  
  4626.    
  4627.      <li
  4628.        class="navmenu-item navmenu-id-tablet-parts"
  4629.      >
  4630.        <a
  4631.        class="
  4632.          navmenu-link
  4633.          navmenu-link-depth-3
  4634.          
  4635.        "
  4636.        href="/collections/tablet-parts"
  4637.        >
  4638.          
  4639.          Tablet Parts
  4640. </a>
  4641.      </li>
  4642.    
  4643.  
  4644. </ul>
  4645.  
  4646.        
  4647.        
  4648.      </li>
  4649.    
  4650.  
  4651. </ul>
  4652.  
  4653.      
  4654.  
  4655.      
  4656.    </li>
  4657.  
  4658.    
  4659.    
  4660.  
  4661.    
  4662.    
  4663.    
  4664. <li
  4665.      class="navmenu-item            navmenu-id-about-us"
  4666.      
  4667.    >
  4668.      <a
  4669.        class="navmenu-link  "
  4670.        href="/pages/about-us"
  4671.        
  4672.      >
  4673.        About Us
  4674.      </a>
  4675.  
  4676.      
  4677.  
  4678.      
  4679.      
  4680.  
  4681.      
  4682.  
  4683.      
  4684.    </li>
  4685.  
  4686.    
  4687.    
  4688.  
  4689.    
  4690.    
  4691.    
  4692. <li
  4693.      class="navmenu-item            navmenu-id-repair-centers"
  4694.      
  4695.    >
  4696.      <a
  4697.        class="navmenu-link  "
  4698.        href="/pages/store-locator"
  4699.        
  4700.      >
  4701.        Repair Centers
  4702.      </a>
  4703.  
  4704.      
  4705.  
  4706.      
  4707.      
  4708.  
  4709.      
  4710.  
  4711.      
  4712.    </li>
  4713.  
  4714.    
  4715.    
  4716.  
  4717.    
  4718.    
  4719.    
  4720. <li
  4721.      class="navmenu-item            navmenu-id-parts-request"
  4722.      
  4723.    >
  4724.      <a
  4725.        class="navmenu-link  "
  4726.        href="/pages/part-request"
  4727.        
  4728.      >
  4729.        Parts Request
  4730.      </a>
  4731.  
  4732.      
  4733.  
  4734.      
  4735.      
  4736.  
  4737.      
  4738.  
  4739.      
  4740.    </li>
  4741.  
  4742.    
  4743.    
  4744.  
  4745.    
  4746.    
  4747.    
  4748. <li
  4749.      class="navmenu-item            navmenu-id-shipping"
  4750.      
  4751.    >
  4752.      <a
  4753.        class="navmenu-link  "
  4754.        href="/pages/shipping"
  4755.        
  4756.      >
  4757.        Shipping
  4758.      </a>
  4759.  
  4760.      
  4761.  
  4762.      
  4763.      
  4764.  
  4765.      
  4766.  
  4767.      
  4768.    </li>
  4769.  
  4770.    
  4771.    
  4772.  
  4773.    
  4774.    
  4775.    
  4776. <li
  4777.      class="navmenu-item            navmenu-id-francais"
  4778.      
  4779.    >
  4780.      <a
  4781.        class="navmenu-link  "
  4782.        href="/pages/francais"
  4783.        
  4784.      >
  4785.        Français
  4786.      </a>
  4787.  
  4788.      
  4789.  
  4790.      
  4791.      
  4792.  
  4793.      
  4794.  
  4795.      
  4796.    </li>
  4797.  
  4798. </ul>
  4799.  
  4800.  
  4801.      
  4802.    </div>
  4803.    <div class="utility-bar__mobile-disclosure" data-utility-mobile></div>
  4804.  </div>
  4805.  
  4806.  <div class="mobile-nav-overlay" data-mobile-nav-overlay></div>
  4807. </div>
  4808.  
  4809. </header>
  4810.  
  4811. </div><div id="shopify-section-sections--15492291133527__dynamic_custom_liquid_rc6CpQ" class="shopify-section shopify-section-group-header-group custom-liquid--section"><script
  4812.  type="application/json"
  4813.  data-section-type="custom-liquid"
  4814.  data-section-id="sections--15492291133527__dynamic_custom_liquid_rc6CpQ"
  4815. >
  4816. </script>
  4817.  
  4818. <section class="custom-liquid--container">
  4819.  <!-- truststack top - store default - homepage -->
  4820. <div id="SA_trust_widget_top_372" class="SA__wrapper"></div><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); } if (typeof(shopper_first) == 'undefined') saLoadScript('https://www.shopperapproved.com/trust-widgets/40623/top/372.js'); </script>
  4821. </section>
  4822.  
  4823. </div>
  4824. <!-- END sections: header-group -->
  4825.  
  4826.    <div style="--background-color: #fff">
  4827.      
  4828.  
  4829.  
  4830.    </div>
  4831.  
  4832.    <div class="intersection-target" data-header-intersection-target></div>
  4833.    <div class="site-main-dimmer" data-site-main-dimmer></div>
  4834.    <main id="site-main" class="site-main" aria-label="Main content" tabindex="-1">
  4835.      <div id="shopify-section-template--15492296147031__dynamic_slideshow" class="shopify-section slideshow--section">
  4836.  
  4837.  
  4838.  
  4839. <script type="application/pxs-animation-mapping+json">
  4840.  {
  4841.    "blocks": [".slideshow-slide"],
  4842.    "elements": [
  4843.      ".slideshow-slide__heading",
  4844.      ".slideshow-slide__subheading",
  4845.      ".slideshow-slide__text",
  4846.      ".slideshow-slide__button"
  4847.    ]
  4848.  }
  4849. </script>
  4850.  
  4851. <style data-shopify>
  4852.  #shopify-section-template--15492296147031__dynamic_slideshow {
  4853.    --autoplay-interval: 5s;
  4854.  }
  4855.  
  4856.  
  4857.    @media screen and (min-width: 720px) {
  4858.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  4859.        height: 55.55555555555556vw;
  4860.      }
  4861.    }
  4862.  
  4863.  
  4864.  
  4865.    @media screen and (max-width: 719px) {
  4866.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  4867.        
  4868.          height: 55.55555555555556vw;
  4869.        
  4870.      }
  4871.    }
  4872.  
  4873. </style>
  4874.  
  4875.  
  4876.  
  4877.  
  4878. <script
  4879.  type="application/json"
  4880.  data-section-type="pxs-slideshow"
  4881.  data-section-id="template--15492296147031__dynamic_slideshow"
  4882.  data-section-data
  4883. >
  4884.  {
  4885.    "enable_autoplay": true,
  4886.    "autoplay_interval": 5,
  4887.    "mobile_navigation_adjust": true,
  4888.    "transition_fade": null,
  4889.    "slide_attraction": null,
  4890.    "slide_friction": null,
  4891.    "next_text": "Next slide",
  4892.    "previous_text": "Previous slide"
  4893.  }
  4894. </script>
  4895.  
  4896. <section
  4897.  class="
  4898.    slideshow
  4899.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  4900.  "
  4901.  aria-label="Slideshow"
  4902.  data-autoplay="true"
  4903.  data-autoplay-interval="5"
  4904.  data-banner="false"
  4905.  data-slideshow
  4906. ><div
  4907.    class="slideshow__wrapper "
  4908.    data-slideshow-wrapper
  4909.  >
  4910.  
  4911.  
  4912. <div
  4913.  class="slideshow-slide  "
  4914.  aria-label="Slide 1 of 5"
  4915.  data-text-color="#ffffff"
  4916.  tabindex="-1"
  4917.  data-slideshow-slide
  4918.  data-slide-index="0"
  4919.  
  4920. ><div
  4921.      class="
  4922.        slideshow-slide__image-wrapper
  4923.        
  4924.      "
  4925.      data-slide-image-wrapper
  4926.    >
  4927.  
  4928.  
  4929.    <noscript data-rimg-noscript>
  4930.      <img loading="lazy"
  4931.        
  4932.          src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  4933.        
  4934.  
  4935.        alt=""
  4936.        data-rimg="noscript"
  4937.        srcset="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850 1x"
  4938.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4939.        style="
  4940.        object-fit:cover;object-position:50.0% 50.0%;
  4941.      
  4942. "
  4943.        
  4944.      >
  4945.    </noscript>
  4946.  
  4947.  
  4948.  <img loading="lazy"
  4949.    
  4950.      src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  4951.    
  4952.    alt=""
  4953.  
  4954.    
  4955.      data-rimg="lazy"
  4956.      data-rimg-scale="1"
  4957.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2_1_{size}.jpg?v=1739722850"
  4958.      data-rimg-max="1800x1000"
  4959.      data-rimg-crop="false"
  4960.      
  4961.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4962.    
  4963.  
  4964.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4965.    style="
  4966.        object-fit:cover;object-position:50.0% 50.0%;
  4967.      
  4968. "
  4969.    
  4970.  >
  4971.  
  4972.  
  4973.  
  4974.  <div data-rimg-canvas></div>
  4975.  
  4976.  
  4977. <div
  4978.          class="
  4979.            slideshow-slide__overlay
  4980.            
  4981.          "
  4982.          style="
  4983.            
  4984.              background-color: #000000;
  4985.            
  4986.            opacity: 0.01;
  4987.          "
  4988.        ></div></div><div
  4989.    class="
  4990.      slideshow-slide__content
  4991.      slideshow-slide__content--slide_tJp4ET
  4992.      slideshow-slide__content--text-center
  4993.    "
  4994.    data-slide-content
  4995.  ></div>
  4996. </div>
  4997.  
  4998.  
  4999.  
  5000.  
  5001. <div
  5002.  class="slideshow-slide  "
  5003.  aria-label="Slide 2 of 5"
  5004.  data-text-color="#ffffff"
  5005.  tabindex="-1"
  5006.  data-slideshow-slide
  5007.  data-slide-index="1"
  5008.  
  5009. ><div
  5010.      class="
  5011.        slideshow-slide__image-wrapper
  5012.        
  5013.      "
  5014.      data-slide-image-wrapper
  5015.    >
  5016.  
  5017.  
  5018.    <noscript data-rimg-noscript>
  5019.      <img loading="lazy"
  5020.        
  5021.          src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  5022.        
  5023.  
  5024.        alt=""
  5025.        data-rimg="noscript"
  5026.        srcset="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692 1x"
  5027.        class="slideshow-slide__image slideshow-slide__image--desktop"
  5028.        style="
  5029.        object-fit:cover;object-position:50.0% 50.0%;
  5030.      
  5031. "
  5032.        
  5033.      >
  5034.    </noscript>
  5035.  
  5036.  
  5037.  <img loading="lazy"
  5038.    
  5039.      src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  5040.    
  5041.    alt=""
  5042.  
  5043.    
  5044.      data-rimg="lazy"
  5045.      data-rimg-scale="1"
  5046.      data-rimg-template="//laptopparts.ca/cdn/shop/files/3_1_{size}.jpg?v=1739722692"
  5047.      data-rimg-max="1800x1000"
  5048.      data-rimg-crop="false"
  5049.      
  5050.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  5051.    
  5052.  
  5053.    class="slideshow-slide__image slideshow-slide__image--desktop"
  5054.    style="
  5055.        object-fit:cover;object-position:50.0% 50.0%;
  5056.      
  5057. "
  5058.    
  5059.  >
  5060.  
  5061.  
  5062.  
  5063.  <div data-rimg-canvas></div>
  5064.  
  5065.  
  5066. <div
  5067.          class="
  5068.            slideshow-slide__overlay
  5069.            
  5070.          "
  5071.          style="
  5072.            
  5073.              background-color: #000000;
  5074.            
  5075.            opacity: 0.01;
  5076.          "
  5077.        ></div></div><div
  5078.    class="
  5079.      slideshow-slide__content
  5080.      slideshow-slide__content--slide_QztrPf
  5081.      slideshow-slide__content--text-center
  5082.    "
  5083.    data-slide-content
  5084.  ></div>
  5085. </div>
  5086.  
  5087.  
  5088.  
  5089.  
  5090. <div
  5091.  class="slideshow-slide  "
  5092.  aria-label="Slide 3 of 5"
  5093.  data-text-color="#ffffff"
  5094.  tabindex="-1"
  5095.  data-slideshow-slide
  5096.  data-slide-index="2"
  5097.  
  5098. ><div
  5099.      class="
  5100.        slideshow-slide__image-wrapper
  5101.        
  5102.      "
  5103.      data-slide-image-wrapper
  5104.    >
  5105.  
  5106.  
  5107.    <noscript data-rimg-noscript>
  5108.      <img loading="lazy"
  5109.        
  5110.          src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  5111.        
  5112.  
  5113.        alt=""
  5114.        data-rimg="noscript"
  5115.        srcset="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085 1x"
  5116.        class="slideshow-slide__image slideshow-slide__image--desktop"
  5117.        style="
  5118.        object-fit:cover;object-position:50.0% 50.0%;
  5119.      
  5120. "
  5121.        
  5122.      >
  5123.    </noscript>
  5124.  
  5125.  
  5126.  <img loading="lazy"
  5127.    
  5128.      src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  5129.    
  5130.    alt=""
  5131.  
  5132.    
  5133.      data-rimg="lazy"
  5134.      data-rimg-scale="1"
  5135.      data-rimg-template="//laptopparts.ca/cdn/shop/files/1_1_{size}.jpg?v=1739723085"
  5136.      data-rimg-max="1800x1000"
  5137.      data-rimg-crop="false"
  5138.      
  5139.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  5140.    
  5141.  
  5142.    class="slideshow-slide__image slideshow-slide__image--desktop"
  5143.    style="
  5144.        object-fit:cover;object-position:50.0% 50.0%;
  5145.      
  5146. "
  5147.    
  5148.  >
  5149.  
  5150.  
  5151.  
  5152.  <div data-rimg-canvas></div>
  5153.  
  5154.  
  5155. <div
  5156.          class="
  5157.            slideshow-slide__overlay
  5158.            
  5159.          "
  5160.          style="
  5161.            
  5162.              background-color: #000000;
  5163.            
  5164.            opacity: 0.01;
  5165.          "
  5166.        ></div></div><div
  5167.    class="
  5168.      slideshow-slide__content
  5169.      slideshow-slide__content--slide_UPfjBG
  5170.      slideshow-slide__content--text-center
  5171.    "
  5172.    data-slide-content
  5173.  ></div>
  5174. </div>
  5175.  
  5176.  
  5177.  
  5178.  
  5179. <div
  5180.  class="slideshow-slide  "
  5181.  aria-label="Slide 4 of 5"
  5182.  data-text-color="#ffffff"
  5183.  tabindex="-1"
  5184.  data-slideshow-slide
  5185.  data-slide-index="3"
  5186.  
  5187. ><div
  5188.      class="
  5189.        slideshow-slide__image-wrapper
  5190.        
  5191.      "
  5192.      data-slide-image-wrapper
  5193.    >
  5194.  
  5195.  
  5196.    <noscript data-rimg-noscript>
  5197.      <img loading="lazy"
  5198.        
  5199.          src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  5200.        
  5201.  
  5202.        alt=""
  5203.        data-rimg="noscript"
  5204.        srcset="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350 1x"
  5205.        class="slideshow-slide__image slideshow-slide__image--desktop"
  5206.        style="
  5207.        object-fit:cover;object-position:50.0% 50.0%;
  5208.      
  5209. "
  5210.        
  5211.      >
  5212.    </noscript>
  5213.  
  5214.  
  5215.  <img loading="lazy"
  5216.    
  5217.      src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  5218.    
  5219.    alt=""
  5220.  
  5221.    
  5222.      data-rimg="lazy"
  5223.      data-rimg-scale="1"
  5224.      data-rimg-template="//laptopparts.ca/cdn/shop/files/5_{size}.jpg?v=1739723350"
  5225.      data-rimg-max="1800x1000"
  5226.      data-rimg-crop="false"
  5227.      
  5228.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  5229.    
  5230.  
  5231.    class="slideshow-slide__image slideshow-slide__image--desktop"
  5232.    style="
  5233.        object-fit:cover;object-position:50.0% 50.0%;
  5234.      
  5235. "
  5236.    
  5237.  >
  5238.  
  5239.  
  5240.  
  5241.  <div data-rimg-canvas></div>
  5242.  
  5243.  
  5244. <div
  5245.          class="
  5246.            slideshow-slide__overlay
  5247.            
  5248.          "
  5249.          style="
  5250.            
  5251.              background-color: #000000;
  5252.            
  5253.            opacity: 0.01;
  5254.          "
  5255.        ></div></div><div
  5256.    class="
  5257.      slideshow-slide__content
  5258.      slideshow-slide__content--slide_MbNDbx
  5259.      slideshow-slide__content--text-center
  5260.    "
  5261.    data-slide-content
  5262.  ></div>
  5263. </div>
  5264.  
  5265.  
  5266.  
  5267.  
  5268. <div
  5269.  class="slideshow-slide  "
  5270.  aria-label="Slide 5 of 5"
  5271.  data-text-color="#ffffff"
  5272.  tabindex="-1"
  5273.  data-slideshow-slide
  5274.  data-slide-index="4"
  5275.  
  5276. ><div
  5277.      class="
  5278.        slideshow-slide__image-wrapper
  5279.        
  5280.      "
  5281.      data-slide-image-wrapper
  5282.    >
  5283.  
  5284.  
  5285.    <noscript data-rimg-noscript>
  5286.      <img loading="lazy"
  5287.        
  5288.          src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  5289.        
  5290.  
  5291.        alt=""
  5292.        data-rimg="noscript"
  5293.        srcset="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234 1x"
  5294.        class="slideshow-slide__image slideshow-slide__image--desktop"
  5295.        style="
  5296.        object-fit:cover;object-position:50.0% 50.0%;
  5297.      
  5298. "
  5299.        
  5300.      >
  5301.    </noscript>
  5302.  
  5303.  
  5304.  <img loading="lazy"
  5305.    
  5306.      src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  5307.    
  5308.    alt=""
  5309.  
  5310.    
  5311.      data-rimg="lazy"
  5312.      data-rimg-scale="1"
  5313.      data-rimg-template="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_{size}.jpg?v=1739723234"
  5314.      data-rimg-max="1800x1000"
  5315.      data-rimg-crop="false"
  5316.      
  5317.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  5318.    
  5319.  
  5320.    class="slideshow-slide__image slideshow-slide__image--desktop"
  5321.    style="
  5322.        object-fit:cover;object-position:50.0% 50.0%;
  5323.      
  5324. "
  5325.    
  5326.  >
  5327.  
  5328.  
  5329.  
  5330.  <div data-rimg-canvas></div>
  5331.  
  5332.  
  5333. <div
  5334.          class="
  5335.            slideshow-slide__overlay
  5336.            
  5337.          "
  5338.          style="
  5339.            
  5340.              background-color: #000000;
  5341.            
  5342.            opacity: 0.01;
  5343.          "
  5344.        ></div></div><div
  5345.    class="
  5346.      slideshow-slide__content
  5347.      slideshow-slide__content--slide_eGUxJ7
  5348.      slideshow-slide__content--text-center
  5349.    "
  5350.    data-slide-content
  5351.  ></div>
  5352. </div>
  5353.  
  5354. </div><ol
  5355.      class="slideshow-pagination"
  5356.      data-slideshow-pagination
  5357.    ><li class="slideshow-pagination__dot">
  5358.          <button
  5359.            class="slideshow-pagination__button"
  5360.            data-selected="true"
  5361.            data-slide-button="0"
  5362.          >
  5363.            
  5364.              
  5365.    <div class="circle-timer">
  5366.      <svg class="circle-timer__svg">
  5367.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  5368.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  5369.      </svg>
  5370.    </div>
  5371.  
  5372.            
  5373.            <span class="visually-hidden">Slide 1</span>
  5374.          </button>
  5375.        </li><li class="slideshow-pagination__dot">
  5376.          <button
  5377.            class="slideshow-pagination__button"
  5378.            data-selected="false"
  5379.            data-slide-button="1"
  5380.          >
  5381.            
  5382.              
  5383.    <div class="circle-timer">
  5384.      <svg class="circle-timer__svg">
  5385.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  5386.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  5387.      </svg>
  5388.    </div>
  5389.  
  5390.            
  5391.            <span class="visually-hidden">Slide 2</span>
  5392.          </button>
  5393.        </li><li class="slideshow-pagination__dot">
  5394.          <button
  5395.            class="slideshow-pagination__button"
  5396.            data-selected="false"
  5397.            data-slide-button="2"
  5398.          >
  5399.            
  5400.              
  5401.    <div class="circle-timer">
  5402.      <svg class="circle-timer__svg">
  5403.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  5404.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  5405.      </svg>
  5406.    </div>
  5407.  
  5408.            
  5409.            <span class="visually-hidden">Slide 3</span>
  5410.          </button>
  5411.        </li><li class="slideshow-pagination__dot">
  5412.          <button
  5413.            class="slideshow-pagination__button"
  5414.            data-selected="false"
  5415.            data-slide-button="3"
  5416.          >
  5417.            
  5418.              
  5419.    <div class="circle-timer">
  5420.      <svg class="circle-timer__svg">
  5421.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  5422.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  5423.      </svg>
  5424.    </div>
  5425.  
  5426.            
  5427.            <span class="visually-hidden">Slide 4</span>
  5428.          </button>
  5429.        </li><li class="slideshow-pagination__dot">
  5430.          <button
  5431.            class="slideshow-pagination__button"
  5432.            data-selected="false"
  5433.            data-slide-button="4"
  5434.          >
  5435.            
  5436.              
  5437.    <div class="circle-timer">
  5438.      <svg class="circle-timer__svg">
  5439.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  5440.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  5441.      </svg>
  5442.    </div>
  5443.  
  5444.            
  5445.            <span class="visually-hidden">Slide 5</span>
  5446.          </button>
  5447.        </li></ol><div
  5448.    class="slideshow__current-slide visually-hidden"
  5449.    aria-live="polite"
  5450.    aria-atomic="true"
  5451.    data-slide-counter
  5452.    data-counter-template="Slide {{ count }} of {{ total }}"
  5453.  >
  5454.  </div>
  5455. </section>
  5456.  
  5457.  
  5458.  
  5459. </div><div id="shopify-section-template--15492296147031__dynamic_custom_liquid_gX76ae" class="shopify-section custom-liquid--section"><script
  5460.  type="application/json"
  5461.  data-section-type="custom-liquid"
  5462.  data-section-id="template--15492296147031__dynamic_custom_liquid_gX76ae"
  5463. >
  5464. </script>
  5465.  
  5466. <section class="custom-liquid--container">
  5467.  <!-- truststack bottom - store default - homepage -->
  5468. <div id="SA_trust_widget_bottom_372" class="SA__wrapper"></div><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); } if (typeof(shopper_first) == 'undefined') saLoadScript('https://www.shopperapproved.com/trust-widgets/40623/bottom/372.js'); </script>
  5469.  
  5470. <style>
  5471. div#SA_trust_widget_bottom_372 {
  5472. margin-top: -40px !important;
  5473. }
  5474. </style>
  5475. <!-- truststack bottom - store default - homepage -->
  5476. </section>
  5477.  
  5478. </div><div id="shopify-section-template--15492296147031__dynamic_featured_collection" class="shopify-section featured-collection--section"><script
  5479.  type="application/json"
  5480.  data-section-id="template--15492296147031__dynamic_featured_collection"
  5481.  data-section-type="dynamic-featured-collection"
  5482. ></script>
  5483.  
  5484. <script type="application/pxs-animation-mapping+json">
  5485.  {
  5486.    "blocks": [
  5487.      ".featured-collection__title-card"
  5488.    ],
  5489.    "elements": [
  5490.      ".featured-collection__title-card-pre-heading",
  5491.      ".featured-collection__title-card-heading",
  5492.      ".featured-collection__title-card-button"
  5493.    ]
  5494.  }
  5495. </script>
  5496.  
  5497.  
  5498.  
  5499.  
  5500.  
  5501.  
  5502.  
  5503.  
  5504.  
  5505.  
  5506.  
  5507.  
  5508.  
  5509.  
  5510.  
  5511. <style data-shopify>
  5512.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card {
  5513.    color: ;
  5514.  }
  5515.  
  5516.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card-outer::before {
  5517.    background-color: ;
  5518.    opacity: 0.0;
  5519.  }
  5520.  
  5521.  @media screen and (min-width: 1080px) {
  5522.    #shopify-section-template--15492296147031__dynamic_featured_collection [data-layout="grid"] .featured-collection__title-card {
  5523.      
  5524.    }
  5525.  }
  5526. </style>
  5527.  
  5528.  
  5529.  
  5530.  
  5531.  
  5532.  
  5533.  
  5534.  
  5535.  
  5536.  
  5537.  
  5538.  
  5539.  
  5540.  
  5541.  
  5542. <section class="featured-collection__container" data-featured-collection>
  5543.  
  5544.    <h2 class="home-section--title">
  5545.      Shop The Best Selling
  5546.    </h2>
  5547.  
  5548.  
  5549.  <ul
  5550.    class="home-section--content featured-collection__content"
  5551.    data-content
  5552.    data-layout="slideshow"
  5553.  >
  5554.    
  5555.  
  5556.    
  5557.      
  5558.  
  5559.  
  5560.  
  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.  
  5590.  
  5591.    
  5592.  
  5593.  
  5594.  
  5595. <li
  5596.  class="productgrid--item  imagestyle--natural    productitem--sale  productitem--emphasis      show-actions--mobile"
  5597.  data-product-item
  5598.  data-product-quickshop-url="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5599.  
  5600. >
  5601.  <div class="productitem" data-product-item-content>
  5602.    
  5603.    
  5604.    
  5605.    
  5606.  
  5607.    
  5608.  
  5609.    
  5610.  
  5611.    <div class="productitem__container">
  5612.      
  5613.  
  5614.      <div class="productitem__image-container">
  5615.        <a target="_blank"
  5616.          class="productitem--image-link"
  5617.          href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5618.          aria-label="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5619.          tabindex="-1"
  5620.          data-product-page-link
  5621.        >
  5622.          <figure
  5623.            class="productitem--image"
  5624.            data-product-item-image
  5625.            
  5626.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5627.            
  5628.          >
  5629.            
  5630.              
  5631.              
  5632.  
  5633.  
  5634.    <noscript data-rimg-noscript>
  5635.      <img loading="lazy"
  5636.        
  5637.          src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1759501226"
  5638.        
  5639.  
  5640.        alt="B156HTN03.6"
  5641.        data-rimg="noscript"
  5642.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1759501226 1x"
  5643.        class="productitem--image-primary"
  5644.        
  5645.        
  5646.      >
  5647.    </noscript>
  5648.  
  5649.  
  5650.  <img loading="lazy"
  5651.    
  5652.      src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1759501226"
  5653.    
  5654.    alt="B156HTN03.6"
  5655.  
  5656.    
  5657.      data-rimg="lazy"
  5658.      data-rimg-scale="1"
  5659.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_{size}.jpg?v=1759501226"
  5660.      data-rimg-max="500x500"
  5661.      data-rimg-crop="false"
  5662.      
  5663.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  5664.    
  5665.  
  5666.    class="productitem--image-primary"
  5667.    
  5668.    
  5669.  >
  5670.  
  5671.  
  5672.  
  5673.  <div data-rimg-canvas></div>
  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.  
  5703.  
  5704.  
  5705.  
  5706.  
  5707.  
  5708.  
  5709.  
  5710.  <span class="productitem__badge productitem__badge--sale"
  5711.    data-badge-sales
  5712.    
  5713.  >
  5714.    <span data-badge-sales-range>
  5715.      
  5716.        
  5717.          Save <span data-price-percent-saved>42</span>%
  5718.        
  5719.      
  5720.    </span>
  5721.    <span data-badge-sales-single style="display: none;">
  5722.      
  5723.        Save <span data-price-percent-saved></span>%
  5724.      
  5725.    </span>
  5726.  </span>
  5727.          </figure>
  5728.        </a>
  5729.      </div><div class="productitem--info">
  5730.        
  5731.          
  5732.  
  5733.        
  5734.  
  5735.        
  5736.          
  5737.  
  5738.  
  5739.  
  5740.  
  5741.  
  5742.  
  5743.  
  5744.  
  5745.  
  5746.  
  5747.  
  5748.  
  5749.  
  5750.  
  5751.  
  5752.  
  5753.  
  5754.  
  5755.  
  5756.  
  5757.  
  5758.  
  5759.  
  5760.  
  5761.  
  5762.  
  5763.  
  5764.  
  5765.  
  5766.  
  5767. <div class="price productitem__price ">
  5768.  
  5769.    <div
  5770.      class="price__compare-at visible"
  5771.      data-price-compare-container
  5772.    >
  5773.  
  5774.      
  5775.        <span class="visually-hidden">Original price</span>
  5776.        <span class="money price__compare-at--single" data-price-compare>
  5777.          $155.99
  5778.        </span>
  5779.      
  5780.    </div>
  5781.  
  5782.  
  5783.    
  5784.      
  5785.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5786.        
  5787.          <span class="visually-hidden">Original price</span>
  5788.          <span class="money price__compare-at--min" data-price-compare-min>
  5789.            $155.99
  5790.          </span>
  5791.          -
  5792.          <span class="visually-hidden">Original price</span>
  5793.          <span class="money price__compare-at--max" data-price-compare-max>
  5794.            $155.99
  5795.          </span>
  5796.        
  5797.      </div>
  5798.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5799.        <span class="visually-hidden">Original price</span>
  5800.        <span class="money price__compare-at--single" data-price-compare>
  5801.          $155.99
  5802.        </span>
  5803.      </div>
  5804.    
  5805.  
  5806.  
  5807.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  5808.  
  5809.    
  5810.  
  5811.    
  5812.      
  5813.      
  5814.        <span class="visually-hidden">Current price</span>
  5815.      
  5816.      <span class="money" data-price>
  5817.        $89.99
  5818.      </span>
  5819.    
  5820.    
  5821.  </div>
  5822.  
  5823.  
  5824.    
  5825.    <div class="price__current--hidden" data-current-price-range-hidden>
  5826.      
  5827.        <span class="money price__current--min" data-price-min>$89.99</span>
  5828.        -
  5829.        <span class="money price__current--max" data-price-max>$89.99</span>
  5830.      
  5831.    </div>
  5832.    <div class="price__current--hidden" data-current-price-hidden>
  5833.      <span class="visually-hidden">Current price</span>
  5834.      <span class="money" data-price>
  5835.        $89.99
  5836.      </span>
  5837.    </div>
  5838.  
  5839.  
  5840.  
  5841.    
  5842.    
  5843.    
  5844.    
  5845.  
  5846.    <div
  5847.      class="
  5848.        productitem__unit-price
  5849.        hidden
  5850.      "
  5851.      data-unit-price
  5852.    >
  5853.      <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>
  5854.    </div>
  5855.  
  5856.  
  5857.  
  5858. </div>
  5859.  
  5860.  
  5861.        
  5862.  
  5863.        <h2 class="productitem--title">
  5864.          <a href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops" data-product-page-link>
  5865.            15.6 FHD 1920x1080 Lcd Led Screen Lenovo Y50-70 Laptops B156HTN03.6
  5866.          </a>
  5867.        </h2>
  5868.  
  5869.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5870.        <div class="star_container 3929811353687"></div>
  5871.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5872.  
  5873.        
  5874.          
  5875.            <span class="productitem--vendor">
  5876.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  5877.            </span>
  5878.          
  5879.        
  5880.  
  5881.        
  5882.  
  5883.        
  5884.          
  5885.            <div class="productitem__stock-level">
  5886.              <!--
  5887.  
  5888.  
  5889.  
  5890.  
  5891.  
  5892.  
  5893.  
  5894. <div class="product-stock-level-wrapper" >
  5895.  
  5896.    <span class="
  5897.  product-stock-level
  5898.  product-stock-level--continue-selling
  5899.  
  5900. ">
  5901.      
  5902.  
  5903.      <span class="product-stock-level__text">
  5904.        
  5905.        <div class="product-stock-level__badge-text">
  5906.          
  5907.  
  5908.    In stock
  5909.  
  5910.  
  5911.        </div>
  5912.      </span>
  5913.    </span>
  5914.  
  5915. </div>
  5916. -->
  5917.              
  5918.  
  5919.  
  5920.    
  5921.      <b style="color:green">In stock</b>
  5922.    
  5923.  
  5924.  
  5925.  
  5926.  
  5927.  
  5928.  
  5929.  
  5930.            </div>
  5931.          
  5932.  
  5933.          
  5934.            
  5935.          
  5936.        
  5937.  
  5938.        
  5939.          <div class="productitem--description">
  5940.            <p>
  5941. 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>
  5942.  
  5943.            
  5944.              <a
  5945.                href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5946.                class="productitem--link"
  5947.                data-product-page-link
  5948.              >
  5949.                View full details
  5950.              </a>
  5951.            
  5952.          </div>
  5953.        
  5954.      </div>
  5955.  
  5956.      
  5957.        
  5958.          
  5959.          
  5960.          
  5961.  
  5962.          
  5963.          
  5964.  
  5965.          
  5966.  
  5967.          
  5968.  
  5969.          <div class="productitem--actions" data-product-actions>
  5970.            <div class="productitem--listview-price">
  5971.              
  5972.  
  5973.  
  5974.  
  5975.  
  5976.  
  5977.  
  5978.  
  5979.  
  5980.  
  5981.  
  5982.  
  5983.  
  5984.  
  5985.  
  5986.  
  5987.  
  5988.  
  5989.  
  5990.  
  5991.  
  5992.  
  5993.  
  5994.  
  5995.  
  5996.  
  5997.  
  5998.  
  5999.  
  6000.  
  6001.  
  6002. <div class="price productitem__price ">
  6003.  
  6004.    <div
  6005.      class="price__compare-at visible"
  6006.      data-price-compare-container
  6007.    >
  6008.  
  6009.      
  6010.        <span class="visually-hidden">Original price</span>
  6011.        <span class="money price__compare-at--single" data-price-compare>
  6012.          $155.99
  6013.        </span>
  6014.      
  6015.    </div>
  6016.  
  6017.  
  6018.    
  6019.      
  6020.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6021.        
  6022.          <span class="visually-hidden">Original price</span>
  6023.          <span class="money price__compare-at--min" data-price-compare-min>
  6024.            $155.99
  6025.          </span>
  6026.          -
  6027.          <span class="visually-hidden">Original price</span>
  6028.          <span class="money price__compare-at--max" data-price-compare-max>
  6029.            $155.99
  6030.          </span>
  6031.        
  6032.      </div>
  6033.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6034.        <span class="visually-hidden">Original price</span>
  6035.        <span class="money price__compare-at--single" data-price-compare>
  6036.          $155.99
  6037.        </span>
  6038.      </div>
  6039.    
  6040.  
  6041.  
  6042.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  6043.  
  6044.    
  6045.  
  6046.    
  6047.      
  6048.      
  6049.        <span class="visually-hidden">Current price</span>
  6050.      
  6051.      <span class="money" data-price>
  6052.        $89.99
  6053.      </span>
  6054.    
  6055.    
  6056.  </div>
  6057.  
  6058.  
  6059.    
  6060.    <div class="price__current--hidden" data-current-price-range-hidden>
  6061.      
  6062.        <span class="money price__current--min" data-price-min>$89.99</span>
  6063.        -
  6064.        <span class="money price__current--max" data-price-max>$89.99</span>
  6065.      
  6066.    </div>
  6067.    <div class="price__current--hidden" data-current-price-hidden>
  6068.      <span class="visually-hidden">Current price</span>
  6069.      <span class="money" data-price>
  6070.        $89.99
  6071.      </span>
  6072.    </div>
  6073.  
  6074.  
  6075.  
  6076.    
  6077.    
  6078.    
  6079.    
  6080.  
  6081.    <div
  6082.      class="
  6083.        productitem__unit-price
  6084.        hidden
  6085.      "
  6086.      data-unit-price
  6087.    >
  6088.      <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>
  6089.    </div>
  6090.  
  6091.  
  6092.  
  6093. </div>
  6094.  
  6095.  
  6096.            </div>
  6097.  
  6098.            <div class="productitem--listview-badge">
  6099.              
  6100.  
  6101.  
  6102.  
  6103.  
  6104.  
  6105.  
  6106.  
  6107.  
  6108.  
  6109.  
  6110.  
  6111.  
  6112.  
  6113.  
  6114.  
  6115.  
  6116.  
  6117.  
  6118.  
  6119.  
  6120.  
  6121.  
  6122.  
  6123.  
  6124.  
  6125.  
  6126.  
  6127.  
  6128.  
  6129.  
  6130.  
  6131.  <span class="productitem__badge productitem__badge--sale"
  6132.    data-badge-sales
  6133.    
  6134.  >
  6135.    <span data-badge-sales-range>
  6136.      
  6137.        
  6138.          Save <span data-price-percent-saved>42</span>%
  6139.        
  6140.      
  6141.    </span>
  6142.    <span data-badge-sales-single style="display: none;">
  6143.      
  6144.        Save <span data-price-percent-saved></span>%
  6145.      
  6146.    </span>
  6147.  </span>
  6148.            </div>
  6149.  
  6150.            
  6151.              <div
  6152.                class="
  6153.                  productitem--action
  6154.                  quickshop-button
  6155.                  
  6156.                "
  6157.              >
  6158.                <button
  6159.                  class="productitem--action-trigger button-secondary"
  6160.                  data-quickshop-full
  6161.                  
  6162.                  
  6163.                  type="button"
  6164.                >
  6165.                  Quick shop
  6166.                </button>
  6167.              </div>
  6168.            
  6169.  
  6170.            
  6171.              <div
  6172.                class="
  6173.                  productitem--action
  6174.                  atc--button
  6175.                  
  6176.                "
  6177.              >
  6178.                <button
  6179.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6180.                  type="button"
  6181.                  aria-label="Add to cart"
  6182.                  
  6183.                    data-quick-buy
  6184.                  
  6185.                  data-variant-id="29564283551831"
  6186.                  
  6187.                >
  6188.                  <span class="atc-button--text">
  6189.                    Add to cart
  6190.                  </span>
  6191.                  <span class="atc-button--icon"><svg
  6192.  aria-hidden="true"
  6193.  focusable="false"
  6194.  role="presentation"
  6195.  width="26"
  6196.  height="26"
  6197.  viewBox="0 0 26 26"
  6198.  xmlns="http://www.w3.org/2000/svg"
  6199. >
  6200.  <g fill-rule="nonzero" fill="currentColor">
  6201.    <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"/>
  6202.  </g>
  6203. </svg></span>
  6204.                </button>
  6205.              </div>
  6206.            
  6207.          </div>
  6208.        
  6209.      
  6210.    </div>
  6211.  </div>
  6212.  
  6213.  
  6214.    <script type="application/json" data-quick-buy-settings>
  6215.      {
  6216.        "cart_redirection": true,
  6217.        "money_format": "${{amount}}"
  6218.      }
  6219.    </script>
  6220.  
  6221. </li>
  6222.    
  6223.      
  6224.  
  6225.  
  6226.  
  6227.  
  6228.  
  6229.  
  6230.  
  6231.  
  6232.  
  6233.  
  6234.  
  6235.  
  6236.  
  6237.  
  6238.  
  6239.  
  6240.  
  6241.  
  6242.  
  6243.  
  6244.  
  6245.  
  6246.  
  6247.  
  6248.  
  6249.  
  6250.  
  6251.  
  6252.  
  6253.  
  6254.  
  6255.  
  6256.    
  6257.  
  6258.  
  6259.  
  6260. <li
  6261.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6262.  data-product-item
  6263.  data-product-quickshop-url="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6264.  
  6265. >
  6266.  <div class="productitem" data-product-item-content>
  6267.    
  6268.    
  6269.    
  6270.    
  6271.  
  6272.    
  6273.  
  6274.    
  6275.  
  6276.    <div class="productitem__container">
  6277.      
  6278.  
  6279.      <div class="productitem__image-container">
  6280.        <a target="_blank"
  6281.          class="productitem--image-link"
  6282.          href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6283.          aria-label="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6284.          tabindex="-1"
  6285.          data-product-page-link
  6286.        >
  6287.          <figure
  6288.            class="productitem--image"
  6289.            data-product-item-image
  6290.            
  6291.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6292.            
  6293.          >
  6294.            
  6295.              
  6296.              
  6297.  
  6298.  
  6299.    <noscript data-rimg-noscript>
  6300.      <img loading="lazy"
  6301.        
  6302.          src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1759501007"
  6303.        
  6304.  
  6305.        alt="Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW - LaptopParts.ca"
  6306.        data-rimg="noscript"
  6307.        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"
  6308.        class="productitem--image-primary"
  6309.        
  6310.        
  6311.      >
  6312.    </noscript>
  6313.  
  6314.  
  6315.  <img loading="lazy"
  6316.    
  6317.      src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1759501007"
  6318.    
  6319.    alt="Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW - LaptopParts.ca"
  6320.  
  6321.    
  6322.      data-rimg="lazy"
  6323.      data-rimg-scale="1"
  6324.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_{size}.jpg?v=1759501007"
  6325.      data-rimg-max="1000x1000"
  6326.      data-rimg-crop="false"
  6327.      
  6328.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  6329.    
  6330.  
  6331.    class="productitem--image-primary"
  6332.    
  6333.    
  6334.  >
  6335.  
  6336.  
  6337.  
  6338.  <div data-rimg-canvas></div>
  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.  
  6368.  
  6369.  
  6370.  
  6371.          </figure>
  6372.        </a>
  6373.      </div><div class="productitem--info">
  6374.        
  6375.          
  6376.  
  6377.        
  6378.  
  6379.        
  6380.          
  6381.  
  6382.  
  6383.  
  6384.  
  6385.  
  6386.  
  6387.  
  6388.  
  6389.  
  6390.  
  6391.  
  6392.  
  6393.  
  6394.  
  6395.  
  6396.  
  6397.  
  6398.  
  6399.  
  6400.  
  6401.  
  6402.  
  6403.  
  6404.  
  6405.  
  6406.  
  6407.  
  6408.  
  6409.  
  6410.  
  6411. <div class="price productitem__price ">
  6412.  
  6413.    <div
  6414.      class="price__compare-at visible"
  6415.      data-price-compare-container
  6416.    >
  6417.  
  6418.      
  6419.        <span class="money price__original" data-price-original></span>
  6420.      
  6421.    </div>
  6422.  
  6423.  
  6424.    
  6425.      
  6426.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6427.        
  6428.          <span class="visually-hidden">Original price</span>
  6429.          <span class="money price__compare-at--min" data-price-compare-min>
  6430.            $149.99
  6431.          </span>
  6432.          -
  6433.          <span class="visually-hidden">Original price</span>
  6434.          <span class="money price__compare-at--max" data-price-compare-max>
  6435.            $149.99
  6436.          </span>
  6437.        
  6438.      </div>
  6439.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6440.        <span class="visually-hidden">Original price</span>
  6441.        <span class="money price__compare-at--single" data-price-compare>
  6442.          
  6443.        </span>
  6444.      </div>
  6445.    
  6446.  
  6447.  
  6448.  <div class="price__current price__current--emphasize " data-price-container>
  6449.  
  6450.    
  6451.  
  6452.    
  6453.      
  6454.      
  6455.      <span class="money" data-price>
  6456.        $149.99
  6457.      </span>
  6458.    
  6459.    
  6460.  </div>
  6461.  
  6462.  
  6463.    
  6464.    <div class="price__current--hidden" data-current-price-range-hidden>
  6465.      
  6466.        <span class="money price__current--min" data-price-min>$149.99</span>
  6467.        -
  6468.        <span class="money price__current--max" data-price-max>$149.99</span>
  6469.      
  6470.    </div>
  6471.    <div class="price__current--hidden" data-current-price-hidden>
  6472.      <span class="visually-hidden">Current price</span>
  6473.      <span class="money" data-price>
  6474.        $149.99
  6475.      </span>
  6476.    </div>
  6477.  
  6478.  
  6479.  
  6480.    
  6481.    
  6482.    
  6483.    
  6484.  
  6485.    <div
  6486.      class="
  6487.        productitem__unit-price
  6488.        hidden
  6489.      "
  6490.      data-unit-price
  6491.    >
  6492.      <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>
  6493.    </div>
  6494.  
  6495.  
  6496.  
  6497. </div>
  6498.  
  6499.  
  6500.        
  6501.  
  6502.        <h2 class="productitem--title">
  6503.          <a href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw" data-product-page-link>
  6504.            Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW
  6505.          </a>
  6506.        </h2>
  6507.  
  6508.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  6509.        <div class="star_container 3929789694039"></div>
  6510.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  6511.  
  6512.        
  6513.          
  6514.            <span class="productitem--vendor">
  6515.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  6516.            </span>
  6517.          
  6518.        
  6519.  
  6520.        
  6521.  
  6522.        
  6523.          
  6524.            <div class="productitem__stock-level">
  6525.              <!--
  6526.  
  6527.  
  6528.  
  6529.  
  6530.  
  6531.  
  6532.  
  6533. <div class="product-stock-level-wrapper" >
  6534.  
  6535.    <span class="
  6536.  product-stock-level
  6537.  product-stock-level--continue-selling
  6538.  
  6539. ">
  6540.      
  6541.  
  6542.      <span class="product-stock-level__text">
  6543.        
  6544.        <div class="product-stock-level__badge-text">
  6545.          
  6546.  
  6547.    In stock
  6548.  
  6549.  
  6550.        </div>
  6551.      </span>
  6552.    </span>
  6553.  
  6554. </div>
  6555. -->
  6556.              
  6557.  
  6558.  
  6559.    
  6560.      <b style="color:green">In stock</b>
  6561.    
  6562.  
  6563.  
  6564.  
  6565.  
  6566.  
  6567.  
  6568.  
  6569.            </div>
  6570.          
  6571.  
  6572.          
  6573.            
  6574.          
  6575.        
  6576.  
  6577.        
  6578.          <div class="productitem--description">
  6579.            <p>
  6580. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  6581.  
  6582. Compatible Part #s: KGYYH, 48DGW, N140HCE-G52
  6583.  
  6584. Compatible Models:
  6585. Dell Lati...</p>
  6586.  
  6587.            
  6588.              <a
  6589.                href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6590.                class="productitem--link"
  6591.                data-product-page-link
  6592.              >
  6593.                View full details
  6594.              </a>
  6595.            
  6596.          </div>
  6597.        
  6598.      </div>
  6599.  
  6600.      
  6601.        
  6602.          
  6603.          
  6604.          
  6605.  
  6606.          
  6607.          
  6608.  
  6609.          
  6610.  
  6611.          
  6612.  
  6613.          <div class="productitem--actions" data-product-actions>
  6614.            <div class="productitem--listview-price">
  6615.              
  6616.  
  6617.  
  6618.  
  6619.  
  6620.  
  6621.  
  6622.  
  6623.  
  6624.  
  6625.  
  6626.  
  6627.  
  6628.  
  6629.  
  6630.  
  6631.  
  6632.  
  6633.  
  6634.  
  6635.  
  6636.  
  6637.  
  6638.  
  6639.  
  6640.  
  6641.  
  6642.  
  6643.  
  6644.  
  6645.  
  6646. <div class="price productitem__price ">
  6647.  
  6648.    <div
  6649.      class="price__compare-at visible"
  6650.      data-price-compare-container
  6651.    >
  6652.  
  6653.      
  6654.        <span class="money price__original" data-price-original></span>
  6655.      
  6656.    </div>
  6657.  
  6658.  
  6659.    
  6660.      
  6661.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6662.        
  6663.          <span class="visually-hidden">Original price</span>
  6664.          <span class="money price__compare-at--min" data-price-compare-min>
  6665.            $149.99
  6666.          </span>
  6667.          -
  6668.          <span class="visually-hidden">Original price</span>
  6669.          <span class="money price__compare-at--max" data-price-compare-max>
  6670.            $149.99
  6671.          </span>
  6672.        
  6673.      </div>
  6674.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6675.        <span class="visually-hidden">Original price</span>
  6676.        <span class="money price__compare-at--single" data-price-compare>
  6677.          
  6678.        </span>
  6679.      </div>
  6680.    
  6681.  
  6682.  
  6683.  <div class="price__current price__current--emphasize " data-price-container>
  6684.  
  6685.    
  6686.  
  6687.    
  6688.      
  6689.      
  6690.      <span class="money" data-price>
  6691.        $149.99
  6692.      </span>
  6693.    
  6694.    
  6695.  </div>
  6696.  
  6697.  
  6698.    
  6699.    <div class="price__current--hidden" data-current-price-range-hidden>
  6700.      
  6701.        <span class="money price__current--min" data-price-min>$149.99</span>
  6702.        -
  6703.        <span class="money price__current--max" data-price-max>$149.99</span>
  6704.      
  6705.    </div>
  6706.    <div class="price__current--hidden" data-current-price-hidden>
  6707.      <span class="visually-hidden">Current price</span>
  6708.      <span class="money" data-price>
  6709.        $149.99
  6710.      </span>
  6711.    </div>
  6712.  
  6713.  
  6714.  
  6715.    
  6716.    
  6717.    
  6718.    
  6719.  
  6720.    <div
  6721.      class="
  6722.        productitem__unit-price
  6723.        hidden
  6724.      "
  6725.      data-unit-price
  6726.    >
  6727.      <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>
  6728.    </div>
  6729.  
  6730.  
  6731.  
  6732. </div>
  6733.  
  6734.  
  6735.            </div>
  6736.  
  6737.            <div class="productitem--listview-badge">
  6738.              
  6739.  
  6740.  
  6741.  
  6742.  
  6743.  
  6744.  
  6745.  
  6746.  
  6747.  
  6748.  
  6749.  
  6750.  
  6751.  
  6752.  
  6753.  
  6754.  
  6755.  
  6756.  
  6757.  
  6758.  
  6759.  
  6760.  
  6761.  
  6762.  
  6763.  
  6764.  
  6765.  
  6766.            </div>
  6767.  
  6768.            
  6769.              <div
  6770.                class="
  6771.                  productitem--action
  6772.                  quickshop-button
  6773.                  
  6774.                "
  6775.              >
  6776.                <button
  6777.                  class="productitem--action-trigger button-secondary"
  6778.                  data-quickshop-full
  6779.                  
  6780.                  
  6781.                  type="button"
  6782.                >
  6783.                  Quick shop
  6784.                </button>
  6785.              </div>
  6786.            
  6787.  
  6788.            
  6789.              <div
  6790.                class="
  6791.                  productitem--action
  6792.                  atc--button
  6793.                  
  6794.                "
  6795.              >
  6796.                <button
  6797.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6798.                  type="button"
  6799.                  aria-label="Add to cart"
  6800.                  
  6801.                    data-quick-buy
  6802.                  
  6803.                  data-variant-id="29462328246359"
  6804.                  
  6805.                >
  6806.                  <span class="atc-button--text">
  6807.                    Add to cart
  6808.                  </span>
  6809.                  <span class="atc-button--icon"><svg
  6810.  aria-hidden="true"
  6811.  focusable="false"
  6812.  role="presentation"
  6813.  width="26"
  6814.  height="26"
  6815.  viewBox="0 0 26 26"
  6816.  xmlns="http://www.w3.org/2000/svg"
  6817. >
  6818.  <g fill-rule="nonzero" fill="currentColor">
  6819.    <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"/>
  6820.  </g>
  6821. </svg></span>
  6822.                </button>
  6823.              </div>
  6824.            
  6825.          </div>
  6826.        
  6827.      
  6828.    </div>
  6829.  </div>
  6830.  
  6831.  
  6832.    <script type="application/json" data-quick-buy-settings>
  6833.      {
  6834.        "cart_redirection": true,
  6835.        "money_format": "${{amount}}"
  6836.      }
  6837.    </script>
  6838.  
  6839. </li>
  6840.    
  6841.      
  6842.  
  6843.  
  6844.  
  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.  
  6874.    
  6875.  
  6876.  
  6877.  
  6878. <li
  6879.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6880.  data-product-item
  6881.  data-product-quickshop-url="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6882.  
  6883. >
  6884.  <div class="productitem" data-product-item-content>
  6885.    
  6886.    
  6887.    
  6888.    
  6889.  
  6890.    
  6891.  
  6892.    
  6893.  
  6894.    <div class="productitem__container">
  6895.      
  6896.  
  6897.      <div class="productitem__image-container">
  6898.        <a target="_blank"
  6899.          class="productitem--image-link"
  6900.          href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6901.          aria-label="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6902.          tabindex="-1"
  6903.          data-product-page-link
  6904.        >
  6905.          <figure
  6906.            class="productitem--image"
  6907.            data-product-item-image
  6908.            
  6909.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6910.            
  6911.          >
  6912.            
  6913.              
  6914.              
  6915.  
  6916.  
  6917.    <noscript data-rimg-noscript>
  6918.      <img loading="lazy"
  6919.        
  6920.          src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1762542373"
  6921.        
  6922.  
  6923.        alt="4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable - LaptopParts.ca"
  6924.        data-rimg="noscript"
  6925.        srcset="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1762542373 1x, //laptopparts.ca/cdn/shop/products/molex1_599x599.jpg?v=1762542373 1.17x"
  6926.        class="productitem--image-primary"
  6927.        
  6928.        
  6929.      >
  6930.    </noscript>
  6931.  
  6932.  
  6933.  <img loading="lazy"
  6934.    
  6935.      src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1762542373"
  6936.    
  6937.    alt="4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable - LaptopParts.ca"
  6938.  
  6939.    
  6940.      data-rimg="lazy"
  6941.      data-rimg-scale="1"
  6942.      data-rimg-template="//laptopparts.ca/cdn/shop/products/molex1_{size}.jpg?v=1762542373"
  6943.      data-rimg-max="603x603"
  6944.      data-rimg-crop="false"
  6945.      
  6946.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  6947.    
  6948.  
  6949.    class="productitem--image-primary"
  6950.    
  6951.    
  6952.  >
  6953.  
  6954.  
  6955.  
  6956.  <div data-rimg-canvas></div>
  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.  
  6986.  
  6987.  
  6988.  
  6989.          </figure>
  6990.        </a>
  6991.      </div><div class="productitem--info">
  6992.        
  6993.          
  6994.  
  6995.        
  6996.  
  6997.        
  6998.          
  6999.  
  7000.  
  7001.  
  7002.  
  7003.  
  7004.  
  7005.  
  7006.  
  7007.  
  7008.  
  7009.  
  7010.  
  7011.  
  7012.  
  7013.  
  7014.  
  7015.  
  7016.  
  7017.  
  7018.  
  7019.  
  7020.  
  7021.  
  7022.  
  7023.  
  7024.  
  7025.  
  7026.  
  7027.  
  7028.  
  7029. <div class="price productitem__price ">
  7030.  
  7031.    <div
  7032.      class="price__compare-at visible"
  7033.      data-price-compare-container
  7034.    >
  7035.  
  7036.      
  7037.        <span class="money price__original" data-price-original></span>
  7038.      
  7039.    </div>
  7040.  
  7041.  
  7042.    
  7043.      
  7044.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7045.        
  7046.          <span class="visually-hidden">Original price</span>
  7047.          <span class="money price__compare-at--min" data-price-compare-min>
  7048.            $17.99
  7049.          </span>
  7050.          -
  7051.          <span class="visually-hidden">Original price</span>
  7052.          <span class="money price__compare-at--max" data-price-compare-max>
  7053.            $17.99
  7054.          </span>
  7055.        
  7056.      </div>
  7057.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7058.        <span class="visually-hidden">Original price</span>
  7059.        <span class="money price__compare-at--single" data-price-compare>
  7060.          
  7061.        </span>
  7062.      </div>
  7063.    
  7064.  
  7065.  
  7066.  <div class="price__current price__current--emphasize " data-price-container>
  7067.  
  7068.    
  7069.  
  7070.    
  7071.      
  7072.      
  7073.      <span class="money" data-price>
  7074.        $17.99
  7075.      </span>
  7076.    
  7077.    
  7078.  </div>
  7079.  
  7080.  
  7081.    
  7082.    <div class="price__current--hidden" data-current-price-range-hidden>
  7083.      
  7084.        <span class="money price__current--min" data-price-min>$17.99</span>
  7085.        -
  7086.        <span class="money price__current--max" data-price-max>$17.99</span>
  7087.      
  7088.    </div>
  7089.    <div class="price__current--hidden" data-current-price-hidden>
  7090.      <span class="visually-hidden">Current price</span>
  7091.      <span class="money" data-price>
  7092.        $17.99
  7093.      </span>
  7094.    </div>
  7095.  
  7096.  
  7097.  
  7098.    
  7099.    
  7100.    
  7101.    
  7102.  
  7103.    <div
  7104.      class="
  7105.        productitem__unit-price
  7106.        hidden
  7107.      "
  7108.      data-unit-price
  7109.    >
  7110.      <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>
  7111.    </div>
  7112.  
  7113.  
  7114.  
  7115. </div>
  7116.  
  7117.  
  7118.        
  7119.  
  7120.        <h2 class="productitem--title">
  7121.          <a href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable" data-product-page-link>
  7122.            4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable
  7123.          </a>
  7124.        </h2>
  7125.  
  7126.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7127.        <div class="star_container 1416490647575"></div>
  7128.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7129.  
  7130.        
  7131.          
  7132.            <span class="productitem--vendor">
  7133.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  7134.            </span>
  7135.          
  7136.        
  7137.  
  7138.        
  7139.  
  7140.        
  7141.          
  7142.            <div class="productitem__stock-level">
  7143.              <!--
  7144.  
  7145.  
  7146.  
  7147.  
  7148.  
  7149.  
  7150.  
  7151. <div class="product-stock-level-wrapper" >
  7152.  
  7153.    <span class="
  7154.  product-stock-level
  7155.  product-stock-level--continue-selling
  7156.  
  7157. ">
  7158.      
  7159.  
  7160.      <span class="product-stock-level__text">
  7161.        
  7162.        <div class="product-stock-level__badge-text">
  7163.          
  7164.  
  7165.    In stock
  7166.  
  7167.  
  7168.        </div>
  7169.      </span>
  7170.    </span>
  7171.  
  7172. </div>
  7173. -->
  7174.              
  7175.  
  7176.  
  7177.    
  7178.      <b style="color:green">In stock</b>
  7179.    
  7180.  
  7181.  
  7182.  
  7183.  
  7184.  
  7185.  
  7186.  
  7187.            </div>
  7188.          
  7189.  
  7190.          
  7191.            
  7192.          
  7193.        
  7194.  
  7195.        
  7196.          <div class="productitem--description">
  7197.            <p>4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable</p>
  7198.  
  7199.            
  7200.          </div>
  7201.        
  7202.      </div>
  7203.  
  7204.      
  7205.        
  7206.          
  7207.          
  7208.          
  7209.  
  7210.          
  7211.          
  7212.  
  7213.          
  7214.  
  7215.          
  7216.  
  7217.          <div class="productitem--actions" data-product-actions>
  7218.            <div class="productitem--listview-price">
  7219.              
  7220.  
  7221.  
  7222.  
  7223.  
  7224.  
  7225.  
  7226.  
  7227.  
  7228.  
  7229.  
  7230.  
  7231.  
  7232.  
  7233.  
  7234.  
  7235.  
  7236.  
  7237.  
  7238.  
  7239.  
  7240.  
  7241.  
  7242.  
  7243.  
  7244.  
  7245.  
  7246.  
  7247.  
  7248.  
  7249.  
  7250. <div class="price productitem__price ">
  7251.  
  7252.    <div
  7253.      class="price__compare-at visible"
  7254.      data-price-compare-container
  7255.    >
  7256.  
  7257.      
  7258.        <span class="money price__original" data-price-original></span>
  7259.      
  7260.    </div>
  7261.  
  7262.  
  7263.    
  7264.      
  7265.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7266.        
  7267.          <span class="visually-hidden">Original price</span>
  7268.          <span class="money price__compare-at--min" data-price-compare-min>
  7269.            $17.99
  7270.          </span>
  7271.          -
  7272.          <span class="visually-hidden">Original price</span>
  7273.          <span class="money price__compare-at--max" data-price-compare-max>
  7274.            $17.99
  7275.          </span>
  7276.        
  7277.      </div>
  7278.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7279.        <span class="visually-hidden">Original price</span>
  7280.        <span class="money price__compare-at--single" data-price-compare>
  7281.          
  7282.        </span>
  7283.      </div>
  7284.    
  7285.  
  7286.  
  7287.  <div class="price__current price__current--emphasize " data-price-container>
  7288.  
  7289.    
  7290.  
  7291.    
  7292.      
  7293.      
  7294.      <span class="money" data-price>
  7295.        $17.99
  7296.      </span>
  7297.    
  7298.    
  7299.  </div>
  7300.  
  7301.  
  7302.    
  7303.    <div class="price__current--hidden" data-current-price-range-hidden>
  7304.      
  7305.        <span class="money price__current--min" data-price-min>$17.99</span>
  7306.        -
  7307.        <span class="money price__current--max" data-price-max>$17.99</span>
  7308.      
  7309.    </div>
  7310.    <div class="price__current--hidden" data-current-price-hidden>
  7311.      <span class="visually-hidden">Current price</span>
  7312.      <span class="money" data-price>
  7313.        $17.99
  7314.      </span>
  7315.    </div>
  7316.  
  7317.  
  7318.  
  7319.    
  7320.    
  7321.    
  7322.    
  7323.  
  7324.    <div
  7325.      class="
  7326.        productitem__unit-price
  7327.        hidden
  7328.      "
  7329.      data-unit-price
  7330.    >
  7331.      <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>
  7332.    </div>
  7333.  
  7334.  
  7335.  
  7336. </div>
  7337.  
  7338.  
  7339.            </div>
  7340.  
  7341.            <div class="productitem--listview-badge">
  7342.              
  7343.  
  7344.  
  7345.  
  7346.  
  7347.  
  7348.  
  7349.  
  7350.  
  7351.  
  7352.  
  7353.  
  7354.  
  7355.  
  7356.  
  7357.  
  7358.  
  7359.  
  7360.  
  7361.  
  7362.  
  7363.  
  7364.  
  7365.  
  7366.  
  7367.  
  7368.  
  7369.  
  7370.            </div>
  7371.  
  7372.            
  7373.              <div
  7374.                class="
  7375.                  productitem--action
  7376.                  quickshop-button
  7377.                  
  7378.                "
  7379.              >
  7380.                <button
  7381.                  class="productitem--action-trigger button-secondary"
  7382.                  data-quickshop-full
  7383.                  
  7384.                  
  7385.                  type="button"
  7386.                >
  7387.                  Quick shop
  7388.                </button>
  7389.              </div>
  7390.            
  7391.  
  7392.            
  7393.              <div
  7394.                class="
  7395.                  productitem--action
  7396.                  atc--button
  7397.                  
  7398.                "
  7399.              >
  7400.                <button
  7401.                  class="productitem--action-trigger productitem--action-atc button-primary"
  7402.                  type="button"
  7403.                  aria-label="Add to cart"
  7404.                  
  7405.                    data-quick-buy
  7406.                  
  7407.                  data-variant-id="12583329333271"
  7408.                  
  7409.                >
  7410.                  <span class="atc-button--text">
  7411.                    Add to cart
  7412.                  </span>
  7413.                  <span class="atc-button--icon"><svg
  7414.  aria-hidden="true"
  7415.  focusable="false"
  7416.  role="presentation"
  7417.  width="26"
  7418.  height="26"
  7419.  viewBox="0 0 26 26"
  7420.  xmlns="http://www.w3.org/2000/svg"
  7421. >
  7422.  <g fill-rule="nonzero" fill="currentColor">
  7423.    <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"/>
  7424.  </g>
  7425. </svg></span>
  7426.                </button>
  7427.              </div>
  7428.            
  7429.          </div>
  7430.        
  7431.      
  7432.    </div>
  7433.  </div>
  7434.  
  7435.  
  7436.    <script type="application/json" data-quick-buy-settings>
  7437.      {
  7438.        "cart_redirection": true,
  7439.        "money_format": "${{amount}}"
  7440.      }
  7441.    </script>
  7442.  
  7443. </li>
  7444.    
  7445.      
  7446.  
  7447.  
  7448.  
  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.  
  7478.    
  7479.  
  7480.  
  7481.  
  7482. <li
  7483.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  7484.  data-product-item
  7485.  data-product-quickshop-url="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7486.  
  7487. >
  7488.  <div class="productitem" data-product-item-content>
  7489.    
  7490.    
  7491.    
  7492.    
  7493.  
  7494.    
  7495.  
  7496.    
  7497.  
  7498.    <div class="productitem__container">
  7499.      
  7500.  
  7501.      <div class="productitem__image-container">
  7502.        <a target="_blank"
  7503.          class="productitem--image-link"
  7504.          href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7505.          aria-label="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7506.          tabindex="-1"
  7507.          data-product-page-link
  7508.        >
  7509.          <figure
  7510.            class="productitem--image"
  7511.            data-product-item-image
  7512.            
  7513.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7514.            
  7515.          >
  7516.            
  7517.              
  7518.              
  7519.  
  7520.  
  7521.    <noscript data-rimg-noscript>
  7522.      <img loading="lazy"
  7523.        
  7524.          src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1762646426"
  7525.        
  7526.  
  7527.        alt="MacBook Pro"
  7528.        data-rimg="noscript"
  7529.        srcset="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1762646426 1x, //laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_998x998.jpg?v=1762646426 1.95x"
  7530.        class="productitem--image-primary"
  7531.        
  7532.        
  7533.      >
  7534.    </noscript>
  7535.  
  7536.  
  7537.  <img loading="lazy"
  7538.    
  7539.      src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1762646426"
  7540.    
  7541.    alt="MacBook Pro"
  7542.  
  7543.    
  7544.      data-rimg="lazy"
  7545.      data-rimg-scale="1"
  7546.      data-rimg-template="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_{size}.jpg?v=1762646426"
  7547.      data-rimg-max="1000x1000"
  7548.      data-rimg-crop="false"
  7549.      
  7550.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7551.    
  7552.  
  7553.    class="productitem--image-primary"
  7554.    
  7555.    
  7556.  >
  7557.  
  7558.  
  7559.  
  7560.  <div data-rimg-canvas></div>
  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.  
  7590.  
  7591.  
  7592.  
  7593.          </figure>
  7594.        </a>
  7595.      </div><div class="productitem--info">
  7596.        
  7597.          
  7598.  
  7599.        
  7600.  
  7601.        
  7602.          
  7603.  
  7604.  
  7605.  
  7606.  
  7607.  
  7608.  
  7609.  
  7610.  
  7611.  
  7612.  
  7613.  
  7614.  
  7615.  
  7616.  
  7617.  
  7618.  
  7619.  
  7620.  
  7621.  
  7622.  
  7623.  
  7624.  
  7625.  
  7626.  
  7627.  
  7628.  
  7629.  
  7630.  
  7631.  
  7632.  
  7633. <div class="price productitem__price ">
  7634.  
  7635.    <div
  7636.      class="price__compare-at visible"
  7637.      data-price-compare-container
  7638.    >
  7639.  
  7640.      
  7641.        <span class="money price__original" data-price-original></span>
  7642.      
  7643.    </div>
  7644.  
  7645.  
  7646.    
  7647.      
  7648.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7649.        
  7650.          <span class="visually-hidden">Original price</span>
  7651.          <span class="money price__compare-at--min" data-price-compare-min>
  7652.            $39.99
  7653.          </span>
  7654.          -
  7655.          <span class="visually-hidden">Original price</span>
  7656.          <span class="money price__compare-at--max" data-price-compare-max>
  7657.            $39.99
  7658.          </span>
  7659.        
  7660.      </div>
  7661.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7662.        <span class="visually-hidden">Original price</span>
  7663.        <span class="money price__compare-at--single" data-price-compare>
  7664.          
  7665.        </span>
  7666.      </div>
  7667.    
  7668.  
  7669.  
  7670.  <div class="price__current price__current--emphasize " data-price-container>
  7671.  
  7672.    
  7673.  
  7674.    
  7675.      
  7676.      
  7677.      <span class="money" data-price>
  7678.        $39.99
  7679.      </span>
  7680.    
  7681.    
  7682.  </div>
  7683.  
  7684.  
  7685.    
  7686.    <div class="price__current--hidden" data-current-price-range-hidden>
  7687.      
  7688.        <span class="money price__current--min" data-price-min>$39.99</span>
  7689.        -
  7690.        <span class="money price__current--max" data-price-max>$39.99</span>
  7691.      
  7692.    </div>
  7693.    <div class="price__current--hidden" data-current-price-hidden>
  7694.      <span class="visually-hidden">Current price</span>
  7695.      <span class="money" data-price>
  7696.        $39.99
  7697.      </span>
  7698.    </div>
  7699.  
  7700.  
  7701.  
  7702.    
  7703.    
  7704.    
  7705.    
  7706.  
  7707.    <div
  7708.      class="
  7709.        productitem__unit-price
  7710.        hidden
  7711.      "
  7712.      data-unit-price
  7713.    >
  7714.      <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>
  7715.    </div>
  7716.  
  7717.  
  7718.  
  7719. </div>
  7720.  
  7721.  
  7722.        
  7723.  
  7724.        <h2 class="productitem--title">
  7725.          <a href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011" data-product-page-link>
  7726.            60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011
  7727.          </a>
  7728.        </h2>
  7729.  
  7730.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7731.        <div class="star_container 6872720015447"></div>
  7732.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7733.  
  7734.        
  7735.          
  7736.            <span class="productitem--vendor">
  7737.              <a href="/collections/vendors?q=Apple" title="Apple">Apple</a>
  7738.            </span>
  7739.          
  7740.        
  7741.  
  7742.        
  7743.  
  7744.        
  7745.          
  7746.            <div class="productitem__stock-level">
  7747.              <!--
  7748.  
  7749.  
  7750.  
  7751.  
  7752.  
  7753.  
  7754.  
  7755. <div class="product-stock-level-wrapper" >
  7756.  
  7757.    <span class="
  7758.  product-stock-level
  7759.  product-stock-level--continue-selling
  7760.  
  7761. ">
  7762.      
  7763.  
  7764.      <span class="product-stock-level__text">
  7765.        
  7766.        <div class="product-stock-level__badge-text">
  7767.          
  7768.  
  7769.    In stock
  7770.  
  7771.  
  7772.        </div>
  7773.      </span>
  7774.    </span>
  7775.  
  7776. </div>
  7777. -->
  7778.              
  7779.  
  7780.  
  7781.    
  7782.      <b style="color:green">In stock</b>
  7783.    
  7784.  
  7785.  
  7786.  
  7787.  
  7788.  
  7789.  
  7790.  
  7791.            </div>
  7792.          
  7793.  
  7794.          
  7795.            
  7796.          
  7797.        
  7798.  
  7799.        
  7800.          <div class="productitem--description">
  7801.            <p>Plugs directly into AC outlet.
  7802. 60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011 
  7803. Input: 100-240V ~ 50-60Hz
  7804. Output: 1...</p>
  7805.  
  7806.            
  7807.              <a
  7808.                href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7809.                class="productitem--link"
  7810.                data-product-page-link
  7811.              >
  7812.                View full details
  7813.              </a>
  7814.            
  7815.          </div>
  7816.        
  7817.      </div>
  7818.  
  7819.      
  7820.        
  7821.          
  7822.          
  7823.          
  7824.  
  7825.          
  7826.          
  7827.  
  7828.          
  7829.  
  7830.          
  7831.  
  7832.          <div class="productitem--actions" data-product-actions>
  7833.            <div class="productitem--listview-price">
  7834.              
  7835.  
  7836.  
  7837.  
  7838.  
  7839.  
  7840.  
  7841.  
  7842.  
  7843.  
  7844.  
  7845.  
  7846.  
  7847.  
  7848.  
  7849.  
  7850.  
  7851.  
  7852.  
  7853.  
  7854.  
  7855.  
  7856.  
  7857.  
  7858.  
  7859.  
  7860.  
  7861.  
  7862.  
  7863.  
  7864.  
  7865. <div class="price productitem__price ">
  7866.  
  7867.    <div
  7868.      class="price__compare-at visible"
  7869.      data-price-compare-container
  7870.    >
  7871.  
  7872.      
  7873.        <span class="money price__original" data-price-original></span>
  7874.      
  7875.    </div>
  7876.  
  7877.  
  7878.    
  7879.      
  7880.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7881.        
  7882.          <span class="visually-hidden">Original price</span>
  7883.          <span class="money price__compare-at--min" data-price-compare-min>
  7884.            $39.99
  7885.          </span>
  7886.          -
  7887.          <span class="visually-hidden">Original price</span>
  7888.          <span class="money price__compare-at--max" data-price-compare-max>
  7889.            $39.99
  7890.          </span>
  7891.        
  7892.      </div>
  7893.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7894.        <span class="visually-hidden">Original price</span>
  7895.        <span class="money price__compare-at--single" data-price-compare>
  7896.          
  7897.        </span>
  7898.      </div>
  7899.    
  7900.  
  7901.  
  7902.  <div class="price__current price__current--emphasize " data-price-container>
  7903.  
  7904.    
  7905.  
  7906.    
  7907.      
  7908.      
  7909.      <span class="money" data-price>
  7910.        $39.99
  7911.      </span>
  7912.    
  7913.    
  7914.  </div>
  7915.  
  7916.  
  7917.    
  7918.    <div class="price__current--hidden" data-current-price-range-hidden>
  7919.      
  7920.        <span class="money price__current--min" data-price-min>$39.99</span>
  7921.        -
  7922.        <span class="money price__current--max" data-price-max>$39.99</span>
  7923.      
  7924.    </div>
  7925.    <div class="price__current--hidden" data-current-price-hidden>
  7926.      <span class="visually-hidden">Current price</span>
  7927.      <span class="money" data-price>
  7928.        $39.99
  7929.      </span>
  7930.    </div>
  7931.  
  7932.  
  7933.  
  7934.    
  7935.    
  7936.    
  7937.    
  7938.  
  7939.    <div
  7940.      class="
  7941.        productitem__unit-price
  7942.        hidden
  7943.      "
  7944.      data-unit-price
  7945.    >
  7946.      <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>
  7947.    </div>
  7948.  
  7949.  
  7950.  
  7951. </div>
  7952.  
  7953.  
  7954.            </div>
  7955.  
  7956.            <div class="productitem--listview-badge">
  7957.              
  7958.  
  7959.  
  7960.  
  7961.  
  7962.  
  7963.  
  7964.  
  7965.  
  7966.  
  7967.  
  7968.  
  7969.  
  7970.  
  7971.  
  7972.  
  7973.  
  7974.  
  7975.  
  7976.  
  7977.  
  7978.  
  7979.  
  7980.  
  7981.  
  7982.  
  7983.  
  7984.  
  7985.            </div>
  7986.  
  7987.            
  7988.              <div
  7989.                class="
  7990.                  productitem--action
  7991.                  quickshop-button
  7992.                  
  7993.                "
  7994.              >
  7995.                <button
  7996.                  class="productitem--action-trigger button-secondary"
  7997.                  data-quickshop-full
  7998.                  
  7999.                  
  8000.                  type="button"
  8001.                >
  8002.                  Quick shop
  8003.                </button>
  8004.              </div>
  8005.            
  8006.  
  8007.            
  8008.              <div
  8009.                class="
  8010.                  productitem--action
  8011.                  atc--button
  8012.                  
  8013.                "
  8014.              >
  8015.                <button
  8016.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8017.                  type="button"
  8018.                  aria-label="Add to cart"
  8019.                  
  8020.                    data-quick-buy
  8021.                  
  8022.                  data-variant-id="40156967370839"
  8023.                  
  8024.                >
  8025.                  <span class="atc-button--text">
  8026.                    Add to cart
  8027.                  </span>
  8028.                  <span class="atc-button--icon"><svg
  8029.  aria-hidden="true"
  8030.  focusable="false"
  8031.  role="presentation"
  8032.  width="26"
  8033.  height="26"
  8034.  viewBox="0 0 26 26"
  8035.  xmlns="http://www.w3.org/2000/svg"
  8036. >
  8037.  <g fill-rule="nonzero" fill="currentColor">
  8038.    <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"/>
  8039.  </g>
  8040. </svg></span>
  8041.                </button>
  8042.              </div>
  8043.            
  8044.          </div>
  8045.        
  8046.      
  8047.    </div>
  8048.  </div>
  8049.  
  8050.  
  8051.    <script type="application/json" data-quick-buy-settings>
  8052.      {
  8053.        "cart_redirection": true,
  8054.        "money_format": "${{amount}}"
  8055.      }
  8056.    </script>
  8057.  
  8058. </li>
  8059.    
  8060.      
  8061.  
  8062.  
  8063.  
  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.  
  8093.    
  8094.  
  8095.  
  8096.  
  8097. <li
  8098.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8099.  data-product-item
  8100.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8101.  
  8102. >
  8103.  <div class="productitem" data-product-item-content>
  8104.    
  8105.    
  8106.    
  8107.    
  8108.  
  8109.    
  8110.  
  8111.    
  8112.  
  8113.    <div class="productitem__container">
  8114.      
  8115.  
  8116.      <div class="productitem__image-container">
  8117.        <a target="_blank"
  8118.          class="productitem--image-link"
  8119.          href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8120.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8121.          tabindex="-1"
  8122.          data-product-page-link
  8123.        >
  8124.          <figure
  8125.            class="productitem--image"
  8126.            data-product-item-image
  8127.            
  8128.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8129.            
  8130.          >
  8131.            
  8132.              
  8133.              
  8134.  
  8135.  
  8136.    <noscript data-rimg-noscript>
  8137.      <img loading="lazy"
  8138.        
  8139.          src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1759501418"
  8140.        
  8141.  
  8142.        alt="15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8 - LaptopParts.ca"
  8143.        data-rimg="noscript"
  8144.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1759501418 1x"
  8145.        class="productitem--image-primary"
  8146.        
  8147.        
  8148.      >
  8149.    </noscript>
  8150.  
  8151.  
  8152.  <img loading="lazy"
  8153.    
  8154.      src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1759501418"
  8155.    
  8156.    alt="15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8 - LaptopParts.ca"
  8157.  
  8158.    
  8159.      data-rimg="lazy"
  8160.      data-rimg-scale="1"
  8161.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_{size}.jpg?v=1759501418"
  8162.      data-rimg-max="500x500"
  8163.      data-rimg-crop="false"
  8164.      
  8165.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8166.    
  8167.  
  8168.    class="productitem--image-primary"
  8169.    
  8170.    
  8171.  >
  8172.  
  8173.  
  8174.  
  8175.  <div data-rimg-canvas></div>
  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.  
  8205.  
  8206.  
  8207.  
  8208.          </figure>
  8209.        </a>
  8210.      </div><div class="productitem--info">
  8211.        
  8212.          
  8213.  
  8214.        
  8215.  
  8216.        
  8217.          
  8218.  
  8219.  
  8220.  
  8221.  
  8222.  
  8223.  
  8224.  
  8225.  
  8226.  
  8227.  
  8228.  
  8229.  
  8230.  
  8231.  
  8232.  
  8233.  
  8234.  
  8235.  
  8236.  
  8237.  
  8238.  
  8239.  
  8240.  
  8241.  
  8242.  
  8243.  
  8244.  
  8245.  
  8246.  
  8247.  
  8248. <div class="price productitem__price ">
  8249.  
  8250.    <div
  8251.      class="price__compare-at visible"
  8252.      data-price-compare-container
  8253.    >
  8254.  
  8255.      
  8256.        <span class="money price__original" data-price-original></span>
  8257.      
  8258.    </div>
  8259.  
  8260.  
  8261.    
  8262.      
  8263.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8264.        
  8265.          <span class="visually-hidden">Original price</span>
  8266.          <span class="money price__compare-at--min" data-price-compare-min>
  8267.            $288.97
  8268.          </span>
  8269.          -
  8270.          <span class="visually-hidden">Original price</span>
  8271.          <span class="money price__compare-at--max" data-price-compare-max>
  8272.            $288.97
  8273.          </span>
  8274.        
  8275.      </div>
  8276.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8277.        <span class="visually-hidden">Original price</span>
  8278.        <span class="money price__compare-at--single" data-price-compare>
  8279.          
  8280.        </span>
  8281.      </div>
  8282.    
  8283.  
  8284.  
  8285.  <div class="price__current price__current--emphasize " data-price-container>
  8286.  
  8287.    
  8288.  
  8289.    
  8290.      
  8291.      
  8292.      <span class="money" data-price>
  8293.        $288.97
  8294.      </span>
  8295.    
  8296.    
  8297.  </div>
  8298.  
  8299.  
  8300.    
  8301.    <div class="price__current--hidden" data-current-price-range-hidden>
  8302.      
  8303.        <span class="money price__current--min" data-price-min>$288.97</span>
  8304.        -
  8305.        <span class="money price__current--max" data-price-max>$288.97</span>
  8306.      
  8307.    </div>
  8308.    <div class="price__current--hidden" data-current-price-hidden>
  8309.      <span class="visually-hidden">Current price</span>
  8310.      <span class="money" data-price>
  8311.        $288.97
  8312.      </span>
  8313.    </div>
  8314.  
  8315.  
  8316.  
  8317.    
  8318.    
  8319.    
  8320.    
  8321.  
  8322.    <div
  8323.      class="
  8324.        productitem__unit-price
  8325.        hidden
  8326.      "
  8327.      data-unit-price
  8328.    >
  8329.      <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>
  8330.    </div>
  8331.  
  8332.  
  8333.  
  8334. </div>
  8335.  
  8336.  
  8337.        
  8338.  
  8339.        <h2 class="productitem--title">
  8340.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8" data-product-page-link>
  8341.            15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8
  8342.          </a>
  8343.        </h2>
  8344.  
  8345.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8346.        <div class="star_container 3933207593047"></div>
  8347.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8348.  
  8349.        
  8350.          
  8351.            <span class="productitem--vendor">
  8352.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  8353.            </span>
  8354.          
  8355.        
  8356.  
  8357.        
  8358.  
  8359.        
  8360.          
  8361.            <div class="productitem__stock-level">
  8362.              <!--
  8363.  
  8364.  
  8365.  
  8366.  
  8367.  
  8368.  
  8369.  
  8370. <div class="product-stock-level-wrapper" >
  8371.  
  8372.    <span class="
  8373.  product-stock-level
  8374.  product-stock-level--continue-selling
  8375.  
  8376. ">
  8377.      
  8378.  
  8379.      <span class="product-stock-level__text">
  8380.        
  8381.        <div class="product-stock-level__badge-text">
  8382.          
  8383.  
  8384.    In stock
  8385.  
  8386.  
  8387.        </div>
  8388.      </span>
  8389.    </span>
  8390.  
  8391. </div>
  8392. -->
  8393.              
  8394.  
  8395.  
  8396.    
  8397.      <b style="color:green">In stock</b>
  8398.    
  8399.  
  8400.  
  8401.  
  8402.  
  8403.  
  8404.  
  8405.  
  8406.            </div>
  8407.          
  8408.  
  8409.          
  8410.            
  8411.          
  8412.        
  8413.  
  8414.        
  8415.          <div class="productitem--description">
  8416.            <p>
  8417. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  8418.  
  8419. **This screen will only work if your laptop is one of the models below that ca...</p>
  8420.  
  8421.            
  8422.              <a
  8423.                href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8424.                class="productitem--link"
  8425.                data-product-page-link
  8426.              >
  8427.                View full details
  8428.              </a>
  8429.            
  8430.          </div>
  8431.        
  8432.      </div>
  8433.  
  8434.      
  8435.        
  8436.          
  8437.          
  8438.          
  8439.  
  8440.          
  8441.          
  8442.  
  8443.          
  8444.  
  8445.          
  8446.  
  8447.          <div class="productitem--actions" data-product-actions>
  8448.            <div class="productitem--listview-price">
  8449.              
  8450.  
  8451.  
  8452.  
  8453.  
  8454.  
  8455.  
  8456.  
  8457.  
  8458.  
  8459.  
  8460.  
  8461.  
  8462.  
  8463.  
  8464.  
  8465.  
  8466.  
  8467.  
  8468.  
  8469.  
  8470.  
  8471.  
  8472.  
  8473.  
  8474.  
  8475.  
  8476.  
  8477.  
  8478.  
  8479.  
  8480. <div class="price productitem__price ">
  8481.  
  8482.    <div
  8483.      class="price__compare-at visible"
  8484.      data-price-compare-container
  8485.    >
  8486.  
  8487.      
  8488.        <span class="money price__original" data-price-original></span>
  8489.      
  8490.    </div>
  8491.  
  8492.  
  8493.    
  8494.      
  8495.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8496.        
  8497.          <span class="visually-hidden">Original price</span>
  8498.          <span class="money price__compare-at--min" data-price-compare-min>
  8499.            $288.97
  8500.          </span>
  8501.          -
  8502.          <span class="visually-hidden">Original price</span>
  8503.          <span class="money price__compare-at--max" data-price-compare-max>
  8504.            $288.97
  8505.          </span>
  8506.        
  8507.      </div>
  8508.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8509.        <span class="visually-hidden">Original price</span>
  8510.        <span class="money price__compare-at--single" data-price-compare>
  8511.          
  8512.        </span>
  8513.      </div>
  8514.    
  8515.  
  8516.  
  8517.  <div class="price__current price__current--emphasize " data-price-container>
  8518.  
  8519.    
  8520.  
  8521.    
  8522.      
  8523.      
  8524.      <span class="money" data-price>
  8525.        $288.97
  8526.      </span>
  8527.    
  8528.    
  8529.  </div>
  8530.  
  8531.  
  8532.    
  8533.    <div class="price__current--hidden" data-current-price-range-hidden>
  8534.      
  8535.        <span class="money price__current--min" data-price-min>$288.97</span>
  8536.        -
  8537.        <span class="money price__current--max" data-price-max>$288.97</span>
  8538.      
  8539.    </div>
  8540.    <div class="price__current--hidden" data-current-price-hidden>
  8541.      <span class="visually-hidden">Current price</span>
  8542.      <span class="money" data-price>
  8543.        $288.97
  8544.      </span>
  8545.    </div>
  8546.  
  8547.  
  8548.  
  8549.    
  8550.    
  8551.    
  8552.    
  8553.  
  8554.    <div
  8555.      class="
  8556.        productitem__unit-price
  8557.        hidden
  8558.      "
  8559.      data-unit-price
  8560.    >
  8561.      <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>
  8562.    </div>
  8563.  
  8564.  
  8565.  
  8566. </div>
  8567.  
  8568.  
  8569.            </div>
  8570.  
  8571.            <div class="productitem--listview-badge">
  8572.              
  8573.  
  8574.  
  8575.  
  8576.  
  8577.  
  8578.  
  8579.  
  8580.  
  8581.  
  8582.  
  8583.  
  8584.  
  8585.  
  8586.  
  8587.  
  8588.  
  8589.  
  8590.  
  8591.  
  8592.  
  8593.  
  8594.  
  8595.  
  8596.  
  8597.  
  8598.  
  8599.  
  8600.            </div>
  8601.  
  8602.            
  8603.              <div
  8604.                class="
  8605.                  productitem--action
  8606.                  quickshop-button
  8607.                  
  8608.                "
  8609.              >
  8610.                <button
  8611.                  class="productitem--action-trigger button-secondary"
  8612.                  data-quickshop-full
  8613.                  
  8614.                  
  8615.                  type="button"
  8616.                >
  8617.                  Quick shop
  8618.                </button>
  8619.              </div>
  8620.            
  8621.  
  8622.            
  8623.              <div
  8624.                class="
  8625.                  productitem--action
  8626.                  atc--button
  8627.                  
  8628.                "
  8629.              >
  8630.                <button
  8631.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8632.                  type="button"
  8633.                  aria-label="Add to cart"
  8634.                  
  8635.                    data-quick-buy
  8636.                  
  8637.                  data-variant-id="29531492974679"
  8638.                  
  8639.                >
  8640.                  <span class="atc-button--text">
  8641.                    Add to cart
  8642.                  </span>
  8643.                  <span class="atc-button--icon"><svg
  8644.  aria-hidden="true"
  8645.  focusable="false"
  8646.  role="presentation"
  8647.  width="26"
  8648.  height="26"
  8649.  viewBox="0 0 26 26"
  8650.  xmlns="http://www.w3.org/2000/svg"
  8651. >
  8652.  <g fill-rule="nonzero" fill="currentColor">
  8653.    <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"/>
  8654.  </g>
  8655. </svg></span>
  8656.                </button>
  8657.              </div>
  8658.            
  8659.          </div>
  8660.        
  8661.      
  8662.    </div>
  8663.  </div>
  8664.  
  8665.  
  8666.    <script type="application/json" data-quick-buy-settings>
  8667.      {
  8668.        "cart_redirection": true,
  8669.        "money_format": "${{amount}}"
  8670.      }
  8671.    </script>
  8672.  
  8673. </li>
  8674.    
  8675.      
  8676.  
  8677.  
  8678.  
  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.  
  8708.    
  8709.  
  8710.  
  8711.  
  8712. <li
  8713.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8714.  data-product-item
  8715.  data-product-quickshop-url="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8716.  
  8717. >
  8718.  <div class="productitem" data-product-item-content>
  8719.    
  8720.    
  8721.    
  8722.    
  8723.  
  8724.    
  8725.  
  8726.    
  8727.  
  8728.    <div class="productitem__container">
  8729.      
  8730.  
  8731.      <div class="productitem__image-container">
  8732.        <a target="_blank"
  8733.          class="productitem--image-link"
  8734.          href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8735.          aria-label="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8736.          tabindex="-1"
  8737.          data-product-page-link
  8738.        >
  8739.          <figure
  8740.            class="productitem--image"
  8741.            data-product-item-image
  8742.            
  8743.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8744.            
  8745.          >
  8746.            
  8747.              
  8748.              
  8749.  
  8750.  
  8751.    <noscript data-rimg-noscript>
  8752.      <img loading="lazy"
  8753.        
  8754.          src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1759505963"
  8755.        
  8756.  
  8757.        alt="Updated alt text"
  8758.        data-rimg="noscript"
  8759.        srcset="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1759505963 1x"
  8760.        class="productitem--image-primary"
  8761.        
  8762.        
  8763.      >
  8764.    </noscript>
  8765.  
  8766.  
  8767.  <img loading="lazy"
  8768.    
  8769.      src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1759505963"
  8770.    
  8771.    alt="Updated alt text"
  8772.  
  8773.    
  8774.      data-rimg="lazy"
  8775.      data-rimg-scale="1"
  8776.      data-rimg-template="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_{size}.jpg?v=1759505963"
  8777.      data-rimg-max="500x500"
  8778.      data-rimg-crop="false"
  8779.      
  8780.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8781.    
  8782.  
  8783.    class="productitem--image-primary"
  8784.    
  8785.    
  8786.  >
  8787.  
  8788.  
  8789.  
  8790.  <div data-rimg-canvas></div>
  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.  
  8820.  
  8821.  
  8822.  
  8823.          </figure>
  8824.        </a>
  8825.      </div><div class="productitem--info">
  8826.        
  8827.          
  8828.  
  8829.        
  8830.  
  8831.        
  8832.          
  8833.  
  8834.  
  8835.  
  8836.  
  8837.  
  8838.  
  8839.  
  8840.  
  8841.  
  8842.  
  8843.  
  8844.  
  8845.  
  8846.  
  8847.  
  8848.  
  8849.  
  8850.  
  8851.  
  8852.  
  8853.  
  8854.  
  8855.  
  8856.  
  8857.  
  8858.  
  8859.  
  8860.  
  8861.  
  8862.  
  8863. <div class="price productitem__price ">
  8864.  
  8865.    <div
  8866.      class="price__compare-at visible"
  8867.      data-price-compare-container
  8868.    >
  8869.  
  8870.      
  8871.        <span class="money price__original" data-price-original></span>
  8872.      
  8873.    </div>
  8874.  
  8875.  
  8876.    
  8877.      
  8878.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8879.        
  8880.          <span class="visually-hidden">Original price</span>
  8881.          <span class="money price__compare-at--min" data-price-compare-min>
  8882.            $49.99
  8883.          </span>
  8884.          -
  8885.          <span class="visually-hidden">Original price</span>
  8886.          <span class="money price__compare-at--max" data-price-compare-max>
  8887.            $49.99
  8888.          </span>
  8889.        
  8890.      </div>
  8891.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8892.        <span class="visually-hidden">Original price</span>
  8893.        <span class="money price__compare-at--single" data-price-compare>
  8894.          
  8895.        </span>
  8896.      </div>
  8897.    
  8898.  
  8899.  
  8900.  <div class="price__current price__current--emphasize " data-price-container>
  8901.  
  8902.    
  8903.  
  8904.    
  8905.      
  8906.      
  8907.      <span class="money" data-price>
  8908.        $49.99
  8909.      </span>
  8910.    
  8911.    
  8912.  </div>
  8913.  
  8914.  
  8915.    
  8916.    <div class="price__current--hidden" data-current-price-range-hidden>
  8917.      
  8918.        <span class="money price__current--min" data-price-min>$49.99</span>
  8919.        -
  8920.        <span class="money price__current--max" data-price-max>$49.99</span>
  8921.      
  8922.    </div>
  8923.    <div class="price__current--hidden" data-current-price-hidden>
  8924.      <span class="visually-hidden">Current price</span>
  8925.      <span class="money" data-price>
  8926.        $49.99
  8927.      </span>
  8928.    </div>
  8929.  
  8930.  
  8931.  
  8932.    
  8933.    
  8934.    
  8935.    
  8936.  
  8937.    <div
  8938.      class="
  8939.        productitem__unit-price
  8940.        hidden
  8941.      "
  8942.      data-unit-price
  8943.    >
  8944.      <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>
  8945.    </div>
  8946.  
  8947.  
  8948.  
  8949. </div>
  8950.  
  8951.  
  8952.        
  8953.  
  8954.        <h2 class="productitem--title">
  8955.          <a href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23" data-product-page-link>
  8956.            19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  8957.          </a>
  8958.        </h2>
  8959.  
  8960.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8961.        <div class="star_container 6872273420375"></div>
  8962.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8963.  
  8964.        
  8965.          
  8966.            <span class="productitem--vendor">
  8967.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  8968.            </span>
  8969.          
  8970.        
  8971.  
  8972.        
  8973.  
  8974.        
  8975.          
  8976.            <div class="productitem__stock-level">
  8977.              <!--
  8978.  
  8979.  
  8980.  
  8981.  
  8982.  
  8983.  
  8984.  
  8985. <div class="product-stock-level-wrapper" >
  8986.  
  8987.    <span class="
  8988.  product-stock-level
  8989.  product-stock-level--continue-selling
  8990.  
  8991. ">
  8992.      
  8993.  
  8994.      <span class="product-stock-level__text">
  8995.        
  8996.        <div class="product-stock-level__badge-text">
  8997.          
  8998.  
  8999.    In stock
  9000.  
  9001.  
  9002.        </div>
  9003.      </span>
  9004.    </span>
  9005.  
  9006. </div>
  9007. -->
  9008.              
  9009.  
  9010.  
  9011.    
  9012.      <b style="color:green">In stock</b>
  9013.    
  9014.  
  9015.  
  9016.  
  9017.  
  9018.  
  9019.  
  9020.  
  9021.            </div>
  9022.          
  9023.  
  9024.          
  9025.            
  9026.          
  9027.        
  9028.  
  9029.        
  9030.          <div class="productitem--description">
  9031.            <p>19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9032. Includes power cord.
  9033.  
  9034. Input: 100-240V ~ 50-60Hz
  9035. Output: 19V –...</p>
  9036.  
  9037.            
  9038.              <a
  9039.                href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9040.                class="productitem--link"
  9041.                data-product-page-link
  9042.              >
  9043.                View full details
  9044.              </a>
  9045.            
  9046.          </div>
  9047.        
  9048.      </div>
  9049.  
  9050.      
  9051.        
  9052.          
  9053.          
  9054.          
  9055.  
  9056.          
  9057.          
  9058.  
  9059.          
  9060.  
  9061.          
  9062.  
  9063.          <div class="productitem--actions" data-product-actions>
  9064.            <div class="productitem--listview-price">
  9065.              
  9066.  
  9067.  
  9068.  
  9069.  
  9070.  
  9071.  
  9072.  
  9073.  
  9074.  
  9075.  
  9076.  
  9077.  
  9078.  
  9079.  
  9080.  
  9081.  
  9082.  
  9083.  
  9084.  
  9085.  
  9086.  
  9087.  
  9088.  
  9089.  
  9090.  
  9091.  
  9092.  
  9093.  
  9094.  
  9095.  
  9096. <div class="price productitem__price ">
  9097.  
  9098.    <div
  9099.      class="price__compare-at visible"
  9100.      data-price-compare-container
  9101.    >
  9102.  
  9103.      
  9104.        <span class="money price__original" data-price-original></span>
  9105.      
  9106.    </div>
  9107.  
  9108.  
  9109.    
  9110.      
  9111.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9112.        
  9113.          <span class="visually-hidden">Original price</span>
  9114.          <span class="money price__compare-at--min" data-price-compare-min>
  9115.            $49.99
  9116.          </span>
  9117.          -
  9118.          <span class="visually-hidden">Original price</span>
  9119.          <span class="money price__compare-at--max" data-price-compare-max>
  9120.            $49.99
  9121.          </span>
  9122.        
  9123.      </div>
  9124.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9125.        <span class="visually-hidden">Original price</span>
  9126.        <span class="money price__compare-at--single" data-price-compare>
  9127.          
  9128.        </span>
  9129.      </div>
  9130.    
  9131.  
  9132.  
  9133.  <div class="price__current price__current--emphasize " data-price-container>
  9134.  
  9135.    
  9136.  
  9137.    
  9138.      
  9139.      
  9140.      <span class="money" data-price>
  9141.        $49.99
  9142.      </span>
  9143.    
  9144.    
  9145.  </div>
  9146.  
  9147.  
  9148.    
  9149.    <div class="price__current--hidden" data-current-price-range-hidden>
  9150.      
  9151.        <span class="money price__current--min" data-price-min>$49.99</span>
  9152.        -
  9153.        <span class="money price__current--max" data-price-max>$49.99</span>
  9154.      
  9155.    </div>
  9156.    <div class="price__current--hidden" data-current-price-hidden>
  9157.      <span class="visually-hidden">Current price</span>
  9158.      <span class="money" data-price>
  9159.        $49.99
  9160.      </span>
  9161.    </div>
  9162.  
  9163.  
  9164.  
  9165.    
  9166.    
  9167.    
  9168.    
  9169.  
  9170.    <div
  9171.      class="
  9172.        productitem__unit-price
  9173.        hidden
  9174.      "
  9175.      data-unit-price
  9176.    >
  9177.      <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>
  9178.    </div>
  9179.  
  9180.  
  9181.  
  9182. </div>
  9183.  
  9184.  
  9185.            </div>
  9186.  
  9187.            <div class="productitem--listview-badge">
  9188.              
  9189.  
  9190.  
  9191.  
  9192.  
  9193.  
  9194.  
  9195.  
  9196.  
  9197.  
  9198.  
  9199.  
  9200.  
  9201.  
  9202.  
  9203.  
  9204.  
  9205.  
  9206.  
  9207.  
  9208.  
  9209.  
  9210.  
  9211.  
  9212.  
  9213.  
  9214.  
  9215.  
  9216.            </div>
  9217.  
  9218.            
  9219.              <div
  9220.                class="
  9221.                  productitem--action
  9222.                  quickshop-button
  9223.                  
  9224.                "
  9225.              >
  9226.                <button
  9227.                  class="productitem--action-trigger button-secondary"
  9228.                  data-quickshop-full
  9229.                  
  9230.                  
  9231.                  type="button"
  9232.                >
  9233.                  Quick shop
  9234.                </button>
  9235.              </div>
  9236.            
  9237.  
  9238.            
  9239.              <div
  9240.                class="
  9241.                  productitem--action
  9242.                  atc--button
  9243.                  
  9244.                "
  9245.              >
  9246.                <button
  9247.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9248.                  type="button"
  9249.                  aria-label="Add to cart"
  9250.                  
  9251.                    data-quick-buy
  9252.                  
  9253.                  data-variant-id="40155858534487"
  9254.                  
  9255.                >
  9256.                  <span class="atc-button--text">
  9257.                    Add to cart
  9258.                  </span>
  9259.                  <span class="atc-button--icon"><svg
  9260.  aria-hidden="true"
  9261.  focusable="false"
  9262.  role="presentation"
  9263.  width="26"
  9264.  height="26"
  9265.  viewBox="0 0 26 26"
  9266.  xmlns="http://www.w3.org/2000/svg"
  9267. >
  9268.  <g fill-rule="nonzero" fill="currentColor">
  9269.    <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"/>
  9270.  </g>
  9271. </svg></span>
  9272.                </button>
  9273.              </div>
  9274.            
  9275.          </div>
  9276.        
  9277.      
  9278.    </div>
  9279.  </div>
  9280.  
  9281.  
  9282.    <script type="application/json" data-quick-buy-settings>
  9283.      {
  9284.        "cart_redirection": true,
  9285.        "money_format": "${{amount}}"
  9286.      }
  9287.    </script>
  9288.  
  9289. </li>
  9290.    
  9291.      
  9292.  
  9293.  
  9294.  
  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.  
  9324.    
  9325.  
  9326.  
  9327.  
  9328. <li
  9329.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9330.  data-product-item
  9331.  data-product-quickshop-url="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9332.  
  9333. >
  9334.  <div class="productitem" data-product-item-content>
  9335.    
  9336.    
  9337.    
  9338.    
  9339.  
  9340.    
  9341.  
  9342.    
  9343.  
  9344.    <div class="productitem__container">
  9345.      
  9346.  
  9347.      <div class="productitem__image-container">
  9348.        <a target="_blank"
  9349.          class="productitem--image-link"
  9350.          href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9351.          aria-label="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9352.          tabindex="-1"
  9353.          data-product-page-link
  9354.        >
  9355.          <figure
  9356.            class="productitem--image"
  9357.            data-product-item-image
  9358.            
  9359.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9360.            
  9361.          >
  9362.            
  9363.              
  9364.              
  9365.  
  9366.  
  9367.    <noscript data-rimg-noscript>
  9368.      <img loading="lazy"
  9369.        
  9370.          src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1759502248"
  9371.        
  9372.  
  9373.        alt="2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable - LaptopParts.ca"
  9374.        data-rimg="noscript"
  9375.        srcset="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1759502248 1x, //laptopparts.ca/cdn/shop/products/z1_799x799.jpg?v=1759502248 1.56x"
  9376.        class="productitem--image-primary"
  9377.        
  9378.        
  9379.      >
  9380.    </noscript>
  9381.  
  9382.  
  9383.  <img loading="lazy"
  9384.    
  9385.      src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1759502248"
  9386.    
  9387.    alt="2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable - LaptopParts.ca"
  9388.  
  9389.    
  9390.      data-rimg="lazy"
  9391.      data-rimg-scale="1"
  9392.      data-rimg-template="//laptopparts.ca/cdn/shop/products/z1_{size}.jpg?v=1759502248"
  9393.      data-rimg-max="800x800"
  9394.      data-rimg-crop="false"
  9395.      
  9396.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  9397.    
  9398.  
  9399.    class="productitem--image-primary"
  9400.    
  9401.    
  9402.  >
  9403.  
  9404.  
  9405.  
  9406.  <div data-rimg-canvas></div>
  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.  
  9436.  
  9437.  
  9438.  
  9439.          </figure>
  9440.        </a>
  9441.      </div><div class="productitem--info">
  9442.        
  9443.          
  9444.  
  9445.        
  9446.  
  9447.        
  9448.          
  9449.  
  9450.  
  9451.  
  9452.  
  9453.  
  9454.  
  9455.  
  9456.  
  9457.  
  9458.  
  9459.  
  9460.  
  9461.  
  9462.  
  9463.  
  9464.  
  9465.  
  9466.  
  9467.  
  9468.  
  9469.  
  9470.  
  9471.  
  9472.  
  9473.  
  9474.  
  9475.  
  9476.  
  9477.  
  9478.  
  9479. <div class="price productitem__price ">
  9480.  
  9481.    <div
  9482.      class="price__compare-at visible"
  9483.      data-price-compare-container
  9484.    >
  9485.  
  9486.      
  9487.        <span class="money price__original" data-price-original></span>
  9488.      
  9489.    </div>
  9490.  
  9491.  
  9492.    
  9493.      
  9494.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9495.        
  9496.          <span class="visually-hidden">Original price</span>
  9497.          <span class="money price__compare-at--min" data-price-compare-min>
  9498.            $19.99
  9499.          </span>
  9500.          -
  9501.          <span class="visually-hidden">Original price</span>
  9502.          <span class="money price__compare-at--max" data-price-compare-max>
  9503.            $19.99
  9504.          </span>
  9505.        
  9506.      </div>
  9507.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9508.        <span class="visually-hidden">Original price</span>
  9509.        <span class="money price__compare-at--single" data-price-compare>
  9510.          
  9511.        </span>
  9512.      </div>
  9513.    
  9514.  
  9515.  
  9516.  <div class="price__current price__current--emphasize " data-price-container>
  9517.  
  9518.    
  9519.  
  9520.    
  9521.      
  9522.      
  9523.      <span class="money" data-price>
  9524.        $19.99
  9525.      </span>
  9526.    
  9527.    
  9528.  </div>
  9529.  
  9530.  
  9531.    
  9532.    <div class="price__current--hidden" data-current-price-range-hidden>
  9533.      
  9534.        <span class="money price__current--min" data-price-min>$19.99</span>
  9535.        -
  9536.        <span class="money price__current--max" data-price-max>$19.99</span>
  9537.      
  9538.    </div>
  9539.    <div class="price__current--hidden" data-current-price-hidden>
  9540.      <span class="visually-hidden">Current price</span>
  9541.      <span class="money" data-price>
  9542.        $19.99
  9543.      </span>
  9544.    </div>
  9545.  
  9546.  
  9547.  
  9548.    
  9549.    
  9550.    
  9551.    
  9552.  
  9553.    <div
  9554.      class="
  9555.        productitem__unit-price
  9556.        hidden
  9557.      "
  9558.      data-unit-price
  9559.    >
  9560.      <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>
  9561.    </div>
  9562.  
  9563.  
  9564.  
  9565. </div>
  9566.  
  9567.  
  9568.        
  9569.  
  9570.        <h2 class="productitem--title">
  9571.          <a href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable" data-product-page-link>
  9572.            2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable
  9573.          </a>
  9574.        </h2>
  9575.  
  9576.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9577.        <div class="star_container 4421896306775"></div>
  9578.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9579.  
  9580.        
  9581.          
  9582.            <span class="productitem--vendor">
  9583.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  9584.            </span>
  9585.          
  9586.        
  9587.  
  9588.        
  9589.  
  9590.        
  9591.          
  9592.            <div class="productitem__stock-level">
  9593.              <!--
  9594.  
  9595.  
  9596.  
  9597.  
  9598.  
  9599.  
  9600.  
  9601. <div class="product-stock-level-wrapper" >
  9602.  
  9603.    <span class="
  9604.  product-stock-level
  9605.  product-stock-level--continue-selling
  9606.  
  9607. ">
  9608.      
  9609.  
  9610.      <span class="product-stock-level__text">
  9611.        
  9612.        <div class="product-stock-level__badge-text">
  9613.          
  9614.  
  9615.    In stock
  9616.  
  9617.  
  9618.        </div>
  9619.      </span>
  9620.    </span>
  9621.  
  9622. </div>
  9623. -->
  9624.              
  9625.  
  9626.  
  9627.    
  9628.      <b style="color:green">In stock</b>
  9629.    
  9630.  
  9631.  
  9632.  
  9633.  
  9634.  
  9635.  
  9636.  
  9637.            </div>
  9638.          
  9639.  
  9640.          
  9641.            
  9642.          
  9643.        
  9644.  
  9645.        
  9646.          <div class="productitem--description">
  9647.            <p>Cable Length(approx.): 15cm ± 10% (Just Cable)Connector Type: 1.x SATA Power 15-pin, Male2 x Molex IDE 4-pin, Female</p>
  9648.  
  9649.            
  9650.          </div>
  9651.        
  9652.      </div>
  9653.  
  9654.      
  9655.        
  9656.          
  9657.          
  9658.          
  9659.  
  9660.          
  9661.          
  9662.  
  9663.          
  9664.  
  9665.          
  9666.  
  9667.          <div class="productitem--actions" data-product-actions>
  9668.            <div class="productitem--listview-price">
  9669.              
  9670.  
  9671.  
  9672.  
  9673.  
  9674.  
  9675.  
  9676.  
  9677.  
  9678.  
  9679.  
  9680.  
  9681.  
  9682.  
  9683.  
  9684.  
  9685.  
  9686.  
  9687.  
  9688.  
  9689.  
  9690.  
  9691.  
  9692.  
  9693.  
  9694.  
  9695.  
  9696.  
  9697.  
  9698.  
  9699.  
  9700. <div class="price productitem__price ">
  9701.  
  9702.    <div
  9703.      class="price__compare-at visible"
  9704.      data-price-compare-container
  9705.    >
  9706.  
  9707.      
  9708.        <span class="money price__original" data-price-original></span>
  9709.      
  9710.    </div>
  9711.  
  9712.  
  9713.    
  9714.      
  9715.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9716.        
  9717.          <span class="visually-hidden">Original price</span>
  9718.          <span class="money price__compare-at--min" data-price-compare-min>
  9719.            $19.99
  9720.          </span>
  9721.          -
  9722.          <span class="visually-hidden">Original price</span>
  9723.          <span class="money price__compare-at--max" data-price-compare-max>
  9724.            $19.99
  9725.          </span>
  9726.        
  9727.      </div>
  9728.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9729.        <span class="visually-hidden">Original price</span>
  9730.        <span class="money price__compare-at--single" data-price-compare>
  9731.          
  9732.        </span>
  9733.      </div>
  9734.    
  9735.  
  9736.  
  9737.  <div class="price__current price__current--emphasize " data-price-container>
  9738.  
  9739.    
  9740.  
  9741.    
  9742.      
  9743.      
  9744.      <span class="money" data-price>
  9745.        $19.99
  9746.      </span>
  9747.    
  9748.    
  9749.  </div>
  9750.  
  9751.  
  9752.    
  9753.    <div class="price__current--hidden" data-current-price-range-hidden>
  9754.      
  9755.        <span class="money price__current--min" data-price-min>$19.99</span>
  9756.        -
  9757.        <span class="money price__current--max" data-price-max>$19.99</span>
  9758.      
  9759.    </div>
  9760.    <div class="price__current--hidden" data-current-price-hidden>
  9761.      <span class="visually-hidden">Current price</span>
  9762.      <span class="money" data-price>
  9763.        $19.99
  9764.      </span>
  9765.    </div>
  9766.  
  9767.  
  9768.  
  9769.    
  9770.    
  9771.    
  9772.    
  9773.  
  9774.    <div
  9775.      class="
  9776.        productitem__unit-price
  9777.        hidden
  9778.      "
  9779.      data-unit-price
  9780.    >
  9781.      <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>
  9782.    </div>
  9783.  
  9784.  
  9785.  
  9786. </div>
  9787.  
  9788.  
  9789.            </div>
  9790.  
  9791.            <div class="productitem--listview-badge">
  9792.              
  9793.  
  9794.  
  9795.  
  9796.  
  9797.  
  9798.  
  9799.  
  9800.  
  9801.  
  9802.  
  9803.  
  9804.  
  9805.  
  9806.  
  9807.  
  9808.  
  9809.  
  9810.  
  9811.  
  9812.  
  9813.  
  9814.  
  9815.  
  9816.  
  9817.  
  9818.  
  9819.  
  9820.            </div>
  9821.  
  9822.            
  9823.              <div
  9824.                class="
  9825.                  productitem--action
  9826.                  quickshop-button
  9827.                  
  9828.                "
  9829.              >
  9830.                <button
  9831.                  class="productitem--action-trigger button-secondary"
  9832.                  data-quickshop-full
  9833.                  
  9834.                  
  9835.                  type="button"
  9836.                >
  9837.                  Quick shop
  9838.                </button>
  9839.              </div>
  9840.            
  9841.  
  9842.            
  9843.              <div
  9844.                class="
  9845.                  productitem--action
  9846.                  atc--button
  9847.                  
  9848.                "
  9849.              >
  9850.                <button
  9851.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9852.                  type="button"
  9853.                  aria-label="Add to cart"
  9854.                  
  9855.                    data-quick-buy
  9856.                  
  9857.                  data-variant-id="31550087692375"
  9858.                  
  9859.                >
  9860.                  <span class="atc-button--text">
  9861.                    Add to cart
  9862.                  </span>
  9863.                  <span class="atc-button--icon"><svg
  9864.  aria-hidden="true"
  9865.  focusable="false"
  9866.  role="presentation"
  9867.  width="26"
  9868.  height="26"
  9869.  viewBox="0 0 26 26"
  9870.  xmlns="http://www.w3.org/2000/svg"
  9871. >
  9872.  <g fill-rule="nonzero" fill="currentColor">
  9873.    <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"/>
  9874.  </g>
  9875. </svg></span>
  9876.                </button>
  9877.              </div>
  9878.            
  9879.          </div>
  9880.        
  9881.      
  9882.    </div>
  9883.  </div>
  9884.  
  9885.  
  9886.    <script type="application/json" data-quick-buy-settings>
  9887.      {
  9888.        "cart_redirection": true,
  9889.        "money_format": "${{amount}}"
  9890.      }
  9891.    </script>
  9892.  
  9893. </li>
  9894.    
  9895.      
  9896.  
  9897.  
  9898.  
  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.  
  9928.    
  9929.  
  9930.  
  9931.  
  9932. <li
  9933.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9934.  data-product-item
  9935.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  9936.  
  9937. >
  9938.  <div class="productitem" data-product-item-content>
  9939.    
  9940.    
  9941.    
  9942.    
  9943.  
  9944.    
  9945.  
  9946.    
  9947.  
  9948.    <div class="productitem__container">
  9949.      
  9950.  
  9951.      <div class="productitem__image-container">
  9952.        <a target="_blank"
  9953.          class="productitem--image-link"
  9954.          href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  9955.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  9956.          tabindex="-1"
  9957.          data-product-page-link
  9958.        >
  9959.          <figure
  9960.            class="productitem--image"
  9961.            data-product-item-image
  9962.            
  9963.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9964.            
  9965.          >
  9966.            
  9967.              
  9968.              
  9969.  
  9970.  
  9971.    <noscript data-rimg-noscript>
  9972.      <img loading="lazy"
  9973.        
  9974.          src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1762552872"
  9975.        
  9976.  
  9977.        alt="15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0 - LaptopParts.ca"
  9978.        data-rimg="noscript"
  9979.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1762552872 1x"
  9980.        class="productitem--image-primary"
  9981.        
  9982.        
  9983.      >
  9984.    </noscript>
  9985.  
  9986.  
  9987.  <img loading="lazy"
  9988.    
  9989.      src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1762552872"
  9990.    
  9991.    alt="15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0 - LaptopParts.ca"
  9992.  
  9993.    
  9994.      data-rimg="lazy"
  9995.      data-rimg-scale="1"
  9996.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_{size}.jpg?v=1762552872"
  9997.      data-rimg-max="500x500"
  9998.      data-rimg-crop="false"
  9999.      
  10000.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  10001.    
  10002.  
  10003.    class="productitem--image-primary"
  10004.    
  10005.    
  10006.  >
  10007.  
  10008.  
  10009.  
  10010.  <div data-rimg-canvas></div>
  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.  
  10040.  
  10041.  
  10042.  
  10043.          </figure>
  10044.        </a>
  10045.      </div><div class="productitem--info">
  10046.        
  10047.          
  10048.  
  10049.        
  10050.  
  10051.        
  10052.          
  10053.  
  10054.  
  10055.  
  10056.  
  10057.  
  10058.  
  10059.  
  10060.  
  10061.  
  10062.  
  10063.  
  10064.  
  10065.  
  10066.  
  10067.  
  10068.  
  10069.  
  10070.  
  10071.  
  10072.  
  10073.  
  10074.  
  10075.  
  10076.  
  10077.  
  10078.  
  10079.  
  10080.  
  10081.  
  10082.  
  10083. <div class="price productitem__price ">
  10084.  
  10085.    <div
  10086.      class="price__compare-at visible"
  10087.      data-price-compare-container
  10088.    >
  10089.  
  10090.      
  10091.        <span class="money price__original" data-price-original></span>
  10092.      
  10093.    </div>
  10094.  
  10095.  
  10096.    
  10097.      
  10098.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10099.        
  10100.          <span class="visually-hidden">Original price</span>
  10101.          <span class="money price__compare-at--min" data-price-compare-min>
  10102.            $288.97
  10103.          </span>
  10104.          -
  10105.          <span class="visually-hidden">Original price</span>
  10106.          <span class="money price__compare-at--max" data-price-compare-max>
  10107.            $288.97
  10108.          </span>
  10109.        
  10110.      </div>
  10111.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10112.        <span class="visually-hidden">Original price</span>
  10113.        <span class="money price__compare-at--single" data-price-compare>
  10114.          
  10115.        </span>
  10116.      </div>
  10117.    
  10118.  
  10119.  
  10120.  <div class="price__current price__current--emphasize " data-price-container>
  10121.  
  10122.    
  10123.  
  10124.    
  10125.      
  10126.      
  10127.      <span class="money" data-price>
  10128.        $288.97
  10129.      </span>
  10130.    
  10131.    
  10132.  </div>
  10133.  
  10134.  
  10135.    
  10136.    <div class="price__current--hidden" data-current-price-range-hidden>
  10137.      
  10138.        <span class="money price__current--min" data-price-min>$288.97</span>
  10139.        -
  10140.        <span class="money price__current--max" data-price-max>$288.97</span>
  10141.      
  10142.    </div>
  10143.    <div class="price__current--hidden" data-current-price-hidden>
  10144.      <span class="visually-hidden">Current price</span>
  10145.      <span class="money" data-price>
  10146.        $288.97
  10147.      </span>
  10148.    </div>
  10149.  
  10150.  
  10151.  
  10152.    
  10153.    
  10154.    
  10155.    
  10156.  
  10157.    <div
  10158.      class="
  10159.        productitem__unit-price
  10160.        hidden
  10161.      "
  10162.      data-unit-price
  10163.    >
  10164.      <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>
  10165.    </div>
  10166.  
  10167.  
  10168.  
  10169. </div>
  10170.  
  10171.  
  10172.        
  10173.  
  10174.        <h2 class="productitem--title">
  10175.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops" data-product-page-link>
  10176.            15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0
  10177.          </a>
  10178.        </h2>
  10179.  
  10180.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10181.        <div class="star_container 3929811091543"></div>
  10182.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10183.  
  10184.        
  10185.          
  10186.            <span class="productitem--vendor">
  10187.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  10188.            </span>
  10189.          
  10190.        
  10191.  
  10192.        
  10193.  
  10194.        
  10195.          
  10196.            <div class="productitem__stock-level">
  10197.              <!--
  10198.  
  10199.  
  10200.  
  10201.  
  10202.  
  10203.  
  10204.  
  10205. <div class="product-stock-level-wrapper" >
  10206.  
  10207.    <span class="
  10208.  product-stock-level
  10209.  product-stock-level--continue-selling
  10210.  
  10211. ">
  10212.      
  10213.  
  10214.      <span class="product-stock-level__text">
  10215.        
  10216.        <div class="product-stock-level__badge-text">
  10217.          
  10218.  
  10219.    In stock
  10220.  
  10221.  
  10222.        </div>
  10223.      </span>
  10224.    </span>
  10225.  
  10226. </div>
  10227. -->
  10228.              
  10229.  
  10230.  
  10231.    
  10232.      <b style="color:green">In stock</b>
  10233.    
  10234.  
  10235.  
  10236.  
  10237.  
  10238.  
  10239.  
  10240.  
  10241.            </div>
  10242.          
  10243.  
  10244.          
  10245.            
  10246.          
  10247.        
  10248.  
  10249.        
  10250.          <div class="productitem--description">
  10251.            <p>
  10252. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  10253.  
  10254. **This screen will only work if your laptop is one of the models below that ca...</p>
  10255.  
  10256.            
  10257.              <a
  10258.                href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10259.                class="productitem--link"
  10260.                data-product-page-link
  10261.              >
  10262.                View full details
  10263.              </a>
  10264.            
  10265.          </div>
  10266.        
  10267.      </div>
  10268.  
  10269.      
  10270.        
  10271.          
  10272.          
  10273.          
  10274.  
  10275.          
  10276.          
  10277.  
  10278.          
  10279.  
  10280.          
  10281.  
  10282.          <div class="productitem--actions" data-product-actions>
  10283.            <div class="productitem--listview-price">
  10284.              
  10285.  
  10286.  
  10287.  
  10288.  
  10289.  
  10290.  
  10291.  
  10292.  
  10293.  
  10294.  
  10295.  
  10296.  
  10297.  
  10298.  
  10299.  
  10300.  
  10301.  
  10302.  
  10303.  
  10304.  
  10305.  
  10306.  
  10307.  
  10308.  
  10309.  
  10310.  
  10311.  
  10312.  
  10313.  
  10314.  
  10315. <div class="price productitem__price ">
  10316.  
  10317.    <div
  10318.      class="price__compare-at visible"
  10319.      data-price-compare-container
  10320.    >
  10321.  
  10322.      
  10323.        <span class="money price__original" data-price-original></span>
  10324.      
  10325.    </div>
  10326.  
  10327.  
  10328.    
  10329.      
  10330.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10331.        
  10332.          <span class="visually-hidden">Original price</span>
  10333.          <span class="money price__compare-at--min" data-price-compare-min>
  10334.            $288.97
  10335.          </span>
  10336.          -
  10337.          <span class="visually-hidden">Original price</span>
  10338.          <span class="money price__compare-at--max" data-price-compare-max>
  10339.            $288.97
  10340.          </span>
  10341.        
  10342.      </div>
  10343.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10344.        <span class="visually-hidden">Original price</span>
  10345.        <span class="money price__compare-at--single" data-price-compare>
  10346.          
  10347.        </span>
  10348.      </div>
  10349.    
  10350.  
  10351.  
  10352.  <div class="price__current price__current--emphasize " data-price-container>
  10353.  
  10354.    
  10355.  
  10356.    
  10357.      
  10358.      
  10359.      <span class="money" data-price>
  10360.        $288.97
  10361.      </span>
  10362.    
  10363.    
  10364.  </div>
  10365.  
  10366.  
  10367.    
  10368.    <div class="price__current--hidden" data-current-price-range-hidden>
  10369.      
  10370.        <span class="money price__current--min" data-price-min>$288.97</span>
  10371.        -
  10372.        <span class="money price__current--max" data-price-max>$288.97</span>
  10373.      
  10374.    </div>
  10375.    <div class="price__current--hidden" data-current-price-hidden>
  10376.      <span class="visually-hidden">Current price</span>
  10377.      <span class="money" data-price>
  10378.        $288.97
  10379.      </span>
  10380.    </div>
  10381.  
  10382.  
  10383.  
  10384.    
  10385.    
  10386.    
  10387.    
  10388.  
  10389.    <div
  10390.      class="
  10391.        productitem__unit-price
  10392.        hidden
  10393.      "
  10394.      data-unit-price
  10395.    >
  10396.      <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>
  10397.    </div>
  10398.  
  10399.  
  10400.  
  10401. </div>
  10402.  
  10403.  
  10404.            </div>
  10405.  
  10406.            <div class="productitem--listview-badge">
  10407.              
  10408.  
  10409.  
  10410.  
  10411.  
  10412.  
  10413.  
  10414.  
  10415.  
  10416.  
  10417.  
  10418.  
  10419.  
  10420.  
  10421.  
  10422.  
  10423.  
  10424.  
  10425.  
  10426.  
  10427.  
  10428.  
  10429.  
  10430.  
  10431.  
  10432.  
  10433.  
  10434.  
  10435.            </div>
  10436.  
  10437.            
  10438.              <div
  10439.                class="
  10440.                  productitem--action
  10441.                  quickshop-button
  10442.                  
  10443.                "
  10444.              >
  10445.                <button
  10446.                  class="productitem--action-trigger button-secondary"
  10447.                  data-quickshop-full
  10448.                  
  10449.                  
  10450.                  type="button"
  10451.                >
  10452.                  Quick shop
  10453.                </button>
  10454.              </div>
  10455.            
  10456.  
  10457.            
  10458.              <div
  10459.                class="
  10460.                  productitem--action
  10461.                  atc--button
  10462.                  
  10463.                "
  10464.              >
  10465.                <button
  10466.                  class="productitem--action-trigger productitem--action-atc button-primary"
  10467.                  type="button"
  10468.                  aria-label="Add to cart"
  10469.                  
  10470.                    data-quick-buy
  10471.                  
  10472.                  data-variant-id="29564283224151"
  10473.                  
  10474.                >
  10475.                  <span class="atc-button--text">
  10476.                    Add to cart
  10477.                  </span>
  10478.                  <span class="atc-button--icon"><svg
  10479.  aria-hidden="true"
  10480.  focusable="false"
  10481.  role="presentation"
  10482.  width="26"
  10483.  height="26"
  10484.  viewBox="0 0 26 26"
  10485.  xmlns="http://www.w3.org/2000/svg"
  10486. >
  10487.  <g fill-rule="nonzero" fill="currentColor">
  10488.    <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"/>
  10489.  </g>
  10490. </svg></span>
  10491.                </button>
  10492.              </div>
  10493.            
  10494.          </div>
  10495.        
  10496.      
  10497.    </div>
  10498.  </div>
  10499.  
  10500.  
  10501.    <script type="application/json" data-quick-buy-settings>
  10502.      {
  10503.        "cart_redirection": true,
  10504.        "money_format": "${{amount}}"
  10505.      }
  10506.    </script>
  10507.  
  10508. </li>
  10509.    
  10510.      
  10511.  
  10512.  
  10513.  
  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.  
  10543.    
  10544.  
  10545.  
  10546.  
  10547. <li
  10548.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  10549.  data-product-item
  10550.  data-product-quickshop-url="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10551.  
  10552. >
  10553.  <div class="productitem" data-product-item-content>
  10554.    
  10555.    
  10556.    
  10557.    
  10558.  
  10559.    
  10560.  
  10561.    
  10562.  
  10563.    <div class="productitem__container">
  10564.      
  10565.  
  10566.      <div class="productitem__image-container">
  10567.        <a target="_blank"
  10568.          class="productitem--image-link"
  10569.          href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10570.          aria-label="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10571.          tabindex="-1"
  10572.          data-product-page-link
  10573.        >
  10574.          <figure
  10575.            class="productitem--image"
  10576.            data-product-item-image
  10577.            
  10578.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10579.            
  10580.          >
  10581.            
  10582.              
  10583.              
  10584.  
  10585.  
  10586.    <noscript data-rimg-noscript>
  10587.      <img loading="lazy"
  10588.        
  10589.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1762547564"
  10590.        
  10591.  
  10592.        alt="5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug - LaptopParts.ca"
  10593.        data-rimg="noscript"
  10594.        srcset="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1762547564 1x, //laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_599x599.jpg?v=1762547564 1.17x"
  10595.        class="productitem--image-primary"
  10596.        
  10597.        
  10598.      >
  10599.    </noscript>
  10600.  
  10601.  
  10602.  <img loading="lazy"
  10603.    
  10604.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1762547564"
  10605.    
  10606.    alt="5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug - LaptopParts.ca"
  10607.  
  10608.    
  10609.      data-rimg="lazy"
  10610.      data-rimg-scale="1"
  10611.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_{size}.jpg?v=1762547564"
  10612.      data-rimg-max="600x600"
  10613.      data-rimg-crop="false"
  10614.      
  10615.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  10616.    
  10617.  
  10618.    class="productitem--image-primary"
  10619.    
  10620.    
  10621.  >
  10622.  
  10623.  
  10624.  
  10625.  <div data-rimg-canvas></div>
  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.  
  10655.  
  10656.  
  10657.  
  10658.          </figure>
  10659.        </a>
  10660.      </div><div class="productitem--info">
  10661.        
  10662.          
  10663.  
  10664.        
  10665.  
  10666.        
  10667.          
  10668.  
  10669.  
  10670.  
  10671.  
  10672.  
  10673.  
  10674.  
  10675.  
  10676.  
  10677.  
  10678.  
  10679.  
  10680.  
  10681.  
  10682.  
  10683.  
  10684.  
  10685.  
  10686.  
  10687.  
  10688.  
  10689.  
  10690.  
  10691.  
  10692.  
  10693.  
  10694.  
  10695.  
  10696.  
  10697.  
  10698. <div class="price productitem__price ">
  10699.  
  10700.    <div
  10701.      class="price__compare-at visible"
  10702.      data-price-compare-container
  10703.    >
  10704.  
  10705.      
  10706.        <span class="money price__original" data-price-original></span>
  10707.      
  10708.    </div>
  10709.  
  10710.  
  10711.    
  10712.      
  10713.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10714.        
  10715.          <span class="visually-hidden">Original price</span>
  10716.          <span class="money price__compare-at--min" data-price-compare-min>
  10717.            $44.97
  10718.          </span>
  10719.          -
  10720.          <span class="visually-hidden">Original price</span>
  10721.          <span class="money price__compare-at--max" data-price-compare-max>
  10722.            $44.97
  10723.          </span>
  10724.        
  10725.      </div>
  10726.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10727.        <span class="visually-hidden">Original price</span>
  10728.        <span class="money price__compare-at--single" data-price-compare>
  10729.          
  10730.        </span>
  10731.      </div>
  10732.    
  10733.  
  10734.  
  10735.  <div class="price__current price__current--emphasize " data-price-container>
  10736.  
  10737.    
  10738.  
  10739.    
  10740.      
  10741.      
  10742.      <span class="money" data-price>
  10743.        $44.97
  10744.      </span>
  10745.    
  10746.    
  10747.  </div>
  10748.  
  10749.  
  10750.    
  10751.    <div class="price__current--hidden" data-current-price-range-hidden>
  10752.      
  10753.        <span class="money price__current--min" data-price-min>$44.97</span>
  10754.        -
  10755.        <span class="money price__current--max" data-price-max>$44.97</span>
  10756.      
  10757.    </div>
  10758.    <div class="price__current--hidden" data-current-price-hidden>
  10759.      <span class="visually-hidden">Current price</span>
  10760.      <span class="money" data-price>
  10761.        $44.97
  10762.      </span>
  10763.    </div>
  10764.  
  10765.  
  10766.  
  10767.    
  10768.    
  10769.    
  10770.    
  10771.  
  10772.    <div
  10773.      class="
  10774.        productitem__unit-price
  10775.        hidden
  10776.      "
  10777.      data-unit-price
  10778.    >
  10779.      <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>
  10780.    </div>
  10781.  
  10782.  
  10783.  
  10784. </div>
  10785.  
  10786.  
  10787.        
  10788.  
  10789.        <h2 class="productitem--title">
  10790.          <a href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  10791.            5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  10792.          </a>
  10793.        </h2>
  10794.  
  10795.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10796.        <div class="star_container 3483509915735"></div>
  10797.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10798.  
  10799.        
  10800.          
  10801.            <span class="productitem--vendor">
  10802.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  10803.            </span>
  10804.          
  10805.        
  10806.  
  10807.        
  10808.  
  10809.        
  10810.          
  10811.            <div class="productitem__stock-level">
  10812.              <!--
  10813.  
  10814.  
  10815.  
  10816.  
  10817.  
  10818.  
  10819.  
  10820. <div class="product-stock-level-wrapper" >
  10821.  
  10822.    <span class="
  10823.  product-stock-level
  10824.  product-stock-level--continue-selling
  10825.  
  10826. ">
  10827.      
  10828.  
  10829.      <span class="product-stock-level__text">
  10830.        
  10831.        <div class="product-stock-level__badge-text">
  10832.          
  10833.  
  10834.    In stock
  10835.  
  10836.  
  10837.        </div>
  10838.      </span>
  10839.    </span>
  10840.  
  10841. </div>
  10842. -->
  10843.              
  10844.  
  10845.  
  10846.    
  10847.      <b style="color:green">In stock</b>
  10848.    
  10849.  
  10850.  
  10851.  
  10852.  
  10853.  
  10854.  
  10855.  
  10856.            </div>
  10857.          
  10858.  
  10859.          
  10860.            
  10861.          
  10862.        
  10863.  
  10864.        
  10865.          <div class="productitem--description">
  10866.            <p>Plugs directly into AC outlet.
  10867.  
  10868. Input: 100-240V ~ 50-60Hz
  10869. Output: 12V – 1.5A 18W
  10870. Connector Tip: mini USB
  10871. Colour: Black
  10872.  
  10873. Compatible Part #s: KP.01...</p>
  10874.  
  10875.            
  10876.              <a
  10877.                href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10878.                class="productitem--link"
  10879.                data-product-page-link
  10880.              >
  10881.                View full details
  10882.              </a>
  10883.            
  10884.          </div>
  10885.        
  10886.      </div>
  10887.  
  10888.      
  10889.        
  10890.          
  10891.          
  10892.          
  10893.  
  10894.          
  10895.          
  10896.  
  10897.          
  10898.  
  10899.          
  10900.  
  10901.          <div class="productitem--actions" data-product-actions>
  10902.            <div class="productitem--listview-price">
  10903.              
  10904.  
  10905.  
  10906.  
  10907.  
  10908.  
  10909.  
  10910.  
  10911.  
  10912.  
  10913.  
  10914.  
  10915.  
  10916.  
  10917.  
  10918.  
  10919.  
  10920.  
  10921.  
  10922.  
  10923.  
  10924.  
  10925.  
  10926.  
  10927.  
  10928.  
  10929.  
  10930.  
  10931.  
  10932.  
  10933.  
  10934. <div class="price productitem__price ">
  10935.  
  10936.    <div
  10937.      class="price__compare-at visible"
  10938.      data-price-compare-container
  10939.    >
  10940.  
  10941.      
  10942.        <span class="money price__original" data-price-original></span>
  10943.      
  10944.    </div>
  10945.  
  10946.  
  10947.    
  10948.      
  10949.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10950.        
  10951.          <span class="visually-hidden">Original price</span>
  10952.          <span class="money price__compare-at--min" data-price-compare-min>
  10953.            $44.97
  10954.          </span>
  10955.          -
  10956.          <span class="visually-hidden">Original price</span>
  10957.          <span class="money price__compare-at--max" data-price-compare-max>
  10958.            $44.97
  10959.          </span>
  10960.        
  10961.      </div>
  10962.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10963.        <span class="visually-hidden">Original price</span>
  10964.        <span class="money price__compare-at--single" data-price-compare>
  10965.          
  10966.        </span>
  10967.      </div>
  10968.    
  10969.  
  10970.  
  10971.  <div class="price__current price__current--emphasize " data-price-container>
  10972.  
  10973.    
  10974.  
  10975.    
  10976.      
  10977.      
  10978.      <span class="money" data-price>
  10979.        $44.97
  10980.      </span>
  10981.    
  10982.    
  10983.  </div>
  10984.  
  10985.  
  10986.    
  10987.    <div class="price__current--hidden" data-current-price-range-hidden>
  10988.      
  10989.        <span class="money price__current--min" data-price-min>$44.97</span>
  10990.        -
  10991.        <span class="money price__current--max" data-price-max>$44.97</span>
  10992.      
  10993.    </div>
  10994.    <div class="price__current--hidden" data-current-price-hidden>
  10995.      <span class="visually-hidden">Current price</span>
  10996.      <span class="money" data-price>
  10997.        $44.97
  10998.      </span>
  10999.    </div>
  11000.  
  11001.  
  11002.  
  11003.    
  11004.    
  11005.    
  11006.    
  11007.  
  11008.    <div
  11009.      class="
  11010.        productitem__unit-price
  11011.        hidden
  11012.      "
  11013.      data-unit-price
  11014.    >
  11015.      <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>
  11016.    </div>
  11017.  
  11018.  
  11019.  
  11020. </div>
  11021.  
  11022.  
  11023.            </div>
  11024.  
  11025.            <div class="productitem--listview-badge">
  11026.              
  11027.  
  11028.  
  11029.  
  11030.  
  11031.  
  11032.  
  11033.  
  11034.  
  11035.  
  11036.  
  11037.  
  11038.  
  11039.  
  11040.  
  11041.  
  11042.  
  11043.  
  11044.  
  11045.  
  11046.  
  11047.  
  11048.  
  11049.  
  11050.  
  11051.  
  11052.  
  11053.  
  11054.            </div>
  11055.  
  11056.            
  11057.              <div
  11058.                class="
  11059.                  productitem--action
  11060.                  quickshop-button
  11061.                  
  11062.                "
  11063.              >
  11064.                <button
  11065.                  class="productitem--action-trigger button-secondary"
  11066.                  data-quickshop-full
  11067.                  
  11068.                  
  11069.                  type="button"
  11070.                >
  11071.                  Quick shop
  11072.                </button>
  11073.              </div>
  11074.            
  11075.  
  11076.            
  11077.              <div
  11078.                class="
  11079.                  productitem--action
  11080.                  atc--button
  11081.                  
  11082.                "
  11083.              >
  11084.                <button
  11085.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11086.                  type="button"
  11087.                  aria-label="Add to cart"
  11088.                  
  11089.                    data-quick-buy
  11090.                  
  11091.                  data-variant-id="39666212831319"
  11092.                  
  11093.                >
  11094.                  <span class="atc-button--text">
  11095.                    Add to cart
  11096.                  </span>
  11097.                  <span class="atc-button--icon"><svg
  11098.  aria-hidden="true"
  11099.  focusable="false"
  11100.  role="presentation"
  11101.  width="26"
  11102.  height="26"
  11103.  viewBox="0 0 26 26"
  11104.  xmlns="http://www.w3.org/2000/svg"
  11105. >
  11106.  <g fill-rule="nonzero" fill="currentColor">
  11107.    <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"/>
  11108.  </g>
  11109. </svg></span>
  11110.                </button>
  11111.              </div>
  11112.            
  11113.          </div>
  11114.        
  11115.      
  11116.    </div>
  11117.  </div>
  11118.  
  11119.  
  11120.    <script type="application/json" data-quick-buy-settings>
  11121.      {
  11122.        "cart_redirection": true,
  11123.        "money_format": "${{amount}}"
  11124.      }
  11125.    </script>
  11126.  
  11127. </li>
  11128.    
  11129.      
  11130.  
  11131.  
  11132.  
  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.  
  11162.    
  11163.  
  11164.  
  11165.  
  11166. <li
  11167.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11168.  data-product-item
  11169.  data-product-quickshop-url="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11170.  
  11171. >
  11172.  <div class="productitem" data-product-item-content>
  11173.    
  11174.    
  11175.    
  11176.    
  11177.  
  11178.    
  11179.  
  11180.    
  11181.  
  11182.    <div class="productitem__container">
  11183.      
  11184.  
  11185.      <div class="productitem__image-container">
  11186.        <a target="_blank"
  11187.          class="productitem--image-link"
  11188.          href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11189.          aria-label="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11190.          tabindex="-1"
  11191.          data-product-page-link
  11192.        >
  11193.          <figure
  11194.            class="productitem--image"
  11195.            data-product-item-image
  11196.            
  11197.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11198.            
  11199.          >
  11200.            
  11201.              
  11202.              
  11203.  
  11204.  
  11205.    <noscript data-rimg-noscript>
  11206.      <img loading="lazy"
  11207.        
  11208.          src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1762537328"
  11209.        
  11210.  
  11211.        alt="5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A - LaptopParts.ca"
  11212.        data-rimg="noscript"
  11213.        srcset="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1762537328 1x"
  11214.        class="productitem--image-primary"
  11215.        
  11216.        
  11217.      >
  11218.    </noscript>
  11219.  
  11220.  
  11221.  <img loading="lazy"
  11222.    
  11223.      src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1762537328"
  11224.    
  11225.    alt="5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A - LaptopParts.ca"
  11226.  
  11227.    
  11228.      data-rimg="lazy"
  11229.      data-rimg-scale="1"
  11230.      data-rimg-template="//laptopparts.ca/cdn/shop/products/8291_{size}.jpg?v=1762537328"
  11231.      data-rimg-max="500x500"
  11232.      data-rimg-crop="false"
  11233.      
  11234.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  11235.    
  11236.  
  11237.    class="productitem--image-primary"
  11238.    
  11239.    
  11240.  >
  11241.  
  11242.  
  11243.  
  11244.  <div data-rimg-canvas></div>
  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.  
  11274.  
  11275.  
  11276.  
  11277.          </figure>
  11278.        </a>
  11279.      </div><div class="productitem--info">
  11280.        
  11281.          
  11282.  
  11283.        
  11284.  
  11285.        
  11286.          
  11287.  
  11288.  
  11289.  
  11290.  
  11291.  
  11292.  
  11293.  
  11294.  
  11295.  
  11296.  
  11297.  
  11298.  
  11299.  
  11300.  
  11301.  
  11302.  
  11303.  
  11304.  
  11305.  
  11306.  
  11307.  
  11308.  
  11309.  
  11310.  
  11311.  
  11312.  
  11313.  
  11314.  
  11315.  
  11316.  
  11317. <div class="price productitem__price ">
  11318.  
  11319.    <div
  11320.      class="price__compare-at visible"
  11321.      data-price-compare-container
  11322.    >
  11323.  
  11324.      
  11325.        <span class="money price__original" data-price-original></span>
  11326.      
  11327.    </div>
  11328.  
  11329.  
  11330.    
  11331.      
  11332.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11333.        
  11334.          <span class="visually-hidden">Original price</span>
  11335.          <span class="money price__compare-at--min" data-price-compare-min>
  11336.            $122.97
  11337.          </span>
  11338.          -
  11339.          <span class="visually-hidden">Original price</span>
  11340.          <span class="money price__compare-at--max" data-price-compare-max>
  11341.            $122.97
  11342.          </span>
  11343.        
  11344.      </div>
  11345.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11346.        <span class="visually-hidden">Original price</span>
  11347.        <span class="money price__compare-at--single" data-price-compare>
  11348.          
  11349.        </span>
  11350.      </div>
  11351.    
  11352.  
  11353.  
  11354.  <div class="price__current price__current--emphasize " data-price-container>
  11355.  
  11356.    
  11357.  
  11358.    
  11359.      
  11360.      
  11361.      <span class="money" data-price>
  11362.        $122.97
  11363.      </span>
  11364.    
  11365.    
  11366.  </div>
  11367.  
  11368.  
  11369.    
  11370.    <div class="price__current--hidden" data-current-price-range-hidden>
  11371.      
  11372.        <span class="money price__current--min" data-price-min>$122.97</span>
  11373.        -
  11374.        <span class="money price__current--max" data-price-max>$122.97</span>
  11375.      
  11376.    </div>
  11377.    <div class="price__current--hidden" data-current-price-hidden>
  11378.      <span class="visually-hidden">Current price</span>
  11379.      <span class="money" data-price>
  11380.        $122.97
  11381.      </span>
  11382.    </div>
  11383.  
  11384.  
  11385.  
  11386.    
  11387.    
  11388.    
  11389.    
  11390.  
  11391.    <div
  11392.      class="
  11393.        productitem__unit-price
  11394.        hidden
  11395.      "
  11396.      data-unit-price
  11397.    >
  11398.      <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>
  11399.    </div>
  11400.  
  11401.  
  11402.  
  11403. </div>
  11404.  
  11405.  
  11406.        
  11407.  
  11408.        <h2 class="productitem--title">
  11409.          <a href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a" data-product-page-link>
  11410.            5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A
  11411.          </a>
  11412.        </h2>
  11413.  
  11414.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  11415.        <div class="star_container 592337698839"></div>
  11416.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  11417.  
  11418.        
  11419.          
  11420.            <span class="productitem--vendor">
  11421.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  11422.            </span>
  11423.          
  11424.        
  11425.  
  11426.        
  11427.  
  11428.        
  11429.          
  11430.            <div class="productitem__stock-level">
  11431.              <!--
  11432.  
  11433.  
  11434.  
  11435.  
  11436.  
  11437.  
  11438.  
  11439. <div class="product-stock-level-wrapper" >
  11440.  
  11441.    <span class="
  11442.  product-stock-level
  11443.  product-stock-level--continue-selling
  11444.  
  11445. ">
  11446.      
  11447.  
  11448.      <span class="product-stock-level__text">
  11449.        
  11450.        <div class="product-stock-level__badge-text">
  11451.          
  11452.  
  11453.    In stock
  11454.  
  11455.  
  11456.        </div>
  11457.      </span>
  11458.    </span>
  11459.  
  11460. </div>
  11461. -->
  11462.              
  11463.  
  11464.  
  11465.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  11466.  
  11467.  
  11468.  
  11469.  
  11470.            </div>
  11471.          
  11472.  
  11473.          
  11474.            
  11475.          
  11476.        
  11477.  
  11478.        
  11479.          <div class="productitem--description">
  11480.            <p>
  11481. Description: 5 slot printhead for select HP printers. This item is refurbished.  Compatible Part #'s: CB326-30002, CN642A.  Compatible Models: HP ...</p>
  11482.  
  11483.            
  11484.              <a
  11485.                href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11486.                class="productitem--link"
  11487.                data-product-page-link
  11488.              >
  11489.                View full details
  11490.              </a>
  11491.            
  11492.          </div>
  11493.        
  11494.      </div>
  11495.  
  11496.      
  11497.        
  11498.          
  11499.          
  11500.          
  11501.  
  11502.          
  11503.          
  11504.  
  11505.          
  11506.  
  11507.          
  11508.  
  11509.          <div class="productitem--actions" data-product-actions>
  11510.            <div class="productitem--listview-price">
  11511.              
  11512.  
  11513.  
  11514.  
  11515.  
  11516.  
  11517.  
  11518.  
  11519.  
  11520.  
  11521.  
  11522.  
  11523.  
  11524.  
  11525.  
  11526.  
  11527.  
  11528.  
  11529.  
  11530.  
  11531.  
  11532.  
  11533.  
  11534.  
  11535.  
  11536.  
  11537.  
  11538.  
  11539.  
  11540.  
  11541.  
  11542. <div class="price productitem__price ">
  11543.  
  11544.    <div
  11545.      class="price__compare-at visible"
  11546.      data-price-compare-container
  11547.    >
  11548.  
  11549.      
  11550.        <span class="money price__original" data-price-original></span>
  11551.      
  11552.    </div>
  11553.  
  11554.  
  11555.    
  11556.      
  11557.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11558.        
  11559.          <span class="visually-hidden">Original price</span>
  11560.          <span class="money price__compare-at--min" data-price-compare-min>
  11561.            $122.97
  11562.          </span>
  11563.          -
  11564.          <span class="visually-hidden">Original price</span>
  11565.          <span class="money price__compare-at--max" data-price-compare-max>
  11566.            $122.97
  11567.          </span>
  11568.        
  11569.      </div>
  11570.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11571.        <span class="visually-hidden">Original price</span>
  11572.        <span class="money price__compare-at--single" data-price-compare>
  11573.          
  11574.        </span>
  11575.      </div>
  11576.    
  11577.  
  11578.  
  11579.  <div class="price__current price__current--emphasize " data-price-container>
  11580.  
  11581.    
  11582.  
  11583.    
  11584.      
  11585.      
  11586.      <span class="money" data-price>
  11587.        $122.97
  11588.      </span>
  11589.    
  11590.    
  11591.  </div>
  11592.  
  11593.  
  11594.    
  11595.    <div class="price__current--hidden" data-current-price-range-hidden>
  11596.      
  11597.        <span class="money price__current--min" data-price-min>$122.97</span>
  11598.        -
  11599.        <span class="money price__current--max" data-price-max>$122.97</span>
  11600.      
  11601.    </div>
  11602.    <div class="price__current--hidden" data-current-price-hidden>
  11603.      <span class="visually-hidden">Current price</span>
  11604.      <span class="money" data-price>
  11605.        $122.97
  11606.      </span>
  11607.    </div>
  11608.  
  11609.  
  11610.  
  11611.    
  11612.    
  11613.    
  11614.    
  11615.  
  11616.    <div
  11617.      class="
  11618.        productitem__unit-price
  11619.        hidden
  11620.      "
  11621.      data-unit-price
  11622.    >
  11623.      <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>
  11624.    </div>
  11625.  
  11626.  
  11627.  
  11628. </div>
  11629.  
  11630.  
  11631.            </div>
  11632.  
  11633.            <div class="productitem--listview-badge">
  11634.              
  11635.  
  11636.  
  11637.  
  11638.  
  11639.  
  11640.  
  11641.  
  11642.  
  11643.  
  11644.  
  11645.  
  11646.  
  11647.  
  11648.  
  11649.  
  11650.  
  11651.  
  11652.  
  11653.  
  11654.  
  11655.  
  11656.  
  11657.  
  11658.  
  11659.  
  11660.  
  11661.  
  11662.            </div>
  11663.  
  11664.            
  11665.              <div
  11666.                class="
  11667.                  productitem--action
  11668.                  quickshop-button
  11669.                  
  11670.                "
  11671.              >
  11672.                <button
  11673.                  class="productitem--action-trigger button-secondary"
  11674.                  data-quickshop-full
  11675.                  
  11676.                  
  11677.                  type="button"
  11678.                >
  11679.                  Quick shop
  11680.                </button>
  11681.              </div>
  11682.            
  11683.  
  11684.            
  11685.              <div
  11686.                class="
  11687.                  productitem--action
  11688.                  atc--button
  11689.                  
  11690.                "
  11691.              >
  11692.                <button
  11693.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11694.                  type="button"
  11695.                  aria-label="Add to cart"
  11696.                  
  11697.                    data-quick-buy
  11698.                  
  11699.                  data-variant-id="6936707596311"
  11700.                  
  11701.                >
  11702.                  <span class="atc-button--text">
  11703.                    Add to cart
  11704.                  </span>
  11705.                  <span class="atc-button--icon"><svg
  11706.  aria-hidden="true"
  11707.  focusable="false"
  11708.  role="presentation"
  11709.  width="26"
  11710.  height="26"
  11711.  viewBox="0 0 26 26"
  11712.  xmlns="http://www.w3.org/2000/svg"
  11713. >
  11714.  <g fill-rule="nonzero" fill="currentColor">
  11715.    <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"/>
  11716.  </g>
  11717. </svg></span>
  11718.                </button>
  11719.              </div>
  11720.            
  11721.          </div>
  11722.        
  11723.      
  11724.    </div>
  11725.  </div>
  11726.  
  11727.  
  11728.    <script type="application/json" data-quick-buy-settings>
  11729.      {
  11730.        "cart_redirection": true,
  11731.        "money_format": "${{amount}}"
  11732.      }
  11733.    </script>
  11734.  
  11735. </li>
  11736.    
  11737.      
  11738.  
  11739.  
  11740.  
  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.  
  11770.    
  11771.  
  11772.  
  11773.  
  11774. <li
  11775.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11776.  data-product-item
  11777.  data-product-quickshop-url="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  11778.  
  11779. >
  11780.  <div class="productitem" data-product-item-content>
  11781.    
  11782.    
  11783.    
  11784.    
  11785.  
  11786.    
  11787.  
  11788.    
  11789.  
  11790.    <div class="productitem__container">
  11791.      
  11792.  
  11793.      <div class="productitem__image-container">
  11794.        <a target="_blank"
  11795.          class="productitem--image-link"
  11796.          href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  11797.          aria-label="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  11798.          tabindex="-1"
  11799.          data-product-page-link
  11800.        >
  11801.          <figure
  11802.            class="productitem--image"
  11803.            data-product-item-image
  11804.            
  11805.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11806.            
  11807.          >
  11808.            
  11809.              
  11810.              
  11811.  
  11812.  
  11813.    <noscript data-rimg-noscript>
  11814.      <img loading="lazy"
  11815.        
  11816.          src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1762552985"
  11817.        
  11818.  
  11819.        alt="4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10 - LaptopParts.ca"
  11820.        data-rimg="noscript"
  11821.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1762552985 1x"
  11822.        class="productitem--image-primary"
  11823.        
  11824.        
  11825.      >
  11826.    </noscript>
  11827.  
  11828.  
  11829.  <img loading="lazy"
  11830.    
  11831.      src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1762552985"
  11832.    
  11833.    alt="4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10 - LaptopParts.ca"
  11834.  
  11835.    
  11836.      data-rimg="lazy"
  11837.      data-rimg-scale="1"
  11838.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_{size}.jpg?v=1762552985"
  11839.      data-rimg-max="500x500"
  11840.      data-rimg-crop="false"
  11841.      
  11842.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  11843.    
  11844.  
  11845.    class="productitem--image-primary"
  11846.    
  11847.    
  11848.  >
  11849.  
  11850.  
  11851.  
  11852.  <div data-rimg-canvas></div>
  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.  
  11882.  
  11883.  
  11884.  
  11885.          </figure>
  11886.        </a>
  11887.      </div><div class="productitem--info">
  11888.        
  11889.          
  11890.  
  11891.        
  11892.  
  11893.        
  11894.          
  11895.  
  11896.  
  11897.  
  11898.  
  11899.  
  11900.  
  11901.  
  11902.  
  11903.  
  11904.  
  11905.  
  11906.  
  11907.  
  11908.  
  11909.  
  11910.  
  11911.  
  11912.  
  11913.  
  11914.  
  11915.  
  11916.  
  11917.  
  11918.  
  11919.  
  11920.  
  11921.  
  11922.  
  11923.  
  11924.  
  11925. <div class="price productitem__price ">
  11926.  
  11927.    <div
  11928.      class="price__compare-at visible"
  11929.      data-price-compare-container
  11930.    >
  11931.  
  11932.      
  11933.        <span class="money price__original" data-price-original></span>
  11934.      
  11935.    </div>
  11936.  
  11937.  
  11938.    
  11939.      
  11940.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11941.        
  11942.          <span class="visually-hidden">Original price</span>
  11943.          <span class="money price__compare-at--min" data-price-compare-min>
  11944.            $62.97
  11945.          </span>
  11946.          -
  11947.          <span class="visually-hidden">Original price</span>
  11948.          <span class="money price__compare-at--max" data-price-compare-max>
  11949.            $62.97
  11950.          </span>
  11951.        
  11952.      </div>
  11953.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11954.        <span class="visually-hidden">Original price</span>
  11955.        <span class="money price__compare-at--single" data-price-compare>
  11956.          
  11957.        </span>
  11958.      </div>
  11959.    
  11960.  
  11961.  
  11962.  <div class="price__current price__current--emphasize " data-price-container>
  11963.  
  11964.    
  11965.  
  11966.    
  11967.      
  11968.      
  11969.      <span class="money" data-price>
  11970.        $62.97
  11971.      </span>
  11972.    
  11973.    
  11974.  </div>
  11975.  
  11976.  
  11977.    
  11978.    <div class="price__current--hidden" data-current-price-range-hidden>
  11979.      
  11980.        <span class="money price__current--min" data-price-min>$62.97</span>
  11981.        -
  11982.        <span class="money price__current--max" data-price-max>$62.97</span>
  11983.      
  11984.    </div>
  11985.    <div class="price__current--hidden" data-current-price-hidden>
  11986.      <span class="visually-hidden">Current price</span>
  11987.      <span class="money" data-price>
  11988.        $62.97
  11989.      </span>
  11990.    </div>
  11991.  
  11992.  
  11993.  
  11994.    
  11995.    
  11996.    
  11997.    
  11998.  
  11999.    <div
  12000.      class="
  12001.        productitem__unit-price
  12002.        hidden
  12003.      "
  12004.      data-unit-price
  12005.    >
  12006.      <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>
  12007.    </div>
  12008.  
  12009.  
  12010.  
  12011. </div>
  12012.  
  12013.  
  12014.        
  12015.  
  12016.        <h2 class="productitem--title">
  12017.          <a href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10" data-product-page-link>
  12018.            4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10
  12019.          </a>
  12020.        </h2>
  12021.  
  12022.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12023.        <div class="star_container 3929813123159"></div>
  12024.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12025.  
  12026.        
  12027.          
  12028.            <span class="productitem--vendor">
  12029.              <a href="/collections/vendors?q=Dell" title="Dell">Dell</a>
  12030.            </span>
  12031.          
  12032.        
  12033.  
  12034.        
  12035.  
  12036.        
  12037.          
  12038.            <div class="productitem__stock-level">
  12039.              <!--
  12040.  
  12041.  
  12042.  
  12043.  
  12044.  
  12045.  
  12046.  
  12047. <div class="product-stock-level-wrapper" >
  12048.  
  12049.    <span class="
  12050.  product-stock-level
  12051.  product-stock-level--continue-selling
  12052.  
  12053. ">
  12054.      
  12055.  
  12056.      <span class="product-stock-level__text">
  12057.        
  12058.        <div class="product-stock-level__badge-text">
  12059.          
  12060.  
  12061.    In stock
  12062.  
  12063.  
  12064.        </div>
  12065.      </span>
  12066.    </span>
  12067.  
  12068. </div>
  12069. -->
  12070.              
  12071.  
  12072.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12073.  
  12074.  
  12075.  
  12076.  
  12077.  
  12078.  
  12079.  
  12080.            </div>
  12081.          
  12082.  
  12083.          
  12084.            
  12085.          
  12086.        
  12087.  
  12088.        
  12089.          <div class="productitem--description">
  12090.            <p>
  12091. 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>
  12092.  
  12093.            
  12094.              <a
  12095.                href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12096.                class="productitem--link"
  12097.                data-product-page-link
  12098.              >
  12099.                View full details
  12100.              </a>
  12101.            
  12102.          </div>
  12103.        
  12104.      </div>
  12105.  
  12106.      
  12107.        
  12108.          
  12109.          
  12110.          
  12111.  
  12112.          
  12113.          
  12114.  
  12115.          
  12116.  
  12117.          
  12118.  
  12119.          <div class="productitem--actions" data-product-actions>
  12120.            <div class="productitem--listview-price">
  12121.              
  12122.  
  12123.  
  12124.  
  12125.  
  12126.  
  12127.  
  12128.  
  12129.  
  12130.  
  12131.  
  12132.  
  12133.  
  12134.  
  12135.  
  12136.  
  12137.  
  12138.  
  12139.  
  12140.  
  12141.  
  12142.  
  12143.  
  12144.  
  12145.  
  12146.  
  12147.  
  12148.  
  12149.  
  12150.  
  12151.  
  12152. <div class="price productitem__price ">
  12153.  
  12154.    <div
  12155.      class="price__compare-at visible"
  12156.      data-price-compare-container
  12157.    >
  12158.  
  12159.      
  12160.        <span class="money price__original" data-price-original></span>
  12161.      
  12162.    </div>
  12163.  
  12164.  
  12165.    
  12166.      
  12167.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12168.        
  12169.          <span class="visually-hidden">Original price</span>
  12170.          <span class="money price__compare-at--min" data-price-compare-min>
  12171.            $62.97
  12172.          </span>
  12173.          -
  12174.          <span class="visually-hidden">Original price</span>
  12175.          <span class="money price__compare-at--max" data-price-compare-max>
  12176.            $62.97
  12177.          </span>
  12178.        
  12179.      </div>
  12180.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12181.        <span class="visually-hidden">Original price</span>
  12182.        <span class="money price__compare-at--single" data-price-compare>
  12183.          
  12184.        </span>
  12185.      </div>
  12186.    
  12187.  
  12188.  
  12189.  <div class="price__current price__current--emphasize " data-price-container>
  12190.  
  12191.    
  12192.  
  12193.    
  12194.      
  12195.      
  12196.      <span class="money" data-price>
  12197.        $62.97
  12198.      </span>
  12199.    
  12200.    
  12201.  </div>
  12202.  
  12203.  
  12204.    
  12205.    <div class="price__current--hidden" data-current-price-range-hidden>
  12206.      
  12207.        <span class="money price__current--min" data-price-min>$62.97</span>
  12208.        -
  12209.        <span class="money price__current--max" data-price-max>$62.97</span>
  12210.      
  12211.    </div>
  12212.    <div class="price__current--hidden" data-current-price-hidden>
  12213.      <span class="visually-hidden">Current price</span>
  12214.      <span class="money" data-price>
  12215.        $62.97
  12216.      </span>
  12217.    </div>
  12218.  
  12219.  
  12220.  
  12221.    
  12222.    
  12223.    
  12224.    
  12225.  
  12226.    <div
  12227.      class="
  12228.        productitem__unit-price
  12229.        hidden
  12230.      "
  12231.      data-unit-price
  12232.    >
  12233.      <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>
  12234.    </div>
  12235.  
  12236.  
  12237.  
  12238. </div>
  12239.  
  12240.  
  12241.            </div>
  12242.  
  12243.            <div class="productitem--listview-badge">
  12244.              
  12245.  
  12246.  
  12247.  
  12248.  
  12249.  
  12250.  
  12251.  
  12252.  
  12253.  
  12254.  
  12255.  
  12256.  
  12257.  
  12258.  
  12259.  
  12260.  
  12261.  
  12262.  
  12263.  
  12264.  
  12265.  
  12266.  
  12267.  
  12268.  
  12269.  
  12270.  
  12271.  
  12272.            </div>
  12273.  
  12274.            
  12275.              <div
  12276.                class="
  12277.                  productitem--action
  12278.                  quickshop-button
  12279.                  
  12280.                "
  12281.              >
  12282.                <button
  12283.                  class="productitem--action-trigger button-secondary"
  12284.                  data-quickshop-full
  12285.                  
  12286.                  
  12287.                  type="button"
  12288.                >
  12289.                  Quick shop
  12290.                </button>
  12291.              </div>
  12292.            
  12293.  
  12294.            
  12295.              <div
  12296.                class="
  12297.                  productitem--action
  12298.                  atc--button
  12299.                  
  12300.                "
  12301.              >
  12302.                <button
  12303.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12304.                  type="button"
  12305.                  aria-label="Add to cart"
  12306.                  
  12307.                    data-quick-buy
  12308.                  
  12309.                  data-variant-id="29531497529431"
  12310.                  
  12311.                >
  12312.                  <span class="atc-button--text">
  12313.                    Add to cart
  12314.                  </span>
  12315.                  <span class="atc-button--icon"><svg
  12316.  aria-hidden="true"
  12317.  focusable="false"
  12318.  role="presentation"
  12319.  width="26"
  12320.  height="26"
  12321.  viewBox="0 0 26 26"
  12322.  xmlns="http://www.w3.org/2000/svg"
  12323. >
  12324.  <g fill-rule="nonzero" fill="currentColor">
  12325.    <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"/>
  12326.  </g>
  12327. </svg></span>
  12328.                </button>
  12329.              </div>
  12330.            
  12331.          </div>
  12332.        
  12333.      
  12334.    </div>
  12335.  </div>
  12336.  
  12337.  
  12338.    <script type="application/json" data-quick-buy-settings>
  12339.      {
  12340.        "cart_redirection": true,
  12341.        "money_format": "${{amount}}"
  12342.      }
  12343.    </script>
  12344.  
  12345. </li>
  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.  
  12371.  
  12372.  
  12373.  
  12374.  
  12375.  
  12376.  
  12377.  
  12378.  
  12379.  
  12380.    
  12381.  
  12382.  
  12383.  
  12384. <li
  12385.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  12386.  data-product-item
  12387.  data-product-quickshop-url="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  12388.  
  12389. >
  12390.  <div class="productitem" data-product-item-content>
  12391.    
  12392.    
  12393.    
  12394.    
  12395.  
  12396.    
  12397.  
  12398.    
  12399.  
  12400.    <div class="productitem__container">
  12401.      
  12402.  
  12403.      <div class="productitem__image-container">
  12404.        <a target="_blank"
  12405.          class="productitem--image-link"
  12406.          href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  12407.          aria-label="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  12408.          tabindex="-1"
  12409.          data-product-page-link
  12410.        >
  12411.          <figure
  12412.            class="productitem--image"
  12413.            data-product-item-image
  12414.            
  12415.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  12416.            
  12417.          >
  12418.            
  12419.              
  12420.              
  12421.  
  12422.  
  12423.    <noscript data-rimg-noscript>
  12424.      <img loading="lazy"
  12425.        
  12426.          src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1759506295"
  12427.        
  12428.  
  12429.        alt="925740-002"
  12430.        data-rimg="noscript"
  12431.        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"
  12432.        class="productitem--image-primary"
  12433.        
  12434.        
  12435.      >
  12436.    </noscript>
  12437.  
  12438.  
  12439.  <img loading="lazy"
  12440.    
  12441.      src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1759506295"
  12442.    
  12443.    alt="925740-002"
  12444.  
  12445.    
  12446.      data-rimg="lazy"
  12447.      data-rimg-scale="1"
  12448.      data-rimg-template="//laptopparts.ca/cdn/shop/files/tpn-ca06_{size}.jpg?v=1759506295"
  12449.      data-rimg-max="1043x1043"
  12450.      data-rimg-crop="false"
  12451.      
  12452.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  12453.    
  12454.  
  12455.    class="productitem--image-primary"
  12456.    
  12457.    
  12458.  >
  12459.  
  12460.  
  12461.  
  12462.  <div data-rimg-canvas></div>
  12463.  
  12464.  
  12465.            
  12466.  
  12467.            
  12468.  
  12469.  
  12470.  
  12471.  
  12472.  
  12473.  
  12474.  
  12475.  
  12476.  
  12477.  
  12478.  
  12479.  
  12480.  
  12481.  
  12482.  
  12483.  
  12484.  
  12485.  
  12486.  
  12487.  
  12488.  
  12489.  
  12490.  
  12491.  
  12492.  
  12493.  
  12494.  
  12495.          </figure>
  12496.        </a>
  12497.      </div><div class="productitem--info">
  12498.        
  12499.          
  12500.  
  12501.        
  12502.  
  12503.        
  12504.          
  12505.  
  12506.  
  12507.  
  12508.  
  12509.  
  12510.  
  12511.  
  12512.  
  12513.  
  12514.  
  12515.  
  12516.  
  12517.  
  12518.  
  12519.  
  12520.  
  12521.  
  12522.  
  12523.  
  12524.  
  12525.  
  12526.  
  12527.  
  12528.  
  12529.  
  12530.  
  12531.  
  12532.  
  12533.  
  12534.  
  12535. <div class="price productitem__price ">
  12536.  
  12537.    <div
  12538.      class="price__compare-at visible"
  12539.      data-price-compare-container
  12540.    >
  12541.  
  12542.      
  12543.        <span class="money price__original" data-price-original></span>
  12544.      
  12545.    </div>
  12546.  
  12547.  
  12548.    
  12549.      
  12550.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12551.        
  12552.          <span class="visually-hidden">Original price</span>
  12553.          <span class="money price__compare-at--min" data-price-compare-min>
  12554.            $49.99
  12555.          </span>
  12556.          -
  12557.          <span class="visually-hidden">Original price</span>
  12558.          <span class="money price__compare-at--max" data-price-compare-max>
  12559.            $49.99
  12560.          </span>
  12561.        
  12562.      </div>
  12563.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12564.        <span class="visually-hidden">Original price</span>
  12565.        <span class="money price__compare-at--single" data-price-compare>
  12566.          
  12567.        </span>
  12568.      </div>
  12569.    
  12570.  
  12571.  
  12572.  <div class="price__current price__current--emphasize " data-price-container>
  12573.  
  12574.    
  12575.  
  12576.    
  12577.      
  12578.      
  12579.      <span class="money" data-price>
  12580.        $49.99
  12581.      </span>
  12582.    
  12583.    
  12584.  </div>
  12585.  
  12586.  
  12587.    
  12588.    <div class="price__current--hidden" data-current-price-range-hidden>
  12589.      
  12590.        <span class="money price__current--min" data-price-min>$49.99</span>
  12591.        -
  12592.        <span class="money price__current--max" data-price-max>$49.99</span>
  12593.      
  12594.    </div>
  12595.    <div class="price__current--hidden" data-current-price-hidden>
  12596.      <span class="visually-hidden">Current price</span>
  12597.      <span class="money" data-price>
  12598.        $49.99
  12599.      </span>
  12600.    </div>
  12601.  
  12602.  
  12603.  
  12604.    
  12605.    
  12606.    
  12607.    
  12608.  
  12609.    <div
  12610.      class="
  12611.        productitem__unit-price
  12612.        hidden
  12613.      "
  12614.      data-unit-price
  12615.    >
  12616.      <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>
  12617.    </div>
  12618.  
  12619.  
  12620.  
  12621. </div>
  12622.  
  12623.  
  12624.        
  12625.  
  12626.        <h2 class="productitem--title">
  12627.          <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>
  12628.            925740-002 Genuine 65W USB Type-C Adapter Charger for HP Elite X2 1012 G2 Elitebook x360
  12629.          </a>
  12630.        </h2>
  12631.  
  12632.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12633.        <div class="star_container 6881873985623"></div>
  12634.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12635.  
  12636.        
  12637.          
  12638.            <span class="productitem--vendor">
  12639.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  12640.            </span>
  12641.          
  12642.        
  12643.  
  12644.        
  12645.  
  12646.        
  12647.          
  12648.            <div class="productitem__stock-level">
  12649.              <!--
  12650.  
  12651.  
  12652.  
  12653.  
  12654.  
  12655.  
  12656.  
  12657. <div class="product-stock-level-wrapper" >
  12658.  
  12659.    <span class="
  12660.  product-stock-level
  12661.  product-stock-level--continue-selling
  12662.  
  12663. ">
  12664.      
  12665.  
  12666.      <span class="product-stock-level__text">
  12667.        
  12668.        <div class="product-stock-level__badge-text">
  12669.          
  12670.  
  12671.    In stock
  12672.  
  12673.  
  12674.        </div>
  12675.      </span>
  12676.    </span>
  12677.  
  12678. </div>
  12679. -->
  12680.              
  12681.  
  12682.  
  12683.    
  12684.      <b style="color:green">In stock</b>
  12685.    
  12686.  
  12687.  
  12688.  
  12689.  
  12690.  
  12691.  
  12692.  
  12693.            </div>
  12694.          
  12695.  
  12696.          
  12697.            
  12698.          
  12699.        
  12700.  
  12701.        
  12702.          <div class="productitem--description">
  12703.            <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>
  12704.  
  12705.            
  12706.              <a
  12707.                href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  12708.                class="productitem--link"
  12709.                data-product-page-link
  12710.              >
  12711.                View full details
  12712.              </a>
  12713.            
  12714.          </div>
  12715.        
  12716.      </div>
  12717.  
  12718.      
  12719.        
  12720.          
  12721.          
  12722.          
  12723.  
  12724.          
  12725.          
  12726.  
  12727.          
  12728.  
  12729.          
  12730.  
  12731.          <div class="productitem--actions" data-product-actions>
  12732.            <div class="productitem--listview-price">
  12733.              
  12734.  
  12735.  
  12736.  
  12737.  
  12738.  
  12739.  
  12740.  
  12741.  
  12742.  
  12743.  
  12744.  
  12745.  
  12746.  
  12747.  
  12748.  
  12749.  
  12750.  
  12751.  
  12752.  
  12753.  
  12754.  
  12755.  
  12756.  
  12757.  
  12758.  
  12759.  
  12760.  
  12761.  
  12762.  
  12763.  
  12764. <div class="price productitem__price ">
  12765.  
  12766.    <div
  12767.      class="price__compare-at visible"
  12768.      data-price-compare-container
  12769.    >
  12770.  
  12771.      
  12772.        <span class="money price__original" data-price-original></span>
  12773.      
  12774.    </div>
  12775.  
  12776.  
  12777.    
  12778.      
  12779.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12780.        
  12781.          <span class="visually-hidden">Original price</span>
  12782.          <span class="money price__compare-at--min" data-price-compare-min>
  12783.            $49.99
  12784.          </span>
  12785.          -
  12786.          <span class="visually-hidden">Original price</span>
  12787.          <span class="money price__compare-at--max" data-price-compare-max>
  12788.            $49.99
  12789.          </span>
  12790.        
  12791.      </div>
  12792.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12793.        <span class="visually-hidden">Original price</span>
  12794.        <span class="money price__compare-at--single" data-price-compare>
  12795.          
  12796.        </span>
  12797.      </div>
  12798.    
  12799.  
  12800.  
  12801.  <div class="price__current price__current--emphasize " data-price-container>
  12802.  
  12803.    
  12804.  
  12805.    
  12806.      
  12807.      
  12808.      <span class="money" data-price>
  12809.        $49.99
  12810.      </span>
  12811.    
  12812.    
  12813.  </div>
  12814.  
  12815.  
  12816.    
  12817.    <div class="price__current--hidden" data-current-price-range-hidden>
  12818.      
  12819.        <span class="money price__current--min" data-price-min>$49.99</span>
  12820.        -
  12821.        <span class="money price__current--max" data-price-max>$49.99</span>
  12822.      
  12823.    </div>
  12824.    <div class="price__current--hidden" data-current-price-hidden>
  12825.      <span class="visually-hidden">Current price</span>
  12826.      <span class="money" data-price>
  12827.        $49.99
  12828.      </span>
  12829.    </div>
  12830.  
  12831.  
  12832.  
  12833.    
  12834.    
  12835.    
  12836.    
  12837.  
  12838.    <div
  12839.      class="
  12840.        productitem__unit-price
  12841.        hidden
  12842.      "
  12843.      data-unit-price
  12844.    >
  12845.      <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>
  12846.    </div>
  12847.  
  12848.  
  12849.  
  12850. </div>
  12851.  
  12852.  
  12853.            </div>
  12854.  
  12855.            <div class="productitem--listview-badge">
  12856.              
  12857.  
  12858.  
  12859.  
  12860.  
  12861.  
  12862.  
  12863.  
  12864.  
  12865.  
  12866.  
  12867.  
  12868.  
  12869.  
  12870.  
  12871.  
  12872.  
  12873.  
  12874.  
  12875.  
  12876.  
  12877.  
  12878.  
  12879.  
  12880.  
  12881.  
  12882.  
  12883.  
  12884.            </div>
  12885.  
  12886.            
  12887.              <div
  12888.                class="
  12889.                  productitem--action
  12890.                  quickshop-button
  12891.                  
  12892.                "
  12893.              >
  12894.                <button
  12895.                  class="productitem--action-trigger button-secondary"
  12896.                  data-quickshop-full
  12897.                  
  12898.                  
  12899.                  type="button"
  12900.                >
  12901.                  Quick shop
  12902.                </button>
  12903.              </div>
  12904.            
  12905.  
  12906.            
  12907.              <div
  12908.                class="
  12909.                  productitem--action
  12910.                  atc--button
  12911.                  
  12912.                "
  12913.              >
  12914.                <button
  12915.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12916.                  type="button"
  12917.                  aria-label="Add to cart"
  12918.                  
  12919.                    data-quick-buy
  12920.                  
  12921.                  data-variant-id="40183331749975"
  12922.                  
  12923.                >
  12924.                  <span class="atc-button--text">
  12925.                    Add to cart
  12926.                  </span>
  12927.                  <span class="atc-button--icon"><svg
  12928.  aria-hidden="true"
  12929.  focusable="false"
  12930.  role="presentation"
  12931.  width="26"
  12932.  height="26"
  12933.  viewBox="0 0 26 26"
  12934.  xmlns="http://www.w3.org/2000/svg"
  12935. >
  12936.  <g fill-rule="nonzero" fill="currentColor">
  12937.    <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"/>
  12938.  </g>
  12939. </svg></span>
  12940.                </button>
  12941.              </div>
  12942.            
  12943.          </div>
  12944.        
  12945.      
  12946.    </div>
  12947.  </div>
  12948.  
  12949.  
  12950.    <script type="application/json" data-quick-buy-settings>
  12951.      {
  12952.        "cart_redirection": true,
  12953.        "money_format": "${{amount}}"
  12954.      }
  12955.    </script>
  12956.  
  12957. </li>
  12958.    
  12959.      
  12960.  
  12961.  
  12962.  
  12963.  
  12964.  
  12965.  
  12966.  
  12967.  
  12968.  
  12969.  
  12970.  
  12971.  
  12972.  
  12973.  
  12974.  
  12975.  
  12976.  
  12977.  
  12978.  
  12979.  
  12980.  
  12981.  
  12982.  
  12983.  
  12984.  
  12985.  
  12986.  
  12987.  
  12988.  
  12989.  
  12990.  
  12991.  
  12992.    
  12993.  
  12994.  
  12995.  
  12996. <li
  12997.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  12998.  data-product-item
  12999.  data-product-quickshop-url="/products/acer-altos-at110f2-at115f1-at310f2-server-cooling-fan-hi-r4300-001-1"
  13000.  
  13001. >
  13002.  <div class="productitem" data-product-item-content>
  13003.    
  13004.    
  13005.    
  13006.    
  13007.  
  13008.    
  13009.  
  13010.    
  13011.  
  13012.    <div class="productitem__container">
  13013.      
  13014.  
  13015.      <div class="productitem__image-container">
  13016.        <a target="_blank"
  13017.          class="productitem--image-link"
  13018.          href="/products/acer-altos-at110f2-at115f1-at310f2-server-cooling-fan-hi-r4300-001-1"
  13019.          aria-label="/products/acer-altos-at110f2-at115f1-at310f2-server-cooling-fan-hi-r4300-001-1"
  13020.          tabindex="-1"
  13021.          data-product-page-link
  13022.        >
  13023.          <figure
  13024.            class="productitem--image"
  13025.            data-product-item-image
  13026.            
  13027.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13028.            
  13029.          >
  13030.            
  13031.              
  13032.              
  13033.  
  13034.  
  13035.    <noscript data-rimg-noscript>
  13036.      <img loading="lazy"
  13037.        
  13038.          src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1759501265"
  13039.        
  13040.  
  13041.        alt="Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001 - LaptopParts.ca"
  13042.        data-rimg="noscript"
  13043.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1759501265 1x"
  13044.        class="productitem--image-primary"
  13045.        
  13046.        
  13047.      >
  13048.    </noscript>
  13049.  
  13050.  
  13051.  <img loading="lazy"
  13052.    
  13053.      src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1759501265"
  13054.    
  13055.    alt="Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001 - LaptopParts.ca"
  13056.  
  13057.    
  13058.      data-rimg="lazy"
  13059.      data-rimg-scale="1"
  13060.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_{size}.jpg?v=1759501265"
  13061.      data-rimg-max="500x500"
  13062.      data-rimg-crop="false"
  13063.      
  13064.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  13065.    
  13066.  
  13067.    class="productitem--image-primary"
  13068.    
  13069.    
  13070.  >
  13071.  
  13072.  
  13073.  
  13074.  <div data-rimg-canvas></div>
  13075.  
  13076.  
  13077.            
  13078.  
  13079.            
  13080.  
  13081.  
  13082.  
  13083.  
  13084.  
  13085.  
  13086.  
  13087.  
  13088.  
  13089.  
  13090.  
  13091.  
  13092.  
  13093.  
  13094.  
  13095.  
  13096.  
  13097.  
  13098.  
  13099.  
  13100.  
  13101.  
  13102.  
  13103.  
  13104.  
  13105.  
  13106.  
  13107.          </figure>
  13108.        </a>
  13109.      </div><div class="productitem--info">
  13110.        
  13111.          
  13112.  
  13113.        
  13114.  
  13115.        
  13116.          
  13117.  
  13118.  
  13119.  
  13120.  
  13121.  
  13122.  
  13123.  
  13124.  
  13125.  
  13126.  
  13127.  
  13128.  
  13129.  
  13130.  
  13131.  
  13132.  
  13133.  
  13134.  
  13135.  
  13136.  
  13137.  
  13138.  
  13139.  
  13140.  
  13141.  
  13142.  
  13143.  
  13144.  
  13145.  
  13146.  
  13147. <div class="price productitem__price ">
  13148.  
  13149.    <div
  13150.      class="price__compare-at visible"
  13151.      data-price-compare-container
  13152.    >
  13153.  
  13154.      
  13155.        <span class="money price__original" data-price-original></span>
  13156.      
  13157.    </div>
  13158.  
  13159.  
  13160.    
  13161.      
  13162.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13163.        
  13164.          <span class="visually-hidden">Original price</span>
  13165.          <span class="money price__compare-at--min" data-price-compare-min>
  13166.            $62.97
  13167.          </span>
  13168.          -
  13169.          <span class="visually-hidden">Original price</span>
  13170.          <span class="money price__compare-at--max" data-price-compare-max>
  13171.            $62.97
  13172.          </span>
  13173.        
  13174.      </div>
  13175.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13176.        <span class="visually-hidden">Original price</span>
  13177.        <span class="money price__compare-at--single" data-price-compare>
  13178.          
  13179.        </span>
  13180.      </div>
  13181.    
  13182.  
  13183.  
  13184.  <div class="price__current price__current--emphasize " data-price-container>
  13185.  
  13186.    
  13187.  
  13188.    
  13189.      
  13190.      
  13191.      <span class="money" data-price>
  13192.        $62.97
  13193.      </span>
  13194.    
  13195.    
  13196.  </div>
  13197.  
  13198.  
  13199.    
  13200.    <div class="price__current--hidden" data-current-price-range-hidden>
  13201.      
  13202.        <span class="money price__current--min" data-price-min>$62.97</span>
  13203.        -
  13204.        <span class="money price__current--max" data-price-max>$62.97</span>
  13205.      
  13206.    </div>
  13207.    <div class="price__current--hidden" data-current-price-hidden>
  13208.      <span class="visually-hidden">Current price</span>
  13209.      <span class="money" data-price>
  13210.        $62.97
  13211.      </span>
  13212.    </div>
  13213.  
  13214.  
  13215.  
  13216.    
  13217.    
  13218.    
  13219.    
  13220.  
  13221.    <div
  13222.      class="
  13223.        productitem__unit-price
  13224.        hidden
  13225.      "
  13226.      data-unit-price
  13227.    >
  13228.      <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>
  13229.    </div>
  13230.  
  13231.  
  13232.  
  13233. </div>
  13234.  
  13235.  
  13236.        
  13237.  
  13238.        <h2 class="productitem--title">
  13239.          <a href="/products/acer-altos-at110f2-at115f1-at310f2-server-cooling-fan-hi-r4300-001-1" data-product-page-link>
  13240.            Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001
  13241.          </a>
  13242.        </h2>
  13243.  
  13244.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13245.        <div class="star_container 3929815122007"></div>
  13246.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13247.  
  13248.        
  13249.          
  13250.            <span class="productitem--vendor">
  13251.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  13252.            </span>
  13253.          
  13254.        
  13255.  
  13256.        
  13257.  
  13258.        
  13259.          
  13260.            <div class="productitem__stock-level">
  13261.              <!--
  13262.  
  13263.  
  13264.  
  13265.  
  13266.  
  13267.  
  13268.  
  13269. <div class="product-stock-level-wrapper" >
  13270.  
  13271.    <span class="
  13272.  product-stock-level
  13273.  product-stock-level--continue-selling
  13274.  
  13275. ">
  13276.      
  13277.  
  13278.      <span class="product-stock-level__text">
  13279.        
  13280.        <div class="product-stock-level__badge-text">
  13281.          
  13282.  
  13283.    In stock
  13284.  
  13285.  
  13286.        </div>
  13287.      </span>
  13288.    </span>
  13289.  
  13290. </div>
  13291. -->
  13292.              
  13293.  
  13294.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  13295.  
  13296.  
  13297.  
  13298.  
  13299.  
  13300.  
  13301.  
  13302.            </div>
  13303.          
  13304.  
  13305.          
  13306.            
  13307.          
  13308.        
  13309.  
  13310.        
  13311.          <div class="productitem--description">
  13312.            <p>
  13313. Description: New Acer server replacement case cooling fan.
  13314.  
  13315. Compatible Part #'s: HI.R4300.001, DS09225B12UP021.
  13316.  
  13317. Compatible Models:
  13318. Acer Altos AT1...</p>
  13319.  
  13320.            
  13321.              <a
  13322.                href="/products/acer-altos-at110f2-at115f1-at310f2-server-cooling-fan-hi-r4300-001-1"
  13323.                class="productitem--link"
  13324.                data-product-page-link
  13325.              >
  13326.                View full details
  13327.              </a>
  13328.            
  13329.          </div>
  13330.        
  13331.      </div>
  13332.  
  13333.      
  13334.        
  13335.          
  13336.          
  13337.          
  13338.  
  13339.          
  13340.          
  13341.  
  13342.          
  13343.  
  13344.          
  13345.  
  13346.          <div class="productitem--actions" data-product-actions>
  13347.            <div class="productitem--listview-price">
  13348.              
  13349.  
  13350.  
  13351.  
  13352.  
  13353.  
  13354.  
  13355.  
  13356.  
  13357.  
  13358.  
  13359.  
  13360.  
  13361.  
  13362.  
  13363.  
  13364.  
  13365.  
  13366.  
  13367.  
  13368.  
  13369.  
  13370.  
  13371.  
  13372.  
  13373.  
  13374.  
  13375.  
  13376.  
  13377.  
  13378.  
  13379. <div class="price productitem__price ">
  13380.  
  13381.    <div
  13382.      class="price__compare-at visible"
  13383.      data-price-compare-container
  13384.    >
  13385.  
  13386.      
  13387.        <span class="money price__original" data-price-original></span>
  13388.      
  13389.    </div>
  13390.  
  13391.  
  13392.    
  13393.      
  13394.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13395.        
  13396.          <span class="visually-hidden">Original price</span>
  13397.          <span class="money price__compare-at--min" data-price-compare-min>
  13398.            $62.97
  13399.          </span>
  13400.          -
  13401.          <span class="visually-hidden">Original price</span>
  13402.          <span class="money price__compare-at--max" data-price-compare-max>
  13403.            $62.97
  13404.          </span>
  13405.        
  13406.      </div>
  13407.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13408.        <span class="visually-hidden">Original price</span>
  13409.        <span class="money price__compare-at--single" data-price-compare>
  13410.          
  13411.        </span>
  13412.      </div>
  13413.    
  13414.  
  13415.  
  13416.  <div class="price__current price__current--emphasize " data-price-container>
  13417.  
  13418.    
  13419.  
  13420.    
  13421.      
  13422.      
  13423.      <span class="money" data-price>
  13424.        $62.97
  13425.      </span>
  13426.    
  13427.    
  13428.  </div>
  13429.  
  13430.  
  13431.    
  13432.    <div class="price__current--hidden" data-current-price-range-hidden>
  13433.      
  13434.        <span class="money price__current--min" data-price-min>$62.97</span>
  13435.        -
  13436.        <span class="money price__current--max" data-price-max>$62.97</span>
  13437.      
  13438.    </div>
  13439.    <div class="price__current--hidden" data-current-price-hidden>
  13440.      <span class="visually-hidden">Current price</span>
  13441.      <span class="money" data-price>
  13442.        $62.97
  13443.      </span>
  13444.    </div>
  13445.  
  13446.  
  13447.  
  13448.    
  13449.    
  13450.    
  13451.    
  13452.  
  13453.    <div
  13454.      class="
  13455.        productitem__unit-price
  13456.        hidden
  13457.      "
  13458.      data-unit-price
  13459.    >
  13460.      <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>
  13461.    </div>
  13462.  
  13463.  
  13464.  
  13465. </div>
  13466.  
  13467.  
  13468.            </div>
  13469.  
  13470.            <div class="productitem--listview-badge">
  13471.              
  13472.  
  13473.  
  13474.  
  13475.  
  13476.  
  13477.  
  13478.  
  13479.  
  13480.  
  13481.  
  13482.  
  13483.  
  13484.  
  13485.  
  13486.  
  13487.  
  13488.  
  13489.  
  13490.  
  13491.  
  13492.  
  13493.  
  13494.  
  13495.  
  13496.  
  13497.  
  13498.  
  13499.            </div>
  13500.  
  13501.            
  13502.              <div
  13503.                class="
  13504.                  productitem--action
  13505.                  quickshop-button
  13506.                  
  13507.                "
  13508.              >
  13509.                <button
  13510.                  class="productitem--action-trigger button-secondary"
  13511.                  data-quickshop-full
  13512.                  
  13513.                  
  13514.                  type="button"
  13515.                >
  13516.                  Quick shop
  13517.                </button>
  13518.              </div>
  13519.            
  13520.  
  13521.            
  13522.              <div
  13523.                class="
  13524.                  productitem--action
  13525.                  atc--button
  13526.                  
  13527.                "
  13528.              >
  13529.                <button
  13530.                  class="productitem--action-trigger productitem--action-atc button-primary"
  13531.                  type="button"
  13532.                  aria-label="Add to cart"
  13533.                  
  13534.                    data-quick-buy
  13535.                  
  13536.                  data-variant-id="29507473014871"
  13537.                  
  13538.                >
  13539.                  <span class="atc-button--text">
  13540.                    Add to cart
  13541.                  </span>
  13542.                  <span class="atc-button--icon"><svg
  13543.  aria-hidden="true"
  13544.  focusable="false"
  13545.  role="presentation"
  13546.  width="26"
  13547.  height="26"
  13548.  viewBox="0 0 26 26"
  13549.  xmlns="http://www.w3.org/2000/svg"
  13550. >
  13551.  <g fill-rule="nonzero" fill="currentColor">
  13552.    <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"/>
  13553.  </g>
  13554. </svg></span>
  13555.                </button>
  13556.              </div>
  13557.            
  13558.          </div>
  13559.        
  13560.      
  13561.    </div>
  13562.  </div>
  13563.  
  13564.  
  13565.    <script type="application/json" data-quick-buy-settings>
  13566.      {
  13567.        "cart_redirection": true,
  13568.        "money_format": "${{amount}}"
  13569.      }
  13570.    </script>
  13571.  
  13572. </li>
  13573.    
  13574.      
  13575.  
  13576.  
  13577.  
  13578.  
  13579.  
  13580.  
  13581.  
  13582.  
  13583.  
  13584.  
  13585.  
  13586.  
  13587.  
  13588.  
  13589.  
  13590.  
  13591.  
  13592.  
  13593.  
  13594.  
  13595.  
  13596.  
  13597.  
  13598.  
  13599.  
  13600.  
  13601.  
  13602.  
  13603.  
  13604.  
  13605.  
  13606.  
  13607.    
  13608.  
  13609.  
  13610.  
  13611. <li
  13612.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13613.  data-product-item
  13614.  data-product-quickshop-url="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  13615.  
  13616. >
  13617.  <div class="productitem" data-product-item-content>
  13618.    
  13619.    
  13620.    
  13621.    
  13622.  
  13623.    
  13624.  
  13625.    
  13626.  
  13627.    <div class="productitem__container">
  13628.      
  13629.  
  13630.      <div class="productitem__image-container">
  13631.        <a target="_blank"
  13632.          class="productitem--image-link"
  13633.          href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  13634.          aria-label="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  13635.          tabindex="-1"
  13636.          data-product-page-link
  13637.        >
  13638.          <figure
  13639.            class="productitem--image"
  13640.            data-product-item-image
  13641.            
  13642.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13643.            
  13644.          >
  13645.            
  13646.              
  13647.              
  13648.  
  13649.  
  13650.    <noscript data-rimg-noscript>
  13651.      <img loading="lazy"
  13652.        
  13653.          src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1759441297"
  13654.        
  13655.  
  13656.        alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  13657.        data-rimg="noscript"
  13658.        srcset="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1759441297 1x"
  13659.        class="productitem--image-primary"
  13660.        
  13661.        
  13662.      >
  13663.    </noscript>
  13664.  
  13665.  
  13666.  <img loading="lazy"
  13667.    
  13668.      src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1759441297"
  13669.    
  13670.    alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  13671.  
  13672.    
  13673.      data-rimg="lazy"
  13674.      data-rimg-scale="1"
  13675.      data-rimg-template="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_{size}.jpg?v=1759441297"
  13676.      data-rimg-max="500x500"
  13677.      data-rimg-crop="false"
  13678.      
  13679.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  13680.    
  13681.  
  13682.    class="productitem--image-primary"
  13683.    
  13684.    
  13685.  >
  13686.  
  13687.  
  13688.  
  13689.  <div data-rimg-canvas></div>
  13690.  
  13691.  
  13692.            
  13693.  
  13694.            
  13695.  
  13696.  
  13697.  
  13698.  
  13699.  
  13700.  
  13701.  
  13702.  
  13703.  
  13704.  
  13705.  
  13706.  
  13707.  
  13708.  
  13709.  
  13710.  
  13711.  
  13712.  
  13713.  
  13714.  
  13715.  
  13716.  
  13717.  
  13718.  
  13719.  
  13720.  
  13721.  
  13722.          </figure>
  13723.        </a>
  13724.      </div><div class="productitem--info">
  13725.        
  13726.          
  13727.  
  13728.        
  13729.  
  13730.        
  13731.          
  13732.  
  13733.  
  13734.  
  13735.  
  13736.  
  13737.  
  13738.  
  13739.  
  13740.  
  13741.  
  13742.  
  13743.  
  13744.  
  13745.  
  13746.  
  13747.  
  13748.  
  13749.  
  13750.  
  13751.  
  13752.  
  13753.  
  13754.  
  13755.  
  13756.  
  13757.  
  13758.  
  13759.  
  13760.  
  13761.  
  13762. <div class="price productitem__price ">
  13763.  
  13764.    <div
  13765.      class="price__compare-at visible"
  13766.      data-price-compare-container
  13767.    >
  13768.  
  13769.      
  13770.        <span class="money price__original" data-price-original></span>
  13771.      
  13772.    </div>
  13773.  
  13774.  
  13775.    
  13776.      
  13777.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13778.        
  13779.          <span class="visually-hidden">Original price</span>
  13780.          <span class="money price__compare-at--min" data-price-compare-min>
  13781.            $99.97
  13782.          </span>
  13783.          -
  13784.          <span class="visually-hidden">Original price</span>
  13785.          <span class="money price__compare-at--max" data-price-compare-max>
  13786.            $99.97
  13787.          </span>
  13788.        
  13789.      </div>
  13790.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13791.        <span class="visually-hidden">Original price</span>
  13792.        <span class="money price__compare-at--single" data-price-compare>
  13793.          
  13794.        </span>
  13795.      </div>
  13796.    
  13797.  
  13798.  
  13799.  <div class="price__current price__current--emphasize " data-price-container>
  13800.  
  13801.    
  13802.  
  13803.    
  13804.      
  13805.      
  13806.      <span class="money" data-price>
  13807.        $99.97
  13808.      </span>
  13809.    
  13810.    
  13811.  </div>
  13812.  
  13813.  
  13814.    
  13815.    <div class="price__current--hidden" data-current-price-range-hidden>
  13816.      
  13817.        <span class="money price__current--min" data-price-min>$99.97</span>
  13818.        -
  13819.        <span class="money price__current--max" data-price-max>$99.97</span>
  13820.      
  13821.    </div>
  13822.    <div class="price__current--hidden" data-current-price-hidden>
  13823.      <span class="visually-hidden">Current price</span>
  13824.      <span class="money" data-price>
  13825.        $99.97
  13826.      </span>
  13827.    </div>
  13828.  
  13829.  
  13830.  
  13831.    
  13832.    
  13833.    
  13834.    
  13835.  
  13836.    <div
  13837.      class="
  13838.        productitem__unit-price
  13839.        hidden
  13840.      "
  13841.      data-unit-price
  13842.    >
  13843.      <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>
  13844.    </div>
  13845.  
  13846.  
  13847.  
  13848. </div>
  13849.  
  13850.  
  13851.        
  13852.  
  13853.        <h2 class="productitem--title">
  13854.          <a href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m" data-product-page-link>
  13855.            Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M
  13856.          </a>
  13857.        </h2>
  13858.  
  13859.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13860.        <div class="star_container 4451281286"></div>
  13861.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13862.  
  13863.        
  13864.          
  13865.            <span class="productitem--vendor">
  13866.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  13867.            </span>
  13868.          
  13869.        
  13870.  
  13871.        
  13872.  
  13873.        
  13874.          
  13875.            <div class="productitem__stock-level">
  13876.              <!--
  13877.  
  13878.  
  13879.  
  13880.  
  13881.  
  13882.  
  13883.  
  13884. <div class="product-stock-level-wrapper" >
  13885.  
  13886.    <span class="
  13887.  product-stock-level
  13888.  product-stock-level--continue-selling
  13889.  
  13890. ">
  13891.      
  13892.  
  13893.      <span class="product-stock-level__text">
  13894.        
  13895.        <div class="product-stock-level__badge-text">
  13896.          
  13897.  
  13898.    In stock
  13899.  
  13900.  
  13901.        </div>
  13902.      </span>
  13903.    </span>
  13904.  
  13905. </div>
  13906. -->
  13907.              
  13908.  
  13909.  
  13910.    
  13911.      <b style="color:green">In stock</b>
  13912.    
  13913.  
  13914.  
  13915.  
  13916.  
  13917.  
  13918.  
  13919.  
  13920.            </div>
  13921.          
  13922.  
  13923.          
  13924.            
  13925.          
  13926.        
  13927.  
  13928.        
  13929.          <div class="productitem--description">
  13930.            <p>Description: New genuine Acer laptop replacement keyboard. Canadian Bilingual layout. Part #'s: KB.I140A.114, KBI140A114, NSK-AM02M, 9J.N1P82.02M. ...</p>
  13931.  
  13932.            
  13933.              <a
  13934.                href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  13935.                class="productitem--link"
  13936.                data-product-page-link
  13937.              >
  13938.                View full details
  13939.              </a>
  13940.            
  13941.          </div>
  13942.        
  13943.      </div>
  13944.  
  13945.      
  13946.        
  13947.          
  13948.          
  13949.          
  13950.  
  13951.          
  13952.          
  13953.  
  13954.          
  13955.  
  13956.          
  13957.  
  13958.          <div class="productitem--actions" data-product-actions>
  13959.            <div class="productitem--listview-price">
  13960.              
  13961.  
  13962.  
  13963.  
  13964.  
  13965.  
  13966.  
  13967.  
  13968.  
  13969.  
  13970.  
  13971.  
  13972.  
  13973.  
  13974.  
  13975.  
  13976.  
  13977.  
  13978.  
  13979.  
  13980.  
  13981.  
  13982.  
  13983.  
  13984.  
  13985.  
  13986.  
  13987.  
  13988.  
  13989.  
  13990.  
  13991. <div class="price productitem__price ">
  13992.  
  13993.    <div
  13994.      class="price__compare-at visible"
  13995.      data-price-compare-container
  13996.    >
  13997.  
  13998.      
  13999.        <span class="money price__original" data-price-original></span>
  14000.      
  14001.    </div>
  14002.  
  14003.  
  14004.    
  14005.      
  14006.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14007.        
  14008.          <span class="visually-hidden">Original price</span>
  14009.          <span class="money price__compare-at--min" data-price-compare-min>
  14010.            $99.97
  14011.          </span>
  14012.          -
  14013.          <span class="visually-hidden">Original price</span>
  14014.          <span class="money price__compare-at--max" data-price-compare-max>
  14015.            $99.97
  14016.          </span>
  14017.        
  14018.      </div>
  14019.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14020.        <span class="visually-hidden">Original price</span>
  14021.        <span class="money price__compare-at--single" data-price-compare>
  14022.          
  14023.        </span>
  14024.      </div>
  14025.    
  14026.  
  14027.  
  14028.  <div class="price__current price__current--emphasize " data-price-container>
  14029.  
  14030.    
  14031.  
  14032.    
  14033.      
  14034.      
  14035.      <span class="money" data-price>
  14036.        $99.97
  14037.      </span>
  14038.    
  14039.    
  14040.  </div>
  14041.  
  14042.  
  14043.    
  14044.    <div class="price__current--hidden" data-current-price-range-hidden>
  14045.      
  14046.        <span class="money price__current--min" data-price-min>$99.97</span>
  14047.        -
  14048.        <span class="money price__current--max" data-price-max>$99.97</span>
  14049.      
  14050.    </div>
  14051.    <div class="price__current--hidden" data-current-price-hidden>
  14052.      <span class="visually-hidden">Current price</span>
  14053.      <span class="money" data-price>
  14054.        $99.97
  14055.      </span>
  14056.    </div>
  14057.  
  14058.  
  14059.  
  14060.    
  14061.    
  14062.    
  14063.    
  14064.  
  14065.    <div
  14066.      class="
  14067.        productitem__unit-price
  14068.        hidden
  14069.      "
  14070.      data-unit-price
  14071.    >
  14072.      <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>
  14073.    </div>
  14074.  
  14075.  
  14076.  
  14077. </div>
  14078.  
  14079.  
  14080.            </div>
  14081.  
  14082.            <div class="productitem--listview-badge">
  14083.              
  14084.  
  14085.  
  14086.  
  14087.  
  14088.  
  14089.  
  14090.  
  14091.  
  14092.  
  14093.  
  14094.  
  14095.  
  14096.  
  14097.  
  14098.  
  14099.  
  14100.  
  14101.  
  14102.  
  14103.  
  14104.  
  14105.  
  14106.  
  14107.  
  14108.  
  14109.  
  14110.  
  14111.            </div>
  14112.  
  14113.            
  14114.              <div
  14115.                class="
  14116.                  productitem--action
  14117.                  quickshop-button
  14118.                  
  14119.                "
  14120.              >
  14121.                <button
  14122.                  class="productitem--action-trigger button-secondary"
  14123.                  data-quickshop-full
  14124.                  
  14125.                  
  14126.                  type="button"
  14127.                >
  14128.                  Quick shop
  14129.                </button>
  14130.              </div>
  14131.            
  14132.  
  14133.            
  14134.              <div
  14135.                class="
  14136.                  productitem--action
  14137.                  atc--button
  14138.                  
  14139.                "
  14140.              >
  14141.                <button
  14142.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14143.                  type="button"
  14144.                  aria-label="Add to cart"
  14145.                  
  14146.                    data-quick-buy
  14147.                  
  14148.                  data-variant-id="39666363793495"
  14149.                  
  14150.                >
  14151.                  <span class="atc-button--text">
  14152.                    Add to cart
  14153.                  </span>
  14154.                  <span class="atc-button--icon"><svg
  14155.  aria-hidden="true"
  14156.  focusable="false"
  14157.  role="presentation"
  14158.  width="26"
  14159.  height="26"
  14160.  viewBox="0 0 26 26"
  14161.  xmlns="http://www.w3.org/2000/svg"
  14162. >
  14163.  <g fill-rule="nonzero" fill="currentColor">
  14164.    <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"/>
  14165.  </g>
  14166. </svg></span>
  14167.                </button>
  14168.              </div>
  14169.            
  14170.          </div>
  14171.        
  14172.      
  14173.    </div>
  14174.  </div>
  14175.  
  14176.  
  14177.    <script type="application/json" data-quick-buy-settings>
  14178.      {
  14179.        "cart_redirection": true,
  14180.        "money_format": "${{amount}}"
  14181.      }
  14182.    </script>
  14183.  
  14184. </li>
  14185.    
  14186.      
  14187.  
  14188.  
  14189.  
  14190.  
  14191.  
  14192.  
  14193.  
  14194.  
  14195.  
  14196.  
  14197.  
  14198.  
  14199.  
  14200.  
  14201.  
  14202.  
  14203.  
  14204.  
  14205.  
  14206.  
  14207.  
  14208.  
  14209.  
  14210.  
  14211.  
  14212.  
  14213.  
  14214.  
  14215.  
  14216.  
  14217.  
  14218.  
  14219.    
  14220.  
  14221.  
  14222.  
  14223. <li
  14224.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14225.  data-product-item
  14226.  data-product-quickshop-url="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  14227.  
  14228. >
  14229.  <div class="productitem" data-product-item-content>
  14230.    
  14231.    
  14232.    
  14233.    
  14234.  
  14235.    
  14236.  
  14237.    
  14238.  
  14239.    <div class="productitem__container">
  14240.      
  14241.  
  14242.      <div class="productitem__image-container">
  14243.        <a target="_blank"
  14244.          class="productitem--image-link"
  14245.          href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  14246.          aria-label="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  14247.          tabindex="-1"
  14248.          data-product-page-link
  14249.        >
  14250.          <figure
  14251.            class="productitem--image"
  14252.            data-product-item-image
  14253.            
  14254.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14255.            
  14256.          >
  14257.            
  14258.              
  14259.              
  14260.  
  14261.  
  14262.    <noscript data-rimg-noscript>
  14263.      <img loading="lazy"
  14264.        
  14265.          src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1762533658"
  14266.        
  14267.  
  14268.        alt="Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210 - LaptopParts.ca"
  14269.        data-rimg="noscript"
  14270.        srcset="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1762533658 1x, //laptopparts.ca/cdn/shop/products/33.paa02.007_650x650.jpg?v=1762533658 1.27x"
  14271.        class="productitem--image-primary"
  14272.        
  14273.        
  14274.      >
  14275.    </noscript>
  14276.  
  14277.  
  14278.  <img loading="lazy"
  14279.    
  14280.      src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1762533658"
  14281.    
  14282.    alt="Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210 - LaptopParts.ca"
  14283.  
  14284.    
  14285.      data-rimg="lazy"
  14286.      data-rimg-scale="1"
  14287.      data-rimg-template="//laptopparts.ca/cdn/shop/products/33.paa02.007_{size}.jpg?v=1762533658"
  14288.      data-rimg-max="655x655"
  14289.      data-rimg-crop="false"
  14290.      
  14291.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  14292.    
  14293.  
  14294.    class="productitem--image-primary"
  14295.    
  14296.    
  14297.  >
  14298.  
  14299.  
  14300.  
  14301.  <div data-rimg-canvas></div>
  14302.  
  14303.  
  14304.            
  14305.  
  14306.            
  14307.  
  14308.  
  14309.  
  14310.  
  14311.  
  14312.  
  14313.  
  14314.  
  14315.  
  14316.  
  14317.  
  14318.  
  14319.  
  14320.  
  14321.  
  14322.  
  14323.  
  14324.  
  14325.  
  14326.  
  14327.  
  14328.  
  14329.  
  14330.  
  14331.  
  14332.  
  14333.  
  14334.          </figure>
  14335.        </a>
  14336.      </div><div class="productitem--info">
  14337.        
  14338.          
  14339.  
  14340.        
  14341.  
  14342.        
  14343.          
  14344.  
  14345.  
  14346.  
  14347.  
  14348.  
  14349.  
  14350.  
  14351.  
  14352.  
  14353.  
  14354.  
  14355.  
  14356.  
  14357.  
  14358.  
  14359.  
  14360.  
  14361.  
  14362.  
  14363.  
  14364.  
  14365.  
  14366.  
  14367.  
  14368.  
  14369.  
  14370.  
  14371.  
  14372.  
  14373.  
  14374. <div class="price productitem__price ">
  14375.  
  14376.    <div
  14377.      class="price__compare-at visible"
  14378.      data-price-compare-container
  14379.    >
  14380.  
  14381.      
  14382.        <span class="money price__original" data-price-original></span>
  14383.      
  14384.    </div>
  14385.  
  14386.  
  14387.    
  14388.      
  14389.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14390.        
  14391.          <span class="visually-hidden">Original price</span>
  14392.          <span class="money price__compare-at--min" data-price-compare-min>
  14393.            $75.97
  14394.          </span>
  14395.          -
  14396.          <span class="visually-hidden">Original price</span>
  14397.          <span class="money price__compare-at--max" data-price-compare-max>
  14398.            $75.97
  14399.          </span>
  14400.        
  14401.      </div>
  14402.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14403.        <span class="visually-hidden">Original price</span>
  14404.        <span class="money price__compare-at--single" data-price-compare>
  14405.          
  14406.        </span>
  14407.      </div>
  14408.    
  14409.  
  14410.  
  14411.  <div class="price__current price__current--emphasize " data-price-container>
  14412.  
  14413.    
  14414.  
  14415.    
  14416.      
  14417.      
  14418.      <span class="money" data-price>
  14419.        $75.97
  14420.      </span>
  14421.    
  14422.    
  14423.  </div>
  14424.  
  14425.  
  14426.    
  14427.    <div class="price__current--hidden" data-current-price-range-hidden>
  14428.      
  14429.        <span class="money price__current--min" data-price-min>$75.97</span>
  14430.        -
  14431.        <span class="money price__current--max" data-price-max>$75.97</span>
  14432.      
  14433.    </div>
  14434.    <div class="price__current--hidden" data-current-price-hidden>
  14435.      <span class="visually-hidden">Current price</span>
  14436.      <span class="money" data-price>
  14437.        $75.97
  14438.      </span>
  14439.    </div>
  14440.  
  14441.  
  14442.  
  14443.    
  14444.    
  14445.    
  14446.    
  14447.  
  14448.    <div
  14449.      class="
  14450.        productitem__unit-price
  14451.        hidden
  14452.      "
  14453.      data-unit-price
  14454.    >
  14455.      <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>
  14456.    </div>
  14457.  
  14458.  
  14459.  
  14460. </div>
  14461.  
  14462.  
  14463.        
  14464.  
  14465.        <h2 class="productitem--title">
  14466.          <a href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210" data-product-page-link>
  14467.            Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210
  14468.          </a>
  14469.        </h2>
  14470.  
  14471.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  14472.        <div class="star_container 243102056471"></div>
  14473.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  14474.  
  14475.        
  14476.          
  14477.            <span class="productitem--vendor">
  14478.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  14479.            </span>
  14480.          
  14481.        
  14482.  
  14483.        
  14484.  
  14485.        
  14486.          
  14487.            <div class="productitem__stock-level">
  14488.              <!--
  14489.  
  14490.  
  14491.  
  14492.  
  14493.  
  14494.  
  14495.  
  14496. <div class="product-stock-level-wrapper" >
  14497.  
  14498.    <span class="
  14499.  product-stock-level
  14500.  product-stock-level--continue-selling
  14501.  
  14502. ">
  14503.      
  14504.  
  14505.      <span class="product-stock-level__text">
  14506.        
  14507.        <div class="product-stock-level__badge-text">
  14508.          
  14509.  
  14510.    In stock
  14511.  
  14512.  
  14513.        </div>
  14514.      </span>
  14515.    </span>
  14516.  
  14517. </div>
  14518. -->
  14519.              
  14520.  
  14521.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  14522.  
  14523.  
  14524.  
  14525.  
  14526.  
  14527.  
  14528.  
  14529.            </div>
  14530.          
  14531.  
  14532.          
  14533.            
  14534.          
  14535.        
  14536.  
  14537.        
  14538.          <div class="productitem--description">
  14539.            <p>Description: New genuine Acer laptop hinge and bracket set.
  14540. Part #'s: 33.PAA02.007, 091203 240, 091221 210.
  14541. Compatible Models: Acer Aspire 4235, 42...</p>
  14542.  
  14543.            
  14544.              <a
  14545.                href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  14546.                class="productitem--link"
  14547.                data-product-page-link
  14548.              >
  14549.                View full details
  14550.              </a>
  14551.            
  14552.          </div>
  14553.        
  14554.      </div>
  14555.  
  14556.      
  14557.        
  14558.          
  14559.          
  14560.          
  14561.  
  14562.          
  14563.          
  14564.  
  14565.          
  14566.  
  14567.          
  14568.  
  14569.          <div class="productitem--actions" data-product-actions>
  14570.            <div class="productitem--listview-price">
  14571.              
  14572.  
  14573.  
  14574.  
  14575.  
  14576.  
  14577.  
  14578.  
  14579.  
  14580.  
  14581.  
  14582.  
  14583.  
  14584.  
  14585.  
  14586.  
  14587.  
  14588.  
  14589.  
  14590.  
  14591.  
  14592.  
  14593.  
  14594.  
  14595.  
  14596.  
  14597.  
  14598.  
  14599.  
  14600.  
  14601.  
  14602. <div class="price productitem__price ">
  14603.  
  14604.    <div
  14605.      class="price__compare-at visible"
  14606.      data-price-compare-container
  14607.    >
  14608.  
  14609.      
  14610.        <span class="money price__original" data-price-original></span>
  14611.      
  14612.    </div>
  14613.  
  14614.  
  14615.    
  14616.      
  14617.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14618.        
  14619.          <span class="visually-hidden">Original price</span>
  14620.          <span class="money price__compare-at--min" data-price-compare-min>
  14621.            $75.97
  14622.          </span>
  14623.          -
  14624.          <span class="visually-hidden">Original price</span>
  14625.          <span class="money price__compare-at--max" data-price-compare-max>
  14626.            $75.97
  14627.          </span>
  14628.        
  14629.      </div>
  14630.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14631.        <span class="visually-hidden">Original price</span>
  14632.        <span class="money price__compare-at--single" data-price-compare>
  14633.          
  14634.        </span>
  14635.      </div>
  14636.    
  14637.  
  14638.  
  14639.  <div class="price__current price__current--emphasize " data-price-container>
  14640.  
  14641.    
  14642.  
  14643.    
  14644.      
  14645.      
  14646.      <span class="money" data-price>
  14647.        $75.97
  14648.      </span>
  14649.    
  14650.    
  14651.  </div>
  14652.  
  14653.  
  14654.    
  14655.    <div class="price__current--hidden" data-current-price-range-hidden>
  14656.      
  14657.        <span class="money price__current--min" data-price-min>$75.97</span>
  14658.        -
  14659.        <span class="money price__current--max" data-price-max>$75.97</span>
  14660.      
  14661.    </div>
  14662.    <div class="price__current--hidden" data-current-price-hidden>
  14663.      <span class="visually-hidden">Current price</span>
  14664.      <span class="money" data-price>
  14665.        $75.97
  14666.      </span>
  14667.    </div>
  14668.  
  14669.  
  14670.  
  14671.    
  14672.    
  14673.    
  14674.    
  14675.  
  14676.    <div
  14677.      class="
  14678.        productitem__unit-price
  14679.        hidden
  14680.      "
  14681.      data-unit-price
  14682.    >
  14683.      <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>
  14684.    </div>
  14685.  
  14686.  
  14687.  
  14688. </div>
  14689.  
  14690.  
  14691.            </div>
  14692.  
  14693.            <div class="productitem--listview-badge">
  14694.              
  14695.  
  14696.  
  14697.  
  14698.  
  14699.  
  14700.  
  14701.  
  14702.  
  14703.  
  14704.  
  14705.  
  14706.  
  14707.  
  14708.  
  14709.  
  14710.  
  14711.  
  14712.  
  14713.  
  14714.  
  14715.  
  14716.  
  14717.  
  14718.  
  14719.  
  14720.  
  14721.  
  14722.            </div>
  14723.  
  14724.            
  14725.              <div
  14726.                class="
  14727.                  productitem--action
  14728.                  quickshop-button
  14729.                  
  14730.                "
  14731.              >
  14732.                <button
  14733.                  class="productitem--action-trigger button-secondary"
  14734.                  data-quickshop-full
  14735.                  
  14736.                  
  14737.                  type="button"
  14738.                >
  14739.                  Quick shop
  14740.                </button>
  14741.              </div>
  14742.            
  14743.  
  14744.            
  14745.              <div
  14746.                class="
  14747.                  productitem--action
  14748.                  atc--button
  14749.                  
  14750.                "
  14751.              >
  14752.                <button
  14753.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14754.                  type="button"
  14755.                  aria-label="Add to cart"
  14756.                  
  14757.                    data-quick-buy
  14758.                  
  14759.                  data-variant-id="2838819504151"
  14760.                  
  14761.                >
  14762.                  <span class="atc-button--text">
  14763.                    Add to cart
  14764.                  </span>
  14765.                  <span class="atc-button--icon"><svg
  14766.  aria-hidden="true"
  14767.  focusable="false"
  14768.  role="presentation"
  14769.  width="26"
  14770.  height="26"
  14771.  viewBox="0 0 26 26"
  14772.  xmlns="http://www.w3.org/2000/svg"
  14773. >
  14774.  <g fill-rule="nonzero" fill="currentColor">
  14775.    <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"/>
  14776.  </g>
  14777. </svg></span>
  14778.                </button>
  14779.              </div>
  14780.            
  14781.          </div>
  14782.        
  14783.      
  14784.    </div>
  14785.  </div>
  14786.  
  14787.  
  14788.    <script type="application/json" data-quick-buy-settings>
  14789.      {
  14790.        "cart_redirection": true,
  14791.        "money_format": "${{amount}}"
  14792.      }
  14793.    </script>
  14794.  
  14795. </li>
  14796.    
  14797.      
  14798.  
  14799.  
  14800.  
  14801.  
  14802.  
  14803.  
  14804.  
  14805.  
  14806.  
  14807.  
  14808.  
  14809.  
  14810.  
  14811.  
  14812.  
  14813.  
  14814.  
  14815.  
  14816.  
  14817.  
  14818.  
  14819.  
  14820.  
  14821.  
  14822.  
  14823.  
  14824.  
  14825.  
  14826.  
  14827.  
  14828.  
  14829.  
  14830.    
  14831.  
  14832.  
  14833.  
  14834. <li
  14835.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14836.  data-product-item
  14837.  data-product-quickshop-url="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  14838.  
  14839. >
  14840.  <div class="productitem" data-product-item-content>
  14841.    
  14842.    
  14843.    
  14844.    
  14845.  
  14846.    
  14847.  
  14848.    
  14849.  
  14850.    <div class="productitem__container">
  14851.      
  14852.  
  14853.      <div class="productitem__image-container">
  14854.        <a target="_blank"
  14855.          class="productitem--image-link"
  14856.          href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  14857.          aria-label="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  14858.          tabindex="-1"
  14859.          data-product-page-link
  14860.        >
  14861.          <figure
  14862.            class="productitem--image"
  14863.            data-product-item-image
  14864.            
  14865.              style="--product-grid-item-image-aspect-ratio: 0.5231513476157568;"
  14866.            
  14867.          >
  14868.            
  14869.              
  14870.              
  14871.  
  14872.  
  14873.    <noscript data-rimg-noscript>
  14874.      <img loading="lazy"
  14875.        
  14876.          src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1762542965"
  14877.        
  14878.  
  14879.        alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  14880.        data-rimg="noscript"
  14881.        srcset="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1762542965 1x, //laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_753x1439.jpg?v=1762542965 1.47x"
  14882.        class="productitem--image-primary"
  14883.        
  14884.        
  14885.      >
  14886.    </noscript>
  14887.  
  14888.  
  14889.  <img loading="lazy"
  14890.    
  14891.      src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1762542965"
  14892.    
  14893.    alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  14894.  
  14895.    
  14896.      data-rimg="lazy"
  14897.      data-rimg-scale="1"
  14898.      data-rimg-template="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_{size}.jpg?v=1762542965"
  14899.      data-rimg-max="757x1447"
  14900.      data-rimg-crop="false"
  14901.      
  14902.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='979'></svg>"
  14903.    
  14904.  
  14905.    class="productitem--image-primary"
  14906.    
  14907.    
  14908.  >
  14909.  
  14910.  
  14911.  
  14912.  <div data-rimg-canvas></div>
  14913.  
  14914.  
  14915.            
  14916.  
  14917.            
  14918.  
  14919.  
  14920.  
  14921.  
  14922.  
  14923.  
  14924.  
  14925.  
  14926.  
  14927.  
  14928.  
  14929.  
  14930.  
  14931.  
  14932.  
  14933.  
  14934.  
  14935.  
  14936.  
  14937.  
  14938.  
  14939.  
  14940.  
  14941.  
  14942.  
  14943.  
  14944.  
  14945.          </figure>
  14946.        </a>
  14947.      </div><div class="productitem--info">
  14948.        
  14949.          
  14950.  
  14951.        
  14952.  
  14953.        
  14954.          
  14955.  
  14956.  
  14957.  
  14958.  
  14959.  
  14960.  
  14961.  
  14962.  
  14963.  
  14964.  
  14965.  
  14966.  
  14967.  
  14968.  
  14969.  
  14970.  
  14971.  
  14972.  
  14973.  
  14974.  
  14975.  
  14976.  
  14977.  
  14978.  
  14979.  
  14980.  
  14981.  
  14982.  
  14983.  
  14984.  
  14985. <div class="price productitem__price ">
  14986.  
  14987.    <div
  14988.      class="price__compare-at visible"
  14989.      data-price-compare-container
  14990.    >
  14991.  
  14992.      
  14993.        <span class="money price__original" data-price-original></span>
  14994.      
  14995.    </div>
  14996.  
  14997.  
  14998.    
  14999.      
  15000.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15001.        
  15002.          <span class="visually-hidden">Original price</span>
  15003.          <span class="money price__compare-at--min" data-price-compare-min>
  15004.            $39.99
  15005.          </span>
  15006.          -
  15007.          <span class="visually-hidden">Original price</span>
  15008.          <span class="money price__compare-at--max" data-price-compare-max>
  15009.            $39.99
  15010.          </span>
  15011.        
  15012.      </div>
  15013.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15014.        <span class="visually-hidden">Original price</span>
  15015.        <span class="money price__compare-at--single" data-price-compare>
  15016.          
  15017.        </span>
  15018.      </div>
  15019.    
  15020.  
  15021.  
  15022.  <div class="price__current price__current--emphasize " data-price-container>
  15023.  
  15024.    
  15025.  
  15026.    
  15027.      
  15028.      
  15029.      <span class="money" data-price>
  15030.        $39.99
  15031.      </span>
  15032.    
  15033.    
  15034.  </div>
  15035.  
  15036.  
  15037.    
  15038.    <div class="price__current--hidden" data-current-price-range-hidden>
  15039.      
  15040.        <span class="money price__current--min" data-price-min>$39.99</span>
  15041.        -
  15042.        <span class="money price__current--max" data-price-max>$39.99</span>
  15043.      
  15044.    </div>
  15045.    <div class="price__current--hidden" data-current-price-hidden>
  15046.      <span class="visually-hidden">Current price</span>
  15047.      <span class="money" data-price>
  15048.        $39.99
  15049.      </span>
  15050.    </div>
  15051.  
  15052.  
  15053.  
  15054.    
  15055.    
  15056.    
  15057.    
  15058.  
  15059.    <div
  15060.      class="
  15061.        productitem__unit-price
  15062.        hidden
  15063.      "
  15064.      data-unit-price
  15065.    >
  15066.      <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>
  15067.    </div>
  15068.  
  15069.  
  15070.  
  15071. </div>
  15072.  
  15073.  
  15074.        
  15075.  
  15076.        <h2 class="productitem--title">
  15077.          <a href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set" data-product-page-link>
  15078.            Acer Aspire 5 A515-41 A515-41G A515-51 A515-51G Right & Left Lcd Hinge Set 33.GP4N2.003
  15079.          </a>
  15080.        </h2>
  15081.  
  15082.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15083.        <div class="star_container 1468469608471"></div>
  15084.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15085.  
  15086.        
  15087.          
  15088.            <span class="productitem--vendor">
  15089.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15090.            </span>
  15091.          
  15092.        
  15093.  
  15094.        
  15095.  
  15096.        
  15097.          
  15098.            <div class="productitem__stock-level">
  15099.              <!--
  15100.  
  15101.  
  15102.  
  15103.  
  15104.  
  15105.  
  15106.  
  15107. <div class="product-stock-level-wrapper" >
  15108.  
  15109.    <span class="
  15110.  product-stock-level
  15111.  product-stock-level--continue-selling
  15112.  
  15113. ">
  15114.      
  15115.  
  15116.      <span class="product-stock-level__text">
  15117.        
  15118.        <div class="product-stock-level__badge-text">
  15119.          
  15120.  
  15121.    In stock
  15122.  
  15123.  
  15124.        </div>
  15125.      </span>
  15126.    </span>
  15127.  
  15128. </div>
  15129. -->
  15130.              
  15131.  
  15132.  
  15133.    
  15134.      <b style="color:green">In stock</b>
  15135.    
  15136.  
  15137.  
  15138.  
  15139.  
  15140.  
  15141.  
  15142.  
  15143.            </div>
  15144.          
  15145.  
  15146.          
  15147.            
  15148.          
  15149.        
  15150.  
  15151.        
  15152.          <div class="productitem--description">
  15153.            <p>
  15154. Description: New Acer right and left laptop lcd hinge set.
  15155.  
  15156.  
  15157. Compatible Part #'s: 33.GP4N2.003, 33.GP4N2.004Compatible Models:Acer Aspire 3 A315-...</p>
  15158.  
  15159.            
  15160.              <a
  15161.                href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  15162.                class="productitem--link"
  15163.                data-product-page-link
  15164.              >
  15165.                View full details
  15166.              </a>
  15167.            
  15168.          </div>
  15169.        
  15170.      </div>
  15171.  
  15172.      
  15173.        
  15174.          
  15175.          
  15176.          
  15177.  
  15178.          
  15179.          
  15180.  
  15181.          
  15182.  
  15183.          
  15184.  
  15185.          <div class="productitem--actions" data-product-actions>
  15186.            <div class="productitem--listview-price">
  15187.              
  15188.  
  15189.  
  15190.  
  15191.  
  15192.  
  15193.  
  15194.  
  15195.  
  15196.  
  15197.  
  15198.  
  15199.  
  15200.  
  15201.  
  15202.  
  15203.  
  15204.  
  15205.  
  15206.  
  15207.  
  15208.  
  15209.  
  15210.  
  15211.  
  15212.  
  15213.  
  15214.  
  15215.  
  15216.  
  15217.  
  15218. <div class="price productitem__price ">
  15219.  
  15220.    <div
  15221.      class="price__compare-at visible"
  15222.      data-price-compare-container
  15223.    >
  15224.  
  15225.      
  15226.        <span class="money price__original" data-price-original></span>
  15227.      
  15228.    </div>
  15229.  
  15230.  
  15231.    
  15232.      
  15233.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15234.        
  15235.          <span class="visually-hidden">Original price</span>
  15236.          <span class="money price__compare-at--min" data-price-compare-min>
  15237.            $39.99
  15238.          </span>
  15239.          -
  15240.          <span class="visually-hidden">Original price</span>
  15241.          <span class="money price__compare-at--max" data-price-compare-max>
  15242.            $39.99
  15243.          </span>
  15244.        
  15245.      </div>
  15246.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15247.        <span class="visually-hidden">Original price</span>
  15248.        <span class="money price__compare-at--single" data-price-compare>
  15249.          
  15250.        </span>
  15251.      </div>
  15252.    
  15253.  
  15254.  
  15255.  <div class="price__current price__current--emphasize " data-price-container>
  15256.  
  15257.    
  15258.  
  15259.    
  15260.      
  15261.      
  15262.      <span class="money" data-price>
  15263.        $39.99
  15264.      </span>
  15265.    
  15266.    
  15267.  </div>
  15268.  
  15269.  
  15270.    
  15271.    <div class="price__current--hidden" data-current-price-range-hidden>
  15272.      
  15273.        <span class="money price__current--min" data-price-min>$39.99</span>
  15274.        -
  15275.        <span class="money price__current--max" data-price-max>$39.99</span>
  15276.      
  15277.    </div>
  15278.    <div class="price__current--hidden" data-current-price-hidden>
  15279.      <span class="visually-hidden">Current price</span>
  15280.      <span class="money" data-price>
  15281.        $39.99
  15282.      </span>
  15283.    </div>
  15284.  
  15285.  
  15286.  
  15287.    
  15288.    
  15289.    
  15290.    
  15291.  
  15292.    <div
  15293.      class="
  15294.        productitem__unit-price
  15295.        hidden
  15296.      "
  15297.      data-unit-price
  15298.    >
  15299.      <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>
  15300.    </div>
  15301.  
  15302.  
  15303.  
  15304. </div>
  15305.  
  15306.  
  15307.            </div>
  15308.  
  15309.            <div class="productitem--listview-badge">
  15310.              
  15311.  
  15312.  
  15313.  
  15314.  
  15315.  
  15316.  
  15317.  
  15318.  
  15319.  
  15320.  
  15321.  
  15322.  
  15323.  
  15324.  
  15325.  
  15326.  
  15327.  
  15328.  
  15329.  
  15330.  
  15331.  
  15332.  
  15333.  
  15334.  
  15335.  
  15336.  
  15337.  
  15338.            </div>
  15339.  
  15340.            
  15341.              <div
  15342.                class="
  15343.                  productitem--action
  15344.                  quickshop-button
  15345.                  
  15346.                "
  15347.              >
  15348.                <button
  15349.                  class="productitem--action-trigger button-secondary"
  15350.                  data-quickshop-full
  15351.                  
  15352.                  
  15353.                  type="button"
  15354.                >
  15355.                  Quick shop
  15356.                </button>
  15357.              </div>
  15358.            
  15359.  
  15360.            
  15361.              <div
  15362.                class="
  15363.                  productitem--action
  15364.                  atc--button
  15365.                  
  15366.                "
  15367.              >
  15368.                <button
  15369.                  class="productitem--action-trigger productitem--action-atc button-primary"
  15370.                  type="button"
  15371.                  aria-label="Add to cart"
  15372.                  
  15373.                    data-quick-buy
  15374.                  
  15375.                  data-variant-id="12807718895639"
  15376.                  
  15377.                >
  15378.                  <span class="atc-button--text">
  15379.                    Add to cart
  15380.                  </span>
  15381.                  <span class="atc-button--icon"><svg
  15382.  aria-hidden="true"
  15383.  focusable="false"
  15384.  role="presentation"
  15385.  width="26"
  15386.  height="26"
  15387.  viewBox="0 0 26 26"
  15388.  xmlns="http://www.w3.org/2000/svg"
  15389. >
  15390.  <g fill-rule="nonzero" fill="currentColor">
  15391.    <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"/>
  15392.  </g>
  15393. </svg></span>
  15394.                </button>
  15395.              </div>
  15396.            
  15397.          </div>
  15398.        
  15399.      
  15400.    </div>
  15401.  </div>
  15402.  
  15403.  
  15404.    <script type="application/json" data-quick-buy-settings>
  15405.      {
  15406.        "cart_redirection": true,
  15407.        "money_format": "${{amount}}"
  15408.      }
  15409.    </script>
  15410.  
  15411. </li>
  15412.    
  15413.      
  15414.  
  15415.  
  15416.  
  15417.  
  15418.  
  15419.  
  15420.  
  15421.  
  15422.  
  15423.  
  15424.  
  15425.  
  15426.  
  15427.  
  15428.  
  15429.  
  15430.  
  15431.  
  15432.  
  15433.  
  15434.  
  15435.  
  15436.  
  15437.  
  15438.  
  15439.  
  15440.  
  15441.  
  15442.  
  15443.  
  15444.  
  15445.  
  15446.    
  15447.  
  15448.  
  15449.  
  15450. <li
  15451.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  15452.  data-product-item
  15453.  data-product-quickshop-url="/products/acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a-1"
  15454.  
  15455. >
  15456.  <div class="productitem" data-product-item-content>
  15457.    
  15458.    
  15459.    
  15460.    
  15461.  
  15462.    
  15463.  
  15464.    
  15465.  
  15466.    <div class="productitem__container">
  15467.      
  15468.  
  15469.      <div class="productitem__image-container">
  15470.        <a target="_blank"
  15471.          class="productitem--image-link"
  15472.          href="/products/acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a-1"
  15473.          aria-label="/products/acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a-1"
  15474.          tabindex="-1"
  15475.          data-product-page-link
  15476.        >
  15477.          <figure
  15478.            class="productitem--image"
  15479.            data-product-item-image
  15480.            
  15481.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  15482.            
  15483.          >
  15484.            
  15485.              
  15486.              
  15487.  
  15488.  
  15489.    <noscript data-rimg-noscript>
  15490.      <img loading="lazy"
  15491.        
  15492.          src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1762527018"
  15493.        
  15494.  
  15495.        alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  15496.        data-rimg="noscript"
  15497.        srcset="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1762527018 1x, //laptopparts.ca/cdn/shop/products/23.apq0n.001_599x599.jpg?v=1762527018 1.17x"
  15498.        class="productitem--image-primary"
  15499.        
  15500.        
  15501.      >
  15502.    </noscript>
  15503.  
  15504.  
  15505.  <img loading="lazy"
  15506.    
  15507.      src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1762527018"
  15508.    
  15509.    alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  15510.  
  15511.    
  15512.      data-rimg="lazy"
  15513.      data-rimg-scale="1"
  15514.      data-rimg-template="//laptopparts.ca/cdn/shop/products/23.apq0n.001_{size}.jpg?v=1762527018"
  15515.      data-rimg-max="600x600"
  15516.      data-rimg-crop="false"
  15517.      
  15518.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  15519.    
  15520.  
  15521.    class="productitem--image-primary"
  15522.    
  15523.    
  15524.  >
  15525.  
  15526.  
  15527.  
  15528.  <div data-rimg-canvas></div>
  15529.  
  15530.  
  15531.            
  15532.  
  15533.            
  15534.  
  15535.  
  15536.  
  15537.  
  15538.  
  15539.  
  15540.  
  15541.  
  15542.  
  15543.  
  15544.  
  15545.  
  15546.  
  15547.  
  15548.  
  15549.  
  15550.  
  15551.  
  15552.  
  15553.  
  15554.  
  15555.  
  15556.  
  15557.  
  15558.  
  15559.  
  15560.  
  15561.          </figure>
  15562.        </a>
  15563.      </div><div class="productitem--info">
  15564.        
  15565.          
  15566.  
  15567.        
  15568.  
  15569.        
  15570.          
  15571.  
  15572.  
  15573.  
  15574.  
  15575.  
  15576.  
  15577.  
  15578.  
  15579.  
  15580.  
  15581.  
  15582.  
  15583.  
  15584.  
  15585.  
  15586.  
  15587.  
  15588.  
  15589.  
  15590.  
  15591.  
  15592.  
  15593.  
  15594.  
  15595.  
  15596.  
  15597.  
  15598.  
  15599.  
  15600.  
  15601. <div class="price productitem__price ">
  15602.  
  15603.    <div
  15604.      class="price__compare-at visible"
  15605.      data-price-compare-container
  15606.    >
  15607.  
  15608.      
  15609.        <span class="money price__original" data-price-original></span>
  15610.      
  15611.    </div>
  15612.  
  15613.  
  15614.    
  15615.      
  15616.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15617.        
  15618.          <span class="visually-hidden">Original price</span>
  15619.          <span class="money price__compare-at--min" data-price-compare-min>
  15620.            $66.97
  15621.          </span>
  15622.          -
  15623.          <span class="visually-hidden">Original price</span>
  15624.          <span class="money price__compare-at--max" data-price-compare-max>
  15625.            $66.97
  15626.          </span>
  15627.        
  15628.      </div>
  15629.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15630.        <span class="visually-hidden">Original price</span>
  15631.        <span class="money price__compare-at--single" data-price-compare>
  15632.          
  15633.        </span>
  15634.      </div>
  15635.    
  15636.  
  15637.  
  15638.  <div class="price__current price__current--emphasize " data-price-container>
  15639.  
  15640.    
  15641.  
  15642.    
  15643.      
  15644.      
  15645.      <span class="money" data-price>
  15646.        $66.97
  15647.      </span>
  15648.    
  15649.    
  15650.  </div>
  15651.  
  15652.  
  15653.    
  15654.    <div class="price__current--hidden" data-current-price-range-hidden>
  15655.      
  15656.        <span class="money price__current--min" data-price-min>$66.97</span>
  15657.        -
  15658.        <span class="money price__current--max" data-price-max>$66.97</span>
  15659.      
  15660.    </div>
  15661.    <div class="price__current--hidden" data-current-price-hidden>
  15662.      <span class="visually-hidden">Current price</span>
  15663.      <span class="money" data-price>
  15664.        $66.97
  15665.      </span>
  15666.    </div>
  15667.  
  15668.  
  15669.  
  15670.    
  15671.    
  15672.    
  15673.    
  15674.  
  15675.    <div
  15676.      class="
  15677.        productitem__unit-price
  15678.        hidden
  15679.      "
  15680.      data-unit-price
  15681.    >
  15682.      <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>
  15683.    </div>
  15684.  
  15685.  
  15686.  
  15687. </div>
  15688.  
  15689.  
  15690.        
  15691.  
  15692.        <h2 class="productitem--title">
  15693.          <a href="/products/acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a-1" data-product-page-link>
  15694.            Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A
  15695.          </a>
  15696.        </h2>
  15697.  
  15698.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15699.        <div class="star_container 4451325446"></div>
  15700.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15701.  
  15702.        
  15703.          
  15704.            <span class="productitem--vendor">
  15705.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15706.            </span>
  15707.          
  15708.        
  15709.  
  15710.        
  15711.  
  15712.        
  15713.          
  15714.            <div class="productitem__stock-level">
  15715.              <!--
  15716.  
  15717.  
  15718.  
  15719.  
  15720.  
  15721.  
  15722.  
  15723. <div class="product-stock-level-wrapper" >
  15724.  
  15725.    <span class="
  15726.  product-stock-level
  15727.  product-stock-level--continue-selling
  15728.  
  15729. ">
  15730.      
  15731.  
  15732.      <span class="product-stock-level__text">
  15733.        
  15734.        <div class="product-stock-level__badge-text">
  15735.          
  15736.  
  15737.    In stock
  15738.  
  15739.  
  15740.        </div>
  15741.      </span>
  15742.    </span>
  15743.  
  15744. </div>
  15745. -->
  15746.              
  15747.  
  15748.  
  15749.    
  15750.      <b style="color:green">In stock</b>
  15751.    
  15752.  
  15753.  
  15754.  
  15755.  
  15756.  
  15757.  
  15758.  
  15759.            </div>
  15760.          
  15761.  
  15762.          
  15763.            
  15764.          
  15765.        
  15766.  
  15767.        
  15768.          <div class="productitem--description">
  15769.            <p>Genuine Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A</p>
  15770.  
  15771.            
  15772.          </div>
  15773.        
  15774.      </div>
  15775.  
  15776.      
  15777.        
  15778.          
  15779.          
  15780.          
  15781.  
  15782.          
  15783.          
  15784.  
  15785.          
  15786.  
  15787.          
  15788.  
  15789.          <div class="productitem--actions" data-product-actions>
  15790.            <div class="productitem--listview-price">
  15791.              
  15792.  
  15793.  
  15794.  
  15795.  
  15796.  
  15797.  
  15798.  
  15799.  
  15800.  
  15801.  
  15802.  
  15803.  
  15804.  
  15805.  
  15806.  
  15807.  
  15808.  
  15809.  
  15810.  
  15811.  
  15812.  
  15813.  
  15814.  
  15815.  
  15816.  
  15817.  
  15818.  
  15819.  
  15820.  
  15821.  
  15822. <div class="price productitem__price ">
  15823.  
  15824.    <div
  15825.      class="price__compare-at visible"
  15826.      data-price-compare-container
  15827.    >
  15828.  
  15829.      
  15830.        <span class="money price__original" data-price-original></span>
  15831.      
  15832.    </div>
  15833.  
  15834.  
  15835.    
  15836.      
  15837.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15838.        
  15839.          <span class="visually-hidden">Original price</span>
  15840.          <span class="money price__compare-at--min" data-price-compare-min>
  15841.            $66.97
  15842.          </span>
  15843.          -
  15844.          <span class="visually-hidden">Original price</span>
  15845.          <span class="money price__compare-at--max" data-price-compare-max>
  15846.            $66.97
  15847.          </span>
  15848.        
  15849.      </div>
  15850.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15851.        <span class="visually-hidden">Original price</span>
  15852.        <span class="money price__compare-at--single" data-price-compare>
  15853.          
  15854.        </span>
  15855.      </div>
  15856.    
  15857.  
  15858.  
  15859.  <div class="price__current price__current--emphasize " data-price-container>
  15860.  
  15861.    
  15862.  
  15863.    
  15864.      
  15865.      
  15866.      <span class="money" data-price>
  15867.        $66.97
  15868.      </span>
  15869.    
  15870.    
  15871.  </div>
  15872.  
  15873.  
  15874.    
  15875.    <div class="price__current--hidden" data-current-price-range-hidden>
  15876.      
  15877.        <span class="money price__current--min" data-price-min>$66.97</span>
  15878.        -
  15879.        <span class="money price__current--max" data-price-max>$66.97</span>
  15880.      
  15881.    </div>
  15882.    <div class="price__current--hidden" data-current-price-hidden>
  15883.      <span class="visually-hidden">Current price</span>
  15884.      <span class="money" data-price>
  15885.        $66.97
  15886.      </span>
  15887.    </div>
  15888.  
  15889.  
  15890.  
  15891.    
  15892.    
  15893.    
  15894.    
  15895.  
  15896.    <div
  15897.      class="
  15898.        productitem__unit-price
  15899.        hidden
  15900.      "
  15901.      data-unit-price
  15902.    >
  15903.      <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>
  15904.    </div>
  15905.  
  15906.  
  15907.  
  15908. </div>
  15909.  
  15910.  
  15911.            </div>
  15912.  
  15913.            <div class="productitem--listview-badge">
  15914.              
  15915.  
  15916.  
  15917.  
  15918.  
  15919.  
  15920.  
  15921.  
  15922.  
  15923.  
  15924.  
  15925.  
  15926.  
  15927.  
  15928.  
  15929.  
  15930.  
  15931.  
  15932.  
  15933.  
  15934.  
  15935.  
  15936.  
  15937.  
  15938.  
  15939.  
  15940.  
  15941.  
  15942.            </div>
  15943.  
  15944.            
  15945.              <div
  15946.                class="
  15947.                  productitem--action
  15948.                  quickshop-button
  15949.                  
  15950.                "
  15951.              >
  15952.                <button
  15953.                  class="productitem--action-trigger button-secondary"
  15954.                  data-quickshop-full
  15955.                  
  15956.                  
  15957.                  type="button"
  15958.                >
  15959.                  Quick shop
  15960.                </button>
  15961.              </div>
  15962.            
  15963.  
  15964.            
  15965.              <div
  15966.                class="
  15967.                  productitem--action
  15968.                  atc--button
  15969.                  
  15970.                "
  15971.              >
  15972.                <button
  15973.                  class="productitem--action-trigger productitem--action-atc button-primary"
  15974.                  type="button"
  15975.                  aria-label="Add to cart"
  15976.                  
  15977.                    data-quick-buy
  15978.                  
  15979.                  data-variant-id="39666095259735"
  15980.                  
  15981.                >
  15982.                  <span class="atc-button--text">
  15983.                    Add to cart
  15984.                  </span>
  15985.                  <span class="atc-button--icon"><svg
  15986.  aria-hidden="true"
  15987.  focusable="false"
  15988.  role="presentation"
  15989.  width="26"
  15990.  height="26"
  15991.  viewBox="0 0 26 26"
  15992.  xmlns="http://www.w3.org/2000/svg"
  15993. >
  15994.  <g fill-rule="nonzero" fill="currentColor">
  15995.    <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"/>
  15996.  </g>
  15997. </svg></span>
  15998.                </button>
  15999.              </div>
  16000.            
  16001.          </div>
  16002.        
  16003.      
  16004.    </div>
  16005.  </div>
  16006.  
  16007.  
  16008.    <script type="application/json" data-quick-buy-settings>
  16009.      {
  16010.        "cart_redirection": true,
  16011.        "money_format": "${{amount}}"
  16012.      }
  16013.    </script>
  16014.  
  16015. </li>
  16016.    
  16017.      
  16018.  
  16019.  
  16020.  
  16021.  
  16022.  
  16023.  
  16024.  
  16025.  
  16026.  
  16027.  
  16028.  
  16029.  
  16030.  
  16031.  
  16032.  
  16033.  
  16034.  
  16035.  
  16036.  
  16037.  
  16038.  
  16039.  
  16040.  
  16041.  
  16042.  
  16043.  
  16044.  
  16045.  
  16046.  
  16047.  
  16048.  
  16049.  
  16050.    
  16051.  
  16052.  
  16053.  
  16054. <li
  16055.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16056.  data-product-item
  16057.  data-product-quickshop-url="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  16058.  
  16059. >
  16060.  <div class="productitem" data-product-item-content>
  16061.    
  16062.    
  16063.    
  16064.    
  16065.  
  16066.    
  16067.  
  16068.    
  16069.  
  16070.    <div class="productitem__container">
  16071.      
  16072.  
  16073.      <div class="productitem__image-container">
  16074.        <a target="_blank"
  16075.          class="productitem--image-link"
  16076.          href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  16077.          aria-label="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  16078.          tabindex="-1"
  16079.          data-product-page-link
  16080.        >
  16081.          <figure
  16082.            class="productitem--image"
  16083.            data-product-item-image
  16084.            
  16085.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  16086.            
  16087.          >
  16088.            
  16089.              
  16090.              
  16091.  
  16092.  
  16093.    <noscript data-rimg-noscript>
  16094.      <img loading="lazy"
  16095.        
  16096.          src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1759442132"
  16097.        
  16098.  
  16099.        alt="Acer Aspire 5742Z USB Board 55.R4F02.002 - LaptopParts.ca"
  16100.        data-rimg="noscript"
  16101.        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"
  16102.        class="productitem--image-primary"
  16103.        
  16104.        
  16105.      >
  16106.    </noscript>
  16107.  
  16108.  
  16109.  <img loading="lazy"
  16110.    
  16111.      src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1759442132"
  16112.    
  16113.    alt="Acer Aspire 5742Z USB Board 55.R4F02.002 - LaptopParts.ca"
  16114.  
  16115.    
  16116.      data-rimg="lazy"
  16117.      data-rimg-scale="1"
  16118.      data-rimg-template="//laptopparts.ca/cdn/shop/products/55.r4f02.002_{size}.png?v=1759442132"
  16119.      data-rimg-max="603x603"
  16120.      data-rimg-crop="false"
  16121.      
  16122.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  16123.    
  16124.  
  16125.    class="productitem--image-primary"
  16126.    
  16127.    
  16128.  >
  16129.  
  16130.  
  16131.  
  16132.  <div data-rimg-canvas></div>
  16133.  
  16134.  
  16135.            
  16136.  
  16137.            
  16138.  
  16139.  
  16140.  
  16141.  
  16142.  
  16143.  
  16144.  
  16145.  
  16146.  
  16147.  
  16148.  
  16149.  
  16150.  
  16151.  
  16152.  
  16153.  
  16154.  
  16155.  
  16156.  
  16157.  
  16158.  
  16159.  
  16160.  
  16161.  
  16162.  
  16163.  
  16164.  
  16165.          </figure>
  16166.        </a>
  16167.      </div><div class="productitem--info">
  16168.        
  16169.          
  16170.  
  16171.        
  16172.  
  16173.        
  16174.          
  16175.  
  16176.  
  16177.  
  16178.  
  16179.  
  16180.  
  16181.  
  16182.  
  16183.  
  16184.  
  16185.  
  16186.  
  16187.  
  16188.  
  16189.  
  16190.  
  16191.  
  16192.  
  16193.  
  16194.  
  16195.  
  16196.  
  16197.  
  16198.  
  16199.  
  16200.  
  16201.  
  16202.  
  16203.  
  16204.  
  16205. <div class="price productitem__price ">
  16206.  
  16207.    <div
  16208.      class="price__compare-at visible"
  16209.      data-price-compare-container
  16210.    >
  16211.  
  16212.      
  16213.        <span class="money price__original" data-price-original></span>
  16214.      
  16215.    </div>
  16216.  
  16217.  
  16218.    
  16219.      
  16220.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16221.        
  16222.          <span class="visually-hidden">Original price</span>
  16223.          <span class="money price__compare-at--min" data-price-compare-min>
  16224.            $64.97
  16225.          </span>
  16226.          -
  16227.          <span class="visually-hidden">Original price</span>
  16228.          <span class="money price__compare-at--max" data-price-compare-max>
  16229.            $64.97
  16230.          </span>
  16231.        
  16232.      </div>
  16233.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16234.        <span class="visually-hidden">Original price</span>
  16235.        <span class="money price__compare-at--single" data-price-compare>
  16236.          
  16237.        </span>
  16238.      </div>
  16239.    
  16240.  
  16241.  
  16242.  <div class="price__current price__current--emphasize " data-price-container>
  16243.  
  16244.    
  16245.  
  16246.    
  16247.      
  16248.      
  16249.      <span class="money" data-price>
  16250.        $64.97
  16251.      </span>
  16252.    
  16253.    
  16254.  </div>
  16255.  
  16256.  
  16257.    
  16258.    <div class="price__current--hidden" data-current-price-range-hidden>
  16259.      
  16260.        <span class="money price__current--min" data-price-min>$64.97</span>
  16261.        -
  16262.        <span class="money price__current--max" data-price-max>$64.97</span>
  16263.      
  16264.    </div>
  16265.    <div class="price__current--hidden" data-current-price-hidden>
  16266.      <span class="visually-hidden">Current price</span>
  16267.      <span class="money" data-price>
  16268.        $64.97
  16269.      </span>
  16270.    </div>
  16271.  
  16272.  
  16273.  
  16274.    
  16275.    
  16276.    
  16277.    
  16278.  
  16279.    <div
  16280.      class="
  16281.        productitem__unit-price
  16282.        hidden
  16283.      "
  16284.      data-unit-price
  16285.    >
  16286.      <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>
  16287.    </div>
  16288.  
  16289.  
  16290.  
  16291. </div>
  16292.  
  16293.  
  16294.        
  16295.  
  16296.        <h2 class="productitem--title">
  16297.          <a href="/products/55-r4f02-002-acer-aspire-5742z-usb-board" data-product-page-link>
  16298.            Acer Aspire 5742Z USB Board 55.R4F02.002
  16299.          </a>
  16300.        </h2>
  16301.  
  16302.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16303.        <div class="star_container 4605263622"></div>
  16304.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16305.  
  16306.        
  16307.          
  16308.            <span class="productitem--vendor">
  16309.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16310.            </span>
  16311.          
  16312.        
  16313.  
  16314.        
  16315.  
  16316.        
  16317.          
  16318.            <div class="productitem__stock-level">
  16319.              <!--
  16320.  
  16321.  
  16322.  
  16323.  
  16324.  
  16325.  
  16326.  
  16327. <div class="product-stock-level-wrapper" >
  16328.  
  16329.    <span class="
  16330.  product-stock-level
  16331.  product-stock-level--continue-selling
  16332.  
  16333. ">
  16334.      
  16335.  
  16336.      <span class="product-stock-level__text">
  16337.        
  16338.        <div class="product-stock-level__badge-text">
  16339.          
  16340.  
  16341.    In stock
  16342.  
  16343.  
  16344.        </div>
  16345.      </span>
  16346.    </span>
  16347.  
  16348. </div>
  16349. -->
  16350.              
  16351.  
  16352.  
  16353.    
  16354.      <b style="color:green">In stock</b>
  16355.    
  16356.  
  16357.  
  16358.  
  16359.  
  16360.  
  16361.  
  16362.  
  16363.            </div>
  16364.          
  16365.  
  16366.          
  16367.            
  16368.          
  16369.        
  16370.  
  16371.        
  16372.          <div class="productitem--description">
  16373.            <p>55.R4F02.002 Acer Aspire 5742Z USB Board - Pulled from working laptops
  16374. Compatible Models:
  16375. Aspire 5252, 5333, 5336, 5552, 5733, 5736, 5742
  16376. Gateway N...</p>
  16377.  
  16378.            
  16379.              <a
  16380.                href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  16381.                class="productitem--link"
  16382.                data-product-page-link
  16383.              >
  16384.                View full details
  16385.              </a>
  16386.            
  16387.          </div>
  16388.        
  16389.      </div>
  16390.  
  16391.      
  16392.        
  16393.          
  16394.          
  16395.          
  16396.  
  16397.          
  16398.          
  16399.  
  16400.          
  16401.  
  16402.          
  16403.  
  16404.          <div class="productitem--actions" data-product-actions>
  16405.            <div class="productitem--listview-price">
  16406.              
  16407.  
  16408.  
  16409.  
  16410.  
  16411.  
  16412.  
  16413.  
  16414.  
  16415.  
  16416.  
  16417.  
  16418.  
  16419.  
  16420.  
  16421.  
  16422.  
  16423.  
  16424.  
  16425.  
  16426.  
  16427.  
  16428.  
  16429.  
  16430.  
  16431.  
  16432.  
  16433.  
  16434.  
  16435.  
  16436.  
  16437. <div class="price productitem__price ">
  16438.  
  16439.    <div
  16440.      class="price__compare-at visible"
  16441.      data-price-compare-container
  16442.    >
  16443.  
  16444.      
  16445.        <span class="money price__original" data-price-original></span>
  16446.      
  16447.    </div>
  16448.  
  16449.  
  16450.    
  16451.      
  16452.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16453.        
  16454.          <span class="visually-hidden">Original price</span>
  16455.          <span class="money price__compare-at--min" data-price-compare-min>
  16456.            $64.97
  16457.          </span>
  16458.          -
  16459.          <span class="visually-hidden">Original price</span>
  16460.          <span class="money price__compare-at--max" data-price-compare-max>
  16461.            $64.97
  16462.          </span>
  16463.        
  16464.      </div>
  16465.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16466.        <span class="visually-hidden">Original price</span>
  16467.        <span class="money price__compare-at--single" data-price-compare>
  16468.          
  16469.        </span>
  16470.      </div>
  16471.    
  16472.  
  16473.  
  16474.  <div class="price__current price__current--emphasize " data-price-container>
  16475.  
  16476.    
  16477.  
  16478.    
  16479.      
  16480.      
  16481.      <span class="money" data-price>
  16482.        $64.97
  16483.      </span>
  16484.    
  16485.    
  16486.  </div>
  16487.  
  16488.  
  16489.    
  16490.    <div class="price__current--hidden" data-current-price-range-hidden>
  16491.      
  16492.        <span class="money price__current--min" data-price-min>$64.97</span>
  16493.        -
  16494.        <span class="money price__current--max" data-price-max>$64.97</span>
  16495.      
  16496.    </div>
  16497.    <div class="price__current--hidden" data-current-price-hidden>
  16498.      <span class="visually-hidden">Current price</span>
  16499.      <span class="money" data-price>
  16500.        $64.97
  16501.      </span>
  16502.    </div>
  16503.  
  16504.  
  16505.  
  16506.    
  16507.    
  16508.    
  16509.    
  16510.  
  16511.    <div
  16512.      class="
  16513.        productitem__unit-price
  16514.        hidden
  16515.      "
  16516.      data-unit-price
  16517.    >
  16518.      <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>
  16519.    </div>
  16520.  
  16521.  
  16522.  
  16523. </div>
  16524.  
  16525.  
  16526.            </div>
  16527.  
  16528.            <div class="productitem--listview-badge">
  16529.              
  16530.  
  16531.  
  16532.  
  16533.  
  16534.  
  16535.  
  16536.  
  16537.  
  16538.  
  16539.  
  16540.  
  16541.  
  16542.  
  16543.  
  16544.  
  16545.  
  16546.  
  16547.  
  16548.  
  16549.  
  16550.  
  16551.  
  16552.  
  16553.  
  16554.  
  16555.  
  16556.  
  16557.            </div>
  16558.  
  16559.            
  16560.              <div
  16561.                class="
  16562.                  productitem--action
  16563.                  quickshop-button
  16564.                  
  16565.                "
  16566.              >
  16567.                <button
  16568.                  class="productitem--action-trigger button-secondary"
  16569.                  data-quickshop-full
  16570.                  
  16571.                  
  16572.                  type="button"
  16573.                >
  16574.                  Quick shop
  16575.                </button>
  16576.              </div>
  16577.            
  16578.  
  16579.            
  16580.              <div
  16581.                class="
  16582.                  productitem--action
  16583.                  atc--button
  16584.                  
  16585.                "
  16586.              >
  16587.                <button
  16588.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16589.                  type="button"
  16590.                  aria-label="Add to cart"
  16591.                  
  16592.                    data-quick-buy
  16593.                  
  16594.                  data-variant-id="15084894150"
  16595.                  
  16596.                >
  16597.                  <span class="atc-button--text">
  16598.                    Add to cart
  16599.                  </span>
  16600.                  <span class="atc-button--icon"><svg
  16601.  aria-hidden="true"
  16602.  focusable="false"
  16603.  role="presentation"
  16604.  width="26"
  16605.  height="26"
  16606.  viewBox="0 0 26 26"
  16607.  xmlns="http://www.w3.org/2000/svg"
  16608. >
  16609.  <g fill-rule="nonzero" fill="currentColor">
  16610.    <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"/>
  16611.  </g>
  16612. </svg></span>
  16613.                </button>
  16614.              </div>
  16615.            
  16616.          </div>
  16617.        
  16618.      
  16619.    </div>
  16620.  </div>
  16621.  
  16622.  
  16623.    <script type="application/json" data-quick-buy-settings>
  16624.      {
  16625.        "cart_redirection": true,
  16626.        "money_format": "${{amount}}"
  16627.      }
  16628.    </script>
  16629.  
  16630. </li>
  16631.    
  16632.      
  16633.  
  16634.  
  16635.  
  16636.  
  16637.  
  16638.  
  16639.  
  16640.  
  16641.  
  16642.  
  16643.  
  16644.  
  16645.  
  16646.  
  16647.  
  16648.  
  16649.  
  16650.  
  16651.  
  16652.  
  16653.  
  16654.  
  16655.  
  16656.  
  16657.  
  16658.  
  16659.  
  16660.  
  16661.  
  16662.  
  16663.  
  16664.  
  16665.    
  16666.  
  16667.  
  16668.  
  16669. <li
  16670.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16671.  data-product-item
  16672.  data-product-quickshop-url="/products/acer-aspire-7-a715-72-a715-72g-a717-72-a717-72g-laptop-cpu-fan-23-gxbn2-001-3"
  16673.  
  16674. >
  16675.  <div class="productitem" data-product-item-content>
  16676.    
  16677.    
  16678.    
  16679.    
  16680.  
  16681.    
  16682.  
  16683.    
  16684.  
  16685.    <div class="productitem__container">
  16686.      
  16687.  
  16688.      <div class="productitem__image-container">
  16689.        <a target="_blank"
  16690.          class="productitem--image-link"
  16691.          href="/products/acer-aspire-7-a715-72-a715-72g-a717-72-a717-72g-laptop-cpu-fan-23-gxbn2-001-3"
  16692.          aria-label="/products/acer-aspire-7-a715-72-a715-72g-a717-72-a717-72g-laptop-cpu-fan-23-gxbn2-001-3"
  16693.          tabindex="-1"
  16694.          data-product-page-link
  16695.        >
  16696.          <figure
  16697.            class="productitem--image"
  16698.            data-product-item-image
  16699.            
  16700.              style="--product-grid-item-image-aspect-ratio: 1.3333333333333333;"
  16701.            
  16702.          >
  16703.            
  16704.              
  16705.              
  16706.  
  16707.  
  16708.    <noscript data-rimg-noscript>
  16709.      <img loading="lazy"
  16710.        
  16711.          src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1759500979"
  16712.        
  16713.  
  16714.        alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  16715.        data-rimg="noscript"
  16716.        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"
  16717.        class="productitem--image-primary"
  16718.        
  16719.        
  16720.      >
  16721.    </noscript>
  16722.  
  16723.  
  16724.  <img loading="lazy"
  16725.    
  16726.      src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1759500979"
  16727.    
  16728.    alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  16729.  
  16730.    
  16731.      data-rimg="lazy"
  16732.      data-rimg-scale="1"
  16733.      data-rimg-template="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_{size}.jpg?v=1759500979"
  16734.      data-rimg-max="1500x1125"
  16735.      data-rimg-crop="false"
  16736.      
  16737.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='384'></svg>"
  16738.    
  16739.  
  16740.    class="productitem--image-primary"
  16741.    
  16742.    
  16743.  >
  16744.  
  16745.  
  16746.  
  16747.  <div data-rimg-canvas></div>
  16748.  
  16749.  
  16750.            
  16751.  
  16752.            
  16753.  
  16754.  
  16755.  
  16756.  
  16757.  
  16758.  
  16759.  
  16760.  
  16761.  
  16762.  
  16763.  
  16764.  
  16765.  
  16766.  
  16767.  
  16768.  
  16769.  
  16770.  
  16771.  
  16772.  
  16773.  
  16774.  
  16775.  
  16776.  
  16777.  
  16778.  
  16779.  
  16780.          </figure>
  16781.        </a>
  16782.      </div><div class="productitem--info">
  16783.        
  16784.          
  16785.  
  16786.        
  16787.  
  16788.        
  16789.          
  16790.  
  16791.  
  16792.  
  16793.  
  16794.  
  16795.  
  16796.  
  16797.  
  16798.  
  16799.  
  16800.  
  16801.  
  16802.  
  16803.  
  16804.  
  16805.  
  16806.  
  16807.  
  16808.  
  16809.  
  16810.  
  16811.  
  16812.  
  16813.  
  16814.  
  16815.  
  16816.  
  16817.  
  16818.  
  16819.  
  16820. <div class="price productitem__price ">
  16821.  
  16822.    <div
  16823.      class="price__compare-at visible"
  16824.      data-price-compare-container
  16825.    >
  16826.  
  16827.      
  16828.        <span class="money price__original" data-price-original></span>
  16829.      
  16830.    </div>
  16831.  
  16832.  
  16833.    
  16834.      
  16835.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16836.        
  16837.          <span class="visually-hidden">Original price</span>
  16838.          <span class="money price__compare-at--min" data-price-compare-min>
  16839.            $64.97
  16840.          </span>
  16841.          -
  16842.          <span class="visually-hidden">Original price</span>
  16843.          <span class="money price__compare-at--max" data-price-compare-max>
  16844.            $64.97
  16845.          </span>
  16846.        
  16847.      </div>
  16848.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16849.        <span class="visually-hidden">Original price</span>
  16850.        <span class="money price__compare-at--single" data-price-compare>
  16851.          
  16852.        </span>
  16853.      </div>
  16854.    
  16855.  
  16856.  
  16857.  <div class="price__current price__current--emphasize " data-price-container>
  16858.  
  16859.    
  16860.  
  16861.    
  16862.      
  16863.      
  16864.      <span class="money" data-price>
  16865.        $64.97
  16866.      </span>
  16867.    
  16868.    
  16869.  </div>
  16870.  
  16871.  
  16872.    
  16873.    <div class="price__current--hidden" data-current-price-range-hidden>
  16874.      
  16875.        <span class="money price__current--min" data-price-min>$64.97</span>
  16876.        -
  16877.        <span class="money price__current--max" data-price-max>$64.97</span>
  16878.      
  16879.    </div>
  16880.    <div class="price__current--hidden" data-current-price-hidden>
  16881.      <span class="visually-hidden">Current price</span>
  16882.      <span class="money" data-price>
  16883.        $64.97
  16884.      </span>
  16885.    </div>
  16886.  
  16887.  
  16888.  
  16889.    
  16890.    
  16891.    
  16892.    
  16893.  
  16894.    <div
  16895.      class="
  16896.        productitem__unit-price
  16897.        hidden
  16898.      "
  16899.      data-unit-price
  16900.    >
  16901.      <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>
  16902.    </div>
  16903.  
  16904.  
  16905.  
  16906. </div>
  16907.  
  16908.  
  16909.        
  16910.  
  16911.        <h2 class="productitem--title">
  16912.          <a href="/products/acer-aspire-7-a715-72-a715-72g-a717-72-a717-72g-laptop-cpu-fan-23-gxbn2-001-3" data-product-page-link>
  16913.            Acer Aspire 7 A715-72 A715-72G A717-72 A717-72G Laptop Cpu Fan 23.GXBN2.001
  16914.          </a>
  16915.        </h2>
  16916.  
  16917.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16918.        <div class="star_container 3929786187863"></div>
  16919.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16920.  
  16921.        
  16922.          
  16923.            <span class="productitem--vendor">
  16924.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16925.            </span>
  16926.          
  16927.        
  16928.  
  16929.        
  16930.  
  16931.        
  16932.          
  16933.            <div class="productitem__stock-level">
  16934.              <!--
  16935.  
  16936.  
  16937.  
  16938.  
  16939.  
  16940.  
  16941.  
  16942. <div class="product-stock-level-wrapper" >
  16943.  
  16944.    <span class="
  16945.  product-stock-level
  16946.  product-stock-level--continue-selling
  16947.  
  16948. ">
  16949.      
  16950.  
  16951.      <span class="product-stock-level__text">
  16952.        
  16953.        <div class="product-stock-level__badge-text">
  16954.          
  16955.  
  16956.    In stock
  16957.  
  16958.  
  16959.        </div>
  16960.      </span>
  16961.    </span>
  16962.  
  16963. </div>
  16964. -->
  16965.              
  16966.  
  16967.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  16968.  
  16969.  
  16970.  
  16971.  
  16972.  
  16973.  
  16974.  
  16975.            </div>
  16976.          
  16977.  
  16978.          
  16979.            
  16980.          
  16981.        
  16982.  
  16983.        
  16984.          <div class="productitem--description">
  16985.            <p>
  16986. Description: New Acer laptop cpu fan.
  16987.  
  16988. Compatible Part #'s: 23.GXBN2.001
  16989.  
  16990. Compatible Models:
  16991. Acer Aspire 7 A715-72, A715-72G
  16992. Acer Aspire 7 A717-7...</p>
  16993.  
  16994.            
  16995.              <a
  16996.                href="/products/acer-aspire-7-a715-72-a715-72g-a717-72-a717-72g-laptop-cpu-fan-23-gxbn2-001-3"
  16997.                class="productitem--link"
  16998.                data-product-page-link
  16999.              >
  17000.                View full details
  17001.              </a>
  17002.            
  17003.          </div>
  17004.        
  17005.      </div>
  17006.  
  17007.      
  17008.        
  17009.          
  17010.          
  17011.          
  17012.  
  17013.          
  17014.          
  17015.  
  17016.          
  17017.  
  17018.          
  17019.  
  17020.          <div class="productitem--actions" data-product-actions>
  17021.            <div class="productitem--listview-price">
  17022.              
  17023.  
  17024.  
  17025.  
  17026.  
  17027.  
  17028.  
  17029.  
  17030.  
  17031.  
  17032.  
  17033.  
  17034.  
  17035.  
  17036.  
  17037.  
  17038.  
  17039.  
  17040.  
  17041.  
  17042.  
  17043.  
  17044.  
  17045.  
  17046.  
  17047.  
  17048.  
  17049.  
  17050.  
  17051.  
  17052.  
  17053. <div class="price productitem__price ">
  17054.  
  17055.    <div
  17056.      class="price__compare-at visible"
  17057.      data-price-compare-container
  17058.    >
  17059.  
  17060.      
  17061.        <span class="money price__original" data-price-original></span>
  17062.      
  17063.    </div>
  17064.  
  17065.  
  17066.    
  17067.      
  17068.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17069.        
  17070.          <span class="visually-hidden">Original price</span>
  17071.          <span class="money price__compare-at--min" data-price-compare-min>
  17072.            $64.97
  17073.          </span>
  17074.          -
  17075.          <span class="visually-hidden">Original price</span>
  17076.          <span class="money price__compare-at--max" data-price-compare-max>
  17077.            $64.97
  17078.          </span>
  17079.        
  17080.      </div>
  17081.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17082.        <span class="visually-hidden">Original price</span>
  17083.        <span class="money price__compare-at--single" data-price-compare>
  17084.          
  17085.        </span>
  17086.      </div>
  17087.    
  17088.  
  17089.  
  17090.  <div class="price__current price__current--emphasize " data-price-container>
  17091.  
  17092.    
  17093.  
  17094.    
  17095.      
  17096.      
  17097.      <span class="money" data-price>
  17098.        $64.97
  17099.      </span>
  17100.    
  17101.    
  17102.  </div>
  17103.  
  17104.  
  17105.    
  17106.    <div class="price__current--hidden" data-current-price-range-hidden>
  17107.      
  17108.        <span class="money price__current--min" data-price-min>$64.97</span>
  17109.        -
  17110.        <span class="money price__current--max" data-price-max>$64.97</span>
  17111.      
  17112.    </div>
  17113.    <div class="price__current--hidden" data-current-price-hidden>
  17114.      <span class="visually-hidden">Current price</span>
  17115.      <span class="money" data-price>
  17116.        $64.97
  17117.      </span>
  17118.    </div>
  17119.  
  17120.  
  17121.  
  17122.    
  17123.    
  17124.    
  17125.    
  17126.  
  17127.    <div
  17128.      class="
  17129.        productitem__unit-price
  17130.        hidden
  17131.      "
  17132.      data-unit-price
  17133.    >
  17134.      <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>
  17135.    </div>
  17136.  
  17137.  
  17138.  
  17139. </div>
  17140.  
  17141.  
  17142.            </div>
  17143.  
  17144.            <div class="productitem--listview-badge">
  17145.              
  17146.  
  17147.  
  17148.  
  17149.  
  17150.  
  17151.  
  17152.  
  17153.  
  17154.  
  17155.  
  17156.  
  17157.  
  17158.  
  17159.  
  17160.  
  17161.  
  17162.  
  17163.  
  17164.  
  17165.  
  17166.  
  17167.  
  17168.  
  17169.  
  17170.  
  17171.  
  17172.  
  17173.            </div>
  17174.  
  17175.            
  17176.              <div
  17177.                class="
  17178.                  productitem--action
  17179.                  quickshop-button
  17180.                  
  17181.                "
  17182.              >
  17183.                <button
  17184.                  class="productitem--action-trigger button-secondary"
  17185.                  data-quickshop-full
  17186.                  
  17187.                  
  17188.                  type="button"
  17189.                >
  17190.                  Quick shop
  17191.                </button>
  17192.              </div>
  17193.            
  17194.  
  17195.            
  17196.              <div
  17197.                class="
  17198.                  productitem--action
  17199.                  atc--button
  17200.                  
  17201.                "
  17202.              >
  17203.                <button
  17204.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17205.                  type="button"
  17206.                  aria-label="Add to cart"
  17207.                  
  17208.                    data-quick-buy
  17209.                  
  17210.                  data-variant-id="29440907575383"
  17211.                  
  17212.                >
  17213.                  <span class="atc-button--text">
  17214.                    Add to cart
  17215.                  </span>
  17216.                  <span class="atc-button--icon"><svg
  17217.  aria-hidden="true"
  17218.  focusable="false"
  17219.  role="presentation"
  17220.  width="26"
  17221.  height="26"
  17222.  viewBox="0 0 26 26"
  17223.  xmlns="http://www.w3.org/2000/svg"
  17224. >
  17225.  <g fill-rule="nonzero" fill="currentColor">
  17226.    <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"/>
  17227.  </g>
  17228. </svg></span>
  17229.                </button>
  17230.              </div>
  17231.            
  17232.          </div>
  17233.        
  17234.      
  17235.    </div>
  17236.  </div>
  17237.  
  17238.  
  17239.    <script type="application/json" data-quick-buy-settings>
  17240.      {
  17241.        "cart_redirection": true,
  17242.        "money_format": "${{amount}}"
  17243.      }
  17244.    </script>
  17245.  
  17246. </li>
  17247.    
  17248.      
  17249.  
  17250.  
  17251.  
  17252.  
  17253.  
  17254.  
  17255.  
  17256.  
  17257.  
  17258.  
  17259.  
  17260.  
  17261.  
  17262.  
  17263.  
  17264.  
  17265.  
  17266.  
  17267.  
  17268.  
  17269.  
  17270.  
  17271.  
  17272.  
  17273.  
  17274.  
  17275.  
  17276.  
  17277.  
  17278.  
  17279.  
  17280.  
  17281.    
  17282.  
  17283.  
  17284.  
  17285. <li
  17286.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17287.  data-product-item
  17288.  data-product-quickshop-url="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  17289.  
  17290. >
  17291.  <div class="productitem" data-product-item-content>
  17292.    
  17293.    
  17294.    
  17295.    
  17296.  
  17297.    
  17298.  
  17299.    
  17300.  
  17301.    <div class="productitem__container">
  17302.      
  17303.  
  17304.      <div class="productitem__image-container">
  17305.        <a target="_blank"
  17306.          class="productitem--image-link"
  17307.          href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  17308.          aria-label="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  17309.          tabindex="-1"
  17310.          data-product-page-link
  17311.        >
  17312.          <figure
  17313.            class="productitem--image"
  17314.            data-product-item-image
  17315.            
  17316.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17317.            
  17318.          >
  17319.            
  17320.              
  17321.              
  17322.  
  17323.  
  17324.    <noscript data-rimg-noscript>
  17325.      <img loading="lazy"
  17326.        
  17327.          src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1762551673"
  17328.        
  17329.  
  17330.        alt="Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001 - LaptopParts.ca"
  17331.        data-rimg="noscript"
  17332.        srcset="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1762551673 1x, //laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_1024x1024.jpg?v=1762551673 2x, //laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_1536x1536.jpg?v=1762551673 3x, //laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_2048x2048.jpg?v=1762551673 4x"
  17333.        class="productitem--image-primary"
  17334.        
  17335.        
  17336.      >
  17337.    </noscript>
  17338.  
  17339.  
  17340.  <img loading="lazy"
  17341.    
  17342.      src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1762551673"
  17343.    
  17344.    alt="Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001 - LaptopParts.ca"
  17345.  
  17346.    
  17347.      data-rimg="lazy"
  17348.      data-rimg-scale="1"
  17349.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_{size}.jpg?v=1762551673"
  17350.      data-rimg-max="2048x2048"
  17351.      data-rimg-crop="false"
  17352.      
  17353.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17354.    
  17355.  
  17356.    class="productitem--image-primary"
  17357.    
  17358.    
  17359.  >
  17360.  
  17361.  
  17362.  
  17363.  <div data-rimg-canvas></div>
  17364.  
  17365.  
  17366.            
  17367.  
  17368.            
  17369.  
  17370.  
  17371.  
  17372.  
  17373.  
  17374.  
  17375.  
  17376.  
  17377.  
  17378.  
  17379.  
  17380.  
  17381.  
  17382.  
  17383.  
  17384.  
  17385.  
  17386.  
  17387.  
  17388.  
  17389.  
  17390.  
  17391.  
  17392.  
  17393.  
  17394.  
  17395.  
  17396.          </figure>
  17397.        </a>
  17398.      </div><div class="productitem--info">
  17399.        
  17400.          
  17401.  
  17402.        
  17403.  
  17404.        
  17405.          
  17406.  
  17407.  
  17408.  
  17409.  
  17410.  
  17411.  
  17412.  
  17413.  
  17414.  
  17415.  
  17416.  
  17417.  
  17418.  
  17419.  
  17420.  
  17421.  
  17422.  
  17423.  
  17424.  
  17425.  
  17426.  
  17427.  
  17428.  
  17429.  
  17430.  
  17431.  
  17432.  
  17433.  
  17434.  
  17435.  
  17436. <div class="price productitem__price ">
  17437.  
  17438.    <div
  17439.      class="price__compare-at visible"
  17440.      data-price-compare-container
  17441.    >
  17442.  
  17443.      
  17444.        <span class="money price__original" data-price-original></span>
  17445.      
  17446.    </div>
  17447.  
  17448.  
  17449.    
  17450.      
  17451.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17452.        
  17453.          <span class="visually-hidden">Original price</span>
  17454.          <span class="money price__compare-at--min" data-price-compare-min>
  17455.            $74.97
  17456.          </span>
  17457.          -
  17458.          <span class="visually-hidden">Original price</span>
  17459.          <span class="money price__compare-at--max" data-price-compare-max>
  17460.            $74.97
  17461.          </span>
  17462.        
  17463.      </div>
  17464.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17465.        <span class="visually-hidden">Original price</span>
  17466.        <span class="money price__compare-at--single" data-price-compare>
  17467.          
  17468.        </span>
  17469.      </div>
  17470.    
  17471.  
  17472.  
  17473.  <div class="price__current price__current--emphasize " data-price-container>
  17474.  
  17475.    
  17476.  
  17477.    
  17478.      
  17479.      
  17480.      <span class="money" data-price>
  17481.        $74.97
  17482.      </span>
  17483.    
  17484.    
  17485.  </div>
  17486.  
  17487.  
  17488.    
  17489.    <div class="price__current--hidden" data-current-price-range-hidden>
  17490.      
  17491.        <span class="money price__current--min" data-price-min>$74.97</span>
  17492.        -
  17493.        <span class="money price__current--max" data-price-max>$74.97</span>
  17494.      
  17495.    </div>
  17496.    <div class="price__current--hidden" data-current-price-hidden>
  17497.      <span class="visually-hidden">Current price</span>
  17498.      <span class="money" data-price>
  17499.        $74.97
  17500.      </span>
  17501.    </div>
  17502.  
  17503.  
  17504.  
  17505.    
  17506.    
  17507.    
  17508.    
  17509.  
  17510.    <div
  17511.      class="
  17512.        productitem__unit-price
  17513.        hidden
  17514.      "
  17515.      data-unit-price
  17516.    >
  17517.      <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>
  17518.    </div>
  17519.  
  17520.  
  17521.  
  17522. </div>
  17523.  
  17524.  
  17525.        
  17526.  
  17527.        <h2 class="productitem--title">
  17528.          <a href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001" data-product-page-link>
  17529.            Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001
  17530.          </a>
  17531.        </h2>
  17532.  
  17533.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  17534.        <div class="star_container 3929790414935"></div>
  17535.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  17536.  
  17537.        
  17538.          
  17539.            <span class="productitem--vendor">
  17540.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  17541.            </span>
  17542.          
  17543.        
  17544.  
  17545.        
  17546.  
  17547.        
  17548.          
  17549.            <div class="productitem__stock-level">
  17550.              <!--
  17551.  
  17552.  
  17553.  
  17554.  
  17555.  
  17556.  
  17557.  
  17558. <div class="product-stock-level-wrapper" >
  17559.  
  17560.    <span class="
  17561.  product-stock-level
  17562.  product-stock-level--continue-selling
  17563.  
  17564. ">
  17565.      
  17566.  
  17567.      <span class="product-stock-level__text">
  17568.        
  17569.        <div class="product-stock-level__badge-text">
  17570.          
  17571.  
  17572.    In stock
  17573.  
  17574.  
  17575.        </div>
  17576.      </span>
  17577.    </span>
  17578.  
  17579. </div>
  17580. -->
  17581.              
  17582.  
  17583.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  17584.  
  17585.  
  17586.  
  17587.  
  17588.  
  17589.  
  17590.  
  17591.            </div>
  17592.          
  17593.  
  17594.          
  17595.            
  17596.          
  17597.        
  17598.  
  17599.        
  17600.          <div class="productitem--description">
  17601.            <p>
  17602. Description: New genuine Acer laptop dc jack cable. 45 watt version.
  17603.  
  17604. Compatible Part #'s: 50.GNSN7.001
  17605.  
  17606. Compatible Models:
  17607. Acer Aspire 1 A114-31
  17608. ...</p>
  17609.  
  17610.            
  17611.              <a
  17612.                href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  17613.                class="productitem--link"
  17614.                data-product-page-link
  17615.              >
  17616.                View full details
  17617.              </a>
  17618.            
  17619.          </div>
  17620.        
  17621.      </div>
  17622.  
  17623.      
  17624.        
  17625.          
  17626.          
  17627.          
  17628.  
  17629.          
  17630.          
  17631.  
  17632.          
  17633.  
  17634.          
  17635.  
  17636.          <div class="productitem--actions" data-product-actions>
  17637.            <div class="productitem--listview-price">
  17638.              
  17639.  
  17640.  
  17641.  
  17642.  
  17643.  
  17644.  
  17645.  
  17646.  
  17647.  
  17648.  
  17649.  
  17650.  
  17651.  
  17652.  
  17653.  
  17654.  
  17655.  
  17656.  
  17657.  
  17658.  
  17659.  
  17660.  
  17661.  
  17662.  
  17663.  
  17664.  
  17665.  
  17666.  
  17667.  
  17668.  
  17669. <div class="price productitem__price ">
  17670.  
  17671.    <div
  17672.      class="price__compare-at visible"
  17673.      data-price-compare-container
  17674.    >
  17675.  
  17676.      
  17677.        <span class="money price__original" data-price-original></span>
  17678.      
  17679.    </div>
  17680.  
  17681.  
  17682.    
  17683.      
  17684.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17685.        
  17686.          <span class="visually-hidden">Original price</span>
  17687.          <span class="money price__compare-at--min" data-price-compare-min>
  17688.            $74.97
  17689.          </span>
  17690.          -
  17691.          <span class="visually-hidden">Original price</span>
  17692.          <span class="money price__compare-at--max" data-price-compare-max>
  17693.            $74.97
  17694.          </span>
  17695.        
  17696.      </div>
  17697.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17698.        <span class="visually-hidden">Original price</span>
  17699.        <span class="money price__compare-at--single" data-price-compare>
  17700.          
  17701.        </span>
  17702.      </div>
  17703.    
  17704.  
  17705.  
  17706.  <div class="price__current price__current--emphasize " data-price-container>
  17707.  
  17708.    
  17709.  
  17710.    
  17711.      
  17712.      
  17713.      <span class="money" data-price>
  17714.        $74.97
  17715.      </span>
  17716.    
  17717.    
  17718.  </div>
  17719.  
  17720.  
  17721.    
  17722.    <div class="price__current--hidden" data-current-price-range-hidden>
  17723.      
  17724.        <span class="money price__current--min" data-price-min>$74.97</span>
  17725.        -
  17726.        <span class="money price__current--max" data-price-max>$74.97</span>
  17727.      
  17728.    </div>
  17729.    <div class="price__current--hidden" data-current-price-hidden>
  17730.      <span class="visually-hidden">Current price</span>
  17731.      <span class="money" data-price>
  17732.        $74.97
  17733.      </span>
  17734.    </div>
  17735.  
  17736.  
  17737.  
  17738.    
  17739.    
  17740.    
  17741.    
  17742.  
  17743.    <div
  17744.      class="
  17745.        productitem__unit-price
  17746.        hidden
  17747.      "
  17748.      data-unit-price
  17749.    >
  17750.      <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>
  17751.    </div>
  17752.  
  17753.  
  17754.  
  17755. </div>
  17756.  
  17757.  
  17758.            </div>
  17759.  
  17760.            <div class="productitem--listview-badge">
  17761.              
  17762.  
  17763.  
  17764.  
  17765.  
  17766.  
  17767.  
  17768.  
  17769.  
  17770.  
  17771.  
  17772.  
  17773.  
  17774.  
  17775.  
  17776.  
  17777.  
  17778.  
  17779.  
  17780.  
  17781.  
  17782.  
  17783.  
  17784.  
  17785.  
  17786.  
  17787.  
  17788.  
  17789.            </div>
  17790.  
  17791.            
  17792.              <div
  17793.                class="
  17794.                  productitem--action
  17795.                  quickshop-button
  17796.                  
  17797.                "
  17798.              >
  17799.                <button
  17800.                  class="productitem--action-trigger button-secondary"
  17801.                  data-quickshop-full
  17802.                  
  17803.                  
  17804.                  type="button"
  17805.                >
  17806.                  Quick shop
  17807.                </button>
  17808.              </div>
  17809.            
  17810.  
  17811.            
  17812.              <div
  17813.                class="
  17814.                  productitem--action
  17815.                  atc--button
  17816.                  
  17817.                "
  17818.              >
  17819.                <button
  17820.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17821.                  type="button"
  17822.                  aria-label="Add to cart"
  17823.                  
  17824.                    data-quick-buy
  17825.                  
  17826.                  data-variant-id="29408090816599"
  17827.                  
  17828.                >
  17829.                  <span class="atc-button--text">
  17830.                    Add to cart
  17831.                  </span>
  17832.                  <span class="atc-button--icon"><svg
  17833.  aria-hidden="true"
  17834.  focusable="false"
  17835.  role="presentation"
  17836.  width="26"
  17837.  height="26"
  17838.  viewBox="0 0 26 26"
  17839.  xmlns="http://www.w3.org/2000/svg"
  17840. >
  17841.  <g fill-rule="nonzero" fill="currentColor">
  17842.    <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"/>
  17843.  </g>
  17844. </svg></span>
  17845.                </button>
  17846.              </div>
  17847.            
  17848.          </div>
  17849.        
  17850.      
  17851.    </div>
  17852.  </div>
  17853.  
  17854.  
  17855.    <script type="application/json" data-quick-buy-settings>
  17856.      {
  17857.        "cart_redirection": true,
  17858.        "money_format": "${{amount}}"
  17859.      }
  17860.    </script>
  17861.  
  17862. </li>
  17863.    
  17864.      
  17865.  
  17866.  
  17867.  
  17868.  
  17869.  
  17870.  
  17871.  
  17872.  
  17873.  
  17874.  
  17875.  
  17876.  
  17877.  
  17878.  
  17879.  
  17880.  
  17881.  
  17882.  
  17883.  
  17884.  
  17885.  
  17886.  
  17887.  
  17888.  
  17889.  
  17890.  
  17891.  
  17892.  
  17893.  
  17894.  
  17895.  
  17896.  
  17897.    
  17898.  
  17899.  
  17900.  
  17901. <li
  17902.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17903.  data-product-item
  17904.  data-product-quickshop-url="/products/cdd_acer_aspire_a114-31_a314-31_black_lcd_back_cover_60shxn7001"
  17905.  
  17906. >
  17907.  <div class="productitem" data-product-item-content>
  17908.    
  17909.    
  17910.    
  17911.    
  17912.  
  17913.    
  17914.  
  17915.    
  17916.  
  17917.    <div class="productitem__container">
  17918.      
  17919.  
  17920.      <div class="productitem__image-container">
  17921.        <a target="_blank"
  17922.          class="productitem--image-link"
  17923.          href="/products/cdd_acer_aspire_a114-31_a314-31_black_lcd_back_cover_60shxn7001"
  17924.          aria-label="/products/cdd_acer_aspire_a114-31_a314-31_black_lcd_back_cover_60shxn7001"
  17925.          tabindex="-1"
  17926.          data-product-page-link
  17927.        >
  17928.          <figure
  17929.            class="productitem--image"
  17930.            data-product-item-image
  17931.            
  17932.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17933.            
  17934.          >
  17935.            
  17936.              
  17937.              
  17938.  
  17939.  
  17940.    <noscript data-rimg-noscript>
  17941.      <img loading="lazy"
  17942.        
  17943.          src="//laptopparts.ca/cdn/shop/products/s-l1600_2c8628ba-a31f-46bd-8615-5b58dd74c7fb_500x500.jpg?v=1759501379"
  17944.        
  17945.  
  17946.        alt="Acer Aspire A114-31 A314-31 Black Lcd Back Cover 60.SHXN7.001 - LaptopParts.ca"
  17947.        data-rimg="noscript"
  17948.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_2c8628ba-a31f-46bd-8615-5b58dd74c7fb_500x500.jpg?v=1759501379 1x"
  17949.        class="productitem--image-primary"
  17950.        
  17951.        
  17952.      >
  17953.    </noscript>
  17954.  
  17955.  
  17956.  <img loading="lazy"
  17957.    
  17958.      src="//laptopparts.ca/cdn/shop/products/s-l1600_2c8628ba-a31f-46bd-8615-5b58dd74c7fb_500x500.jpg?v=1759501379"
  17959.    
  17960.    alt="Acer Aspire A114-31 A314-31 Black Lcd Back Cover 60.SHXN7.001 - LaptopParts.ca"
  17961.  
  17962.    
  17963.      data-rimg="lazy"
  17964.      data-rimg-scale="1"
  17965.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_2c8628ba-a31f-46bd-8615-5b58dd74c7fb_{size}.jpg?v=1759501379"
  17966.      data-rimg-max="500x500"
  17967.      data-rimg-crop="false"
  17968.      
  17969.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  17970.    
  17971.  
  17972.    class="productitem--image-primary"
  17973.    
  17974.    
  17975.  >
  17976.  
  17977.  
  17978.  
  17979.  <div data-rimg-canvas></div>
  17980.  
  17981.  
  17982.            
  17983.  
  17984.            
  17985.  
  17986.  
  17987.  
  17988.  
  17989.  
  17990.  
  17991.  
  17992.  
  17993.  
  17994.  
  17995.  
  17996.  
  17997.  
  17998.  
  17999.  
  18000.  
  18001.  
  18002.  
  18003.  
  18004.  
  18005.  
  18006.  
  18007.  
  18008.  
  18009.  
  18010.  
  18011.  
  18012.          </figure>
  18013.        </a>
  18014.      </div><div class="productitem--info">
  18015.        
  18016.          
  18017.  
  18018.        
  18019.  
  18020.        
  18021.          
  18022.  
  18023.  
  18024.  
  18025.  
  18026.  
  18027.  
  18028.  
  18029.  
  18030.  
  18031.  
  18032.  
  18033.  
  18034.  
  18035.  
  18036.  
  18037.  
  18038.  
  18039.  
  18040.  
  18041.  
  18042.  
  18043.  
  18044.  
  18045.  
  18046.  
  18047.  
  18048.  
  18049.  
  18050.  
  18051.  
  18052. <div class="price productitem__price ">
  18053.  
  18054.    <div
  18055.      class="price__compare-at visible"
  18056.      data-price-compare-container
  18057.    >
  18058.  
  18059.      
  18060.        <span class="money price__original" data-price-original></span>
  18061.      
  18062.    </div>
  18063.  
  18064.  
  18065.    
  18066.      
  18067.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18068.        
  18069.          <span class="visually-hidden">Original price</span>
  18070.          <span class="money price__compare-at--min" data-price-compare-min>
  18071.            $140.97
  18072.          </span>
  18073.          -
  18074.          <span class="visually-hidden">Original price</span>
  18075.          <span class="money price__compare-at--max" data-price-compare-max>
  18076.            $140.97
  18077.          </span>
  18078.        
  18079.      </div>
  18080.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18081.        <span class="visually-hidden">Original price</span>
  18082.        <span class="money price__compare-at--single" data-price-compare>
  18083.          
  18084.        </span>
  18085.      </div>
  18086.    
  18087.  
  18088.  
  18089.  <div class="price__current price__current--emphasize " data-price-container>
  18090.  
  18091.    
  18092.  
  18093.    
  18094.      
  18095.      
  18096.      <span class="money" data-price>
  18097.        $140.97
  18098.      </span>
  18099.    
  18100.    
  18101.  </div>
  18102.  
  18103.  
  18104.    
  18105.    <div class="price__current--hidden" data-current-price-range-hidden>
  18106.      
  18107.        <span class="money price__current--min" data-price-min>$140.97</span>
  18108.        -
  18109.        <span class="money price__current--max" data-price-max>$140.97</span>
  18110.      
  18111.    </div>
  18112.    <div class="price__current--hidden" data-current-price-hidden>
  18113.      <span class="visually-hidden">Current price</span>
  18114.      <span class="money" data-price>
  18115.        $140.97
  18116.      </span>
  18117.    </div>
  18118.  
  18119.  
  18120.  
  18121.    
  18122.    
  18123.    
  18124.    
  18125.  
  18126.    <div
  18127.      class="
  18128.        productitem__unit-price
  18129.        hidden
  18130.      "
  18131.      data-unit-price
  18132.    >
  18133.      <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>
  18134.    </div>
  18135.  
  18136.  
  18137.  
  18138. </div>
  18139.  
  18140.  
  18141.        
  18142.  
  18143.        <h2 class="productitem--title">
  18144.          <a href="/products/cdd_acer_aspire_a114-31_a314-31_black_lcd_back_cover_60shxn7001" data-product-page-link>
  18145.            Acer Aspire A114-31 A314-31 Black Lcd Back Cover 60.SHXN7.001
  18146.          </a>
  18147.        </h2>
  18148.  
  18149.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18150.        <div class="star_container 3933202776151"></div>
  18151.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18152.  
  18153.        
  18154.          
  18155.            <span class="productitem--vendor">
  18156.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18157.            </span>
  18158.          
  18159.        
  18160.  
  18161.        
  18162.  
  18163.        
  18164.          
  18165.            <div class="productitem__stock-level">
  18166.              <!--
  18167.  
  18168.  
  18169.  
  18170.  
  18171.  
  18172.  
  18173.  
  18174. <div class="product-stock-level-wrapper" >
  18175.  
  18176.    <span class="
  18177.  product-stock-level
  18178.  product-stock-level--continue-selling
  18179.  
  18180. ">
  18181.      
  18182.  
  18183.      <span class="product-stock-level__text">
  18184.        
  18185.        <div class="product-stock-level__badge-text">
  18186.          
  18187.  
  18188.    In stock
  18189.  
  18190.  
  18191.        </div>
  18192.      </span>
  18193.    </span>
  18194.  
  18195. </div>
  18196. -->
  18197.              
  18198.  
  18199.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  18200.  
  18201.  
  18202.  
  18203.  
  18204.  
  18205.  
  18206.  
  18207.            </div>
  18208.          
  18209.  
  18210.          
  18211.            
  18212.          
  18213.        
  18214.  
  18215.        
  18216.          <div class="productitem--description">
  18217.            <p>
  18218. Description: New Acer laptop black lcd back cover.
  18219.  
  18220. Compatible Part #'s: 60.SHXN7.001
  18221. Compatible Models:
  18222. Acer Aspire 1 A114-31
  18223. Acer Aspire 3 A31...</p>
  18224.  
  18225.            
  18226.              <a
  18227.                href="/products/cdd_acer_aspire_a114-31_a314-31_black_lcd_back_cover_60shxn7001"
  18228.                class="productitem--link"
  18229.                data-product-page-link
  18230.              >
  18231.                View full details
  18232.              </a>
  18233.            
  18234.          </div>
  18235.        
  18236.      </div>
  18237.  
  18238.      
  18239.        
  18240.          
  18241.          
  18242.          
  18243.  
  18244.          
  18245.          
  18246.  
  18247.          
  18248.  
  18249.          
  18250.  
  18251.          <div class="productitem--actions" data-product-actions>
  18252.            <div class="productitem--listview-price">
  18253.              
  18254.  
  18255.  
  18256.  
  18257.  
  18258.  
  18259.  
  18260.  
  18261.  
  18262.  
  18263.  
  18264.  
  18265.  
  18266.  
  18267.  
  18268.  
  18269.  
  18270.  
  18271.  
  18272.  
  18273.  
  18274.  
  18275.  
  18276.  
  18277.  
  18278.  
  18279.  
  18280.  
  18281.  
  18282.  
  18283.  
  18284. <div class="price productitem__price ">
  18285.  
  18286.    <div
  18287.      class="price__compare-at visible"
  18288.      data-price-compare-container
  18289.    >
  18290.  
  18291.      
  18292.        <span class="money price__original" data-price-original></span>
  18293.      
  18294.    </div>
  18295.  
  18296.  
  18297.    
  18298.      
  18299.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18300.        
  18301.          <span class="visually-hidden">Original price</span>
  18302.          <span class="money price__compare-at--min" data-price-compare-min>
  18303.            $140.97
  18304.          </span>
  18305.          -
  18306.          <span class="visually-hidden">Original price</span>
  18307.          <span class="money price__compare-at--max" data-price-compare-max>
  18308.            $140.97
  18309.          </span>
  18310.        
  18311.      </div>
  18312.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18313.        <span class="visually-hidden">Original price</span>
  18314.        <span class="money price__compare-at--single" data-price-compare>
  18315.          
  18316.        </span>
  18317.      </div>
  18318.    
  18319.  
  18320.  
  18321.  <div class="price__current price__current--emphasize " data-price-container>
  18322.  
  18323.    
  18324.  
  18325.    
  18326.      
  18327.      
  18328.      <span class="money" data-price>
  18329.        $140.97
  18330.      </span>
  18331.    
  18332.    
  18333.  </div>
  18334.  
  18335.  
  18336.    
  18337.    <div class="price__current--hidden" data-current-price-range-hidden>
  18338.      
  18339.        <span class="money price__current--min" data-price-min>$140.97</span>
  18340.        -
  18341.        <span class="money price__current--max" data-price-max>$140.97</span>
  18342.      
  18343.    </div>
  18344.    <div class="price__current--hidden" data-current-price-hidden>
  18345.      <span class="visually-hidden">Current price</span>
  18346.      <span class="money" data-price>
  18347.        $140.97
  18348.      </span>
  18349.    </div>
  18350.  
  18351.  
  18352.  
  18353.    
  18354.    
  18355.    
  18356.    
  18357.  
  18358.    <div
  18359.      class="
  18360.        productitem__unit-price
  18361.        hidden
  18362.      "
  18363.      data-unit-price
  18364.    >
  18365.      <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>
  18366.    </div>
  18367.  
  18368.  
  18369.  
  18370. </div>
  18371.  
  18372.  
  18373.            </div>
  18374.  
  18375.            <div class="productitem--listview-badge">
  18376.              
  18377.  
  18378.  
  18379.  
  18380.  
  18381.  
  18382.  
  18383.  
  18384.  
  18385.  
  18386.  
  18387.  
  18388.  
  18389.  
  18390.  
  18391.  
  18392.  
  18393.  
  18394.  
  18395.  
  18396.  
  18397.  
  18398.  
  18399.  
  18400.  
  18401.  
  18402.  
  18403.  
  18404.            </div>
  18405.  
  18406.            
  18407.              <div
  18408.                class="
  18409.                  productitem--action
  18410.                  quickshop-button
  18411.                  
  18412.                "
  18413.              >
  18414.                <button
  18415.                  class="productitem--action-trigger button-secondary"
  18416.                  data-quickshop-full
  18417.                  
  18418.                  
  18419.                  type="button"
  18420.                >
  18421.                  Quick shop
  18422.                </button>
  18423.              </div>
  18424.            
  18425.  
  18426.            
  18427.              <div
  18428.                class="
  18429.                  productitem--action
  18430.                  atc--button
  18431.                  
  18432.                "
  18433.              >
  18434.                <button
  18435.                  class="productitem--action-trigger productitem--action-atc button-primary"
  18436.                  type="button"
  18437.                  aria-label="Add to cart"
  18438.                  
  18439.                    data-quick-buy
  18440.                  
  18441.                  data-variant-id="29564265889879"
  18442.                  
  18443.                >
  18444.                  <span class="atc-button--text">
  18445.                    Add to cart
  18446.                  </span>
  18447.                  <span class="atc-button--icon"><svg
  18448.  aria-hidden="true"
  18449.  focusable="false"
  18450.  role="presentation"
  18451.  width="26"
  18452.  height="26"
  18453.  viewBox="0 0 26 26"
  18454.  xmlns="http://www.w3.org/2000/svg"
  18455. >
  18456.  <g fill-rule="nonzero" fill="currentColor">
  18457.    <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"/>
  18458.  </g>
  18459. </svg></span>
  18460.                </button>
  18461.              </div>
  18462.            
  18463.          </div>
  18464.        
  18465.      
  18466.    </div>
  18467.  </div>
  18468.  
  18469.  
  18470.    <script type="application/json" data-quick-buy-settings>
  18471.      {
  18472.        "cart_redirection": true,
  18473.        "money_format": "${{amount}}"
  18474.      }
  18475.    </script>
  18476.  
  18477. </li>
  18478.    
  18479.      
  18480.  
  18481.  
  18482.  
  18483.  
  18484.  
  18485.  
  18486.  
  18487.  
  18488.  
  18489.  
  18490.  
  18491.  
  18492.  
  18493.  
  18494.  
  18495.  
  18496.  
  18497.  
  18498.  
  18499.  
  18500.  
  18501.  
  18502.  
  18503.  
  18504.  
  18505.  
  18506.  
  18507.  
  18508.  
  18509.  
  18510.  
  18511.  
  18512.    
  18513.  
  18514.  
  18515.  
  18516. <li
  18517.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  18518.  data-product-item
  18519.  data-product-quickshop-url="/products/cdd_acer_aspire_a114-31_a314-31_right_left_lcd_hinge_set"
  18520.  
  18521. >
  18522.  <div class="productitem" data-product-item-content>
  18523.    
  18524.    
  18525.    
  18526.    
  18527.  
  18528.    
  18529.  
  18530.    
  18531.  
  18532.    <div class="productitem__container">
  18533.      
  18534.  
  18535.      <div class="productitem__image-container">
  18536.        <a target="_blank"
  18537.          class="productitem--image-link"
  18538.          href="/products/cdd_acer_aspire_a114-31_a314-31_right_left_lcd_hinge_set"
  18539.          aria-label="/products/cdd_acer_aspire_a114-31_a314-31_right_left_lcd_hinge_set"
  18540.          tabindex="-1"
  18541.          data-product-page-link
  18542.        >
  18543.          <figure
  18544.            class="productitem--image"
  18545.            data-product-item-image
  18546.            
  18547.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  18548.            
  18549.          >
  18550.            
  18551.              
  18552.              
  18553.  
  18554.  
  18555.    <noscript data-rimg-noscript>
  18556.      <img loading="lazy"
  18557.        
  18558.          src="//laptopparts.ca/cdn/shop/products/s-l1600_089325d3-ea23-4372-88e2-50302d88b749_500x500.jpg?v=1759501460"
  18559.        
  18560.  
  18561.        alt="Acer Aspire A114-31 A314-31 Right Left Lcd Hinge Set 33.SHXN7.001 33.SHXN7.002 - LaptopParts.ca"
  18562.        data-rimg="noscript"
  18563.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_089325d3-ea23-4372-88e2-50302d88b749_500x500.jpg?v=1759501460 1x"
  18564.        class="productitem--image-primary"
  18565.        
  18566.        
  18567.      >
  18568.    </noscript>
  18569.  
  18570.  
  18571.  <img loading="lazy"
  18572.    
  18573.      src="//laptopparts.ca/cdn/shop/products/s-l1600_089325d3-ea23-4372-88e2-50302d88b749_500x500.jpg?v=1759501460"
  18574.    
  18575.    alt="Acer Aspire A114-31 A314-31 Right Left Lcd Hinge Set 33.SHXN7.001 33.SHXN7.002 - LaptopParts.ca"
  18576.  
  18577.    
  18578.      data-rimg="lazy"
  18579.      data-rimg-scale="1"
  18580.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_089325d3-ea23-4372-88e2-50302d88b749_{size}.jpg?v=1759501460"
  18581.      data-rimg-max="500x500"
  18582.      data-rimg-crop="false"
  18583.      
  18584.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  18585.    
  18586.  
  18587.    class="productitem--image-primary"
  18588.    
  18589.    
  18590.  >
  18591.  
  18592.  
  18593.  
  18594.  <div data-rimg-canvas></div>
  18595.  
  18596.  
  18597.            
  18598.  
  18599.            
  18600.  
  18601.  
  18602.  
  18603.  
  18604.  
  18605.  
  18606.  
  18607.  
  18608.  
  18609.  
  18610.  
  18611.  
  18612.  
  18613.  
  18614.  
  18615.  
  18616.  
  18617.  
  18618.  
  18619.  
  18620.  
  18621.  
  18622.  
  18623.  
  18624.  
  18625.  
  18626.  
  18627.          </figure>
  18628.        </a>
  18629.      </div><div class="productitem--info">
  18630.        
  18631.          
  18632.  
  18633.        
  18634.  
  18635.        
  18636.          
  18637.  
  18638.  
  18639.  
  18640.  
  18641.  
  18642.  
  18643.  
  18644.  
  18645.  
  18646.  
  18647.  
  18648.  
  18649.  
  18650.  
  18651.  
  18652.  
  18653.  
  18654.  
  18655.  
  18656.  
  18657.  
  18658.  
  18659.  
  18660.  
  18661.  
  18662.  
  18663.  
  18664.  
  18665.  
  18666.  
  18667. <div class="price productitem__price ">
  18668.  
  18669.    <div
  18670.      class="price__compare-at visible"
  18671.      data-price-compare-container
  18672.    >
  18673.  
  18674.      
  18675.        <span class="money price__original" data-price-original></span>
  18676.      
  18677.    </div>
  18678.  
  18679.  
  18680.    
  18681.      
  18682.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18683.        
  18684.          <span class="visually-hidden">Original price</span>
  18685.          <span class="money price__compare-at--min" data-price-compare-min>
  18686.            $83.97
  18687.          </span>
  18688.          -
  18689.          <span class="visually-hidden">Original price</span>
  18690.          <span class="money price__compare-at--max" data-price-compare-max>
  18691.            $83.97
  18692.          </span>
  18693.        
  18694.      </div>
  18695.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18696.        <span class="visually-hidden">Original price</span>
  18697.        <span class="money price__compare-at--single" data-price-compare>
  18698.          
  18699.        </span>
  18700.      </div>
  18701.    
  18702.  
  18703.  
  18704.  <div class="price__current price__current--emphasize " data-price-container>
  18705.  
  18706.    
  18707.  
  18708.    
  18709.      
  18710.      
  18711.      <span class="money" data-price>
  18712.        $83.97
  18713.      </span>
  18714.    
  18715.    
  18716.  </div>
  18717.  
  18718.  
  18719.    
  18720.    <div class="price__current--hidden" data-current-price-range-hidden>
  18721.      
  18722.        <span class="money price__current--min" data-price-min>$83.97</span>
  18723.        -
  18724.        <span class="money price__current--max" data-price-max>$83.97</span>
  18725.      
  18726.    </div>
  18727.    <div class="price__current--hidden" data-current-price-hidden>
  18728.      <span class="visually-hidden">Current price</span>
  18729.      <span class="money" data-price>
  18730.        $83.97
  18731.      </span>
  18732.    </div>
  18733.  
  18734.  
  18735.  
  18736.    
  18737.    
  18738.    
  18739.    
  18740.  
  18741.    <div
  18742.      class="
  18743.        productitem__unit-price
  18744.        hidden
  18745.      "
  18746.      data-unit-price
  18747.    >
  18748.      <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>
  18749.    </div>
  18750.  
  18751.  
  18752.  
  18753. </div>
  18754.  
  18755.  
  18756.        
  18757.  
  18758.        <h2 class="productitem--title">
  18759.          <a href="/products/cdd_acer_aspire_a114-31_a314-31_right_left_lcd_hinge_set" data-product-page-link>
  18760.            Acer Aspire A114-31 A314-31 Right Left Lcd Hinge Set 33.SHXN7.001 33.SHXN7.002
  18761.          </a>
  18762.        </h2>
  18763.  
  18764.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18765.        <div class="star_container 3936707084375"></div>
  18766.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18767.  
  18768.        
  18769.          
  18770.            <span class="productitem--vendor">
  18771.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18772.            </span>
  18773.          
  18774.        
  18775.  
  18776.        
  18777.  
  18778.        
  18779.          
  18780.            <div class="productitem__stock-level">
  18781.              <!--
  18782.  
  18783.  
  18784.  
  18785.  
  18786.  
  18787.  
  18788.  
  18789. <div class="product-stock-level-wrapper" >
  18790.  
  18791.    <span class="
  18792.  product-stock-level
  18793.  product-stock-level--continue-selling
  18794.  
  18795. ">
  18796.      
  18797.  
  18798.      <span class="product-stock-level__text">
  18799.        
  18800.        <div class="product-stock-level__badge-text">
  18801.          
  18802.  
  18803.    In stock
  18804.  
  18805.  
  18806.        </div>
  18807.      </span>
  18808.    </span>
  18809.  
  18810. </div>
  18811. -->
  18812.              
  18813.  
  18814.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  18815.  
  18816.  
  18817.  
  18818.  
  18819.  
  18820.  
  18821.  
  18822.            </div>
  18823.          
  18824.  
  18825.          
  18826.            
  18827.          
  18828.        
  18829.  
  18830.        
  18831.          <div class="productitem--description">
  18832.            <p>
  18833. Description: New Acer laptop right and left lcd hinge set.
  18834.  
  18835. Compatible Part #'s: 33.SHXN7.001, 33.SHXN7.002
  18836.  
  18837. Compatible Models:
  18838. Acer Aspire 1 A114...</p>
  18839.  
  18840.            
  18841.              <a
  18842.                href="/products/cdd_acer_aspire_a114-31_a314-31_right_left_lcd_hinge_set"
  18843.                class="productitem--link"
  18844.                data-product-page-link
  18845.              >
  18846.                View full details
  18847.              </a>
  18848.            
  18849.          </div>
  18850.        
  18851.      </div>
  18852.  
  18853.      
  18854.        
  18855.          
  18856.          
  18857.          
  18858.  
  18859.          
  18860.          
  18861.  
  18862.          
  18863.  
  18864.          
  18865.  
  18866.          <div class="productitem--actions" data-product-actions>
  18867.            <div class="productitem--listview-price">
  18868.              
  18869.  
  18870.  
  18871.  
  18872.  
  18873.  
  18874.  
  18875.  
  18876.  
  18877.  
  18878.  
  18879.  
  18880.  
  18881.  
  18882.  
  18883.  
  18884.  
  18885.  
  18886.  
  18887.  
  18888.  
  18889.  
  18890.  
  18891.  
  18892.  
  18893.  
  18894.  
  18895.  
  18896.  
  18897.  
  18898.  
  18899. <div class="price productitem__price ">
  18900.  
  18901.    <div
  18902.      class="price__compare-at visible"
  18903.      data-price-compare-container
  18904.    >
  18905.  
  18906.      
  18907.        <span class="money price__original" data-price-original></span>
  18908.      
  18909.    </div>
  18910.  
  18911.  
  18912.    
  18913.      
  18914.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18915.        
  18916.          <span class="visually-hidden">Original price</span>
  18917.          <span class="money price__compare-at--min" data-price-compare-min>
  18918.            $83.97
  18919.          </span>
  18920.          -
  18921.          <span class="visually-hidden">Original price</span>
  18922.          <span class="money price__compare-at--max" data-price-compare-max>
  18923.            $83.97
  18924.          </span>
  18925.        
  18926.      </div>
  18927.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18928.        <span class="visually-hidden">Original price</span>
  18929.        <span class="money price__compare-at--single" data-price-compare>
  18930.          
  18931.        </span>
  18932.      </div>
  18933.    
  18934.  
  18935.  
  18936.  <div class="price__current price__current--emphasize " data-price-container>
  18937.  
  18938.    
  18939.  
  18940.    
  18941.      
  18942.      
  18943.      <span class="money" data-price>
  18944.        $83.97
  18945.      </span>
  18946.    
  18947.    
  18948.  </div>
  18949.  
  18950.  
  18951.    
  18952.    <div class="price__current--hidden" data-current-price-range-hidden>
  18953.      
  18954.        <span class="money price__current--min" data-price-min>$83.97</span>
  18955.        -
  18956.        <span class="money price__current--max" data-price-max>$83.97</span>
  18957.      
  18958.    </div>
  18959.    <div class="price__current--hidden" data-current-price-hidden>
  18960.      <span class="visually-hidden">Current price</span>
  18961.      <span class="money" data-price>
  18962.        $83.97
  18963.      </span>
  18964.    </div>
  18965.  
  18966.  
  18967.  
  18968.    
  18969.    
  18970.    
  18971.    
  18972.  
  18973.    <div
  18974.      class="
  18975.        productitem__unit-price
  18976.        hidden
  18977.      "
  18978.      data-unit-price
  18979.    >
  18980.      <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>
  18981.    </div>
  18982.  
  18983.  
  18984.  
  18985. </div>
  18986.  
  18987.  
  18988.            </div>
  18989.  
  18990.            <div class="productitem--listview-badge">
  18991.              
  18992.  
  18993.  
  18994.  
  18995.  
  18996.  
  18997.  
  18998.  
  18999.  
  19000.  
  19001.  
  19002.  
  19003.  
  19004.  
  19005.  
  19006.  
  19007.  
  19008.  
  19009.  
  19010.  
  19011.  
  19012.  
  19013.  
  19014.  
  19015.  
  19016.  
  19017.  
  19018.  
  19019.            </div>
  19020.  
  19021.            
  19022.              <div
  19023.                class="
  19024.                  productitem--action
  19025.                  quickshop-button
  19026.                  
  19027.                "
  19028.              >
  19029.                <button
  19030.                  class="productitem--action-trigger button-secondary"
  19031.                  data-quickshop-full
  19032.                  
  19033.                  
  19034.                  type="button"
  19035.                >
  19036.                  Quick shop
  19037.                </button>
  19038.              </div>
  19039.            
  19040.  
  19041.            
  19042.              <div
  19043.                class="
  19044.                  productitem--action
  19045.                  atc--button
  19046.                  
  19047.                "
  19048.              >
  19049.                <button
  19050.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19051.                  type="button"
  19052.                  aria-label="Add to cart"
  19053.                  
  19054.                    data-quick-buy
  19055.                  
  19056.                  data-variant-id="29462327361623"
  19057.                  
  19058.                >
  19059.                  <span class="atc-button--text">
  19060.                    Add to cart
  19061.                  </span>
  19062.                  <span class="atc-button--icon"><svg
  19063.  aria-hidden="true"
  19064.  focusable="false"
  19065.  role="presentation"
  19066.  width="26"
  19067.  height="26"
  19068.  viewBox="0 0 26 26"
  19069.  xmlns="http://www.w3.org/2000/svg"
  19070. >
  19071.  <g fill-rule="nonzero" fill="currentColor">
  19072.    <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"/>
  19073.  </g>
  19074. </svg></span>
  19075.                </button>
  19076.              </div>
  19077.            
  19078.          </div>
  19079.        
  19080.      
  19081.    </div>
  19082.  </div>
  19083.  
  19084.  
  19085.    <script type="application/json" data-quick-buy-settings>
  19086.      {
  19087.        "cart_redirection": true,
  19088.        "money_format": "${{amount}}"
  19089.      }
  19090.    </script>
  19091.  
  19092. </li>
  19093.    
  19094.  
  19095.    
  19096.  </ul>
  19097.  
  19098.  
  19099.    
  19100.      <a
  19101.        class="
  19102.          button-primary
  19103.          featured-collection__button
  19104.        "
  19105.        href="/collections/shop-the-best-selling"
  19106.      >
  19107.        View All
  19108.      </a>
  19109.    
  19110.  
  19111. </section>
  19112.  
  19113.  
  19114. <div class="productitem-quickshop" data-product-quickshop>
  19115.  <span class="quickshop-spinner"><svg
  19116.  aria-hidden="true"
  19117.  focusable="false"
  19118.  role="presentation"
  19119.  width="26"
  19120.  height="26"
  19121.  viewBox="0 0 26 26"
  19122.  xmlns="http://www.w3.org/2000/svg"
  19123. >
  19124.  <g fill-rule="nonzero" fill="currentColor">
  19125.    <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"/>
  19126.  </g>
  19127. </svg></span>
  19128. </div>
  19129.  
  19130.  
  19131. </div><div id="shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114" class="shopify-section slideshow--section">
  19132.  
  19133.  
  19134.  
  19135. <script type="application/pxs-animation-mapping+json">
  19136.  {
  19137.    "blocks": [".slideshow-slide"],
  19138.    "elements": [
  19139.      ".slideshow-slide__heading",
  19140.      ".slideshow-slide__subheading",
  19141.      ".slideshow-slide__text",
  19142.      ".slideshow-slide__button"
  19143.    ]
  19144.  }
  19145. </script>
  19146.  
  19147. <style data-shopify>
  19148.  #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 {
  19149.    --autoplay-interval: 5s;
  19150.  }
  19151.  
  19152.  
  19153.    @media screen and (min-width: 720px) {
  19154.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19155.        height: vw;
  19156.      }
  19157.    }
  19158.  
  19159.  
  19160.  
  19161.    @media screen and (max-width: 719px) {
  19162.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19163.        
  19164.          height: vw;
  19165.        
  19166.      }
  19167.    }
  19168.  
  19169. </style>
  19170.  
  19171.  
  19172.  
  19173.  
  19174. <script
  19175.  type="application/json"
  19176.  data-section-type="pxs-slideshow"
  19177.  data-section-id="template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114"
  19178.  data-section-data
  19179. >
  19180.  {
  19181.    "enable_autoplay": true,
  19182.    "autoplay_interval": 5,
  19183.    "mobile_navigation_adjust": true,
  19184.    "transition_fade": null,
  19185.    "slide_attraction": null,
  19186.    "slide_friction": null,
  19187.    "next_text": "Next slide",
  19188.    "previous_text": "Previous slide"
  19189.  }
  19190. </script>
  19191.  
  19192. <section
  19193.  class="
  19194.    slideshow
  19195.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  19196.  "
  19197.  aria-label="Slideshow"
  19198.  data-autoplay="true"
  19199.  data-autoplay-interval="5"
  19200.  data-banner="false"
  19201.  data-slideshow
  19202. ><div
  19203.    class="slideshow__wrapper "
  19204.    data-slideshow-wrapper
  19205.  ></div><div
  19206.    class="slideshow__current-slide visually-hidden"
  19207.    aria-live="polite"
  19208.    aria-atomic="true"
  19209.    data-slide-counter
  19210.    data-counter-template="Slide {{ count }} of {{ total }}"
  19211.  >
  19212.  </div>
  19213. </section>
  19214.  
  19215.  
  19216.  
  19217. </div><div id="shopify-section-template--15492296147031__516e59b8-141e-43e3-8f1d-46287735da01" class="shopify-section logolist--section"><script type="application/pxs-animation-mapping+json">
  19218.  {
  19219.    "blocks": [".logolist--inner"],
  19220.    "elements": [
  19221.      ".logolist--item"
  19222.    ]
  19223.  }
  19224. </script>
  19225.  
  19226. <section class="logolist--container">
  19227.  
  19228.    <h2 class="home-section--title">
  19229.      Search By Brands
  19230.    </h2>
  19231.  
  19232.  
  19233.  <div class="home-section--content logolist--inner">
  19234.    
  19235.      <div class="logolist--item" >
  19236.        
  19237.          <a
  19238.            class="logolist--link"
  19239.            href="/collections/acer-parts-canada"
  19240.            target="_blank"
  19241.          >
  19242.        
  19243.  
  19244.        
  19245.          
  19246.  
  19247.  
  19248.    <noscript data-rimg-noscript>
  19249.      <img loading="lazy"
  19250.        
  19251.          src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19252.        
  19253.  
  19254.        alt=""
  19255.        data-rimg="noscript"
  19256.        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"
  19257.        class="logolist--image"
  19258.        style="
  19259.        object-fit:cover;object-position:50.0% 50.0%;
  19260.      
  19261. "
  19262.        
  19263.      >
  19264.    </noscript>
  19265.  
  19266.  
  19267.  <img loading="lazy"
  19268.    
  19269.      src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19270.    
  19271.    alt=""
  19272.  
  19273.    
  19274.      data-rimg="lazy"
  19275.      data-rimg-scale="1"
  19276.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Acer_{size}.png?v=1698309818"
  19277.      data-rimg-max="1024x247"
  19278.      data-rimg-crop="false"
  19279.      
  19280.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='39'></svg>"
  19281.    
  19282.  
  19283.    class="logolist--image"
  19284.    style="
  19285.        object-fit:cover;object-position:50.0% 50.0%;
  19286.      
  19287. "
  19288.    
  19289.  >
  19290.  
  19291.  
  19292.  
  19293.  <div data-rimg-canvas></div>
  19294.  
  19295.  
  19296.        
  19297.  
  19298.        
  19299.          </a>
  19300.        
  19301.      </div>
  19302.    
  19303.      <div class="logolist--item" >
  19304.        
  19305.          <a
  19306.            class="logolist--link"
  19307.            href="/collections/dell-laptop-batteries"
  19308.            target="_blank"
  19309.          >
  19310.        
  19311.  
  19312.        
  19313.          
  19314.  
  19315.  
  19316.    <noscript data-rimg-noscript>
  19317.      <img loading="lazy"
  19318.        
  19319.          src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  19320.        
  19321.  
  19322.        alt=""
  19323.        data-rimg="noscript"
  19324.        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"
  19325.        class="logolist--image"
  19326.        style="
  19327.        object-fit:cover;object-position:50.0% 50.0%;
  19328.      
  19329. "
  19330.        
  19331.      >
  19332.    </noscript>
  19333.  
  19334.  
  19335.  <img loading="lazy"
  19336.    
  19337.      src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  19338.    
  19339.    alt=""
  19340.  
  19341.    
  19342.      data-rimg="lazy"
  19343.      data-rimg-scale="1"
  19344.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_{size}.png?v=1698309835"
  19345.      data-rimg-max="2048x2048"
  19346.      data-rimg-crop="false"
  19347.      
  19348.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  19349.    
  19350.  
  19351.    class="logolist--image"
  19352.    style="
  19353.        object-fit:cover;object-position:50.0% 50.0%;
  19354.      
  19355. "
  19356.    
  19357.  >
  19358.  
  19359.  
  19360.  
  19361.  <div data-rimg-canvas></div>
  19362.  
  19363.  
  19364.        
  19365.  
  19366.        
  19367.          </a>
  19368.        
  19369.      </div>
  19370.    
  19371.      <div class="logolist--item" >
  19372.        
  19373.          <a
  19374.            class="logolist--link"
  19375.            href="/collections/asus-parts-canada"
  19376.            target="_blank"
  19377.          >
  19378.        
  19379.  
  19380.        
  19381.          
  19382.  
  19383.  
  19384.    <noscript data-rimg-noscript>
  19385.      <img loading="lazy"
  19386.        
  19387.          src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  19388.        
  19389.  
  19390.        alt=""
  19391.        data-rimg="noscript"
  19392.        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"
  19393.        class="logolist--image"
  19394.        style="
  19395.        object-fit:cover;object-position:50.0% 50.0%;
  19396.      
  19397. "
  19398.        
  19399.      >
  19400.    </noscript>
  19401.  
  19402.  
  19403.  <img loading="lazy"
  19404.    
  19405.      src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  19406.    
  19407.    alt=""
  19408.  
  19409.    
  19410.      data-rimg="lazy"
  19411.      data-rimg-scale="1"
  19412.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Asus_{size}.png?v=1698309865"
  19413.      data-rimg-max="504x100"
  19414.      data-rimg-crop="false"
  19415.      
  19416.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='32'></svg>"
  19417.    
  19418.  
  19419.    class="logolist--image"
  19420.    style="
  19421.        object-fit:cover;object-position:50.0% 50.0%;
  19422.      
  19423. "
  19424.    
  19425.  >
  19426.  
  19427.  
  19428.  
  19429.  <div data-rimg-canvas></div>
  19430.  
  19431.  
  19432.        
  19433.  
  19434.        
  19435.          </a>
  19436.        
  19437.      </div>
  19438.    
  19439.      <div class="logolist--item" >
  19440.        
  19441.          <a
  19442.            class="logolist--link"
  19443.            href="/collections/fujitsu"
  19444.            target="_blank"
  19445.          >
  19446.        
  19447.  
  19448.        
  19449.          
  19450.  
  19451.  
  19452.    <noscript data-rimg-noscript>
  19453.      <img loading="lazy"
  19454.        
  19455.          src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  19456.        
  19457.  
  19458.        alt=""
  19459.        data-rimg="noscript"
  19460.        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"
  19461.        class="logolist--image"
  19462.        style="
  19463.        object-fit:cover;object-position:50.0% 50.0%;
  19464.      
  19465. "
  19466.        
  19467.      >
  19468.    </noscript>
  19469.  
  19470.  
  19471.  <img loading="lazy"
  19472.    
  19473.      src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  19474.    
  19475.    alt=""
  19476.  
  19477.    
  19478.      data-rimg="lazy"
  19479.      data-rimg-scale="1"
  19480.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_{size}.png?v=1698309977"
  19481.      data-rimg-max="1280x602"
  19482.      data-rimg-crop="false"
  19483.      
  19484.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='76'></svg>"
  19485.    
  19486.  
  19487.    class="logolist--image"
  19488.    style="
  19489.        object-fit:cover;object-position:50.0% 50.0%;
  19490.      
  19491. "
  19492.    
  19493.  >
  19494.  
  19495.  
  19496.  
  19497.  <div data-rimg-canvas></div>
  19498.  
  19499.  
  19500.        
  19501.  
  19502.        
  19503.          </a>
  19504.        
  19505.      </div>
  19506.    
  19507.      <div class="logolist--item" >
  19508.        
  19509.          <a
  19510.            class="logolist--link"
  19511.            href="/collections/samsung"
  19512.            target="_blank"
  19513.          >
  19514.        
  19515.  
  19516.        
  19517.          
  19518.  
  19519.  
  19520.    <noscript data-rimg-noscript>
  19521.      <img loading="lazy"
  19522.        
  19523.          src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  19524.        
  19525.  
  19526.        alt=""
  19527.        data-rimg="noscript"
  19528.        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"
  19529.        class="logolist--image"
  19530.        style="
  19531.        object-fit:cover;object-position:50.0% 50.0%;
  19532.      
  19533. "
  19534.        
  19535.      >
  19536.    </noscript>
  19537.  
  19538.  
  19539.  <img loading="lazy"
  19540.    
  19541.      src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  19542.    
  19543.    alt=""
  19544.  
  19545.    
  19546.      data-rimg="lazy"
  19547.      data-rimg-scale="1"
  19548.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_{size}.png?v=1698309930"
  19549.      data-rimg-max="7051x1080"
  19550.      data-rimg-crop="false"
  19551.      
  19552.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  19553.    
  19554.  
  19555.    class="logolist--image"
  19556.    style="
  19557.        object-fit:cover;object-position:50.0% 50.0%;
  19558.      
  19559. "
  19560.    
  19561.  >
  19562.  
  19563.  
  19564.  
  19565.  <div data-rimg-canvas></div>
  19566.  
  19567.  
  19568.        
  19569.  
  19570.        
  19571.          </a>
  19572.        
  19573.      </div>
  19574.    
  19575.      <div class="logolist--item" >
  19576.        
  19577.          <a
  19578.            class="logolist--link"
  19579.            href="/collections/apple-parts-canada"
  19580.            target="_blank"
  19581.          >
  19582.        
  19583.  
  19584.        
  19585.          
  19586.  
  19587.  
  19588.    <noscript data-rimg-noscript>
  19589.      <img loading="lazy"
  19590.        
  19591.          src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  19592.        
  19593.  
  19594.        alt=""
  19595.        data-rimg="noscript"
  19596.        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"
  19597.        class="logolist--image"
  19598.        style="
  19599.        object-fit:cover;object-position:50.0% 50.0%;
  19600.      
  19601. "
  19602.        
  19603.      >
  19604.    </noscript>
  19605.  
  19606.  
  19607.  <img loading="lazy"
  19608.    
  19609.      src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  19610.    
  19611.    alt=""
  19612.  
  19613.    
  19614.      data-rimg="lazy"
  19615.      data-rimg-scale="1"
  19616.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Apple-Logo_{size}.jpg?v=1698309948"
  19617.      data-rimg-max="3840x2160"
  19618.      data-rimg-crop="false"
  19619.      
  19620.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='90'></svg>"
  19621.    
  19622.  
  19623.    class="logolist--image"
  19624.    style="
  19625.        object-fit:cover;object-position:50.0% 50.0%;
  19626.      
  19627. "
  19628.    
  19629.  >
  19630.  
  19631.  
  19632.  
  19633.  <div data-rimg-canvas></div>
  19634.  
  19635.  
  19636.        
  19637.  
  19638.        
  19639.          </a>
  19640.        
  19641.      </div>
  19642.    
  19643.      <div class="logolist--item" >
  19644.        
  19645.          <a
  19646.            class="logolist--link"
  19647.            href="/collections/hp-laptop-battery"
  19648.            target="_blank"
  19649.          >
  19650.        
  19651.  
  19652.        
  19653.          
  19654.  
  19655.  
  19656.    <noscript data-rimg-noscript>
  19657.      <img loading="lazy"
  19658.        
  19659.          src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  19660.        
  19661.  
  19662.        alt=""
  19663.        data-rimg="noscript"
  19664.        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"
  19665.        class="logolist--image"
  19666.        style="
  19667.        object-fit:cover;object-position:50.0% 50.0%;
  19668.      
  19669. "
  19670.        
  19671.      >
  19672.    </noscript>
  19673.  
  19674.  
  19675.  <img loading="lazy"
  19676.    
  19677.      src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  19678.    
  19679.    alt=""
  19680.  
  19681.    
  19682.      data-rimg="lazy"
  19683.      data-rimg-scale="1"
  19684.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_{size}.png?v=1698310007"
  19685.      data-rimg-max="2048x2048"
  19686.      data-rimg-crop="false"
  19687.      
  19688.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  19689.    
  19690.  
  19691.    class="logolist--image"
  19692.    style="
  19693.        object-fit:cover;object-position:50.0% 50.0%;
  19694.      
  19695. "
  19696.    
  19697.  >
  19698.  
  19699.  
  19700.  
  19701.  <div data-rimg-canvas></div>
  19702.  
  19703.  
  19704.        
  19705.  
  19706.        
  19707.          </a>
  19708.        
  19709.      </div>
  19710.    
  19711.      <div class="logolist--item" >
  19712.        
  19713.          <a
  19714.            class="logolist--link"
  19715.            href="/collections/all"
  19716.            target="_blank"
  19717.          >
  19718.        
  19719.  
  19720.        
  19721.          
  19722.  
  19723.  
  19724.    <noscript data-rimg-noscript>
  19725.      <img loading="lazy"
  19726.        
  19727.          src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  19728.        
  19729.  
  19730.        alt=""
  19731.        data-rimg="noscript"
  19732.        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"
  19733.        class="logolist--image"
  19734.        style="
  19735.        object-fit:cover;object-position:50.0% 50.0%;
  19736.      
  19737. "
  19738.        
  19739.      >
  19740.    </noscript>
  19741.  
  19742.  
  19743.  <img loading="lazy"
  19744.    
  19745.      src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  19746.    
  19747.    alt=""
  19748.  
  19749.    
  19750.      data-rimg="lazy"
  19751.      data-rimg-scale="1"
  19752.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_{size}.png?v=1698310074"
  19753.      data-rimg-max="5000x3125"
  19754.      data-rimg-crop="false"
  19755.      
  19756.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='100'></svg>"
  19757.    
  19758.  
  19759.    class="logolist--image"
  19760.    style="
  19761.        object-fit:cover;object-position:50.0% 50.0%;
  19762.      
  19763. "
  19764.    
  19765.  >
  19766.  
  19767.  
  19768.  
  19769.  <div data-rimg-canvas></div>
  19770.  
  19771.  
  19772.        
  19773.  
  19774.        
  19775.          </a>
  19776.        
  19777.      </div>
  19778.    
  19779.      <div class="logolist--item" >
  19780.        
  19781.          <a
  19782.            class="logolist--link"
  19783.            href="/collections/all"
  19784.            target="_blank"
  19785.          >
  19786.        
  19787.  
  19788.        
  19789.          
  19790.  
  19791.  
  19792.    <noscript data-rimg-noscript>
  19793.      <img loading="lazy"
  19794.        
  19795.          src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  19796.        
  19797.  
  19798.        alt=""
  19799.        data-rimg="noscript"
  19800.        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"
  19801.        class="logolist--image"
  19802.        style="
  19803.        object-fit:cover;object-position:50.0% 50.0%;
  19804.      
  19805. "
  19806.        
  19807.      >
  19808.    </noscript>
  19809.  
  19810.  
  19811.  <img loading="lazy"
  19812.    
  19813.      src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  19814.    
  19815.    alt=""
  19816.  
  19817.    
  19818.      data-rimg="lazy"
  19819.      data-rimg-scale="1"
  19820.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Alienware_{size}.png?v=1698310052"
  19821.      data-rimg-max="860x231"
  19822.      data-rimg-crop="false"
  19823.      
  19824.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='43'></svg>"
  19825.    
  19826.  
  19827.    class="logolist--image"
  19828.    style="
  19829.        object-fit:cover;object-position:50.0% 50.0%;
  19830.      
  19831. "
  19832.    
  19833.  >
  19834.  
  19835.  
  19836.  
  19837.  <div data-rimg-canvas></div>
  19838.  
  19839.  
  19840.        
  19841.  
  19842.        
  19843.          </a>
  19844.        
  19845.      </div>
  19846.    
  19847.      <div class="logolist--item" >
  19848.        
  19849.          <a
  19850.            class="logolist--link"
  19851.            href="/collections/all"
  19852.            target="_blank"
  19853.          >
  19854.        
  19855.  
  19856.        
  19857.          
  19858.  
  19859.  
  19860.    <noscript data-rimg-noscript>
  19861.      <img loading="lazy"
  19862.        
  19863.          src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  19864.        
  19865.  
  19866.        alt=""
  19867.        data-rimg="noscript"
  19868.        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"
  19869.        class="logolist--image"
  19870.        style="
  19871.        object-fit:cover;object-position:50.0% 50.0%;
  19872.      
  19873. "
  19874.        
  19875.      >
  19876.    </noscript>
  19877.  
  19878.  
  19879.  <img loading="lazy"
  19880.    
  19881.      src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  19882.    
  19883.    alt=""
  19884.  
  19885.    
  19886.      data-rimg="lazy"
  19887.      data-rimg-scale="1"
  19888.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_{size}.png?v=1698310106"
  19889.      data-rimg-max="1200x183"
  19890.      data-rimg-crop="false"
  19891.      
  19892.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  19893.    
  19894.  
  19895.    class="logolist--image"
  19896.    style="
  19897.        object-fit:cover;object-position:50.0% 50.0%;
  19898.      
  19899. "
  19900.    
  19901.  >
  19902.  
  19903.  
  19904.  
  19905.  <div data-rimg-canvas></div>
  19906.  
  19907.  
  19908.        
  19909.  
  19910.        
  19911.          </a>
  19912.        
  19913.      </div>
  19914.    
  19915.      <div class="logolist--item" >
  19916.        
  19917.          <a
  19918.            class="logolist--link"
  19919.            href="/collections/all"
  19920.            target="_blank"
  19921.          >
  19922.        
  19923.  
  19924.        
  19925.          
  19926.  
  19927.  
  19928.    <noscript data-rimg-noscript>
  19929.      <img loading="lazy"
  19930.        
  19931.          src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  19932.        
  19933.  
  19934.        alt=""
  19935.        data-rimg="noscript"
  19936.        srcset="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364 1x, //laptopparts.ca/cdn/shop/files/Panasonic_224x224.png?v=1698310364 1.4x"
  19937.        class="logolist--image"
  19938.        style="
  19939.        object-fit:cover;object-position:50.0% 50.0%;
  19940.      
  19941. "
  19942.        
  19943.      >
  19944.    </noscript>
  19945.  
  19946.  
  19947.  <img loading="lazy"
  19948.    
  19949.      src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  19950.    
  19951.    alt=""
  19952.  
  19953.    
  19954.      data-rimg="lazy"
  19955.      data-rimg-scale="1"
  19956.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Panasonic_{size}.png?v=1698310364"
  19957.      data-rimg-max="225x225"
  19958.      data-rimg-crop="false"
  19959.      
  19960.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  19961.    
  19962.  
  19963.    class="logolist--image"
  19964.    style="
  19965.        object-fit:cover;object-position:50.0% 50.0%;
  19966.      
  19967. "
  19968.    
  19969.  >
  19970.  
  19971.  
  19972.  
  19973.  <div data-rimg-canvas></div>
  19974.  
  19975.  
  19976.        
  19977.  
  19978.        
  19979.          </a>
  19980.        
  19981.      </div>
  19982.    
  19983.      <div class="logolist--item" >
  19984.        
  19985.          <a
  19986.            class="logolist--link"
  19987.            href="/collections/all"
  19988.            target="_blank"
  19989.          >
  19990.        
  19991.  
  19992.        
  19993.          
  19994.  
  19995.  
  19996.    <noscript data-rimg-noscript>
  19997.      <img loading="lazy"
  19998.        
  19999.          src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20000.        
  20001.  
  20002.        alt=""
  20003.        data-rimg="noscript"
  20004.        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"
  20005.        class="logolist--image"
  20006.        style="
  20007.        object-fit:cover;object-position:50.0% 50.0%;
  20008.      
  20009. "
  20010.        
  20011.      >
  20012.    </noscript>
  20013.  
  20014.  
  20015.  <img loading="lazy"
  20016.    
  20017.      src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20018.    
  20019.    alt=""
  20020.  
  20021.    
  20022.      data-rimg="lazy"
  20023.      data-rimg-scale="1"
  20024.      data-rimg-template="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_{size}.png?v=1698310433"
  20025.      data-rimg-max="666x375"
  20026.      data-rimg-crop="false"
  20027.      
  20028.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='91'></svg>"
  20029.    
  20030.  
  20031.    class="logolist--image"
  20032.    style="
  20033.        object-fit:cover;object-position:50.0% 50.0%;
  20034.      
  20035. "
  20036.    
  20037.  >
  20038.  
  20039.  
  20040.  
  20041.  <div data-rimg-canvas></div>
  20042.  
  20043.  
  20044.        
  20045.  
  20046.        
  20047.          </a>
  20048.        
  20049.      </div>
  20050.    
  20051.  </div>
  20052. </section>
  20053.  
  20054. </div><div id="shopify-section-template--15492296147031__16962663497dd9ec87" class="shopify-section"><div class="product-section--container">
  20055.  
  20056. </div>
  20057.  
  20058.  
  20059. </div><div id="shopify-section-template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706" class="shopify-section highlights-banner"><script
  20060.  type="application/json"
  20061.  data-section-type="dynamic-highlights-banner"
  20062.  data-section-id="template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706">
  20063. </script>
  20064.  
  20065. <style>
  20066.  
  20067.  
  20068.    .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706.highlights-banner__container {
  20069.      background-color: #000000;
  20070.    }
  20071.  
  20072.  
  20073.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:before {
  20074.    background: linear-gradient( to right, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20075.  }
  20076.  
  20077.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:after {
  20078.    background: linear-gradient( to left, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20079.  }
  20080.  
  20081.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__block {
  20082.    color: #ffffff;
  20083.  }
  20084.  
  20085.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__icon {
  20086.    color: #fe0000;
  20087.  }
  20088. </style>
  20089.  
  20090. <script type="application/pxs-animation-mapping+json">
  20091.  {
  20092.    "blocks": [".highlights-banners-block"],
  20093.    "elements": []
  20094.  }
  20095. </script>
  20096.  
  20097. <div class="
  20098.  highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706
  20099.  highlights-banner__container
  20100.  highlights-banner__mobile-layout--slider
  20101.  full-width
  20102.  "
  20103. >
  20104.  <div class="highlights-banner__content highlight-banner__count-4"
  20105.   data-highlights-slider
  20106.  >
  20107.    
  20108.      
  20109.        <div
  20110.          class="highlights-banner__block highlights-banner__align-left"
  20111.          
  20112.          data-highlights-block
  20113.        >
  20114.          
  20115.            <div class="highlights-banner__icon">
  20116.              
  20117.                
  20118.  
  20119.  
  20120.                                                                    <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>                                                
  20121.  
  20122.              
  20123.            </div>
  20124.          
  20125.  
  20126.          <div class="highlights-banner__text">
  20127.            
  20128.              <span class="highlights-banner__heading">
  20129.                Quality and Saving
  20130.              </span>
  20131.            
  20132.  
  20133.            
  20134.              <p>Comprehensive quality control and affordable prices</p>
  20135.            
  20136.          </div>
  20137.          
  20138.        </div>
  20139.      
  20140.    
  20141.      
  20142.        <div
  20143.          class="highlights-banner__block highlights-banner__align-left"
  20144.          
  20145.          data-highlights-block
  20146.        >
  20147.          
  20148.            <div class="highlights-banner__icon">
  20149.              
  20150.                
  20151.  
  20152.  
  20153.                                  <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>                                                                                  
  20154.  
  20155.              
  20156.            </div>
  20157.          
  20158.  
  20159.          <div class="highlights-banner__text">
  20160.            
  20161.              <span class="highlights-banner__heading">
  20162.                Huge Inventory
  20163.              </span>
  20164.            
  20165.  
  20166.            
  20167.              <p>largest available inventory of parts in Canada</p>
  20168.            
  20169.          </div>
  20170.          
  20171.        </div>
  20172.      
  20173.    
  20174.      
  20175.        <div
  20176.          class="highlights-banner__block highlights-banner__align-left"
  20177.          
  20178.          data-highlights-block
  20179.        >
  20180.          
  20181.            <div class="highlights-banner__icon">
  20182.              
  20183.                
  20184.  
  20185.  
  20186.                            <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>                                                                                        
  20187.  
  20188.              
  20189.            </div>
  20190.          
  20191.  
  20192.          <div class="highlights-banner__text">
  20193.            
  20194.              <span class="highlights-banner__heading">
  20195.                Fast Shipping
  20196.              </span>
  20197.            
  20198.  
  20199.            
  20200.              <p>Fast and convenient door to door delivery</p>
  20201.            
  20202.          </div>
  20203.          
  20204.        </div>
  20205.      
  20206.    
  20207.      
  20208.        <div
  20209.          class="highlights-banner__block highlights-banner__align-left"
  20210.          
  20211.          data-highlights-block
  20212.        >
  20213.          
  20214.            <div class="highlights-banner__icon">
  20215.              
  20216.                
  20217.  
  20218.  
  20219.                          <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>                                                                                          
  20220.  
  20221.              
  20222.            </div>
  20223.          
  20224.  
  20225.          <div class="highlights-banner__text">
  20226.            
  20227.              <span class="highlights-banner__heading">
  20228.                Payment Security
  20229.              </span>
  20230.            
  20231.  
  20232.            
  20233.              <p>We have secured payment methods</p>
  20234.            
  20235.          </div>
  20236.          
  20237.        </div>
  20238.      
  20239.    
  20240.  </div>
  20241. </div>
  20242.  
  20243. </div><div id="shopify-section-template--15492296147031__dynamic_html_knfnMB" class="shopify-section html--section"><script
  20244.  type="application/json"
  20245.  data-section-id="template--15492296147031__dynamic_html_knfnMB"
  20246.  data-section-type="dynamic-html"
  20247. ></script>
  20248.  
  20249. <section class="custom-html--container">
  20250.  
  20251.  <div class="rte" data-rte>
  20252.    <h1 style="text-align:center; margin-bottom:-50px">ABOUT US</h1>
  20253.  </div>
  20254. </section>
  20255.  
  20256. </div><div id="shopify-section-template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0" class="shopify-section rich-text--section"><script
  20257.  type="application/json"
  20258.  data-section-id="template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0"
  20259.  data-section-type="dynamic-rich-text"
  20260. ></script>
  20261.  
  20262. <script type="application/pxs-animation-mapping+json">
  20263.  {
  20264.    "blocks": [".rich-text-block"],
  20265.    "elements": []
  20266.  }
  20267. </script>
  20268.  
  20269. <section
  20270.  class="
  20271.    rich-text--container
  20272.    rich-text-full-width
  20273.  "
  20274. >
  20275.    <div
  20276.      class="
  20277.        rich-text-block
  20278.        rich-text-alignment-center
  20279.      "
  20280.      
  20281.    >
  20282.        
  20283.  
  20284.        
  20285.          <div class="rich-text-content rte" data-rte>
  20286.            <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>
  20287.          </div>
  20288.        
  20289.    </div>
  20290. </section>
  20291.  
  20292. </div><div id="shopify-section-template--15492296147031__dynamic_html_fKi4qq" class="shopify-section html--section"><script
  20293.  type="application/json"
  20294.  data-section-id="template--15492296147031__dynamic_html_fKi4qq"
  20295.  data-section-type="dynamic-html"
  20296. ></script>
  20297.  
  20298. <section class="custom-html--container">
  20299.  
  20300.  <div class="rte" data-rte>
  20301.    <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>
  20302.  </div>
  20303. </section>
  20304.  
  20305. </div>
  20306.    </main>
  20307.  
  20308.    <!-- BEGIN sections: footer-group -->
  20309. <div id="shopify-section-sections--15492291100759__footer" class="shopify-section shopify-section-group-footer-group"><script
  20310.  type="application/json"
  20311.  data-section-id="sections--15492291100759__footer"
  20312.  data-section-type="static-footer">
  20313. </script>
  20314.  
  20315.  
  20316.  
  20317.  
  20318.  
  20319. <footer role="contentinfo" aria-label="Footer">
  20320.  <section class="site-footer-wrapper">
  20321.    
  20322.      <div class="site-footer-item">
  20323.        <div class="site-footer-blocks column-count-4">
  20324.          <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  20325.  
  20326.  
  20327.      <h2 class="site-footer-block-title" data-accordion-trigger>
  20328.        FURTHER INFO.
  20329.  
  20330.        <span class="site-footer-block-icon accordion--icon">
  20331.          <svg
  20332.  aria-hidden="true"
  20333.  focusable="false"
  20334.  role="presentation"
  20335.  width="14"
  20336.  height="8"
  20337.  viewBox="0 0 14 8"
  20338.  fill="none"
  20339.  xmlns="http://www.w3.org/2000/svg"
  20340. >
  20341.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20342.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20343. </svg>
  20344.  
  20345.        </span>
  20346.      </h2>
  20347.  
  20348.      <div class="site-footer-block-content">
  20349.        
  20350.  
  20351.  
  20352.  
  20353.  
  20354.  
  20355.  
  20356.  
  20357.  
  20358.  
  20359.  
  20360.  
  20361.  
  20362. <ul
  20363.  class="
  20364.    navmenu
  20365.    navmenu-depth-1
  20366.    
  20367.    
  20368.  "
  20369.  data-navmenu
  20370.  data-accordion-content
  20371.  
  20372.  
  20373. >
  20374.  
  20375.    
  20376.  
  20377.    
  20378.    
  20379.  
  20380.    
  20381.    
  20382.  
  20383.    
  20384.  
  20385.    
  20386.      <li
  20387.        class="navmenu-item navmenu-id-home"
  20388.      >
  20389.        <a
  20390.        class="
  20391.          navmenu-link
  20392.          navmenu-link-depth-1
  20393.          navmenu-link-active
  20394.        "
  20395.        href="/"
  20396.        >
  20397.          
  20398.          Home
  20399. </a>
  20400.      </li>
  20401.    
  20402.  
  20403.    
  20404.  
  20405.    
  20406.    
  20407.  
  20408.    
  20409.    
  20410.  
  20411.    
  20412.  
  20413.    
  20414.      <li
  20415.        class="navmenu-item navmenu-id-search"
  20416.      >
  20417.        <a
  20418.        class="
  20419.          navmenu-link
  20420.          navmenu-link-depth-1
  20421.          
  20422.        "
  20423.        href="/search"
  20424.        >
  20425.          
  20426.          Search
  20427. </a>
  20428.      </li>
  20429.    
  20430.  
  20431.    
  20432.  
  20433.    
  20434.    
  20435.  
  20436.    
  20437.    
  20438.  
  20439.    
  20440.  
  20441.    
  20442.      <li
  20443.        class="navmenu-item navmenu-id-about-us"
  20444.      >
  20445.        <a
  20446.        class="
  20447.          navmenu-link
  20448.          navmenu-link-depth-1
  20449.          
  20450.        "
  20451.        href="/pages/about-us"
  20452.        >
  20453.          
  20454.          About Us
  20455. </a>
  20456.      </li>
  20457.    
  20458.  
  20459.    
  20460.  
  20461.    
  20462.    
  20463.  
  20464.    
  20465.    
  20466.  
  20467.    
  20468.  
  20469.    
  20470.      <li
  20471.        class="navmenu-item navmenu-id-parts-request"
  20472.      >
  20473.        <a
  20474.        class="
  20475.          navmenu-link
  20476.          navmenu-link-depth-1
  20477.          
  20478.        "
  20479.        href="/pages/part-request"
  20480.        >
  20481.          
  20482.          Parts Request
  20483. </a>
  20484.      </li>
  20485.    
  20486.  
  20487.    
  20488.  
  20489.    
  20490.    
  20491.  
  20492.    
  20493.    
  20494.  
  20495.    
  20496.  
  20497.    
  20498.      <li
  20499.        class="navmenu-item navmenu-id-repair-centers"
  20500.      >
  20501.        <a
  20502.        class="
  20503.          navmenu-link
  20504.          navmenu-link-depth-1
  20505.          
  20506.        "
  20507.        href="/pages/store-locator"
  20508.        >
  20509.          
  20510.          Repair Centers
  20511. </a>
  20512.      </li>
  20513.    
  20514.  
  20515.    
  20516.  
  20517.    
  20518.    
  20519.  
  20520.    
  20521.    
  20522.  
  20523.    
  20524.  
  20525.    
  20526.      <li
  20527.        class="navmenu-item navmenu-id-francais"
  20528.      >
  20529.        <a
  20530.        class="
  20531.          navmenu-link
  20532.          navmenu-link-depth-1
  20533.          
  20534.        "
  20535.        href="/pages/francais"
  20536.        >
  20537.          
  20538.          Français
  20539. </a>
  20540.      </li>
  20541.    
  20542.  
  20543.    
  20544.  
  20545.    
  20546.    
  20547.  
  20548.    
  20549.    
  20550.  
  20551.    
  20552.  
  20553.    
  20554.      <li
  20555.        class="navmenu-item navmenu-id-reviews"
  20556.      >
  20557.        <a
  20558.        class="
  20559.          navmenu-link
  20560.          navmenu-link-depth-1
  20561.          
  20562.        "
  20563.        href="/pages/reviews"
  20564.        >
  20565.          
  20566.          Reviews
  20567. </a>
  20568.      </li>
  20569.    
  20570.  
  20571. </ul>
  20572.  
  20573.  
  20574.        <!-- TG seal - snippets/footer.liquid -->
  20575.        
  20576.          <div style="margin-top: 2em;">
  20577.            <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>
  20578.            <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>
  20579.          </div>
  20580.        
  20581.        <!-- END TG seal - snippets/footer.liquid -->
  20582.      </div>
  20583.  
  20584. </div>
  20585. <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  20586.  
  20587.  
  20588.      <h2 class="site-footer-block-title" data-accordion-trigger>
  20589.        CUSTOMER SERVICE
  20590.  
  20591.        <span class="site-footer-block-icon accordion--icon">
  20592.          <svg
  20593.  aria-hidden="true"
  20594.  focusable="false"
  20595.  role="presentation"
  20596.  width="14"
  20597.  height="8"
  20598.  viewBox="0 0 14 8"
  20599.  fill="none"
  20600.  xmlns="http://www.w3.org/2000/svg"
  20601. >
  20602.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20603.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  20604. </svg>
  20605.  
  20606.        </span>
  20607.      </h2>
  20608.  
  20609.      <div class="site-footer-block-content">
  20610.        
  20611.  
  20612.  
  20613.  
  20614.  
  20615.  
  20616.  
  20617.  
  20618.  
  20619.  
  20620.  
  20621.  
  20622.  
  20623. <ul
  20624.  class="
  20625.    navmenu
  20626.    navmenu-depth-1
  20627.    
  20628.    
  20629.  "
  20630.  data-navmenu
  20631.  data-accordion-content
  20632.  
  20633.  
  20634. >
  20635.  
  20636.    
  20637.  
  20638.    
  20639.    
  20640.  
  20641.    
  20642.    
  20643.  
  20644.    
  20645.  
  20646.    
  20647.      <li
  20648.        class="navmenu-item navmenu-id-privacy-policy"
  20649.      >
  20650.        <a
  20651.        class="
  20652.          navmenu-link
  20653.          navmenu-link-depth-1
  20654.          
  20655.        "
  20656.        href="/pages/privacy-policy"
  20657.        >
  20658.          
  20659.          Privacy Policy
  20660. </a>
  20661.      </li>
  20662.    
  20663.  
  20664.    
  20665.  
  20666.    
  20667.    
  20668.  
  20669.    
  20670.    
  20671.  
  20672.    
  20673.  
  20674.    
  20675.      <li
  20676.        class="navmenu-item navmenu-id-return-policy"
  20677.      >
  20678.        <a
  20679.        class="
  20680.          navmenu-link
  20681.          navmenu-link-depth-1
  20682.          
  20683.        "
  20684.        href="/pages/returns"
  20685.        >
  20686.          
  20687.          Return Policy
  20688. </a>
  20689.      </li>
  20690.    
  20691.  
  20692.    
  20693.  
  20694.    
  20695.    
  20696.  
  20697.    
  20698.    
  20699.  
  20700.    
  20701.  
  20702.    
  20703.      <li
  20704.        class="navmenu-item navmenu-id-shipping"
  20705.      >
  20706.        <a
  20707.        class="
  20708.          navmenu-link
  20709.          navmenu-link-depth-1
  20710.          
  20711.        "
  20712.        href="/pages/shipping"
  20713.        >
  20714.          
  20715.          Shipping
  20716. </a>
  20717.      </li>
  20718.    
  20719.  
  20720.    
  20721.  
  20722.    
  20723.    
  20724.  
  20725.    
  20726.    
  20727.  
  20728.    
  20729.  
  20730.    
  20731.      <li
  20732.        class="navmenu-item navmenu-id-warranty"
  20733.      >
  20734.        <a
  20735.        class="
  20736.          navmenu-link
  20737.          navmenu-link-depth-1
  20738.          
  20739.        "
  20740.        href="/pages/warranty"
  20741.        >
  20742.          
  20743.          Warranty
  20744. </a>
  20745.      </li>
  20746.    
  20747.  
  20748.    
  20749.  
  20750.    
  20751.    
  20752.  
  20753.    
  20754.    
  20755.  
  20756.    
  20757.  
  20758.    
  20759.      <li
  20760.        class="navmenu-item navmenu-id-blogs"
  20761.      >
  20762.        <a
  20763.        class="
  20764.          navmenu-link
  20765.          navmenu-link-depth-1
  20766.          
  20767.        "
  20768.        href="/blogs/news/how-to-enhance-your-laptops-performance-top-tips-for-optimization"
  20769.        >
  20770.          
  20771.          Blogs
  20772. </a>
  20773.      </li>
  20774.    
  20775.  
  20776. </ul>
  20777.  
  20778.  
  20779.        <!-- TG seal - snippets/footer.liquid -->
  20780.        
  20781.        <!-- END TG seal - snippets/footer.liquid -->
  20782.      </div>
  20783.  
  20784. </div>
  20785. <div class="site-footer-block-item  site-footer-block-social-accounts  " >
  20786.  
  20787.  
  20788.    
  20789.  
  20790.  
  20791.  
  20792.  
  20793.  
  20794.  
  20795.  
  20796.  
  20797.  
  20798.  
  20799.  
  20800.  
  20801.  
  20802.  
  20803.  
  20804.  
  20805.  
  20806.  
  20807.  
  20808.  
  20809.  
  20810.  
  20811.    
  20812.    
  20813.  
  20814.  
  20815.  
  20816.  
  20817.    <h2 class="site-footer-block-title">
  20818.      Follow us
  20819.    </h2>
  20820.  
  20821.    <div class="site-footer-block-content">
  20822.  
  20823.  
  20824.  <div class="social-icons">
  20825.  
  20826.  
  20827. <a
  20828.  class="social-link"
  20829.  title="Facebook"
  20830.  href="https://web.facebook.com/laptopparts.ca/?_rdc=1&amp;_rdr"
  20831.  target="_blank">
  20832. <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>
  20833.  
  20834.    <span class="visually-hidden">Find us on Facebook</span>
  20835.  
  20836. </a>
  20837.  
  20838.  
  20839.  
  20840.  
  20841. <a
  20842.  class="social-link"
  20843.  title="Twitter"
  20844.  href="https://twitter.com/i/flow/login?redirect_after_login=%2FLaptopParts_ca"
  20845.  target="_blank">
  20846. <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>
  20847.  
  20848.    <span class="visually-hidden">Find us on Twitter</span>
  20849.  
  20850. </a>
  20851.  
  20852. </div>
  20853.  
  20854.  
  20855.    </div>
  20856.  
  20857.  
  20858.  
  20859.  
  20860. </div>
  20861. <div class="site-footer-block-item  site-footer-block-rich-text  " >
  20862.  
  20863.  
  20864.    
  20865.      <h2 class="site-footer-block-title">
  20866.        Contact Us
  20867.      </h2>
  20868.    
  20869.  
  20870.    
  20871.      <div class="site-footer-block-content rte">
  20872.        <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-343-337-6133</p><p></p>
  20873.      </div>
  20874.    
  20875.  
  20876.    
  20877.  
  20878. </div>
  20879.  
  20880.        </div>
  20881.      </div>
  20882.    
  20883.  
  20884.    <div class="site-footer-item site-footer-item--information">
  20885.      <div class="site-footer__row site-footer__row--first">
  20886. <div class="site-footer-right ">
  20887.        <div class="shopify-cross-border">
  20888.          
  20889.        
  20890.          
  20891.        </div>
  20892.        
  20893. <ul class="payment-icons">
  20894.          
  20895.            <li class="payment-icons-item">
  20896.              <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>
  20897.  
  20898.            </li>
  20899.          
  20900.            <li class="payment-icons-item">
  20901.              <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>
  20902.  
  20903.            </li>
  20904.          
  20905.            <li class="payment-icons-item">
  20906.              <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>
  20907.            </li>
  20908.          
  20909.            <li class="payment-icons-item">
  20910.              <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>
  20911.            </li>
  20912.          
  20913.            <li class="payment-icons-item">
  20914.              <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>
  20915.  
  20916.            </li>
  20917.          
  20918.            <li class="payment-icons-item">
  20919.              <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>
  20920.            </li>
  20921.          
  20922.            <li class="payment-icons-item">
  20923.              <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>
  20924.            </li>
  20925.          
  20926.            <li class="payment-icons-item">
  20927.              <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>
  20928.  
  20929.            </li>
  20930.          
  20931.            <li class="payment-icons-item">
  20932.              <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>
  20933.            </li>
  20934.          
  20935.        </ul></div>
  20936.      </div>
  20937.  
  20938.      <div class="site-footer__row site-footer__row--second">
  20939.        <div class="site-footer__row-inner-wrapper-left"><p class="site-footer-credits">
  20940.            LaptopParts.ca
  20941.          </p>
  20942.  
  20943.          <p class="site-footer-credits" style="color:black;">Developed By <a href="https://searchaly.com" style="text-decoration:none;color:black;">Searchaly</a>
  20944.          </p>
  20945.        </div>
  20946.  
  20947.        
  20948. <div class="site-footer-right ">
  20949.        <div class="shopify-cross-border">
  20950.          
  20951.        
  20952.          
  20953.        </div>
  20954.        
  20955. <ul class="payment-icons">
  20956.          
  20957.            <li class="payment-icons-item">
  20958.              <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>
  20959.  
  20960.            </li>
  20961.          
  20962.            <li class="payment-icons-item">
  20963.              <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>
  20964.  
  20965.            </li>
  20966.          
  20967.            <li class="payment-icons-item">
  20968.              <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>
  20969.            </li>
  20970.          
  20971.            <li class="payment-icons-item">
  20972.              <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>
  20973.            </li>
  20974.          
  20975.            <li class="payment-icons-item">
  20976.              <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>
  20977.  
  20978.            </li>
  20979.          
  20980.            <li class="payment-icons-item">
  20981.              <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>
  20982.            </li>
  20983.          
  20984.            <li class="payment-icons-item">
  20985.              <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>
  20986.            </li>
  20987.          
  20988.            <li class="payment-icons-item">
  20989.              <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>
  20990.  
  20991.            </li>
  20992.          
  20993.            <li class="payment-icons-item">
  20994.              <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>
  20995.            </li>
  20996.          
  20997.        </ul></div>
  20998.      </div>
  20999.    </div>
  21000.  </section>
  21001. </footer>
  21002.  
  21003. </div>
  21004. <!-- END sections: footer-group -->
  21005.  
  21006.    
  21007.    <div style="display: none;" aria-hidden="true" data-templates>
  21008.      
  21009.      <div
  21010.        class="message-banner--container"
  21011.        role="alert"
  21012.        data-message-banner
  21013.      >
  21014.        <div class="message-banner--outer">
  21015.          <div class="message-banner--inner" data-message-banner-content></div>
  21016.  
  21017.          <button
  21018.            class="message-banner--close"
  21019.            type="button"
  21020.            aria-label="Close"
  21021.            data-message-banner-close
  21022.          ><svg
  21023.  aria-hidden="true"
  21024.  focusable="false"
  21025.  role="presentation"
  21026.  xmlns="http://www.w3.org/2000/svg"
  21027.  width="13"
  21028.  height="13"
  21029.  viewBox="0 0 13 13"
  21030. >
  21031.  <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"/>
  21032. </svg></button>
  21033.        </div>
  21034.      </div>
  21035.      
  21036.  
  21037.      
  21038.      <section class="atc-banner--container" role="log" data-atc-banner>
  21039.        <div class="atc-banner--outer">
  21040.          <div class="atc-banner--inner">
  21041.            <div class="atc-banner--product">
  21042.              <h2 class="atc-banner--product-title">
  21043.                <span class="atc-banner--product-title--icon">
  21044.                  
  21045.  
  21046.  
  21047.                <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>                                                                                                    
  21048.  
  21049.                </span>
  21050.                Added to your cart:
  21051.              </h2>
  21052.  
  21053.              <div class="atc--product">
  21054.                <div class="atc--product-image" data-atc-banner-product-image>
  21055.                  <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>
  21056.                </div>
  21057.                <div class="atc--product-details">
  21058.                  <h2 class="atc--product-details--title" data-atc-banner-product-title></h2>
  21059.                  <span class="atc--product-details--options" data-atc-banner-product-options></span>
  21060.                  <span class="atc--product-details--price">
  21061.                    <span class="atc--product-details--price-quantity" data-atc-banner-product-price-quantity></span>
  21062.                    <span class="atc--product-details--price-value money" data-atc-banner-product-price-value></span>
  21063.                    <span
  21064.                      class="atc--product-details--price-discounted money"
  21065.                      data-atc-banner-product-price-discounted
  21066.                    ></span>
  21067.                    <span class="atc--product-details--unit-price hidden" data-atc-banner-unit-price>
  21068.                      ** total_quantity ** | ** unit_price ** / ** unit_measure **
  21069.                    </span>
  21070.                  </span>
  21071.                  <ul class="discount-list" data-atc-banner-product-discounts>
  21072.                    <li class="discount-list-item">
  21073.                      
  21074.  
  21075.  
  21076.                                                                        <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>                                            
  21077.  
  21078.                      <span class="discount-title"></span>
  21079.                      (-<span class="money discount-amount"></span>)
  21080.                    </li>
  21081.                  </ul>
  21082.                  <span class="atc--line-item-subscriptions" data-atc-banner-product-subscription-title></span>
  21083.                </div>
  21084.              </div>
  21085.            </div>
  21086.  
  21087.            <div class="atc-banner--cart">
  21088.              <div class="atc-banner--cart-subtotal">
  21089.                <span class="atc-subtotal--label">
  21090.                  Cart subtotal
  21091.                </span>
  21092.                <span class="atc-subtotal--price money" data-atc-banner-cart-subtotal></span>
  21093.              </div>
  21094.  
  21095.              <footer class="atc-banner--cart-footer">
  21096.                <a
  21097.                  class="button-secondary atc-button--viewcart"
  21098.                  href="/cart"
  21099.                  data-atc-banner-cart-button
  21100.                >
  21101.                  View cart (<span></span>)
  21102.                </a>
  21103.                <form
  21104.                  action="/cart"
  21105.                  method="post"
  21106.                  aria-label="cart checkout"
  21107.                >
  21108.                  <button class="button-primary atc-button--checkout" type="submit" name="checkout">
  21109.                    
  21110.                      <svg
  21111. width="20"
  21112. height="20"
  21113. viewBox="0 0 20 20"
  21114. fill="none"
  21115. xmlns="http://www.w3.org/2000/svg">
  21116. <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"/>
  21117. <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"/>
  21118. </svg>
  21119.  
  21120.                    
  21121.                    <span>Checkout</span>
  21122.                  </button>
  21123.                </form>
  21124.              </footer>
  21125.            </div>
  21126.          </div>
  21127.  
  21128.          <button
  21129.            class="atc-banner--close"
  21130.            type="button"
  21131.            aria-label="Close"
  21132.            data-atc-banner-close
  21133.          ><svg
  21134.  aria-hidden="true"
  21135.  focusable="false"
  21136.  role="presentation"
  21137.  xmlns="http://www.w3.org/2000/svg"
  21138.  width="13"
  21139.  height="13"
  21140.  viewBox="0 0 13 13"
  21141. >
  21142.  <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"/>
  21143. </svg></button>
  21144.        </div>
  21145.      </section>
  21146.      
  21147.    </div>
  21148.  
  21149.    
  21150.    
  21151.    <div class="modal" data-modal-container aria-label="modal window" data-trap-focus>
  21152.      <div class="modal-inner" data-modal-inner>
  21153.        <button
  21154.          class="modal-close"
  21155.          type="button"
  21156.          aria-label="Close"
  21157.          data-modal-close
  21158.        >
  21159.          <svg
  21160.  aria-hidden="true"
  21161.  focusable="false"
  21162.  role="presentation"
  21163.  xmlns="http://www.w3.org/2000/svg"
  21164.  width="13"
  21165.  height="13"
  21166.  viewBox="0 0 13 13"
  21167. >
  21168.  <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"/>
  21169. </svg>
  21170.        </button>
  21171.        <div class="modal-content" data-modal-content></div>
  21172.      </div>
  21173.    </div>
  21174.  
  21175.    <div class="modal-1" data-modal-container-1 aria-label="modal window">
  21176.      <div class="modal-inner" data-modal-inner>
  21177.        <button
  21178.          class="modal-close"
  21179.          type="button"
  21180.          aria-label="Close"
  21181.          data-modal-1-close
  21182.        >
  21183.          <svg
  21184.  aria-hidden="true"
  21185.  focusable="false"
  21186.  role="presentation"
  21187.  xmlns="http://www.w3.org/2000/svg"
  21188.  width="13"
  21189.  height="13"
  21190.  viewBox="0 0 13 13"
  21191. >
  21192.  <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"/>
  21193. </svg>
  21194.        </button>
  21195.        <div class="modal-content" data-modal-content></div>
  21196.      </div>
  21197.    </div>
  21198.    
  21199.  
  21200.    
  21201.    
  21202.    
  21203.    <div
  21204.      class="pswp"
  21205.      tabindex="-1"
  21206.      role="dialog"
  21207.      aria-hidden="true"
  21208.      aria-label="Product zoom dialog"
  21209.      data-photoswipe
  21210.    >
  21211.      
  21212.      <div class="pswp__bg"></div>
  21213.  
  21214.      
  21215.      <div class="pswp__scroll-wrap">
  21216.        
  21217.        <div class="pswp__container" aria-hidden="true">
  21218.          <div class="pswp__item"></div>
  21219.          <div class="pswp__item"></div>
  21220.          <div class="pswp__item"></div>
  21221.        </div>
  21222.  
  21223.        
  21224.        <div class="pswp__ui pswp__ui--hidden">
  21225.          <div class="pswp__top-bar">
  21226.            
  21227.            <div class="pswp__counter"></div>
  21228.            <button class="pswp__button pswp__button--close" title="Close">
  21229.              <span tabindex="-1">
  21230.                
  21231.  
  21232.  
  21233.              <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>                                                                                                      
  21234.  
  21235.              </span>
  21236.            </button>
  21237.            <button class="pswp__button pswp__button--share" title="Share"></button>
  21238.            <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
  21239.            <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
  21240.  
  21241.            
  21242.            
  21243.            <div class="pswp__preloader">
  21244.              <div class="pswp__preloader__icn">
  21245.                <div class="pswp__preloader__cut">
  21246.                  <div class="pswp__preloader__donut"></div>
  21247.                </div>
  21248.              </div>
  21249.            </div>
  21250.          </div>
  21251.  
  21252.          <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
  21253.            <div class="pswp__share-tooltip"></div>
  21254.          </div>
  21255.  
  21256.          <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
  21257.          <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button>
  21258.  
  21259.          <div class="pswp__caption">
  21260.            <div class="pswp__caption__center"></div>
  21261.          </div>
  21262.        </div>
  21263.      </div>
  21264.      <div class="product-zoom--thumbnails" data-photoswipe-thumbs>
  21265.        <button
  21266.          class="gallery-navigation--scroll-button scroll-left"
  21267.          aria-label="Scroll thumbnails left"
  21268.          data-gallery-scroll-button
  21269.        >
  21270.          <svg
  21271.  aria-hidden="true"
  21272.  focusable="false"
  21273.  role="presentation"
  21274.  width="14"
  21275.  height="8"
  21276.  viewBox="0 0 14 8"
  21277.  fill="none"
  21278.  xmlns="http://www.w3.org/2000/svg"
  21279. >
  21280.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21281.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21282. </svg>
  21283.  
  21284.        </button>
  21285.        <button
  21286.          class="gallery-navigation--scroll-button scroll-right"
  21287.          aria-label="Scroll thumbnails right"
  21288.          data-gallery-scroll-button
  21289.        >
  21290.          <svg
  21291.  aria-hidden="true"
  21292.  focusable="false"
  21293.  role="presentation"
  21294.  width="14"
  21295.  height="8"
  21296.  viewBox="0 0 14 8"
  21297.  fill="none"
  21298.  xmlns="http://www.w3.org/2000/svg"
  21299. >
  21300.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21301.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21302. </svg>
  21303.  
  21304.        </button>
  21305.        <div class="product-zoom--thumb-scroller" data-photoswipe-thumb-scroller></div>
  21306.      </div>
  21307.    </div>
  21308.    
  21309.  
  21310.    
  21311.    
  21312.    
  21313.    
  21314.    
  21315.  
  21316.    
  21317.  
  21318.    
  21319.  
  21320.      <script>
  21321.        (
  21322.          function () {
  21323.            var classes = {
  21324.              block: 'pxu-lia-block',
  21325.              element: 'pxu-lia-element',
  21326.            };
  21327.  
  21328.            document
  21329.              .querySelectorAll('[type="application/pxs-animation-mapping+json"]')
  21330.              .forEach(function (mappingEl) {
  21331.                const section = mappingEl.parentNode;
  21332.                try {
  21333.                  const mapping = JSON.parse(mappingEl.innerHTML);
  21334.                  mapping.elements.forEach(function (elementSelector) {
  21335.                    section
  21336.                      .querySelectorAll(elementSelector)
  21337.                      .forEach(function (element) { element.classList.add(classes.element); });
  21338.                  });
  21339.  
  21340.                  mapping.blocks.forEach(function (blockSelector) {
  21341.                    section
  21342.                      .querySelectorAll(blockSelector)
  21343.                      .forEach(function (block) { block.classList.add(classes.block); });
  21344.                  });
  21345.                } catch (error) {
  21346.                  console.warn('Unable to parse animation mapping', mappingEl, error);
  21347.                }
  21348.            });
  21349.          }
  21350.        )()
  21351.      </script>
  21352.    
  21353.  
  21354.    <script src="//laptopparts.ca/cdn/shop/t/20/assets/empire.js?v=101264981332624388091749821448" data-scripts
  21355.      data-shopify-api-url="//laptopparts.ca/cdn/shopifycloud/storefront/assets/themes_support/api.jquery-7ab1a3a4.js"
  21356.      data-shopify-countries="/services/javascripts/countries.js"
  21357.      data-shopify-common="//laptopparts.ca/cdn/shopifycloud/storefront/assets/themes_support/shopify_common-5f594365.js"
  21358.      data-shopify-cart="//laptopparts.ca/cdn/shop/t/20/assets/jquery.cart.js?v=156888"
  21359.      data-pxu-polyfills="//laptopparts.ca/cdn/shop/t/20/assets/polyfills.min.js?v=41774645620324957141712444022">
  21360.    </script>
  21361.  
  21362.    
  21363.  
  21364.  
  21365.  
  21366.  
  21367.  
  21368.  
  21369.  
  21370.  
  21371.  
  21372.  
  21373.  
  21374.  
  21375.  
  21376.  
  21377. <script type="application/ld+json">
  21378.  {
  21379.    "@context": "http://schema.org",
  21380.    "@type": "WebSite",
  21381.    "name": "LaptopParts.ca",
  21382.    "url": "https://laptopparts.ca"
  21383.  }
  21384. </script>
  21385.  
  21386.  
  21387.    <script>
  21388.      (function () {
  21389.        function handleFirstTab(e) {
  21390.          if (e.keyCode === 9) { // the "I am a keyboard user" key
  21391.            document.body.classList.add('user-is-tabbing');
  21392.            window.removeEventListener('keydown', handleFirstTab);
  21393.          }
  21394.        }
  21395.        window.addEventListener('keydown', handleFirstTab);
  21396.      })();
  21397.    </script>
  21398.  
  21399.    
  21400.      <link href="//laptopparts.ca/cdn/shop/t/20/assets/ripple.css?v=100240391239311985871712444022" rel="stylesheet" type="text/css" media="all" />
  21401.    
  21402.  
  21403.    <script defer
  21404.      src="//laptopparts.ca/cdn/shop/t/20/assets/instantPage.min.js?v=75111080190164688561712444022"
  21405.      type="module">
  21406.    </script>
  21407.    <!-- <script src="//clever-predictive-search.thesupportheroes.com/js/core/main.min.js?timestamp=1698326561&shop=laptoppartsatp.myshopify.com" defer>
  21408.    </script> -->
  21409. <!-- 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 -->
  21410.  
  21411. <!-- eDesk Shopify widget 9hs3kbe90 (delayed load) -->
  21412. <script>
  21413. window.addEventListener("load", function () {
  21414.  
  21415.  setTimeout(function () {
  21416.  
  21417.    (window._xsq || (function (x, s) {
  21418.      window._xsq = [];
  21419.  
  21420.      var d = function () {
  21421.        var c, b, a = document.createElement("iframe");
  21422.        a.src = "javascript:false";
  21423.        a.title = "";
  21424.        a.role = "presentation";
  21425.        (a.frameElement || a).style.cssText = "display: none";
  21426.        document.body.appendChild(a);
  21427.  
  21428.        try {
  21429.          b = a.contentWindow.document;
  21430.        } catch (g) {
  21431.          c = document.domain;
  21432.          a.src = "javascript:var d=document.open();d.domain='" + c + "';void(0);";
  21433.          b = a.contentWindow.document;
  21434.        }
  21435.  
  21436.        b.open()._l = function () {
  21437.          var a = this.createElement("script");
  21438.          c && (this.domain = c);
  21439.          a.id = "js-iframe-async";
  21440.          a.src = "https://" + x + s;
  21441.          this.body.appendChild(a);
  21442.        };
  21443.  
  21444.        b.write('<body onload="document._l();">');
  21445.        b.close();
  21446.      };
  21447.  
  21448.      if (window.addEventListener) {
  21449.        window.addEventListener("load", d, false);
  21450.      } else if (window.attachEvent) {
  21451.        window.attachEvent("onload", d);
  21452.      } else {
  21453.        setTimeout(d, 2000);
  21454.      }
  21455.  
  21456.      return _xsq;
  21457.  
  21458.    })('widgets.xsellco.com', '/js/widgets.js'))
  21459.    .push(['load', '9hs3kbe90', document.scripts[document.scripts.length - 1]]);
  21460.  
  21461.  }, 5000); // 🔥 5 seconds delay after full page load
  21462.  
  21463. });
  21464. </script>
  21465. <!-- End eDesk Shopify widget -->    
  21466. <!-- Shopper Approved - layout/theme.liquid -->  
  21467.    <style>
  21468.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span{
  21469.        vertical-align: -1px;
  21470.      }
  21471.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span:last-child{
  21472.        vertical-align: -1px;
  21473.      }
  21474.      .star_container{
  21475.        height: 24px;
  21476.        margin-bottom: 5px;
  21477.      }
  21478.      .star_container .ind_cnt {
  21479.        display: inline;
  21480.        padding-left: 8px;
  21481.        font-size: 13px;
  21482.        vertical-align: 3px;
  21483.        text-align: center;
  21484.        width: 100%;
  21485.        }
  21486.      #product_just_stars {
  21487.        display: inline-block;
  21488.      }
  21489.      #product_just_stars .SA__review_widget_item .SA__total_reviews a {
  21490.        font-weight: bold;
  21491.        font-size: 14px;
  21492.        border-right: 1px solid #000;
  21493.        padding-right: 10px;
  21494.        margin-right: 8px;
  21495.        text-decoration: underline;
  21496.        color: #000;
  21497.      }
  21498.      #ab-tiny-widget {
  21499.        margin-top: 10px !important;
  21500.        margin-bottom: 10px !important;
  21501.        display: inline-block !important;
  21502.        font-size: 14px !important;
  21503.        vertical-align: 3px !important;
  21504.      }
  21505.    
  21506.      #ab-tiny-widget > a:nth-child(1),
  21507.      #ab-tiny-widget > a:nth-child(2) {
  21508.        text-decoration: underline;
  21509.        font-weight: bold;
  21510.        color: #000;
  21511.      }
  21512.    
  21513.      span#ab-tiny-widget a {
  21514.          color: inherit !important;
  21515.      }
  21516.      @media screen and (max-width: 576px) {
  21517.          .answerbase-widget{
  21518.          padding-right: 20px !important;
  21519.          padding-left: 20px !important;
  21520.      
  21521.        }
  21522.         #product_just_stars .SA__review_widget_item .SA__total_reviews a {
  21523.          border-right:none !important;
  21524.        }
  21525.      }
  21526.    </style>
  21527.    <script>
  21528.        window.addEventListener("load", function () {
  21529.  
  21530.          setTimeout(function () {
  21531.  
  21532.            // 1. Load Shopper Approved widget
  21533.            var sa = document.createElement("script");
  21534.            sa.type = "text/javascript";
  21535.            sa.src = "https://www.shopperapproved.com/widgets/group2.0/40623.js";
  21536.            document.head.appendChild(sa);
  21537.  
  21538.            // 2. Load HelpScout Beacon script AFTER SA loads
  21539.            sa.onload = function () {
  21540.  
  21541.              var hs = document.createElement("script");
  21542.              hs.type = "text/javascript";
  21543.              hs.async = true;
  21544.              hs.src = "https://beacon-v2.helpscout.net";
  21545.  
  21546.              hs.onload = function () {
  21547.                window.Beacon('init', '4c7bc089-215e-4a80-9d06-25571d96425f');
  21548.              };
  21549.  
  21550.              document.head.appendChild(hs);
  21551.            };
  21552.  
  21553.          }, 5000); // 5 second delay
  21554.  
  21555.        });
  21556.    </script>
  21557.        <div id="shopify-block-AN2k5QkMvdUJ0UDFZd__8171265131012698934" class="shopify-block shopify-app-block">
  21558.  
  21559. <input class="OrichiAppEmbed" type="hidden">
  21560. <input
  21561.  class="OrichiCustomerTags"
  21562.  type="hidden"
  21563.  value=""
  21564. >
  21565. <input
  21566.  class="OrichiCustomerEmail"
  21567.  type="hidden"
  21568.  value=""
  21569. >
  21570.  
  21571.  
  21572.  
  21573.  
  21574.  
  21575. <script>
  21576.  var orichiDiscount = {
  21577.    productJSPath:
  21578.      'https://cdn.shopify.com/extensions/019e44a0-1c7f-7005-9b4e-be85767b596e/discount-quantity-dev-996/assets/productpage.min.js'
  21579.    ,
  21580.    cartJSPath:
  21581.      'https://cdn.shopify.com/extensions/019e44a0-1c7f-7005-9b4e-be85767b596e/discount-quantity-dev-996/assets/cartajax.min.js'
  21582.    ,
  21583.    currencyFormat: "${{amount}}",
  21584.  }
  21585. </script>
  21586.  
  21587.  
  21588.  
  21589.  
  21590.  
  21591.    <script async src="https://cdn.shopify.com/extensions/019e44a0-1c7f-7005-9b4e-be85767b596e/discount-quantity-dev-996/assets/front.min.js"></script>
  21592.  
  21593.  
  21594.  
  21595. <script>
  21596.  
  21597.    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"}};
  21598.  
  21599. </script>
  21600.  
  21601.  
  21602. </div><div id="shopify-block-AcThYNTRkUW1SdzMyZ__6610233760104865948" class="shopify-block shopify-app-block"><script>
  21603.  window.pushowlSubdomain = "laptoppartsatp.myshopify.com".split(".")[0]
  21604.  window.isPushowlThemeAppExtentionEnabled = true
  21605.  window.pushowlGUID = "146bbc31-bd0a-4f6c-aed3-3452245866bf"
  21606.  window.pushowlEnvironment = "production"
  21607.  window.pushowlConfigSource = "pushowl"
  21608.  window.pushowlConfigUrl = ""
  21609. </script>
  21610.  
  21611.  
  21612.  
  21613.  
  21614. </div><div id="shopify-block-AeXdFL3NiTloxRjRUY__14952540001915115444" class="shopify-block shopify-app-block">
  21615.  
  21616.  
  21617.  
  21618.  
  21619. <link id="upcart-stylesheet" rel="preload" href="https://cdn.shopify.com/extensions/019e46ca-4228-7cc2-8bac-f794f854f6e3/upcart-2-392/assets/upcart-stylesheet.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
  21620.  
  21621.  
  21622.  
  21623.  <script defer type="text/javascript" src="https://cdn.shopify.com/extensions/019e46ca-4228-7cc2-8bac-f794f854f6e3/upcart-2-392/assets/upcart-bundle.js"></script>
  21624.  
  21625.  
  21626. <script>
  21627.  
  21628.  function b64DecodeUnicode(str) {
  21629.    try {
  21630.        return decodeURIComponent(
  21631.        atob(str)
  21632.            .split('')
  21633.            .map(function (c) {
  21634.            return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
  21635.            })
  21636.            .join(''),
  21637.        );
  21638.    } catch {
  21639.        return str;
  21640.    }
  21641.  }
  21642. </script>
  21643.  
  21644.  
  21645. <script>
  21646. (function() {
  21647.    window.upcartSettings = {};
  21648.    window.upcartSettings.upcartSettings = {};
  21649.    window.upcartSettings.upcartEditorSettings = {};
  21650.    window.upcartSettings.stickyCartButtonEditorSettings = {};
  21651.  
  21652.    
  21653.    
  21654.    
  21655.    let val;
  21656.  
  21657.    val = b64DecodeUnicode("cmlnaHQ=");
  21658.    if (val === '') {
  21659.        val = b64DecodeUnicode("cmlnaHQ=");
  21660.    }
  21661.    window.upcartSettings.upcartSettings.cartPosition = val;
  21662.  
  21663.    val = b64DecodeUnicode("ZmFsc2U=");
  21664.    if (val === '') {
  21665.        val = b64DecodeUnicode("ZmFsc2U=");
  21666.    }
  21667.    val = JSON.parse(val);
  21668.    window.upcartSettings.upcartSettings.disableSticky = val;
  21669.  
  21670.    val = b64DecodeUnicode("dHJ1ZQ==");
  21671.    if (val === '') {
  21672.        val = b64DecodeUnicode("dHJ1ZQ==");
  21673.    }
  21674.    val = JSON.parse(val);
  21675.    window.upcartSettings.upcartSettings.openOnAddToCart = val;
  21676.  
  21677.    val = b64DecodeUnicode("ZmFsc2U=");
  21678.    if (val === '') {
  21679.        val = b64DecodeUnicode("ZmFsc2U=");
  21680.    }
  21681.    val = JSON.parse(val);
  21682.    window.upcartSettings.upcartSettings.redirectToCart = val;
  21683.  
  21684.    val = b64DecodeUnicode("dHJ1ZQ==");
  21685.    if (val === '') {
  21686.        val = b64DecodeUnicode("ZmFsc2U=");
  21687.    }
  21688.    val = JSON.parse(val);
  21689.    window.upcartSettings.upcartSettings.enableCartSkeletons = val;
  21690.  
  21691.    val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJZb3VyIFNob3BwaW5nIENhcnQiLCJjaGVja291dCI6IlNlY3VyZSBDaGVja291dCDigKIge3t0b3RhbF9wcmljZX19IiwiYWRkVGV4dCI6IkFkZCIsImVtcHR5Q2FydCI6IllvdXIgY2FydCBpcyBlbXB0eSIsImRpc2NvdW50U2F2aW5ncyI6IlNhdmUiLCJjb250aW51ZVNob3BwaW5nIjoiT3IgY29udGludWUgc2hvcHBpbmciLCJ0b3RhbFNhdmluZ3MiOiJEaXNjb3VudHMiLCJzdWJ0b3RhbCI6IlN1YnRvdGFsIn0=");
  21692.    if (val === '') {
  21693.        val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJDYXJ0IOKAoiB7e2NhcnRfcXVhbnRpdHl9fSIsImNoZWNrb3V0IjoiQ2hlY2tvdXQg4oCiIHt7dG90YWxfcHJpY2V9fSIsImFkZFRleHQiOiJBZGQiLCJlbXB0eUNhcnQiOiJZb3VyIGNhcnQgaXMgZW1wdHkiLCJkaXNjb3VudFNhdmluZ3MiOiJTYXZlIiwiY29udGludWVTaG9wcGluZyI6Ik9yIGNvbnRpbnVlIHNob3BwaW5nIiwidG90YWxTYXZpbmdzIjoiRGlzY291bnRzIiwic3VidG90YWwiOiJTdWJ0b3RhbCIsImJ1bmRsZUhpZGVTaW5ndWxhckl0ZW1UZXh0IjoiSGlkZSAxIGl0ZW0iLCJidW5kbGVTaG93U2luZ3VsYXJJdGVtVGV4dCI6IlNob3cgMSBpdGVtIiwiYnVuZGxlSGlkZU11bHRpcGxlSXRlbXNUZXh0IjoiSGlkZSB7TlVNQkVSX09GX0lURU1TfSBpdGVtcyIsImJ1bmRsZVNob3dNdWx0aXBsZUl0ZW1zVGV4dCI6IlNob3cge05VTUJFUl9PRl9JVEVNU30gaXRlbXMifQ==");
  21694.    }
  21695.    val = JSON.parse(val);
  21696.    window.upcartSettings.upcartSettings.translations = val;
  21697.  
  21698.    val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  21699.    if (val === '') {
  21700.        val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYmVsb3dDYXJ0SXRlbXMiOiIiLCJhYm92ZUNoZWNrb3V0QnV0dG9uIjoiIiwiYmVsb3dDaGVja291dEJ1dHRvbiI6IiIsImJvdHRvbU9mQ2FydCI6IiIsIm9uRW1wdHlDYXJ0IjoiIiwic2NyaXB0c0JlZm9yZUxvYWQiOiIifQ==");
  21701.    }
  21702.    val = JSON.parse(val);
  21703.    window.upcartSettings.upcartSettings.htmlFields = val;
  21704.  
  21705.    val = b64DecodeUnicode("dHJ1ZQ==");
  21706.    if (val === '') {
  21707.        val = b64DecodeUnicode("dHJ1ZQ==");
  21708.    }
  21709.    val = JSON.parse(val);
  21710.    window.upcartSettings.upcartSettings.automaticDiscount = val;
  21711.  
  21712.    val = b64DecodeUnicode("ZmFsc2U=");
  21713.    if (val === '') {
  21714.        val = b64DecodeUnicode("ZmFsc2U=");
  21715.    }
  21716.    val = JSON.parse(val);
  21717.    window.upcartSettings.upcartSettings.basePriceForDiscount = val;
  21718.  
  21719.    val = b64DecodeUnicode("dHJ1ZQ==");
  21720.    if (val === '') {
  21721.        val = b64DecodeUnicode("ZmFsc2U=");
  21722.    }
  21723.    val = JSON.parse(val);
  21724.    window.upcartSettings.upcartSettings.hideSingleUnderscoredProperties = val;
  21725.  
  21726.    val = b64DecodeUnicode("ZmFsc2U=");
  21727.    if (val === '') {
  21728.        val = b64DecodeUnicode("ZmFsc2U=");
  21729.    }
  21730.    val = JSON.parse(val);
  21731.    window.upcartSettings.upcartSettings.showContinueShoppingButton = val;
  21732.  
  21733.    val = b64DecodeUnicode("ZmFsc2U=");
  21734.    if (val === '') {
  21735.        val = b64DecodeUnicode("ZmFsc2U=");
  21736.    }
  21737.    val = JSON.parse(val);
  21738.    window.upcartSettings.upcartSettings.ajaxRaceConditionPrevention = val;
  21739.  
  21740.    val = b64DecodeUnicode("ZmFsc2U=");
  21741.    if (val === '') {
  21742.        val = b64DecodeUnicode("ZmFsc2U=");
  21743.    }
  21744.    val = JSON.parse(val);
  21745.    window.upcartSettings.upcartSettings.htmlFieldForceReRender = val;
  21746.  
  21747.    val = b64DecodeUnicode("ZmFsc2U=");
  21748.    if (val === '') {
  21749.        val = b64DecodeUnicode("ZmFsc2U=");
  21750.    }
  21751.    val = JSON.parse(val);
  21752.    window.upcartSettings.upcartSettings.skipGoogleFonts = val;
  21753.  
  21754.    val = b64DecodeUnicode("ZmFsc2U=");
  21755.    if (val === '') {
  21756.        val = b64DecodeUnicode("ZmFsc2U=");
  21757.    }
  21758.    val = JSON.parse(val);
  21759.    window.upcartSettings.upcartSettings.overrideScrollLocking = val;
  21760.  
  21761.    val = b64DecodeUnicode("MTAw");
  21762.    if (val === '') {
  21763.        val = b64DecodeUnicode("MTAw");
  21764.    }
  21765.    window.upcartSettings.upcartSettings.trafficAllocationPercent = val;
  21766.  
  21767.    val = b64DecodeUnicode("dHJ1ZQ==");
  21768.    if (val === '') {
  21769.        val = b64DecodeUnicode("ZmFsc2U=");
  21770.    }
  21771.    val = JSON.parse(val);
  21772.    window.upcartSettings.upcartSettings.renderCartInShadowDom = val;
  21773.  
  21774.    val = b64DecodeUnicode("dHJ1ZQ==");
  21775.    if (val === '') {
  21776.        val = b64DecodeUnicode("ZmFsc2U=");
  21777.    }
  21778.    val = JSON.parse(val);
  21779.    window.upcartSettings.upcartSettings.cartEventTracking = val;
  21780.  
  21781.    val = b64DecodeUnicode("");
  21782.    if (val === '') {
  21783.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  21784.    }
  21785.    val = JSON.parse(val);
  21786.    window.upcartSettings.upcartSettings.openCartButtonSelection = val;
  21787.  
  21788.    val = b64DecodeUnicode("");
  21789.    if (val === '') {
  21790.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  21791.    }
  21792.    val = JSON.parse(val);
  21793.    window.upcartSettings.upcartSettings.addToCartButtonSelection = val;
  21794.  
  21795.    val = b64DecodeUnicode("bGluZQ==");
  21796.    if (val === '') {
  21797.        val = b64DecodeUnicode("bGluZQ==");
  21798.    }
  21799.    window.upcartSettings.upcartSettings.updateItemIdentifier = val;
  21800.  
  21801.    val = b64DecodeUnicode("Knt9");
  21802.    if (val === '') {
  21803.        val = b64DecodeUnicode("Knt9");
  21804.    }
  21805.    window.upcartSettings.upcartSettings.customCSS = val;
  21806.  
  21807.    val = b64DecodeUnicode("Knt9");
  21808.    if (val === '') {
  21809.        val = b64DecodeUnicode("Knt9");
  21810.    }
  21811.    window.upcartSettings.upcartSettings.customStickyCartCSS = val;
  21812.  
  21813.    val = b64DecodeUnicode("ZmFsc2U=");
  21814.    if (val === '') {
  21815.        val = b64DecodeUnicode("ZmFsc2U=");
  21816.    }
  21817.    val = JSON.parse(val);
  21818.    window.upcartSettings.upcartSettings.integrationZapietEnabled = val;
  21819.  
  21820.    val = b64DecodeUnicode("ZmFsc2U=");
  21821.    if (val === '') {
  21822.        val = b64DecodeUnicode("ZmFsc2U=");
  21823.    }
  21824.    val = JSON.parse(val);
  21825.    window.upcartSettings.upcartSettings.integrationYmqEnabled = val;
  21826.  
  21827.    val = b64DecodeUnicode("");
  21828.    if (val === '') {
  21829.        val = b64DecodeUnicode("eyJzdGF0dXMiOiJESVNBQkxFRCJ9");
  21830.    }
  21831.    val = JSON.parse(val);
  21832.    window.upcartSettings.upcartSettings.customCartBundleInfo = val;
  21833.  
  21834.    val = b64DecodeUnicode("");
  21835.    if (val === '') {
  21836.        val = b64DecodeUnicode("ZGlzY291bnRfb25seQ==");
  21837.    }
  21838.    window.upcartSettings.upcartSettings.savingsRowBehaviour = val;
  21839.  
  21840.    val = b64DecodeUnicode("");
  21841.    if (val === '') {
  21842.        val = b64DecodeUnicode("W10=");
  21843.    }
  21844.    val = JSON.parse(val);
  21845.    window.upcartSettings.upcartSettings.activeCartIds = val;
  21846.  
  21847.    val = b64DecodeUnicode("dHJ1ZQ==");
  21848.    if (val === '') {
  21849.        val = b64DecodeUnicode("dHJ1ZQ==");
  21850.    }
  21851.    val = JSON.parse(val);
  21852.    window.upcartSettings.upcartEditorSettings.cartIsEnabled = val;
  21853.  
  21854.    val = b64DecodeUnicode("");
  21855.    if (val === '') {
  21856.        val = b64DecodeUnicode("");
  21857.    }
  21858.    window.upcartSettings.upcartEditorSettings.cartId = val;
  21859.  
  21860.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwYTlkMWMiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCJ9fQ==");
  21861.    if (val === '') {
  21862.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwMDAwMDAiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCIsImNhcnRXaWR0aCI6eyJkZXNrdG9wIjoiYmFzZSIsIm1vYmlsZSI6ImZ1bGwifX19");
  21863.    }
  21864.    val = JSON.parse(val);
  21865.    window.upcartSettings.upcartEditorSettings.settingsModule = val;
  21866.  
  21867.    val = b64DecodeUnicode("");
  21868.    if (val === '') {
  21869.        val = b64DecodeUnicode("IzJlYTgxOA==");
  21870.    }
  21871.    window.upcartSettings.upcartEditorSettings.designSettingsCartSavingsTextColor = val;
  21872.  
  21873.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21874.    if (val === '') {
  21875.        val = b64DecodeUnicode("MS4wLjA=");
  21876.    }
  21877.    window.upcartSettings.upcartEditorSettings.headerModuleVersion = val;
  21878.  
  21879.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21880.    if (val === '') {
  21881.        val = b64DecodeUnicode("MS4wLjA=");
  21882.    }
  21883.    window.upcartSettings.upcartEditorSettings.announcementModuleVersion = val;
  21884.  
  21885.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21886.    if (val === '') {
  21887.        val = b64DecodeUnicode("MS4wLjA=");
  21888.    }
  21889.    window.upcartSettings.upcartEditorSettings.upsellsModuleVersion = val;
  21890.  
  21891.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21892.    if (val === '') {
  21893.        val = b64DecodeUnicode("MS4wLjA=");
  21894.    }
  21895.    window.upcartSettings.upcartEditorSettings.recommendationsModuleVersion = val;
  21896.  
  21897.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21898.    if (val === '') {
  21899.        val = b64DecodeUnicode("MS4wLjA=");
  21900.    }
  21901.    window.upcartSettings.upcartEditorSettings.notesModuleVersion = val;
  21902.  
  21903.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21904.    if (val === '') {
  21905.        val = b64DecodeUnicode("MS4wLjA=");
  21906.    }
  21907.    window.upcartSettings.upcartEditorSettings.discountCodeModuleVersion = val;
  21908.  
  21909.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21910.    if (val === '') {
  21911.        val = b64DecodeUnicode("MS4wLjA=");
  21912.    }
  21913.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleVersion = val;
  21914.  
  21915.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21916.    if (val === '') {
  21917.        val = b64DecodeUnicode("MS4wLjA=");
  21918.    }
  21919.    window.upcartSettings.upcartEditorSettings.rewardsModuleVersion = val;
  21920.  
  21921.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21922.    if (val === '') {
  21923.        val = b64DecodeUnicode("MS4wLjA=");
  21924.    }
  21925.    window.upcartSettings.upcartEditorSettings.cartItemsModuleVersion = val;
  21926.  
  21927.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21928.    if (val === '') {
  21929.        val = b64DecodeUnicode("MS4wLjA=");
  21930.    }
  21931.    window.upcartSettings.upcartEditorSettings.addonsModuleVersion = val;
  21932.  
  21933.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21934.    if (val === '') {
  21935.        val = b64DecodeUnicode("MS4wLjA=");
  21936.    }
  21937.    window.upcartSettings.upcartEditorSettings.cartSummaryModuleVersion = val;
  21938.  
  21939.    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
  21940.    if (val === '') {
  21941.        val = b64DecodeUnicode("MS4wLjA=");
  21942.    }
  21943.    window.upcartSettings.upcartEditorSettings.expressPayModuleVersion = val;
  21944.  
  21945.    val = b64DecodeUnicode("");
  21946.    if (val === '') {
  21947.        val = b64DecodeUnicode("ZmFsc2U=");
  21948.    }
  21949.    val = JSON.parse(val);
  21950.    window.upcartSettings.upcartEditorSettings.customJsxTemplatesEnabled = val;
  21951.  
  21952.    val = b64DecodeUnicode("");
  21953.    if (val === '') {
  21954.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  21955.    }
  21956.    val = JSON.parse(val);
  21957.    window.upcartSettings.upcartEditorSettings.headerModuleCustomJsxTemplates = val;
  21958.  
  21959.    val = b64DecodeUnicode("");
  21960.    if (val === '') {
  21961.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  21962.    }
  21963.    val = JSON.parse(val);
  21964.    window.upcartSettings.upcartEditorSettings.announcementModuleCustomJsxTemplates = val;
  21965.  
  21966.    val = b64DecodeUnicode("");
  21967.    if (val === '') {
  21968.        val = b64DecodeUnicode("eyJ1cHNlbGxUaWxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  21969.    }
  21970.    val = JSON.parse(val);
  21971.    window.upcartSettings.upcartEditorSettings.upsellsModuleCustomJsxTemplates = val;
  21972.  
  21973.    val = b64DecodeUnicode("");
  21974.    if (val === '') {
  21975.        val = b64DecodeUnicode("eyJyZWNvbW1lbmRhdGlvblRpbGUiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwic2tlbGV0b24iOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfX0=");
  21976.    }
  21977.    val = JSON.parse(val);
  21978.    window.upcartSettings.upcartEditorSettings.recommendationsModuleCustomJsxTemplates = val;
  21979.  
  21980.    val = b64DecodeUnicode("");
  21981.    if (val === '') {
  21982.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  21983.    }
  21984.    val = JSON.parse(val);
  21985.    window.upcartSettings.upcartEditorSettings.notesModuleCustomJsxTemplates = val;
  21986.  
  21987.    val = b64DecodeUnicode("");
  21988.    if (val === '') {
  21989.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  21990.    }
  21991.    val = JSON.parse(val);
  21992.    window.upcartSettings.upcartEditorSettings.discountModuleCustomJsxTemplates = val;
  21993.  
  21994.    val = b64DecodeUnicode("");
  21995.    if (val === '') {
  21996.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  21997.    }
  21998.    val = JSON.parse(val);
  21999.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleCustomJsxTemplates = val;
  22000.  
  22001.    val = b64DecodeUnicode("");
  22002.    if (val === '') {
  22003.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22004.    }
  22005.    val = JSON.parse(val);
  22006.    window.upcartSettings.upcartEditorSettings.rewardsModuleCustomJsxTemplates = val;
  22007.  
  22008.    val = b64DecodeUnicode("");
  22009.    if (val === '') {
  22010.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22011.    }
  22012.    val = JSON.parse(val);
  22013.    window.upcartSettings.upcartEditorSettings.triggeredRewardsModuleCustomJsxTemplates = val;
  22014.  
  22015.    val = b64DecodeUnicode("");
  22016.    if (val === '') {
  22017.        val = b64DecodeUnicode("eyJza2VsZXRvbiI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJwcm9kdWN0VGlsZSI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJ2YXJpYW50Ijp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByb3BlcnRpZXMiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwiYnVuZGxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByaWNlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22018.    }
  22019.    val = JSON.parse(val);
  22020.    window.upcartSettings.upcartEditorSettings.cartItemsModuleCustomJsxTemplates = val;
  22021.  
  22022.    val = b64DecodeUnicode("");
  22023.    if (val === '') {
  22024.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22025.    }
  22026.    val = JSON.parse(val);
  22027.    window.upcartSettings.upcartEditorSettings.cartSummaryModuleCustomJsxTemplates = val;
  22028.  
  22029.    val = b64DecodeUnicode("");
  22030.    if (val === '') {
  22031.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22032.    }
  22033.    val = JSON.parse(val);
  22034.    window.upcartSettings.upcartEditorSettings.addonsModuleCustomJsxTemplates = val;
  22035.  
  22036.    val = b64DecodeUnicode("");
  22037.    if (val === '') {
  22038.        val = b64DecodeUnicode("eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9");
  22039.    }
  22040.    val = JSON.parse(val);
  22041.    window.upcartSettings.upcartEditorSettings.betweenAnnouncementsAndTieredRewardsCustomTemplate = val;
  22042.  
  22043.    val = b64DecodeUnicode("");
  22044.    if (val === '') {
  22045.        val = b64DecodeUnicode("eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9");
  22046.    }
  22047.    val = JSON.parse(val);
  22048.    window.upcartSettings.upcartEditorSettings.betweenTieredRewardsAndTriggeredRewardsCustomTemplate = val;
  22049.  
  22050.    val = b64DecodeUnicode("");
  22051.    if (val === '') {
  22052.        val = b64DecodeUnicode("eyJhYm92ZUNoZWNrb3V0Q3VzdG9tSnN4VGVtcGxhdGUiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfX0=");
  22053.    }
  22054.    val = JSON.parse(val);
  22055.    window.upcartSettings.upcartEditorSettings.checkoutModuleCustomJsxTemplates = val;
  22056.  
  22057.    val = b64DecodeUnicode("");
  22058.    if (val === '') {
  22059.        val = b64DecodeUnicode("YmFzZQ==");
  22060.    }
  22061.    window.upcartSettings.upcartEditorSettings.headerBorderBottom = val;
  22062.  
  22063.    val = b64DecodeUnicode("");
  22064.    if (val === '') {
  22065.        val = b64DecodeUnicode("YmFzZQ==");
  22066.    }
  22067.    window.upcartSettings.upcartEditorSettings.headerHeight = val;
  22068.  
  22069.    val = b64DecodeUnicode("");
  22070.    if (val === '') {
  22071.        val = b64DecodeUnicode("I2ZmZmZmZjAw");
  22072.    }
  22073.    window.upcartSettings.upcartEditorSettings.headerBackgroundColor = val;
  22074.  
  22075.    val = b64DecodeUnicode("");
  22076.    if (val === '') {
  22077.        val = b64DecodeUnicode("eyJ0eXBlIjoiaW5oZXJpdEhlYWRpbmdTdHlsZXMiLCJoZWFkaW5nTGV2ZWwiOiJoMiJ9");
  22078.    }
  22079.    val = JSON.parse(val);
  22080.    window.upcartSettings.upcartEditorSettings.headerTitleContent = val;
  22081.  
  22082.    val = b64DecodeUnicode("");
  22083.    if (val === '') {
  22084.        val = b64DecodeUnicode("c2lkZQ==");
  22085.    }
  22086.    window.upcartSettings.upcartEditorSettings.headerTitleAlignment = val;
  22087.  
  22088.    val = b64DecodeUnicode("");
  22089.    if (val === '') {
  22090.        val = b64DecodeUnicode("dGl0bGVfX2Nsb3NlQnV0dG9u");
  22091.    }
  22092.    window.upcartSettings.upcartEditorSettings.headerElementArrangement = val;
  22093.  
  22094.    val = b64DecodeUnicode("");
  22095.    if (val === '') {
  22096.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMDBjIiwib25Ib3ZlciI6IiMwMDAwMDAxNCJ9");
  22097.    }
  22098.    val = JSON.parse(val);
  22099.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBackgroundColor = val;
  22100.  
  22101.    val = b64DecodeUnicode("");
  22102.    if (val === '') {
  22103.        val = b64DecodeUnicode("eyJiYXNlIjoiIzYzNzM4MSIsIm9uSG92ZXIiOm51bGx9");
  22104.    }
  22105.    val = JSON.parse(val);
  22106.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconColor = val;
  22107.  
  22108.    val = b64DecodeUnicode("");
  22109.    if (val === '') {
  22110.        val = b64DecodeUnicode("c21hbGw=");
  22111.    }
  22112.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconSize = val;
  22113.  
  22114.    val = b64DecodeUnicode("");
  22115.    if (val === '') {
  22116.        val = b64DecodeUnicode("YmFzZQ==");
  22117.    }
  22118.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconStrokeWidth = val;
  22119.  
  22120.    val = b64DecodeUnicode("");
  22121.    if (val === '') {
  22122.        val = b64DecodeUnicode("bm9uZQ==");
  22123.    }
  22124.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderWidth = val;
  22125.  
  22126.    val = b64DecodeUnicode("");
  22127.    if (val === '') {
  22128.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMCIsIm9uSG92ZXIiOm51bGx9");
  22129.    }
  22130.    val = JSON.parse(val);
  22131.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderColor = val;
  22132.  
  22133.    val = b64DecodeUnicode("dHJ1ZQ==");
  22134.    if (val === '') {
  22135.        val = b64DecodeUnicode("ZmFsc2U=");
  22136.    }
  22137.    val = JSON.parse(val);
  22138.    window.upcartSettings.upcartEditorSettings.announcementModule = val;
  22139.  
  22140.    val = b64DecodeUnicode("PHA+PHN0cm9uZz4qKioqKiAgRlJFRSBTSElQUElORyAqKioqKjwvc3Ryb25nPjwvcD4K");
  22141.    if (val === '') {
  22142.        val = b64DecodeUnicode("PHA+WW91ciBwcm9kdWN0cyBhcmUgcmVzZXJ2ZWQgZm9yIDxiPntUSU1FUn08L2I+ITwvcD4=");
  22143.    }
  22144.    window.upcartSettings.upcartEditorSettings.announcementEditor = val;
  22145.  
  22146.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22147.    if (val === '') {
  22148.        val = b64DecodeUnicode("I0NERTBFMA==");
  22149.    }
  22150.    window.upcartSettings.upcartEditorSettings.announcementBackgroundColor = val;
  22151.  
  22152.    val = b64DecodeUnicode("dG9w");
  22153.    if (val === '') {
  22154.        val = b64DecodeUnicode("dG9w");
  22155.    }
  22156.    window.upcartSettings.upcartEditorSettings.announcementModulePosition = val;
  22157.  
  22158.    val = b64DecodeUnicode("IzEwOWMxYw==");
  22159.    if (val === '') {
  22160.        val = b64DecodeUnicode("I0M1RTZGRA==");
  22161.    }
  22162.    window.upcartSettings.upcartEditorSettings.announcementBorderColor = val;
  22163.  
  22164.    val = b64DecodeUnicode("MA==");
  22165.    if (val === '') {
  22166.        val = b64DecodeUnicode("MDA6MDA=");
  22167.    }
  22168.    window.upcartSettings.upcartEditorSettings.announcementTimer = val;
  22169.  
  22170.    val = b64DecodeUnicode("");
  22171.    if (val === '') {
  22172.        val = b64DecodeUnicode("YmFzZQ==");
  22173.    }
  22174.    window.upcartSettings.upcartEditorSettings.announcementHeight = val;
  22175.  
  22176.    val = b64DecodeUnicode("");
  22177.    if (val === '') {
  22178.        val = b64DecodeUnicode("MTU=");
  22179.    }
  22180.    window.upcartSettings.upcartEditorSettings.announcementTextFontSizePx = val;
  22181.  
  22182.    val = b64DecodeUnicode("ZmFsc2U=");
  22183.    if (val === '') {
  22184.        val = b64DecodeUnicode("ZmFsc2U=");
  22185.    }
  22186.    val = JSON.parse(val);
  22187.    window.upcartSettings.upcartEditorSettings.rewardsModule = val;
  22188.  
  22189.    val = b64DecodeUnicode("I0UyRTJFMg==");
  22190.    if (val === '') {
  22191.        val = b64DecodeUnicode("I0UyRTJFMg==");
  22192.    }
  22193.    window.upcartSettings.upcartEditorSettings.rewardsBarBackgroundColor = val;
  22194.  
  22195.    val = b64DecodeUnicode("IzkzRDNGRg==");
  22196.    if (val === '') {
  22197.        val = b64DecodeUnicode("IzkzRDNGRg==");
  22198.    }
  22199.    window.upcartSettings.upcartEditorSettings.rewardsBarForegroundColor = val;
  22200.  
  22201.    val = b64DecodeUnicode("");
  22202.    if (val === '') {
  22203.        val = b64DecodeUnicode("IzRENDk0OQ==");
  22204.    }
  22205.    window.upcartSettings.upcartEditorSettings.rewardsTierIconColorComplete = val;
  22206.  
  22207.    val = b64DecodeUnicode("");
  22208.    if (val === '') {
  22209.        val = b64DecodeUnicode("IzRENDk0OQ==");
  22210.    }
  22211.    window.upcartSettings.upcartEditorSettings.rewardsTierIconColorIncomplete = val;
  22212.  
  22213.    val = b64DecodeUnicode("Y2FydFRvdGFs");
  22214.    if (val === '') {
  22215.        val = b64DecodeUnicode("Y2FydFRvdGFs");
  22216.    }
  22217.    window.upcartSettings.upcartEditorSettings.rewardsBasis = val;
  22218.  
  22219.    val = b64DecodeUnicode("ZmFsc2U=");
  22220.    if (val === '') {
  22221.        val = b64DecodeUnicode("ZmFsc2U=");
  22222.    }
  22223.    val = JSON.parse(val);
  22224.    window.upcartSettings.upcartEditorSettings.rewardsProductLinkVisible = val;
  22225.  
  22226.    val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22227.    if (val === '') {
  22228.        val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22229.    }
  22230.    window.upcartSettings.upcartEditorSettings.rewardsTargetType = val;
  22231.  
  22232.    val = b64DecodeUnicode("MTI1");
  22233.    if (val === '') {
  22234.        val = b64DecodeUnicode("MTI1");
  22235.    }
  22236.    window.upcartSettings.upcartEditorSettings.rewardsMinAmount = val;
  22237.  
  22238.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e3thbW91bnR9fTwvYj4gYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22239.    if (val === '') {
  22240.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22241.    }
  22242.    window.upcartSettings.upcartEditorSettings.rewardsEditor = val;
  22243.  
  22244.    val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22245.    if (val === '') {
  22246.        val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22247.    }
  22248.    window.upcartSettings.upcartEditorSettings.rewardsEditorAfterText = val;
  22249.  
  22250.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e3tjb3VudH19PC9iPiBwcm9kdWN0cyBhd2F5IGZyb20gZnJlZSBzaGlwcGluZyE8L3A+");
  22251.    if (val === '') {
  22252.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22253.    }
  22254.    window.upcartSettings.upcartEditorSettings.rewardsEditorForItemCount = val;
  22255.  
  22256.    val = b64DecodeUnicode("NQ==");
  22257.    if (val === '') {
  22258.        val = b64DecodeUnicode("NQ==");
  22259.    }
  22260.    window.upcartSettings.upcartEditorSettings.rewardsItemCount = val;
  22261.  
  22262.    val = b64DecodeUnicode("eyJ0aWVycyI6W3sidGFyZ2V0VHlwZSI6InByb2R1Y3RzT3JPcmRlciIsIm1pbkFtb3VudCI6IjEyNSIsIml0ZW1Db3VudCI6IjUiLCJ0ZXh0QmVmb3JlUmVhY2hpbmdGb3JDYXJ0VG90YWwiOiI8cD5Zb3XigJlyZSA8Yj57e2Ftb3VudH19PC9iPiBhd2F5IGZyb20gZnJlZSBzaGlwcGluZyE8L3A+IiwidGV4dEJlZm9yZVJlYWNoaW5nRm9ySXRlbUNvdW50IjoiPHA+WW914oCZcmUgPGI+e3tjb3VudH19PC9iPiBwcm9kdWN0cyBhd2F5IGZyb20gZnJlZSBzaGlwcGluZyE8L3A+IiwicmV3YXJkRGVzY3JpcHRpb24iOiJGcmVlIFNoaXBwaW5nIiwicHJvZHVjdHMiOltdfV0sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22263.    if (val === '') {
  22264.        val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22265.    }
  22266.    val = JSON.parse(val);
  22267.    window.upcartSettings.upcartEditorSettings.rewardsTiers = val;
  22268.  
  22269.    val = b64DecodeUnicode("W10=");
  22270.    if (val === '') {
  22271.        val = b64DecodeUnicode("W10=");
  22272.    }
  22273.    val = JSON.parse(val);
  22274.    window.upcartSettings.upcartEditorSettings.rewardsTierProducts = val;
  22275.  
  22276.    val = b64DecodeUnicode("ZmFsc2U=");
  22277.    if (val === '') {
  22278.        val = b64DecodeUnicode("ZmFsc2U=");
  22279.    }
  22280.    val = JSON.parse(val);
  22281.    window.upcartSettings.upcartEditorSettings.rewardsShowIconWithSingleTier = val;
  22282.  
  22283.    val = b64DecodeUnicode("dHJ1ZQ==");
  22284.    if (val === '') {
  22285.        val = b64DecodeUnicode("ZmFsc2U=");
  22286.    }
  22287.    val = JSON.parse(val);
  22288.    window.upcartSettings.upcartEditorSettings.rewardsShowOnEmptyCart = val;
  22289.  
  22290.    val = b64DecodeUnicode("");
  22291.    if (val === '') {
  22292.        val = b64DecodeUnicode("ZmFsc2U=");
  22293.    }
  22294.    val = JSON.parse(val);
  22295.    window.upcartSettings.upcartEditorSettings.rewardsRemovePreviousProducts = val;
  22296.  
  22297.    val = b64DecodeUnicode("");
  22298.    if (val === '') {
  22299.        val = b64DecodeUnicode("W10=");
  22300.    }
  22301.    val = JSON.parse(val);
  22302.    window.upcartSettings.upcartEditorSettings.rewardsFiltering = val;
  22303.  
  22304.    val = b64DecodeUnicode("");
  22305.    if (val === '') {
  22306.        val = b64DecodeUnicode("W10=");
  22307.    }
  22308.    val = JSON.parse(val);
  22309.    window.upcartSettings.upcartEditorSettings.rewardsTriggeredRules = val;
  22310.  
  22311.    val = b64DecodeUnicode("");
  22312.    if (val === '') {
  22313.        val = b64DecodeUnicode("eyJwcm9kdWN0RGlzY291bnRzIjpmYWxzZSwib3JkZXJEaXNjb3VudHMiOmZhbHNlLCJzaGlwcGluZ0Rpc2NvdW50cyI6ZmFsc2V9");
  22314.    }
  22315.    val = JSON.parse(val);
  22316.    window.upcartSettings.upcartEditorSettings.rewardsTriggeredCombinations = val;
  22317.  
  22318.    val = b64DecodeUnicode("ZmFsc2U=");
  22319.    if (val === '') {
  22320.        val = b64DecodeUnicode("ZmFsc2U=");
  22321.    }
  22322.    val = JSON.parse(val);
  22323.    window.upcartSettings.upcartEditorSettings.recommendationsModule = val;
  22324.  
  22325.    val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22326.    if (val === '') {
  22327.        val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22328.    }
  22329.    window.upcartSettings.upcartEditorSettings.recommendationsHeaderText = val;
  22330.  
  22331.    val = b64DecodeUnicode("ZmFsc2U=");
  22332.    if (val === '') {
  22333.        val = b64DecodeUnicode("ZmFsc2U=");
  22334.    }
  22335.    val = JSON.parse(val);
  22336.    window.upcartSettings.upcartEditorSettings.recommendationsEnableShopNowButton = val;
  22337.  
  22338.    val = b64DecodeUnicode("U2hvcCBOb3c=");
  22339.    if (val === '') {
  22340.        val = b64DecodeUnicode("U2hvcCBOb3c=");
  22341.    }
  22342.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonText = val;
  22343.  
  22344.    val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22345.    if (val === '') {
  22346.        val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22347.    }
  22348.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonURL = val;
  22349.  
  22350.    val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22351.    if (val === '') {
  22352.        val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22353.    }
  22354.    val = JSON.parse(val);
  22355.    window.upcartSettings.upcartEditorSettings.recommendationItems = val;
  22356.  
  22357.    val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22358.    if (val === '') {
  22359.        val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22360.    }
  22361.    window.upcartSettings.upcartEditorSettings.recommendationsProductRecommendationsHeaderText = val;
  22362.  
  22363.    val = b64DecodeUnicode("Mw==");
  22364.    if (val === '') {
  22365.        val = b64DecodeUnicode("Mw==");
  22366.    }
  22367.    window.upcartSettings.upcartEditorSettings.recommendationsMaxRecommendationsToShow = val;
  22368.  
  22369.    val = b64DecodeUnicode("dmVydGljYWw=");
  22370.    if (val === '') {
  22371.        val = b64DecodeUnicode("dmVydGljYWw=");
  22372.    }
  22373.    window.upcartSettings.upcartEditorSettings.recommendationsDirection = val;
  22374.  
  22375.    val = b64DecodeUnicode("dHJ1ZQ==");
  22376.    if (val === '') {
  22377.        val = b64DecodeUnicode("ZmFsc2U=");
  22378.    }
  22379.    val = JSON.parse(val);
  22380.    window.upcartSettings.upcartEditorSettings.upsellsModule = val;
  22381.  
  22382.    val = b64DecodeUnicode("dmVydGljYWw=");
  22383.    if (val === '') {
  22384.        val = b64DecodeUnicode("aG9yaXpvbnRhbA==");
  22385.    }
  22386.    window.upcartSettings.upcartEditorSettings.upsellsDirection = val;
  22387.  
  22388.    val = b64DecodeUnicode("PHA+PC9wPgo=");
  22389.    if (val === '') {
  22390.        val = b64DecodeUnicode("WW91J2xsIGxvdmUgdGhlc2U=");
  22391.    }
  22392.    window.upcartSettings.upcartEditorSettings.upsellsTitle = val;
  22393.  
  22394.    val = b64DecodeUnicode("NA==");
  22395.    if (val === '') {
  22396.        val = b64DecodeUnicode("MTA=");
  22397.    }
  22398.    window.upcartSettings.upcartEditorSettings.maximumUpsellsToShow = val;
  22399.  
  22400.    val = b64DecodeUnicode("dHJ1ZQ==");
  22401.    if (val === '') {
  22402.        val = b64DecodeUnicode("ZmFsc2U=");
  22403.    }
  22404.    val = JSON.parse(val);
  22405.    window.upcartSettings.upcartEditorSettings.upsellsShouldLimit = val;
  22406.  
  22407.    val = b64DecodeUnicode("ZmFsc2U=");
  22408.    if (val === '') {
  22409.        val = b64DecodeUnicode("ZmFsc2U=");
  22410.    }
  22411.    val = JSON.parse(val);
  22412.    window.upcartSettings.upcartEditorSettings.upsellsTrigger = val;
  22413.  
  22414.    val = b64DecodeUnicode("ZmFsc2U=");
  22415.    if (val === '') {
  22416.        val = b64DecodeUnicode("ZmFsc2U=");
  22417.    }
  22418.    val = JSON.parse(val);
  22419.    window.upcartSettings.upcartEditorSettings.showUpsellItemsAlreadyInCart = val;
  22420.  
  22421.    val = b64DecodeUnicode("W3siaWQiOiIyODI3MyIsInYiOjIsInRyaWdnZXIiOnsib24iOiJzcGVjaWZpYyIsInNlbGVjdGlvbiI6eyJ0eXBlIjoiQ29sbGVjdGlvbiIsImNvbGxlY3Rpb24iOnsiaWQiOiJnaWQ6Ly9zaG9waWZ5L0NvbGxlY3Rpb24vMTgyNzI3MDQ2IiwidGl0bGUiOiJIYXJkIERyaXZlIEJyYWNrZXRzIiwiaW1hZ2UiOm51bGwsImhhbmRsZSI6ImhhcmQtZHJpdmUtYnJhY2tldHMiLCJ1cGRhdGVkQXQiOiIyMDI2LTA0LTAzVDExOjA3OjMzWiIsInByb2R1Y3RzQ291bnQiOnsiY291bnQiOjIzOSwiX190eXBlbmFtZSI6IkNvdW50In0sInNvcnRPcmRlciI6IkFMUEhBX0FTQyIsIl9fdHlwZW5hbWUiOiJDb2xsZWN0aW9uIn19fSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzQ1MjU2NDU4NTY4NTUiLCJzaG9ydElkIjoiNDUyNTY0NTg1Njg1NSIsInZhcmlhbnRzIjpbIjMyMDUxNzM5NTU3OTc1Il0sImhhbmRsZSI6IjE2LXNlcmlhbC1hdGEtc2F0YS1zdHJhaWdodC10by1yaWdodC1hbmdsZS1kYXRhLWhkZC1oYXJkLWRyaXZlLWNhYmxlLXctbGF0Y2hlcyIsInRpdGxlIjoiMTZcIiBTZXJpYWwgQVRBIC9TQVRBIFN0cmFpZ2h0IHRvIFJpZ2h0IEFuZ2xlIERBVEEgSEREIEhhcmQgRHJpdmUgQ2FibGUgdy9MYXRjaGVzIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL3NhdGFjYWJsZS5qcGc/dj0xNzYyNTY0MzQxIn1dfX0seyJpZCI6IjU2OTM4IiwidiI6MiwidHJpZ2dlciI6eyJvbiI6InNwZWNpZmljIiwic2VsZWN0aW9uIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzQ0NTE1MTAyMTQiLCJzaG9ydElkIjoiNDQ1MTUxMDIxNCIsInZhcmlhbnRzIjpbIjM5NjY2MTc5NTA2MjYzIl0sImhhbmRsZSI6ImFwcGxlLW1hZ3NhZmUtMS1nZW51aW5lLWFjLWFkYXB0ZXItY2hhcmdlci1mb3ItbWFjYm9vay1wcm8tbC10aXAtNjB3IiwidGl0bGUiOiJOZXcgR2VudWluZSBBcHBsZSBNYWdTYWZlIDEgQUMgQWRhcHRlciBDaGFyZ2VyIEZvciBNYWNCb29rIFBybyBMIFRpcCA2MFciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvYTEzNDRfYTMxNWM3NDQtZGFmNC00MDc0LWE2NjgtN2UzZTE0ZDdhOTg2LmpwZz92PTE3NjI1Mjc5MzYifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzQ0NTE1Njk3OTgiLCJzaG9ydElkIjoiNDQ1MTU2OTc5OCIsInZhcmlhbnRzIjpbIjM5NjY2MTc4Nzg1MzY3Il0sImhhbmRsZSI6Im5ldy1nZW51aW5lLWFwcGxlLW1hY2Jvb2stcHJvLTE1LW1hZ3NhZmUxLTg1dy1wb3dlci1hZGFwdGVyLWNoYXJnZXItYTEyODYtYTEzNDMiLCJ0aXRsZSI6Ik5ldyBHZW51aW5lIEFwcGxlIE1hY0Jvb2sgUHJvIEExMjg2IEExMjkwIEExMjk3IE1hZ1NhZmUgMSBQb3dlciBBZGFwdGVyIENoYXJnZXIgODVXIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL2ExMzQ0X2ZoeXctdjAuanBnP3Y9MTc2MjUyODI1OCJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvNDQ1MTU2OTg2MiIsInNob3J0SWQiOiI0NDUxNTY5ODYyIiwidmFyaWFudHMiOlsiMzk2NjYxODAyOTI2OTUiXSwiaGFuZGxlIjoicmV0aW5hLW1hZ3NhZmUtMi1uZXctZ2VudWluZS1hcHBsZS1hMTQzNS02MHctbWFnc2FmZS0yLXBvd2VyLWFkYXB0ZXItY2hhcmdlci1tYWNib29rLXJldGluYSIsInRpdGxlIjoiTmV3IEdlbnVpbmUgQXBwbGUgTWFjQm9vayBSZXRpbmEgTWFnc2FmZSAyIFBvd2VyIEFkYXB0ZXIgQ2hhcmdlciA2MFciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvYTE0MzVfMjU2MTdiOTktODU3OC00NzVmLThkZWYtMzIzMDMxOGUzMGIzLmpwZz92PTE3NjI1MjgyNTgifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzQ0NTE1Njk5MjYiLCJzaG9ydElkIjoiNDQ1MTU2OTkyNiIsInZhcmlhbnRzIjpbIjM5NjY2MTgwNjg1OTExIl0sImhhbmRsZSI6Im5ldy1nZW51aW5lLWFwcGxlLW1hY2Jvb2stYWlyLW1hZ3NhZmUtMi00NXctcG93ZXItYWRhcHRlci1jaGFyZ2VyLWExNDM2IiwidGl0bGUiOiJOZXcgR2VudWluZSBBcHBsZSBNYWNCb29rIEFpciBNYWdzYWZlIDIgNDVXIEFDIFBvd2VyIEFkYXB0ZXIgQ2hhcmdlciBBMTQzNiAxNC44NVYgMy4wNUEgNSBQaW4iLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvYTE0MzZfNzE0ODE4Y2ItMWQ5My00MGJjLTgwYWEtYTMwZmMwMzNhNzVkLmpwZz92PTE3NjI1MjgyNjAifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzE5NjU5MDMwNTUxIiwic2hvcnRJZCI6IjE5NjU5MDMwNTUxIiwidmFyaWFudHMiOlsiMzk2NjYxODA3MTg2NzkiXSwiaGFuZGxlIjoibmV3LWdlbnVpbmUtYXBwbGUtbWFjYm9vay1haXItbWQyMjMtbWQyMjQtbWQyMzEtbWQyMzItbWFnc2FmZS0yLTQ1dy1wb3dlci1hZGFwdGVyLWNoYXJnZXItYTE0MzYiLCJ0aXRsZSI6Ik5ldyBHZW51aW5lIEFwcGxlIE1hY0Jvb2sgQWlyIE1EMjIzIE1EMjI0IE1EMjMxIE1EMjMyIE1hZ3NhZmUgMiBQb3dlciBBQyBBZGFwdGVyIENoYXJnZXIgNDVXIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL2ExNDM2XzkzZTE5YTFkLTk1ZTUtNDFlNS1iNTZlLTBmMTI1NWRmNjk5YS5qcGc/dj0xNzYyNTMyNDIzIn0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC8xOTY3NjcyNTI3MSIsInNob3J0SWQiOiIxOTY3NjcyNTI3MSIsInZhcmlhbnRzIjpbIjExMzAwMzM2NDM3NSJdLCJoYW5kbGUiOiJhMTM3NC1uZXctZ2VudWluZS1hcHBsZS1tYWNib29rLWFpci00NXctbWFnc2FmZS1wb3dlci1hZGFwdGVyLWNoYXJnZXItYTEzNzQiLCJ0aXRsZSI6Ik5ldyBHZW51aW5lIEFwcGxlIE1hY2Jvb2sgQWlyIE1hZ3NhZmUgMSBQb3dlciBBZGFwdGVyIENoYXJnZXIgQTEzNzQgMTQuNVYgMy4xQSA0NVciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvYTEzNzRfNWI0MDA2ZDctMTBiZi00ZDc4LWI3NzgtYWFhOWNkYmVkYjExLmpwZz92PTE3NjI1MzI0MjMifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzE5Njc4Mjk4MTM1Iiwic2hvcnRJZCI6IjE5Njc4Mjk4MTM1IiwidmFyaWFudHMiOlsiMTEzMDIwNjAwMzQzIl0sImhhbmRsZSI6ImFwcGxlLW1hY2Jvb2stYWlyLWExMjQ0LWExMzY5LWExMzcwLW1hZ3NhZmUtZ2VudWluZS1hYy1hZGFwdGVyLTQ1dyIsInRpdGxlIjoiTmV3IEdlbnVpbmUgQXBwbGUgTWFjYm9vayBBaXIgQTEyNDQgQTEzNjkgQTEzNzAgTWFnc2FmZSBQb3dlciBBZGFwdGVyIENoYXJnZXIgNDVXIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL2ExMzc0XzBjYTQyNDdmLTk0N2YtNGJjOS04MWUwLTRlY2E4OGY3MTJiNS5qcGc/dj0xNzYyNTMyNDI2In0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC8xOTY3ODc4OTY1NSIsInNob3J0SWQiOiIxOTY3ODc4OTY1NSIsInZhcmlhbnRzIjpbIjExMzAyNDk1ODQ4NyJdLCJoYW5kbGUiOiJuZXctZ2VudWluZS1hcHBsZS1tYWNib29rLWFpci1tYjI4M2xsLWEtYWRwLTU0Z2QtNDV3LW1hZ3NhZmUtcG93ZXItYWRhcHRlci1jaGFyZ2VyLWExMzc0IiwidGl0bGUiOiJOZXcgR2VudWluZSBBcHBsZSBNYWNib29rIEFpciBNQjI4M0xML0EgQURQLTU0R0QgTWFnc2FmZSBQb3dlciBBZGFwdGVyIENoYXJnZXIgNDVXIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL2ExMzc0X2IwNDU5NDI0LThhMTctNDkzMy1hODA4LTc2ZWMyNDNkMGExNy5qcGc/dj0xNzYyNTMyNDI2In0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC8xOTY4NDMyNzQ0NyIsInNob3J0SWQiOiIxOTY4NDMyNzQ0NyIsInZhcmlhbnRzIjpbIjM5NjY2MTc5MjQ0MTE5Il0sImhhbmRsZSI6Im5ldy1nZW51aW5lLWFwcGxlLW1hY2Jvb2stcHJvLWExMjc4LWExMjgwLW1hZ3NhZmUtMS1hYy1hZGFwdGVyLWNoYXJnZXItbC10aXAtNjB3IiwidGl0bGUiOiJOZXcgR2VudWluZSBBcHBsZSBNYWNCb29rIFBybyBBMTI3OCBBMTI4MCBNYWdTYWZlIDEgQUMgQWRhcHRlciBDaGFyZ2VyIEwgVGlwIDYwVyIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9wcm9kdWN0cy9hMTM0NF9lNzEzZmEzMi01YTJhLTQ2ZDItYWE5NS1hOTg2OThlMTdmMjcuanBnP3Y9MTc2MjUzMjQyOSJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvMTk2ODU0NDE1NTkiLCJzaG9ydElkIjoiMTk2ODU0NDE1NTkiLCJ2YXJpYW50cyI6WyIzOTY2NjE3OTQ3MzQ5NSJdLCJoYW5kbGUiOiJhcHBsZS1tYWNib29rLXByby1hMTE3Mi1hMTE4MS1hMTE4NC1tYWdzYWZlLTEtZ2VudWluZS1hYy1hZGFwdGVyLTYwdyIsInRpdGxlIjoiTmV3IEdlbnVpbmUgQXBwbGUgTWFjQm9vayBQcm8gQTExNzIgQTExODEgQTExODQgTWFnU2FmZSAxIEFDIEFkYXB0ZXIgQ2hhcmdlciBMIFRpcCA2MFciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvYTEzNDRfNjk4ZDRhMTItYjBhMy00NWUxLWFkMDctYTNjY2VmZGNhZWRmLmpwZz92PTE3NjI1MzI0MjkifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzE5Njg2MjkzNTI3Iiwic2hvcnRJZCI6IjE5Njg2MjkzNTI3IiwidmFyaWFudHMiOlsiMzk2NjYxNzk0NDA3MjciXSwiaGFuZGxlIjoiYXBwbGUtbWFjYm9vay1wcm8tYTEzMzAtYTEzNDItbWFnc2FmZS0xLWdlbnVpbmUtYWMtYWRhcHRlci1jaGFyZ2VyLWwtdGlwLTYwdyIsInRpdGxlIjoiTmV3IEdlbnVpbmUgQXBwbGUgTWFjQm9vayBQcm8gQTEzMzAgQTEzNDIgTWFnU2FmZSAxIEFDIEFkYXB0ZXIgQ2hhcmdlciBMIFRpcCA2MFciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvYTEzNDRfYTY1MGJhYjYtMWUzNi00MWMwLTg4N2QtNzk2ZDYzZmNmNDA2LmpwZz92PTE3NjI1MzI0MzIifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzE5Njg2NTIyOTAzIiwic2hvcnRJZCI6IjE5Njg2NTIyOTAzIiwidmFyaWFudHMiOlsiMzk2NjYxNzkzNzUxOTEiXSwiaGFuZGxlIjoibmV3LWdlbnVpbmUtYXBwbGUtbWFjYm9vay1wcm8tbWE1MzhsbC1hLW1hNTM4bGwtYi1tYWdzYWZlLTEtNjB3LWFkYXB0ZXItY2hhcmdlci1sLXRpcC1hMTM0NCIsInRpdGxlIjoiTmV3IEdlbnVpbmUgQXBwbGUgTWFjQm9vayBQcm8gTUE1MzhMTC9BIE1BNTM4TEwvQiBNYWdTYWZlIDEgQUMgQWRhcHRlciBDaGFyZ2VyIEwgVGlwIDYwVyIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9wcm9kdWN0cy9hMTM0NF8wZTkwZmJiMC0xNTBjLTQ5OWMtOWFkOC0xNTE0NDA2Y2M4NGIuanBnP3Y9MTc2MjUzMjQzMiJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvMTk2ODY4ODMzNTEiLCJzaG9ydElkIjoiMTk2ODY4ODMzNTEiLCJ2YXJpYW50cyI6WyIzOTY2NjE3OTM0MjQyMyJdLCJoYW5kbGUiOiJuZXctZ2VudWluZS1hcHBsZS1tYWNib29rLXByby02NjEtNDI2OS02NjEtNDQ4NS02NjEtMDQ0My02NjEtNDI2OS1tYWdzYWZlLTEtNjB3LWFkYXB0ZXItY2hhcmdlci1sLXRpcC1hMTM0NCIsInRpdGxlIjoiTmV3IEdlbnVpbmUgQXBwbGUgTWFjQm9vayBQcm8gNjYxLTQyNjkgNjYxLTQ0ODUgNjYxLTA0NDMgNjYxLTQyNjkgTWFnU2FmZSAxIEFDIEFkYXB0ZXIgQ2hhcmdlciBMIFRpcCA2MFciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvYTEzNDRfMjk3YTgxYjQtMjliYi00MDlhLWI3ZDYtMTNiM2Y5YTJkODI1LmpwZz92PTE3NTk0NDM5MTgifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzE5Njg3MTQ1NDk1Iiwic2hvcnRJZCI6IjE5Njg3MTQ1NDk1IiwidmFyaWFudHMiOlsiMzk2NjYxNzkzMDk2NTUiXSwiaGFuZGxlIjoibmV3LWdlbnVpbmUtYXBwbGUtbWFjYm9vay1wcm8tNjYxLTQ0ODUtNjYxLTQyNTktNjYxLTQzMzktNjYxLTM5NTctbWFnc2FmZS0xLTYwdy1hZGFwdGVyLWNoYXJnZXItbC10aXAtYTEzNDQiLCJ0aXRsZSI6Ik5ldyBHZW51aW5lIEFwcGxlIE1hY0Jvb2sgUHJvIEFDIEFkYXB0ZXIgQ2hhcmdlciBBMTM0NCBNYWdzYWZlIDEgMTYuNVYgMy42NUEgNjBXIEwgVGlwIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL2ExMzQ0X2U0ZTc1M2FhLWQzMjktNDVjZi1hZTllLTk5NGQ5MzgwYjg0NC5qcGc/dj0xNzYyNTMyNDM1In0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC8xOTcwMzkyMjcxMSIsInNob3J0SWQiOiIxOTcwMzkyMjcxMSIsInZhcmlhbnRzIjpbIjM5NjY2MTc4ODgzNjcxIl0sImhhbmRsZSI6ImFwcGxlLW1hY2Jvb2stcHJvLWExMTcyLWExMjIyLWExMjYwLW1hZ3NhZmUtMS1nZW51aW5lLWFjLWFkYXB0ZXItODV3IiwidGl0bGUiOiJOZXcgR2VudWluZSBBcHBsZSBNYWNCb29rIFBybyBBMTE3MiBBMTIyMiBBMTI2MCBNYWdTYWZlIDEgUG93ZXIgQWRhcHRlciBDaGFyZ2VyIDg1VyIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9wcm9kdWN0cy9hMTM0NF9maHl3LXYwXzhkNDgxNGQ1LTA3ZTEtNGE0MC1hYTBjLTBmZWUzZDc4MTE2ZS5qcGc/dj0xNzYyNTMyNDM4In0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC8xOTcwNTg4ODc5MSIsInNob3J0SWQiOiIxOTcwNTg4ODc5MSIsInZhcmlhbnRzIjpbIjM5NjY2MTc4ODUwOTAzIl0sImhhbmRsZSI6Im5ldy1nZW51aW5lLWFwcGxlLW1hY2Jvb2stcHJvLWFkYXB0ZXItY2hhcmdlci1tYWdzYWZlLTEtYTEzNDMtMTgtNXYtNC02YS0xNi01di0zLTZhLTg1dyIsInRpdGxlIjoiTmV3IEdlbnVpbmUgQXBwbGUgTWFjQm9vayBQcm8gQWRhcHRlciBDaGFyZ2VyIE1hZ3NhZmUgMSBBMTM0MyAxOC41ViA0LjZBIC8gMTYuNVYgMy42QSA4NVciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvYTEzNDRfZmh5dy12MF84MTNlYjk4ZS05MWU0LTRhNmMtODc3MS0wODc5Zjg5NjU4ZWIuanBnP3Y9MTc2MjUzMjQzOCJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvMTk3MTI5NjY2NzkiLCJzaG9ydElkIjoiMTk3MTI5NjY2NzkiLCJ2YXJpYW50cyI6WyIzOTY2NjE3ODkxNjQzOSJdLCJoYW5kbGUiOiJuZXctZ2VudWluZS1hcHBsZS1tYWNib29rLXByby1hZHAtOTB1Yi1tYTM1N2xsLWEtbWFnc2FmZS0xLXBvd2VyLWFkYXB0ZXItY2hhcmdlci04NXciLCJ0aXRsZSI6Ik5ldyBHZW51aW5lIEFwcGxlIE1hY0Jvb2sgUHJvIEFEUC05MFVCIE1BMzU3TEwvQSBNYWdTYWZlIDEgUG93ZXIgQWRhcHRlciBDaGFyZ2VyIDg1VyIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9wcm9kdWN0cy9hMTM0NF9maHl3LXYwXzZhMjBhNTIxLTU5NzUtNGU1Ny05MDU3LTdkNjNiMjcwYTBiMi5qcGc/dj0xNzYyNTMyNDQxIn0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC8xOTc1MDE5MTEyNyIsInNob3J0SWQiOiIxOTc1MDE5MTEyNyIsInZhcmlhbnRzIjpbIjExMzQwNzI2Mjc0MyJdLCJoYW5kbGUiOiJuZXctZ2VudWluZS1hcHBsZS1tYWNib29rLXJldGluYS04NXctbWFnc2FmZS0yLWFjLWFkYXB0ZXItY2hhcmdlci1hMTQyNCIsInRpdGxlIjoiTmV3IEdlbnVpbmUgQXBwbGUgTWFjQm9vayBBQyBBZGFwdGVyIENoYXJnZXIgQTE0MjQgTWFnc2FmZSAyIDIwViA0LjI1QSA4NVciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvYTE0MjQuanBnP3Y9MTc2MjUzMjQ0MSJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvMTk3NTE0NjkwNzkiLCJzaG9ydElkIjoiMTk3NTE0NjkwNzkiLCJ2YXJpYW50cyI6WyIxMTM0MjgwMzc2NTUiXSwiaGFuZGxlIjoibmV3LWdlbnVpbmUtYXBwbGUtbWFjYm9vay1yZXRpbmEtYTEzOTgtbWQ1MDYtODV3LW1hZ3NhZmUtMi1hYy1hZGFwdGVyLWNoYXJnZXItYTE0MjQiLCJ0aXRsZSI6Ik5ldyBHZW51aW5lIEFwcGxlIE1hY0Jvb2sgUmV0aW5hIEExMzk4IE1ENTA2IDg1VyBNYWdzYWZlIDIgQUMgQWRhcHRlciBDaGFyZ2VyIDg1VyIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9wcm9kdWN0cy9hMTQyNF8wMWQ1ZGVkMC00YTRiLTRkZWEtYTM5ZS03YmRhMTU0NzA0NjguanBnP3Y9MTc2MjUzMjQ0NCJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvMTQyODM5ODMwOTM5OSIsInNob3J0SWQiOiIxNDI4Mzk4MzA5Mzk5IiwidmFyaWFudHMiOlsiMzk2NjYxODA0ODkzMDMiXSwiaGFuZGxlIjoiYTE0NjYtbmV3LWFwcGxlLW1hY2Jvb2stYWlyLWFjLXBvd2VyLWFkYXB0ZXItY2hhcmdlci0xMS0xMy0yMDEzLTIwMTQtMjAxNS1hMTQzNi1hMTQ2Ni00NXciLCJ0aXRsZSI6Ik5ldyBHZW51aW5lIEFwcGxlIE1hY0Jvb2sgQWlyIEFDIE1hZ3NhZmUgMiBBZGFwdGVyIENoYXJnZXIgMTEgMTMgMjAxMyAyMDE0IDIwMTUgQTE0NjYgNDVXIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL2ExNDM2XzcxYzk5MTM1LTAwNTgtNDY3Ni04YzJjLWYzZjIyMjc4OGQwNS5qcGc/dj0xNzYyNTQyNTU4In0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC8xOTQ0MzA0Nzc5MzUxIiwic2hvcnRJZCI6IjE5NDQzMDQ3NzkzNTEiLCJ2YXJpYW50cyI6WyIzOTY2NjE4MDE5NDM5MSJdLCJoYW5kbGUiOiJuZXctYXBwbGUtbWFjYm9vay1hMTQyNS1hMTUwMi1hYy1hZGFwdGVyLWNoYXJnZXItYTE0MzUtMTYtNXYtMy0yNWEtNjB3LW1hZ3NhZmUtMi1tYWdzYWZlLTItNjB3IiwidGl0bGUiOiJOZXcgR2VudWluZSBBcHBsZSBNYWNCb29rIFBybyBBQyBBZGFwdGVyIENoYXJnZXIgTWFnc2FmZSAyIDYwVyBBMTQzNSBBMTQ2NSAxNi41ViAzLjI1QSIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9wcm9kdWN0cy9hMTQzNV81NmMyOGFlOS1mYzRmLTRlZDYtYTNlMi0wZDE3MDU4MzQ1ZjIuanBnP3Y9MTc2MjU0NDk0NyJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvMTk1OTY1ODI5MTI4NyIsInNob3J0SWQiOiIxOTU5NjU4MjkxMjg3IiwidmFyaWFudHMiOlsiMzk2NjYxODAyMjcxNTkiXSwiaGFuZGxlIjoibmV3LWdlbnVpbmUtYXBwbGUtbWFjYm9vay1wcm8tYWMtYWRhcHRlci1jaGFyZ2VyLW1hZ3NhZmUtMi1hMTQyNS1hMTUwMi02MHciLCJ0aXRsZSI6Ik5ldyBHZW51aW5lIEFwcGxlIE1hY0Jvb2sgUHJvIEFDIEFkYXB0ZXIgQ2hhcmdlciBNYWdzYWZlIDIgQTE0MjUgQTE1MDIgNjBXIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL2ExNDM1X2Y4MWRhODdjLTc5MmQtNDA2Ni05OWIwLWZhNGIxODIwMzI3YS5qcGc/dj0xNzYyNTQ1MjI3In0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC8yMDE0MjQ3ODc4NzQzIiwic2hvcnRJZCI6IjIwMTQyNDc4Nzg3NDMiLCJ2YXJpYW50cyI6WyIzOTY2NjE4MDYyMDM3NSJdLCJoYW5kbGUiOiJuZXctZ2VudWluZS1hcHBsZS1tYWNib29rLWFpci1hMTQ2NS1tYWdzYWZlLTItNDV3LWFjLXBvd2VyLWFkYXB0ZXItY2hhcmdlciIsInRpdGxlIjoiTmV3IEdlbnVpbmUgQXBwbGUgTWFjQm9vayBBaXIgQTE0NjUgQTE0NjYgTWFnc2FmZSAyIDQ1VyBBQyBQb3dlciBBZGFwdGVyIENoYXJnZXIiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvYTE0MzZfZmIyYzVhYzMtYmYyYy00YzJlLTg1ZWEtNGNlOTMxZGNkYThkLmpwZz92PTE3NjI1NDY0NDgifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzQzOTUxMzY4NzY2MzEiLCJzaG9ydElkIjoiNDM5NTEzNjg3NjYzMSIsInZhcmlhbnRzIjpbIjM5NjY2MTc4NjU0Mjk1Il0sImhhbmRsZSI6Im5ldy1jb21wYXRpYmxlLWFwcGxlLW1hY2Jvb2stcHJvLWFkcC05MHViLW1hMzU3bGwtYS1tYWdzYWZlLTEtcG93ZXItYWRhcHRlci1jaGFyZ2VyLTg1dy0yIiwidGl0bGUiOiJOZXcgQ29tcGF0aWJsZSBBcHBsZSBNYWNCb29rIFBybyBBRFAtOTBVQiBNQTM1N0xML0EgTWFnU2FmZSAxIFBvd2VyIEFkYXB0ZXIgQ2hhcmdlciA4NVciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvQTEzNDMud2VicD92PTE3NjI1NTg4MDcifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzQzOTUxMzY5NDIxNjciLCJzaG9ydElkIjoiNDM5NTEzNjk0MjE2NyIsInZhcmlhbnRzIjpbIjM5NjY2MTc4Njg3MDYzIl0sImhhbmRsZSI6Im5ldy1jb21wYXRpYmxlLWFwcGxlLW1hY2Jvb2stcHJvLWFkYXB0ZXItY2hhcmdlci1tYWdzYWZlLTEtODV3LWExMzQzLTE4LTV2LTQtNmEtMTYtNXYtMy02YSIsInRpdGxlIjoiTmV3IENvbXBhdGlibGUgQXBwbGUgTWFjQm9vayBQcm8gQWRhcHRlciBDaGFyZ2VyIE1hZ3NhZmUgMSA4NVcgQTEzNDMgMTguNVYgNC42QSAxNi41ViAzLjZBIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL0ExMzQzLndlYnA/dj0xNzYyNTU4ODA3In0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC80Mzk1MTM3MDQwNDcxIiwic2hvcnRJZCI6IjQzOTUxMzcwNDA0NzEiLCJ2YXJpYW50cyI6WyIzOTY2NjE3ODc1MjU5OSJdLCJoYW5kbGUiOiJuZXctY29tcGF0aWJsZS1hcHBsZS1tYWNib29rLXByby1hMTE3Mi1hMTIyMi1hMTI2MC1tYWdzYWZlLTEtcG93ZXItYWRhcHRlci1jaGFyZ2VyLTg1dyIsInRpdGxlIjoiTmV3IENvbXBhdGlibGUgQXBwbGUgTWFjQm9vayBQcm8gQTExNzIgQTEyMjIgQTEyNjAgTWFnU2FmZSAxIFBvd2VyIEFkYXB0ZXIgQ2hhcmdlciA4NVciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvQTEzNDMud2VicD92PTE3NjI1NTg4MDcifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzQzOTUxMzcwNzMyMzkiLCJzaG9ydElkIjoiNDM5NTEzNzA3MzIzOSIsInZhcmlhbnRzIjpbIjM5NjY2MTc4NjIxNTI3Il0sImhhbmRsZSI6Im5ldy1jb21wYXRpYmxlLWFwcGxlLW1hY2Jvb2stcHJvLWExMjg2LWExMjkwLWExMjk3LW1hZ3NhZmUtMS1wb3dlci1hZGFwdGVyLWNoYXJnZXItODV3LTIiLCJ0aXRsZSI6Ik5ldyBDb21wYXRpYmxlIEFwcGxlIE1hY0Jvb2sgUHJvIEExMjg2IEExMjkwIEExMjk3IE1hZ1NhZmUgMSBQb3dlciBBZGFwdGVyIENoYXJnZXIgODVXIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL0ExMzQzLndlYnA/dj0xNzYyNTU4ODA3In0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC80Mzk1MTM3MjA0MzExIiwic2hvcnRJZCI6IjQzOTUxMzcyMDQzMTEiLCJ2YXJpYW50cyI6WyIzOTY2NjE3OTA0NzUxMSJdLCJoYW5kbGUiOiJuZXctY29tcGF0aWJsZS1hcHBsZS1tYWNib29rLXByby1hYy1hZGFwdGVyLWNoYXJnZXItYTEzNDQtbWFnc2FmZS0xLTE2LTV2LTMtNjVhLTYwdy1sLXRpcCIsInRpdGxlIjoiTmV3IENvbXBhdGlibGUgQXBwbGUgTWFjQm9vayBQcm8gQUMgQWRhcHRlciBDaGFyZ2VyIEExMzQ0IE1hZ3NhZmUgMSAxNi41ViAzLjY1QSA2MFcgTCBUaXAiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvMjA2ZjNlNmEtNzA2Yy00Yzk5LWE0MWUtODZmMTlmODBiMmM4XzA3YTlhYmFhLTkwYWItNGE5ZS1iOThjLTIzYTc4ODRhY2NiZi5qcGc/dj0xNzYyNTU4ODEyIn0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC80Mzk1MTM3MjM3MDc5Iiwic2hvcnRJZCI6IjQzOTUxMzcyMzcwNzkiLCJ2YXJpYW50cyI6WyIzOTY2NjE3ODk4MTk3NSJdLCJoYW5kbGUiOiJuZXctY29tcGF0aWJsZS1hcHBsZS1tYWNib29rLXByby02NjEtNDI2OS02NjEtNDQ4NS02NjEtMDQ0My02NjEtNDI2OS1tYWdzYWZlLTEtYWMtYWRhcHRlci1jaGFyZ2VyLWwtdGlwLTYwdyIsInRpdGxlIjoiTmV3IENvbXBhdGlibGUgQXBwbGUgTWFjQm9vayBQcm8gNjYxLTQyNjkgNjYxLTQ0ODUgNjYxLTA0NDMgNjYxLTQyNjkgTWFnU2FmZSAxIEFDIEFkYXB0ZXIgQ2hhcmdlciBMIFRpcCA2MFciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvMjA2ZjNlNmEtNzA2Yy00Yzk5LWE0MWUtODZmMTlmODBiMmM4Xzc5NjhiZmFiLWQzNDYtNDIxNi04MTYwLTJlNmExODgxMGQzNC5qcGc/dj0xNzYyNTU4ODEyIn0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC80Mzk1MTM3MzAyNjE1Iiwic2hvcnRJZCI6IjQzOTUxMzczMDI2MTUiLCJ2YXJpYW50cyI6WyIzOTY2NjE3OTAxNDc0MyJdLCJoYW5kbGUiOiJuZXctY29tcGF0aWJsZS1hcHBsZS1tYWNib29rLXByby1tYTUzOGxsLWEtbWE1MzhsbC1iLW1hZ3NhZmUtMS1hYy1hZGFwdGVyLWNoYXJnZXItbC10aXAtNjB3IiwidGl0bGUiOiJOZXcgQ29tcGF0aWJsZSBBcHBsZSBNYWNCb29rIFBybyBNQTUzOExML0EgTUE1MzhMTC9CIE1hZ1NhZmUgMSBBQyBBZGFwdGVyIENoYXJnZXIgTCBUaXAgNjBXIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzLzIwNmYzZTZhLTcwNmMtNGM5OS1hNDFlLTg2ZjE5ZjgwYjJjOF83NzJmNDQ4YS04YzkxLTRkZmUtOTU5OC1jMjYzYmRlYzkzNzIuanBnP3Y9MTc2MjU1ODgxNyJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvNDM5NTEzNzMzNTM4MyIsInNob3J0SWQiOiI0Mzk1MTM3MzM1MzgzIiwidmFyaWFudHMiOlsiMzk2NjYxNzkwODAyNzkiXSwiaGFuZGxlIjoibmV3LWNvbXBhdGlibGUtYXBwbGUtbWFjYm9vay1wcm8tYTEzMzAtYTEzNDItbWFnc2FmZS0xLWFjLWFkYXB0ZXItY2hhcmdlci1sLXRpcC02MHciLCJ0aXRsZSI6Ik5ldyBDb21wYXRpYmxlIEFwcGxlIE1hY0Jvb2sgUHJvIEExMzMwIEExMzQyIE1hZ1NhZmUgMSBBQyBBZGFwdGVyIENoYXJnZXIgTCBUaXAgNjBXIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzLzIwNmYzZTZhLTcwNmMtNGM5OS1hNDFlLTg2ZjE5ZjgwYjJjOF9mNzU5YTdmOC05ZDNkLTQ2OTEtYjkxNy1kMWJkY2FmMzQ4MTQuanBnP3Y9MTc2MjU1ODgxNyJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvNDM5NTEzNzQwMDkxOSIsInNob3J0SWQiOiI0Mzk1MTM3NDAwOTE5IiwidmFyaWFudHMiOlsiMzk2NjYxNzkxNDU4MTUiXSwiaGFuZGxlIjoibmV3LWNvbXBhdGlibGUtYXBwbGUtbWFjYm9vay1wcm8tYTExNzItYTExODEtYTExODQtbWFnc2FmZS0xLWFjLWFkYXB0ZXItY2hhcmdlci1sLXRpcC02MHctMiIsInRpdGxlIjoiTmV3IENvbXBhdGlibGUgQXBwbGUgTWFjQm9vayBQcm8gQTExNzIgQTExODEgQTExODQgTWFnU2FmZSAxIEFDIEFkYXB0ZXIgQ2hhcmdlciBMIFRpcCA2MFciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvMjA2ZjNlNmEtNzA2Yy00Yzk5LWE0MWUtODZmMTlmODBiMmM4XzRlY2U0YjlmLTYwZDUtNGE4Yy04NTY0LWZiMWZmNmU5NjM5Yy5qcGc/dj0xNzYyNTU4ODIyIn0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC80Mzk1MTM3NDMzNjg3Iiwic2hvcnRJZCI6IjQzOTUxMzc0MzM2ODciLCJ2YXJpYW50cyI6WyIzOTY2NjE3OTIxMTM1MSJdLCJoYW5kbGUiOiJuZXctY29tcGF0aWJsZS1hcHBsZS1tYWNib29rLXByby1hMTI3OC1hMTI4MC1tYWdzYWZlLTEtYWMtYWRhcHRlci1jaGFyZ2VyLWwtdGlwLTYwdyIsInRpdGxlIjoiTmV3IENvbXBhdGlibGUgQXBwbGUgTWFjQm9vayBQcm8gQTEyNzggQTEyODAgTWFnU2FmZSAxIEFDIEFkYXB0ZXIgQ2hhcmdlciBMIFRpcCA2MFciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvMjA2ZjNlNmEtNzA2Yy00Yzk5LWE0MWUtODZmMTlmODBiMmM4XzY4OGIyMGQ4LWE3YmItNDZkMy04MjkyLTVlZDkzYmU4ZTk1Ni5qcGc/dj0xNzYyNTU4ODIyIn0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC80Mzk1MTM3NDY2NDU1Iiwic2hvcnRJZCI6IjQzOTUxMzc0NjY0NTUiLCJ2YXJpYW50cyI6WyIzOTY2NjE3ODk0OTIwNyJdLCJoYW5kbGUiOiJuZXctY29tcGF0aWJsZS1hcHBsZS1tYWdzYWZlLTEtYWMtYWRhcHRlci1jaGFyZ2VyLWZvci1tYWNib29rLXByby1sLXRpcC02MHciLCJ0aXRsZSI6Ik5ldyBDb21wYXRpYmxlIEFwcGxlIE1hZ1NhZmUgMSBBQyBBZGFwdGVyIENoYXJnZXIgRm9yIE1hY0Jvb2sgUHJvIEwgVGlwIDYwVyIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9wcm9kdWN0cy8yMDZmM2U2YS03MDZjLTRjOTktYTQxZS04NmYxOWY4MGIyYzguanBnP3Y9MTc2MjU1ODgyNyJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvNDM5NTEzNzYzMDI5NSIsInNob3J0SWQiOiI0Mzk1MTM3NjMwMjk1IiwidmFyaWFudHMiOlsiMzE0MjYzMDE2MjQ0MDciXSwiaGFuZGxlIjoibmV3LWNvbXBhdGlibGUtYXBwbGUtbWFjYm9vay1yZXRpbmEtYTEzOTgtbWQ1MDYtODV3LW1hZ3NhZmUtMi1hYy1hZGFwdGVyLWNoYXJnZXItODV3IiwidGl0bGUiOiJOZXcgQ29tcGF0aWJsZSBBcHBsZSBNYWNCb29rIFJldGluYSBBMTM5OCBNRDUwNiA4NVcgTWFnc2FmZSAyIEFDIEFkYXB0ZXIgQ2hhcmdlciA4NVciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvQTE0MjRfY2Q2Njk4MWUtZDQ3OS00ZGU4LThlYzgtMmQ1MDIyMWU2Y2VmLmpwZz92PTE3NjI1NTg4MjcifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzQzOTUxMzc2NjMwNjMiLCJzaG9ydElkIjoiNDM5NTEzNzY2MzA2MyIsInZhcmlhbnRzIjpbIjMxNDI2MzAxNjU3MTc1Il0sImhhbmRsZSI6ImExNDI0X2NfMi1tYWdzYWZlLTItODV3IiwidGl0bGUiOiJNYWdzYWZlIDIgODV3IE5ldyBDb21wYXRpYmxlIEFwcGxlIE1hY0Jvb2sgQUMgQWRhcHRlciBDaGFyZ2VyIEExNDI0IDIwViA0LjI1QSA4NVciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvQTE0MjRfY2Q2Njk4MWUtZDQ3OS00ZGU4LThlYzgtMmQ1MDIyMWU2Y2VmLmpwZz92PTE3NjI1NTg4MjcifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzQzOTUxMzc3Mjg1OTkiLCJzaG9ydElkIjoiNDM5NTEzNzcyODU5OSIsInZhcmlhbnRzIjpbIjM5NjY2MTgwNDU2NTM1Il0sImhhbmRsZSI6Im5ldy1jb21wYXRpYmxlLWFwcGxlLW1hY2Jvb2stYWlyLWExNDY1LWExNDY2LW1hZ3NhZmUtMi00NXctYWMtcG93ZXItYWRhcHRlci1jaGFyZ2VyIiwidGl0bGUiOiJOZXcgQ29tcGF0aWJsZSBBcHBsZSBNYWNCb29rIEFpciBBMTQ2NSBBMTQ2NiBNYWdzYWZlIDIgNDVXIEFDIFBvd2VyIEFkYXB0ZXIgQ2hhcmdlciIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9hMTQzNl9jXzRhNWViMWM5LWQzYzctNDUyZS04Nzc1LWI3YjViMzhlMGE0ZC5wbmc/dj0xNzYyNTU4ODMyIn0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC80Mzk1MTM3NzYxMzY3Iiwic2hvcnRJZCI6IjQzOTUxMzc3NjEzNjciLCJ2YXJpYW50cyI6WyIzOTY2NjE4MDM1ODIzMSJdLCJoYW5kbGUiOiJuZXctY29tcGF0aWJsZS1hcHBsZS1tYWNib29rLWFpci1hYy1tYWdzYWZlLTItYWRhcHRlci1jaGFyZ2VyLTExLTEzLTIwMTMtMjAxNC0yMDE1LWExNDY2LTQ1dyIsInRpdGxlIjoiTmV3IENvbXBhdGlibGUgQXBwbGUgTWFjQm9vayBBaXIgQUMgTWFnc2FmZSAyIEFkYXB0ZXIgQ2hhcmdlciAxMSAxMyAyMDEzIDIwMTQgMjAxNSBBMTQ2NiA0NVciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvYTE0MzZfY182YTdlMmZjMy0wNzgxLTRjM2EtODI4MC0zYzE4YjUzMWE4NDQucG5nP3Y9MTc2MjU1ODgzMiJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvNDM5NTEzNzc5NDEzNSIsInNob3J0SWQiOiI0Mzk1MTM3Nzk0MTM1IiwidmFyaWFudHMiOlsiMzk2NjYxODA0MjM3NjciXSwiaGFuZGxlIjoibmV3LWNvbXBhdGlibGUtYXBwbGUtbWFjYm9vay1haXItbWQyMjMtbWQyMjQtbWQyMzEtbWQyMzItbWFnc2FmZS0yLXBvd2VyLWFjLWFkYXB0ZXItY2hhcmdlci00NXctMSIsInRpdGxlIjoiTmV3IENvbXBhdGlibGUgQXBwbGUgTWFjQm9vayBBaXIgTUQyMjMgTUQyMjQgTUQyMzEgTUQyMzIgTWFnc2FmZSAyIFBvd2VyIEFDIEFkYXB0ZXIgQ2hhcmdlciA0NVciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvYTE0MzZfY184ZmE0MDlhNC05ZTM0LTQ3N2EtYjVjMi0xMTY2ZmEwZGIzYzkucG5nP3Y9MTc2MjU1ODgzNyJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvNDM5NTEzNzgyNjkwMyIsInNob3J0SWQiOiI0Mzk1MTM3ODI2OTAzIiwidmFyaWFudHMiOlsiMzk2NjYxODAzMjU0NjMiXSwiaGFuZGxlIjoibmV3LWNvbXBhdGlibGUtYXBwbGUtbWFjYm9vay1haXItbWFnc2FmZS0yLTQ1dy1hYy1wb3dlci1hZGFwdGVyLWNoYXJnZXItYTE0MzYtMTQtODV2LTMtMDVhLTUtcGluIiwidGl0bGUiOiJOZXcgQ29tcGF0aWJsZSBBcHBsZSBNYWNCb29rIEFpciBNYWdzYWZlIDIgNDVXIEFDIFBvd2VyIEFkYXB0ZXIgQ2hhcmdlciBBMTQzNiAxNC44NVYgMy4wNUEgNSBQaW4iLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvYTE0MzZfYy5wbmc/dj0xNzYyNTU4ODM3In0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC80NjY0MjcxOTI5NDMxIiwic2hvcnRJZCI6IjQ2NjQyNzE5Mjk0MzEiLCJ2YXJpYW50cyI6WyIzMjQzNTg1MDk2OTE3NSJdLCJoYW5kbGUiOiJuZXctY29tcGF0aWJsZS1hcHBsZS1tYWNib29rLWFpci1hMTI0NC1hMTM2OS1hMTM3MC1tYWdzYWZlLXBvd2VyLWFkYXB0ZXItY2hhcmdlci00NXciLCJ0aXRsZSI6Ik5ldyBDb21wYXRpYmxlIEFwcGxlIE1hY2Jvb2sgQWlyIEExMjQ0IEExMzY5IEExMzcwIE1hZ3NhZmUgUG93ZXIgQWRhcHRlciBDaGFyZ2VyIDQ1VyIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9wcm9kdWN0cy96ejFfNWUxYTM0ODAtNGM5ZC00MTY4LThkMGEtODMxMWU2OTExYzhjLmpwZz92PTE3NjI1Njg2MzAifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzQ2NjQyNzI0MjA5NTEiLCJzaG9ydElkIjoiNDY2NDI3MjQyMDk1MSIsInZhcmlhbnRzIjpbIjMyNDM1ODU1MTYzNDc5Il0sImhhbmRsZSI6Im5ldy1jb21wYXRpYmxlLWFwcGxlLW1hY2Jvb2stYWlyLW1hZ3NhZmUtMS1wb3dlci1hZGFwdGVyLWNoYXJnZXItYTEzNzQtMTQtNXYtMy0xYS00NXciLCJ0aXRsZSI6Ik5ldyBDb21wYXRpYmxlIEFwcGxlIE1hY2Jvb2sgQWlyIE1hZ3NhZmUgMSBQb3dlciBBZGFwdGVyIENoYXJnZXIgQTEzNzQgMTQuNVYgMy4xQSA0NVciLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvenoxXzhiZDljZmZkLWZiOGEtNGRjNC04ZTk1LWZkY2QwYzQ3YTVjYi5qcGc/dj0xNzYyNTY4NjM3In0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC80NjY0MjcyOTEyNDcxIiwic2hvcnRJZCI6IjQ2NjQyNzI5MTI0NzEiLCJ2YXJpYW50cyI6WyIzMjQzNTg1NTc4NjA3MSJdLCJoYW5kbGUiOiJuZXctY29tcGF0aWJsZS1hcHBsZS1tYWNib29rLWFpci1tYjI4M2xsLWEtYWRwLTU0Z2QtbWFnc2FmZS1wb3dlci1hZGFwdGVyLWNoYXJnZXItNDV3IiwidGl0bGUiOiJOZXcgQ29tcGF0aWJsZSBBcHBsZSBNYWNib29rIEFpciBNQjI4M0xML0EgQURQLTU0R0QgTWFnc2FmZSBQb3dlciBBZGFwdGVyIENoYXJnZXIgNDVXIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL3p6MV9mNWZkNDMyNS1mZTk3LTQ5MWMtYmZmYy0zMWY4YTU3YTRjNTIuanBnP3Y9MTc2MjU2ODYzNyJ9LHsiaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvNDY2ODY2NzAzNTczNSIsInNob3J0SWQiOiI0NjY4NjY3MDM1NzM1IiwidmFyaWFudHMiOlsiMzk2NjYxODAwOTYwODciXSwiaGFuZGxlIjoiYXBwbGUtbWFjYm9vay1wcm8tYTE0MjUtYTE1MDItY29tcGF0aWJsZS1hYy1hZGFwdGVyLW1hZ3NhZmUtMi02MHciLCJ0aXRsZSI6Ik5ldyBDb21wYXRpYmxlIEFwcGxlIE1hY0Jvb2sgUHJvIEFDIEFkYXB0ZXIgQ2hhcmdlciBNYWdzYWZlIDIgQTE0MjUgQTE1MDIgNjBXIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL2ExNDM1X2NfMTRlZjc2NTYtODFjZC00ZjYyLWIzNmYtZWFlOTFiOGVlMTdhLmpwZz92PTE3NjI1Njg5NjgifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzQ2Njg2NjgwMTg3NzUiLCJzaG9ydElkIjoiNDY2ODY2ODAxODc3NSIsInZhcmlhbnRzIjpbIjM5NjY2MTgwMDYzMzE5Il0sImhhbmRsZSI6Im5ldy1jb21wYXRpYmxlLWFwcGxlLW1hY2Jvb2stcHJvLWFjLWFkYXB0ZXItY2hhcmdlci1tYWdzYWZlLTItYTE0MzUtMTYtNXYtMy0yNWEtNjB3IiwidGl0bGUiOiJOZXcgQ29tcGF0aWJsZSBBcHBsZSBNYWNCb29rIFBybyBBQyBBZGFwdGVyIENoYXJnZXIgTWFnc2FmZSAyIEExNDM1IDE2LjVWIDMuMjVBIDYwVyIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9wcm9kdWN0cy9hMTQzNV9jLmpwZz92PTE3NjI1Njg5NjgifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzY4ODQxNTYxMTI5ODMiLCJzaG9ydElkIjoiNjg4NDE1NjExMjk4MyIsInZhcmlhbnRzIjpbIjQwMTg5NTY5NzI4NTk5Il0sImhhbmRsZSI6Im5ldy1jb21wYXRpYmxlLWFwcGxlLW1hY2Jvb2stcmV0aW5hLW1hZ3NhZmUtMi1wb3dlci1hZGFwdGVyLWNoYXJnZXItNjB3IiwidGl0bGUiOiJOZXcgQ29tcGF0aWJsZSBBcHBsZSBNYWNCb29rIFJldGluYSBNYWdzYWZlIDIgUG93ZXIgQWRhcHRlciBDaGFyZ2VyIDYwVyIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy96ejFfYjRmNjg3YzQtYWEyMS00N2U2LWJjMzEtNDBlNWIxYTExMzcwLmpwZz92PTE3NjI2NTUzMDYifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzczMTYyMTcyOTkwMzEiLCJzaG9ydElkIjoiNzMxNjIxNzI5OTAzMSIsInZhcmlhbnRzIjpbIjQxMzM4MDYxNzgzMTI3Il0sImhhbmRsZSI6Im5ldy1hMTQzNi1hcHBsZS1sYXB0b3AtNDV3LW1hZ3NhZmUtMi1wb3dlci1hYy1hZGFwdGVyIiwidGl0bGUiOiJOZXcgQTE0MzYgQXBwbGUgTGFwdG9wIDQ1VyBNYWdzYWZlIDIgUG93ZXIgQWMgQWRhcHRlciIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9wcm9kdWN0SW1hZ2VfYmEyM2NhNzMtZWY1My00MzE2LTg3NGItYjEzMmJkNWEwYWJkLmpwZz92PTE3NjMwMjUzNjUifV19fSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzU2MDY4NTA4ODc5MSIsInNob3J0SWQiOiI1NjA2ODUwODg3OTEiLCJ2YXJpYW50cyI6WyI0NDk2NjUwMDEwNjQ3Il0sImhhbmRsZSI6Im5ldy1hcHBsZS1tYWNib29rLXByby1haXItNDV3LTYwdy04NXctcG93ZXItYWRhcHRlci1jaGFyZ2VyLWV4dGVuc2lvbi1jb3JkLWNhYmxlLTkyMi05MTczIiwidGl0bGUiOiJOZXcgQXBwbGUgTWFjYm9vayBQcm8gQWlyIDQ1VyA2MFcgODVXIFBvd2VyIEFkYXB0ZXIgQ2hhcmdlciBFeHRlbnNpb24gQ29yZCBDYWJsZSA5MjItOTE3MyJ9XX19LHsiaWQiOiI0ODIiLCJ2IjoyLCJ0cmlnZ2VyIjp7Im9uIjoic3BlY2lmaWMiLCJzZWxlY3Rpb24iOnsidHlwZSI6IkNvbGxlY3Rpb24iLCJjb2xsZWN0aW9uIjp7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Db2xsZWN0aW9uLzE4MjcyNjc5MCIsInRpdGxlIjoiU2NyZWVucyIsImltYWdlIjpudWxsLCJoYW5kbGUiOiJzY3JlZW5zIiwidXBkYXRlZEF0IjoiMjAyNS0wOS0yNVQxMToyNTozM1oiLCJwcm9kdWN0c0NvdW50Ijp7ImNvdW50IjoxNDI3LCJfX3R5cGVuYW1lIjoiQ291bnQifSwic29ydE9yZGVyIjoiQUxQSEFfQVNDIiwiX190eXBlbmFtZSI6IkNvbGxlY3Rpb24ifX19LCJ1cHNlbGwiOnsidHlwZSI6IlByb2R1Y3QiLCJwcm9kdWN0cyI6W3siaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvNzQxMTg5NTE3MzIwNyIsInNob3J0SWQiOiI3NDExODk1MTczMjA3IiwidmFyaWFudHMiOlsiNDE3MDIxOTM2OTI3NTkiXSwiaGFuZGxlIjoibmV3LWxjZC1zY3JlZW4tcHVsbC10YWJzLXN0cmV0Y2gtcmVsZWFzZS1hZGhlc2l2ZS1zdHJpcHMtZm9yLTExLTYtMTMtMy0xNC0xNS02LWxhcHRvcHMtMiIsInRpdGxlIjoiTmV3IExDRCBTY3JlZW4gUHVsbCBUYWJzIFN0cmV0Y2ggUmVsZWFzZSBBZGhlc2l2ZSBTdHJpcHMgRm9yIDExLjZcIiAxMy4zXCIgMTRcIiAxNS42XCIgTGFwdG9wcyIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9zLWwxMDAwXzM5NDhhZjc3LWE0ZDktNGMyNi1iZDkzLTVlZDgyYmI4N2ZhOS53ZWJwP3Y9MTc0NjYzNTIwNCJ9XX19LHsiaWQiOiIyMTI5MSIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzczMjM4ODQwMjc5OTEiLCJzaG9ydElkIjoiNzMyMzg4NDAyNzk5MSIsInZhcmlhbnRzIjpbIjQxMzYwNTgyOTM0NjE1Il0sImhhbmRsZSI6Im5ldy1sYXB0b3AtcmVwYWlyLXRvb2wta2l0LTExNS1pbi0xLW1hZ25ldGljLXByZWNpc2lvbi1zY3Jld2RyaXZlci1zZXQtMiIsInRpdGxlIjoiTmV3IExhcHRvcCBSZXBhaXIgVG9vbCBraXQgMTE1IGluIDEgTWFnbmV0aWMgUHJlY2lzaW9uIFNjcmV3ZHJpdmVyIFNldCIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9zLWwxMDAwXzUxNmUwMjY0LWRjZjMtNDU3Zi1iNTJiLWI4MDc2ZjE0MDBiMi53ZWJwP3Y9MTczMTQyMDU0OCJ9XX19LHsiaWQiOiIxNDI4OSIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzY1NzA2MjE1OTk4MzEiLCJzaG9ydElkIjoiNjU3MDYyMTU5OTgzMSIsInZhcmlhbnRzIjpbIjM5MzMzODE4MjY5NzgzIl0sImhhbmRsZSI6Im5ldy1ibGFjay0zbS1zdGlja2VyLWRvdWJsZS1zaWRlZC01bW0teC01MG0tdGFwZS1hZGhlc2l2ZS1mb3ItY2VsbC1waG9uZS1jb21wdXRlci1yZXBhaXJzIiwidGl0bGUiOiJOZXcgQmxhY2sgM00gU3RpY2tlciBEb3VibGUgU2lkZWQgNW1tIHggNTBtIFRhcGUgQWRoZXNpdmUgRm9yIENlbGwgUGhvbmUgJiBDb21wdXRlciBSZXBhaXJzIn1dfX0seyJpZCI6IjIxNDMyIiwidiI6MiwidHJpZ2dlciI6eyJvbiI6ImFsbCJ9LCJ1cHNlbGwiOnsidHlwZSI6IlByb2R1Y3QiLCJwcm9kdWN0cyI6W3siaWQiOiJnaWQ6Ly9zaG9waWZ5L1Byb2R1Y3QvNzM4Nzg0Nzc4NjU4MyIsInNob3J0SWQiOiI3Mzg3ODQ3Nzg2NTgzIiwidmFyaWFudHMiOlsiNDE2MTQ5NjA4ODU4NDciXSwiaGFuZGxlIjoibmV3LTEyOGdiLXVzYi1mbGFzaC1kcml2ZXMtdXNiLTItMC1ibGFjay1hbmQtc2lsdmVyLWxpcXVpZGF0aW9uLXNhbGUiLCJ0aXRsZSI6Ik5ldyAxMjhHQiBVU0IgRmxhc2ggRHJpdmVzIFVTQiAyLjAgQmxhY2sgYW5kIFNpbHZlciAtIExJUVVJREFUSU9OIFNBTEUiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvcy1sMTAwMF8yODUxNWNhZC1lMjNlLTRjNWItOGU4YS05OTUxNjY3ZDVjZDgud2VicD92PTE3NDIzMjMyNjYifV19fV0=");
  22422.    if (val === '') {
  22423.        val = b64DecodeUnicode("W3siX2lkIjoiIiwidHJpZ2dlciI6bnVsbCwidXBzZWxsIjpudWxsfV0=");
  22424.    }
  22425.    val = JSON.parse(val);
  22426.    window.upcartSettings.upcartEditorSettings.upsellsItems = val;
  22427.  
  22428.    val = b64DecodeUnicode("Ym90dG9t");
  22429.    if (val === '') {
  22430.        val = b64DecodeUnicode("Ym90dG9t");
  22431.    }
  22432.    window.upcartSettings.upcartEditorSettings.upsellsModulePosition = val;
  22433.  
  22434.    val = b64DecodeUnicode("ZmFsc2U=");
  22435.    if (val === '') {
  22436.        val = b64DecodeUnicode("ZmFsc2U=");
  22437.    }
  22438.    val = JSON.parse(val);
  22439.    window.upcartSettings.upcartEditorSettings.recommendedUpsells = val;
  22440.  
  22441.    val = b64DecodeUnicode("ZmFsc2U=");
  22442.    if (val === '') {
  22443.        val = b64DecodeUnicode("ZmFsc2U=");
  22444.    }
  22445.    val = JSON.parse(val);
  22446.    window.upcartSettings.upcartEditorSettings.smartVariantMatching = val;
  22447.  
  22448.    val = b64DecodeUnicode("cmVsYXRlZA==");
  22449.    if (val === '') {
  22450.        val = b64DecodeUnicode("cmVsYXRlZA==");
  22451.    }
  22452.    window.upcartSettings.upcartEditorSettings.upsellRecommendationIntent = val;
  22453.  
  22454.    val = b64DecodeUnicode("");
  22455.    if (val === '') {
  22456.        val = b64DecodeUnicode("bm8tcHJvZHVjdHM=");
  22457.    }
  22458.    window.upcartSettings.upcartEditorSettings.upsellProductReviews = val;
  22459.  
  22460.    val = b64DecodeUnicode("");
  22461.    if (val === '') {
  22462.        val = b64DecodeUnicode("KHt7UkVWSUVXX0NPVU5UfX0gcmV2aWV3cyk=");
  22463.    }
  22464.    window.upcartSettings.upcartEditorSettings.upsellProductReviewsTextTemplate = val;
  22465.  
  22466.    val = b64DecodeUnicode("");
  22467.    if (val === '') {
  22468.        val = b64DecodeUnicode("");
  22469.    }
  22470.    window.upcartSettings.upcartEditorSettings.upsellStrategyId = val;
  22471.  
  22472.    val = b64DecodeUnicode("");
  22473.    if (val === '') {
  22474.        val = b64DecodeUnicode("ZmFsc2U=");
  22475.    }
  22476.    val = JSON.parse(val);
  22477.    window.upcartSettings.upcartEditorSettings.upsellStrategyEnabled = val;
  22478.  
  22479.    val = b64DecodeUnicode("dHJ1ZQ==");
  22480.    if (val === '') {
  22481.        val = b64DecodeUnicode("ZmFsc2U=");
  22482.    }
  22483.    val = JSON.parse(val);
  22484.    window.upcartSettings.upcartEditorSettings.addonsModule = val;
  22485.  
  22486.    val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjpmYWxzZSwicHJvZHVjdEhhbmRsZSI6InNoaXBwaW5nLXByb3RlY3Rpb24tMSIsImRlZmF1bHRCZWhhdmlvciI6dHJ1ZSwidGllcnMiOlt7Im1heENhcnRUb3RhbCI6OTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjQuOTl9LCJ2YXJpYW50SWQiOiI0MjczMDEzOTc3OTE1OSJ9LHsibWF4Q2FydFRvdGFsIjoxOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjUuOTl9LCJ2YXJpYW50SWQiOiI0MjczMDEzOTgxMTkyNyJ9LHsibWF4Q2FydFRvdGFsIjoyOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjYuOTl9LCJ2YXJpYW50SWQiOiI0MjczMDEzOTg0NDY5NSJ9LHsibWF4Q2FydFRvdGFsIjozOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjcuOTl9LCJ2YXJpYW50SWQiOiI0MjczMDEzOTg3NzQ2MyJ9LHsibWF4Q2FydFRvdGFsIjpudWxsLCJ0ZW1wb3JhcnlEYXRhRm9yQWRtaW4iOnsidmFyaWFudFByaWNlIjo4Ljk5fSwidmFyaWFudElkIjoiNDI3MzAxMzk5MTAyMzEifV0sInVzZVByZURpc2NvdW50ZWRUb3RhbCI6dHJ1ZX0sInByb2R1Y3RBZGRvbiI6eyJhY3RpdmUiOnRydWUsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGwsImRlZmF1bHRCZWhhdmlvciI6ZmFsc2V9fQ==");
  22487.    if (val === '') {
  22488.        val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjpmYWxzZSwicHJvZHVjdEhhbmRsZSI6bnVsbCwidGllcnMiOltdLCJ1c2VQcmVEaXNjb3VudGVkVG90YWwiOmZhbHNlfSwicHJvZHVjdEFkZG9uIjp7ImFjdGl2ZSI6ZmFsc2UsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGx9fQ==");
  22489.    }
  22490.    val = JSON.parse(val);
  22491.    window.upcartSettings.upcartEditorSettings.addonsField = val;
  22492.  
  22493.    val = b64DecodeUnicode("dHJ1ZQ==");
  22494.    if (val === '') {
  22495.        val = b64DecodeUnicode("ZmFsc2U=");
  22496.    }
  22497.    val = JSON.parse(val);
  22498.    window.upcartSettings.upcartEditorSettings.addonsShouldBeCounted = val;
  22499.  
  22500.    val = b64DecodeUnicode("");
  22501.    if (val === '') {
  22502.        val = b64DecodeUnicode("dHJ1ZQ==");
  22503.    }
  22504.    val = JSON.parse(val);
  22505.    window.upcartSettings.upcartEditorSettings.enableAddonAttributeKey = val;
  22506.  
  22507.    val = b64DecodeUnicode("dHJ1ZQ==");
  22508.    if (val === '') {
  22509.        val = b64DecodeUnicode("ZmFsc2U=");
  22510.    }
  22511.    val = JSON.parse(val);
  22512.    window.upcartSettings.upcartEditorSettings.notesModule = val;
  22513.  
  22514.    val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zIC0gTGFwdG9wIG1vZGVsIE51bWJlcjwvcD4K");
  22515.    if (val === '') {
  22516.        val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zPC9wPg==");
  22517.    }
  22518.    window.upcartSettings.upcartEditorSettings.notesTitle = val;
  22519.  
  22520.    val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22521.    if (val === '') {
  22522.        val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22523.    }
  22524.    window.upcartSettings.upcartEditorSettings.notesPlaceholder = val;
  22525.  
  22526.    val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22527.    if (val === '') {
  22528.        val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22529.    }
  22530.    window.upcartSettings.upcartEditorSettings.notesPlacement = val;
  22531.  
  22532.    val = b64DecodeUnicode("dHJ1ZQ==");
  22533.    if (val === '') {
  22534.        val = b64DecodeUnicode("ZmFsc2U=");
  22535.    }
  22536.    val = JSON.parse(val);
  22537.    window.upcartSettings.upcartEditorSettings.trustBadgesModule = val;
  22538.  
  22539.    val = b64DecodeUnicode("eyJ1cmwiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL1VwY2FydF9UcnVzdF9CYWRnZV8xNzM5ODgzNjUyMjIxLmpwZz92PTE3Mzk4ODM2NjEiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  22540.    if (val === '') {
  22541.        val = b64DecodeUnicode("eyJ1cmwiOiIiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  22542.    }
  22543.    val = JSON.parse(val);
  22544.    window.upcartSettings.upcartEditorSettings.trustBadges = val;
  22545.  
  22546.    val = b64DecodeUnicode("dHJ1ZQ==");
  22547.    if (val === '') {
  22548.        val = b64DecodeUnicode("ZmFsc2U=");
  22549.    }
  22550.    val = JSON.parse(val);
  22551.    window.upcartSettings.upcartEditorSettings.discountCodeModule = val;
  22552.  
  22553.    val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  22554.    if (val === '') {
  22555.        val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  22556.    }
  22557.    window.upcartSettings.upcartEditorSettings.discountCodePlaceholder = val;
  22558.  
  22559.    val = b64DecodeUnicode("QXBwbHk=");
  22560.    if (val === '') {
  22561.        val = b64DecodeUnicode("QXBwbHk=");
  22562.    }
  22563.    window.upcartSettings.upcartEditorSettings.discountCodeButtonText = val;
  22564.  
  22565.    val = b64DecodeUnicode("ZmFsc2U=");
  22566.    if (val === '') {
  22567.        val = b64DecodeUnicode("ZmFsc2U=");
  22568.    }
  22569.    val = JSON.parse(val);
  22570.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesModule = val;
  22571.  
  22572.    val = b64DecodeUnicode("ZmFsc2U=");
  22573.    if (val === '') {
  22574.        val = b64DecodeUnicode("ZmFsc2U=");
  22575.    }
  22576.    val = JSON.parse(val);
  22577.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesPreventDowngrades = val;
  22578.  
  22579.    val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  22580.    if (val === '') {
  22581.        val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  22582.    }
  22583.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesButtonText = val;
  22584.  
  22585.    val = b64DecodeUnicode("ZmFsc2U=");
  22586.    if (val === '') {
  22587.        val = b64DecodeUnicode("ZmFsc2U=");
  22588.    }
  22589.    val = JSON.parse(val);
  22590.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsTextOverride = val;
  22591.  
  22592.    val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  22593.    if (val === '') {
  22594.        val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  22595.    }
  22596.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsText = val;
  22597.  
  22598.    val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  22599.    if (val === '') {
  22600.        val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  22601.    }
  22602.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOneTimePurchaseText = val;
  22603.  
  22604.    val = b64DecodeUnicode("");
  22605.    if (val === '') {
  22606.        val = b64DecodeUnicode("RnVsbCBwcmljZQ==");
  22607.    }
  22608.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesFullPriceText = val;
  22609.  
  22610.    val = b64DecodeUnicode("");
  22611.    if (val === '') {
  22612.        val = b64DecodeUnicode("U3Vic2NyaXB0aW9uIHBsYW5z");
  22613.    }
  22614.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesSubscriptionPlansText = val;
  22615.  
  22616.    val = b64DecodeUnicode("dHJ1ZQ==");
  22617.    if (val === '') {
  22618.        val = b64DecodeUnicode("ZmFsc2U=");
  22619.    }
  22620.    val = JSON.parse(val);
  22621.    window.upcartSettings.upcartEditorSettings.expressPayModule = val;
  22622.  
  22623.    val = b64DecodeUnicode("W10=");
  22624.    if (val === '') {
  22625.        val = b64DecodeUnicode("W10=");
  22626.    }
  22627.    val = JSON.parse(val);
  22628.    window.upcartSettings.upcartEditorSettings.expressPayEnabledGateways = val;
  22629.  
  22630.    val = b64DecodeUnicode("MQ==");
  22631.    if (val === '') {
  22632.        val = b64DecodeUnicode("MQ==");
  22633.    }
  22634.    window.upcartSettings.upcartEditorSettings.expressPayVersion = val;
  22635.  
  22636.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  22637.    if (val === '') {
  22638.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  22639.    }
  22640.    val = JSON.parse(val);
  22641.    window.upcartSettings.upcartEditorSettings.expressPayAcceleratedCheckoutStyles = val;
  22642.  
  22643.    val = b64DecodeUnicode("dHJ1ZQ==");
  22644.    if (val === '') {
  22645.        val = b64DecodeUnicode("dHJ1ZQ==");
  22646.    }
  22647.    val = JSON.parse(val);
  22648.    window.upcartSettings.upcartEditorSettings.expressPayHideBuyerConsent = val;
  22649.  
  22650.    val = b64DecodeUnicode("ZmFsc2U=");
  22651.    if (val === '') {
  22652.        val = b64DecodeUnicode("ZmFsc2U=");
  22653.    }
  22654.    val = JSON.parse(val);
  22655.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartButtonIsEnabled = val;
  22656.  
  22657.    val = b64DecodeUnicode("IzQzYmUwYQ==");
  22658.    if (val === '') {
  22659.        val = b64DecodeUnicode("IzAwMDAwMA==");
  22660.    }
  22661.    window.upcartSettings.stickyCartButtonEditorSettings.backgroundColor = val;
  22662.  
  22663.    val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  22664.    if (val === '') {
  22665.        val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  22666.    }
  22667.    window.upcartSettings.stickyCartButtonEditorSettings.deviceSettings = val;
  22668.  
  22669.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22670.    if (val === '') {
  22671.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  22672.    }
  22673.    window.upcartSettings.stickyCartButtonEditorSettings.iconColor = val;
  22674.  
  22675.    val = b64DecodeUnicode("c3RhbmRhcmRDYXJ0");
  22676.    if (val === '') {
  22677.        val = b64DecodeUnicode("c3F1YXJlQmFn");
  22678.    }
  22679.    window.upcartSettings.stickyCartButtonEditorSettings.iconStyle = val;
  22680.  
  22681.    val = b64DecodeUnicode("I2U0MjYyNg==");
  22682.    if (val === '') {
  22683.        val = b64DecodeUnicode("I2U0MjYyNg==");
  22684.    }
  22685.    window.upcartSettings.stickyCartButtonEditorSettings.quantityBackgroundColor = val;
  22686.  
  22687.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22688.    if (val === '') {
  22689.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  22690.    }
  22691.    window.upcartSettings.stickyCartButtonEditorSettings.quantityTextColor = val;
  22692.  
  22693.    val = b64DecodeUnicode("Y2VudGVyUmlnaHQ=");
  22694.    if (val === '') {
  22695.        val = b64DecodeUnicode("Ym90dG9tUmlnaHQ=");
  22696.    }
  22697.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartPosition = val;
  22698.  
  22699.  
  22700. })();
  22701. </script>
  22702.  
  22703.  
  22704.  
  22705.  
  22706.  <div id="upcart-additional-checkout-buttons" style="position: absolute !important; margin-left: -9999px !important; display: block !important;" class="additional-checkout-buttons">
  22707.    
  22708.    <div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
  22709.    <div class="upcart-additional-checkout-buttons-svgs">
  22710.  
  22711.      
  22712.  
  22713.      
  22714.  
  22715.      
  22716.  
  22717.      
  22718.  
  22719.      
  22720.  
  22721.      
  22722.    </div>
  22723.  </div>
  22724.  
  22725.  
  22726.  
  22727.  
  22728. <script>
  22729.  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};
  22730.  window.upcartMoneyFormat = "${{amount}}";
  22731.  window.upcartStorefrontPublicAccessToken = '53e72a50badb7e504187b4c7431817bf' || undefined;
  22732.  window.upcartClientLocalizationCountry = {
  22733.    isoCode: 'CA',
  22734.    currency: 'CurrencyDrop',
  22735.    name: 'Canada'
  22736.  };
  22737.  window.upcartMyShopifyDomain = 'laptoppartsatp.myshopify.com';
  22738. </script>
  22739.  
  22740.  
  22741. <script>
  22742.    window.upcart = window.upcart || {};
  22743.    window.upcart.customer = { isLoggedIn: false };
  22744.  </script><script>
  22745.  window.upcartPreloadedCart.items = window.upcartPreloadedCart.items.map((line) => {
  22746.    
  22747.  
  22748.    return line;
  22749.  });
  22750. </script>
  22751.  
  22752. <div id="upCart"></div>
  22753. <div id="upCartStickyButton"></div>
  22754.  
  22755. <style id="upCart-customCSS">
  22756.  
  22757.    *{}
  22758.  
  22759. </style>
  22760.  
  22761.  
  22762. </div><!-- Failed to render app block "16488661044329386848": app block path "shopify://apps/profitmetrics/blocks/head/019b0272-dcd0-785d-9894-392186bb1e9e" does not exist --><div id="shopify-block-ATmdSTUZIVlRLejdna__1027443428159536739" class="shopify-block shopify-app-block"><script type="application/javascript">
  22763.    window.hextom_qab_meta = {
  22764.        p1: [
  22765.            
  22766.        ],
  22767.        p2: {
  22768.            
  22769.        },
  22770.        p3:null,
  22771.        p4:[],
  22772.        p5:null,
  22773.    };
  22774.    
  22775.    window.hextom_qab_config = {"shop_active":"yes","record":false,"bars":[]};
  22776.    
  22777. </script>
  22778.  
  22779. </div></body>
  22780. </html>
  22781.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda