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://mymimi.com.au/

  1. <!doctype html>
  2.  
  3. <html
  4.  class="no-js"
  5.  lang="en"
  6.  
  7. >
  8.  <head>
  9.    <script>
  10.        // Lazy --> Changed to "eager" Loading Script for entire Theme Liquid//
  11.      document.addEventListener("DOMContentLoaded", function() {
  12.          document.querySelectorAll("img").forEach(img => {
  13.              if (!img.hasAttribute("loading")) {
  14.                  img.setAttribute("loading", "eager");
  15.              }
  16.          });
  17.      });
  18.    </script>
  19.  
  20.  
  21.    <!-- CLS (Cumulative Layout Shift) -->
  22.    <style>
  23.      body { visibility: hidden; }
  24.    </style>
  25.    
  26.    <script>
  27.          //CLS (Cumulative Layout Shift)
  28.      document.addEventListener("DOMContentLoaded", function() {
  29.          document.body.style.visibility = "visible";
  30.      });
  31.    </script>
  32.  
  33.    <!-- Microsoft Clarity -->
  34.    <script type="text/javascript">
  35.      (function(c,l,a,r,i,t,y){
  36.          c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
  37.          t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
  38.          y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
  39.      })(window, document, "clarity", "script", "q2ws21t7ot");
  40.    </script>
  41.    <!-- End Microsoft Clarity -->
  42.  
  43.    <!-- Google Tag Manager (Optimized for Performance) -->
  44.    <script>
  45.      (function(w, d, s, l, i) {
  46.          w[l] = w[l] || [];
  47.          w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' });
  48.  
  49.          function loadGTM() {
  50.              if (!w.gtmLoaded) {
  51.                  let script = d.createElement(s);
  52.                  script.async = true;
  53.                  script.src = 'https://www.googletagmanager.com/gtm.js?id=' + i;
  54.                  d.body.appendChild(script);
  55.                  w.gtmLoaded = true;
  56.              }
  57.          }
  58.  
  59.          // Load GTM immediately if JavaScript is enabled
  60.          if (document.readyState === "complete") {
  61.              loadGTM();
  62.          } else {
  63.              d.addEventListener("DOMContentLoaded", loadGTM);
  64.              d.addEventListener("scroll", loadGTM, { once: true });
  65.          }
  66.      })(window, document, 'script', 'dataLayer', 'GTM-P2B2ZR8K');
  67.    </script>
  68.    <!-- End Google Tag Manager -->
  69.  
  70.    <script>
  71. /**
  72.  * Author: Md Hasanuzzamna
  73.  * Email: info@leomeasure.com
  74.  * Linkedin: https://linkedin.com/in/md-h
  75.  * Version: 3.5.0
  76.  * Last Update: 22 Oct 2024
  77.  */
  78.  
  79.  (function() {
  80.      class Ultimate_Shopify_DataLayer {
  81.        constructor() {
  82.          window.dataLayer = window.dataLayer || [];
  83.          
  84.          // use a prefix of events name
  85.          this.eventPrefix = 'popy_';
  86.  
  87.          //Keep the value false to get non-formatted product ID
  88.          this.formattedItemId = true;
  89.  
  90.          // data schema
  91.          this.dataSchema = {
  92.            ecommerce: {
  93.                show: true
  94.            },
  95.            dynamicRemarketing: {
  96.                show: false,
  97.                business_vertical: 'retail'
  98.            }
  99.          }
  100.  
  101.          // add to wishlist selectors
  102.          this.addToWishListSelectors = {
  103.            'addWishListIcon': '',
  104.            'gridItemSelector': '',
  105.            'productLinkSelector': 'a[href*="/products/"]'
  106.          }
  107.  
  108.          // quick view selectors
  109.          this.quickViewSelector = {
  110.            'quickViewElement': '',
  111.            'gridItemSelector': '',
  112.            'productLinkSelector': 'a[href*="/products/"]'
  113.          }
  114.  
  115.          // mini cart button selector
  116.          this.miniCartButton = [
  117.            'a[href="/cart"]',
  118.          ];
  119.          this.miniCartAppersOn = 'click';
  120.  
  121.  
  122.          // begin checkout buttons/links selectors
  123.          this.beginCheckoutButtons = [
  124.            'input[name="checkout"]',
  125.            'button[name="checkout"]',
  126.            'a[href="/checkout"]',
  127.            '.additional-checkout-buttons',
  128.          ];
  129.  
  130.          // direct checkout button selector
  131.          this.shopifyDirectCheckoutButton = [
  132.            '.shopify-payment-button'
  133.          ]
  134.  
  135.          //Keep the value true if Add to Cart redirects to the cart page
  136.          this.isAddToCartRedirect = false;
  137.          
  138.          // keep the value false if cart items increment/decrement/remove refresh page
  139.          this.isAjaxCartIncrementDecrement = true;
  140.          
  141.  
  142.          // Caution: Do not modify anything below this line, as it may result in it not functioning correctly.
  143.          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":"AUD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
  144.          this.countryCode = "AU";
  145.          this.storeURL = "https://mymimi.com.au";
  146.          localStorage.setItem('shopCountryCode', this.countryCode);
  147.          this.collectData();
  148.          this.itemsList = [];
  149.        }
  150.  
  151.        updateCart() {
  152.          fetch("/cart.js")
  153.          .then((response) => response.json())
  154.          .then((data) => {
  155.            this.cart = data;
  156.          });
  157.        }
  158.  
  159.       debounce(delay) {        
  160.          let timeoutId;
  161.          return function(func) {
  162.            const context = this;
  163.            const args = arguments;
  164.            
  165.            clearTimeout(timeoutId);
  166.            
  167.            timeoutId = setTimeout(function() {
  168.              func.apply(context, args);
  169.            }, delay);
  170.          };
  171.        }
  172.  
  173.        eventConsole(eventName, eventData) {
  174.          const css1 = 'background: red; color: #fff; font-size: normal; border-radius: 3px 0 0 3px; padding: 3px 4px;';
  175.          const css2 = 'background-color: blue; color: #fff; font-size: normal; border-radius: 0 3px 3px 0; padding: 3px 4px;';
  176.          console.log('%cGTM DataLayer Event:%c' + eventName, css1, css2, eventData);
  177.        }
  178.  
  179.        collectData() {
  180.            this.customerData();
  181.            this.ajaxRequestData();
  182.            this.searchPageData();
  183.            this.miniCartData();
  184.            this.beginCheckoutData();
  185.  
  186.            
  187.  
  188.            
  189.  
  190.            
  191.            
  192.            this.addToWishListData();
  193.            this.quickViewData();
  194.            this.selectItemData();
  195.            this.formData();
  196.            this.phoneClickData();
  197.            this.emailClickData();
  198.            this.loginRegisterData();
  199.        }        
  200.  
  201.        //logged-in customer data
  202.        customerData() {
  203.            const currentUser = {};
  204.            
  205.  
  206.            if (currentUser.email) {
  207.              currentUser.hash_email = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
  208.            }
  209.  
  210.            if (currentUser.phone) {
  211.              currentUser.hash_phone = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
  212.            }
  213.  
  214.            window.dataLayer = window.dataLayer || [];
  215.            dataLayer.push({
  216.              customer: currentUser
  217.            });
  218.        }
  219.  
  220.        // add_to_cart, remove_from_cart, search
  221.        ajaxRequestData() {
  222.          const self = this;
  223.          
  224.          // handle non-ajax add to cart
  225.          if(this.isAddToCartRedirect) {
  226.            document.addEventListener('submit', function(event) {
  227.              const addToCartForm = event.target.closest('form[action="/cart/add"]');
  228.              if(addToCartForm) {
  229.                event.preventDefault();
  230.                
  231.                const formData = new FormData(addToCartForm);
  232.            
  233.                fetch(window.Shopify.routes.root + 'cart/add.js', {
  234.                  method: 'POST',
  235.                  body: formData
  236.                })
  237.                .then(response => {
  238.                    window.location.href = "/cart";
  239.                })
  240.                .catch((error) => {
  241.                  console.error('Error:', error);
  242.                });
  243.              }
  244.            });
  245.          }
  246.          
  247.          // fetch
  248.          let originalFetch = window.fetch;
  249.          let debounce = this.debounce(800);
  250.          
  251.          window.fetch = function () {
  252.            return originalFetch.apply(this, arguments).then((response) => {
  253.              if (response.ok) {
  254.                let cloneResponse = response.clone();
  255.                let requestURL = arguments[0]['url'] || arguments[0];
  256.                
  257.                if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {  
  258.                  const queryString = requestURL.split('?')[1];
  259.                  const urlParams = new URLSearchParams(queryString);
  260.                  const search_term = urlParams.get("q");
  261.  
  262.                  debounce(function() {
  263.                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
  264.                      .then(res => res.json())
  265.                      .then(function(data) {
  266.                            const products = data.resources.results.products;
  267.                            if(products.length) {
  268.                              const fetchRequests = products.map(product =>
  269.                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
  270.                                  .then(response => response.json())
  271.                                  .catch(error => console.error('Error fetching:', error))
  272.                              );
  273.  
  274.                              Promise.all(fetchRequests)
  275.                                .then(products => {
  276.                                    const items = products.map((product) => {
  277.                                      return {
  278.                                        product_id: product.id,
  279.                                        product_title: product.title,
  280.                                        variant_id: product.variants[0].id,
  281.                                        variant_title: product.variants[0].title,
  282.                                        vendor: product.vendor,
  283.                                        total_discount: 0,
  284.                                        final_price: product.price_min,
  285.                                        product_type: product.type,
  286.                                        quantity: 1
  287.                                      }
  288.                                    });
  289.  
  290.                                    self.ecommerceDataLayer('search', {search_term, items});
  291.                                })
  292.                            }else {
  293.                              self.ecommerceDataLayer('search', {search_term, items: []});
  294.                            }
  295.                      });
  296.                  });
  297.                }
  298.                else if (requestURL.includes("/cart/add")) {
  299.                  cloneResponse.text().then((text) => {
  300.                    let data = JSON.parse(text);
  301.  
  302.                    if(data.items && Array.isArray(data.items)) {
  303.                      data.items.forEach(function(item) {
  304.                         self.ecommerceDataLayer('add_to_cart', {items: [item]});
  305.                      })
  306.                    } else {
  307.                      self.ecommerceDataLayer('add_to_cart', {items: [data]});
  308.                    }
  309.                    self.updateCart();
  310.                  });
  311.                }else if(requestURL.includes("/cart/change") || requestURL.includes("/cart/update")) {
  312.                  
  313.                   cloneResponse.text().then((text) => {
  314.                    
  315.                    let newCart = JSON.parse(text);
  316.                    let newCartItems = newCart.items;
  317.                    let oldCartItems = self.cart.items;
  318.  
  319.                    for(let i = 0; i < oldCartItems.length; i++) {
  320.                      let item = oldCartItems[i];
  321.                      let newItem = newCartItems.find(newItems => newItems.id === item.id);
  322.  
  323.  
  324.                      if(newItem) {
  325.  
  326.                        if(newItem.quantity > item.quantity) {
  327.                          // cart item increment
  328.                          let quantity = (newItem.quantity - item.quantity);
  329.                          let updatedItem = {...item, quantity}
  330.                          self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
  331.                          self.updateCart();
  332.  
  333.                        }else if(newItem.quantity < item.quantity) {
  334.                          // cart item decrement
  335.                          let quantity = (item.quantity - newItem.quantity);
  336.                          let updatedItem = {...item, quantity}
  337.                          self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
  338.                          self.updateCart();
  339.                        }
  340.                        
  341.  
  342.                      }else {
  343.                        self.ecommerceDataLayer('remove_from_cart', {items: [item]});
  344.                        self.updateCart();
  345.                      }
  346.                    }
  347.                    
  348.                  });
  349.                }
  350.              }
  351.              return response;
  352.            });
  353.          }
  354.          // end fetch
  355.  
  356.  
  357.          //xhr
  358.          var origXMLHttpRequest = XMLHttpRequest;
  359.          XMLHttpRequest = function() {
  360.            var requestURL;
  361.    
  362.            var xhr = new origXMLHttpRequest();
  363.            var origOpen = xhr.open;
  364.            var origSend = xhr.send;
  365.            
  366.            // Override the `open` function.
  367.            xhr.open = function(method, url) {
  368.                requestURL = url;
  369.                return origOpen.apply(this, arguments);
  370.            };
  371.    
  372.    
  373.            xhr.send = function() {
  374.    
  375.                // Only proceed if the request URL matches what we're looking for.
  376.                if (requestURL.includes("/cart/add") || requestURL.includes("/cart/change") || /.*\/search\/?.*\?.*q=.+/.test(requestURL)) {
  377.        
  378.                    xhr.addEventListener('load', function() {
  379.                        if (xhr.readyState === 4) {
  380.                            if (xhr.status >= 200 && xhr.status < 400) {
  381.  
  382.                              if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {
  383.                                const queryString = requestURL.split('?')[1];
  384.                                const urlParams = new URLSearchParams(queryString);
  385.                                const search_term = urlParams.get("q");
  386.  
  387.                                debounce(function() {
  388.                                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
  389.                                      .then(res => res.json())
  390.                                      .then(function(data) {
  391.                                            const products = data.resources.results.products;
  392.                                            if(products.length) {
  393.                                              const fetchRequests = products.map(product =>
  394.                                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
  395.                                                  .then(response => response.json())
  396.                                                  .catch(error => console.error('Error fetching:', error))
  397.                                              );
  398.                
  399.                                              Promise.all(fetchRequests)
  400.                                                .then(products => {
  401.                                                    const items = products.map((product) => {
  402.                                                      return {
  403.                                                        product_id: product.id,
  404.                                                        product_title: product.title,
  405.                                                        variant_id: product.variants[0].id,
  406.                                                        variant_title: product.variants[0].title,
  407.                                                        vendor: product.vendor,
  408.                                                        total_discount: 0,
  409.                                                        final_price: product.price_min,
  410.                                                        product_type: product.type,
  411.                                                        quantity: 1
  412.                                                      }
  413.                                                    });
  414.                
  415.                                                    self.ecommerceDataLayer('search', {search_term, items});
  416.                                                })
  417.                                            }else {
  418.                                              self.ecommerceDataLayer('search', {search_term, items: []});
  419.                                            }
  420.                                      });
  421.                                  });
  422.  
  423.                              }
  424.  
  425.                              else if(requestURL.includes("/cart/add")) {
  426.                                  const data = JSON.parse(xhr.responseText);
  427.  
  428.                                  if(data.items && Array.isArray(data.items)) {
  429.                                    data.items.forEach(function(item) {
  430.                                        self.ecommerceDataLayer('add_to_cart', {items: [item]});
  431.                                      })
  432.                                  } else {
  433.                                    self.ecommerceDataLayer('add_to_cart', {items: [data]});
  434.                                  }
  435.                                  self.updateCart();
  436.                                
  437.                               }else if(requestURL.includes("/cart/change")) {
  438.                                
  439.                                  const newCart = JSON.parse(xhr.responseText);
  440.                                  const newCartItems = newCart.items;
  441.                                  let oldCartItems = self.cart.items;
  442.              
  443.                                  for(let i = 0; i < oldCartItems.length; i++) {
  444.                                    let item = oldCartItems[i];
  445.                                    let newItem = newCartItems.find(newItems => newItems.id === item.id);
  446.              
  447.              
  448.                                    if(newItem) {
  449.                                      if(newItem.quantity > item.quantity) {
  450.                                        // cart item increment
  451.                                        let quantity = (newItem.quantity - item.quantity);
  452.                                        let updatedItem = {...item, quantity}
  453.                                        self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
  454.                                        self.updateCart();
  455.              
  456.                                      }else if(newItem.quantity < item.quantity) {
  457.                                        // cart item decrement
  458.                                        let quantity = (item.quantity - newItem.quantity);
  459.                                        let updatedItem = {...item, quantity}
  460.                                        self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
  461.                                        self.updateCart();
  462.                                      }
  463.                                      
  464.              
  465.                                    }else {
  466.                                      self.ecommerceDataLayer('remove_from_cart', {items: [item]});
  467.                                      self.updateCart();
  468.                                    }
  469.                                  }
  470.                               }          
  471.                            }
  472.                        }
  473.                    });
  474.                }
  475.    
  476.                return origSend.apply(this, arguments);
  477.            };
  478.    
  479.            return xhr;
  480.          };
  481.          //end xhr
  482.        }
  483.  
  484.        // search event from search page
  485.        searchPageData() {
  486.          const self = this;
  487.          let pageUrl = window.location.href;
  488.          
  489.          if(/.+\/search\?.*\&?q=.+/.test(pageUrl)) {  
  490.            const queryString = pageUrl.split('?')[1];
  491.            const urlParams = new URLSearchParams(queryString);
  492.            const search_term = urlParams.get("q");
  493.                
  494.            fetch(`https://mymimi.com.au/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
  495.            .then(res => res.json())
  496.            .then(function(data) {
  497.                  const products = data.resources.results.products;
  498.                  if(products.length) {
  499.                    const fetchRequests = products.map(product =>
  500.                      fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
  501.                        .then(response => response.json())
  502.                        .catch(error => console.error('Error fetching:', error))
  503.                    );
  504.                    Promise.all(fetchRequests)
  505.                    .then(products => {
  506.                        const items = products.map((product) => {
  507.                            return {
  508.                            product_id: product.id,
  509.                            product_title: product.title,
  510.                            variant_id: product.variants[0].id,
  511.                            variant_title: product.variants[0].title,
  512.                            vendor: product.vendor,
  513.                            total_discount: 0,
  514.                            final_price: product.price_min,
  515.                            product_type: product.type,
  516.                            quantity: 1
  517.                            }
  518.                        });
  519.  
  520.                        self.ecommerceDataLayer('search', {search_term, items});
  521.                    });
  522.                  }else {
  523.                    self.ecommerceDataLayer('search', {search_term, items: []});
  524.                  }
  525.            });
  526.          }
  527.        }
  528.  
  529.        // view_cart
  530.        miniCartData() {
  531.          if(this.miniCartButton.length) {
  532.            let self = this;
  533.            if(this.miniCartAppersOn === 'hover') {
  534.              this.miniCartAppersOn = 'mouseenter';
  535.            }
  536.            this.miniCartButton.forEach((selector) => {
  537.              let miniCartButtons = document.querySelectorAll(selector);
  538.              miniCartButtons.forEach((miniCartButton) => {
  539.                  miniCartButton.addEventListener(self.miniCartAppersOn, () => {
  540.                    self.ecommerceDataLayer('view_cart', self.cart);
  541.                  });
  542.              })
  543.            });
  544.          }
  545.        }
  546.  
  547.        // begin_checkout
  548.        beginCheckoutData() {
  549.          let self = this;
  550.          document.addEventListener('pointerdown', (event) => {
  551.            let targetElement = event.target.closest(self.beginCheckoutButtons.join(', '));
  552.            if(targetElement) {
  553.              self.ecommerceDataLayer('begin_checkout', self.cart);
  554.            }
  555.          });
  556.        }
  557.  
  558.        // view_cart, add_to_cart, remove_from_cart
  559.        viewCartPageData() {
  560.          
  561.          this.ecommerceDataLayer('view_cart', this.cart);
  562.  
  563.          //if cart quantity chagne reload page
  564.          if(!this.isAjaxCartIncrementDecrement) {
  565.            const self = this;
  566.            document.addEventListener('pointerdown', (event) => {
  567.              const target = event.target.closest('a[href*="/cart/change?"]');
  568.              if(target) {
  569.                const linkUrl = target.getAttribute('href');
  570.                const queryString = linkUrl.split("?")[1];
  571.                const urlParams = new URLSearchParams(queryString);
  572.                const newQuantity = urlParams.get("quantity");
  573.                const line = urlParams.get("line");
  574.                const cart_id = urlParams.get("id");
  575.        
  576.                
  577.                if(newQuantity && (line || cart_id)) {
  578.                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
  579.        
  580.                  let event = 'add_to_cart';
  581.                  if(newQuantity < item.quantity) {
  582.                    event = 'remove_from_cart';
  583.                  }
  584.        
  585.                  let quantity = Math.abs(newQuantity - item.quantity);
  586.                  item['quantity'] = quantity;
  587.        
  588.                  self.ecommerceDataLayer(event, {items: [item]});
  589.                }
  590.              }
  591.            });
  592.          }
  593.        }
  594.  
  595.        productSinglePage() {
  596.        
  597.        }
  598.  
  599.        collectionsPageData() {
  600.          var ecommerce = {
  601.            'items': [
  602.              
  603.              ]
  604.          };
  605.  
  606.          this.itemsList = ecommerce.items;
  607.          ecommerce['item_list_id'] = null
  608.          ecommerce['item_list_name'] = null
  609.  
  610.          this.ecommerceDataLayer('view_item_list', ecommerce);
  611.        }
  612.        
  613.        
  614.        // add to wishlist
  615.        addToWishListData() {
  616.          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
  617.            const self = this;
  618.            document.addEventListener('pointerdown', (event) => {
  619.              let target = event.target;
  620.              
  621.              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
  622.                let pageULR = window.location.href.replace(/\?.+/, '');
  623.                let requestURL = undefined;
  624.          
  625.                if(/\/products\/[^/]+$/.test(pageULR)) {
  626.                  requestURL = pageULR;
  627.                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
  628.                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
  629.                  if(itemElement) {
  630.                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
  631.                    if(linkElement) {
  632.                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  633.                      if(link && /\/products\/[^/]+$/.test(link)) {
  634.                        requestURL = link;
  635.                      }
  636.                    }
  637.                  }
  638.                }
  639.  
  640.                if(requestURL) {
  641.                  fetch(requestURL + '.json')
  642.                    .then(res => res.json())
  643.                    .then(result => {
  644.                      let data = result.product;                    
  645.                      if(data) {
  646.                        let dataLayerData = {
  647.                          product_id: data.id,
  648.                            variant_id: data.variants[0].id,
  649.                            product_title: data.title,
  650.                          quantity: 1,
  651.                          final_price: parseFloat(data.variants[0].price) * 100,
  652.                          total_discount: 0,
  653.                          product_type: data.product_type,
  654.                          vendor: data.vendor,
  655.                          variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  656.                          sku: data.variants[0].sku,
  657.                        }
  658.  
  659.                        self.ecommerceDataLayer('add_to_wishlist', {items: [dataLayerData]});
  660.                      }
  661.                    });
  662.                }
  663.              }
  664.            });
  665.          }
  666.        }
  667.  
  668.        quickViewData() {
  669.          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
  670.            const self = this;
  671.            document.addEventListener('pointerdown', (event) => {
  672.              let target = event.target;
  673.              if(target.closest(self.quickViewSelector.quickViewElement)) {
  674.                let requestURL = undefined;
  675.                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
  676.                
  677.                if(itemElement) {
  678.                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
  679.                  if(linkElement) {
  680.                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  681.                    if(link && /\/products\/[^/]+$/.test(link)) {
  682.                      requestURL = link;
  683.                    }
  684.                  }
  685.                }  
  686.                
  687.                if(requestURL) {
  688.                    fetch(requestURL + '.json')
  689.                      .then(res => res.json())
  690.                      .then(result => {
  691.                        let data = result.product;                    
  692.                        if(data) {
  693.                          let dataLayerData = {
  694.                            product_id: data.id,
  695.                            variant_id: data.variants[0].id,
  696.                            product_title: data.title,
  697.                            quantity: 1,
  698.                            final_price: parseFloat(data.variants[0].price) * 100,
  699.                            total_discount: 0,
  700.                            product_type: data.product_type,
  701.                            vendor: data.vendor,
  702.                            variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  703.                            sku: data.variants[0].sku,
  704.                          }
  705.  
  706.                          self.ecommerceDataLayer('view_item', {items: [dataLayerData]});
  707.                          self.quickViewVariants = data.variants;
  708.                          self.quickViewedItem = dataLayerData;
  709.                        }
  710.                      });
  711.                  }
  712.              }
  713.            });
  714.  
  715.            
  716.              if(this.shopifyDirectCheckoutButton.length) {
  717.                let self = this;
  718.                document.addEventListener('pointerdown', (event) => {
  719.                  let target = event.target;
  720.                  let checkoutButton = event.target.closest(this.shopifyDirectCheckoutButton.join(', '));
  721.                  
  722.                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
  723.  
  724.                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
  725.                    if(checkoutForm) {
  726.                        let quantity = 1;
  727.                        let varientInput = checkoutForm.querySelector('input[name="id"]');
  728.                        let quantitySelector = checkoutForm.getAttribute('id');
  729.  
  730.                        if(quantitySelector) {
  731.                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
  732.                          if(quentityInput) {
  733.                              quantity = +quentityInput.value;
  734.                          }
  735.                        }
  736.  
  737.                        if(varientInput) {
  738.                            let variant_id = parseInt(varientInput.value);
  739.  
  740.                            if(variant_id) {
  741.                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
  742.                                if(variant && self.quickViewedItem) {
  743.                                    self.quickViewedItem['variant_id'] = variant_id;
  744.                                    self.quickViewedItem['variant_title'] = variant.title;
  745.                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
  746.                                    self.quickViewedItem['quantity'] = quantity;
  747.    
  748.                                    self.ecommerceDataLayer('add_to_cart', {items: [self.quickViewedItem]});
  749.                                    self.ecommerceDataLayer('begin_checkout', {items: [self.quickViewedItem]});
  750.                                }
  751.                            }
  752.                        }
  753.                    }
  754.  
  755.                  }
  756.                });
  757.            }
  758.            
  759.          }
  760.        }
  761.  
  762.        // select_item events
  763.        selectItemData() {
  764.          
  765.          const self = this;
  766.          const items = this.itemsList;
  767.  
  768.          
  769.  
  770.          // select item on varient change
  771.          document.addEventListener('variant:change', function(event) {            
  772.            const product_id = event.detail.product.id;
  773.            const variant_id = event.detail.variant.id;
  774.            const vendor = event.detail.product.vendor;
  775.            const variant_title = event.detail.variant.public_title;
  776.            const product_title = event.detail.product.title;
  777.            const final_price = event.detail.variant.price;
  778.            const product_type = event.detail.product.type;
  779.  
  780.             const item = {
  781.                product_id: product_id,
  782.                product_title: product_title,
  783.                variant_id: variant_id,
  784.                variant_title: variant_title,
  785.                vendor: vendor,
  786.                final_price: final_price,
  787.                product_type: product_type,
  788.                quantity: 1
  789.             }
  790.            
  791.             self.ecommerceDataLayer('select_item', {items: [item]});
  792.          });
  793.        }
  794.  
  795.        // all ecommerce events
  796.        ecommerceDataLayer(event, data) {
  797.          const self = this;
  798.          dataLayer.push({ 'ecommerce': null });
  799.          const dataLayerData = {
  800.            "event": this.eventPrefix + event,
  801.            'ecommerce': {
  802.               'currency': this.cart.currency,
  803.               'items': data.items.map((item, index) => {
  804.                 const dataLayerItem = {
  805.                    'index': index,
  806.                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
  807.                    'product_id': item.product_id.toString(),
  808.                    'variant_id': item.variant_id.toString(),
  809.                    'item_name': item.product_title,
  810.                    'quantity': item.quantity,
  811.                    'price': +((item.final_price / 100).toFixed(2)),
  812.                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  813.                }
  814.  
  815.                if(item.product_type) {
  816.                  dataLayerItem['item_category'] = item.product_type;
  817.                }
  818.                
  819.                if(item.vendor) {
  820.                  dataLayerItem['item_brand'] = item.vendor;
  821.                }
  822.              
  823.                if(item.variant_title && item.variant_title !== 'Default Title') {
  824.                  dataLayerItem['item_variant'] = item.variant_title;
  825.                }
  826.              
  827.                if(item.sku) {
  828.                  dataLayerItem['sku'] = item.sku;
  829.                }
  830.  
  831.                if(item.item_list_name) {
  832.                  dataLayerItem['item_list_name'] = item.item_list_name;
  833.                }
  834.  
  835.                if(item.item_list_id) {
  836.                  dataLayerItem['item_list_id'] = item.item_list_id.toString()
  837.                }
  838.  
  839.                return dataLayerItem;
  840.              })
  841.            }
  842.          }
  843.  
  844.          if(data.total_price !== undefined) {
  845.            dataLayerData['ecommerce']['value'] =  +((data.total_price / 100).toFixed(2));
  846.          } else {
  847.            dataLayerData['ecommerce']['value'] = +(dataLayerData['ecommerce']['items'].reduce((total, item) => total + (item.price * item.quantity), 0)).toFixed(2);
  848.          }
  849.          
  850.          if(data.item_list_id) {
  851.            dataLayerData['ecommerce']['item_list_id'] = data.item_list_id;
  852.          }
  853.          
  854.          if(data.item_list_name) {
  855.            dataLayerData['ecommerce']['item_list_name'] = data.item_list_name;
  856.          }
  857.  
  858.          if(data.search_term) {
  859.            dataLayerData['search_term'] = data.search_term;
  860.          }
  861.  
  862.          if(self.dataSchema.dynamicRemarketing && self.dataSchema.dynamicRemarketing.show) {
  863.            dataLayer.push({ 'dynamicRemarketing': null });
  864.            dataLayerData['dynamicRemarketing'] = {
  865.                value: dataLayerData.ecommerce.value,
  866.                items: dataLayerData.ecommerce.items.map(item => ({id: item.item_id, google_business_vertical: self.dataSchema.dynamicRemarketing.business_vertical}))
  867.            }
  868.          }
  869.  
  870.          if(!self.dataSchema.ecommerce ||  !self.dataSchema.ecommerce.show) {
  871.            delete dataLayerData['ecommerce'];
  872.          }
  873.  
  874.          dataLayer.push(dataLayerData);
  875.          self.eventConsole(self.eventPrefix + event, dataLayerData);
  876.        }
  877.  
  878.        
  879.        // contact form submit & newsletters signup
  880.        formData() {
  881.          const self = this;
  882.          document.addEventListener('submit', function(event) {
  883.  
  884.            let targetForm = event.target.closest('form[action^="/contact"]');
  885.  
  886.  
  887.            if(targetForm) {
  888.              const formData = {
  889.                form_location: window.location.href,
  890.                form_id: targetForm.getAttribute('id'),
  891.                form_classes: targetForm.getAttribute('class')
  892.              };
  893.                            
  894.              let formType = targetForm.querySelector('input[name="form_type"]');
  895.              let inputs = targetForm.querySelectorAll("input:not([type=hidden]):not([type=submit]), textarea, select");
  896.              
  897.              inputs.forEach(function(input) {
  898.                var inputName = input.name;
  899.                var inputValue = input.value;
  900.                
  901.                if (inputName && inputValue) {
  902.                  var matches = inputName.match(/\[(.*?)\]/);
  903.                  if (matches && matches.length > 1) {
  904.                     var fieldName = matches[1];
  905.                     formData[fieldName] = input.value;
  906.                  }
  907.                }
  908.              });
  909.              
  910.              if(formType && formType.value === 'customer') {
  911.                dataLayer.push({ event: self.eventPrefix + 'newsletter_signup', ...formData});
  912.                self.eventConsole(self.eventPrefix + 'newsletter_signup', { event: self.eventPrefix + 'newsletter_signup', ...formData});
  913.  
  914.              } else if(formType && formType.value === 'contact') {
  915.                dataLayer.push({ event: self.eventPrefix + 'contact_form_submit', ...formData});
  916.                self.eventConsole(self.eventPrefix + 'contact_form_submit', { event: self.eventPrefix + 'contact_form_submit', ...formData});
  917.              }
  918.            }
  919.          });
  920.  
  921.        }
  922.  
  923.        // phone_number_click event
  924.        phoneClickData() {
  925.          const self = this;
  926.          document.addEventListener('click', function(event) {
  927.            let target = event.target.closest('a[href^="tel:"]');
  928.            if(target) {
  929.              let phone_number = target.getAttribute('href').replace('tel:', '');
  930.              let eventData = {
  931.                event: self.eventPrefix + 'phone_number_click',
  932.                page_location: window.location.href,
  933.                link_classes: target.getAttribute('class'),
  934.                link_id: target.getAttribute('id'),
  935.                phone_number
  936.              }
  937.  
  938.              dataLayer.push(eventData);
  939.              this.eventConsole(self.eventPrefix + 'phone_number_click', eventData);
  940.            }
  941.          });
  942.        }
  943.  
  944.        // email_click event
  945.        emailClickData() {
  946.          const self = this;
  947.          document.addEventListener('click', function(event) {
  948.            let target = event.target.closest('a[href^="mailto:"]');
  949.            if(target) {
  950.              let email_address = target.getAttribute('href').replace('mailto:', '');
  951.              let eventData = {
  952.                event: self.eventPrefix + 'email_click',
  953.                page_location: window.location.href,
  954.                link_classes: target.getAttribute('class'),
  955.                link_id: target.getAttribute('id'),
  956.                email_address
  957.              }
  958.  
  959.              dataLayer.push(eventData);
  960.              this.eventConsole(self.eventPrefix + 'email_click', eventData);
  961.            }
  962.          });
  963.        }
  964.  
  965.        //login register
  966.        loginRegisterData() {
  967.          
  968.          const self = this;
  969.          let isTrackedLogin = false;
  970.          let isTrackedRegister = false;
  971.          
  972.          if(window.location.href.includes('/account/login')) {
  973.            document.addEventListener('submit', function(e) {
  974.              const loginForm = e.target.closest('[action="/account/login"]');
  975.              if(loginForm && !isTrackedLogin) {
  976.                  const eventData = {
  977.                    event: self.eventPrefix + 'login'
  978.                  }
  979.                  isTrackedLogin = true;
  980.                  dataLayer.push(eventData);
  981.                  self.eventConsole(self.eventPrefix + 'login', eventData);
  982.              }
  983.            });
  984.          }
  985.  
  986.          if(window.location.href.includes('/account/register')) {
  987.            document.addEventListener('submit', function(e) {
  988.              const registerForm = e.target.closest('[action="/account"]');
  989.              if(registerForm && !isTrackedRegister) {
  990.                  const eventData = {
  991.                    event: self.eventPrefix + 'sign_up'
  992.                  }
  993.                
  994.                  isTrackedRegister = true;
  995.                  dataLayer.push(eventData);
  996.                  self.eventConsole(self.eventPrefix + 'sign_up', eventData);
  997.              }
  998.            });
  999.          }
  1000.        }
  1001.      }
  1002.      // end Ultimate_Shopify_DataLayer
  1003.  
  1004.      document.addEventListener('DOMContentLoaded', function() {
  1005.        try{
  1006.          new Ultimate_Shopify_DataLayer();
  1007.        }catch(error) {
  1008.          console.log(error);
  1009.        }
  1010.      });
  1011.    
  1012.  })();
  1013. </script>
  1014.  
  1015.    <!-- Shopify CAPTCHA – Only Load on Checkout/Login Pages -->
  1016.    
  1017.  
  1018.  
  1019.  
  1020.    
  1021.   <!-- Page Title -->
  1022.    <title>
  1023.      Menstrual Disc | Eco-Friendly Period Care Australia
  1024. </title>
  1025.    <!-- End Page Title -->
  1026.  
  1027. <!-- page description -->
  1028.    
  1029.      <meta name="description" content="Menstrual Disc | Eco-Friendly Period Care Australia. Medical-grade silicone, safe for IUD users, and provides up to 12 hours of leak-free protection.">
  1030.    
  1031.    <!-- end page description -->
  1032.    
  1033.  
  1034.    <!-- Meta tags for SEO -->
  1035.    <meta charset="utf-8">
  1036.    <meta http-equiv="X-UA-Compatible" content="IE=edge">
  1037.    <meta name="facebook-domain-verification" content="m27enu291n4fgbvooj1p4v3rgjgibx">
  1038.    <meta name="viewport" content="width=device-width, initial-scale=1">
  1039.    <meta name="keywords" content="menstrual disc, reusable menstrual disc, menstrual cup, period disc, menstrual cup alternative, menstrual disc reviews, menstrual disc benefits, menstrual disc insertion, menstrual disc removal, menstrual disc vs cup, menstrual disc brands, menstrual disc comfort, menstrual disc capacity, menstrual disc for heavy flow, menstrual disc cleaning, menstrual disc with IUD, menstrual disc during sex, menstrual disc FAQ, menstrual disc instructions, menstrual disc comparison, menstrual disc sizes, menstrual disc eco-friendly, menstrual disc sustainable">
  1040.    <meta name="author" content="my mimi">
  1041.    <meta name="robots" content="index,follow">
  1042.    <meta name="theme-color" content="#FFFFFF">
  1043.    <link rel="canonical" href="https://mymimi.com.au/">
  1044.    <link rel="preconnect" href="https://cdn.shopify.com" crossorigin>
  1045.    <!-- Meta tags for SEO -->
  1046.  
  1047.  
  1048.  
  1049.    
  1050. <!-- noindex collab, retail register, and collections -->
  1051.  
  1052. <!-- end noindex collab, retail register, and collections -->
  1053.  
  1054.  
  1055.    
  1056.  
  1057.    <!-- Favicon --><link rel="icon" type="image/png" href="//mymimi.com.au/cdn/shop/files/logo.png?crop=center&height=32&v=1716105592&width=32"><!-- End Favicon -->
  1058.  
  1059. <meta property="og:site_name" content="my mimi">
  1060. <meta property="og:url" content="https://mymimi.com.au/">
  1061. <meta property="og:title" content="Menstrual Disc | Eco-Friendly Period Care Australia">
  1062. <meta property="og:type" content="website">
  1063. <meta property="og:description" content="Menstrual Disc | Eco-Friendly Period Care Australia. Medical-grade silicone, safe for IUD users, and provides up to 12 hours of leak-free protection."><meta property="og:image" content="http://mymimi.com.au/cdn/shop/files/mymimi-social-sharing-logo.jpg?v=1716105444">
  1064.  <meta property="og:image:secure_url" content="https://mymimi.com.au/cdn/shop/files/mymimi-social-sharing-logo.jpg?v=1716105444">
  1065.  <meta property="og:image:width" content="1200">
  1066.  <meta property="og:image:height" content="628"><meta name="twitter:card" content="summary_large_image">
  1067. <meta name="twitter:title" content="Menstrual Disc | Eco-Friendly Period Care Australia">
  1068. <meta name="twitter:description" content="Menstrual Disc | Eco-Friendly Period Care Australia. Medical-grade silicone, safe for IUD users, and provides up to 12 hours of leak-free protection.">
  1069.  
  1070. <style data-shopify>
  1071.  @font-face {
  1072.  font-family: Archivo;
  1073.  font-weight: 400;
  1074.  font-style: normal;
  1075.  font-display: swap;
  1076.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n4.abb5ec97705c33fe369ef678fc93b9cf87658330.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=f2fed0a2c0e60a4e5870e0f4da6b4dbd69f2c7764ec8f1d250b0b9009cce025d") format("woff2"),
  1077.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_n4.0ae8e008abb455fbd654c11c5b30dc47b6849133.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=0261a86ea6fbb309a018e78d64aafe77a36cbb7357f53e2ecd9ed2dfc0cc34e6") format("woff");
  1078. }
  1079.  
  1080.  @font-face {
  1081.  font-family: Archivo;
  1082.  font-weight: 400;
  1083.  font-style: italic;
  1084.  font-display: swap;
  1085.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_i4.a95feba2fc444cfedf1a05723e49fbee7d12512b.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=2a63580f1c8295a200b1afe2d9d1581fe926651eee25db7d98ae3ad75e991a05") format("woff2"),
  1086.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_i4.9734cbbe4db53e64fe62bb6fe5f4ef00f6bc0c85.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=0b84bd34d151fe4b857ad13eff80f2a46a9e98d18ce0f28a786b605803353c12") format("woff");
  1087. }
  1088.  
  1089.  @font-face {
  1090.  font-family: Archivo;
  1091.  font-weight: 500;
  1092.  font-style: normal;
  1093.  font-display: swap;
  1094.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
  1095.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
  1096. }
  1097.  
  1098.  @font-face {
  1099.  font-family: Archivo;
  1100.  font-weight: 500;
  1101.  font-style: italic;
  1102.  font-display: swap;
  1103.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_i5.be59f179235426372fab88c7b5cb876b2d561fa8.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=67b4ebee04886b17eabcfe4c2246336060320803f8d49d181e7eb1cda3c2191e") format("woff2"),
  1104.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_i5.b88604f0bf28b524365a590cee678e57ce714f16.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=e93baf8048c0f9473e56778e5d273440719a19806862093d9f68ddcf226a4204") format("woff");
  1105. }
  1106.  
  1107.  @font-face {
  1108.  font-family: Archivo;
  1109.  font-weight: 700;
  1110.  font-style: normal;
  1111.  font-display: swap;
  1112.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n7.6f363ab30b12ea00d5e6243ed0e977a11393a3ad.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=d2a39d0e053026139fb498b1ba743a71f9640aef47154009c2d0b76500fefaed") format("woff2"),
  1113.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_n7.846b40a5735bbd149ad44b083a19c3e5d88d8fab.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=2d59eafea993deba9d72d13f5f2890f3c2d4ec149646b9e353c80fb0e05528df") format("woff");
  1114. }
  1115.  
  1116.  @font-face {
  1117.  font-family: Archivo;
  1118.  font-weight: 700;
  1119.  font-style: italic;
  1120.  font-display: swap;
  1121.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_i7.f132b18f71dd794aabbdb5631a7514bf5d5fa150.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=d624984148a6fcf013b747a4b66b269001508f0afce8d53c8ce05eb91baff386") format("woff2"),
  1122.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_i7.030187938ee569c3b9c961b486ffa4c07d5a5205.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=755eef3cc7d1c2bc9f774dbf2711c0ec6757738b3695a2008a01af84c559ca32") format("woff");
  1123. }
  1124.  
  1125.  @font-face {
  1126.  font-family: Archivo;
  1127.  font-weight: 500;
  1128.  font-style: normal;
  1129.  font-display: swap;
  1130.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
  1131.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
  1132. }
  1133.  
  1134.  @font-face {
  1135.  font-family: Archivo;
  1136.  font-weight: 500;
  1137.  font-style: normal;
  1138.  font-display: swap;
  1139.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
  1140.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
  1141. }
  1142.  
  1143.  @font-face {
  1144.  font-family: Archivo;
  1145.  font-weight: 500;
  1146.  font-style: italic;
  1147.  font-display: swap;
  1148.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_i5.be59f179235426372fab88c7b5cb876b2d561fa8.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=67b4ebee04886b17eabcfe4c2246336060320803f8d49d181e7eb1cda3c2191e") format("woff2"),
  1149.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_i5.b88604f0bf28b524365a590cee678e57ce714f16.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=e93baf8048c0f9473e56778e5d273440719a19806862093d9f68ddcf226a4204") format("woff");
  1150. }
  1151.  
  1152.  @font-face {
  1153.  font-family: Archivo;
  1154.  font-weight: 500;
  1155.  font-style: normal;
  1156.  font-display: swap;
  1157.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
  1158.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
  1159. }
  1160. @font-face {
  1161.  font-family: Archivo;
  1162.  font-weight: 500;
  1163.  font-style: normal;
  1164.  font-display: swap;
  1165.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
  1166.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
  1167. }
  1168. @font-face {
  1169.  font-family: Archivo;
  1170.  font-weight: 500;
  1171.  font-style: normal;
  1172.  font-display: swap;
  1173.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
  1174.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
  1175. }
  1176. @font-face {
  1177.  font-family: Archivo;
  1178.  font-weight: 500;
  1179.  font-style: normal;
  1180.  font-display: swap;
  1181.  src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
  1182.       url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
  1183. }
  1184.  
  1185.  
  1186.  
  1187.    :root,
  1188. .color-scheme-1 {
  1189.      --color-background: 253,251,247;
  1190.      --color-secondary-background: 236,232,219;
  1191.      --color-primary: 40,56,133;
  1192.      --color-text-heading: 40,56,133;
  1193.      --color-foreground: 40,56,133;
  1194.      --color-border: 240,202,188;
  1195.      --color-button: 240,202,188;
  1196.      --color-button-text: 40,56,133;
  1197.      --color-secondary-button: 40,56,133;
  1198.      --color-secondary-button-border: 255,255,255;
  1199.      --color-secondary-button-text: 255,255,255;
  1200.      --color-button-hover-background: 240,202,188;
  1201.      --color-button-hover-text: 40,56,133;
  1202.      --color-button-before: #ffffff;
  1203.      --color-field: 255,255,255;
  1204.      --color-field-text: 0,0,0;
  1205.      --color-link: 40,56,133;
  1206.      --color-link-hover: 40,56,133;
  1207.      --color-product-price-sale: 214,58,47;
  1208.      --color-foreground-lighten-60: #7d86b3;
  1209.      --color-foreground-lighten-19: #d5d6e1;
  1210.    }
  1211.    @media (min-width: 768px) {
  1212.      body .desktop-color-scheme-1 {
  1213.        --color-background: 253,251,247;
  1214.      --color-secondary-background: 236,232,219;
  1215.      --color-primary: 40,56,133;
  1216.      --color-text-heading: 40,56,133;
  1217.      --color-foreground: 40,56,133;
  1218.      --color-border: 240,202,188;
  1219.      --color-button: 240,202,188;
  1220.      --color-button-text: 40,56,133;
  1221.      --color-secondary-button: 40,56,133;
  1222.      --color-secondary-button-border: 255,255,255;
  1223.      --color-secondary-button-text: 255,255,255;
  1224.      --color-button-hover-background: 240,202,188;
  1225.      --color-button-hover-text: 40,56,133;
  1226.      --color-button-before: #ffffff;
  1227.      --color-field: 255,255,255;
  1228.      --color-field-text: 0,0,0;
  1229.      --color-link: 40,56,133;
  1230.      --color-link-hover: 40,56,133;
  1231.      --color-product-price-sale: 214,58,47;
  1232.      --color-foreground-lighten-60: #7d86b3;
  1233.      --color-foreground-lighten-19: #d5d6e1;
  1234.        color: rgb(var(--color-foreground));
  1235.        background-color: rgb(var(--color-background));
  1236.      }
  1237.    }
  1238.    @media (max-width: 767px) {
  1239.      body .mobile-color-scheme-1 {
  1240.        --color-background: 253,251,247;
  1241.      --color-secondary-background: 236,232,219;
  1242.      --color-primary: 40,56,133;
  1243.      --color-text-heading: 40,56,133;
  1244.      --color-foreground: 40,56,133;
  1245.      --color-border: 240,202,188;
  1246.      --color-button: 240,202,188;
  1247.      --color-button-text: 40,56,133;
  1248.      --color-secondary-button: 40,56,133;
  1249.      --color-secondary-button-border: 255,255,255;
  1250.      --color-secondary-button-text: 255,255,255;
  1251.      --color-button-hover-background: 240,202,188;
  1252.      --color-button-hover-text: 40,56,133;
  1253.      --color-button-before: #ffffff;
  1254.      --color-field: 255,255,255;
  1255.      --color-field-text: 0,0,0;
  1256.      --color-link: 40,56,133;
  1257.      --color-link-hover: 40,56,133;
  1258.      --color-product-price-sale: 214,58,47;
  1259.      --color-foreground-lighten-60: #7d86b3;
  1260.      --color-foreground-lighten-19: #d5d6e1;
  1261.        color: rgb(var(--color-foreground));
  1262.        background-color: rgb(var(--color-background));
  1263.      }
  1264.    }
  1265.  
  1266.    
  1267. .color-scheme-2 {
  1268.      --color-background: 240,202,188;
  1269.      --color-secondary-background: 243,238,234;
  1270.      --color-primary: 255,255,255;
  1271.      --color-text-heading: 40,56,133;
  1272.      --color-foreground: 40,56,133;
  1273.      --color-border: 240,202,188;
  1274.      --color-button: 255,255,255;
  1275.      --color-button-text: 255,255,255;
  1276.      --color-secondary-button: 255,255,255;
  1277.      --color-secondary-button-border: 230,230,230;
  1278.      --color-secondary-button-text: 40,56,133;
  1279.      --color-button-hover-background: 255,255,255;
  1280.      --color-button-hover-text: 255,255,255;
  1281.      --color-button-before: #ffffff;
  1282.      --color-field: 255,255,255;
  1283.      --color-field-text: 0,0,0;
  1284.      --color-link: 40,56,133;
  1285.      --color-link-hover: 40,56,133;
  1286.      --color-product-price-sale: 255,255,255;
  1287.      --color-foreground-lighten-60: #78729b;
  1288.      --color-foreground-lighten-19: #caaeb2;
  1289.    }
  1290.    @media (min-width: 768px) {
  1291.      body .desktop-color-scheme-2 {
  1292.        --color-background: 240,202,188;
  1293.      --color-secondary-background: 243,238,234;
  1294.      --color-primary: 255,255,255;
  1295.      --color-text-heading: 40,56,133;
  1296.      --color-foreground: 40,56,133;
  1297.      --color-border: 240,202,188;
  1298.      --color-button: 255,255,255;
  1299.      --color-button-text: 255,255,255;
  1300.      --color-secondary-button: 255,255,255;
  1301.      --color-secondary-button-border: 230,230,230;
  1302.      --color-secondary-button-text: 40,56,133;
  1303.      --color-button-hover-background: 255,255,255;
  1304.      --color-button-hover-text: 255,255,255;
  1305.      --color-button-before: #ffffff;
  1306.      --color-field: 255,255,255;
  1307.      --color-field-text: 0,0,0;
  1308.      --color-link: 40,56,133;
  1309.      --color-link-hover: 40,56,133;
  1310.      --color-product-price-sale: 255,255,255;
  1311.      --color-foreground-lighten-60: #78729b;
  1312.      --color-foreground-lighten-19: #caaeb2;
  1313.        color: rgb(var(--color-foreground));
  1314.        background-color: rgb(var(--color-background));
  1315.      }
  1316.    }
  1317.    @media (max-width: 767px) {
  1318.      body .mobile-color-scheme-2 {
  1319.        --color-background: 240,202,188;
  1320.      --color-secondary-background: 243,238,234;
  1321.      --color-primary: 255,255,255;
  1322.      --color-text-heading: 40,56,133;
  1323.      --color-foreground: 40,56,133;
  1324.      --color-border: 240,202,188;
  1325.      --color-button: 255,255,255;
  1326.      --color-button-text: 255,255,255;
  1327.      --color-secondary-button: 255,255,255;
  1328.      --color-secondary-button-border: 230,230,230;
  1329.      --color-secondary-button-text: 40,56,133;
  1330.      --color-button-hover-background: 255,255,255;
  1331.      --color-button-hover-text: 255,255,255;
  1332.      --color-button-before: #ffffff;
  1333.      --color-field: 255,255,255;
  1334.      --color-field-text: 0,0,0;
  1335.      --color-link: 40,56,133;
  1336.      --color-link-hover: 40,56,133;
  1337.      --color-product-price-sale: 255,255,255;
  1338.      --color-foreground-lighten-60: #78729b;
  1339.      --color-foreground-lighten-19: #caaeb2;
  1340.        color: rgb(var(--color-foreground));
  1341.        background-color: rgb(var(--color-background));
  1342.      }
  1343.    }
  1344.  
  1345.    
  1346. .color-scheme-3 {
  1347.      --color-background: 236,232,219;
  1348.      --color-secondary-background: 255,255,255;
  1349.      --color-primary: 85,155,96;
  1350.      --color-text-heading: 236,232,219;
  1351.      --color-foreground: 236,232,219;
  1352.      --color-border: 230,230,230;
  1353.      --color-button: 0,0,0;
  1354.      --color-button-text: 255,255,255;
  1355.      --color-secondary-button: 255,255,255;
  1356.      --color-secondary-button-border: 255,255,255;
  1357.      --color-secondary-button-text: 0,0,0;
  1358.      --color-button-hover-background: 0,0,0;
  1359.      --color-button-hover-text: 255,255,255;
  1360.      --color-button-before: #333333;
  1361.      --color-field: 255,255,255;
  1362.      --color-field-text: 0,0,0;
  1363.      --color-link: 236,232,219;
  1364.      --color-link-hover: 236,232,219;
  1365.      --color-product-price-sale: 214,58,47;
  1366.      --color-foreground-lighten-60: #ece8db;
  1367.      --color-foreground-lighten-19: #ece8db;
  1368.    }
  1369.    @media (min-width: 768px) {
  1370.      body .desktop-color-scheme-3 {
  1371.        --color-background: 236,232,219;
  1372.      --color-secondary-background: 255,255,255;
  1373.      --color-primary: 85,155,96;
  1374.      --color-text-heading: 236,232,219;
  1375.      --color-foreground: 236,232,219;
  1376.      --color-border: 230,230,230;
  1377.      --color-button: 0,0,0;
  1378.      --color-button-text: 255,255,255;
  1379.      --color-secondary-button: 255,255,255;
  1380.      --color-secondary-button-border: 255,255,255;
  1381.      --color-secondary-button-text: 0,0,0;
  1382.      --color-button-hover-background: 0,0,0;
  1383.      --color-button-hover-text: 255,255,255;
  1384.      --color-button-before: #333333;
  1385.      --color-field: 255,255,255;
  1386.      --color-field-text: 0,0,0;
  1387.      --color-link: 236,232,219;
  1388.      --color-link-hover: 236,232,219;
  1389.      --color-product-price-sale: 214,58,47;
  1390.      --color-foreground-lighten-60: #ece8db;
  1391.      --color-foreground-lighten-19: #ece8db;
  1392.        color: rgb(var(--color-foreground));
  1393.        background-color: rgb(var(--color-background));
  1394.      }
  1395.    }
  1396.    @media (max-width: 767px) {
  1397.      body .mobile-color-scheme-3 {
  1398.        --color-background: 236,232,219;
  1399.      --color-secondary-background: 255,255,255;
  1400.      --color-primary: 85,155,96;
  1401.      --color-text-heading: 236,232,219;
  1402.      --color-foreground: 236,232,219;
  1403.      --color-border: 230,230,230;
  1404.      --color-button: 0,0,0;
  1405.      --color-button-text: 255,255,255;
  1406.      --color-secondary-button: 255,255,255;
  1407.      --color-secondary-button-border: 255,255,255;
  1408.      --color-secondary-button-text: 0,0,0;
  1409.      --color-button-hover-background: 0,0,0;
  1410.      --color-button-hover-text: 255,255,255;
  1411.      --color-button-before: #333333;
  1412.      --color-field: 255,255,255;
  1413.      --color-field-text: 0,0,0;
  1414.      --color-link: 236,232,219;
  1415.      --color-link-hover: 236,232,219;
  1416.      --color-product-price-sale: 214,58,47;
  1417.      --color-foreground-lighten-60: #ece8db;
  1418.      --color-foreground-lighten-19: #ece8db;
  1419.        color: rgb(var(--color-foreground));
  1420.        background-color: rgb(var(--color-background));
  1421.      }
  1422.    }
  1423.  
  1424.    
  1425. .color-scheme-4 {
  1426.      --color-background: 40,56,133;
  1427.      --color-secondary-background: 240,202,188;
  1428.      --color-primary: 40,56,133;
  1429.      --color-text-heading: 40,56,133;
  1430.      --color-foreground: 40,56,133;
  1431.      --color-border: 240,202,188;
  1432.      --color-button: 255,255,255;
  1433.      --color-button-text: 255,255,255;
  1434.      --color-secondary-button: 240,202,188;
  1435.      --color-secondary-button-border: 255,255,255;
  1436.      --color-secondary-button-text: 255,255,255;
  1437.      --color-button-hover-background: 255,255,255;
  1438.      --color-button-hover-text: 255,255,255;
  1439.      --color-button-before: #ffffff;
  1440.      --color-field: 255,255,255;
  1441.      --color-field-text: 0,0,0;
  1442.      --color-link: 40,56,133;
  1443.      --color-link-hover: 40,56,133;
  1444.      --color-product-price-sale: 214,58,47;
  1445.      --color-foreground-lighten-60: #283885;
  1446.      --color-foreground-lighten-19: #283885;
  1447.    }
  1448.    @media (min-width: 768px) {
  1449.      body .desktop-color-scheme-4 {
  1450.        --color-background: 40,56,133;
  1451.      --color-secondary-background: 240,202,188;
  1452.      --color-primary: 40,56,133;
  1453.      --color-text-heading: 40,56,133;
  1454.      --color-foreground: 40,56,133;
  1455.      --color-border: 240,202,188;
  1456.      --color-button: 255,255,255;
  1457.      --color-button-text: 255,255,255;
  1458.      --color-secondary-button: 240,202,188;
  1459.      --color-secondary-button-border: 255,255,255;
  1460.      --color-secondary-button-text: 255,255,255;
  1461.      --color-button-hover-background: 255,255,255;
  1462.      --color-button-hover-text: 255,255,255;
  1463.      --color-button-before: #ffffff;
  1464.      --color-field: 255,255,255;
  1465.      --color-field-text: 0,0,0;
  1466.      --color-link: 40,56,133;
  1467.      --color-link-hover: 40,56,133;
  1468.      --color-product-price-sale: 214,58,47;
  1469.      --color-foreground-lighten-60: #283885;
  1470.      --color-foreground-lighten-19: #283885;
  1471.        color: rgb(var(--color-foreground));
  1472.        background-color: rgb(var(--color-background));
  1473.      }
  1474.    }
  1475.    @media (max-width: 767px) {
  1476.      body .mobile-color-scheme-4 {
  1477.        --color-background: 40,56,133;
  1478.      --color-secondary-background: 240,202,188;
  1479.      --color-primary: 40,56,133;
  1480.      --color-text-heading: 40,56,133;
  1481.      --color-foreground: 40,56,133;
  1482.      --color-border: 240,202,188;
  1483.      --color-button: 255,255,255;
  1484.      --color-button-text: 255,255,255;
  1485.      --color-secondary-button: 240,202,188;
  1486.      --color-secondary-button-border: 255,255,255;
  1487.      --color-secondary-button-text: 255,255,255;
  1488.      --color-button-hover-background: 255,255,255;
  1489.      --color-button-hover-text: 255,255,255;
  1490.      --color-button-before: #ffffff;
  1491.      --color-field: 255,255,255;
  1492.      --color-field-text: 0,0,0;
  1493.      --color-link: 40,56,133;
  1494.      --color-link-hover: 40,56,133;
  1495.      --color-product-price-sale: 214,58,47;
  1496.      --color-foreground-lighten-60: #283885;
  1497.      --color-foreground-lighten-19: #283885;
  1498.        color: rgb(var(--color-foreground));
  1499.        background-color: rgb(var(--color-background));
  1500.      }
  1501.    }
  1502.  
  1503.    
  1504. .color-scheme-inverse {
  1505.      --color-background: 40,56,133;
  1506.      --color-secondary-background: 240,202,188;
  1507.      --color-primary: 214,58,47;
  1508.      --color-text-heading: 255,255,255;
  1509.      --color-foreground: 255,255,255;
  1510.      --color-border: 255,255,255;
  1511.      --color-button: 240,202,188;
  1512.      --color-button-text: 40,56,133;
  1513.      --color-secondary-button: 255,255,255;
  1514.      --color-secondary-button-border: 230,230,230;
  1515.      --color-secondary-button-text: 40,56,133;
  1516.      --color-button-hover-background: 0,0,0;
  1517.      --color-button-hover-text: 255,255,255;
  1518.      --color-button-before: #333333;
  1519.      --color-field: 255,255,255;
  1520.      --color-field-text: 0,0,0;
  1521.      --color-link: 255,255,255;
  1522.      --color-link-hover: 255,255,255;
  1523.      --color-product-price-sale: 214,58,47;
  1524.      --color-foreground-lighten-60: #a9afce;
  1525.      --color-foreground-lighten-19: #515e9c;
  1526.    }
  1527.    @media (min-width: 768px) {
  1528.      body .desktop-color-scheme-inverse {
  1529.        --color-background: 40,56,133;
  1530.      --color-secondary-background: 240,202,188;
  1531.      --color-primary: 214,58,47;
  1532.      --color-text-heading: 255,255,255;
  1533.      --color-foreground: 255,255,255;
  1534.      --color-border: 255,255,255;
  1535.      --color-button: 240,202,188;
  1536.      --color-button-text: 40,56,133;
  1537.      --color-secondary-button: 255,255,255;
  1538.      --color-secondary-button-border: 230,230,230;
  1539.      --color-secondary-button-text: 40,56,133;
  1540.      --color-button-hover-background: 0,0,0;
  1541.      --color-button-hover-text: 255,255,255;
  1542.      --color-button-before: #333333;
  1543.      --color-field: 255,255,255;
  1544.      --color-field-text: 0,0,0;
  1545.      --color-link: 255,255,255;
  1546.      --color-link-hover: 255,255,255;
  1547.      --color-product-price-sale: 214,58,47;
  1548.      --color-foreground-lighten-60: #a9afce;
  1549.      --color-foreground-lighten-19: #515e9c;
  1550.        color: rgb(var(--color-foreground));
  1551.        background-color: rgb(var(--color-background));
  1552.      }
  1553.    }
  1554.    @media (max-width: 767px) {
  1555.      body .mobile-color-scheme-inverse {
  1556.        --color-background: 40,56,133;
  1557.      --color-secondary-background: 240,202,188;
  1558.      --color-primary: 214,58,47;
  1559.      --color-text-heading: 255,255,255;
  1560.      --color-foreground: 255,255,255;
  1561.      --color-border: 255,255,255;
  1562.      --color-button: 240,202,188;
  1563.      --color-button-text: 40,56,133;
  1564.      --color-secondary-button: 255,255,255;
  1565.      --color-secondary-button-border: 230,230,230;
  1566.      --color-secondary-button-text: 40,56,133;
  1567.      --color-button-hover-background: 0,0,0;
  1568.      --color-button-hover-text: 255,255,255;
  1569.      --color-button-before: #333333;
  1570.      --color-field: 255,255,255;
  1571.      --color-field-text: 0,0,0;
  1572.      --color-link: 255,255,255;
  1573.      --color-link-hover: 255,255,255;
  1574.      --color-product-price-sale: 214,58,47;
  1575.      --color-foreground-lighten-60: #a9afce;
  1576.      --color-foreground-lighten-19: #515e9c;
  1577.        color: rgb(var(--color-foreground));
  1578.        background-color: rgb(var(--color-background));
  1579.      }
  1580.    }
  1581.  
  1582.    
  1583. .color-scheme-6 {
  1584.      --color-background: 255,255,255;
  1585.      --color-secondary-background: 243,238,234;
  1586.      --color-primary: 255,240,245;
  1587.      --color-text-heading: 0,0,0;
  1588.      --color-foreground: 0,0,0;
  1589.      --color-border: 230,230,230;
  1590.      --color-button: 255,192,203;
  1591.      --color-button-text: 255,255,255;
  1592.      --color-secondary-button: 240,128,128;
  1593.      --color-secondary-button-border: 230,230,230;
  1594.      --color-secondary-button-text: 0,0,0;
  1595.      --color-button-hover-background: 0,0,0;
  1596.      --color-button-hover-text: 255,255,255;
  1597.      --color-button-before: #333333;
  1598.      --color-field: 255,255,255;
  1599.      --color-field-text: 0,0,0;
  1600.      --color-link: 0,0,0;
  1601.      --color-link-hover: 0,0,0;
  1602.      --color-product-price-sale: 214,58,47;
  1603.      --color-foreground-lighten-60: #666666;
  1604.      --color-foreground-lighten-19: #cfcfcf;
  1605.    }
  1606.    @media (min-width: 768px) {
  1607.      body .desktop-color-scheme-6 {
  1608.        --color-background: 255,255,255;
  1609.      --color-secondary-background: 243,238,234;
  1610.      --color-primary: 255,240,245;
  1611.      --color-text-heading: 0,0,0;
  1612.      --color-foreground: 0,0,0;
  1613.      --color-border: 230,230,230;
  1614.      --color-button: 255,192,203;
  1615.      --color-button-text: 255,255,255;
  1616.      --color-secondary-button: 240,128,128;
  1617.      --color-secondary-button-border: 230,230,230;
  1618.      --color-secondary-button-text: 0,0,0;
  1619.      --color-button-hover-background: 0,0,0;
  1620.      --color-button-hover-text: 255,255,255;
  1621.      --color-button-before: #333333;
  1622.      --color-field: 255,255,255;
  1623.      --color-field-text: 0,0,0;
  1624.      --color-link: 0,0,0;
  1625.      --color-link-hover: 0,0,0;
  1626.      --color-product-price-sale: 214,58,47;
  1627.      --color-foreground-lighten-60: #666666;
  1628.      --color-foreground-lighten-19: #cfcfcf;
  1629.        color: rgb(var(--color-foreground));
  1630.        background-color: rgb(var(--color-background));
  1631.      }
  1632.    }
  1633.    @media (max-width: 767px) {
  1634.      body .mobile-color-scheme-6 {
  1635.        --color-background: 255,255,255;
  1636.      --color-secondary-background: 243,238,234;
  1637.      --color-primary: 255,240,245;
  1638.      --color-text-heading: 0,0,0;
  1639.      --color-foreground: 0,0,0;
  1640.      --color-border: 230,230,230;
  1641.      --color-button: 255,192,203;
  1642.      --color-button-text: 255,255,255;
  1643.      --color-secondary-button: 240,128,128;
  1644.      --color-secondary-button-border: 230,230,230;
  1645.      --color-secondary-button-text: 0,0,0;
  1646.      --color-button-hover-background: 0,0,0;
  1647.      --color-button-hover-text: 255,255,255;
  1648.      --color-button-before: #333333;
  1649.      --color-field: 255,255,255;
  1650.      --color-field-text: 0,0,0;
  1651.      --color-link: 0,0,0;
  1652.      --color-link-hover: 0,0,0;
  1653.      --color-product-price-sale: 214,58,47;
  1654.      --color-foreground-lighten-60: #666666;
  1655.      --color-foreground-lighten-19: #cfcfcf;
  1656.        color: rgb(var(--color-foreground));
  1657.        background-color: rgb(var(--color-background));
  1658.      }
  1659.    }
  1660.  
  1661.    
  1662. .color-scheme-7 {
  1663.      --color-background: 236,232,219;
  1664.      --color-secondary-background: 233,233,233;
  1665.      --color-primary: 214,58,47;
  1666.      --color-text-heading: 0,0,0;
  1667.      --color-foreground: 0,0,0;
  1668.      --color-border: 189,186,175;
  1669.      --color-button: 0,0,0;
  1670.      --color-button-text: 255,255,255;
  1671.      --color-secondary-button: 233,233,233;
  1672.      --color-secondary-button-border: 195,192,181;
  1673.      --color-secondary-button-text: 0,0,0;
  1674.      --color-button-hover-background: 0,0,0;
  1675.      --color-button-hover-text: 255,255,255;
  1676.      --color-button-before: #333333;
  1677.      --color-field: 245,245,245;
  1678.      --color-field-text: 0,0,0;
  1679.      --color-link: 0,0,0;
  1680.      --color-link-hover: 0,0,0;
  1681.      --color-product-price-sale: 214,58,47;
  1682.      --color-foreground-lighten-60: #5e5d58;
  1683.      --color-foreground-lighten-19: #bfbcb1;
  1684.    }
  1685.    @media (min-width: 768px) {
  1686.      body .desktop-color-scheme-7 {
  1687.        --color-background: 236,232,219;
  1688.      --color-secondary-background: 233,233,233;
  1689.      --color-primary: 214,58,47;
  1690.      --color-text-heading: 0,0,0;
  1691.      --color-foreground: 0,0,0;
  1692.      --color-border: 189,186,175;
  1693.      --color-button: 0,0,0;
  1694.      --color-button-text: 255,255,255;
  1695.      --color-secondary-button: 233,233,233;
  1696.      --color-secondary-button-border: 195,192,181;
  1697.      --color-secondary-button-text: 0,0,0;
  1698.      --color-button-hover-background: 0,0,0;
  1699.      --color-button-hover-text: 255,255,255;
  1700.      --color-button-before: #333333;
  1701.      --color-field: 245,245,245;
  1702.      --color-field-text: 0,0,0;
  1703.      --color-link: 0,0,0;
  1704.      --color-link-hover: 0,0,0;
  1705.      --color-product-price-sale: 214,58,47;
  1706.      --color-foreground-lighten-60: #5e5d58;
  1707.      --color-foreground-lighten-19: #bfbcb1;
  1708.        color: rgb(var(--color-foreground));
  1709.        background-color: rgb(var(--color-background));
  1710.      }
  1711.    }
  1712.    @media (max-width: 767px) {
  1713.      body .mobile-color-scheme-7 {
  1714.        --color-background: 236,232,219;
  1715.      --color-secondary-background: 233,233,233;
  1716.      --color-primary: 214,58,47;
  1717.      --color-text-heading: 0,0,0;
  1718.      --color-foreground: 0,0,0;
  1719.      --color-border: 189,186,175;
  1720.      --color-button: 0,0,0;
  1721.      --color-button-text: 255,255,255;
  1722.      --color-secondary-button: 233,233,233;
  1723.      --color-secondary-button-border: 195,192,181;
  1724.      --color-secondary-button-text: 0,0,0;
  1725.      --color-button-hover-background: 0,0,0;
  1726.      --color-button-hover-text: 255,255,255;
  1727.      --color-button-before: #333333;
  1728.      --color-field: 245,245,245;
  1729.      --color-field-text: 0,0,0;
  1730.      --color-link: 0,0,0;
  1731.      --color-link-hover: 0,0,0;
  1732.      --color-product-price-sale: 214,58,47;
  1733.      --color-foreground-lighten-60: #5e5d58;
  1734.      --color-foreground-lighten-19: #bfbcb1;
  1735.        color: rgb(var(--color-foreground));
  1736.        background-color: rgb(var(--color-background));
  1737.      }
  1738.    }
  1739.  
  1740.    
  1741. .color-scheme-8 {
  1742.      --color-background: 255,255,255;
  1743.      --color-secondary-background: 247,247,247;
  1744.      --color-primary: 214,58,47;
  1745.      --color-text-heading: 0,0,0;
  1746.      --color-foreground: 0,0,0;
  1747.      --color-border: 230,230,230;
  1748.      --color-button: 0,0,0;
  1749.      --color-button-text: 255,255,255;
  1750.      --color-secondary-button: 255,255,255;
  1751.      --color-secondary-button-border: 230,230,230;
  1752.      --color-secondary-button-text: 0,0,0;
  1753.      --color-button-hover-background: 23,67,31;
  1754.      --color-button-hover-text: 255,255,255;
  1755.      --color-button-before: #318f42;
  1756.      --color-field: 255,255,255;
  1757.      --color-field-text: 0,0,0;
  1758.      --color-link: 0,0,0;
  1759.      --color-link-hover: 0,0,0;
  1760.      --color-product-price-sale: 214,58,47;
  1761.      --color-foreground-lighten-60: #666666;
  1762.      --color-foreground-lighten-19: #cfcfcf;
  1763.    }
  1764.    @media (min-width: 768px) {
  1765.      body .desktop-color-scheme-8 {
  1766.        --color-background: 255,255,255;
  1767.      --color-secondary-background: 247,247,247;
  1768.      --color-primary: 214,58,47;
  1769.      --color-text-heading: 0,0,0;
  1770.      --color-foreground: 0,0,0;
  1771.      --color-border: 230,230,230;
  1772.      --color-button: 0,0,0;
  1773.      --color-button-text: 255,255,255;
  1774.      --color-secondary-button: 255,255,255;
  1775.      --color-secondary-button-border: 230,230,230;
  1776.      --color-secondary-button-text: 0,0,0;
  1777.      --color-button-hover-background: 23,67,31;
  1778.      --color-button-hover-text: 255,255,255;
  1779.      --color-button-before: #318f42;
  1780.      --color-field: 255,255,255;
  1781.      --color-field-text: 0,0,0;
  1782.      --color-link: 0,0,0;
  1783.      --color-link-hover: 0,0,0;
  1784.      --color-product-price-sale: 214,58,47;
  1785.      --color-foreground-lighten-60: #666666;
  1786.      --color-foreground-lighten-19: #cfcfcf;
  1787.        color: rgb(var(--color-foreground));
  1788.        background-color: rgb(var(--color-background));
  1789.      }
  1790.    }
  1791.    @media (max-width: 767px) {
  1792.      body .mobile-color-scheme-8 {
  1793.        --color-background: 255,255,255;
  1794.      --color-secondary-background: 247,247,247;
  1795.      --color-primary: 214,58,47;
  1796.      --color-text-heading: 0,0,0;
  1797.      --color-foreground: 0,0,0;
  1798.      --color-border: 230,230,230;
  1799.      --color-button: 0,0,0;
  1800.      --color-button-text: 255,255,255;
  1801.      --color-secondary-button: 255,255,255;
  1802.      --color-secondary-button-border: 230,230,230;
  1803.      --color-secondary-button-text: 0,0,0;
  1804.      --color-button-hover-background: 23,67,31;
  1805.      --color-button-hover-text: 255,255,255;
  1806.      --color-button-before: #318f42;
  1807.      --color-field: 255,255,255;
  1808.      --color-field-text: 0,0,0;
  1809.      --color-link: 0,0,0;
  1810.      --color-link-hover: 0,0,0;
  1811.      --color-product-price-sale: 214,58,47;
  1812.      --color-foreground-lighten-60: #666666;
  1813.      --color-foreground-lighten-19: #cfcfcf;
  1814.        color: rgb(var(--color-foreground));
  1815.        background-color: rgb(var(--color-background));
  1816.      }
  1817.    }
  1818.  
  1819.    
  1820. .color-scheme-9 {
  1821.      --color-background: 247,246,242;
  1822.      --color-secondary-background: 236,232,219;
  1823.      --color-primary: 85,155,96;
  1824.      --color-text-heading: 0,0,0;
  1825.      --color-foreground: 0,0,0;
  1826.      --color-border: 222,221,218;
  1827.      --color-button: 0,0,0;
  1828.      --color-button-text: 255,255,255;
  1829.      --color-secondary-button: 247,246,242;
  1830.      --color-secondary-button-border: 198,197,194;
  1831.      --color-secondary-button-text: 0,0,0;
  1832.      --color-button-hover-background: 0,0,0;
  1833.      --color-button-hover-text: 255,255,255;
  1834.      --color-button-before: #333333;
  1835.      --color-field: 255,255,255;
  1836.      --color-field-text: 0,0,0;
  1837.      --color-link: 0,0,0;
  1838.      --color-link-hover: 0,0,0;
  1839.      --color-product-price-sale: 214,58,47;
  1840.      --color-foreground-lighten-60: #636261;
  1841.      --color-foreground-lighten-19: #c8c7c4;
  1842.    }
  1843.    @media (min-width: 768px) {
  1844.      body .desktop-color-scheme-9 {
  1845.        --color-background: 247,246,242;
  1846.      --color-secondary-background: 236,232,219;
  1847.      --color-primary: 85,155,96;
  1848.      --color-text-heading: 0,0,0;
  1849.      --color-foreground: 0,0,0;
  1850.      --color-border: 222,221,218;
  1851.      --color-button: 0,0,0;
  1852.      --color-button-text: 255,255,255;
  1853.      --color-secondary-button: 247,246,242;
  1854.      --color-secondary-button-border: 198,197,194;
  1855.      --color-secondary-button-text: 0,0,0;
  1856.      --color-button-hover-background: 0,0,0;
  1857.      --color-button-hover-text: 255,255,255;
  1858.      --color-button-before: #333333;
  1859.      --color-field: 255,255,255;
  1860.      --color-field-text: 0,0,0;
  1861.      --color-link: 0,0,0;
  1862.      --color-link-hover: 0,0,0;
  1863.      --color-product-price-sale: 214,58,47;
  1864.      --color-foreground-lighten-60: #636261;
  1865.      --color-foreground-lighten-19: #c8c7c4;
  1866.        color: rgb(var(--color-foreground));
  1867.        background-color: rgb(var(--color-background));
  1868.      }
  1869.    }
  1870.    @media (max-width: 767px) {
  1871.      body .mobile-color-scheme-9 {
  1872.        --color-background: 247,246,242;
  1873.      --color-secondary-background: 236,232,219;
  1874.      --color-primary: 85,155,96;
  1875.      --color-text-heading: 0,0,0;
  1876.      --color-foreground: 0,0,0;
  1877.      --color-border: 222,221,218;
  1878.      --color-button: 0,0,0;
  1879.      --color-button-text: 255,255,255;
  1880.      --color-secondary-button: 247,246,242;
  1881.      --color-secondary-button-border: 198,197,194;
  1882.      --color-secondary-button-text: 0,0,0;
  1883.      --color-button-hover-background: 0,0,0;
  1884.      --color-button-hover-text: 255,255,255;
  1885.      --color-button-before: #333333;
  1886.      --color-field: 255,255,255;
  1887.      --color-field-text: 0,0,0;
  1888.      --color-link: 0,0,0;
  1889.      --color-link-hover: 0,0,0;
  1890.      --color-product-price-sale: 214,58,47;
  1891.      --color-foreground-lighten-60: #636261;
  1892.      --color-foreground-lighten-19: #c8c7c4;
  1893.        color: rgb(var(--color-foreground));
  1894.        background-color: rgb(var(--color-background));
  1895.      }
  1896.    }
  1897.  
  1898.    
  1899. .color-scheme-10 {
  1900.      --color-background: 246,246,246;
  1901.      --color-secondary-background: 247,247,247;
  1902.      --color-primary: 214,58,47;
  1903.      --color-text-heading: 0,0,0;
  1904.      --color-foreground: 0,0,0;
  1905.      --color-border: 230,230,230;
  1906.      --color-button: 0,0,0;
  1907.      --color-button-text: 255,255,255;
  1908.      --color-secondary-button: 233,233,233;
  1909.      --color-secondary-button-border: 233,233,233;
  1910.      --color-secondary-button-text: 0,0,0;
  1911.      --color-button-hover-background: 0,0,0;
  1912.      --color-button-hover-text: 255,255,255;
  1913.      --color-button-before: #333333;
  1914.      --color-field: 245,245,245;
  1915.      --color-field-text: 0,0,0;
  1916.      --color-link: 0,0,0;
  1917.      --color-link-hover: 0,0,0;
  1918.      --color-product-price-sale: 214,58,47;
  1919.      --color-foreground-lighten-60: #626262;
  1920.      --color-foreground-lighten-19: #c7c7c7;
  1921.    }
  1922.    @media (min-width: 768px) {
  1923.      body .desktop-color-scheme-10 {
  1924.        --color-background: 246,246,246;
  1925.      --color-secondary-background: 247,247,247;
  1926.      --color-primary: 214,58,47;
  1927.      --color-text-heading: 0,0,0;
  1928.      --color-foreground: 0,0,0;
  1929.      --color-border: 230,230,230;
  1930.      --color-button: 0,0,0;
  1931.      --color-button-text: 255,255,255;
  1932.      --color-secondary-button: 233,233,233;
  1933.      --color-secondary-button-border: 233,233,233;
  1934.      --color-secondary-button-text: 0,0,0;
  1935.      --color-button-hover-background: 0,0,0;
  1936.      --color-button-hover-text: 255,255,255;
  1937.      --color-button-before: #333333;
  1938.      --color-field: 245,245,245;
  1939.      --color-field-text: 0,0,0;
  1940.      --color-link: 0,0,0;
  1941.      --color-link-hover: 0,0,0;
  1942.      --color-product-price-sale: 214,58,47;
  1943.      --color-foreground-lighten-60: #626262;
  1944.      --color-foreground-lighten-19: #c7c7c7;
  1945.        color: rgb(var(--color-foreground));
  1946.        background-color: rgb(var(--color-background));
  1947.      }
  1948.    }
  1949.    @media (max-width: 767px) {
  1950.      body .mobile-color-scheme-10 {
  1951.        --color-background: 246,246,246;
  1952.      --color-secondary-background: 247,247,247;
  1953.      --color-primary: 214,58,47;
  1954.      --color-text-heading: 0,0,0;
  1955.      --color-foreground: 0,0,0;
  1956.      --color-border: 230,230,230;
  1957.      --color-button: 0,0,0;
  1958.      --color-button-text: 255,255,255;
  1959.      --color-secondary-button: 233,233,233;
  1960.      --color-secondary-button-border: 233,233,233;
  1961.      --color-secondary-button-text: 0,0,0;
  1962.      --color-button-hover-background: 0,0,0;
  1963.      --color-button-hover-text: 255,255,255;
  1964.      --color-button-before: #333333;
  1965.      --color-field: 245,245,245;
  1966.      --color-field-text: 0,0,0;
  1967.      --color-link: 0,0,0;
  1968.      --color-link-hover: 0,0,0;
  1969.      --color-product-price-sale: 214,58,47;
  1970.      --color-foreground-lighten-60: #626262;
  1971.      --color-foreground-lighten-19: #c7c7c7;
  1972.        color: rgb(var(--color-foreground));
  1973.        background-color: rgb(var(--color-background));
  1974.      }
  1975.    }
  1976.  
  1977.    
  1978. .color-scheme-11 {
  1979.      --color-background: 243,238,234;
  1980.      --color-secondary-background: 247,247,247;
  1981.      --color-primary: 214,58,47;
  1982.      --color-text-heading: 0,0,0;
  1983.      --color-foreground: 0,0,0;
  1984.      --color-border: 255,255,255;
  1985.      --color-button: 0,0,0;
  1986.      --color-button-text: 255,255,255;
  1987.      --color-secondary-button: 233,233,233;
  1988.      --color-secondary-button-border: 233,233,233;
  1989.      --color-secondary-button-text: 0,0,0;
  1990.      --color-button-hover-background: 0,0,0;
  1991.      --color-button-hover-text: 255,255,255;
  1992.      --color-button-before: #333333;
  1993.      --color-field: 255,255,255;
  1994.      --color-field-text: 0,0,0;
  1995.      --color-link: 0,0,0;
  1996.      --color-link-hover: 0,0,0;
  1997.      --color-product-price-sale: 214,58,47;
  1998.      --color-foreground-lighten-60: #615f5e;
  1999.      --color-foreground-lighten-19: #c5c1be;
  2000.    }
  2001.    @media (min-width: 768px) {
  2002.      body .desktop-color-scheme-11 {
  2003.        --color-background: 243,238,234;
  2004.      --color-secondary-background: 247,247,247;
  2005.      --color-primary: 214,58,47;
  2006.      --color-text-heading: 0,0,0;
  2007.      --color-foreground: 0,0,0;
  2008.      --color-border: 255,255,255;
  2009.      --color-button: 0,0,0;
  2010.      --color-button-text: 255,255,255;
  2011.      --color-secondary-button: 233,233,233;
  2012.      --color-secondary-button-border: 233,233,233;
  2013.      --color-secondary-button-text: 0,0,0;
  2014.      --color-button-hover-background: 0,0,0;
  2015.      --color-button-hover-text: 255,255,255;
  2016.      --color-button-before: #333333;
  2017.      --color-field: 255,255,255;
  2018.      --color-field-text: 0,0,0;
  2019.      --color-link: 0,0,0;
  2020.      --color-link-hover: 0,0,0;
  2021.      --color-product-price-sale: 214,58,47;
  2022.      --color-foreground-lighten-60: #615f5e;
  2023.      --color-foreground-lighten-19: #c5c1be;
  2024.        color: rgb(var(--color-foreground));
  2025.        background-color: rgb(var(--color-background));
  2026.      }
  2027.    }
  2028.    @media (max-width: 767px) {
  2029.      body .mobile-color-scheme-11 {
  2030.        --color-background: 243,238,234;
  2031.      --color-secondary-background: 247,247,247;
  2032.      --color-primary: 214,58,47;
  2033.      --color-text-heading: 0,0,0;
  2034.      --color-foreground: 0,0,0;
  2035.      --color-border: 255,255,255;
  2036.      --color-button: 0,0,0;
  2037.      --color-button-text: 255,255,255;
  2038.      --color-secondary-button: 233,233,233;
  2039.      --color-secondary-button-border: 233,233,233;
  2040.      --color-secondary-button-text: 0,0,0;
  2041.      --color-button-hover-background: 0,0,0;
  2042.      --color-button-hover-text: 255,255,255;
  2043.      --color-button-before: #333333;
  2044.      --color-field: 255,255,255;
  2045.      --color-field-text: 0,0,0;
  2046.      --color-link: 0,0,0;
  2047.      --color-link-hover: 0,0,0;
  2048.      --color-product-price-sale: 214,58,47;
  2049.      --color-foreground-lighten-60: #615f5e;
  2050.      --color-foreground-lighten-19: #c5c1be;
  2051.        color: rgb(var(--color-foreground));
  2052.        background-color: rgb(var(--color-background));
  2053.      }
  2054.    }
  2055.  
  2056.  
  2057.  body, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-4, .color-scheme-inverse, .color-scheme-6, .color-scheme-7, .color-scheme-8, .color-scheme-9, .color-scheme-10, .color-scheme-11 {
  2058.    color: rgb(var(--color-foreground));
  2059.    background-color: rgb(var(--color-background));
  2060.  }
  2061.  
  2062.  :root {
  2063.    /* Animation variable */
  2064.    --animation-nav: .5s cubic-bezier(.6, 0, .4, 1);
  2065.    --animation-default: .5s cubic-bezier(.3, 1, .3, 1);
  2066.    --animation-fast: .3s cubic-bezier(.7, 0, .3, 1);
  2067.    --transform-origin-start: left;
  2068.    --transform-origin-end: right;
  2069.    --duration-default: 200ms;
  2070.    --duration-image: 1000ms;
  2071.  
  2072.    --font-body-family: Archivo, serif;
  2073.    --font-body-style: normal;
  2074.    --font-body-weight: 400;
  2075.    --font-body-weight-bolder: 500;
  2076.    --font-body-weight-bold: 700;
  2077.    --font-body-size: 1.5rem;
  2078.    --font-body-line-height: 1.6;
  2079.  
  2080.    --font-heading-family: Archivo, serif;
  2081.    --font-heading-style: normal;
  2082.    --font-heading-weight: 500;
  2083.    --font-heading-letter-spacing: -0.04em;
  2084.    --font-heading-transform: none;
  2085.    --font-heading-scale: 1.0;
  2086.    --font-heading-mobile-scale: 0.8;
  2087.  
  2088.    --font-hd1-transform:none;
  2089.  
  2090.    --font-subheading-family: Archivo, serif;
  2091.    --font-subheading-weight: 500;
  2092.    --font-subheading-scale: 1.2;
  2093.    --font-subheading-transform: none;
  2094.    --font-subheading-letter-spacing: 0.0em;
  2095.  
  2096.    --font-navigation-family: Archivo, serif;
  2097.    --font-navigation-weight: 500;
  2098.    --navigation-transform: none;
  2099.  
  2100.    --font-button-family: Archivo, serif;
  2101.    --font-button-weight: 500;
  2102.    --buttons-letter-spacing: 0.0em;
  2103.    --buttons-transform: none;
  2104.    --buttons-height: 4.8rem;
  2105.    --buttons-border-width: 1px;
  2106.    --inputs-border-width: 1px;
  2107.  
  2108.    --font-pcard-title-family: Archivo, serif;
  2109.    --font-pcard-title-style: normal;
  2110.    --font-pcard-title-weight: 500;
  2111.    --font-pcard-title-scale: 1.06;
  2112.    --font-pcard-title-transform: none;
  2113.  
  2114.    --font-hd1-size: 6.0rem;
  2115.    --font-hd2-size: 4.8rem;
  2116.    --font-hd3-size: 3.6rem;
  2117.    --font-h1-size: calc(var(--font-heading-scale) * 4rem);
  2118.    --font-h2-size: calc(var(--font-heading-scale) * 3.2rem);
  2119.    --font-h3-size: calc(var(--font-heading-scale) * 2.8rem);
  2120.    --font-h4-size: calc(var(--font-heading-scale) * 2.2rem);
  2121.    --font-h5-size: calc(var(--font-heading-scale) * 1.8rem);
  2122.    --font-h6-size: calc(var(--font-heading-scale) * 1.6rem);
  2123.    --font-subheading-size: calc(var(--font-subheading-scale) * var(--font-body-size));
  2124.    --font-pcard-title-size: calc(var(--font-pcard-title-scale) * var(--font-body-size));
  2125.  
  2126.    --color-badge-sale: #D63A2F;
  2127.    --color-badge-sale-text: #FFFFFF;
  2128.    --color-badge-soldout: #A5A4AB;
  2129.    --color-badge-soldout-text: #FFFFFF;
  2130.    --color-badge-hot: #000000;
  2131.    --color-badge-hot-text: #FFFFFF;
  2132.    --color-badge-new: #417365;
  2133.    --color-badge-new-text: #FFFFFF;
  2134.    --color-cart-bubble: #000000;
  2135.    --color-keyboard-focus: 11 97 205;
  2136.  
  2137.    --buttons-radius: 1.0rem;
  2138.    --inputs-radius: 1.0rem;
  2139.    --textareas-radius: 1.0rem;
  2140.    --blocks-radius: 1.0rem;
  2141.    --blocks-radius-mobile: 0.8rem;
  2142.    --small-blocks-radius: 0.5rem;
  2143.    --medium-blocks-radius: 0.8rem;
  2144.    --pcard-radius: 1.0rem;
  2145.    --pcard-inner-radius: 0.6rem;
  2146.    --badges-radius: 0.5rem;
  2147.  
  2148.    --page-width: 1410px;
  2149.    --page-width-margin: 0rem;
  2150.    --header-padding-bottom: 4rem;
  2151.    --header-padding-bottom-mobile: 3.2rem;
  2152.    --header-padding-bottom-large: 6rem;
  2153.    --header-padding-bottom-large-lg: 4rem;
  2154.  }
  2155.  
  2156.  *,
  2157.  *::before,
  2158.  *::after {
  2159.    box-sizing: inherit;
  2160.  }
  2161.  
  2162.  html {
  2163.    box-sizing: border-box;
  2164.    font-size: 62.5%;
  2165.    height: 100%;
  2166.  }
  2167.  
  2168.  body {
  2169.    min-height: 100%;
  2170.    margin: 0;
  2171.    font-family: var(--font-body-family);
  2172.    font-style: var(--font-body-style);
  2173.    font-weight: var(--font-body-weight);
  2174.    font-size: var(--font-body-size);
  2175.    line-height: var(--font-body-line-height);
  2176.    -webkit-font-smoothing: antialiased;
  2177.    -moz-osx-font-smoothing: grayscale;
  2178.    touch-action: manipulation;
  2179.    -webkit-text-size-adjust: 100%;
  2180.    font-feature-settings: normal;
  2181.  }
  2182.  @media (min-width: 1485px) {
  2183.    .swiper-controls--outside {
  2184.      --swiper-navigation-offset-x: calc((var(--swiper-navigation-size) + 2.7rem) * -1);
  2185.    }
  2186.  }
  2187. </style>
  2188.  
  2189.  <link rel="preload" as="font" href="//mymimi.com.au/cdn/fonts/archivo/archivo_n4.abb5ec97705c33fe369ef678fc93b9cf87658330.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=f2fed0a2c0e60a4e5870e0f4da6b4dbd69f2c7764ec8f1d250b0b9009cce025d" type="font/woff2" crossorigin>
  2190.  
  2191.  
  2192.  <link rel="preload" as="font" href="//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7" type="font/woff2" crossorigin>
  2193.  
  2194. <link href="//mymimi.com.au/cdn/shop/t/11/assets/vendor.css?v=94183888130352382221738695061" rel="stylesheet" type="text/css" media="all" /><link href="//mymimi.com.au/cdn/shop/t/11/assets/theme.css?v=18206438039372609731738714783" rel="stylesheet" type="text/css" media="all" /><link href="//mymimi.com.au/cdn/shop/t/11/assets/custom.css?v=56371115523575109281738715337" rel="stylesheet" type="text/css" media="all" /><script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="ke79Awgoc1XxZVul8J7c2Ashd3HzuzvpYVWrN-nGeRk">
  2195. <meta name="facebook-domain-verification" content="6u05sh7l5chy2wk2lskq3w2w557e0u">
  2196. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/69627969748/digital_wallets/dialog">
  2197. <meta name="shopify-requires-components" content="true" product-ids="8358559383764,8361989308628,8362009264340,8715302043860,8797590028500">
  2198. <meta name="shopify-checkout-api-token" content="4ca042b5edfa125ced385f913cb0a5e0">
  2199. <meta id="in-context-paypal-metadata" data-shop-id="69627969748" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="AUD">
  2200. <script async="async" src="/checkouts/internal/preloads.js?locale=en-AU"></script>
  2201. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  2202. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-AU&shop_id=69627969748" crossorigin="anonymous"></script>
  2203. <script id="apple-pay-shop-capabilities" type="application/json">{"shopId":69627969748,"countryCode":"AU","currencyCode":"AUD","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/69627969748","merchantName":"my mimi","requiredBillingContactFields":["postalAddress","email"],"requiredShippingContactFields":["postalAddress","email"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","jcb"],"total":{"type":"pending","label":"my mimi","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
  2204. <script id="shopify-features" type="application/json">{"accessToken":"4ca042b5edfa125ced385f913cb0a5e0","betas":["rich-media-storefront-analytics"],"domain":"mymimi.com.au","predictiveSearch":true,"shopId":69627969748,"smart_payment_buttons_url":"https:\/\/mymimi.com.au\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/spb.en.js","dynamic_checkout_cart_url":"https:\/\/mymimi.com.au\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/dynamic-checkout-cart.en.js","locale":"en"}</script>
  2205. <script>var Shopify = Shopify || {};
  2206. Shopify.shop = "ff7a56-30.myshopify.com";
  2207. Shopify.locale = "en";
  2208. Shopify.currency = {"active":"AUD","rate":"1.0"};
  2209. Shopify.country = "AU";
  2210. Shopify.theme = {"name":"Sleek","id":148125679828,"schema_name":"Sleek","schema_version":"1.7.0","theme_store_id":2821,"role":"main"};
  2211. Shopify.theme.handle = "null";
  2212. Shopify.theme.style = {"id":null,"handle":null};
  2213. Shopify.cdnHost = "mymimi.com.au/cdn";
  2214. Shopify.routes = Shopify.routes || {};
  2215. Shopify.routes.root = "/";</script>
  2216. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  2217. <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>
  2218. <script>window.ShopifyPay = window.ShopifyPay || {};
  2219. window.ShopifyPay.apiHost = "shop.app\/pay";</script>
  2220. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  2221. <script>
  2222.  window.Shopify = window.Shopify || {};
  2223.  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  2224.  window.Shopify.featureAssets['shop-js'] = {"init-fed-cm":["modules/v2/client.init-fed-cm_B01Uuy6a.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js"],"init-windoid":["modules/v2/client.init-windoid_Dmy5w_G9.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_CI_P12tx.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_BZ9ixfpW.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_Bt96lnTm.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js","modules/v2/chunk.modal_Dh4Gio6z.esm.js"],"pay-button":["modules/v2/client.pay-button_BVP3l8eA.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_D9O2kiJW.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js","modules/v2/chunk.modal_Dh4Gio6z.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_B3hqt8Il.en.esm.js","modules/v2/client.shop-login-button_B4xlP_m0.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js","modules/v2/chunk.modal_Dh4Gio6z.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_Bp0SDXFf.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js","modules/v2/chunk.modal_Dh4Gio6z.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_B4xlP_m0.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js","modules/v2/chunk.modal_Dh4Gio6z.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_C4ZlNjPl.en.esm.js","modules/v2/client.shop-login-button_B4xlP_m0.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js","modules/v2/chunk.modal_Dh4Gio6z.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_BqBvHWDR.en.esm.js","modules/v2/client.shop-login-button_B4xlP_m0.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js","modules/v2/chunk.modal_Dh4Gio6z.esm.js"],"lead-capture":["modules/v2/client.lead-capture_DnLSfEUf.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js","modules/v2/chunk.modal_Dh4Gio6z.esm.js"],"payment-terms":["modules/v2/client.payment-terms_DVVCn4Av.en.esm.js","modules/v2/chunk.common_BwDzK4wQ.esm.js","modules/v2/chunk.modal_Dh4Gio6z.esm.js"]};
  2225. </script>
  2226. <script>(function() {
  2227.  function asyncLoad() {
  2228.    var urls = ["https:\/\/cdn1.judge.me\/assets\/installed.js?shop=ff7a56-30.myshopify.com"];
  2229.    for (var i = 0; i < urls.length; i++) {
  2230.      var s = document.createElement('script');
  2231.      s.type = 'text/javascript';
  2232.      s.async = true;
  2233.      s.src = urls[i];
  2234.      var x = document.getElementsByTagName('script')[0];
  2235.      x.parentNode.insertBefore(s, x);
  2236.    }
  2237.  };
  2238.  if(window.attachEvent) {
  2239.    window.attachEvent('onload', asyncLoad);
  2240.  } else {
  2241.    window.addEventListener('load', asyncLoad, false);
  2242.  }
  2243. })();</script>
  2244. <script id="__st">var __st={"a":69627969748,"offset":39600,"reqid":"c0a3021c-0055-4da9-a61e-b7a7afea0fe5-1743772962","pageurl":"mymimi.com.au\/","u":"ef84cd765b98","p":"home"};</script>
  2245. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  2246. <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'])})(!0,!0)}();</script>
  2247. <script integrity="sha256-EGCDRYTvIEOXsReXgqGwkAR+5Dl8tickSrieA/ZcQwc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//mymimi.com.au/cdn/shopifycloud/shopify/assets/storefront/load_feature-1060834584ef204397b1179782a1b090047ee4397cb627244ab89e03f65c4307.js" crossorigin="anonymous"></script>
  2248. <script crossorigin="anonymous" defer="defer" src="//mymimi.com.au/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-80e528be853eac23af2454534897ca9536b1d3d04aa043b042f34879a3c111c8.js?v=20220906"></script>
  2249. <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://mymimi.com.au/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
  2250. </script>
  2251. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  2252.  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);
  2253. </script>
  2254. <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})}}));
  2255. </script>
  2256. <script id='scb4127' type='text/javascript' async='' src='https://mymimi.com.au/cdn/shopifycloud/privacy-banner/storefront-banner.js'></script>
  2257. <link rel="stylesheet" media="screen" href="https://mymimi.com.au/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
  2258.  
  2259. <style id="shopify-accelerated-checkout-cart">
  2260.        #shopify-buyer-consent {
  2261.  margin-top: 1em;
  2262.  display: inline-block;
  2263.  width: 100%;
  2264. }
  2265.  
  2266. #shopify-buyer-consent.hidden {
  2267.  display: none;
  2268. }
  2269.  
  2270. #shopify-subscription-policy-button {
  2271.  background: none;
  2272.  border: none;
  2273.  padding: 0;
  2274.  text-decoration: underline;
  2275.  font-size: inherit;
  2276.  cursor: pointer;
  2277. }
  2278.  
  2279. #shopify-subscription-policy-button::before {
  2280.  box-shadow: none;
  2281. }
  2282.  
  2283.      </style>
  2284. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  2285.    <script src="//mymimi.com.au/cdn/shop/t/11/assets/vendor.js?v=70296684678509862901738695061" defer="defer"></script>
  2286.    <script src="//mymimi.com.au/cdn/shop/t/11/assets/theme.js?v=178999039422783560011741003193" defer="defer"></script><script>
  2287.      if (Shopify.designMode) {
  2288.        document.documentElement.classList.add('shopify-design-mode');
  2289.      }
  2290.    </script>
  2291. <script>
  2292.  window.FoxTheme = window.FoxTheme || {};
  2293.  document.documentElement.classList.replace('no-js', 'js');
  2294.  window.shopUrl = 'https://mymimi.com.au';
  2295.  window.FoxTheme.routes = {
  2296.    cart_add_url: '/cart/add',
  2297.    cart_change_url: '/cart/change',
  2298.    cart_update_url: '/cart/update',
  2299.    cart_url: '/cart',
  2300.    shop_url: 'https://mymimi.com.au',
  2301.    predictive_search_url: '/search/suggest',
  2302.  };
  2303.  
  2304.  FoxTheme.shippingCalculatorStrings = {
  2305.    error: "One or more errors occurred while retrieving the shipping rates:",
  2306.    notFound: "Sorry, we do not ship to your address.",
  2307.    oneResult: "There is one shipping rate for your address:",
  2308.    multipleResults: "There are multiple shipping rates for your address:",
  2309.  };
  2310.  
  2311.  FoxTheme.settings = {
  2312.    cartType: "drawer",
  2313.    moneyFormat: "${{amount}}",
  2314.    themeName: 'Sleek',
  2315.    themeVersion: '1.7.0'
  2316.  }
  2317.  
  2318.  FoxTheme.variantStrings = {
  2319.    addToCart: `Add to cart`,
  2320.    soldOut: `Sold out`,
  2321.    unavailable: `Unavailable`,
  2322.    unavailable_with_option: `[value] - Unavailable`,
  2323.  };
  2324.  
  2325.  FoxTheme.quickOrderListStrings = {
  2326.    itemsAdded: "[quantity] items added",
  2327.    itemAdded: "[quantity] item added",
  2328.    itemsRemoved: "[quantity] items removed",
  2329.    itemRemoved: "[quantity] item removed",
  2330.    viewCart: "View cart",
  2331.    each: "[money]\/ea",
  2332.    min_error: "This item has a minimum of [min]",
  2333.    max_error: "This item has a maximum of [max]",
  2334.    step_error: "You can only add this item in increments of [step]",
  2335.  };
  2336.  
  2337.  FoxTheme.accessibilityStrings = {
  2338.    imageAvailable: `Image [index] is now available in gallery view`,
  2339.    shareSuccess: `Copied`,
  2340.    pauseSlideshow: `Pause slideshow`,
  2341.    playSlideshow: `Play slideshow`,
  2342.    recipientFormExpanded: `Gift card recipient form expanded`,
  2343.    recipientFormCollapsed: `Gift card recipient form collapsed`,
  2344.    countrySelectorSearchCount: `[count] countries/regions found`,
  2345.  };
  2346. </script>
  2347.  
  2348.    
  2349.    
  2350.  <!-- BEGIN app block: shopify://apps/instafeed/blocks/head-block/c447db20-095d-4a10-9725-b5977662c9d5 --><link rel="preconnect" href="https://cdn.nfcube.com/">
  2351. <link rel="preconnect" href="https://scontent.cdninstagram.com/">
  2352.  
  2353.  
  2354.  <script>
  2355.    document.addEventListener('DOMContentLoaded', function () {
  2356.      let instafeedScript = document.createElement('script');
  2357.  
  2358.      
  2359.        instafeedScript.src = 'https://cdn.nfcube.com/instafeed-6e831217ee21e2d02dcbc7e2e9b5b97d.js';
  2360.      
  2361.  
  2362.      document.body.appendChild(instafeedScript);
  2363.    });
  2364.  </script>
  2365.  
  2366.  
  2367.  
  2368.  
  2369.  
  2370. <!-- END app block --><script src="https://cdn.shopify.com/extensions/484180e1-3496-4659-9c20-4fde2dc6640c/forms-1517/assets/loader.js" type="text/javascript" defer="defer"></script>
  2371. <script src="https://cdn.shopify.com/extensions/ee9c15ca-2499-411a-aae2-66d4bcccc8a5/inbox-1236/assets/inbox-chat-loader.js" type="text/javascript" defer="defer"></script>
  2372. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  2373. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {var session_token = document.cookie.match(/_shopify_s=([^;]*)/);function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 69627969748,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token: session_token && session_token.length === 2 ? session_token[1] : "",page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
  2374. <script id="web-pixels-manager-setup">(function e(e,d,r,n,o,i){if(void 0===i&&(i={}),!Boolean(null===(t=null===(a=window.Shopify)||void 0===a?void 0:a.analytics)||void 0===t?void 0:t.replayQueue)){var a,t;window.Shopify=window.Shopify||{};var s=window.Shopify;s.analytics=s.analytics||{};var l=s.analytics;l.replayQueue=[],l.publish=function(e,d,r){return l.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var u=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[1-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[2-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[1-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[1-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[2-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[1-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),c="modern"===u?"modern":"legacy",f=(null!=o?o:{modern:"",legacy:""})[c],m=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:r,hashVersion:n,buildTarget:c}),p=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:n,bundleTarget:u,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{i.browserTarget=u,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:m,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var r=window.webPixelsManager.init(e)||void 0;if(r){d(r);var n=window.Shopify.analytics;n.replayQueue.forEach((function(e){var d=e[0],n=e[1],o=e[2];r.publishCustomEvent(d,n,o)})),n.replayQueue=[],n.publish=r.publishCustomEvent,n.visitor=r.visitor,n.initialized=!0}}},onerror:function(){return p.emit({status:"failed",errorMsg:"".concat(m," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(f)?f:"",scriptDataAttributes:i}),p.emit({status:"loading"})}catch(e){p.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 69627969748,storefrontBaseUrl: "https://mymimi.com.au",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: [],webPixelsConfigList: [{"id":"493945044","configuration":"{\"config\":\"{\\\"pixel_id\\\":\\\"G-YDZZ1KMWVY\\\",\\\"target_country\\\":\\\"AU\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":\\\"G-YDZZ1KMWVY\\\"},{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":\\\"G-YDZZ1KMWVY\\\"},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-YDZZ1KMWVY\\\",\\\"MC-6ZFP07V4ZV\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-YDZZ1KMWVY\\\",\\\"MC-6ZFP07V4ZV\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-YDZZ1KMWVY\\\",\\\"MC-6ZFP07V4ZV\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":\\\"G-YDZZ1KMWVY\\\"},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":\\\"G-YDZZ1KMWVY\\\"}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"4dfb9bba78bcc1d3298173fc750a772c","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"254771412","configuration":"{\"tagID\":\"2613152742925\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"4fd0680eed907adaf3f85849c393d688","type":"APP","apiClientId":3009811,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"215711956","configuration":"{\"pixel_id\":\"2154055114987457\",\"pixel_type\":\"facebook_pixel\",\"metaapp_system_user_token\":\"-\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"8d894c63179843e74a9691414b5ad83d","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"169050324","configuration":"{\"myshopifyDomain\":\"ff7a56-30.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"23b97d18e2aa74363140dc29c9284e87","type":"APP","apiClientId":2775569,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0411","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0411","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,effectiveTopLevelDomain: "",initData: {"shop":{"name":"my mimi","paymentSettings":{"currencyCode":"AUD"},"myshopifyDomain":"ff7a56-30.myshopify.com","countryCode":"AU","storefrontUrl":"https://mymimi.com.au"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://mymimi.com.au/cdn","a2bf07f9wd258a588pa9bc280fmc06997f5",{"modern":"","legacy":""},{"shopId":"69627969748","storefrontBaseUrl":"https://mymimi.com.au","extensionBaseUrl":"https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[]","isMerchantRequest":"false","hashVersion":"a2bf07f9wd258a588pa9bc280fmc06997f5"});</script><script>
  2375.  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  2376.  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  2377.  window.ShopifyAnalytics.meta.currency = 'AUD';
  2378.  var meta = {"page":{"pageType":"home"}};
  2379.  for (var attr in meta) {
  2380.    window.ShopifyAnalytics.meta[attr] = meta[attr];
  2381.  }
  2382. </script>
  2383. <script class="analytics">
  2384.  (function () {
  2385.    var customDocumentWrite = function(content) {
  2386.      var jquery = null;
  2387.  
  2388.      if (window.jQuery) {
  2389.        jquery = window.jQuery;
  2390.      } else if (window.Checkout && window.Checkout.$) {
  2391.        jquery = window.Checkout.$;
  2392.      }
  2393.  
  2394.      if (jquery) {
  2395.        jquery('body').append(content);
  2396.      }
  2397.    };
  2398.  
  2399.    var hasLoggedConversion = function(token) {
  2400.      if (token) {
  2401.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  2402.      }
  2403.      return false;
  2404.    }
  2405.  
  2406.    var setCookieIfConversion = function(token) {
  2407.      if (token) {
  2408.        var twoMonthsFromNow = new Date(Date.now());
  2409.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  2410.  
  2411.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  2412.      }
  2413.    }
  2414.  
  2415.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  2416.    if (trekkie.integrations) {
  2417.      return;
  2418.    }
  2419.    trekkie.methods = [
  2420.      'identify',
  2421.      'page',
  2422.      'ready',
  2423.      'track',
  2424.      'trackForm',
  2425.      'trackLink'
  2426.    ];
  2427.    trekkie.factory = function(method) {
  2428.      return function() {
  2429.        var args = Array.prototype.slice.call(arguments);
  2430.        args.unshift(method);
  2431.        trekkie.push(args);
  2432.        return trekkie;
  2433.      };
  2434.    };
  2435.    for (var i = 0; i < trekkie.methods.length; i++) {
  2436.      var key = trekkie.methods[i];
  2437.      trekkie[key] = trekkie.factory(key);
  2438.    }
  2439.    trekkie.load = function(config) {
  2440.      trekkie.config = config || {};
  2441.      trekkie.config.initialDocumentCookie = document.cookie;
  2442.      var first = document.getElementsByTagName('script')[0];
  2443.      var script = document.createElement('script');
  2444.      script.type = 'text/javascript';
  2445.      script.onerror = function(e) {
  2446.        var scriptFallback = document.createElement('script');
  2447.        scriptFallback.type = 'text/javascript';
  2448.        scriptFallback.onerror = function(error) {
  2449.                var Monorail = {
  2450.      produce: function produce(monorailDomain, schemaId, payload) {
  2451.        var currentMs = new Date().getTime();
  2452.        var event = {
  2453.          schema_id: schemaId,
  2454.          payload: payload,
  2455.          metadata: {
  2456.            event_created_at_ms: currentMs,
  2457.            event_sent_at_ms: currentMs
  2458.          }
  2459.        };
  2460.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  2461.      },
  2462.      sendRequest: function sendRequest(endpointUrl, payload) {
  2463.        // Try the sendBeacon API
  2464.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  2465.          var blobData = new window.Blob([payload], {
  2466.            type: 'text/plain'
  2467.          });
  2468.  
  2469.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  2470.            return true;
  2471.          } // sendBeacon was not successful
  2472.  
  2473.        } // XHR beacon
  2474.  
  2475.        var xhr = new XMLHttpRequest();
  2476.  
  2477.        try {
  2478.          xhr.open('POST', endpointUrl);
  2479.          xhr.setRequestHeader('Content-Type', 'text/plain');
  2480.          xhr.send(payload);
  2481.        } catch (e) {
  2482.          console.log(e);
  2483.        }
  2484.  
  2485.        return false;
  2486.      },
  2487.      isIos12: function isIos12() {
  2488.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  2489.      }
  2490.    };
  2491.    Monorail.produce('monorail-edge.shopifysvc.com',
  2492.      'trekkie_storefront_load_errors/1.1',
  2493.      {shop_id: 69627969748,
  2494.      theme_id: 148125679828,
  2495.      app_name: "storefront",
  2496.      context_url: window.location.href,
  2497.      source_url: "//mymimi.com.au/cdn/s/trekkie.storefront.67031bb556ecae068d9d26b268af7634adc01a0c.min.js"});
  2498.  
  2499.        };
  2500.        scriptFallback.async = true;
  2501.        scriptFallback.src = '//mymimi.com.au/cdn/s/trekkie.storefront.67031bb556ecae068d9d26b268af7634adc01a0c.min.js';
  2502.        first.parentNode.insertBefore(scriptFallback, first);
  2503.      };
  2504.      script.async = true;
  2505.      script.src = '//mymimi.com.au/cdn/s/trekkie.storefront.67031bb556ecae068d9d26b268af7634adc01a0c.min.js';
  2506.      first.parentNode.insertBefore(script, first);
  2507.    };
  2508.    trekkie.load(
  2509.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":69627969748,"isMerchantRequest":null,"themeId":148125679828,"themeCityHash":"12261786026565980864","contentLanguage":"en","currency":"AUD"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  2510.    );
  2511.  
  2512.    var loaded = false;
  2513.    trekkie.ready(function() {
  2514.      if (loaded) return;
  2515.      loaded = true;
  2516.  
  2517.      window.ShopifyAnalytics.lib = window.trekkie;
  2518.  
  2519.      var originalDocumentWrite = document.write;
  2520.      document.write = customDocumentWrite;
  2521.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  2522.      document.write = originalDocumentWrite;
  2523.  
  2524.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  2525.  
  2526.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  2527.      var token = match? match[1]: undefined;
  2528.      if (!hasLoggedConversion(token)) {
  2529.        setCookieIfConversion(token);
  2530.        
  2531.      }
  2532.    });
  2533.  
  2534.  
  2535.        var eventsListenerScript = document.createElement('script');
  2536.        eventsListenerScript.async = true;
  2537.        eventsListenerScript.src = "//mymimi.com.au/cdn/shopifycloud/shopify/assets/shop_events_listener-f55dd2979ec32029c7d9e0b454ab8b33f79c01ca039d17a6f5c9b95647564b19.js";
  2538.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  2539.  
  2540. })();</script>
  2541. <script
  2542.  defer
  2543.  src="https://mymimi.com.au/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.5.0.min.js"
  2544.  data-application="storefront-renderer"
  2545.  data-shop-id="69627969748"
  2546.  data-render-region="gcp-us-east1"
  2547.  data-page-type="index"
  2548.  data-theme-instance-id="148125679828"
  2549.  data-monorail-region="shop_domain"
  2550.  data-resource-timing-sampling-rate="10"
  2551. ></script>
  2552. </head>
  2553.  
  2554.  <body
  2555.    class="index-template  blocks-corner--slightly"
  2556.    data-initializing
  2557.  >
  2558.    
  2559.    
  2560.    
  2561.  
  2562.    <a class="skip-to-content-link button visually-hidden" href="#MainContent">
  2563.      Skip to content
  2564.    </a><page-transition class="loading-bar"> </page-transition>
  2565. <div class="site-wrapper min-height-screen">
  2566.      <!-- BEGIN sections: header-group -->
  2567. <div id="shopify-section-sections--18997227880660__scrolling_promotion_KhdTdc" class="shopify-section shopify-section-group-header-group"><script src="//mymimi.com.au/cdn/shop/t/11/assets/scrolling-promotion.js?v=133581774216458621671738695060" defer="defer"></script><style data-shopify>#shopify-section-sections--18997227880660__scrolling_promotion_KhdTdc {
  2568.    --section-padding-top: 12px;
  2569.    --section-padding-bottom: 12px;
  2570.    --h-spacing: 60px;
  2571.    --v-spacing: 0px;
  2572.    --h-spacing-mobile: 24px;
  2573.    --v-spacing-mobile: 0px;
  2574.    --duration: 60.0s;
  2575.    --align-self: center
  2576.  }</style><div
  2577.  class="section section--padding color-scheme-inverse section--scrolling-promotion"
  2578.  data-section-index="1"
  2579. >
  2580.  <scrolling-promotion
  2581.    data-section-type="scrolling-promotion"
  2582.    data-section-id="sections--18997227880660__scrolling_promotion_KhdTdc"
  2583.    
  2584.    class="scrolling-promotion scrolling-promotion--left"
  2585.  >
  2586.    <div class="promotion"><div
  2587.              class="promotion__item promotion__item-text"
  2588.              
  2589.              style="--text-opacity: 1.0;"
  2590.            ><a
  2591.                  href="/collections/shop-now"
  2592.                  
  2593.                  class="block promotion__item-wrap"
  2594.                >
  2595.                  <div
  2596.                    class="promotion__text text-base font-heading font-normal text-normal"
  2597.                    style="letter-spacing: 0.0em;"
  2598.                  >
  2599.                    Australia: $10 Shipping - Spend $85+ for Free Shipping
  2600.                  </div>
  2601.                </a></div><div
  2602.              class="promotion__item promotion__item-text"
  2603.              
  2604.              style="--text-opacity: 1.0;"
  2605.            ><a
  2606.                  href="/pages/my-mimi-menstrual-disc-reviews"
  2607.                  
  2608.                  class="block promotion__item-wrap"
  2609.                >
  2610.                  <div
  2611.                    class="promotion__text text-base font-heading font-normal text-normal"
  2612.                    style="letter-spacing: 0.0em;"
  2613.                  >
  2614.                    ⭐️⭐️⭐️⭐️⭐️ Read our 5 star reviews. Comfort, Confidence & Leak-Free Period Protection ⭐️⭐️⭐️⭐️⭐️
  2615.                  </div>
  2616.                </a></div></div>
  2617.  </scrolling-promotion>
  2618. </div>
  2619.  
  2620. </div><div id="shopify-section-sections--18997227880660__header" class="shopify-section shopify-section-group-header-group header-section"><link
  2621.  rel="stylesheet"
  2622.  href="//mymimi.com.au/cdn/shop/t/11/assets/component-custom-card.css?v=68178963558480365221738695059"
  2623.  media="print"
  2624.  fetchpriority="low"
  2625.  onload="this.media='all'"
  2626. >
  2627. <script src="//mymimi.com.au/cdn/shop/t/11/assets/header.js?v=66152140337227491141738695060" defer="defer"></script><style data-shopify>
  2628.  #shopify-section-sections--18997227880660__header {
  2629.    --section-padding-top: 20px;
  2630.    --section-padding-bottom: 20px;
  2631.    --logo-width: 180px;
  2632.    --logo-width-mobile: 140px;
  2633.    --color-transparent: 255,255,255;
  2634.  }
  2635. </style>
  2636.  
  2637. <header
  2638.  data-section-id="sections--18997227880660__header"
  2639.  class="header section--padding grid items-center header--center-left color-scheme-1 header-mobile--center page-width header--show-sperator-line"
  2640.  
  2641.    data-enable-transparent="false"
  2642.  
  2643.  
  2644.    is="sticky-header" data-sticky-type="always"
  2645.  
  2646. ><div class="header__icons header__icons--left lg:justify-start z-1 lg:hidden">
  2647.      <div class="header__buttons flex items-center">
  2648.        <button
  2649.          class="menu-drawer-button btn btn--inherit flex items-center justify-center lg:hidden"
  2650.          aria-controls="MenuDrawer"
  2651.          aria-label="Toggle menu"
  2652.        ><svg
  2653.  class="icon icon-hamburger icon--large"
  2654.  viewBox="0 0 21 20"
  2655.  fill="none"
  2656.  xmlns="http://www.w3.org/2000/svg"
  2657. >
  2658.  <path d="M3.76807 10.0078L17.5181 10.007" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2659.  <path d="M3.76807 5.00781L17.5181 5.00699" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2660.  <path d="M3.76855 15.0078L17.5186 15.007" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2661. </svg>
  2662. </button>
  2663.      </div>
  2664.    </div><h1 class="header__logo flex justify-center z-1"><a
  2665.    href="/"
  2666.    class="h3 relative flex header__logo--image"
  2667.  ><img
  2668.          srcset="//mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=140 1x, //mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=280 2x"
  2669.          src="//mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=140"
  2670.          loading="eager"
  2671.          width="700"
  2672.          height="139"
  2673.          alt="my mimi"
  2674.          class="logo header__logo--mobile md:hidden"
  2675.        ><img
  2676.        srcset="//mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=180 1x, //mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=360 2x"
  2677.        src="//mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=180"
  2678.        loading="eager"
  2679.        width="700"
  2680.        height="139"
  2681.        alt="my mimi"
  2682.        class="logo header__logo--desktop md:block hidden"
  2683.      ></a></h1><div class="header__navigation hidden lg:flex">
  2684.        <nav class="header__menu flex" role="navigation" aria-label="Primary">
  2685.  <ul class="flex flex-wrap"><li><a href="/" class="menu__item flex relative z-2 font-navigation">
  2686.              <span class="reversed-link">Home</span>
  2687.            </a></li><li><details
  2688.              is="details-dropdown"
  2689.              level="top"
  2690.              trigger="click"
  2691.              
  2692.            >
  2693.              <summary data-link="/pages/learn-more" class="z-2">
  2694.                <span class="menu__item flex items-center relative">
  2695.                  <span class="reversed-link flex items-center font-navigation">Learn<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  2696.                      <path d="M9.75 4.5L6 8.25L2.25 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2697.                    </svg>
  2698.                  </span>
  2699.                </span>
  2700.              </summary>
  2701.              <div class="dropdown">
  2702.                <div class="dropdown__container blocks-radius-bottom-left-right">
  2703.                  <ul class="dropdown__nav" role="list"><li>
  2704.                          <p>
  2705.                            <a href="https://mymimi.com.au/pages/menstrual-disc" class="reversed-link">Start Here</a>
  2706.                          </p>
  2707.                        </li><li>
  2708.                          <p>
  2709.                            <a href="/pages/frequently-asked-questions" class="reversed-link">FAQ</a>
  2710.                          </p>
  2711.                        </li><li>
  2712.                          <p>
  2713.                            <a href="/pages/articles" class="reversed-link">Articles</a>
  2714.                          </p>
  2715.                        </li></ul>
  2716.                </div>
  2717.              </div>
  2718.            </details></li><li><a href="/collections/shop" class="menu__item flex relative z-2 font-navigation">
  2719.              <span class="reversed-link">Shop</span>
  2720.            </a></li></ul>
  2721. </nav>
  2722.  
  2723.      </div><div class="header__icons header__icons--right flex justify-end z-1">
  2724.    <div class="header__buttons flex items-center justify-center">
  2725.      <a
  2726.        href="/search"
  2727.        class="search-drawer-button flex items-center justify-center"
  2728.        aria-controls="SearchDrawer"
  2729.        aria-label="Search"
  2730.      ><svg
  2731.  xmlns="http://www.w3.org/2000/svg"
  2732.  class="icon icon-search icon--large"
  2733.  viewBox="0 0 24 24"
  2734.  fill="none"
  2735. >
  2736.  <path d="M10.875 18.75C15.2242 18.75 18.75 15.2242 18.75 10.875C18.75 6.52576 15.2242 3 10.875 3C6.52576 3 3 6.52576 3 10.875C3 15.2242 6.52576 18.75 10.875 18.75Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2737.  <path d="M16.4434 16.4453L20.9997 21.0016" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2738. </svg>
  2739. </a><a
  2740.        href="/cart"
  2741.        class="cart-drawer-button flex items-center justify-center relative"
  2742.        aria-controls="CartDrawer"
  2743.      ><svg
  2744.    viewBox="0 0 24 24"
  2745.    fill="none"
  2746.    class="icon icon-shopping-cart icon--large"
  2747.    xmlns="http://www.w3.org/2000/svg"
  2748.  >
  2749.    <path d="M7.5 21.75C8.32843 21.75 9 21.0784 9 20.25C9 19.4216 8.32843 18.75 7.5 18.75C6.67157 18.75 6 19.4216 6 20.25C6 21.0784 6.67157 21.75 7.5 21.75Z" fill="currentColor"/>
  2750.    <path d="M17.25 21.75C18.0784 21.75 18.75 21.0784 18.75 20.25C18.75 19.4216 18.0784 18.75 17.25 18.75C16.4216 18.75 15.75 19.4216 15.75 20.25C15.75 21.0784 16.4216 21.75 17.25 21.75Z" fill="currentColor"/>
  2751.    <path d="M3.96469 6.75H21L18.3262 15.4416C18.2318 15.7482 18.0415 16.0165 17.7833 16.207C17.5252 16.3975 17.2127 16.5002 16.8919 16.5H7.88156C7.55556 16.5001 7.23839 16.3941 6.97806 16.1978C6.71772 16.0016 6.5284 15.7259 6.43875 15.4125L3.04781 3.54375C3.00301 3.38711 2.90842 3.24932 2.77835 3.15122C2.64828 3.05311 2.4898 3.00003 2.32687 3H0.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2752.  </svg><span class="visually-hidden">Cart</span>
  2753.        <cart-count
  2754.          class="cart-count cart-count--absolute font-body-bolder"
  2755.          aria-label="0 items"
  2756.          
  2757.            hidden
  2758.          
  2759.        >0</cart-count>
  2760.      </a><button
  2761.          class="menu-drawer-button btn btn--inherit flex items-center justify-center lg:hidden hidden"
  2762.          aria-controls="MenuDrawer"
  2763.          aria-expanded="false"
  2764.        ><svg
  2765.  class="icon icon-hamburger icon--large"
  2766.  viewBox="0 0 21 20"
  2767.  fill="none"
  2768.  xmlns="http://www.w3.org/2000/svg"
  2769. >
  2770.  <path d="M3.76807 10.0078L17.5181 10.007" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2771.  <path d="M3.76807 5.00781L17.5181 5.00699" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2772.  <path d="M3.76855 15.0078L17.5186 15.007" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2773. </svg>
  2774. </button></div>
  2775.  </div>
  2776. </header>
  2777. <div class="fixed-overlay z-10"></div><style data-shopify>
  2778.  #MenuDrawer {
  2779.    --logo-width: 180px;
  2780.    --logo-width-mobile: 140px;
  2781.  }
  2782. </style>
  2783. <menu-drawer id="MenuDrawer" class="menu-drawer drawer drawer--left" hidden>
  2784.  <div class="fixed-overlay" aria-controls="MenuDrawer"></div>
  2785.  <div class="drawer__inner flex flex-col w-full h-full overflow-hidden">
  2786.    <div class="drawer__header menu-drawer__header flex items-center justify-between">
  2787.      <a
  2788.        href="/"
  2789.        class="h3 relative flex header__logo--image"
  2790.      ><img
  2791.            srcset="//mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=140 1x, //mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=280 2x"
  2792.            src="//mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=140"
  2793.            loading="eager"
  2794.            width="700"
  2795.            height="139"
  2796.            alt="my mimi"
  2797.          ></a>
  2798.      <button class="drawer__close btn btn--inherit" aria-controls="MenuDrawer"><svg
  2799.  xmlns="http://www.w3.org/2000/svg"
  2800.  aria-hidden="true"
  2801.  focusable="false"
  2802.  class="icon icon-close icon--large"
  2803.  fill="none"
  2804.  viewBox="0 0 24 24"
  2805. >
  2806.  <path d="M18.75 5.13496L5.25 18.8544" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2807.  <path d="M18.75 18.8544L5.25 5.13496" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2808. </svg>
  2809. </button>
  2810.    </div>
  2811.    <div class="drawer__content menu-drawer__content flex-grow flex flex-col h-full w-full">
  2812.      <nav class="overflow-hidden flex-grow" role="navigation">
  2813.        <ul class="menu-drawer__menus v-scrollable relative w-full h-full" data-parent><li class="menu-drawer__item"><a href="/" class="menu-drawer__item-link flex items-center justify-between">Home</a></li><li class="menu-drawer__item"><details is="menu-drawer-details" level="top">
  2814.  <summary class="menu-drawer__item-link flex items-center justify-between">
  2815.    <span>Learn</span><svg
  2816.  class="icon icon-arrow icon--medium"
  2817.  viewBox="0 0 20 20"
  2818.  fill="none"
  2819.  xmlns="http://www.w3.org/2000/svg"
  2820. >
  2821.  <path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2822. </svg>
  2823. </summary>
  2824.  <div class="menu-drawer__submenu absolute z-1 flex flex-col w-full h-full" data-parent>
  2825.    <button type="button" class="menu-drawer__item-back-link font-navigation flex items-center gap-2 w-full"><svg
  2826.  class="icon icon-arrow icon--small"
  2827.  viewBox="0 0 20 20"
  2828.  fill="none"
  2829.  xmlns="http://www.w3.org/2000/svg"
  2830. >
  2831.  <path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2832. </svg>
  2833. Learn
  2834.    </button>
  2835.    <ul class="flex flex-col h-full v-scrollable" data-parent role="list"><li class="menu-drawer__item" level="child"><a
  2836.              href="https://mymimi.com.au/pages/menstrual-disc"
  2837.              class="menu-drawer__item-link flex items-center justify-between"
  2838.            >Start Here</a></li><li class="menu-drawer__item" level="child"><a
  2839.              href="/pages/frequently-asked-questions"
  2840.              class="menu-drawer__item-link flex items-center justify-between"
  2841.            >FAQ</a></li><li class="menu-drawer__item" level="child"><a
  2842.              href="/pages/articles"
  2843.              class="menu-drawer__item-link flex items-center justify-between"
  2844.            >Articles</a></li></ul>
  2845.  </div>
  2846. </details>
  2847. </li><li class="menu-drawer__item"><a href="/collections/shop" class="menu-drawer__item-link flex items-center justify-between">Shop</a></li></ul>
  2848.      </nav>
  2849.      <div class="drawer__footer menu-drawer__footer flex justify-center flex-col gap-y-5">
  2850.        <div class="grid gap-3"><div class="menu-drawer__localization-form flex justify-center flex-wrap gap-x-6 gap-y-4"><link rel="stylesheet" href="//mymimi.com.au/cdn/shop/t/11/assets/component-country-flag.css?v=34440972015563471671738695059" media="print" onload="this.media='all'">
  2851.  
  2852.  
  2853.  <div class="country-switcher " style="--f-max-width: 220px">
  2854.    <noscript><form method="post" action="/localization" id="country-32_NoScript" accept-charset="UTF-8" class="selectors-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/" /><h2 class="visually-hidden" id="CountryLabelNoScript-country-32">Country/region</h2>
  2855.        <div class="form-group">
  2856.          <select
  2857.            class="localization-selector form-control"
  2858.            name="country_code"
  2859.            aria-labelledby="CountryLabelNoScript-country-32"
  2860.          ><option
  2861.                value="AF"
  2862.                
  2863.              >
  2864.                Afghanistan (AFN
  2865.                ؋)
  2866.              </option><option
  2867.                value="AX"
  2868.                
  2869.              >
  2870.                Åland Islands (EUR
  2871.                €)
  2872.              </option><option
  2873.                value="AL"
  2874.                
  2875.              >
  2876.                Albania (ALL
  2877.                L)
  2878.              </option><option
  2879.                value="DZ"
  2880.                
  2881.              >
  2882.                Algeria (DZD
  2883.                د.ج)
  2884.              </option><option
  2885.                value="AD"
  2886.                
  2887.              >
  2888.                Andorra (EUR
  2889.                €)
  2890.              </option><option
  2891.                value="AO"
  2892.                
  2893.              >
  2894.                Angola (AUD
  2895.                $)
  2896.              </option><option
  2897.                value="AI"
  2898.                
  2899.              >
  2900.                Anguilla (XCD
  2901.                $)
  2902.              </option><option
  2903.                value="AG"
  2904.                
  2905.              >
  2906.                Antigua &amp; Barbuda (XCD
  2907.                $)
  2908.              </option><option
  2909.                value="AR"
  2910.                
  2911.              >
  2912.                Argentina (AUD
  2913.                $)
  2914.              </option><option
  2915.                value="AM"
  2916.                
  2917.              >
  2918.                Armenia (AMD
  2919.                դր.)
  2920.              </option><option
  2921.                value="AW"
  2922.                
  2923.              >
  2924.                Aruba (AWG
  2925.                ƒ)
  2926.              </option><option
  2927.                value="AC"
  2928.                
  2929.              >
  2930.                Ascension Island (SHP
  2931.                £)
  2932.              </option><option
  2933.                value="AU"
  2934.                
  2935.                  selected
  2936.                
  2937.              >
  2938.                Australia (AUD
  2939.                $)
  2940.              </option><option
  2941.                value="AT"
  2942.                
  2943.              >
  2944.                Austria (EUR
  2945.                €)
  2946.              </option><option
  2947.                value="AZ"
  2948.                
  2949.              >
  2950.                Azerbaijan (AZN
  2951.                ₼)
  2952.              </option><option
  2953.                value="BS"
  2954.                
  2955.              >
  2956.                Bahamas (BSD
  2957.                $)
  2958.              </option><option
  2959.                value="BH"
  2960.                
  2961.              >
  2962.                Bahrain (AUD
  2963.                $)
  2964.              </option><option
  2965.                value="BD"
  2966.                
  2967.              >
  2968.                Bangladesh (BDT
  2969.                ৳)
  2970.              </option><option
  2971.                value="BB"
  2972.                
  2973.              >
  2974.                Barbados (BBD
  2975.                $)
  2976.              </option><option
  2977.                value="BY"
  2978.                
  2979.              >
  2980.                Belarus (AUD
  2981.                $)
  2982.              </option><option
  2983.                value="BE"
  2984.                
  2985.              >
  2986.                Belgium (EUR
  2987.                €)
  2988.              </option><option
  2989.                value="BZ"
  2990.                
  2991.              >
  2992.                Belize (BZD
  2993.                $)
  2994.              </option><option
  2995.                value="BJ"
  2996.                
  2997.              >
  2998.                Benin (XOF
  2999.                Fr)
  3000.              </option><option
  3001.                value="BM"
  3002.                
  3003.              >
  3004.                Bermuda (USD
  3005.                $)
  3006.              </option><option
  3007.                value="BT"
  3008.                
  3009.              >
  3010.                Bhutan (AUD
  3011.                $)
  3012.              </option><option
  3013.                value="BO"
  3014.                
  3015.              >
  3016.                Bolivia (BOB
  3017.                Bs.)
  3018.              </option><option
  3019.                value="BA"
  3020.                
  3021.              >
  3022.                Bosnia &amp; Herzegovina (BAM
  3023.                КМ)
  3024.              </option><option
  3025.                value="BW"
  3026.                
  3027.              >
  3028.                Botswana (BWP
  3029.                P)
  3030.              </option><option
  3031.                value="BR"
  3032.                
  3033.              >
  3034.                Brazil (AUD
  3035.                $)
  3036.              </option><option
  3037.                value="IO"
  3038.                
  3039.              >
  3040.                British Indian Ocean Territory (USD
  3041.                $)
  3042.              </option><option
  3043.                value="VG"
  3044.                
  3045.              >
  3046.                British Virgin Islands (USD
  3047.                $)
  3048.              </option><option
  3049.                value="BN"
  3050.                
  3051.              >
  3052.                Brunei (BND
  3053.                $)
  3054.              </option><option
  3055.                value="BG"
  3056.                
  3057.              >
  3058.                Bulgaria (BGN
  3059.                лв.)
  3060.              </option><option
  3061.                value="BF"
  3062.                
  3063.              >
  3064.                Burkina Faso (XOF
  3065.                Fr)
  3066.              </option><option
  3067.                value="BI"
  3068.                
  3069.              >
  3070.                Burundi (BIF
  3071.                Fr)
  3072.              </option><option
  3073.                value="KH"
  3074.                
  3075.              >
  3076.                Cambodia (KHR
  3077.                ៛)
  3078.              </option><option
  3079.                value="CM"
  3080.                
  3081.              >
  3082.                Cameroon (XAF
  3083.                CFA)
  3084.              </option><option
  3085.                value="CA"
  3086.                
  3087.              >
  3088.                Canada (CAD
  3089.                $)
  3090.              </option><option
  3091.                value="CV"
  3092.                
  3093.              >
  3094.                Cape Verde (CVE
  3095.                $)
  3096.              </option><option
  3097.                value="BQ"
  3098.                
  3099.              >
  3100.                Caribbean Netherlands (USD
  3101.                $)
  3102.              </option><option
  3103.                value="KY"
  3104.                
  3105.              >
  3106.                Cayman Islands (KYD
  3107.                $)
  3108.              </option><option
  3109.                value="CF"
  3110.                
  3111.              >
  3112.                Central African Republic (XAF
  3113.                CFA)
  3114.              </option><option
  3115.                value="TD"
  3116.                
  3117.              >
  3118.                Chad (XAF
  3119.                CFA)
  3120.              </option><option
  3121.                value="CL"
  3122.                
  3123.              >
  3124.                Chile (AUD
  3125.                $)
  3126.              </option><option
  3127.                value="CN"
  3128.                
  3129.              >
  3130.                China (CNY
  3131.                ¥)
  3132.              </option><option
  3133.                value="CX"
  3134.                
  3135.              >
  3136.                Christmas Island (AUD
  3137.                $)
  3138.              </option><option
  3139.                value="CC"
  3140.                
  3141.              >
  3142.                Cocos (Keeling) Islands (AUD
  3143.                $)
  3144.              </option><option
  3145.                value="CO"
  3146.                
  3147.              >
  3148.                Colombia (AUD
  3149.                $)
  3150.              </option><option
  3151.                value="KM"
  3152.                
  3153.              >
  3154.                Comoros (KMF
  3155.                Fr)
  3156.              </option><option
  3157.                value="CG"
  3158.                
  3159.              >
  3160.                Congo - Brazzaville (XAF
  3161.                CFA)
  3162.              </option><option
  3163.                value="CD"
  3164.                
  3165.              >
  3166.                Congo - Kinshasa (CDF
  3167.                Fr)
  3168.              </option><option
  3169.                value="CK"
  3170.                
  3171.              >
  3172.                Cook Islands (NZD
  3173.                $)
  3174.              </option><option
  3175.                value="CR"
  3176.                
  3177.              >
  3178.                Costa Rica (CRC
  3179.                ₡)
  3180.              </option><option
  3181.                value="CI"
  3182.                
  3183.              >
  3184.                Côte d’Ivoire (XOF
  3185.                Fr)
  3186.              </option><option
  3187.                value="HR"
  3188.                
  3189.              >
  3190.                Croatia (EUR
  3191.                €)
  3192.              </option><option
  3193.                value="CW"
  3194.                
  3195.              >
  3196.                Curaçao (ANG
  3197.                ƒ)
  3198.              </option><option
  3199.                value="CY"
  3200.                
  3201.              >
  3202.                Cyprus (EUR
  3203.                €)
  3204.              </option><option
  3205.                value="CZ"
  3206.                
  3207.              >
  3208.                Czechia (CZK
  3209.                Kč)
  3210.              </option><option
  3211.                value="DK"
  3212.                
  3213.              >
  3214.                Denmark (DKK
  3215.                kr.)
  3216.              </option><option
  3217.                value="DJ"
  3218.                
  3219.              >
  3220.                Djibouti (DJF
  3221.                Fdj)
  3222.              </option><option
  3223.                value="DM"
  3224.                
  3225.              >
  3226.                Dominica (XCD
  3227.                $)
  3228.              </option><option
  3229.                value="DO"
  3230.                
  3231.              >
  3232.                Dominican Republic (DOP
  3233.                $)
  3234.              </option><option
  3235.                value="EC"
  3236.                
  3237.              >
  3238.                Ecuador (USD
  3239.                $)
  3240.              </option><option
  3241.                value="EG"
  3242.                
  3243.              >
  3244.                Egypt (EGP
  3245.                ج.م)
  3246.              </option><option
  3247.                value="SV"
  3248.                
  3249.              >
  3250.                El Salvador (USD
  3251.                $)
  3252.              </option><option
  3253.                value="GQ"
  3254.                
  3255.              >
  3256.                Equatorial Guinea (XAF
  3257.                CFA)
  3258.              </option><option
  3259.                value="ER"
  3260.                
  3261.              >
  3262.                Eritrea (AUD
  3263.                $)
  3264.              </option><option
  3265.                value="EE"
  3266.                
  3267.              >
  3268.                Estonia (EUR
  3269.                €)
  3270.              </option><option
  3271.                value="SZ"
  3272.                
  3273.              >
  3274.                Eswatini (AUD
  3275.                $)
  3276.              </option><option
  3277.                value="ET"
  3278.                
  3279.              >
  3280.                Ethiopia (ETB
  3281.                Br)
  3282.              </option><option
  3283.                value="FK"
  3284.                
  3285.              >
  3286.                Falkland Islands (FKP
  3287.                £)
  3288.              </option><option
  3289.                value="FO"
  3290.                
  3291.              >
  3292.                Faroe Islands (DKK
  3293.                kr.)
  3294.              </option><option
  3295.                value="FJ"
  3296.                
  3297.              >
  3298.                Fiji (FJD
  3299.                $)
  3300.              </option><option
  3301.                value="FI"
  3302.                
  3303.              >
  3304.                Finland (EUR
  3305.                €)
  3306.              </option><option
  3307.                value="FR"
  3308.                
  3309.              >
  3310.                France (EUR
  3311.                €)
  3312.              </option><option
  3313.                value="GF"
  3314.                
  3315.              >
  3316.                French Guiana (EUR
  3317.                €)
  3318.              </option><option
  3319.                value="PF"
  3320.                
  3321.              >
  3322.                French Polynesia (XPF
  3323.                Fr)
  3324.              </option><option
  3325.                value="TF"
  3326.                
  3327.              >
  3328.                French Southern Territories (EUR
  3329.                €)
  3330.              </option><option
  3331.                value="GA"
  3332.                
  3333.              >
  3334.                Gabon (XOF
  3335.                Fr)
  3336.              </option><option
  3337.                value="GM"
  3338.                
  3339.              >
  3340.                Gambia (GMD
  3341.                D)
  3342.              </option><option
  3343.                value="GE"
  3344.                
  3345.              >
  3346.                Georgia (AUD
  3347.                $)
  3348.              </option><option
  3349.                value="DE"
  3350.                
  3351.              >
  3352.                Germany (EUR
  3353.                €)
  3354.              </option><option
  3355.                value="GH"
  3356.                
  3357.              >
  3358.                Ghana (AUD
  3359.                $)
  3360.              </option><option
  3361.                value="GI"
  3362.                
  3363.              >
  3364.                Gibraltar (GBP
  3365.                £)
  3366.              </option><option
  3367.                value="GR"
  3368.                
  3369.              >
  3370.                Greece (EUR
  3371.                €)
  3372.              </option><option
  3373.                value="GL"
  3374.                
  3375.              >
  3376.                Greenland (DKK
  3377.                kr.)
  3378.              </option><option
  3379.                value="GD"
  3380.                
  3381.              >
  3382.                Grenada (XCD
  3383.                $)
  3384.              </option><option
  3385.                value="GP"
  3386.                
  3387.              >
  3388.                Guadeloupe (EUR
  3389.                €)
  3390.              </option><option
  3391.                value="GT"
  3392.                
  3393.              >
  3394.                Guatemala (GTQ
  3395.                Q)
  3396.              </option><option
  3397.                value="GG"
  3398.                
  3399.              >
  3400.                Guernsey (GBP
  3401.                £)
  3402.              </option><option
  3403.                value="GN"
  3404.                
  3405.              >
  3406.                Guinea (GNF
  3407.                Fr)
  3408.              </option><option
  3409.                value="GW"
  3410.                
  3411.              >
  3412.                Guinea-Bissau (XOF
  3413.                Fr)
  3414.              </option><option
  3415.                value="GY"
  3416.                
  3417.              >
  3418.                Guyana (GYD
  3419.                $)
  3420.              </option><option
  3421.                value="HT"
  3422.                
  3423.              >
  3424.                Haiti (AUD
  3425.                $)
  3426.              </option><option
  3427.                value="HN"
  3428.                
  3429.              >
  3430.                Honduras (HNL
  3431.                L)
  3432.              </option><option
  3433.                value="HK"
  3434.                
  3435.              >
  3436.                Hong Kong SAR (HKD
  3437.                $)
  3438.              </option><option
  3439.                value="HU"
  3440.                
  3441.              >
  3442.                Hungary (HUF
  3443.                Ft)
  3444.              </option><option
  3445.                value="IS"
  3446.                
  3447.              >
  3448.                Iceland (ISK
  3449.                kr)
  3450.              </option><option
  3451.                value="IN"
  3452.                
  3453.              >
  3454.                India (INR
  3455.                ₹)
  3456.              </option><option
  3457.                value="ID"
  3458.                
  3459.              >
  3460.                Indonesia (IDR
  3461.                Rp)
  3462.              </option><option
  3463.                value="IQ"
  3464.                
  3465.              >
  3466.                Iraq (AUD
  3467.                $)
  3468.              </option><option
  3469.                value="IE"
  3470.                
  3471.              >
  3472.                Ireland (EUR
  3473.                €)
  3474.              </option><option
  3475.                value="IM"
  3476.                
  3477.              >
  3478.                Isle of Man (GBP
  3479.                £)
  3480.              </option><option
  3481.                value="IL"
  3482.                
  3483.              >
  3484.                Israel (ILS
  3485.                ₪)
  3486.              </option><option
  3487.                value="IT"
  3488.                
  3489.              >
  3490.                Italy (EUR
  3491.                €)
  3492.              </option><option
  3493.                value="JM"
  3494.                
  3495.              >
  3496.                Jamaica (JMD
  3497.                $)
  3498.              </option><option
  3499.                value="JP"
  3500.                
  3501.              >
  3502.                Japan (JPY
  3503.                ¥)
  3504.              </option><option
  3505.                value="JE"
  3506.                
  3507.              >
  3508.                Jersey (AUD
  3509.                $)
  3510.              </option><option
  3511.                value="JO"
  3512.                
  3513.              >
  3514.                Jordan (AUD
  3515.                $)
  3516.              </option><option
  3517.                value="KZ"
  3518.                
  3519.              >
  3520.                Kazakhstan (KZT
  3521.                ₸)
  3522.              </option><option
  3523.                value="KE"
  3524.                
  3525.              >
  3526.                Kenya (KES
  3527.                KSh)
  3528.              </option><option
  3529.                value="KI"
  3530.                
  3531.              >
  3532.                Kiribati (AUD
  3533.                $)
  3534.              </option><option
  3535.                value="XK"
  3536.                
  3537.              >
  3538.                Kosovo (EUR
  3539.                €)
  3540.              </option><option
  3541.                value="KW"
  3542.                
  3543.              >
  3544.                Kuwait (AUD
  3545.                $)
  3546.              </option><option
  3547.                value="KG"
  3548.                
  3549.              >
  3550.                Kyrgyzstan (KGS
  3551.                som)
  3552.              </option><option
  3553.                value="LA"
  3554.                
  3555.              >
  3556.                Laos (LAK
  3557.                ₭)
  3558.              </option><option
  3559.                value="LV"
  3560.                
  3561.              >
  3562.                Latvia (EUR
  3563.                €)
  3564.              </option><option
  3565.                value="LB"
  3566.                
  3567.              >
  3568.                Lebanon (LBP
  3569.                ل.ل)
  3570.              </option><option
  3571.                value="LS"
  3572.                
  3573.              >
  3574.                Lesotho (AUD
  3575.                $)
  3576.              </option><option
  3577.                value="LR"
  3578.                
  3579.              >
  3580.                Liberia (AUD
  3581.                $)
  3582.              </option><option
  3583.                value="LY"
  3584.                
  3585.              >
  3586.                Libya (AUD
  3587.                $)
  3588.              </option><option
  3589.                value="LI"
  3590.                
  3591.              >
  3592.                Liechtenstein (CHF
  3593.                CHF)
  3594.              </option><option
  3595.                value="LT"
  3596.                
  3597.              >
  3598.                Lithuania (EUR
  3599.                €)
  3600.              </option><option
  3601.                value="LU"
  3602.                
  3603.              >
  3604.                Luxembourg (EUR
  3605.                €)
  3606.              </option><option
  3607.                value="MO"
  3608.                
  3609.              >
  3610.                Macao SAR (MOP
  3611.                P)
  3612.              </option><option
  3613.                value="MG"
  3614.                
  3615.              >
  3616.                Madagascar (AUD
  3617.                $)
  3618.              </option><option
  3619.                value="MW"
  3620.                
  3621.              >
  3622.                Malawi (MWK
  3623.                MK)
  3624.              </option><option
  3625.                value="MY"
  3626.                
  3627.              >
  3628.                Malaysia (MYR
  3629.                RM)
  3630.              </option><option
  3631.                value="MV"
  3632.                
  3633.              >
  3634.                Maldives (MVR
  3635.                MVR)
  3636.              </option><option
  3637.                value="ML"
  3638.                
  3639.              >
  3640.                Mali (XOF
  3641.                Fr)
  3642.              </option><option
  3643.                value="MT"
  3644.                
  3645.              >
  3646.                Malta (EUR
  3647.                €)
  3648.              </option><option
  3649.                value="MQ"
  3650.                
  3651.              >
  3652.                Martinique (EUR
  3653.                €)
  3654.              </option><option
  3655.                value="MR"
  3656.                
  3657.              >
  3658.                Mauritania (AUD
  3659.                $)
  3660.              </option><option
  3661.                value="MU"
  3662.                
  3663.              >
  3664.                Mauritius (MUR
  3665.                ₨)
  3666.              </option><option
  3667.                value="YT"
  3668.                
  3669.              >
  3670.                Mayotte (EUR
  3671.                €)
  3672.              </option><option
  3673.                value="MX"
  3674.                
  3675.              >
  3676.                Mexico (AUD
  3677.                $)
  3678.              </option><option
  3679.                value="MD"
  3680.                
  3681.              >
  3682.                Moldova (MDL
  3683.                L)
  3684.              </option><option
  3685.                value="MC"
  3686.                
  3687.              >
  3688.                Monaco (EUR
  3689.                €)
  3690.              </option><option
  3691.                value="MN"
  3692.                
  3693.              >
  3694.                Mongolia (MNT
  3695.                ₮)
  3696.              </option><option
  3697.                value="ME"
  3698.                
  3699.              >
  3700.                Montenegro (EUR
  3701.                €)
  3702.              </option><option
  3703.                value="MS"
  3704.                
  3705.              >
  3706.                Montserrat (XCD
  3707.                $)
  3708.              </option><option
  3709.                value="MA"
  3710.                
  3711.              >
  3712.                Morocco (MAD
  3713.                د.م.)
  3714.              </option><option
  3715.                value="MZ"
  3716.                
  3717.              >
  3718.                Mozambique (AUD
  3719.                $)
  3720.              </option><option
  3721.                value="MM"
  3722.                
  3723.              >
  3724.                Myanmar (Burma) (MMK
  3725.                K)
  3726.              </option><option
  3727.                value="NA"
  3728.                
  3729.              >
  3730.                Namibia (AUD
  3731.                $)
  3732.              </option><option
  3733.                value="NR"
  3734.                
  3735.              >
  3736.                Nauru (AUD
  3737.                $)
  3738.              </option><option
  3739.                value="NP"
  3740.                
  3741.              >
  3742.                Nepal (NPR
  3743.                Rs.)
  3744.              </option><option
  3745.                value="NL"
  3746.                
  3747.              >
  3748.                Netherlands (EUR
  3749.                €)
  3750.              </option><option
  3751.                value="NC"
  3752.                
  3753.              >
  3754.                New Caledonia (XPF
  3755.                Fr)
  3756.              </option><option
  3757.                value="NZ"
  3758.                
  3759.              >
  3760.                New Zealand (NZD
  3761.                $)
  3762.              </option><option
  3763.                value="NI"
  3764.                
  3765.              >
  3766.                Nicaragua (NIO
  3767.                C$)
  3768.              </option><option
  3769.                value="NE"
  3770.                
  3771.              >
  3772.                Niger (XOF
  3773.                Fr)
  3774.              </option><option
  3775.                value="NG"
  3776.                
  3777.              >
  3778.                Nigeria (NGN
  3779.                ₦)
  3780.              </option><option
  3781.                value="NU"
  3782.                
  3783.              >
  3784.                Niue (NZD
  3785.                $)
  3786.              </option><option
  3787.                value="NF"
  3788.                
  3789.              >
  3790.                Norfolk Island (AUD
  3791.                $)
  3792.              </option><option
  3793.                value="MK"
  3794.                
  3795.              >
  3796.                North Macedonia (MKD
  3797.                ден)
  3798.              </option><option
  3799.                value="NO"
  3800.                
  3801.              >
  3802.                Norway (AUD
  3803.                $)
  3804.              </option><option
  3805.                value="OM"
  3806.                
  3807.              >
  3808.                Oman (AUD
  3809.                $)
  3810.              </option><option
  3811.                value="PK"
  3812.                
  3813.              >
  3814.                Pakistan (PKR
  3815.                ₨)
  3816.              </option><option
  3817.                value="PS"
  3818.                
  3819.              >
  3820.                Palestinian Territories (ILS
  3821.                ₪)
  3822.              </option><option
  3823.                value="PA"
  3824.                
  3825.              >
  3826.                Panama (USD
  3827.                $)
  3828.              </option><option
  3829.                value="PG"
  3830.                
  3831.              >
  3832.                Papua New Guinea (PGK
  3833.                K)
  3834.              </option><option
  3835.                value="PY"
  3836.                
  3837.              >
  3838.                Paraguay (PYG
  3839.                ₲)
  3840.              </option><option
  3841.                value="PE"
  3842.                
  3843.              >
  3844.                Peru (PEN
  3845.                S/)
  3846.              </option><option
  3847.                value="PH"
  3848.                
  3849.              >
  3850.                Philippines (PHP
  3851.                ₱)
  3852.              </option><option
  3853.                value="PN"
  3854.                
  3855.              >
  3856.                Pitcairn Islands (NZD
  3857.                $)
  3858.              </option><option
  3859.                value="PL"
  3860.                
  3861.              >
  3862.                Poland (PLN
  3863.                zł)
  3864.              </option><option
  3865.                value="PT"
  3866.                
  3867.              >
  3868.                Portugal (EUR
  3869.                €)
  3870.              </option><option
  3871.                value="QA"
  3872.                
  3873.              >
  3874.                Qatar (QAR
  3875.                ر.ق)
  3876.              </option><option
  3877.                value="RE"
  3878.                
  3879.              >
  3880.                Réunion (EUR
  3881.                €)
  3882.              </option><option
  3883.                value="RO"
  3884.                
  3885.              >
  3886.                Romania (RON
  3887.                Lei)
  3888.              </option><option
  3889.                value="RU"
  3890.                
  3891.              >
  3892.                Russia (AUD
  3893.                $)
  3894.              </option><option
  3895.                value="RW"
  3896.                
  3897.              >
  3898.                Rwanda (RWF
  3899.                FRw)
  3900.              </option><option
  3901.                value="WS"
  3902.                
  3903.              >
  3904.                Samoa (WST
  3905.                T)
  3906.              </option><option
  3907.                value="SM"
  3908.                
  3909.              >
  3910.                San Marino (EUR
  3911.                €)
  3912.              </option><option
  3913.                value="ST"
  3914.                
  3915.              >
  3916.                São Tomé &amp; Príncipe (STD
  3917.                Db)
  3918.              </option><option
  3919.                value="SA"
  3920.                
  3921.              >
  3922.                Saudi Arabia (SAR
  3923.                ر.س)
  3924.              </option><option
  3925.                value="SN"
  3926.                
  3927.              >
  3928.                Senegal (XOF
  3929.                Fr)
  3930.              </option><option
  3931.                value="RS"
  3932.                
  3933.              >
  3934.                Serbia (RSD
  3935.                РСД)
  3936.              </option><option
  3937.                value="SC"
  3938.                
  3939.              >
  3940.                Seychelles (AUD
  3941.                $)
  3942.              </option><option
  3943.                value="SL"
  3944.                
  3945.              >
  3946.                Sierra Leone (SLL
  3947.                Le)
  3948.              </option><option
  3949.                value="SG"
  3950.                
  3951.              >
  3952.                Singapore (SGD
  3953.                $)
  3954.              </option><option
  3955.                value="SX"
  3956.                
  3957.              >
  3958.                Sint Maarten (ANG
  3959.                ƒ)
  3960.              </option><option
  3961.                value="SK"
  3962.                
  3963.              >
  3964.                Slovakia (EUR
  3965.                €)
  3966.              </option><option
  3967.                value="SI"
  3968.                
  3969.              >
  3970.                Slovenia (EUR
  3971.                €)
  3972.              </option><option
  3973.                value="SB"
  3974.                
  3975.              >
  3976.                Solomon Islands (SBD
  3977.                $)
  3978.              </option><option
  3979.                value="SO"
  3980.                
  3981.              >
  3982.                Somalia (AUD
  3983.                $)
  3984.              </option><option
  3985.                value="ZA"
  3986.                
  3987.              >
  3988.                South Africa (AUD
  3989.                $)
  3990.              </option><option
  3991.                value="GS"
  3992.                
  3993.              >
  3994.                South Georgia &amp; South Sandwich Islands (GBP
  3995.                £)
  3996.              </option><option
  3997.                value="SS"
  3998.                
  3999.              >
  4000.                South Sudan (AUD
  4001.                $)
  4002.              </option><option
  4003.                value="ES"
  4004.                
  4005.              >
  4006.                Spain (EUR
  4007.                €)
  4008.              </option><option
  4009.                value="LK"
  4010.                
  4011.              >
  4012.                Sri Lanka (LKR
  4013.                ₨)
  4014.              </option><option
  4015.                value="BL"
  4016.                
  4017.              >
  4018.                St. Barthélemy (EUR
  4019.                €)
  4020.              </option><option
  4021.                value="SH"
  4022.                
  4023.              >
  4024.                St. Helena (SHP
  4025.                £)
  4026.              </option><option
  4027.                value="KN"
  4028.                
  4029.              >
  4030.                St. Kitts &amp; Nevis (XCD
  4031.                $)
  4032.              </option><option
  4033.                value="LC"
  4034.                
  4035.              >
  4036.                St. Lucia (XCD
  4037.                $)
  4038.              </option><option
  4039.                value="MF"
  4040.                
  4041.              >
  4042.                St. Martin (EUR
  4043.                €)
  4044.              </option><option
  4045.                value="PM"
  4046.                
  4047.              >
  4048.                St. Pierre &amp; Miquelon (EUR
  4049.                €)
  4050.              </option><option
  4051.                value="VC"
  4052.                
  4053.              >
  4054.                St. Vincent &amp; Grenadines (XCD
  4055.                $)
  4056.              </option><option
  4057.                value="SD"
  4058.                
  4059.              >
  4060.                Sudan (AUD
  4061.                $)
  4062.              </option><option
  4063.                value="SR"
  4064.                
  4065.              >
  4066.                Suriname (AUD
  4067.                $)
  4068.              </option><option
  4069.                value="SJ"
  4070.                
  4071.              >
  4072.                Svalbard &amp; Jan Mayen (AUD
  4073.                $)
  4074.              </option><option
  4075.                value="SE"
  4076.                
  4077.              >
  4078.                Sweden (SEK
  4079.                kr)
  4080.              </option><option
  4081.                value="CH"
  4082.                
  4083.              >
  4084.                Switzerland (CHF
  4085.                CHF)
  4086.              </option><option
  4087.                value="TW"
  4088.                
  4089.              >
  4090.                Taiwan (TWD
  4091.                $)
  4092.              </option><option
  4093.                value="TJ"
  4094.                
  4095.              >
  4096.                Tajikistan (TJS
  4097.                ЅМ)
  4098.              </option><option
  4099.                value="TZ"
  4100.                
  4101.              >
  4102.                Tanzania (TZS
  4103.                Sh)
  4104.              </option><option
  4105.                value="TH"
  4106.                
  4107.              >
  4108.                Thailand (THB
  4109.                ฿)
  4110.              </option><option
  4111.                value="TL"
  4112.                
  4113.              >
  4114.                Timor-Leste (USD
  4115.                $)
  4116.              </option><option
  4117.                value="TG"
  4118.                
  4119.              >
  4120.                Togo (XOF
  4121.                Fr)
  4122.              </option><option
  4123.                value="TK"
  4124.                
  4125.              >
  4126.                Tokelau (NZD
  4127.                $)
  4128.              </option><option
  4129.                value="TO"
  4130.                
  4131.              >
  4132.                Tonga (TOP
  4133.                T$)
  4134.              </option><option
  4135.                value="TT"
  4136.                
  4137.              >
  4138.                Trinidad &amp; Tobago (TTD
  4139.                $)
  4140.              </option><option
  4141.                value="TA"
  4142.                
  4143.              >
  4144.                Tristan da Cunha (GBP
  4145.                £)
  4146.              </option><option
  4147.                value="TN"
  4148.                
  4149.              >
  4150.                Tunisia (AUD
  4151.                $)
  4152.              </option><option
  4153.                value="TR"
  4154.                
  4155.              >
  4156.                Türkiye (AUD
  4157.                $)
  4158.              </option><option
  4159.                value="TM"
  4160.                
  4161.              >
  4162.                Turkmenistan (AUD
  4163.                $)
  4164.              </option><option
  4165.                value="TC"
  4166.                
  4167.              >
  4168.                Turks &amp; Caicos Islands (USD
  4169.                $)
  4170.              </option><option
  4171.                value="TV"
  4172.                
  4173.              >
  4174.                Tuvalu (AUD
  4175.                $)
  4176.              </option><option
  4177.                value="UM"
  4178.                
  4179.              >
  4180.                U.S. Outlying Islands (USD
  4181.                $)
  4182.              </option><option
  4183.                value="UG"
  4184.                
  4185.              >
  4186.                Uganda (UGX
  4187.                USh)
  4188.              </option><option
  4189.                value="UA"
  4190.                
  4191.              >
  4192.                Ukraine (UAH
  4193.                ₴)
  4194.              </option><option
  4195.                value="AE"
  4196.                
  4197.              >
  4198.                United Arab Emirates (AED
  4199.                د.إ)
  4200.              </option><option
  4201.                value="GB"
  4202.                
  4203.              >
  4204.                United Kingdom (GBP
  4205.                £)
  4206.              </option><option
  4207.                value="UY"
  4208.                
  4209.              >
  4210.                Uruguay (UYU
  4211.                $U)
  4212.              </option><option
  4213.                value="UZ"
  4214.                
  4215.              >
  4216.                Uzbekistan (UZS
  4217.                so'm)
  4218.              </option><option
  4219.                value="VU"
  4220.                
  4221.              >
  4222.                Vanuatu (VUV
  4223.                Vt)
  4224.              </option><option
  4225.                value="VA"
  4226.                
  4227.              >
  4228.                Vatican City (EUR
  4229.                €)
  4230.              </option><option
  4231.                value="VE"
  4232.                
  4233.              >
  4234.                Venezuela (USD
  4235.                $)
  4236.              </option><option
  4237.                value="VN"
  4238.                
  4239.              >
  4240.                Vietnam (VND
  4241.                ₫)
  4242.              </option><option
  4243.                value="WF"
  4244.                
  4245.              >
  4246.                Wallis &amp; Futuna (XPF
  4247.                Fr)
  4248.              </option><option
  4249.                value="EH"
  4250.                
  4251.              >
  4252.                Western Sahara (MAD
  4253.                د.م.)
  4254.              </option><option
  4255.                value="YE"
  4256.                
  4257.              >
  4258.                Yemen (YER
  4259.                ﷼)
  4260.              </option><option
  4261.                value="ZM"
  4262.                
  4263.              >
  4264.                Zambia (AUD
  4265.                $)
  4266.              </option><option
  4267.                value="ZW"
  4268.                
  4269.              >
  4270.                Zimbabwe (USD
  4271.                $)
  4272.              </option></select>
  4273.          <button class="btn btn--with-icon btn--square" aria-label="Update country/region">
  4274.            <svg
  4275.  class="icon icon-arrow icon--small"
  4276.  viewBox="0 0 20 20"
  4277.  fill="none"
  4278.  xmlns="http://www.w3.org/2000/svg"
  4279. >
  4280.  <path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4281. </svg>
  4282.  
  4283.            <span class="visually-hidden">Update country/region</span>
  4284.          </button>
  4285.        </div></form></noscript>
  4286.  
  4287.    <localization-form
  4288.      class="disclosure no-js-hidden disclosure--up"
  4289.      data-disclosure-country
  4290.    ><form method="post" action="/localization" id="country-32" accept-charset="UTF-8" class="selectors-form" enctype="multipart/form-data" data-disclosure-form=""><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/" /><h2 class="visually-hidden" id="CountryLabel-country-32">Country/region</h2>
  4291.        <button
  4292.          type="button"
  4293.          class="disclosure__toggle text-normal font-body"
  4294.          aria-expanded="false"
  4295.          aria-controls="country-list"
  4296.          aria-describedby="CountryLabel-country-32"
  4297.          data-disclosure-toggle
  4298.        >
  4299.          <span class="f-country-flags f-country-flags--AU"></span>
  4300.          Australia (AUD
  4301.          $)
  4302.          <svg
  4303.  class="icon icon-arrow icon--small"
  4304.  viewBox="0 0 20 20"
  4305.  fill="none"
  4306.  xmlns="http://www.w3.org/2000/svg"
  4307. >
  4308.  <path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4309. </svg>
  4310.  
  4311.        </button>
  4312.        <ul class="disclosure-list v-scrollable text-left"><li class="disclosure-list__item">
  4313.              <a
  4314.                class="disclosure-list__option"
  4315.                href="#"
  4316.                
  4317.                data-value="AF"
  4318.                data-disclosure-option
  4319.              >
  4320.                <span class="f-country-flags f-country-flags--AF"></span>Afghanistan<span class="localization-form__currency"
  4321.                  >(AFN
  4322.                  ؋)</span
  4323.                >
  4324.              </a>
  4325.            </li><li class="disclosure-list__item">
  4326.              <a
  4327.                class="disclosure-list__option"
  4328.                href="#"
  4329.                
  4330.                data-value="AX"
  4331.                data-disclosure-option
  4332.              >
  4333.                <span class="f-country-flags f-country-flags--AX"></span>Åland Islands<span class="localization-form__currency"
  4334.                  >(EUR
  4335.                  €)</span
  4336.                >
  4337.              </a>
  4338.            </li><li class="disclosure-list__item">
  4339.              <a
  4340.                class="disclosure-list__option"
  4341.                href="#"
  4342.                
  4343.                data-value="AL"
  4344.                data-disclosure-option
  4345.              >
  4346.                <span class="f-country-flags f-country-flags--AL"></span>Albania<span class="localization-form__currency"
  4347.                  >(ALL
  4348.                  L)</span
  4349.                >
  4350.              </a>
  4351.            </li><li class="disclosure-list__item">
  4352.              <a
  4353.                class="disclosure-list__option"
  4354.                href="#"
  4355.                
  4356.                data-value="DZ"
  4357.                data-disclosure-option
  4358.              >
  4359.                <span class="f-country-flags f-country-flags--DZ"></span>Algeria<span class="localization-form__currency"
  4360.                  >(DZD
  4361.                  د.ج)</span
  4362.                >
  4363.              </a>
  4364.            </li><li class="disclosure-list__item">
  4365.              <a
  4366.                class="disclosure-list__option"
  4367.                href="#"
  4368.                
  4369.                data-value="AD"
  4370.                data-disclosure-option
  4371.              >
  4372.                <span class="f-country-flags f-country-flags--AD"></span>Andorra<span class="localization-form__currency"
  4373.                  >(EUR
  4374.                  €)</span
  4375.                >
  4376.              </a>
  4377.            </li><li class="disclosure-list__item">
  4378.              <a
  4379.                class="disclosure-list__option"
  4380.                href="#"
  4381.                
  4382.                data-value="AO"
  4383.                data-disclosure-option
  4384.              >
  4385.                <span class="f-country-flags f-country-flags--AO"></span>Angola<span class="localization-form__currency"
  4386.                  >(AUD
  4387.                  $)</span
  4388.                >
  4389.              </a>
  4390.            </li><li class="disclosure-list__item">
  4391.              <a
  4392.                class="disclosure-list__option"
  4393.                href="#"
  4394.                
  4395.                data-value="AI"
  4396.                data-disclosure-option
  4397.              >
  4398.                <span class="f-country-flags f-country-flags--AI"></span>Anguilla<span class="localization-form__currency"
  4399.                  >(XCD
  4400.                  $)</span
  4401.                >
  4402.              </a>
  4403.            </li><li class="disclosure-list__item">
  4404.              <a
  4405.                class="disclosure-list__option"
  4406.                href="#"
  4407.                
  4408.                data-value="AG"
  4409.                data-disclosure-option
  4410.              >
  4411.                <span class="f-country-flags f-country-flags--AG"></span>Antigua &amp; Barbuda<span class="localization-form__currency"
  4412.                  >(XCD
  4413.                  $)</span
  4414.                >
  4415.              </a>
  4416.            </li><li class="disclosure-list__item">
  4417.              <a
  4418.                class="disclosure-list__option"
  4419.                href="#"
  4420.                
  4421.                data-value="AR"
  4422.                data-disclosure-option
  4423.              >
  4424.                <span class="f-country-flags f-country-flags--AR"></span>Argentina<span class="localization-form__currency"
  4425.                  >(AUD
  4426.                  $)</span
  4427.                >
  4428.              </a>
  4429.            </li><li class="disclosure-list__item">
  4430.              <a
  4431.                class="disclosure-list__option"
  4432.                href="#"
  4433.                
  4434.                data-value="AM"
  4435.                data-disclosure-option
  4436.              >
  4437.                <span class="f-country-flags f-country-flags--AM"></span>Armenia<span class="localization-form__currency"
  4438.                  >(AMD
  4439.                  դր.)</span
  4440.                >
  4441.              </a>
  4442.            </li><li class="disclosure-list__item">
  4443.              <a
  4444.                class="disclosure-list__option"
  4445.                href="#"
  4446.                
  4447.                data-value="AW"
  4448.                data-disclosure-option
  4449.              >
  4450.                <span class="f-country-flags f-country-flags--AW"></span>Aruba<span class="localization-form__currency"
  4451.                  >(AWG
  4452.                  ƒ)</span
  4453.                >
  4454.              </a>
  4455.            </li><li class="disclosure-list__item">
  4456.              <a
  4457.                class="disclosure-list__option"
  4458.                href="#"
  4459.                
  4460.                data-value="AC"
  4461.                data-disclosure-option
  4462.              >
  4463.                <span class="f-country-flags f-country-flags--AC"></span>Ascension Island<span class="localization-form__currency"
  4464.                  >(SHP
  4465.                  £)</span
  4466.                >
  4467.              </a>
  4468.            </li><li class="disclosure-list__item disclosure-list__item--current">
  4469.              <a
  4470.                class="disclosure-list__option"
  4471.                href="#"
  4472.                
  4473.                  aria-current="true"
  4474.                
  4475.                data-value="AU"
  4476.                data-disclosure-option
  4477.              >
  4478.                <span class="f-country-flags f-country-flags--AU"></span>Australia<span class="localization-form__currency"
  4479.                  >(AUD
  4480.                  $)</span
  4481.                >
  4482.              </a>
  4483.            </li><li class="disclosure-list__item">
  4484.              <a
  4485.                class="disclosure-list__option"
  4486.                href="#"
  4487.                
  4488.                data-value="AT"
  4489.                data-disclosure-option
  4490.              >
  4491.                <span class="f-country-flags f-country-flags--AT"></span>Austria<span class="localization-form__currency"
  4492.                  >(EUR
  4493.                  €)</span
  4494.                >
  4495.              </a>
  4496.            </li><li class="disclosure-list__item">
  4497.              <a
  4498.                class="disclosure-list__option"
  4499.                href="#"
  4500.                
  4501.                data-value="AZ"
  4502.                data-disclosure-option
  4503.              >
  4504.                <span class="f-country-flags f-country-flags--AZ"></span>Azerbaijan<span class="localization-form__currency"
  4505.                  >(AZN
  4506.                  ₼)</span
  4507.                >
  4508.              </a>
  4509.            </li><li class="disclosure-list__item">
  4510.              <a
  4511.                class="disclosure-list__option"
  4512.                href="#"
  4513.                
  4514.                data-value="BS"
  4515.                data-disclosure-option
  4516.              >
  4517.                <span class="f-country-flags f-country-flags--BS"></span>Bahamas<span class="localization-form__currency"
  4518.                  >(BSD
  4519.                  $)</span
  4520.                >
  4521.              </a>
  4522.            </li><li class="disclosure-list__item">
  4523.              <a
  4524.                class="disclosure-list__option"
  4525.                href="#"
  4526.                
  4527.                data-value="BH"
  4528.                data-disclosure-option
  4529.              >
  4530.                <span class="f-country-flags f-country-flags--BH"></span>Bahrain<span class="localization-form__currency"
  4531.                  >(AUD
  4532.                  $)</span
  4533.                >
  4534.              </a>
  4535.            </li><li class="disclosure-list__item">
  4536.              <a
  4537.                class="disclosure-list__option"
  4538.                href="#"
  4539.                
  4540.                data-value="BD"
  4541.                data-disclosure-option
  4542.              >
  4543.                <span class="f-country-flags f-country-flags--BD"></span>Bangladesh<span class="localization-form__currency"
  4544.                  >(BDT
  4545.                  ৳)</span
  4546.                >
  4547.              </a>
  4548.            </li><li class="disclosure-list__item">
  4549.              <a
  4550.                class="disclosure-list__option"
  4551.                href="#"
  4552.                
  4553.                data-value="BB"
  4554.                data-disclosure-option
  4555.              >
  4556.                <span class="f-country-flags f-country-flags--BB"></span>Barbados<span class="localization-form__currency"
  4557.                  >(BBD
  4558.                  $)</span
  4559.                >
  4560.              </a>
  4561.            </li><li class="disclosure-list__item">
  4562.              <a
  4563.                class="disclosure-list__option"
  4564.                href="#"
  4565.                
  4566.                data-value="BY"
  4567.                data-disclosure-option
  4568.              >
  4569.                <span class="f-country-flags f-country-flags--BY"></span>Belarus<span class="localization-form__currency"
  4570.                  >(AUD
  4571.                  $)</span
  4572.                >
  4573.              </a>
  4574.            </li><li class="disclosure-list__item">
  4575.              <a
  4576.                class="disclosure-list__option"
  4577.                href="#"
  4578.                
  4579.                data-value="BE"
  4580.                data-disclosure-option
  4581.              >
  4582.                <span class="f-country-flags f-country-flags--BE"></span>Belgium<span class="localization-form__currency"
  4583.                  >(EUR
  4584.                  €)</span
  4585.                >
  4586.              </a>
  4587.            </li><li class="disclosure-list__item">
  4588.              <a
  4589.                class="disclosure-list__option"
  4590.                href="#"
  4591.                
  4592.                data-value="BZ"
  4593.                data-disclosure-option
  4594.              >
  4595.                <span class="f-country-flags f-country-flags--BZ"></span>Belize<span class="localization-form__currency"
  4596.                  >(BZD
  4597.                  $)</span
  4598.                >
  4599.              </a>
  4600.            </li><li class="disclosure-list__item">
  4601.              <a
  4602.                class="disclosure-list__option"
  4603.                href="#"
  4604.                
  4605.                data-value="BJ"
  4606.                data-disclosure-option
  4607.              >
  4608.                <span class="f-country-flags f-country-flags--BJ"></span>Benin<span class="localization-form__currency"
  4609.                  >(XOF
  4610.                  Fr)</span
  4611.                >
  4612.              </a>
  4613.            </li><li class="disclosure-list__item">
  4614.              <a
  4615.                class="disclosure-list__option"
  4616.                href="#"
  4617.                
  4618.                data-value="BM"
  4619.                data-disclosure-option
  4620.              >
  4621.                <span class="f-country-flags f-country-flags--BM"></span>Bermuda<span class="localization-form__currency"
  4622.                  >(USD
  4623.                  $)</span
  4624.                >
  4625.              </a>
  4626.            </li><li class="disclosure-list__item">
  4627.              <a
  4628.                class="disclosure-list__option"
  4629.                href="#"
  4630.                
  4631.                data-value="BT"
  4632.                data-disclosure-option
  4633.              >
  4634.                <span class="f-country-flags f-country-flags--BT"></span>Bhutan<span class="localization-form__currency"
  4635.                  >(AUD
  4636.                  $)</span
  4637.                >
  4638.              </a>
  4639.            </li><li class="disclosure-list__item">
  4640.              <a
  4641.                class="disclosure-list__option"
  4642.                href="#"
  4643.                
  4644.                data-value="BO"
  4645.                data-disclosure-option
  4646.              >
  4647.                <span class="f-country-flags f-country-flags--BO"></span>Bolivia<span class="localization-form__currency"
  4648.                  >(BOB
  4649.                  Bs.)</span
  4650.                >
  4651.              </a>
  4652.            </li><li class="disclosure-list__item">
  4653.              <a
  4654.                class="disclosure-list__option"
  4655.                href="#"
  4656.                
  4657.                data-value="BA"
  4658.                data-disclosure-option
  4659.              >
  4660.                <span class="f-country-flags f-country-flags--BA"></span>Bosnia &amp; Herzegovina<span class="localization-form__currency"
  4661.                  >(BAM
  4662.                  КМ)</span
  4663.                >
  4664.              </a>
  4665.            </li><li class="disclosure-list__item">
  4666.              <a
  4667.                class="disclosure-list__option"
  4668.                href="#"
  4669.                
  4670.                data-value="BW"
  4671.                data-disclosure-option
  4672.              >
  4673.                <span class="f-country-flags f-country-flags--BW"></span>Botswana<span class="localization-form__currency"
  4674.                  >(BWP
  4675.                  P)</span
  4676.                >
  4677.              </a>
  4678.            </li><li class="disclosure-list__item">
  4679.              <a
  4680.                class="disclosure-list__option"
  4681.                href="#"
  4682.                
  4683.                data-value="BR"
  4684.                data-disclosure-option
  4685.              >
  4686.                <span class="f-country-flags f-country-flags--BR"></span>Brazil<span class="localization-form__currency"
  4687.                  >(AUD
  4688.                  $)</span
  4689.                >
  4690.              </a>
  4691.            </li><li class="disclosure-list__item">
  4692.              <a
  4693.                class="disclosure-list__option"
  4694.                href="#"
  4695.                
  4696.                data-value="IO"
  4697.                data-disclosure-option
  4698.              >
  4699.                <span class="f-country-flags f-country-flags--IO"></span>British Indian Ocean Territory<span class="localization-form__currency"
  4700.                  >(USD
  4701.                  $)</span
  4702.                >
  4703.              </a>
  4704.            </li><li class="disclosure-list__item">
  4705.              <a
  4706.                class="disclosure-list__option"
  4707.                href="#"
  4708.                
  4709.                data-value="VG"
  4710.                data-disclosure-option
  4711.              >
  4712.                <span class="f-country-flags f-country-flags--VG"></span>British Virgin Islands<span class="localization-form__currency"
  4713.                  >(USD
  4714.                  $)</span
  4715.                >
  4716.              </a>
  4717.            </li><li class="disclosure-list__item">
  4718.              <a
  4719.                class="disclosure-list__option"
  4720.                href="#"
  4721.                
  4722.                data-value="BN"
  4723.                data-disclosure-option
  4724.              >
  4725.                <span class="f-country-flags f-country-flags--BN"></span>Brunei<span class="localization-form__currency"
  4726.                  >(BND
  4727.                  $)</span
  4728.                >
  4729.              </a>
  4730.            </li><li class="disclosure-list__item">
  4731.              <a
  4732.                class="disclosure-list__option"
  4733.                href="#"
  4734.                
  4735.                data-value="BG"
  4736.                data-disclosure-option
  4737.              >
  4738.                <span class="f-country-flags f-country-flags--BG"></span>Bulgaria<span class="localization-form__currency"
  4739.                  >(BGN
  4740.                  лв.)</span
  4741.                >
  4742.              </a>
  4743.            </li><li class="disclosure-list__item">
  4744.              <a
  4745.                class="disclosure-list__option"
  4746.                href="#"
  4747.                
  4748.                data-value="BF"
  4749.                data-disclosure-option
  4750.              >
  4751.                <span class="f-country-flags f-country-flags--BF"></span>Burkina Faso<span class="localization-form__currency"
  4752.                  >(XOF
  4753.                  Fr)</span
  4754.                >
  4755.              </a>
  4756.            </li><li class="disclosure-list__item">
  4757.              <a
  4758.                class="disclosure-list__option"
  4759.                href="#"
  4760.                
  4761.                data-value="BI"
  4762.                data-disclosure-option
  4763.              >
  4764.                <span class="f-country-flags f-country-flags--BI"></span>Burundi<span class="localization-form__currency"
  4765.                  >(BIF
  4766.                  Fr)</span
  4767.                >
  4768.              </a>
  4769.            </li><li class="disclosure-list__item">
  4770.              <a
  4771.                class="disclosure-list__option"
  4772.                href="#"
  4773.                
  4774.                data-value="KH"
  4775.                data-disclosure-option
  4776.              >
  4777.                <span class="f-country-flags f-country-flags--KH"></span>Cambodia<span class="localization-form__currency"
  4778.                  >(KHR
  4779.                  ៛)</span
  4780.                >
  4781.              </a>
  4782.            </li><li class="disclosure-list__item">
  4783.              <a
  4784.                class="disclosure-list__option"
  4785.                href="#"
  4786.                
  4787.                data-value="CM"
  4788.                data-disclosure-option
  4789.              >
  4790.                <span class="f-country-flags f-country-flags--CM"></span>Cameroon<span class="localization-form__currency"
  4791.                  >(XAF
  4792.                  CFA)</span
  4793.                >
  4794.              </a>
  4795.            </li><li class="disclosure-list__item">
  4796.              <a
  4797.                class="disclosure-list__option"
  4798.                href="#"
  4799.                
  4800.                data-value="CA"
  4801.                data-disclosure-option
  4802.              >
  4803.                <span class="f-country-flags f-country-flags--CA"></span>Canada<span class="localization-form__currency"
  4804.                  >(CAD
  4805.                  $)</span
  4806.                >
  4807.              </a>
  4808.            </li><li class="disclosure-list__item">
  4809.              <a
  4810.                class="disclosure-list__option"
  4811.                href="#"
  4812.                
  4813.                data-value="CV"
  4814.                data-disclosure-option
  4815.              >
  4816.                <span class="f-country-flags f-country-flags--CV"></span>Cape Verde<span class="localization-form__currency"
  4817.                  >(CVE
  4818.                  $)</span
  4819.                >
  4820.              </a>
  4821.            </li><li class="disclosure-list__item">
  4822.              <a
  4823.                class="disclosure-list__option"
  4824.                href="#"
  4825.                
  4826.                data-value="BQ"
  4827.                data-disclosure-option
  4828.              >
  4829.                <span class="f-country-flags f-country-flags--BQ"></span>Caribbean Netherlands<span class="localization-form__currency"
  4830.                  >(USD
  4831.                  $)</span
  4832.                >
  4833.              </a>
  4834.            </li><li class="disclosure-list__item">
  4835.              <a
  4836.                class="disclosure-list__option"
  4837.                href="#"
  4838.                
  4839.                data-value="KY"
  4840.                data-disclosure-option
  4841.              >
  4842.                <span class="f-country-flags f-country-flags--KY"></span>Cayman Islands<span class="localization-form__currency"
  4843.                  >(KYD
  4844.                  $)</span
  4845.                >
  4846.              </a>
  4847.            </li><li class="disclosure-list__item">
  4848.              <a
  4849.                class="disclosure-list__option"
  4850.                href="#"
  4851.                
  4852.                data-value="CF"
  4853.                data-disclosure-option
  4854.              >
  4855.                <span class="f-country-flags f-country-flags--CF"></span>Central African Republic<span class="localization-form__currency"
  4856.                  >(XAF
  4857.                  CFA)</span
  4858.                >
  4859.              </a>
  4860.            </li><li class="disclosure-list__item">
  4861.              <a
  4862.                class="disclosure-list__option"
  4863.                href="#"
  4864.                
  4865.                data-value="TD"
  4866.                data-disclosure-option
  4867.              >
  4868.                <span class="f-country-flags f-country-flags--TD"></span>Chad<span class="localization-form__currency"
  4869.                  >(XAF
  4870.                  CFA)</span
  4871.                >
  4872.              </a>
  4873.            </li><li class="disclosure-list__item">
  4874.              <a
  4875.                class="disclosure-list__option"
  4876.                href="#"
  4877.                
  4878.                data-value="CL"
  4879.                data-disclosure-option
  4880.              >
  4881.                <span class="f-country-flags f-country-flags--CL"></span>Chile<span class="localization-form__currency"
  4882.                  >(AUD
  4883.                  $)</span
  4884.                >
  4885.              </a>
  4886.            </li><li class="disclosure-list__item">
  4887.              <a
  4888.                class="disclosure-list__option"
  4889.                href="#"
  4890.                
  4891.                data-value="CN"
  4892.                data-disclosure-option
  4893.              >
  4894.                <span class="f-country-flags f-country-flags--CN"></span>China<span class="localization-form__currency"
  4895.                  >(CNY
  4896.                  ¥)</span
  4897.                >
  4898.              </a>
  4899.            </li><li class="disclosure-list__item">
  4900.              <a
  4901.                class="disclosure-list__option"
  4902.                href="#"
  4903.                
  4904.                data-value="CX"
  4905.                data-disclosure-option
  4906.              >
  4907.                <span class="f-country-flags f-country-flags--CX"></span>Christmas Island<span class="localization-form__currency"
  4908.                  >(AUD
  4909.                  $)</span
  4910.                >
  4911.              </a>
  4912.            </li><li class="disclosure-list__item">
  4913.              <a
  4914.                class="disclosure-list__option"
  4915.                href="#"
  4916.                
  4917.                data-value="CC"
  4918.                data-disclosure-option
  4919.              >
  4920.                <span class="f-country-flags f-country-flags--CC"></span>Cocos (Keeling) Islands<span class="localization-form__currency"
  4921.                  >(AUD
  4922.                  $)</span
  4923.                >
  4924.              </a>
  4925.            </li><li class="disclosure-list__item">
  4926.              <a
  4927.                class="disclosure-list__option"
  4928.                href="#"
  4929.                
  4930.                data-value="CO"
  4931.                data-disclosure-option
  4932.              >
  4933.                <span class="f-country-flags f-country-flags--CO"></span>Colombia<span class="localization-form__currency"
  4934.                  >(AUD
  4935.                  $)</span
  4936.                >
  4937.              </a>
  4938.            </li><li class="disclosure-list__item">
  4939.              <a
  4940.                class="disclosure-list__option"
  4941.                href="#"
  4942.                
  4943.                data-value="KM"
  4944.                data-disclosure-option
  4945.              >
  4946.                <span class="f-country-flags f-country-flags--KM"></span>Comoros<span class="localization-form__currency"
  4947.                  >(KMF
  4948.                  Fr)</span
  4949.                >
  4950.              </a>
  4951.            </li><li class="disclosure-list__item">
  4952.              <a
  4953.                class="disclosure-list__option"
  4954.                href="#"
  4955.                
  4956.                data-value="CG"
  4957.                data-disclosure-option
  4958.              >
  4959.                <span class="f-country-flags f-country-flags--CG"></span>Congo - Brazzaville<span class="localization-form__currency"
  4960.                  >(XAF
  4961.                  CFA)</span
  4962.                >
  4963.              </a>
  4964.            </li><li class="disclosure-list__item">
  4965.              <a
  4966.                class="disclosure-list__option"
  4967.                href="#"
  4968.                
  4969.                data-value="CD"
  4970.                data-disclosure-option
  4971.              >
  4972.                <span class="f-country-flags f-country-flags--CD"></span>Congo - Kinshasa<span class="localization-form__currency"
  4973.                  >(CDF
  4974.                  Fr)</span
  4975.                >
  4976.              </a>
  4977.            </li><li class="disclosure-list__item">
  4978.              <a
  4979.                class="disclosure-list__option"
  4980.                href="#"
  4981.                
  4982.                data-value="CK"
  4983.                data-disclosure-option
  4984.              >
  4985.                <span class="f-country-flags f-country-flags--CK"></span>Cook Islands<span class="localization-form__currency"
  4986.                  >(NZD
  4987.                  $)</span
  4988.                >
  4989.              </a>
  4990.            </li><li class="disclosure-list__item">
  4991.              <a
  4992.                class="disclosure-list__option"
  4993.                href="#"
  4994.                
  4995.                data-value="CR"
  4996.                data-disclosure-option
  4997.              >
  4998.                <span class="f-country-flags f-country-flags--CR"></span>Costa Rica<span class="localization-form__currency"
  4999.                  >(CRC
  5000.                  ₡)</span
  5001.                >
  5002.              </a>
  5003.            </li><li class="disclosure-list__item">
  5004.              <a
  5005.                class="disclosure-list__option"
  5006.                href="#"
  5007.                
  5008.                data-value="CI"
  5009.                data-disclosure-option
  5010.              >
  5011.                <span class="f-country-flags f-country-flags--CI"></span>Côte d’Ivoire<span class="localization-form__currency"
  5012.                  >(XOF
  5013.                  Fr)</span
  5014.                >
  5015.              </a>
  5016.            </li><li class="disclosure-list__item">
  5017.              <a
  5018.                class="disclosure-list__option"
  5019.                href="#"
  5020.                
  5021.                data-value="HR"
  5022.                data-disclosure-option
  5023.              >
  5024.                <span class="f-country-flags f-country-flags--HR"></span>Croatia<span class="localization-form__currency"
  5025.                  >(EUR
  5026.                  €)</span
  5027.                >
  5028.              </a>
  5029.            </li><li class="disclosure-list__item">
  5030.              <a
  5031.                class="disclosure-list__option"
  5032.                href="#"
  5033.                
  5034.                data-value="CW"
  5035.                data-disclosure-option
  5036.              >
  5037.                <span class="f-country-flags f-country-flags--CW"></span>Curaçao<span class="localization-form__currency"
  5038.                  >(ANG
  5039.                  ƒ)</span
  5040.                >
  5041.              </a>
  5042.            </li><li class="disclosure-list__item">
  5043.              <a
  5044.                class="disclosure-list__option"
  5045.                href="#"
  5046.                
  5047.                data-value="CY"
  5048.                data-disclosure-option
  5049.              >
  5050.                <span class="f-country-flags f-country-flags--CY"></span>Cyprus<span class="localization-form__currency"
  5051.                  >(EUR
  5052.                  €)</span
  5053.                >
  5054.              </a>
  5055.            </li><li class="disclosure-list__item">
  5056.              <a
  5057.                class="disclosure-list__option"
  5058.                href="#"
  5059.                
  5060.                data-value="CZ"
  5061.                data-disclosure-option
  5062.              >
  5063.                <span class="f-country-flags f-country-flags--CZ"></span>Czechia<span class="localization-form__currency"
  5064.                  >(CZK
  5065.                  Kč)</span
  5066.                >
  5067.              </a>
  5068.            </li><li class="disclosure-list__item">
  5069.              <a
  5070.                class="disclosure-list__option"
  5071.                href="#"
  5072.                
  5073.                data-value="DK"
  5074.                data-disclosure-option
  5075.              >
  5076.                <span class="f-country-flags f-country-flags--DK"></span>Denmark<span class="localization-form__currency"
  5077.                  >(DKK
  5078.                  kr.)</span
  5079.                >
  5080.              </a>
  5081.            </li><li class="disclosure-list__item">
  5082.              <a
  5083.                class="disclosure-list__option"
  5084.                href="#"
  5085.                
  5086.                data-value="DJ"
  5087.                data-disclosure-option
  5088.              >
  5089.                <span class="f-country-flags f-country-flags--DJ"></span>Djibouti<span class="localization-form__currency"
  5090.                  >(DJF
  5091.                  Fdj)</span
  5092.                >
  5093.              </a>
  5094.            </li><li class="disclosure-list__item">
  5095.              <a
  5096.                class="disclosure-list__option"
  5097.                href="#"
  5098.                
  5099.                data-value="DM"
  5100.                data-disclosure-option
  5101.              >
  5102.                <span class="f-country-flags f-country-flags--DM"></span>Dominica<span class="localization-form__currency"
  5103.                  >(XCD
  5104.                  $)</span
  5105.                >
  5106.              </a>
  5107.            </li><li class="disclosure-list__item">
  5108.              <a
  5109.                class="disclosure-list__option"
  5110.                href="#"
  5111.                
  5112.                data-value="DO"
  5113.                data-disclosure-option
  5114.              >
  5115.                <span class="f-country-flags f-country-flags--DO"></span>Dominican Republic<span class="localization-form__currency"
  5116.                  >(DOP
  5117.                  $)</span
  5118.                >
  5119.              </a>
  5120.            </li><li class="disclosure-list__item">
  5121.              <a
  5122.                class="disclosure-list__option"
  5123.                href="#"
  5124.                
  5125.                data-value="EC"
  5126.                data-disclosure-option
  5127.              >
  5128.                <span class="f-country-flags f-country-flags--EC"></span>Ecuador<span class="localization-form__currency"
  5129.                  >(USD
  5130.                  $)</span
  5131.                >
  5132.              </a>
  5133.            </li><li class="disclosure-list__item">
  5134.              <a
  5135.                class="disclosure-list__option"
  5136.                href="#"
  5137.                
  5138.                data-value="EG"
  5139.                data-disclosure-option
  5140.              >
  5141.                <span class="f-country-flags f-country-flags--EG"></span>Egypt<span class="localization-form__currency"
  5142.                  >(EGP
  5143.                  ج.م)</span
  5144.                >
  5145.              </a>
  5146.            </li><li class="disclosure-list__item">
  5147.              <a
  5148.                class="disclosure-list__option"
  5149.                href="#"
  5150.                
  5151.                data-value="SV"
  5152.                data-disclosure-option
  5153.              >
  5154.                <span class="f-country-flags f-country-flags--SV"></span>El Salvador<span class="localization-form__currency"
  5155.                  >(USD
  5156.                  $)</span
  5157.                >
  5158.              </a>
  5159.            </li><li class="disclosure-list__item">
  5160.              <a
  5161.                class="disclosure-list__option"
  5162.                href="#"
  5163.                
  5164.                data-value="GQ"
  5165.                data-disclosure-option
  5166.              >
  5167.                <span class="f-country-flags f-country-flags--GQ"></span>Equatorial Guinea<span class="localization-form__currency"
  5168.                  >(XAF
  5169.                  CFA)</span
  5170.                >
  5171.              </a>
  5172.            </li><li class="disclosure-list__item">
  5173.              <a
  5174.                class="disclosure-list__option"
  5175.                href="#"
  5176.                
  5177.                data-value="ER"
  5178.                data-disclosure-option
  5179.              >
  5180.                <span class="f-country-flags f-country-flags--ER"></span>Eritrea<span class="localization-form__currency"
  5181.                  >(AUD
  5182.                  $)</span
  5183.                >
  5184.              </a>
  5185.            </li><li class="disclosure-list__item">
  5186.              <a
  5187.                class="disclosure-list__option"
  5188.                href="#"
  5189.                
  5190.                data-value="EE"
  5191.                data-disclosure-option
  5192.              >
  5193.                <span class="f-country-flags f-country-flags--EE"></span>Estonia<span class="localization-form__currency"
  5194.                  >(EUR
  5195.                  €)</span
  5196.                >
  5197.              </a>
  5198.            </li><li class="disclosure-list__item">
  5199.              <a
  5200.                class="disclosure-list__option"
  5201.                href="#"
  5202.                
  5203.                data-value="SZ"
  5204.                data-disclosure-option
  5205.              >
  5206.                <span class="f-country-flags f-country-flags--SZ"></span>Eswatini<span class="localization-form__currency"
  5207.                  >(AUD
  5208.                  $)</span
  5209.                >
  5210.              </a>
  5211.            </li><li class="disclosure-list__item">
  5212.              <a
  5213.                class="disclosure-list__option"
  5214.                href="#"
  5215.                
  5216.                data-value="ET"
  5217.                data-disclosure-option
  5218.              >
  5219.                <span class="f-country-flags f-country-flags--ET"></span>Ethiopia<span class="localization-form__currency"
  5220.                  >(ETB
  5221.                  Br)</span
  5222.                >
  5223.              </a>
  5224.            </li><li class="disclosure-list__item">
  5225.              <a
  5226.                class="disclosure-list__option"
  5227.                href="#"
  5228.                
  5229.                data-value="FK"
  5230.                data-disclosure-option
  5231.              >
  5232.                <span class="f-country-flags f-country-flags--FK"></span>Falkland Islands<span class="localization-form__currency"
  5233.                  >(FKP
  5234.                  £)</span
  5235.                >
  5236.              </a>
  5237.            </li><li class="disclosure-list__item">
  5238.              <a
  5239.                class="disclosure-list__option"
  5240.                href="#"
  5241.                
  5242.                data-value="FO"
  5243.                data-disclosure-option
  5244.              >
  5245.                <span class="f-country-flags f-country-flags--FO"></span>Faroe Islands<span class="localization-form__currency"
  5246.                  >(DKK
  5247.                  kr.)</span
  5248.                >
  5249.              </a>
  5250.            </li><li class="disclosure-list__item">
  5251.              <a
  5252.                class="disclosure-list__option"
  5253.                href="#"
  5254.                
  5255.                data-value="FJ"
  5256.                data-disclosure-option
  5257.              >
  5258.                <span class="f-country-flags f-country-flags--FJ"></span>Fiji<span class="localization-form__currency"
  5259.                  >(FJD
  5260.                  $)</span
  5261.                >
  5262.              </a>
  5263.            </li><li class="disclosure-list__item">
  5264.              <a
  5265.                class="disclosure-list__option"
  5266.                href="#"
  5267.                
  5268.                data-value="FI"
  5269.                data-disclosure-option
  5270.              >
  5271.                <span class="f-country-flags f-country-flags--FI"></span>Finland<span class="localization-form__currency"
  5272.                  >(EUR
  5273.                  €)</span
  5274.                >
  5275.              </a>
  5276.            </li><li class="disclosure-list__item">
  5277.              <a
  5278.                class="disclosure-list__option"
  5279.                href="#"
  5280.                
  5281.                data-value="FR"
  5282.                data-disclosure-option
  5283.              >
  5284.                <span class="f-country-flags f-country-flags--FR"></span>France<span class="localization-form__currency"
  5285.                  >(EUR
  5286.                  €)</span
  5287.                >
  5288.              </a>
  5289.            </li><li class="disclosure-list__item">
  5290.              <a
  5291.                class="disclosure-list__option"
  5292.                href="#"
  5293.                
  5294.                data-value="GF"
  5295.                data-disclosure-option
  5296.              >
  5297.                <span class="f-country-flags f-country-flags--GF"></span>French Guiana<span class="localization-form__currency"
  5298.                  >(EUR
  5299.                  €)</span
  5300.                >
  5301.              </a>
  5302.            </li><li class="disclosure-list__item">
  5303.              <a
  5304.                class="disclosure-list__option"
  5305.                href="#"
  5306.                
  5307.                data-value="PF"
  5308.                data-disclosure-option
  5309.              >
  5310.                <span class="f-country-flags f-country-flags--PF"></span>French Polynesia<span class="localization-form__currency"
  5311.                  >(XPF
  5312.                  Fr)</span
  5313.                >
  5314.              </a>
  5315.            </li><li class="disclosure-list__item">
  5316.              <a
  5317.                class="disclosure-list__option"
  5318.                href="#"
  5319.                
  5320.                data-value="TF"
  5321.                data-disclosure-option
  5322.              >
  5323.                <span class="f-country-flags f-country-flags--TF"></span>French Southern Territories<span class="localization-form__currency"
  5324.                  >(EUR
  5325.                  €)</span
  5326.                >
  5327.              </a>
  5328.            </li><li class="disclosure-list__item">
  5329.              <a
  5330.                class="disclosure-list__option"
  5331.                href="#"
  5332.                
  5333.                data-value="GA"
  5334.                data-disclosure-option
  5335.              >
  5336.                <span class="f-country-flags f-country-flags--GA"></span>Gabon<span class="localization-form__currency"
  5337.                  >(XOF
  5338.                  Fr)</span
  5339.                >
  5340.              </a>
  5341.            </li><li class="disclosure-list__item">
  5342.              <a
  5343.                class="disclosure-list__option"
  5344.                href="#"
  5345.                
  5346.                data-value="GM"
  5347.                data-disclosure-option
  5348.              >
  5349.                <span class="f-country-flags f-country-flags--GM"></span>Gambia<span class="localization-form__currency"
  5350.                  >(GMD
  5351.                  D)</span
  5352.                >
  5353.              </a>
  5354.            </li><li class="disclosure-list__item">
  5355.              <a
  5356.                class="disclosure-list__option"
  5357.                href="#"
  5358.                
  5359.                data-value="GE"
  5360.                data-disclosure-option
  5361.              >
  5362.                <span class="f-country-flags f-country-flags--GE"></span>Georgia<span class="localization-form__currency"
  5363.                  >(AUD
  5364.                  $)</span
  5365.                >
  5366.              </a>
  5367.            </li><li class="disclosure-list__item">
  5368.              <a
  5369.                class="disclosure-list__option"
  5370.                href="#"
  5371.                
  5372.                data-value="DE"
  5373.                data-disclosure-option
  5374.              >
  5375.                <span class="f-country-flags f-country-flags--DE"></span>Germany<span class="localization-form__currency"
  5376.                  >(EUR
  5377.                  €)</span
  5378.                >
  5379.              </a>
  5380.            </li><li class="disclosure-list__item">
  5381.              <a
  5382.                class="disclosure-list__option"
  5383.                href="#"
  5384.                
  5385.                data-value="GH"
  5386.                data-disclosure-option
  5387.              >
  5388.                <span class="f-country-flags f-country-flags--GH"></span>Ghana<span class="localization-form__currency"
  5389.                  >(AUD
  5390.                  $)</span
  5391.                >
  5392.              </a>
  5393.            </li><li class="disclosure-list__item">
  5394.              <a
  5395.                class="disclosure-list__option"
  5396.                href="#"
  5397.                
  5398.                data-value="GI"
  5399.                data-disclosure-option
  5400.              >
  5401.                <span class="f-country-flags f-country-flags--GI"></span>Gibraltar<span class="localization-form__currency"
  5402.                  >(GBP
  5403.                  £)</span
  5404.                >
  5405.              </a>
  5406.            </li><li class="disclosure-list__item">
  5407.              <a
  5408.                class="disclosure-list__option"
  5409.                href="#"
  5410.                
  5411.                data-value="GR"
  5412.                data-disclosure-option
  5413.              >
  5414.                <span class="f-country-flags f-country-flags--GR"></span>Greece<span class="localization-form__currency"
  5415.                  >(EUR
  5416.                  €)</span
  5417.                >
  5418.              </a>
  5419.            </li><li class="disclosure-list__item">
  5420.              <a
  5421.                class="disclosure-list__option"
  5422.                href="#"
  5423.                
  5424.                data-value="GL"
  5425.                data-disclosure-option
  5426.              >
  5427.                <span class="f-country-flags f-country-flags--GL"></span>Greenland<span class="localization-form__currency"
  5428.                  >(DKK
  5429.                  kr.)</span
  5430.                >
  5431.              </a>
  5432.            </li><li class="disclosure-list__item">
  5433.              <a
  5434.                class="disclosure-list__option"
  5435.                href="#"
  5436.                
  5437.                data-value="GD"
  5438.                data-disclosure-option
  5439.              >
  5440.                <span class="f-country-flags f-country-flags--GD"></span>Grenada<span class="localization-form__currency"
  5441.                  >(XCD
  5442.                  $)</span
  5443.                >
  5444.              </a>
  5445.            </li><li class="disclosure-list__item">
  5446.              <a
  5447.                class="disclosure-list__option"
  5448.                href="#"
  5449.                
  5450.                data-value="GP"
  5451.                data-disclosure-option
  5452.              >
  5453.                <span class="f-country-flags f-country-flags--GP"></span>Guadeloupe<span class="localization-form__currency"
  5454.                  >(EUR
  5455.                  €)</span
  5456.                >
  5457.              </a>
  5458.            </li><li class="disclosure-list__item">
  5459.              <a
  5460.                class="disclosure-list__option"
  5461.                href="#"
  5462.                
  5463.                data-value="GT"
  5464.                data-disclosure-option
  5465.              >
  5466.                <span class="f-country-flags f-country-flags--GT"></span>Guatemala<span class="localization-form__currency"
  5467.                  >(GTQ
  5468.                  Q)</span
  5469.                >
  5470.              </a>
  5471.            </li><li class="disclosure-list__item">
  5472.              <a
  5473.                class="disclosure-list__option"
  5474.                href="#"
  5475.                
  5476.                data-value="GG"
  5477.                data-disclosure-option
  5478.              >
  5479.                <span class="f-country-flags f-country-flags--GG"></span>Guernsey<span class="localization-form__currency"
  5480.                  >(GBP
  5481.                  £)</span
  5482.                >
  5483.              </a>
  5484.            </li><li class="disclosure-list__item">
  5485.              <a
  5486.                class="disclosure-list__option"
  5487.                href="#"
  5488.                
  5489.                data-value="GN"
  5490.                data-disclosure-option
  5491.              >
  5492.                <span class="f-country-flags f-country-flags--GN"></span>Guinea<span class="localization-form__currency"
  5493.                  >(GNF
  5494.                  Fr)</span
  5495.                >
  5496.              </a>
  5497.            </li><li class="disclosure-list__item">
  5498.              <a
  5499.                class="disclosure-list__option"
  5500.                href="#"
  5501.                
  5502.                data-value="GW"
  5503.                data-disclosure-option
  5504.              >
  5505.                <span class="f-country-flags f-country-flags--GW"></span>Guinea-Bissau<span class="localization-form__currency"
  5506.                  >(XOF
  5507.                  Fr)</span
  5508.                >
  5509.              </a>
  5510.            </li><li class="disclosure-list__item">
  5511.              <a
  5512.                class="disclosure-list__option"
  5513.                href="#"
  5514.                
  5515.                data-value="GY"
  5516.                data-disclosure-option
  5517.              >
  5518.                <span class="f-country-flags f-country-flags--GY"></span>Guyana<span class="localization-form__currency"
  5519.                  >(GYD
  5520.                  $)</span
  5521.                >
  5522.              </a>
  5523.            </li><li class="disclosure-list__item">
  5524.              <a
  5525.                class="disclosure-list__option"
  5526.                href="#"
  5527.                
  5528.                data-value="HT"
  5529.                data-disclosure-option
  5530.              >
  5531.                <span class="f-country-flags f-country-flags--HT"></span>Haiti<span class="localization-form__currency"
  5532.                  >(AUD
  5533.                  $)</span
  5534.                >
  5535.              </a>
  5536.            </li><li class="disclosure-list__item">
  5537.              <a
  5538.                class="disclosure-list__option"
  5539.                href="#"
  5540.                
  5541.                data-value="HN"
  5542.                data-disclosure-option
  5543.              >
  5544.                <span class="f-country-flags f-country-flags--HN"></span>Honduras<span class="localization-form__currency"
  5545.                  >(HNL
  5546.                  L)</span
  5547.                >
  5548.              </a>
  5549.            </li><li class="disclosure-list__item">
  5550.              <a
  5551.                class="disclosure-list__option"
  5552.                href="#"
  5553.                
  5554.                data-value="HK"
  5555.                data-disclosure-option
  5556.              >
  5557.                <span class="f-country-flags f-country-flags--HK"></span>Hong Kong SAR<span class="localization-form__currency"
  5558.                  >(HKD
  5559.                  $)</span
  5560.                >
  5561.              </a>
  5562.            </li><li class="disclosure-list__item">
  5563.              <a
  5564.                class="disclosure-list__option"
  5565.                href="#"
  5566.                
  5567.                data-value="HU"
  5568.                data-disclosure-option
  5569.              >
  5570.                <span class="f-country-flags f-country-flags--HU"></span>Hungary<span class="localization-form__currency"
  5571.                  >(HUF
  5572.                  Ft)</span
  5573.                >
  5574.              </a>
  5575.            </li><li class="disclosure-list__item">
  5576.              <a
  5577.                class="disclosure-list__option"
  5578.                href="#"
  5579.                
  5580.                data-value="IS"
  5581.                data-disclosure-option
  5582.              >
  5583.                <span class="f-country-flags f-country-flags--IS"></span>Iceland<span class="localization-form__currency"
  5584.                  >(ISK
  5585.                  kr)</span
  5586.                >
  5587.              </a>
  5588.            </li><li class="disclosure-list__item">
  5589.              <a
  5590.                class="disclosure-list__option"
  5591.                href="#"
  5592.                
  5593.                data-value="IN"
  5594.                data-disclosure-option
  5595.              >
  5596.                <span class="f-country-flags f-country-flags--IN"></span>India<span class="localization-form__currency"
  5597.                  >(INR
  5598.                  ₹)</span
  5599.                >
  5600.              </a>
  5601.            </li><li class="disclosure-list__item">
  5602.              <a
  5603.                class="disclosure-list__option"
  5604.                href="#"
  5605.                
  5606.                data-value="ID"
  5607.                data-disclosure-option
  5608.              >
  5609.                <span class="f-country-flags f-country-flags--ID"></span>Indonesia<span class="localization-form__currency"
  5610.                  >(IDR
  5611.                  Rp)</span
  5612.                >
  5613.              </a>
  5614.            </li><li class="disclosure-list__item">
  5615.              <a
  5616.                class="disclosure-list__option"
  5617.                href="#"
  5618.                
  5619.                data-value="IQ"
  5620.                data-disclosure-option
  5621.              >
  5622.                <span class="f-country-flags f-country-flags--IQ"></span>Iraq<span class="localization-form__currency"
  5623.                  >(AUD
  5624.                  $)</span
  5625.                >
  5626.              </a>
  5627.            </li><li class="disclosure-list__item">
  5628.              <a
  5629.                class="disclosure-list__option"
  5630.                href="#"
  5631.                
  5632.                data-value="IE"
  5633.                data-disclosure-option
  5634.              >
  5635.                <span class="f-country-flags f-country-flags--IE"></span>Ireland<span class="localization-form__currency"
  5636.                  >(EUR
  5637.                  €)</span
  5638.                >
  5639.              </a>
  5640.            </li><li class="disclosure-list__item">
  5641.              <a
  5642.                class="disclosure-list__option"
  5643.                href="#"
  5644.                
  5645.                data-value="IM"
  5646.                data-disclosure-option
  5647.              >
  5648.                <span class="f-country-flags f-country-flags--IM"></span>Isle of Man<span class="localization-form__currency"
  5649.                  >(GBP
  5650.                  £)</span
  5651.                >
  5652.              </a>
  5653.            </li><li class="disclosure-list__item">
  5654.              <a
  5655.                class="disclosure-list__option"
  5656.                href="#"
  5657.                
  5658.                data-value="IL"
  5659.                data-disclosure-option
  5660.              >
  5661.                <span class="f-country-flags f-country-flags--IL"></span>Israel<span class="localization-form__currency"
  5662.                  >(ILS
  5663.                  ₪)</span
  5664.                >
  5665.              </a>
  5666.            </li><li class="disclosure-list__item">
  5667.              <a
  5668.                class="disclosure-list__option"
  5669.                href="#"
  5670.                
  5671.                data-value="IT"
  5672.                data-disclosure-option
  5673.              >
  5674.                <span class="f-country-flags f-country-flags--IT"></span>Italy<span class="localization-form__currency"
  5675.                  >(EUR
  5676.                  €)</span
  5677.                >
  5678.              </a>
  5679.            </li><li class="disclosure-list__item">
  5680.              <a
  5681.                class="disclosure-list__option"
  5682.                href="#"
  5683.                
  5684.                data-value="JM"
  5685.                data-disclosure-option
  5686.              >
  5687.                <span class="f-country-flags f-country-flags--JM"></span>Jamaica<span class="localization-form__currency"
  5688.                  >(JMD
  5689.                  $)</span
  5690.                >
  5691.              </a>
  5692.            </li><li class="disclosure-list__item">
  5693.              <a
  5694.                class="disclosure-list__option"
  5695.                href="#"
  5696.                
  5697.                data-value="JP"
  5698.                data-disclosure-option
  5699.              >
  5700.                <span class="f-country-flags f-country-flags--JP"></span>Japan<span class="localization-form__currency"
  5701.                  >(JPY
  5702.                  ¥)</span
  5703.                >
  5704.              </a>
  5705.            </li><li class="disclosure-list__item">
  5706.              <a
  5707.                class="disclosure-list__option"
  5708.                href="#"
  5709.                
  5710.                data-value="JE"
  5711.                data-disclosure-option
  5712.              >
  5713.                <span class="f-country-flags f-country-flags--JE"></span>Jersey<span class="localization-form__currency"
  5714.                  >(AUD
  5715.                  $)</span
  5716.                >
  5717.              </a>
  5718.            </li><li class="disclosure-list__item">
  5719.              <a
  5720.                class="disclosure-list__option"
  5721.                href="#"
  5722.                
  5723.                data-value="JO"
  5724.                data-disclosure-option
  5725.              >
  5726.                <span class="f-country-flags f-country-flags--JO"></span>Jordan<span class="localization-form__currency"
  5727.                  >(AUD
  5728.                  $)</span
  5729.                >
  5730.              </a>
  5731.            </li><li class="disclosure-list__item">
  5732.              <a
  5733.                class="disclosure-list__option"
  5734.                href="#"
  5735.                
  5736.                data-value="KZ"
  5737.                data-disclosure-option
  5738.              >
  5739.                <span class="f-country-flags f-country-flags--KZ"></span>Kazakhstan<span class="localization-form__currency"
  5740.                  >(KZT
  5741.                  ₸)</span
  5742.                >
  5743.              </a>
  5744.            </li><li class="disclosure-list__item">
  5745.              <a
  5746.                class="disclosure-list__option"
  5747.                href="#"
  5748.                
  5749.                data-value="KE"
  5750.                data-disclosure-option
  5751.              >
  5752.                <span class="f-country-flags f-country-flags--KE"></span>Kenya<span class="localization-form__currency"
  5753.                  >(KES
  5754.                  KSh)</span
  5755.                >
  5756.              </a>
  5757.            </li><li class="disclosure-list__item">
  5758.              <a
  5759.                class="disclosure-list__option"
  5760.                href="#"
  5761.                
  5762.                data-value="KI"
  5763.                data-disclosure-option
  5764.              >
  5765.                <span class="f-country-flags f-country-flags--KI"></span>Kiribati<span class="localization-form__currency"
  5766.                  >(AUD
  5767.                  $)</span
  5768.                >
  5769.              </a>
  5770.            </li><li class="disclosure-list__item">
  5771.              <a
  5772.                class="disclosure-list__option"
  5773.                href="#"
  5774.                
  5775.                data-value="XK"
  5776.                data-disclosure-option
  5777.              >
  5778.                <span class="f-country-flags f-country-flags--XK"></span>Kosovo<span class="localization-form__currency"
  5779.                  >(EUR
  5780.                  €)</span
  5781.                >
  5782.              </a>
  5783.            </li><li class="disclosure-list__item">
  5784.              <a
  5785.                class="disclosure-list__option"
  5786.                href="#"
  5787.                
  5788.                data-value="KW"
  5789.                data-disclosure-option
  5790.              >
  5791.                <span class="f-country-flags f-country-flags--KW"></span>Kuwait<span class="localization-form__currency"
  5792.                  >(AUD
  5793.                  $)</span
  5794.                >
  5795.              </a>
  5796.            </li><li class="disclosure-list__item">
  5797.              <a
  5798.                class="disclosure-list__option"
  5799.                href="#"
  5800.                
  5801.                data-value="KG"
  5802.                data-disclosure-option
  5803.              >
  5804.                <span class="f-country-flags f-country-flags--KG"></span>Kyrgyzstan<span class="localization-form__currency"
  5805.                  >(KGS
  5806.                  som)</span
  5807.                >
  5808.              </a>
  5809.            </li><li class="disclosure-list__item">
  5810.              <a
  5811.                class="disclosure-list__option"
  5812.                href="#"
  5813.                
  5814.                data-value="LA"
  5815.                data-disclosure-option
  5816.              >
  5817.                <span class="f-country-flags f-country-flags--LA"></span>Laos<span class="localization-form__currency"
  5818.                  >(LAK
  5819.                  ₭)</span
  5820.                >
  5821.              </a>
  5822.            </li><li class="disclosure-list__item">
  5823.              <a
  5824.                class="disclosure-list__option"
  5825.                href="#"
  5826.                
  5827.                data-value="LV"
  5828.                data-disclosure-option
  5829.              >
  5830.                <span class="f-country-flags f-country-flags--LV"></span>Latvia<span class="localization-form__currency"
  5831.                  >(EUR
  5832.                  €)</span
  5833.                >
  5834.              </a>
  5835.            </li><li class="disclosure-list__item">
  5836.              <a
  5837.                class="disclosure-list__option"
  5838.                href="#"
  5839.                
  5840.                data-value="LB"
  5841.                data-disclosure-option
  5842.              >
  5843.                <span class="f-country-flags f-country-flags--LB"></span>Lebanon<span class="localization-form__currency"
  5844.                  >(LBP
  5845.                  ل.ل)</span
  5846.                >
  5847.              </a>
  5848.            </li><li class="disclosure-list__item">
  5849.              <a
  5850.                class="disclosure-list__option"
  5851.                href="#"
  5852.                
  5853.                data-value="LS"
  5854.                data-disclosure-option
  5855.              >
  5856.                <span class="f-country-flags f-country-flags--LS"></span>Lesotho<span class="localization-form__currency"
  5857.                  >(AUD
  5858.                  $)</span
  5859.                >
  5860.              </a>
  5861.            </li><li class="disclosure-list__item">
  5862.              <a
  5863.                class="disclosure-list__option"
  5864.                href="#"
  5865.                
  5866.                data-value="LR"
  5867.                data-disclosure-option
  5868.              >
  5869.                <span class="f-country-flags f-country-flags--LR"></span>Liberia<span class="localization-form__currency"
  5870.                  >(AUD
  5871.                  $)</span
  5872.                >
  5873.              </a>
  5874.            </li><li class="disclosure-list__item">
  5875.              <a
  5876.                class="disclosure-list__option"
  5877.                href="#"
  5878.                
  5879.                data-value="LY"
  5880.                data-disclosure-option
  5881.              >
  5882.                <span class="f-country-flags f-country-flags--LY"></span>Libya<span class="localization-form__currency"
  5883.                  >(AUD
  5884.                  $)</span
  5885.                >
  5886.              </a>
  5887.            </li><li class="disclosure-list__item">
  5888.              <a
  5889.                class="disclosure-list__option"
  5890.                href="#"
  5891.                
  5892.                data-value="LI"
  5893.                data-disclosure-option
  5894.              >
  5895.                <span class="f-country-flags f-country-flags--LI"></span>Liechtenstein<span class="localization-form__currency"
  5896.                  >(CHF
  5897.                  CHF)</span
  5898.                >
  5899.              </a>
  5900.            </li><li class="disclosure-list__item">
  5901.              <a
  5902.                class="disclosure-list__option"
  5903.                href="#"
  5904.                
  5905.                data-value="LT"
  5906.                data-disclosure-option
  5907.              >
  5908.                <span class="f-country-flags f-country-flags--LT"></span>Lithuania<span class="localization-form__currency"
  5909.                  >(EUR
  5910.                  €)</span
  5911.                >
  5912.              </a>
  5913.            </li><li class="disclosure-list__item">
  5914.              <a
  5915.                class="disclosure-list__option"
  5916.                href="#"
  5917.                
  5918.                data-value="LU"
  5919.                data-disclosure-option
  5920.              >
  5921.                <span class="f-country-flags f-country-flags--LU"></span>Luxembourg<span class="localization-form__currency"
  5922.                  >(EUR
  5923.                  €)</span
  5924.                >
  5925.              </a>
  5926.            </li><li class="disclosure-list__item">
  5927.              <a
  5928.                class="disclosure-list__option"
  5929.                href="#"
  5930.                
  5931.                data-value="MO"
  5932.                data-disclosure-option
  5933.              >
  5934.                <span class="f-country-flags f-country-flags--MO"></span>Macao SAR<span class="localization-form__currency"
  5935.                  >(MOP
  5936.                  P)</span
  5937.                >
  5938.              </a>
  5939.            </li><li class="disclosure-list__item">
  5940.              <a
  5941.                class="disclosure-list__option"
  5942.                href="#"
  5943.                
  5944.                data-value="MG"
  5945.                data-disclosure-option
  5946.              >
  5947.                <span class="f-country-flags f-country-flags--MG"></span>Madagascar<span class="localization-form__currency"
  5948.                  >(AUD
  5949.                  $)</span
  5950.                >
  5951.              </a>
  5952.            </li><li class="disclosure-list__item">
  5953.              <a
  5954.                class="disclosure-list__option"
  5955.                href="#"
  5956.                
  5957.                data-value="MW"
  5958.                data-disclosure-option
  5959.              >
  5960.                <span class="f-country-flags f-country-flags--MW"></span>Malawi<span class="localization-form__currency"
  5961.                  >(MWK
  5962.                  MK)</span
  5963.                >
  5964.              </a>
  5965.            </li><li class="disclosure-list__item">
  5966.              <a
  5967.                class="disclosure-list__option"
  5968.                href="#"
  5969.                
  5970.                data-value="MY"
  5971.                data-disclosure-option
  5972.              >
  5973.                <span class="f-country-flags f-country-flags--MY"></span>Malaysia<span class="localization-form__currency"
  5974.                  >(MYR
  5975.                  RM)</span
  5976.                >
  5977.              </a>
  5978.            </li><li class="disclosure-list__item">
  5979.              <a
  5980.                class="disclosure-list__option"
  5981.                href="#"
  5982.                
  5983.                data-value="MV"
  5984.                data-disclosure-option
  5985.              >
  5986.                <span class="f-country-flags f-country-flags--MV"></span>Maldives<span class="localization-form__currency"
  5987.                  >(MVR
  5988.                  MVR)</span
  5989.                >
  5990.              </a>
  5991.            </li><li class="disclosure-list__item">
  5992.              <a
  5993.                class="disclosure-list__option"
  5994.                href="#"
  5995.                
  5996.                data-value="ML"
  5997.                data-disclosure-option
  5998.              >
  5999.                <span class="f-country-flags f-country-flags--ML"></span>Mali<span class="localization-form__currency"
  6000.                  >(XOF
  6001.                  Fr)</span
  6002.                >
  6003.              </a>
  6004.            </li><li class="disclosure-list__item">
  6005.              <a
  6006.                class="disclosure-list__option"
  6007.                href="#"
  6008.                
  6009.                data-value="MT"
  6010.                data-disclosure-option
  6011.              >
  6012.                <span class="f-country-flags f-country-flags--MT"></span>Malta<span class="localization-form__currency"
  6013.                  >(EUR
  6014.                  €)</span
  6015.                >
  6016.              </a>
  6017.            </li><li class="disclosure-list__item">
  6018.              <a
  6019.                class="disclosure-list__option"
  6020.                href="#"
  6021.                
  6022.                data-value="MQ"
  6023.                data-disclosure-option
  6024.              >
  6025.                <span class="f-country-flags f-country-flags--MQ"></span>Martinique<span class="localization-form__currency"
  6026.                  >(EUR
  6027.                  €)</span
  6028.                >
  6029.              </a>
  6030.            </li><li class="disclosure-list__item">
  6031.              <a
  6032.                class="disclosure-list__option"
  6033.                href="#"
  6034.                
  6035.                data-value="MR"
  6036.                data-disclosure-option
  6037.              >
  6038.                <span class="f-country-flags f-country-flags--MR"></span>Mauritania<span class="localization-form__currency"
  6039.                  >(AUD
  6040.                  $)</span
  6041.                >
  6042.              </a>
  6043.            </li><li class="disclosure-list__item">
  6044.              <a
  6045.                class="disclosure-list__option"
  6046.                href="#"
  6047.                
  6048.                data-value="MU"
  6049.                data-disclosure-option
  6050.              >
  6051.                <span class="f-country-flags f-country-flags--MU"></span>Mauritius<span class="localization-form__currency"
  6052.                  >(MUR
  6053.                  ₨)</span
  6054.                >
  6055.              </a>
  6056.            </li><li class="disclosure-list__item">
  6057.              <a
  6058.                class="disclosure-list__option"
  6059.                href="#"
  6060.                
  6061.                data-value="YT"
  6062.                data-disclosure-option
  6063.              >
  6064.                <span class="f-country-flags f-country-flags--YT"></span>Mayotte<span class="localization-form__currency"
  6065.                  >(EUR
  6066.                  €)</span
  6067.                >
  6068.              </a>
  6069.            </li><li class="disclosure-list__item">
  6070.              <a
  6071.                class="disclosure-list__option"
  6072.                href="#"
  6073.                
  6074.                data-value="MX"
  6075.                data-disclosure-option
  6076.              >
  6077.                <span class="f-country-flags f-country-flags--MX"></span>Mexico<span class="localization-form__currency"
  6078.                  >(AUD
  6079.                  $)</span
  6080.                >
  6081.              </a>
  6082.            </li><li class="disclosure-list__item">
  6083.              <a
  6084.                class="disclosure-list__option"
  6085.                href="#"
  6086.                
  6087.                data-value="MD"
  6088.                data-disclosure-option
  6089.              >
  6090.                <span class="f-country-flags f-country-flags--MD"></span>Moldova<span class="localization-form__currency"
  6091.                  >(MDL
  6092.                  L)</span
  6093.                >
  6094.              </a>
  6095.            </li><li class="disclosure-list__item">
  6096.              <a
  6097.                class="disclosure-list__option"
  6098.                href="#"
  6099.                
  6100.                data-value="MC"
  6101.                data-disclosure-option
  6102.              >
  6103.                <span class="f-country-flags f-country-flags--MC"></span>Monaco<span class="localization-form__currency"
  6104.                  >(EUR
  6105.                  €)</span
  6106.                >
  6107.              </a>
  6108.            </li><li class="disclosure-list__item">
  6109.              <a
  6110.                class="disclosure-list__option"
  6111.                href="#"
  6112.                
  6113.                data-value="MN"
  6114.                data-disclosure-option
  6115.              >
  6116.                <span class="f-country-flags f-country-flags--MN"></span>Mongolia<span class="localization-form__currency"
  6117.                  >(MNT
  6118.                  ₮)</span
  6119.                >
  6120.              </a>
  6121.            </li><li class="disclosure-list__item">
  6122.              <a
  6123.                class="disclosure-list__option"
  6124.                href="#"
  6125.                
  6126.                data-value="ME"
  6127.                data-disclosure-option
  6128.              >
  6129.                <span class="f-country-flags f-country-flags--ME"></span>Montenegro<span class="localization-form__currency"
  6130.                  >(EUR
  6131.                  €)</span
  6132.                >
  6133.              </a>
  6134.            </li><li class="disclosure-list__item">
  6135.              <a
  6136.                class="disclosure-list__option"
  6137.                href="#"
  6138.                
  6139.                data-value="MS"
  6140.                data-disclosure-option
  6141.              >
  6142.                <span class="f-country-flags f-country-flags--MS"></span>Montserrat<span class="localization-form__currency"
  6143.                  >(XCD
  6144.                  $)</span
  6145.                >
  6146.              </a>
  6147.            </li><li class="disclosure-list__item">
  6148.              <a
  6149.                class="disclosure-list__option"
  6150.                href="#"
  6151.                
  6152.                data-value="MA"
  6153.                data-disclosure-option
  6154.              >
  6155.                <span class="f-country-flags f-country-flags--MA"></span>Morocco<span class="localization-form__currency"
  6156.                  >(MAD
  6157.                  د.م.)</span
  6158.                >
  6159.              </a>
  6160.            </li><li class="disclosure-list__item">
  6161.              <a
  6162.                class="disclosure-list__option"
  6163.                href="#"
  6164.                
  6165.                data-value="MZ"
  6166.                data-disclosure-option
  6167.              >
  6168.                <span class="f-country-flags f-country-flags--MZ"></span>Mozambique<span class="localization-form__currency"
  6169.                  >(AUD
  6170.                  $)</span
  6171.                >
  6172.              </a>
  6173.            </li><li class="disclosure-list__item">
  6174.              <a
  6175.                class="disclosure-list__option"
  6176.                href="#"
  6177.                
  6178.                data-value="MM"
  6179.                data-disclosure-option
  6180.              >
  6181.                <span class="f-country-flags f-country-flags--MM"></span>Myanmar (Burma)<span class="localization-form__currency"
  6182.                  >(MMK
  6183.                  K)</span
  6184.                >
  6185.              </a>
  6186.            </li><li class="disclosure-list__item">
  6187.              <a
  6188.                class="disclosure-list__option"
  6189.                href="#"
  6190.                
  6191.                data-value="NA"
  6192.                data-disclosure-option
  6193.              >
  6194.                <span class="f-country-flags f-country-flags--NA"></span>Namibia<span class="localization-form__currency"
  6195.                  >(AUD
  6196.                  $)</span
  6197.                >
  6198.              </a>
  6199.            </li><li class="disclosure-list__item">
  6200.              <a
  6201.                class="disclosure-list__option"
  6202.                href="#"
  6203.                
  6204.                data-value="NR"
  6205.                data-disclosure-option
  6206.              >
  6207.                <span class="f-country-flags f-country-flags--NR"></span>Nauru<span class="localization-form__currency"
  6208.                  >(AUD
  6209.                  $)</span
  6210.                >
  6211.              </a>
  6212.            </li><li class="disclosure-list__item">
  6213.              <a
  6214.                class="disclosure-list__option"
  6215.                href="#"
  6216.                
  6217.                data-value="NP"
  6218.                data-disclosure-option
  6219.              >
  6220.                <span class="f-country-flags f-country-flags--NP"></span>Nepal<span class="localization-form__currency"
  6221.                  >(NPR
  6222.                  Rs.)</span
  6223.                >
  6224.              </a>
  6225.            </li><li class="disclosure-list__item">
  6226.              <a
  6227.                class="disclosure-list__option"
  6228.                href="#"
  6229.                
  6230.                data-value="NL"
  6231.                data-disclosure-option
  6232.              >
  6233.                <span class="f-country-flags f-country-flags--NL"></span>Netherlands<span class="localization-form__currency"
  6234.                  >(EUR
  6235.                  €)</span
  6236.                >
  6237.              </a>
  6238.            </li><li class="disclosure-list__item">
  6239.              <a
  6240.                class="disclosure-list__option"
  6241.                href="#"
  6242.                
  6243.                data-value="NC"
  6244.                data-disclosure-option
  6245.              >
  6246.                <span class="f-country-flags f-country-flags--NC"></span>New Caledonia<span class="localization-form__currency"
  6247.                  >(XPF
  6248.                  Fr)</span
  6249.                >
  6250.              </a>
  6251.            </li><li class="disclosure-list__item">
  6252.              <a
  6253.                class="disclosure-list__option"
  6254.                href="#"
  6255.                
  6256.                data-value="NZ"
  6257.                data-disclosure-option
  6258.              >
  6259.                <span class="f-country-flags f-country-flags--NZ"></span>New Zealand<span class="localization-form__currency"
  6260.                  >(NZD
  6261.                  $)</span
  6262.                >
  6263.              </a>
  6264.            </li><li class="disclosure-list__item">
  6265.              <a
  6266.                class="disclosure-list__option"
  6267.                href="#"
  6268.                
  6269.                data-value="NI"
  6270.                data-disclosure-option
  6271.              >
  6272.                <span class="f-country-flags f-country-flags--NI"></span>Nicaragua<span class="localization-form__currency"
  6273.                  >(NIO
  6274.                  C$)</span
  6275.                >
  6276.              </a>
  6277.            </li><li class="disclosure-list__item">
  6278.              <a
  6279.                class="disclosure-list__option"
  6280.                href="#"
  6281.                
  6282.                data-value="NE"
  6283.                data-disclosure-option
  6284.              >
  6285.                <span class="f-country-flags f-country-flags--NE"></span>Niger<span class="localization-form__currency"
  6286.                  >(XOF
  6287.                  Fr)</span
  6288.                >
  6289.              </a>
  6290.            </li><li class="disclosure-list__item">
  6291.              <a
  6292.                class="disclosure-list__option"
  6293.                href="#"
  6294.                
  6295.                data-value="NG"
  6296.                data-disclosure-option
  6297.              >
  6298.                <span class="f-country-flags f-country-flags--NG"></span>Nigeria<span class="localization-form__currency"
  6299.                  >(NGN
  6300.                  ₦)</span
  6301.                >
  6302.              </a>
  6303.            </li><li class="disclosure-list__item">
  6304.              <a
  6305.                class="disclosure-list__option"
  6306.                href="#"
  6307.                
  6308.                data-value="NU"
  6309.                data-disclosure-option
  6310.              >
  6311.                <span class="f-country-flags f-country-flags--NU"></span>Niue<span class="localization-form__currency"
  6312.                  >(NZD
  6313.                  $)</span
  6314.                >
  6315.              </a>
  6316.            </li><li class="disclosure-list__item">
  6317.              <a
  6318.                class="disclosure-list__option"
  6319.                href="#"
  6320.                
  6321.                data-value="NF"
  6322.                data-disclosure-option
  6323.              >
  6324.                <span class="f-country-flags f-country-flags--NF"></span>Norfolk Island<span class="localization-form__currency"
  6325.                  >(AUD
  6326.                  $)</span
  6327.                >
  6328.              </a>
  6329.            </li><li class="disclosure-list__item">
  6330.              <a
  6331.                class="disclosure-list__option"
  6332.                href="#"
  6333.                
  6334.                data-value="MK"
  6335.                data-disclosure-option
  6336.              >
  6337.                <span class="f-country-flags f-country-flags--MK"></span>North Macedonia<span class="localization-form__currency"
  6338.                  >(MKD
  6339.                  ден)</span
  6340.                >
  6341.              </a>
  6342.            </li><li class="disclosure-list__item">
  6343.              <a
  6344.                class="disclosure-list__option"
  6345.                href="#"
  6346.                
  6347.                data-value="NO"
  6348.                data-disclosure-option
  6349.              >
  6350.                <span class="f-country-flags f-country-flags--NO"></span>Norway<span class="localization-form__currency"
  6351.                  >(AUD
  6352.                  $)</span
  6353.                >
  6354.              </a>
  6355.            </li><li class="disclosure-list__item">
  6356.              <a
  6357.                class="disclosure-list__option"
  6358.                href="#"
  6359.                
  6360.                data-value="OM"
  6361.                data-disclosure-option
  6362.              >
  6363.                <span class="f-country-flags f-country-flags--OM"></span>Oman<span class="localization-form__currency"
  6364.                  >(AUD
  6365.                  $)</span
  6366.                >
  6367.              </a>
  6368.            </li><li class="disclosure-list__item">
  6369.              <a
  6370.                class="disclosure-list__option"
  6371.                href="#"
  6372.                
  6373.                data-value="PK"
  6374.                data-disclosure-option
  6375.              >
  6376.                <span class="f-country-flags f-country-flags--PK"></span>Pakistan<span class="localization-form__currency"
  6377.                  >(PKR
  6378.                  ₨)</span
  6379.                >
  6380.              </a>
  6381.            </li><li class="disclosure-list__item">
  6382.              <a
  6383.                class="disclosure-list__option"
  6384.                href="#"
  6385.                
  6386.                data-value="PS"
  6387.                data-disclosure-option
  6388.              >
  6389.                <span class="f-country-flags f-country-flags--PS"></span>Palestinian Territories<span class="localization-form__currency"
  6390.                  >(ILS
  6391.                  ₪)</span
  6392.                >
  6393.              </a>
  6394.            </li><li class="disclosure-list__item">
  6395.              <a
  6396.                class="disclosure-list__option"
  6397.                href="#"
  6398.                
  6399.                data-value="PA"
  6400.                data-disclosure-option
  6401.              >
  6402.                <span class="f-country-flags f-country-flags--PA"></span>Panama<span class="localization-form__currency"
  6403.                  >(USD
  6404.                  $)</span
  6405.                >
  6406.              </a>
  6407.            </li><li class="disclosure-list__item">
  6408.              <a
  6409.                class="disclosure-list__option"
  6410.                href="#"
  6411.                
  6412.                data-value="PG"
  6413.                data-disclosure-option
  6414.              >
  6415.                <span class="f-country-flags f-country-flags--PG"></span>Papua New Guinea<span class="localization-form__currency"
  6416.                  >(PGK
  6417.                  K)</span
  6418.                >
  6419.              </a>
  6420.            </li><li class="disclosure-list__item">
  6421.              <a
  6422.                class="disclosure-list__option"
  6423.                href="#"
  6424.                
  6425.                data-value="PY"
  6426.                data-disclosure-option
  6427.              >
  6428.                <span class="f-country-flags f-country-flags--PY"></span>Paraguay<span class="localization-form__currency"
  6429.                  >(PYG
  6430.                  ₲)</span
  6431.                >
  6432.              </a>
  6433.            </li><li class="disclosure-list__item">
  6434.              <a
  6435.                class="disclosure-list__option"
  6436.                href="#"
  6437.                
  6438.                data-value="PE"
  6439.                data-disclosure-option
  6440.              >
  6441.                <span class="f-country-flags f-country-flags--PE"></span>Peru<span class="localization-form__currency"
  6442.                  >(PEN
  6443.                  S/)</span
  6444.                >
  6445.              </a>
  6446.            </li><li class="disclosure-list__item">
  6447.              <a
  6448.                class="disclosure-list__option"
  6449.                href="#"
  6450.                
  6451.                data-value="PH"
  6452.                data-disclosure-option
  6453.              >
  6454.                <span class="f-country-flags f-country-flags--PH"></span>Philippines<span class="localization-form__currency"
  6455.                  >(PHP
  6456.                  ₱)</span
  6457.                >
  6458.              </a>
  6459.            </li><li class="disclosure-list__item">
  6460.              <a
  6461.                class="disclosure-list__option"
  6462.                href="#"
  6463.                
  6464.                data-value="PN"
  6465.                data-disclosure-option
  6466.              >
  6467.                <span class="f-country-flags f-country-flags--PN"></span>Pitcairn Islands<span class="localization-form__currency"
  6468.                  >(NZD
  6469.                  $)</span
  6470.                >
  6471.              </a>
  6472.            </li><li class="disclosure-list__item">
  6473.              <a
  6474.                class="disclosure-list__option"
  6475.                href="#"
  6476.                
  6477.                data-value="PL"
  6478.                data-disclosure-option
  6479.              >
  6480.                <span class="f-country-flags f-country-flags--PL"></span>Poland<span class="localization-form__currency"
  6481.                  >(PLN
  6482.                  zł)</span
  6483.                >
  6484.              </a>
  6485.            </li><li class="disclosure-list__item">
  6486.              <a
  6487.                class="disclosure-list__option"
  6488.                href="#"
  6489.                
  6490.                data-value="PT"
  6491.                data-disclosure-option
  6492.              >
  6493.                <span class="f-country-flags f-country-flags--PT"></span>Portugal<span class="localization-form__currency"
  6494.                  >(EUR
  6495.                  €)</span
  6496.                >
  6497.              </a>
  6498.            </li><li class="disclosure-list__item">
  6499.              <a
  6500.                class="disclosure-list__option"
  6501.                href="#"
  6502.                
  6503.                data-value="QA"
  6504.                data-disclosure-option
  6505.              >
  6506.                <span class="f-country-flags f-country-flags--QA"></span>Qatar<span class="localization-form__currency"
  6507.                  >(QAR
  6508.                  ر.ق)</span
  6509.                >
  6510.              </a>
  6511.            </li><li class="disclosure-list__item">
  6512.              <a
  6513.                class="disclosure-list__option"
  6514.                href="#"
  6515.                
  6516.                data-value="RE"
  6517.                data-disclosure-option
  6518.              >
  6519.                <span class="f-country-flags f-country-flags--RE"></span>Réunion<span class="localization-form__currency"
  6520.                  >(EUR
  6521.                  €)</span
  6522.                >
  6523.              </a>
  6524.            </li><li class="disclosure-list__item">
  6525.              <a
  6526.                class="disclosure-list__option"
  6527.                href="#"
  6528.                
  6529.                data-value="RO"
  6530.                data-disclosure-option
  6531.              >
  6532.                <span class="f-country-flags f-country-flags--RO"></span>Romania<span class="localization-form__currency"
  6533.                  >(RON
  6534.                  Lei)</span
  6535.                >
  6536.              </a>
  6537.            </li><li class="disclosure-list__item">
  6538.              <a
  6539.                class="disclosure-list__option"
  6540.                href="#"
  6541.                
  6542.                data-value="RU"
  6543.                data-disclosure-option
  6544.              >
  6545.                <span class="f-country-flags f-country-flags--RU"></span>Russia<span class="localization-form__currency"
  6546.                  >(AUD
  6547.                  $)</span
  6548.                >
  6549.              </a>
  6550.            </li><li class="disclosure-list__item">
  6551.              <a
  6552.                class="disclosure-list__option"
  6553.                href="#"
  6554.                
  6555.                data-value="RW"
  6556.                data-disclosure-option
  6557.              >
  6558.                <span class="f-country-flags f-country-flags--RW"></span>Rwanda<span class="localization-form__currency"
  6559.                  >(RWF
  6560.                  FRw)</span
  6561.                >
  6562.              </a>
  6563.            </li><li class="disclosure-list__item">
  6564.              <a
  6565.                class="disclosure-list__option"
  6566.                href="#"
  6567.                
  6568.                data-value="WS"
  6569.                data-disclosure-option
  6570.              >
  6571.                <span class="f-country-flags f-country-flags--WS"></span>Samoa<span class="localization-form__currency"
  6572.                  >(WST
  6573.                  T)</span
  6574.                >
  6575.              </a>
  6576.            </li><li class="disclosure-list__item">
  6577.              <a
  6578.                class="disclosure-list__option"
  6579.                href="#"
  6580.                
  6581.                data-value="SM"
  6582.                data-disclosure-option
  6583.              >
  6584.                <span class="f-country-flags f-country-flags--SM"></span>San Marino<span class="localization-form__currency"
  6585.                  >(EUR
  6586.                  €)</span
  6587.                >
  6588.              </a>
  6589.            </li><li class="disclosure-list__item">
  6590.              <a
  6591.                class="disclosure-list__option"
  6592.                href="#"
  6593.                
  6594.                data-value="ST"
  6595.                data-disclosure-option
  6596.              >
  6597.                <span class="f-country-flags f-country-flags--ST"></span>São Tomé &amp; Príncipe<span class="localization-form__currency"
  6598.                  >(STD
  6599.                  Db)</span
  6600.                >
  6601.              </a>
  6602.            </li><li class="disclosure-list__item">
  6603.              <a
  6604.                class="disclosure-list__option"
  6605.                href="#"
  6606.                
  6607.                data-value="SA"
  6608.                data-disclosure-option
  6609.              >
  6610.                <span class="f-country-flags f-country-flags--SA"></span>Saudi Arabia<span class="localization-form__currency"
  6611.                  >(SAR
  6612.                  ر.س)</span
  6613.                >
  6614.              </a>
  6615.            </li><li class="disclosure-list__item">
  6616.              <a
  6617.                class="disclosure-list__option"
  6618.                href="#"
  6619.                
  6620.                data-value="SN"
  6621.                data-disclosure-option
  6622.              >
  6623.                <span class="f-country-flags f-country-flags--SN"></span>Senegal<span class="localization-form__currency"
  6624.                  >(XOF
  6625.                  Fr)</span
  6626.                >
  6627.              </a>
  6628.            </li><li class="disclosure-list__item">
  6629.              <a
  6630.                class="disclosure-list__option"
  6631.                href="#"
  6632.                
  6633.                data-value="RS"
  6634.                data-disclosure-option
  6635.              >
  6636.                <span class="f-country-flags f-country-flags--RS"></span>Serbia<span class="localization-form__currency"
  6637.                  >(RSD
  6638.                  РСД)</span
  6639.                >
  6640.              </a>
  6641.            </li><li class="disclosure-list__item">
  6642.              <a
  6643.                class="disclosure-list__option"
  6644.                href="#"
  6645.                
  6646.                data-value="SC"
  6647.                data-disclosure-option
  6648.              >
  6649.                <span class="f-country-flags f-country-flags--SC"></span>Seychelles<span class="localization-form__currency"
  6650.                  >(AUD
  6651.                  $)</span
  6652.                >
  6653.              </a>
  6654.            </li><li class="disclosure-list__item">
  6655.              <a
  6656.                class="disclosure-list__option"
  6657.                href="#"
  6658.                
  6659.                data-value="SL"
  6660.                data-disclosure-option
  6661.              >
  6662.                <span class="f-country-flags f-country-flags--SL"></span>Sierra Leone<span class="localization-form__currency"
  6663.                  >(SLL
  6664.                  Le)</span
  6665.                >
  6666.              </a>
  6667.            </li><li class="disclosure-list__item">
  6668.              <a
  6669.                class="disclosure-list__option"
  6670.                href="#"
  6671.                
  6672.                data-value="SG"
  6673.                data-disclosure-option
  6674.              >
  6675.                <span class="f-country-flags f-country-flags--SG"></span>Singapore<span class="localization-form__currency"
  6676.                  >(SGD
  6677.                  $)</span
  6678.                >
  6679.              </a>
  6680.            </li><li class="disclosure-list__item">
  6681.              <a
  6682.                class="disclosure-list__option"
  6683.                href="#"
  6684.                
  6685.                data-value="SX"
  6686.                data-disclosure-option
  6687.              >
  6688.                <span class="f-country-flags f-country-flags--SX"></span>Sint Maarten<span class="localization-form__currency"
  6689.                  >(ANG
  6690.                  ƒ)</span
  6691.                >
  6692.              </a>
  6693.            </li><li class="disclosure-list__item">
  6694.              <a
  6695.                class="disclosure-list__option"
  6696.                href="#"
  6697.                
  6698.                data-value="SK"
  6699.                data-disclosure-option
  6700.              >
  6701.                <span class="f-country-flags f-country-flags--SK"></span>Slovakia<span class="localization-form__currency"
  6702.                  >(EUR
  6703.                  €)</span
  6704.                >
  6705.              </a>
  6706.            </li><li class="disclosure-list__item">
  6707.              <a
  6708.                class="disclosure-list__option"
  6709.                href="#"
  6710.                
  6711.                data-value="SI"
  6712.                data-disclosure-option
  6713.              >
  6714.                <span class="f-country-flags f-country-flags--SI"></span>Slovenia<span class="localization-form__currency"
  6715.                  >(EUR
  6716.                  €)</span
  6717.                >
  6718.              </a>
  6719.            </li><li class="disclosure-list__item">
  6720.              <a
  6721.                class="disclosure-list__option"
  6722.                href="#"
  6723.                
  6724.                data-value="SB"
  6725.                data-disclosure-option
  6726.              >
  6727.                <span class="f-country-flags f-country-flags--SB"></span>Solomon Islands<span class="localization-form__currency"
  6728.                  >(SBD
  6729.                  $)</span
  6730.                >
  6731.              </a>
  6732.            </li><li class="disclosure-list__item">
  6733.              <a
  6734.                class="disclosure-list__option"
  6735.                href="#"
  6736.                
  6737.                data-value="SO"
  6738.                data-disclosure-option
  6739.              >
  6740.                <span class="f-country-flags f-country-flags--SO"></span>Somalia<span class="localization-form__currency"
  6741.                  >(AUD
  6742.                  $)</span
  6743.                >
  6744.              </a>
  6745.            </li><li class="disclosure-list__item">
  6746.              <a
  6747.                class="disclosure-list__option"
  6748.                href="#"
  6749.                
  6750.                data-value="ZA"
  6751.                data-disclosure-option
  6752.              >
  6753.                <span class="f-country-flags f-country-flags--ZA"></span>South Africa<span class="localization-form__currency"
  6754.                  >(AUD
  6755.                  $)</span
  6756.                >
  6757.              </a>
  6758.            </li><li class="disclosure-list__item">
  6759.              <a
  6760.                class="disclosure-list__option"
  6761.                href="#"
  6762.                
  6763.                data-value="GS"
  6764.                data-disclosure-option
  6765.              >
  6766.                <span class="f-country-flags f-country-flags--GS"></span>South Georgia &amp; South Sandwich Islands<span class="localization-form__currency"
  6767.                  >(GBP
  6768.                  £)</span
  6769.                >
  6770.              </a>
  6771.            </li><li class="disclosure-list__item">
  6772.              <a
  6773.                class="disclosure-list__option"
  6774.                href="#"
  6775.                
  6776.                data-value="SS"
  6777.                data-disclosure-option
  6778.              >
  6779.                <span class="f-country-flags f-country-flags--SS"></span>South Sudan<span class="localization-form__currency"
  6780.                  >(AUD
  6781.                  $)</span
  6782.                >
  6783.              </a>
  6784.            </li><li class="disclosure-list__item">
  6785.              <a
  6786.                class="disclosure-list__option"
  6787.                href="#"
  6788.                
  6789.                data-value="ES"
  6790.                data-disclosure-option
  6791.              >
  6792.                <span class="f-country-flags f-country-flags--ES"></span>Spain<span class="localization-form__currency"
  6793.                  >(EUR
  6794.                  €)</span
  6795.                >
  6796.              </a>
  6797.            </li><li class="disclosure-list__item">
  6798.              <a
  6799.                class="disclosure-list__option"
  6800.                href="#"
  6801.                
  6802.                data-value="LK"
  6803.                data-disclosure-option
  6804.              >
  6805.                <span class="f-country-flags f-country-flags--LK"></span>Sri Lanka<span class="localization-form__currency"
  6806.                  >(LKR
  6807.                  ₨)</span
  6808.                >
  6809.              </a>
  6810.            </li><li class="disclosure-list__item">
  6811.              <a
  6812.                class="disclosure-list__option"
  6813.                href="#"
  6814.                
  6815.                data-value="BL"
  6816.                data-disclosure-option
  6817.              >
  6818.                <span class="f-country-flags f-country-flags--BL"></span>St. Barthélemy<span class="localization-form__currency"
  6819.                  >(EUR
  6820.                  €)</span
  6821.                >
  6822.              </a>
  6823.            </li><li class="disclosure-list__item">
  6824.              <a
  6825.                class="disclosure-list__option"
  6826.                href="#"
  6827.                
  6828.                data-value="SH"
  6829.                data-disclosure-option
  6830.              >
  6831.                <span class="f-country-flags f-country-flags--SH"></span>St. Helena<span class="localization-form__currency"
  6832.                  >(SHP
  6833.                  £)</span
  6834.                >
  6835.              </a>
  6836.            </li><li class="disclosure-list__item">
  6837.              <a
  6838.                class="disclosure-list__option"
  6839.                href="#"
  6840.                
  6841.                data-value="KN"
  6842.                data-disclosure-option
  6843.              >
  6844.                <span class="f-country-flags f-country-flags--KN"></span>St. Kitts &amp; Nevis<span class="localization-form__currency"
  6845.                  >(XCD
  6846.                  $)</span
  6847.                >
  6848.              </a>
  6849.            </li><li class="disclosure-list__item">
  6850.              <a
  6851.                class="disclosure-list__option"
  6852.                href="#"
  6853.                
  6854.                data-value="LC"
  6855.                data-disclosure-option
  6856.              >
  6857.                <span class="f-country-flags f-country-flags--LC"></span>St. Lucia<span class="localization-form__currency"
  6858.                  >(XCD
  6859.                  $)</span
  6860.                >
  6861.              </a>
  6862.            </li><li class="disclosure-list__item">
  6863.              <a
  6864.                class="disclosure-list__option"
  6865.                href="#"
  6866.                
  6867.                data-value="MF"
  6868.                data-disclosure-option
  6869.              >
  6870.                <span class="f-country-flags f-country-flags--MF"></span>St. Martin<span class="localization-form__currency"
  6871.                  >(EUR
  6872.                  €)</span
  6873.                >
  6874.              </a>
  6875.            </li><li class="disclosure-list__item">
  6876.              <a
  6877.                class="disclosure-list__option"
  6878.                href="#"
  6879.                
  6880.                data-value="PM"
  6881.                data-disclosure-option
  6882.              >
  6883.                <span class="f-country-flags f-country-flags--PM"></span>St. Pierre &amp; Miquelon<span class="localization-form__currency"
  6884.                  >(EUR
  6885.                  €)</span
  6886.                >
  6887.              </a>
  6888.            </li><li class="disclosure-list__item">
  6889.              <a
  6890.                class="disclosure-list__option"
  6891.                href="#"
  6892.                
  6893.                data-value="VC"
  6894.                data-disclosure-option
  6895.              >
  6896.                <span class="f-country-flags f-country-flags--VC"></span>St. Vincent &amp; Grenadines<span class="localization-form__currency"
  6897.                  >(XCD
  6898.                  $)</span
  6899.                >
  6900.              </a>
  6901.            </li><li class="disclosure-list__item">
  6902.              <a
  6903.                class="disclosure-list__option"
  6904.                href="#"
  6905.                
  6906.                data-value="SD"
  6907.                data-disclosure-option
  6908.              >
  6909.                <span class="f-country-flags f-country-flags--SD"></span>Sudan<span class="localization-form__currency"
  6910.                  >(AUD
  6911.                  $)</span
  6912.                >
  6913.              </a>
  6914.            </li><li class="disclosure-list__item">
  6915.              <a
  6916.                class="disclosure-list__option"
  6917.                href="#"
  6918.                
  6919.                data-value="SR"
  6920.                data-disclosure-option
  6921.              >
  6922.                <span class="f-country-flags f-country-flags--SR"></span>Suriname<span class="localization-form__currency"
  6923.                  >(AUD
  6924.                  $)</span
  6925.                >
  6926.              </a>
  6927.            </li><li class="disclosure-list__item">
  6928.              <a
  6929.                class="disclosure-list__option"
  6930.                href="#"
  6931.                
  6932.                data-value="SJ"
  6933.                data-disclosure-option
  6934.              >
  6935.                <span class="f-country-flags f-country-flags--SJ"></span>Svalbard &amp; Jan Mayen<span class="localization-form__currency"
  6936.                  >(AUD
  6937.                  $)</span
  6938.                >
  6939.              </a>
  6940.            </li><li class="disclosure-list__item">
  6941.              <a
  6942.                class="disclosure-list__option"
  6943.                href="#"
  6944.                
  6945.                data-value="SE"
  6946.                data-disclosure-option
  6947.              >
  6948.                <span class="f-country-flags f-country-flags--SE"></span>Sweden<span class="localization-form__currency"
  6949.                  >(SEK
  6950.                  kr)</span
  6951.                >
  6952.              </a>
  6953.            </li><li class="disclosure-list__item">
  6954.              <a
  6955.                class="disclosure-list__option"
  6956.                href="#"
  6957.                
  6958.                data-value="CH"
  6959.                data-disclosure-option
  6960.              >
  6961.                <span class="f-country-flags f-country-flags--CH"></span>Switzerland<span class="localization-form__currency"
  6962.                  >(CHF
  6963.                  CHF)</span
  6964.                >
  6965.              </a>
  6966.            </li><li class="disclosure-list__item">
  6967.              <a
  6968.                class="disclosure-list__option"
  6969.                href="#"
  6970.                
  6971.                data-value="TW"
  6972.                data-disclosure-option
  6973.              >
  6974.                <span class="f-country-flags f-country-flags--TW"></span>Taiwan<span class="localization-form__currency"
  6975.                  >(TWD
  6976.                  $)</span
  6977.                >
  6978.              </a>
  6979.            </li><li class="disclosure-list__item">
  6980.              <a
  6981.                class="disclosure-list__option"
  6982.                href="#"
  6983.                
  6984.                data-value="TJ"
  6985.                data-disclosure-option
  6986.              >
  6987.                <span class="f-country-flags f-country-flags--TJ"></span>Tajikistan<span class="localization-form__currency"
  6988.                  >(TJS
  6989.                  ЅМ)</span
  6990.                >
  6991.              </a>
  6992.            </li><li class="disclosure-list__item">
  6993.              <a
  6994.                class="disclosure-list__option"
  6995.                href="#"
  6996.                
  6997.                data-value="TZ"
  6998.                data-disclosure-option
  6999.              >
  7000.                <span class="f-country-flags f-country-flags--TZ"></span>Tanzania<span class="localization-form__currency"
  7001.                  >(TZS
  7002.                  Sh)</span
  7003.                >
  7004.              </a>
  7005.            </li><li class="disclosure-list__item">
  7006.              <a
  7007.                class="disclosure-list__option"
  7008.                href="#"
  7009.                
  7010.                data-value="TH"
  7011.                data-disclosure-option
  7012.              >
  7013.                <span class="f-country-flags f-country-flags--TH"></span>Thailand<span class="localization-form__currency"
  7014.                  >(THB
  7015.                  ฿)</span
  7016.                >
  7017.              </a>
  7018.            </li><li class="disclosure-list__item">
  7019.              <a
  7020.                class="disclosure-list__option"
  7021.                href="#"
  7022.                
  7023.                data-value="TL"
  7024.                data-disclosure-option
  7025.              >
  7026.                <span class="f-country-flags f-country-flags--TL"></span>Timor-Leste<span class="localization-form__currency"
  7027.                  >(USD
  7028.                  $)</span
  7029.                >
  7030.              </a>
  7031.            </li><li class="disclosure-list__item">
  7032.              <a
  7033.                class="disclosure-list__option"
  7034.                href="#"
  7035.                
  7036.                data-value="TG"
  7037.                data-disclosure-option
  7038.              >
  7039.                <span class="f-country-flags f-country-flags--TG"></span>Togo<span class="localization-form__currency"
  7040.                  >(XOF
  7041.                  Fr)</span
  7042.                >
  7043.              </a>
  7044.            </li><li class="disclosure-list__item">
  7045.              <a
  7046.                class="disclosure-list__option"
  7047.                href="#"
  7048.                
  7049.                data-value="TK"
  7050.                data-disclosure-option
  7051.              >
  7052.                <span class="f-country-flags f-country-flags--TK"></span>Tokelau<span class="localization-form__currency"
  7053.                  >(NZD
  7054.                  $)</span
  7055.                >
  7056.              </a>
  7057.            </li><li class="disclosure-list__item">
  7058.              <a
  7059.                class="disclosure-list__option"
  7060.                href="#"
  7061.                
  7062.                data-value="TO"
  7063.                data-disclosure-option
  7064.              >
  7065.                <span class="f-country-flags f-country-flags--TO"></span>Tonga<span class="localization-form__currency"
  7066.                  >(TOP
  7067.                  T$)</span
  7068.                >
  7069.              </a>
  7070.            </li><li class="disclosure-list__item">
  7071.              <a
  7072.                class="disclosure-list__option"
  7073.                href="#"
  7074.                
  7075.                data-value="TT"
  7076.                data-disclosure-option
  7077.              >
  7078.                <span class="f-country-flags f-country-flags--TT"></span>Trinidad &amp; Tobago<span class="localization-form__currency"
  7079.                  >(TTD
  7080.                  $)</span
  7081.                >
  7082.              </a>
  7083.            </li><li class="disclosure-list__item">
  7084.              <a
  7085.                class="disclosure-list__option"
  7086.                href="#"
  7087.                
  7088.                data-value="TA"
  7089.                data-disclosure-option
  7090.              >
  7091.                <span class="f-country-flags f-country-flags--TA"></span>Tristan da Cunha<span class="localization-form__currency"
  7092.                  >(GBP
  7093.                  £)</span
  7094.                >
  7095.              </a>
  7096.            </li><li class="disclosure-list__item">
  7097.              <a
  7098.                class="disclosure-list__option"
  7099.                href="#"
  7100.                
  7101.                data-value="TN"
  7102.                data-disclosure-option
  7103.              >
  7104.                <span class="f-country-flags f-country-flags--TN"></span>Tunisia<span class="localization-form__currency"
  7105.                  >(AUD
  7106.                  $)</span
  7107.                >
  7108.              </a>
  7109.            </li><li class="disclosure-list__item">
  7110.              <a
  7111.                class="disclosure-list__option"
  7112.                href="#"
  7113.                
  7114.                data-value="TR"
  7115.                data-disclosure-option
  7116.              >
  7117.                <span class="f-country-flags f-country-flags--TR"></span>Türkiye<span class="localization-form__currency"
  7118.                  >(AUD
  7119.                  $)</span
  7120.                >
  7121.              </a>
  7122.            </li><li class="disclosure-list__item">
  7123.              <a
  7124.                class="disclosure-list__option"
  7125.                href="#"
  7126.                
  7127.                data-value="TM"
  7128.                data-disclosure-option
  7129.              >
  7130.                <span class="f-country-flags f-country-flags--TM"></span>Turkmenistan<span class="localization-form__currency"
  7131.                  >(AUD
  7132.                  $)</span
  7133.                >
  7134.              </a>
  7135.            </li><li class="disclosure-list__item">
  7136.              <a
  7137.                class="disclosure-list__option"
  7138.                href="#"
  7139.                
  7140.                data-value="TC"
  7141.                data-disclosure-option
  7142.              >
  7143.                <span class="f-country-flags f-country-flags--TC"></span>Turks &amp; Caicos Islands<span class="localization-form__currency"
  7144.                  >(USD
  7145.                  $)</span
  7146.                >
  7147.              </a>
  7148.            </li><li class="disclosure-list__item">
  7149.              <a
  7150.                class="disclosure-list__option"
  7151.                href="#"
  7152.                
  7153.                data-value="TV"
  7154.                data-disclosure-option
  7155.              >
  7156.                <span class="f-country-flags f-country-flags--TV"></span>Tuvalu<span class="localization-form__currency"
  7157.                  >(AUD
  7158.                  $)</span
  7159.                >
  7160.              </a>
  7161.            </li><li class="disclosure-list__item">
  7162.              <a
  7163.                class="disclosure-list__option"
  7164.                href="#"
  7165.                
  7166.                data-value="UM"
  7167.                data-disclosure-option
  7168.              >
  7169.                <span class="f-country-flags f-country-flags--UM"></span>U.S. Outlying Islands<span class="localization-form__currency"
  7170.                  >(USD
  7171.                  $)</span
  7172.                >
  7173.              </a>
  7174.            </li><li class="disclosure-list__item">
  7175.              <a
  7176.                class="disclosure-list__option"
  7177.                href="#"
  7178.                
  7179.                data-value="UG"
  7180.                data-disclosure-option
  7181.              >
  7182.                <span class="f-country-flags f-country-flags--UG"></span>Uganda<span class="localization-form__currency"
  7183.                  >(UGX
  7184.                  USh)</span
  7185.                >
  7186.              </a>
  7187.            </li><li class="disclosure-list__item">
  7188.              <a
  7189.                class="disclosure-list__option"
  7190.                href="#"
  7191.                
  7192.                data-value="UA"
  7193.                data-disclosure-option
  7194.              >
  7195.                <span class="f-country-flags f-country-flags--UA"></span>Ukraine<span class="localization-form__currency"
  7196.                  >(UAH
  7197.                  ₴)</span
  7198.                >
  7199.              </a>
  7200.            </li><li class="disclosure-list__item">
  7201.              <a
  7202.                class="disclosure-list__option"
  7203.                href="#"
  7204.                
  7205.                data-value="AE"
  7206.                data-disclosure-option
  7207.              >
  7208.                <span class="f-country-flags f-country-flags--AE"></span>United Arab Emirates<span class="localization-form__currency"
  7209.                  >(AED
  7210.                  د.إ)</span
  7211.                >
  7212.              </a>
  7213.            </li><li class="disclosure-list__item">
  7214.              <a
  7215.                class="disclosure-list__option"
  7216.                href="#"
  7217.                
  7218.                data-value="GB"
  7219.                data-disclosure-option
  7220.              >
  7221.                <span class="f-country-flags f-country-flags--GB"></span>United Kingdom<span class="localization-form__currency"
  7222.                  >(GBP
  7223.                  £)</span
  7224.                >
  7225.              </a>
  7226.            </li><li class="disclosure-list__item">
  7227.              <a
  7228.                class="disclosure-list__option"
  7229.                href="#"
  7230.                
  7231.                data-value="UY"
  7232.                data-disclosure-option
  7233.              >
  7234.                <span class="f-country-flags f-country-flags--UY"></span>Uruguay<span class="localization-form__currency"
  7235.                  >(UYU
  7236.                  $U)</span
  7237.                >
  7238.              </a>
  7239.            </li><li class="disclosure-list__item">
  7240.              <a
  7241.                class="disclosure-list__option"
  7242.                href="#"
  7243.                
  7244.                data-value="UZ"
  7245.                data-disclosure-option
  7246.              >
  7247.                <span class="f-country-flags f-country-flags--UZ"></span>Uzbekistan<span class="localization-form__currency"
  7248.                  >(UZS
  7249.                  so'm)</span
  7250.                >
  7251.              </a>
  7252.            </li><li class="disclosure-list__item">
  7253.              <a
  7254.                class="disclosure-list__option"
  7255.                href="#"
  7256.                
  7257.                data-value="VU"
  7258.                data-disclosure-option
  7259.              >
  7260.                <span class="f-country-flags f-country-flags--VU"></span>Vanuatu<span class="localization-form__currency"
  7261.                  >(VUV
  7262.                  Vt)</span
  7263.                >
  7264.              </a>
  7265.            </li><li class="disclosure-list__item">
  7266.              <a
  7267.                class="disclosure-list__option"
  7268.                href="#"
  7269.                
  7270.                data-value="VA"
  7271.                data-disclosure-option
  7272.              >
  7273.                <span class="f-country-flags f-country-flags--VA"></span>Vatican City<span class="localization-form__currency"
  7274.                  >(EUR
  7275.                  €)</span
  7276.                >
  7277.              </a>
  7278.            </li><li class="disclosure-list__item">
  7279.              <a
  7280.                class="disclosure-list__option"
  7281.                href="#"
  7282.                
  7283.                data-value="VE"
  7284.                data-disclosure-option
  7285.              >
  7286.                <span class="f-country-flags f-country-flags--VE"></span>Venezuela<span class="localization-form__currency"
  7287.                  >(USD
  7288.                  $)</span
  7289.                >
  7290.              </a>
  7291.            </li><li class="disclosure-list__item">
  7292.              <a
  7293.                class="disclosure-list__option"
  7294.                href="#"
  7295.                
  7296.                data-value="VN"
  7297.                data-disclosure-option
  7298.              >
  7299.                <span class="f-country-flags f-country-flags--VN"></span>Vietnam<span class="localization-form__currency"
  7300.                  >(VND
  7301.                  ₫)</span
  7302.                >
  7303.              </a>
  7304.            </li><li class="disclosure-list__item">
  7305.              <a
  7306.                class="disclosure-list__option"
  7307.                href="#"
  7308.                
  7309.                data-value="WF"
  7310.                data-disclosure-option
  7311.              >
  7312.                <span class="f-country-flags f-country-flags--WF"></span>Wallis &amp; Futuna<span class="localization-form__currency"
  7313.                  >(XPF
  7314.                  Fr)</span
  7315.                >
  7316.              </a>
  7317.            </li><li class="disclosure-list__item">
  7318.              <a
  7319.                class="disclosure-list__option"
  7320.                href="#"
  7321.                
  7322.                data-value="EH"
  7323.                data-disclosure-option
  7324.              >
  7325.                <span class="f-country-flags f-country-flags--EH"></span>Western Sahara<span class="localization-form__currency"
  7326.                  >(MAD
  7327.                  د.م.)</span
  7328.                >
  7329.              </a>
  7330.            </li><li class="disclosure-list__item">
  7331.              <a
  7332.                class="disclosure-list__option"
  7333.                href="#"
  7334.                
  7335.                data-value="YE"
  7336.                data-disclosure-option
  7337.              >
  7338.                <span class="f-country-flags f-country-flags--YE"></span>Yemen<span class="localization-form__currency"
  7339.                  >(YER
  7340.                  ﷼)</span
  7341.                >
  7342.              </a>
  7343.            </li><li class="disclosure-list__item">
  7344.              <a
  7345.                class="disclosure-list__option"
  7346.                href="#"
  7347.                
  7348.                data-value="ZM"
  7349.                data-disclosure-option
  7350.              >
  7351.                <span class="f-country-flags f-country-flags--ZM"></span>Zambia<span class="localization-form__currency"
  7352.                  >(AUD
  7353.                  $)</span
  7354.                >
  7355.              </a>
  7356.            </li><li class="disclosure-list__item">
  7357.              <a
  7358.                class="disclosure-list__option"
  7359.                href="#"
  7360.                
  7361.                data-value="ZW"
  7362.                data-disclosure-option
  7363.              >
  7364.                <span class="f-country-flags f-country-flags--ZW"></span>Zimbabwe<span class="localization-form__currency"
  7365.                  >(USD
  7366.                  $)</span
  7367.                >
  7368.              </a>
  7369.            </li></ul>
  7370.        <input type="hidden" name="country_code" value="AU" data-disclosure-input></form></localization-form>
  7371.  </div>
  7372.  
  7373.  
  7374.  
  7375. </div></div><div class="menu-drawer__social-icons">
  7376.            
  7377. <ul class="list-unstyled flex gap-x-4 gap-y-2 items-center socials justify-center" role="list"><li class="social__item inline-flex">
  7378.      <a href="https://www.facebook.com/profile.php?id=61559873790442" class="social__link inline-flex"><svg
  7379.  aria-hidden="true"
  7380.  focusable="false"
  7381.  role="presentation"
  7382.  class="icon icon-facebook icon--large"
  7383.  viewBox="0 0 24 24"
  7384.  xmlns="http://www.w3.org/2000/svg"
  7385. >
  7386.  <path fill-rule="evenodd" clip-rule="evenodd" d="M4 12.4972C4 16.6986 7.06844 20.1919 11.081 20.9L11.1284 20.8621C11.1126 20.8591 11.0968 20.856 11.081 20.8528V14.8575H8.9567V12.4972H11.081V10.6089C11.081 8.48464 12.45 7.30447 14.3855 7.30447C14.9992 7.30447 15.6601 7.39888 16.2737 7.4933V9.6648H15.188C14.1494 9.6648 13.9134 10.1841 13.9134 10.845V12.4972H16.1793L15.8017 14.8575H13.9134V20.8528C13.8976 20.856 13.8818 20.8591 13.866 20.8621L13.9134 20.9C17.926 20.1919 20.9944 16.6986 20.9944 12.4972C20.9944 7.82374 17.1707 4 12.4972 4C7.82374 4 4 7.82374 4 12.4972Z" fill="currentColor"/>
  7387. </svg>
  7388. <span class="visually-hidden">Facebook</span>
  7389.      </a>
  7390.    </li><li class="social__item inline-flex">
  7391.      <a href="http://www.instagram.com/mymimi.com.au" class="social__link inline-flex"><svg
  7392.  aria-hidden="true"
  7393.  focusable="false"
  7394.  role="presentation"
  7395.  class="icon icon-instagram icon--large"
  7396.  viewBox="0 0 24 24"
  7397.  xmlns="http://www.w3.org/2000/svg"
  7398. >
  7399.  <path d="M11.7255 3C9.35597 3 9.0586 3.01036 8.12796 3.05271C7.19914 3.09525 6.56515 3.2423 6.0104 3.45806C5.43656 3.68091 4.9498 3.97902 4.46485 4.46416C3.97953 4.94913 3.68144 5.43591 3.45787 6.00958C3.24157 6.56453 3.09434 7.19872 3.05253 8.12721C3.01091 9.05788 3 9.35544 3 11.725C3 14.0946 3.01054 14.391 3.05271 15.3217C3.09543 16.2506 3.24248 16.8846 3.45805 17.4393C3.68107 18.0132 3.97917 18.5 4.4643 18.9849C4.94907 19.4703 5.43584 19.7691 6.00931 19.9919C6.56442 20.2077 7.1986 20.3548 8.12724 20.3973C9.05787 20.4396 9.35506 20.45 11.7244 20.45C14.094 20.45 14.3905 20.4396 15.3211 20.3973C16.25 20.3548 16.8847 20.2077 17.4398 19.9919C18.0135 19.7691 18.4995 19.4703 18.9843 18.9849C19.4696 18.5 19.7677 18.0132 19.9912 17.4395C20.2057 16.8846 20.353 16.2504 20.3966 15.3219C20.4384 14.3912 20.4493 14.0946 20.4493 11.725C20.4493 9.35544 20.4384 9.05806 20.3966 8.12739C20.353 7.19854 20.2057 6.56453 19.9912 6.00976C19.7677 5.43591 19.4696 4.94913 18.9843 4.46416C18.4989 3.97884 18.0136 3.68073 17.4393 3.45806C16.8831 3.2423 16.2487 3.09525 15.3199 3.05271C14.3892 3.01036 14.093 3 11.7227 3H11.7255ZM10.9428 4.57232C11.1751 4.57195 11.4343 4.57232 11.7255 4.57232C14.055 4.57232 14.3311 4.58068 15.251 4.62249C16.1016 4.66139 16.5633 4.80353 16.8709 4.92295C17.278 5.08109 17.5683 5.27014 17.8735 5.57551C18.1789 5.88089 18.3679 6.17172 18.5264 6.57889C18.6458 6.88608 18.7881 7.34778 18.8269 8.19846C18.8687 9.11822 18.8777 9.39452 18.8777 11.723C18.8777 14.0515 18.8687 14.3278 18.8269 15.2475C18.788 16.0982 18.6458 16.5599 18.5264 16.8671C18.3683 17.2743 18.1789 17.5642 17.8735 17.8694C17.5681 18.1748 17.2782 18.3638 16.8709 18.522C16.5637 18.6419 16.1016 18.7837 15.251 18.8226C14.3313 18.8644 14.055 18.8735 11.7255 18.8735C9.39578 18.8735 9.11968 18.8644 8.19994 18.8226C7.34928 18.7833 6.8876 18.6412 6.57987 18.5218C6.17271 18.3636 5.88189 18.1746 5.57652 17.8692C5.27116 17.5638 5.08212 17.2737 4.92362 16.8664C4.8042 16.5592 4.66188 16.0975 4.62316 15.2468C4.58136 14.3271 4.573 14.0508 4.573 11.7208C4.573 9.39088 4.58136 9.11604 4.62316 8.19628C4.66206 7.3456 4.8042 6.8839 4.92362 6.57634C5.08176 6.16917 5.27116 5.87834 5.57652 5.57297C5.88189 5.26759 6.17271 5.07855 6.57987 4.92005C6.88741 4.80008 7.34928 4.6583 8.19994 4.61921C9.0048 4.58286 9.31671 4.57195 10.9428 4.57014V4.57232ZM16.3827 6.02103C15.8046 6.02103 15.3357 6.48945 15.3357 7.06767C15.3357 7.6457 15.8046 8.11467 16.3827 8.11467C16.9607 8.11467 17.4296 7.6457 17.4296 7.06767C17.4296 6.48964 16.9607 6.02067 16.3827 6.02067V6.02103ZM11.7255 7.24435C9.25109 7.24435 7.24495 9.25055 7.24495 11.725C7.24495 14.1994 9.25109 16.2047 11.7255 16.2047C14.1998 16.2047 16.2053 14.1994 16.2053 11.725C16.2053 9.25055 14.1997 7.24435 11.7253 7.24435H11.7255ZM11.7255 8.81667C13.3315 8.81667 14.6337 10.1187 14.6337 11.725C14.6337 13.3311 13.3315 14.6333 11.7255 14.6333C10.1192 14.6333 8.81722 13.3311 8.81722 11.725C8.81722 10.1187 10.1192 8.81667 11.7255 8.81667Z" fill="currentColor"/>
  7400. </svg>
  7401. <span class="visually-hidden">Instagram</span>
  7402.      </a>
  7403.    </li><li class="social__item inline-flex">
  7404.      <a href="https://www.tiktok.com/@mymimi.com.au" class="social__link inline-flex"><svg
  7405.  aria-hidden="true"
  7406.  focusable="false"
  7407.  role="presentation"
  7408.  class="icon icon-tiktok icon--large"
  7409.  fill="none"
  7410.  viewBox="0 0 24 24"
  7411.  xmlns="http://www.w3.org/2000/svg"
  7412. >
  7413.  <path d="M10.2664 17.2589C11.6014 17.2589 12.6837 16.3032 12.6837 14.8417V4H15.5826C15.42 5.97723 17.3855 7.88718 19.5532 7.8435V10.5695C17.6994 10.5695 16.123 9.78561 15.5743 9.35059V14.8417C15.5743 17.2589 13.6728 20 10.2664 20C6.8601 20 5 17.2589 5 14.8417C5 11.43 8.61044 9.45136 11.0017 9.93497V12.7115C10.8814 12.669 10.5712 12.6061 10.3069 12.6061C8.96086 12.5564 7.8492 13.6482 7.8492 14.8417C7.8492 16.1767 8.93143 17.2589 10.2664 17.2589Z" fill="currentColor"/>
  7414. </svg>
  7415. <span class="visually-hidden">TikTok</span>
  7416.      </a>
  7417.    </li><li class="social__item inline-flex">
  7418.      <a href="https://www.youtube.com/@mymimiau" class="social__link inline-flex"><svg
  7419.  aria-hidden="true"
  7420.  focusable="false"
  7421.  role="presentation"
  7422.  class="icon icon-youtube icon--large"
  7423.  viewBox="0 0 24 24"
  7424.  xmlns="http://www.w3.org/2000/svg"
  7425. >
  7426.  <path fill-rule="evenodd" clip-rule="evenodd" d="M19.8212 5.42824C20.6776 5.65882 21.3529 6.33412 21.5835 7.19059C22.0118 8.75529 21.9953 12.0165 21.9953 12.0165C21.9953 12.0165 21.9953 15.2612 21.5835 16.8259C21.3529 17.6824 20.6776 18.3576 19.8212 18.5882C18.2565 19 11.9976 19 11.9976 19C11.9976 19 5.75529 19 4.17412 18.5718C3.31765 18.3412 2.64235 17.6659 2.41176 16.8094C2 15.2612 2 12 2 12C2 12 2 8.75529 2.41176 7.19059C2.64235 6.33412 3.33412 5.64235 4.17412 5.41176C5.73882 5 11.9976 5 11.9976 5C11.9976 5 18.2565 5 19.8212 5.42824ZM15.2091 11.8857L10.0044 14.8834V8.88807L15.2091 11.8857Z" fill="currentColor"/>
  7427. </svg>
  7428. <span class="visually-hidden">YouTube</span>
  7429.      </a>
  7430.    </li></ul>
  7431.  
  7432.          </div></div>
  7433.    </div>
  7434.  </div>
  7435. </menu-drawer>
  7436. <script type="application/ld+json">
  7437.  {
  7438.    "@context": "http://schema.org",
  7439.    "@type": "Organization",
  7440.    "name": "my mimi",
  7441.    
  7442.      "logo": "https:\/\/mymimi.com.au\/cdn\/shop\/files\/logo.png?v=1716105592\u0026width=500",
  7443.    
  7444.    "sameAs": [
  7445.      "",
  7446.      "https:\/\/www.facebook.com\/profile.php?id=61559873790442",
  7447.      "",
  7448.      "http:\/\/www.instagram.com\/mymimi.com.au",
  7449.      "https:\/\/www.tiktok.com\/@mymimi.com.au",
  7450.      "",
  7451.      "",
  7452.      "https:\/\/www.youtube.com\/@mymimiau",
  7453.      ""
  7454.    ],
  7455.    "url": "https:\/\/mymimi.com.au"
  7456.  }
  7457. </script>
  7458.  <script type="application/ld+json">
  7459.    {
  7460.      "@context": "http://schema.org",
  7461.      "@type": "WebSite",
  7462.      "name": "my mimi",
  7463.      "potentialAction": {
  7464.        "@type": "SearchAction",
  7465.        "target": "https:\/\/mymimi.com.au\/search?q={search_term_string}",
  7466.        "query-input": "required name=search_term_string"
  7467.      },
  7468.      "url": "https:\/\/mymimi.com.au"
  7469.    }
  7470.  </script>
  7471. </div>
  7472. <!-- END sections: header-group -->
  7473.  
  7474.      <main id="MainContent" class="main-content content-for-layout focus-none" role="main" tabindex="-1">
  7475.        <div id="shopify-section-template--18997227126996__image_with_text_overlay_cadqWR" class="shopify-section"><style>
  7476.  #shopify-section-template--18997227126996__image_with_text_overlay_cadqWR {
  7477.    --section-padding-top: 0px;
  7478.    --section-padding-bottom: 0px;
  7479.      --media-ratio: 38.4;
  7480.    --padding-x: var(--page-padding);}</style>
  7481. <div class="image-with-text-overlay section--padding">
  7482.  <div class="w-full">
  7483.    <div class="relative overflow-hidden">
  7484.      <parallax-element
  7485.        class="block w-full h-full overflow-hidden"
  7486.        
  7487.      >
  7488.        <motion-element
  7489.          data-motion="zoom-out"
  7490.          class="block relative overflow-hidden w-full h-full media mb:media--auto media--adapt"
  7491.        ><picture class="media-wrapper media--height block w-full h-full relative overflow-hidden"><img src="//mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&amp;width=960" alt="menstrual disc" srcset="//mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&amp;width=300 300w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&amp;width=400 400w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&amp;width=500 500w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&amp;width=600 600w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&amp;width=700 700w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&amp;width=800 800w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&amp;width=900 900w" width="960" height="25" loading="lazy" sizes="100vw" is="image-eager"></picture></motion-element>
  7492.      </parallax-element>
  7493.      <div class="image-with-text-ovelay__content">
  7494.        <div class="image-with-text-ovelay__content-wrapper content-overlay content-overlay--middle-left color-scheme-3 page-width">
  7495.          <div class="relative z-1 rich-text text-left">
  7496.              
  7497.                  <motion-element
  7498.                    data-motion="fade-up"
  7499.                    data-motion-delay="50"
  7500.                    class="block rich-text__text rte text-sm"
  7501.                    
  7502.                  ><h1>Menstrual Disc | Reusable Eco-Friendly Period Care Australia</h1></motion-element>
  7503.            
  7504.          </div>
  7505.        </div>
  7506.      </div>
  7507.      <div
  7508.        class="bg-overlay absolute inset-0"
  7509.        style="--color-overlay-alpha: 0;"
  7510.      ></div>
  7511.    </div>
  7512.  </div>
  7513. </div>
  7514.  
  7515. </div><div id="shopify-section-template--18997227126996__image_with_text_overlay_yXRaKt" class="shopify-section"><style>
  7516.  #shopify-section-template--18997227126996__image_with_text_overlay_yXRaKt {
  7517.    --section-padding-top: 0px;
  7518.    --section-padding-bottom: 0px;
  7519.      --media-ratio: 2.73972602739726;
  7520.    --padding-x: var(--page-padding);}</style>
  7521. <div class="image-with-text-overlay section--padding">
  7522.  <div class="w-full">
  7523.    <div class="relative overflow-hidden">
  7524.      <parallax-element
  7525.        class="block w-full h-full overflow-hidden"
  7526.        
  7527.      >
  7528.        <motion-element
  7529.          data-motion="zoom-out"
  7530.          class="block relative overflow-hidden w-full h-full media mb:media--small media--adapt"
  7531.        ><picture class="media-wrapper media--height block w-full h-full relative overflow-hidden"><img src="//mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=2200" alt="menstrual disc" srcset="//mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=300 300w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=400 400w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=500 500w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=600 600w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=700 700w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=800 800w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=900 900w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=1000 1000w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=1200 1200w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=1400 1400w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=1600 1600w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=1800 1800w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=2000 2000w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&amp;width=2200 2200w" width="2200" height="803" loading="lazy" sizes="100vw" is="image-eager"></picture></motion-element>
  7532.      </parallax-element>
  7533.      <div class="image-with-text-ovelay__content">
  7534.        <div class="image-with-text-ovelay__content-wrapper content-overlay content-overlay--middle-left color-scheme-inverse page-width">
  7535.          <div class="relative z-1 rich-text text-left">
  7536.          </div>
  7537.        </div>
  7538.      </div>
  7539.      <div
  7540.        class="bg-overlay absolute inset-0"
  7541.        style="--color-overlay-alpha: 0;"
  7542.      ></div>
  7543.    </div>
  7544.  </div>
  7545. </div>
  7546.  
  7547. </div><section id="shopify-section-template--18997227126996__rich_text_7MPpdy" class="shopify-section section">
  7548. <div
  7549.  class="section section--padding rich-text-section color-scheme-1"
  7550.  style="--section-padding-top: 20px;--section-padding-bottom: 20px;"
  7551. >
  7552.  <div class="page-width">
  7553.    <div class="rich-text text-center">
  7554.      
  7555.        
  7556.            <motion-element
  7557.              data-motion="fade-up"
  7558.              data-motion-delay="50"
  7559.              class="block rich-text__text rte text-inherit"
  7560.              
  7561.            >
  7562.              <h1>Upgrade your period care with the innovative <a href="https://mymimi.com.au/products/my-mimi-menstrual-disc" title="my mimi menstrual disc"><strong>my mimi menstrual disc</strong></a>.</h1>
  7563.            </motion-element>
  7564.      
  7565.    </div>
  7566.  </div>
  7567. </div>
  7568.  
  7569.  
  7570. </section><section id="shopify-section-template--18997227126996__rich_text_8JETzA" class="shopify-section section">
  7571. <div
  7572.  class="section section--padding rich-text-section color-scheme-1"
  7573.  style="--section-padding-top: 0px;--section-padding-bottom: 50px;"
  7574. >
  7575.  <div class="page-width">
  7576.    <div class="rich-text text-center">
  7577.      
  7578.        
  7579.            <motion-element
  7580.              data-motion="fade-up"
  7581.              data-motion-delay="50"
  7582.              class="block rich-text__text rte text-base"
  7583.              
  7584.            >
  7585.              <p>Experience the future of <strong>period care</strong> with the <em><strong>my mimi</strong></em><strong> menstrual disc</strong>, designed for comfort, convenience, and sustainability.<br/> Made from premium <strong>medical-grade silicone</strong>, it offers <strong>12-hour leak-resistant protection</strong>, perfect for busy lifestyles. This <strong>eco-friendly alternative</strong> to traditional <strong>menstrual products</strong> ensures a cleaner, stress-free period experience. Upgrade your <strong>menstrual care routine</strong> today.</p>
  7586.            </motion-element>
  7587.      
  7588.    </div>
  7589.  </div>
  7590. </div>
  7591.  
  7592.  
  7593. </section><section id="shopify-section-template--18997227126996__multicolumn_dR4qUC" class="shopify-section section"><link href="//mymimi.com.au/cdn/shop/t/11/assets/component-multicolumn-card.css?v=177536091748601410891738695060" rel="stylesheet" type="text/css" media="all" />
  7594.  
  7595. <div
  7596.  class="section section--padding multicolumn color-scheme-1"
  7597.  style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
  7598. >
  7599.  <div class="page-width"><div class="section__header text-left md:text-left rich-text spacing--large"><h2 class="rich-text__heading inline-richtext overflow-hidden h1">
  7600.            <motion-element data-motion="fade-up" data-motion-delay="50" class="block">
  7601.              
  7602. <a href="/pages/menstrual-disc-benefits" title="benefits">menstrual disc benefits</a>
  7603.            </motion-element>
  7604.          </h2></div><motion-element
  7605.      class="section__content block f-grid--gap-large"
  7606.      data-motion="fade-up"
  7607.      data-motion-delay="100"
  7608.    >
  7609.      <div class="multicolumn__items f-grid f-grid-2-cols md:f-grid-3-cols lg:f-grid-3-cols"><div class="f-column" >
  7610.            <div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
  7611.                  <motion-element data-motion="zoom-out-sm" class="block w-full h-full">
  7612.                    <img src="//mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&amp;width=1100" alt="menstrual disc - mess free activities" srcset="//mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&amp;width=360 360w, //mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&amp;width=535 535w, //mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&amp;width=750 750w, //mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&amp;width=940 940w, //mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&amp;width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  7613.                  </motion-element>
  7614.                </div><div class="multicolumn-card__info"><h3 class="multicolumn-card__title h4">mess free activites</h3><div class="multicolumn-card__text rich-text__text rte text-base">
  7615.                    <p>providing a clean and discrete solution for staying active & confident during your period</p>
  7616.                  </div><a
  7617.                    
  7618.                      href="https://mymimi.com.au/pages/mess-free-lifestyle"
  7619.                    
  7620.                    class="btn btn--underline"
  7621.                  >read more</a></div>
  7622.            </div>
  7623.          </div><div class="f-column" >
  7624.            <div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
  7625.                  <motion-element data-motion="zoom-out-sm" class="block w-full h-full">
  7626.                    <img src="//mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&amp;width=1100" alt="menstrual disc - vaginal wellness" srcset="//mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&amp;width=360 360w, //mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&amp;width=535 535w, //mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&amp;width=750 750w, //mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&amp;width=940 940w, //mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&amp;width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  7627.                  </motion-element>
  7628.                </div><div class="multicolumn-card__info"><h3 class="multicolumn-card__title h4">vaginal wellness</h3><div class="multicolumn-card__text rich-text__text rte text-base">
  7629.                    <p>our BPA-free product is designed to maintain your body’s natural pH balance</p>
  7630.                  </div><a
  7631.                    
  7632.                      href="https://mymimi.com.au/pages/do-doctors-recommend-menstrual-discs"
  7633.                    
  7634.                    class="btn btn--underline"
  7635.                  >read more</a></div>
  7636.            </div>
  7637.          </div><div class="f-column" >
  7638.            <div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
  7639.                  <motion-element data-motion="zoom-out-sm" class="block w-full h-full">
  7640.                    <img src="//mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&amp;width=1100" alt="menstrual disc - budget friendly" srcset="//mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&amp;width=360 360w, //mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&amp;width=535 535w, //mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&amp;width=750 750w, //mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&amp;width=940 940w, //mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&amp;width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  7641.                  </motion-element>
  7642.                </div><div class="multicolumn-card__info"><h3 class="multicolumn-card__title h4">budget friendly</h3><div class="multicolumn-card__text rich-text__text rte text-base">
  7643.                    <p>cost-effective alternative solution, reducing the need for frequent purchases of disposable products</p>
  7644.                  </div><a
  7645.                    
  7646.                      href="https://mymimi.com.au/pages/budget-friendly"
  7647.                    
  7648.                    class="btn btn--underline"
  7649.                  >read more</a></div>
  7650.            </div>
  7651.          </div><div class="f-column" >
  7652.            <div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
  7653.                  <motion-element data-motion="zoom-out-sm" class="block w-full h-full">
  7654.                    <img src="//mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&amp;width=1100" alt="menstrual disc - long lasting protection" srcset="//mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&amp;width=360 360w, //mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&amp;width=535 535w, //mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&amp;width=750 750w, //mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&amp;width=940 940w, //mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&amp;width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  7655.                  </motion-element>
  7656.                </div><div class="multicolumn-card__info"><h3 class="multicolumn-card__title h4">long-lasting protection</h3><div class="multicolumn-card__text rich-text__text rte text-base">
  7657.                    <p>offering up to 12 hours of protection, making it ideal for both day and night</p>
  7658.                  </div><a
  7659.                    
  7660.                      href="https://mymimi.com.au/pages/long-lasting-protection"
  7661.                    
  7662.                    class="btn btn--underline"
  7663.                  >read more</a></div>
  7664.            </div>
  7665.          </div><div class="f-column" >
  7666.            <div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
  7667.                  <motion-element data-motion="zoom-out-sm" class="block w-full h-full">
  7668.                    <img src="//mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&amp;width=1100" alt="menstrual disc - suction free" srcset="//mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&amp;width=360 360w, //mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&amp;width=535 535w, //mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&amp;width=750 750w, //mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&amp;width=940 940w, //mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&amp;width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  7669.                  </motion-element>
  7670.                </div><div class="multicolumn-card__info"><h3 class="multicolumn-card__title h4">suction free</h3><div class="multicolumn-card__text rich-text__text rte text-base">
  7671.                    <p>designed to be suction free, providing a secure fit without causing discomfort & IUD-friendly</p>
  7672.                  </div><a
  7673.                    
  7674.                      href="https://mymimi.com.au/pages/menstrual-disc-with-iud-everything-you-need-to-know"
  7675.                    
  7676.                    class="btn btn--underline"
  7677.                  >read more</a></div>
  7678.            </div>
  7679.          </div><div class="f-column" >
  7680.            <div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
  7681.                  <motion-element data-motion="zoom-out-sm" class="block w-full h-full">
  7682.                    <img src="//mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&amp;width=1100" alt="menstrual disc - premium materials" srcset="//mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&amp;width=360 360w, //mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&amp;width=535 535w, //mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&amp;width=750 750w, //mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&amp;width=940 940w, //mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&amp;width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  7683.                  </motion-element>
  7684.                </div><div class="multicolumn-card__info"><h3 class="multicolumn-card__title h4">premium materials</h3><div class="multicolumn-card__text rich-text__text rte text-base">
  7685.                    <p>crafted from premium, 100% medical grade silicone, ensuring both comfort and durability</p>
  7686.                  </div><a
  7687.                    
  7688.                      href="https://mymimi.com.au/pages/are-menstrual-discs-safe-to-use"
  7689.                    
  7690.                    class="btn btn--underline"
  7691.                  >read more</a></div>
  7692.            </div>
  7693.          </div></div>
  7694.    </motion-element>
  7695.  </div>
  7696. </div>
  7697.  
  7698. </section><div id="shopify-section-template--18997227126996__products_showcase_wbf8TB" class="shopify-section"><link href="//mymimi.com.au/cdn/shop/t/11/assets/section-products-showcase.css?v=15293826306862919081738695061" rel="stylesheet" type="text/css" media="all" />
  7699.  
  7700. <div
  7701.  class="section section-template--18997227126996__products_showcase_wbf8TB section--padding section--products-showcase slider-enabled page-width color-scheme-1"
  7702.  style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
  7703.  data-id="template--18997227126996__products_showcase_wbf8TB"
  7704. ><div class="section__wrapper relative slider-controls--grouped-mobile slider-controls--below"><div class="section__header-wrap flex justify-between gap-3">
  7705.        
  7706.  
  7707.  
  7708.        <div class="slider-controls--group">
  7709.          <div class="slider-controls block md:flex items-center justify-start gap-2">
  7710.            <button
  7711.              class="swiper-button-prev btn"
  7712.              name="previous"
  7713.              aria-label="Slide left"
  7714.            >
  7715.              <svg
  7716.  class="icon icon-slider-prev icon--medium"
  7717.  viewBox="0 0 20 20"
  7718.  fill="none"
  7719.  xmlns="http://www.w3.org/2000/svg"
  7720. >
  7721.  <path d="M12.75 16.2505L6.5 10.0005L12.75 3.75049" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7722. </svg>
  7723.  
  7724.            </button>
  7725.            <button
  7726.              class="swiper-button-next btn"
  7727.              name="next"
  7728.              aria-label="Slide right"
  7729.            >
  7730.              <svg
  7731.  class="icon icon-slider-prev icon--medium"
  7732.  viewBox="0 0 20 20"
  7733.  fill="none"
  7734.  xmlns="http://www.w3.org/2000/svg"
  7735. >
  7736.  <path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7737. </svg>
  7738.  
  7739.            </button>
  7740.            <div class="swiper-pagination"></div>
  7741.          </div>
  7742.        </div>
  7743.      </div><motion-element data-motion="fade-up" data-motion-delay="50" class="block section__content">
  7744.      <products-showcase
  7745.        data-section-id="template--18997227126996__products_showcase_wbf8TB"
  7746.        data-enable-slider="true"
  7747.        data-item-gap="10"
  7748.        class="block"
  7749.      >
  7750.        <div class="swiper">
  7751.          <div class="swiper-wrapper">
  7752. <div class="swiper-slide">
  7753.                  <div class="product-showcase grid f-grid-1-cols md:f-grid-2-cols">
  7754.                    <div class="product-showcase__thumbnail">
  7755.                      <div class="media-wrapper blocks-radius">
  7756.                        <a
  7757.                          href="/products/my-mimi-menstrual-disc"
  7758.                          class="hover-wrapper"
  7759.                          aria-label="menstrual disc - comfortable &amp; leak-free protection"
  7760.                          tabindex="-1"
  7761.                        ><div class="w-full" style="--aspect-ratio: 1.0">
  7762.                                <img src="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=1500" alt="my mimi reusable menstrual disc made from 100% medical grade silicone – sustainable period care solution" srcset="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=360 360w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=460 460w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=535 535w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=720 720w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=920 920w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=1070 1070w" width="1500" height="1500" loading="lazy" fetchpriority="low" class="motion-reduce hover-scale-up" is="image-lazy">
  7763.                              </div></a>
  7764.                      </div>
  7765.                    </div>
  7766.                    <div class="product-showcase__info flex items-center">
  7767.                      <div class="product-showcase__info-inner w-full"><p class="product-showcase__vendor h5">
  7768.                            <span class="visually-hidden">Vendor:</span>
  7769.                            my mimi
  7770.                          </p><h3 class="product-showcase__title h1">
  7771.                          <a href="/products/my-mimi-menstrual-disc">menstrual disc - comfortable & leak-free protection</a>
  7772.                        </h3>
  7773.                        
  7774. <div
  7775.  class="
  7776.    f-price f-price--large"
  7777. ><div class="f-price__regular">
  7778.    <span class="visually-hidden visually-hidden--inline">Regular price</span>
  7779.    <span class="f-price-item f-price-item--regular">
  7780.      $44.95
  7781.    </span>
  7782.  </div>
  7783.  <div class="f-price__sale">
  7784.    <span class="visually-hidden visually-hidden--inline">Sale price</span>
  7785.    <span class="f-price-item f-price-item--sale">
  7786.      $44.95
  7787.    </span>
  7788.      <span class="visually-hidden visually-hidden--inline">Regular price</span>
  7789.      <span class="f-price-item f-price-item--regular">
  7790.        <s>
  7791.          
  7792.            
  7793.          
  7794.        </s>
  7795.      </span></div>
  7796.  <div class="f-price__unit-wrapper hidden">
  7797.    <span class="visually-hidden">Unit price</span>
  7798.    <div class="f-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span class="visually-hidden">per&nbsp;</span><span data-unit-price-base-unit></span></div>
  7799.  </div>
  7800.  
  7801.  
  7802. </div>
  7803.  
  7804. <div class="product-showcase__description rte text-lg">
  7805.                            <div class="text-limit-2-lines"><h2>revolutionising period care with superior comfort<strong></strong>
  7806. </h2>
  7807. <p>Discover the ultimate solution for your menstrual needs with the <em><strong>my mimi </strong></em>Menstrual Disc, designed for comfort, safety, and sustainability. Made from <strong>100% medical-grade silicone</strong>, our menstrual disc is <strong>BPA-free</strong> and crafted to maintain your natural pH balance.</p>
  7808. <p>Thousands of users love <em><strong>my mimi</strong></em> for its unbeatable comfort and leak-proof design—why not make the switch today?</p>
  7809. <h4>features of the <a href="https://mymimi.com.au/products/my-mimi-menstrual-disc" title="my mimi menstrual disc"><em>my mimi</em> menstrual disc</a>:</h4>
  7810. <p><strong>easy to use and comfortable:</strong><br>The <a href="https://mymimi.com.au/pages/what-is-a-menstrual-disc-used-for" title="what is a menstrual disc used for?"><strong><em>my mimi </em></strong>Menstrual Disc</a> is engineered for ease of use. Its smooth, soft design allows for easy insertion and comfortable wear throughout your cycle. The innovative handle makes removal simple and hassle-free, ensuring a stress-free experience during your <a href="https://mymimi.com.au/pages/are-menstrual-discs-the-period-product-weve-been-waiting-for" title="are menstrual discs the period product weve been waiting for">period</a>.</p>
  7811. <p><strong>long lasting protection:</strong><br>Enjoy up to <strong>12 hours of continuous protection</strong>! Whether you’re sleeping, working, or out and about, the <strong><em>my mimi</em></strong> menstrual disc is designed to keep up with your lifestyle.</p>
  7812. <p><strong>health and safety focus:</strong></p>
  7813. <ul>
  7814. <li>
  7815. <strong>pH Friendly:</strong> Crafted from <strong>medical-grade silicone</strong>, our disc supports your body’s natural pH, promoting a healthy vaginal environment.</li>
  7816. <li>
  7817. <strong><a href="https://mymimi.com.au/pages/menstrual-disc-with-iud-everything-you-need-to-know" title="menstrual disc with iud">IUD</a> Compatible:</strong> Specifically designed for those with IUDs, our menstrual disc does not create suction, providing a safe option for menstrual management. Always consult your healthcare provider to ensure it’s right for you.</li>
  7818. </ul>
  7819. <p><strong>🌟Did you know?<br>The <em><a title="my mimi" href="https://www.mymimi.com.au/">my mimi</a> </em>menstrual disc is a #1 best seller on Amazon Australia🌟</strong></p></div>
  7820.                          </div></div>
  7821.                    </div>
  7822.                  </div>
  7823.                </div>
  7824. <div class="swiper-slide">
  7825.                  <div class="product-showcase grid f-grid-1-cols md:f-grid-2-cols">
  7826.                    <div class="product-showcase__thumbnail">
  7827.                      <div class="media-wrapper blocks-radius">
  7828.                        <a
  7829.                          href="/products/menstrual-disc-blue-bundle"
  7830.                          class="hover-wrapper"
  7831.                          aria-label="menstrual disc blue bundle"
  7832.                          tabindex="-1"
  7833.                        ><div class="w-full" style="--aspect-ratio: 1.0">
  7834.                                <img src="//mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&amp;width=1500" alt="menstrual disc bundle" srcset="//mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&amp;width=360 360w, //mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&amp;width=460 460w, //mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&amp;width=535 535w, //mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&amp;width=720 720w, //mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&amp;width=920 920w, //mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&amp;width=1070 1070w" width="1500" height="1500" loading="lazy" fetchpriority="low" class="motion-reduce hover-scale-up" is="image-lazy">
  7835.                              </div></a>
  7836.                      </div>
  7837.                    </div>
  7838.                    <div class="product-showcase__info flex items-center">
  7839.                      <div class="product-showcase__info-inner w-full"><p class="product-showcase__vendor h5">
  7840.                            <span class="visually-hidden">Vendor:</span>
  7841.                            my mimi
  7842.                          </p><h3 class="product-showcase__title h1">
  7843.                          <a href="/products/menstrual-disc-blue-bundle">menstrual disc blue bundle</a>
  7844.                        </h3>
  7845.                        
  7846. <div
  7847.  class="
  7848.    f-price f-price--large f-price--on-sale "
  7849. ><div class="f-price__regular">
  7850.    <span class="visually-hidden visually-hidden--inline">Regular price</span>
  7851.    <span class="f-price-item f-price-item--regular">
  7852.      $59.95
  7853.    </span>
  7854.  </div>
  7855.  <div class="f-price__sale">
  7856.    <span class="visually-hidden visually-hidden--inline">Sale price</span>
  7857.    <span class="f-price-item f-price-item--sale">
  7858.      $59.95
  7859.    </span>
  7860.      <span class="visually-hidden visually-hidden--inline">Regular price</span>
  7861.      <span class="f-price-item f-price-item--regular">
  7862.        <s>
  7863.          
  7864.            $78.85
  7865.          
  7866.        </s>
  7867.      </span></div>
  7868.  <div class="f-price__unit-wrapper hidden">
  7869.    <span class="visually-hidden">Unit price</span>
  7870.    <div class="f-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span class="visually-hidden">per&nbsp;</span><span data-unit-price-base-unit></span></div>
  7871.  </div>
  7872.  
  7873.  
  7874. </div>
  7875.  
  7876. <div class="product-showcase__description rte text-lg">
  7877.                            <div class="text-limit-2-lines"><p class="" data-end="399" data-start="64"><strong data-end="124" data-start="64">Transform Your Period Care with the my mimi Blue Bundle!</strong><br data-end="127" data-start="124">Experience the ultimate period care with the my mimi Blue Bundle — a complete set designed for comfort, convenience, and sustainability. Featuring our exclusive blue menstrual disc, this bundle is perfect for anyone seeking a reliable and stylish solution for their cycle.</p>
  7878. <h3 class="" data-end="434" data-start="406">Discover Each Product:</h3>
  7879. <p class="" data-end="742" data-start="436"><a href="https://mymimi.com.au/products/menstrual-disc-bayside-blue"><strong data-end="467" data-start="436"><em>my mimi </em>Blue Menstrual Disc</strong></a><br data-end="470" data-start="467">Crafted from 100% medical-grade silicone, the my mimi Blue Menstrual Disc offers up to 12 hours of leak-free protection, even if you use an IUD. Its innovative handle ensures easy removal, while the vibrant blue colour adds a fresh, playful touch to your period routine.</p>
  7880. <h4><a href="https://mymimi.com.au/products/my-mimi-go" title="my mimi sanitiser"><em>my mimi</em> GO</a></h4>
  7881. <p class="" data-end="1055" data-start="744">Keep your menstrual disc hygienically clean and ready for use with the my mimi GO Steriliser. Compact and portable, this durable container makes sterilising easy, whether you're at home or on the go. It's a must-have for maintaining the longevity and safety of your menstrual disc.</p>
  7882. <h4><a title="my mimi gentle foaming cleanser" href="https://mymimi.com.au/products/menstrual-gentle-foaming-cleanser"><em>my mimi</em> Gentle Foaming Cleanser</a></h4>
  7883. <p class="" data-end="1365" data-start="1057">Made with natural, skin-friendly ingredients, the my mimi Gentle Foaming Cleanser is specially formulated to cleanse your menstrual disc gently yet effectively. Safe, pH-balanced, and easy to use, it ensures your menstrual disc remains fresh and ready for every cycle.</p></div>
  7884.                          </div></div>
  7885.                    </div>
  7886.                  </div>
  7887.                </div></div>
  7888.        </div>
  7889.      </products-showcase>
  7890.    </motion-element>
  7891.  </div>
  7892. </div>
  7893. <script src="//mymimi.com.au/cdn/shop/t/11/assets/products-showcase.js?v=105277316822558500191738695060" defer="defer"></script>
  7894.  
  7895. </div><section id="shopify-section-template--18997227126996__rich_text_tbB9mQ" class="shopify-section section">
  7896. <div
  7897.  class="section section--padding rich-text-section color-scheme-1"
  7898.  style="--section-padding-top: 12px;--section-padding-bottom: 12px;"
  7899. >
  7900.  <div class="page-width">
  7901.    <div class="rich-text text-center">
  7902.      
  7903.        
  7904.            <motion-element
  7905.              class="block"
  7906.              data-motion="fade-up"
  7907.              data-motion-delay="50"
  7908.            >
  7909.              
  7910.                <a
  7911.                  
  7912.                    href="https://mymimi.com.au/collections/shop"
  7913.                  
  7914.                  class="btn btn--primary"
  7915.                  
  7916.                >shop now</a>
  7917.              
  7918.            </motion-element>
  7919.      
  7920.    </div>
  7921.  </div>
  7922. </div>
  7923.  
  7924.  
  7925. </section><section id="shopify-section-template--18997227126996__testimonials_8JHr3L" class="shopify-section section section-testimonials"><link href="//mymimi.com.au/cdn/shop/t/11/assets/component-testimonial.css?v=68561161290326933581738695060" rel="stylesheet" type="text/css" media="all" />
  7926. <link href="//mymimi.com.au/cdn/shop/t/11/assets/section-testimonials.css?v=145344366386897382781738695061" rel="stylesheet" type="text/css" media="all" />
  7927. <script src="//mymimi.com.au/cdn/shop/t/11/assets/testimonial.js?v=73233044216274929441738695061" defer="defer"></script>
  7928.  
  7929.  
  7930.  
  7931.  
  7932. <div
  7933.  class="section section-template--18997227126996__testimonials_8JHr3L section--padding testimonials-wrapper testimonials-wrapper--slider color-scheme-inverse"
  7934.  style="--section-padding-top: 12px;--section-padding-bottom: 18px;"
  7935. >
  7936.  <div class="page-width"><div class="section__header md:flex justify-between gap-6">
  7937.        
  7938.          <div class="rich-text md:text-left text-left">
  7939.            
  7940.            
  7941.              <h2 class="rich-text__heading inline-richtext overflow-hidden h2">
  7942.                <motion-element data-motion="fade-up" data-motion-delay="50" class="block">
  7943.                  
  7944. <a href="https://mymimi.com.au/pages/my-mimi-menstrual-disc-reviews-page-2" title="menstrual disc reviews">reviews</a>
  7945.                </motion-element>
  7946.              </h2>
  7947.            
  7948.          </div>
  7949.        
  7950.  
  7951.        
  7952.          <motion-element
  7953.            data-motion="fade-up"
  7954.            data-motion-delay="100"
  7955.            class="swiper-controls hidden md:inline-flex"
  7956.          >
  7957.            <button
  7958.              type="button"
  7959.              class="swiper-btn-prev btn btn--icon-circle shrink-0"
  7960.              name="previous"
  7961.              aria-label="Slide left"
  7962.            ><svg
  7963.  class="icon icon-slider-prev icon--medium"
  7964.  viewBox="0 0 20 20"
  7965.  fill="none"
  7966.  xmlns="http://www.w3.org/2000/svg"
  7967. >
  7968.  <path d="M12.75 16.2505L6.5 10.0005L12.75 3.75049" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7969. </svg>
  7970. </button>
  7971.            <button
  7972.              type="button"
  7973.              class="swiper-btn-next btn btn--icon-circle shrink-0"
  7974.              name="next"
  7975.              aria-label="Slide right"
  7976.            ><svg
  7977.  class="icon icon-slider-prev icon--medium"
  7978.  viewBox="0 0 20 20"
  7979.  fill="none"
  7980.  xmlns="http://www.w3.org/2000/svg"
  7981. >
  7982.  <path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7983. </svg>
  7984. </button>
  7985.          </motion-element>
  7986.        
  7987.      </div><motion-element class="section__content block" data-motion="fade-up" data-motion-delay="100">
  7988.      <testimonials-component
  7989.        class="testimonials block f-grid--gap-medium swiper swipe-mobile swipe-mobile--1-cols"
  7990.        data-section-id="template--18997227126996__testimonials_8JHr3L"
  7991.        data-layout="1"
  7992.        
  7993.          data-enable-slider="true"
  7994.          data-items="4"
  7995.          data-tablet-items="2"
  7996.        
  7997.      >
  7998.        <div class="testimonials__items f-grid f-grid-1-cols md:f-grid-2-cols lg:f-grid-4-cols  swiper-wrapper swipe-mobile__inner"><div
  7999.              class="f-column swiper-slide"
  8000.              
  8001.              data-index="0"
  8002.            >
  8003.              
  8004.                  
  8005.  
  8006. <div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
  8007.  
  8008.  <div class="testimonial__inner flex-1 flex flex-col">
  8009.    
  8010.      <div class="testimonial__header flex gap-x-2 flex-wrap">
  8011.        
  8012.          <h4 class="testimonial__name h5">Phoebe</h4>
  8013.        
  8014.        
  8015.          <div class="testimonial__bio text-subtext text-sm">Mona Vale, Australia</div>
  8016.        
  8017.      </div>
  8018.    
  8019.    
  8020.      <div class="testimonial__icon">
  8021.        
  8022.    <svg
  8023.      class="icon icon-star icon--small"
  8024.      viewBox="0 0 16 16"
  8025.      fill="none"
  8026.      xmlns="http://www.w3.org/2000/svg"
  8027.    >
  8028.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8029.    </svg>
  8030.    <svg
  8031.      class="icon icon-star icon--small"
  8032.      viewBox="0 0 16 16"
  8033.      fill="none"
  8034.      xmlns="http://www.w3.org/2000/svg"
  8035.    >
  8036.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8037.    </svg>
  8038.    <svg
  8039.      class="icon icon-star icon--small"
  8040.      viewBox="0 0 16 16"
  8041.      fill="none"
  8042.      xmlns="http://www.w3.org/2000/svg"
  8043.    >
  8044.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8045.    </svg>
  8046.    <svg
  8047.      class="icon icon-star icon--small"
  8048.      viewBox="0 0 16 16"
  8049.      fill="none"
  8050.      xmlns="http://www.w3.org/2000/svg"
  8051.    >
  8052.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8053.    </svg>
  8054.    <svg
  8055.      class="icon icon-star icon--small"
  8056.      viewBox="0 0 16 16"
  8057.      fill="none"
  8058.      xmlns="http://www.w3.org/2000/svg"
  8059.    >
  8060.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8061.    </svg>
  8062.  
  8063.  
  8064.      </div>
  8065.    
  8066.    
  8067.      <div class="testimonial__content text-lg rte"><p><strong>So good! </strong>- I love the my mimi <a href="/products/menstrual-disc-bayside-blue" title="menstrual disc - bayside blue - limited edition">menstrual disc</a>. I'm in my early 30's, after having a couple of kids I found my periods became heavier. Using the menstrual disc has been really easy from the first use. </p></div>
  8068.    
  8069.    
  8070.      <div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/menstrual-disc-bayside-blue" target="_blank">
  8071.          <span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
  8072.            <img src="//mymimi.com.au/cdn/shop/files/menstrual-disc-blue.webp?v=1741224581&amp;width=360" alt="menstrual disc - bayside blue - limited edition" srcset="//mymimi.com.au/cdn/shop/files/menstrual-disc-blue.webp?v=1741224581&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/menstrual-disc-blue.webp?v=1741224581&amp;width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  8073.          </span>
  8074.          <p class="testimonial__product-title text-pcard-title m-0">
  8075.            <span class="reversed-link">menstrual disc - bayside blue - limited edition</span>
  8076.          </p>
  8077.        </a>
  8078.      </div>
  8079.    
  8080.  </div>
  8081. </div>
  8082.  
  8083.              
  8084.            </div><div
  8085.              class="f-column swiper-slide"
  8086.              
  8087.              data-index="1"
  8088.            >
  8089.              
  8090.                  
  8091.  
  8092. <div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
  8093.  
  8094.  <div class="testimonial__inner flex-1 flex flex-col">
  8095.    
  8096.      <div class="testimonial__header flex gap-x-2 flex-wrap">
  8097.        
  8098.          <h4 class="testimonial__name h5">Mathilda</h4>
  8099.        
  8100.        
  8101.          <div class="testimonial__bio text-subtext text-sm">Albury, Australia</div>
  8102.        
  8103.      </div>
  8104.    
  8105.    
  8106.      <div class="testimonial__icon">
  8107.        
  8108.    <svg
  8109.      class="icon icon-star icon--small"
  8110.      viewBox="0 0 16 16"
  8111.      fill="none"
  8112.      xmlns="http://www.w3.org/2000/svg"
  8113.    >
  8114.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8115.    </svg>
  8116.    <svg
  8117.      class="icon icon-star icon--small"
  8118.      viewBox="0 0 16 16"
  8119.      fill="none"
  8120.      xmlns="http://www.w3.org/2000/svg"
  8121.    >
  8122.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8123.    </svg>
  8124.    <svg
  8125.      class="icon icon-star icon--small"
  8126.      viewBox="0 0 16 16"
  8127.      fill="none"
  8128.      xmlns="http://www.w3.org/2000/svg"
  8129.    >
  8130.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8131.    </svg>
  8132.    <svg
  8133.      class="icon icon-star icon--small"
  8134.      viewBox="0 0 16 16"
  8135.      fill="none"
  8136.      xmlns="http://www.w3.org/2000/svg"
  8137.    >
  8138.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8139.    </svg>
  8140.    <svg
  8141.      class="icon icon-star icon--small"
  8142.      viewBox="0 0 16 16"
  8143.      fill="none"
  8144.      xmlns="http://www.w3.org/2000/svg"
  8145.    >
  8146.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8147.    </svg>
  8148.  
  8149.  
  8150.      </div>
  8151.    
  8152.    
  8153.      <div class="testimonial__content text-lg rte"><p>I’m impressed with the my mimi <a href="/products/my-mimi-menstrual-disc" title="menstrual disc - comfortable & leak-free protection">menstrual disc</a>. It’s easy to use and comfortable. The GO sanitiser unit is a nice addition for keeping it <a href="https://mymimi.com.au/pages/how-to-clean-a-menstrual-disc" title="how to clean a menstrual disc">clean</a></p></div>
  8154.    
  8155.    
  8156.      <div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/my-mimi-menstrual-disc" target="_blank">
  8157.          <span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
  8158.            <img src="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=360" alt="my mimi reusable menstrual disc made from 100% medical grade silicone – sustainable period care solution" srcset="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  8159.          </span>
  8160.          <p class="testimonial__product-title text-pcard-title m-0">
  8161.            <span class="reversed-link">menstrual disc - comfortable & leak-free protection</span>
  8162.          </p>
  8163.        </a>
  8164.      </div>
  8165.    
  8166.  </div>
  8167. </div>
  8168.  
  8169.              
  8170.            </div><div
  8171.              class="f-column swiper-slide"
  8172.              
  8173.              data-index="2"
  8174.            >
  8175.              
  8176.                  
  8177.  
  8178. <div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
  8179.  
  8180.  <div class="testimonial__inner flex-1 flex flex-col">
  8181.    
  8182.      <div class="testimonial__header flex gap-x-2 flex-wrap">
  8183.        
  8184.          <h4 class="testimonial__name h5">Arwen</h4>
  8185.        
  8186.        
  8187.          <div class="testimonial__bio text-subtext text-sm">Coquitlam, Canada</div>
  8188.        
  8189.      </div>
  8190.    
  8191.    
  8192.      <div class="testimonial__icon">
  8193.        
  8194.    <svg
  8195.      class="icon icon-star icon--small"
  8196.      viewBox="0 0 16 16"
  8197.      fill="none"
  8198.      xmlns="http://www.w3.org/2000/svg"
  8199.    >
  8200.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8201.    </svg>
  8202.    <svg
  8203.      class="icon icon-star icon--small"
  8204.      viewBox="0 0 16 16"
  8205.      fill="none"
  8206.      xmlns="http://www.w3.org/2000/svg"
  8207.    >
  8208.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8209.    </svg>
  8210.    <svg
  8211.      class="icon icon-star icon--small"
  8212.      viewBox="0 0 16 16"
  8213.      fill="none"
  8214.      xmlns="http://www.w3.org/2000/svg"
  8215.    >
  8216.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8217.    </svg>
  8218.    <svg
  8219.      class="icon icon-star icon--small"
  8220.      viewBox="0 0 16 16"
  8221.      fill="none"
  8222.      xmlns="http://www.w3.org/2000/svg"
  8223.    >
  8224.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8225.    </svg>
  8226.    <svg
  8227.      class="icon icon-star icon--small"
  8228.      viewBox="0 0 16 16"
  8229.      fill="none"
  8230.      xmlns="http://www.w3.org/2000/svg"
  8231.    >
  8232.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8233.    </svg>
  8234.  
  8235.  
  8236.      </div>
  8237.    
  8238.    
  8239.      <div class="testimonial__content text-lg rte"><p><a href="https://mymimi.com.au/pages/period-disk" title="period disk"><em><strong>Period disk</strong></em></a><em><strong> - </strong></em>It’s an amazing product! I love it.<em><br/></em></p></div>
  8240.    
  8241.    
  8242.      <div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/my-mimi-menstrual-disc-twin" target="_blank">
  8243.          <span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
  8244.            <img src="//mymimi.com.au/cdn/shop/files/menstrual-disc-duo.jpg?v=1735119104&amp;width=360" alt="menstrual disc" srcset="//mymimi.com.au/cdn/shop/files/menstrual-disc-duo.jpg?v=1735119104&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/menstrual-disc-duo.jpg?v=1735119104&amp;width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  8245.          </span>
  8246.          <p class="testimonial__product-title text-pcard-title m-0">
  8247.            <span class="reversed-link">menstural disc twin bundle</span>
  8248.          </p>
  8249.        </a>
  8250.      </div>
  8251.    
  8252.  </div>
  8253. </div>
  8254.  
  8255.              
  8256.            </div><div
  8257.              class="f-column swiper-slide"
  8258.              
  8259.              data-index="3"
  8260.            >
  8261.              
  8262.                  
  8263.  
  8264. <div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
  8265.  
  8266.  <div class="testimonial__inner flex-1 flex flex-col">
  8267.    
  8268.      <div class="testimonial__header flex gap-x-2 flex-wrap">
  8269.        
  8270.          <h4 class="testimonial__name h5">Harper</h4>
  8271.        
  8272.        
  8273.          <div class="testimonial__bio text-subtext text-sm">Bristol, UK</div>
  8274.        
  8275.      </div>
  8276.    
  8277.    
  8278.      <div class="testimonial__icon">
  8279.        
  8280.    <svg
  8281.      class="icon icon-star icon--small"
  8282.      viewBox="0 0 16 16"
  8283.      fill="none"
  8284.      xmlns="http://www.w3.org/2000/svg"
  8285.    >
  8286.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8287.    </svg>
  8288.    <svg
  8289.      class="icon icon-star icon--small"
  8290.      viewBox="0 0 16 16"
  8291.      fill="none"
  8292.      xmlns="http://www.w3.org/2000/svg"
  8293.    >
  8294.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8295.    </svg>
  8296.    <svg
  8297.      class="icon icon-star icon--small"
  8298.      viewBox="0 0 16 16"
  8299.      fill="none"
  8300.      xmlns="http://www.w3.org/2000/svg"
  8301.    >
  8302.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8303.    </svg>
  8304.    <svg
  8305.      class="icon icon-star icon--small"
  8306.      viewBox="0 0 16 16"
  8307.      fill="none"
  8308.      xmlns="http://www.w3.org/2000/svg"
  8309.    >
  8310.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8311.    </svg>
  8312.    <svg
  8313.      class="icon icon-star icon--small"
  8314.      viewBox="0 0 16 16"
  8315.      fill="none"
  8316.      xmlns="http://www.w3.org/2000/svg"
  8317.    >
  8318.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8319.    </svg>
  8320.  
  8321.  
  8322.      </div>
  8323.    
  8324.    
  8325.      <div class="testimonial__content text-lg rte"><p>Switching to the my mimi <a href="/products/my-mimi-menstrual-disc" title="menstrual disc - comfortable & leak-free protection">menstrual disc</a> has been a fantastic choice for my active lifestyle. It stays securely in place and the <a href="/products/menstrual-water-based-lubricant" title="menstrual disc water-based personal lubricant">water-based lubricant</a> ensures effortless insertion and comfort.</p></div>
  8326.    
  8327.    
  8328.      <div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/my-mimi-starter" target="_blank">
  8329.          <span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
  8330.            <img src="//mymimi.com.au/cdn/shop/files/mymimi-starter.jpg?v=1735119079&amp;width=360" alt="my mimi - menstrual disc | 100% medical grade silicone" srcset="//mymimi.com.au/cdn/shop/files/mymimi-starter.jpg?v=1735119079&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/mymimi-starter.jpg?v=1735119079&amp;width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  8331.          </span>
  8332.          <p class="testimonial__product-title text-pcard-title m-0">
  8333.            <span class="reversed-link">menstrual disc starter bundle</span>
  8334.          </p>
  8335.        </a>
  8336.      </div>
  8337.    
  8338.  </div>
  8339. </div>
  8340.  
  8341.              
  8342.            </div><div
  8343.              class="f-column swiper-slide"
  8344.              
  8345.              data-index="4"
  8346.            >
  8347.              
  8348.                  
  8349.  
  8350. <div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
  8351.  
  8352.  <div class="testimonial__inner flex-1 flex flex-col">
  8353.    
  8354.      <div class="testimonial__header flex gap-x-2 flex-wrap">
  8355.        
  8356.          <h4 class="testimonial__name h5">Ash A</h4>
  8357.        
  8358.        
  8359.          <div class="testimonial__bio text-subtext text-sm">Halifax, Canada</div>
  8360.        
  8361.      </div>
  8362.    
  8363.    
  8364.      <div class="testimonial__icon">
  8365.        
  8366.    <svg
  8367.      class="icon icon-star icon--small"
  8368.      viewBox="0 0 16 16"
  8369.      fill="none"
  8370.      xmlns="http://www.w3.org/2000/svg"
  8371.    >
  8372.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8373.    </svg>
  8374.    <svg
  8375.      class="icon icon-star icon--small"
  8376.      viewBox="0 0 16 16"
  8377.      fill="none"
  8378.      xmlns="http://www.w3.org/2000/svg"
  8379.    >
  8380.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8381.    </svg>
  8382.    <svg
  8383.      class="icon icon-star icon--small"
  8384.      viewBox="0 0 16 16"
  8385.      fill="none"
  8386.      xmlns="http://www.w3.org/2000/svg"
  8387.    >
  8388.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8389.    </svg>
  8390.    <svg
  8391.      class="icon icon-star icon--small"
  8392.      viewBox="0 0 16 16"
  8393.      fill="none"
  8394.      xmlns="http://www.w3.org/2000/svg"
  8395.    >
  8396.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8397.    </svg>
  8398.    <svg
  8399.      class="icon icon-star icon--small"
  8400.      viewBox="0 0 16 16"
  8401.      fill="none"
  8402.      xmlns="http://www.w3.org/2000/svg"
  8403.    >
  8404.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8405.    </svg>
  8406.  
  8407.  
  8408.      </div>
  8409.    
  8410.    
  8411.      <div class="testimonial__content text-lg rte"><p>I really like the my mimi <a href="https://mymimi.com.au/products/my-mimi-menstrual-disc" title="menstrual disc">menstrual disc</a>. It’s better than tampons, and the customer service was very helpful. The <a href="/products/menstrual-gentle-foaming-cleanser" title="menstrual disc gentle foaming cleanser">gentle foaming cleanser</a> is also very nice</p></div>
  8412.    
  8413.    
  8414.      <div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/my-mimi-menstrual-disc" target="_blank">
  8415.          <span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
  8416.            <img src="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=360" alt="my mimi reusable menstrual disc made from 100% medical grade silicone – sustainable period care solution" srcset="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  8417.          </span>
  8418.          <p class="testimonial__product-title text-pcard-title m-0">
  8419.            <span class="reversed-link">menstrual disc - comfortable & leak-free protection</span>
  8420.          </p>
  8421.        </a>
  8422.      </div>
  8423.    
  8424.  </div>
  8425. </div>
  8426.  
  8427.              
  8428.            </div><div
  8429.              class="f-column swiper-slide"
  8430.              
  8431.              data-index="5"
  8432.            >
  8433.              
  8434.                  
  8435.  
  8436. <div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
  8437.  
  8438.  <div class="testimonial__inner flex-1 flex flex-col">
  8439.    
  8440.      <div class="testimonial__header flex gap-x-2 flex-wrap">
  8441.        
  8442.          <h4 class="testimonial__name h5">Nina</h4>
  8443.        
  8444.        
  8445.          <div class="testimonial__bio text-subtext text-sm">Vancouver, Canada</div>
  8446.        
  8447.      </div>
  8448.    
  8449.    
  8450.      <div class="testimonial__icon">
  8451.        
  8452.    <svg
  8453.      class="icon icon-star icon--small"
  8454.      viewBox="0 0 16 16"
  8455.      fill="none"
  8456.      xmlns="http://www.w3.org/2000/svg"
  8457.    >
  8458.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8459.    </svg>
  8460.    <svg
  8461.      class="icon icon-star icon--small"
  8462.      viewBox="0 0 16 16"
  8463.      fill="none"
  8464.      xmlns="http://www.w3.org/2000/svg"
  8465.    >
  8466.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8467.    </svg>
  8468.    <svg
  8469.      class="icon icon-star icon--small"
  8470.      viewBox="0 0 16 16"
  8471.      fill="none"
  8472.      xmlns="http://www.w3.org/2000/svg"
  8473.    >
  8474.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8475.    </svg>
  8476.    <svg
  8477.      class="icon icon-star icon--small"
  8478.      viewBox="0 0 16 16"
  8479.      fill="none"
  8480.      xmlns="http://www.w3.org/2000/svg"
  8481.    >
  8482.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8483.    </svg>
  8484.    <svg
  8485.      class="icon icon-star icon--small"
  8486.      viewBox="0 0 16 16"
  8487.      fill="none"
  8488.      xmlns="http://www.w3.org/2000/svg"
  8489.    >
  8490.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8491.    </svg>
  8492.  
  8493.  
  8494.      </div>
  8495.    
  8496.    
  8497.      <div class="testimonial__content text-lg rte"><p>I’ve found the my mimi <a href="/products/my-mimi-menstrual-disc" title="menstrual disc - comfortable & leak-free protection">menstrual disc</a> to be incredibly reliable and easy to use, even on my heaviest days. Plus, the fast shipping and excellent support from the <a href="https://mymimi.com.au" title="menstrual disc">my mimi</a> team made the entire experience seamless</p></div>
  8498.    
  8499.    
  8500.      <div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/my-mimi-menstrual-disc" target="_blank">
  8501.          <span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
  8502.            <img src="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=360" alt="my mimi reusable menstrual disc made from 100% medical grade silicone – sustainable period care solution" srcset="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  8503.          </span>
  8504.          <p class="testimonial__product-title text-pcard-title m-0">
  8505.            <span class="reversed-link">menstrual disc - comfortable & leak-free protection</span>
  8506.          </p>
  8507.        </a>
  8508.      </div>
  8509.    
  8510.  </div>
  8511. </div>
  8512.  
  8513.              
  8514.            </div><div
  8515.              class="f-column swiper-slide"
  8516.              
  8517.              data-index="6"
  8518.            >
  8519.              
  8520.                  
  8521.  
  8522. <div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
  8523.  
  8524.  <div class="testimonial__inner flex-1 flex flex-col">
  8525.    
  8526.      <div class="testimonial__header flex gap-x-2 flex-wrap">
  8527.        
  8528.          <h4 class="testimonial__name h5">Elle</h4>
  8529.        
  8530.        
  8531.          <div class="testimonial__bio text-subtext text-sm">Surat Thani, Thailand</div>
  8532.        
  8533.      </div>
  8534.    
  8535.    
  8536.      <div class="testimonial__icon">
  8537.        
  8538.    <svg
  8539.      class="icon icon-star icon--small"
  8540.      viewBox="0 0 16 16"
  8541.      fill="none"
  8542.      xmlns="http://www.w3.org/2000/svg"
  8543.    >
  8544.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8545.    </svg>
  8546.    <svg
  8547.      class="icon icon-star icon--small"
  8548.      viewBox="0 0 16 16"
  8549.      fill="none"
  8550.      xmlns="http://www.w3.org/2000/svg"
  8551.    >
  8552.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8553.    </svg>
  8554.    <svg
  8555.      class="icon icon-star icon--small"
  8556.      viewBox="0 0 16 16"
  8557.      fill="none"
  8558.      xmlns="http://www.w3.org/2000/svg"
  8559.    >
  8560.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8561.    </svg>
  8562.    <svg
  8563.      class="icon icon-star icon--small"
  8564.      viewBox="0 0 16 16"
  8565.      fill="none"
  8566.      xmlns="http://www.w3.org/2000/svg"
  8567.    >
  8568.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8569.    </svg>
  8570.    <svg
  8571.      class="icon icon-star icon--small"
  8572.      viewBox="0 0 16 16"
  8573.      fill="none"
  8574.      xmlns="http://www.w3.org/2000/svg"
  8575.    >
  8576.      <path d="M8 0.5L10.0784 5.63932L15.6085 6.02786L11.3629 9.59268L12.7023 14.9721L8 12.036L3.29772 14.9721L4.63706 9.59268L0.391548 6.02786L5.92159 5.63932L8 0.5Z" fill="currentColor"/>
  8577.    </svg>
  8578.  
  8579.  
  8580.      </div>
  8581.    
  8582.    
  8583.      <div class="testimonial__content text-lg rte"><p><strong>My mimi menstrual disc is great</strong> - Comfortable, reliable, and perfect for my light flow days. The customer service was helpful when I needed <a href="/pages/articles" title="articles on menstrual health & my mimi menstrual disc">information</a></p></div>
  8584.    
  8585.    
  8586.      <div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/my-mimi-menstrual-disc-care-bundle" target="_blank">
  8587.          <span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
  8588.            <img src="//mymimi.com.au/cdn/shop/files/menstrual-disc-care-bundle.webp?v=1739505839&amp;width=360" alt="menstrual disc" srcset="//mymimi.com.au/cdn/shop/files/menstrual-disc-care-bundle.webp?v=1739505839&amp;width=165 165w, //mymimi.com.au/cdn/shop/files/menstrual-disc-care-bundle.webp?v=1739505839&amp;width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
  8589.          </span>
  8590.          <p class="testimonial__product-title text-pcard-title m-0">
  8591.            <span class="reversed-link">menstrual disc care bundle</span>
  8592.          </p>
  8593.        </a>
  8594.      </div>
  8595.    
  8596.  </div>
  8597. </div>
  8598.  
  8599.              
  8600.            </div></div>
  8601.      </testimonials-component>
  8602.    </motion-element>
  8603.  </div>
  8604. </div>
  8605.  
  8606.  
  8607. </section><div id="shopify-section-template--18997227126996__collapsible_tabs_KNKLiF" class="shopify-section"><link href="//mymimi.com.au/cdn/shop/t/11/assets/section-collapsible-tabs.css?v=160691141937332332341738695060" rel="stylesheet" type="text/css" media="all" />
  8608. <script src="//mymimi.com.au/cdn/shop/t/11/assets/collapsible-tabs.js?v=64882150398653107041738695059" defer="defer"></script>
  8609.  
  8610.  
  8611.  
  8612. <div
  8613.  class="section section-template--18997227126996__collapsible_tabs_KNKLiF section--padding section--collapsible-tabs section-header-standing-column page-width page-width--fixed color-scheme-2"
  8614.  style="--section-padding-top: 60px;--section-padding-bottom: 100px;"
  8615.  data-id="template--18997227126996__collapsible_tabs_KNKLiF"
  8616. >
  8617.  <div class="section__wrapper">
  8618.    
  8619. <div class="section__header section__header--vertical spacing--normal">
  8620.    <div class="section__header--text text-left md:text-left"><h2 class="section__heading h2">
  8621.          <motion-element class="block" data-motion="fade-up" data-motion-delay="50">
  8622.            
  8623. <a href="https://mymimi.com.au/pages/what-is-a-menstrual-disc" title="what is a menstrual disc?">what is a menstrual disc?</a>
  8624.          </motion-element>
  8625.        </h2><motion-element
  8626.          class="section__description block rte text-base"
  8627.          data-motion="fade-up"
  8628.          data-motion-delay="100"
  8629.        ><p>The <em><strong>my mimi </strong></em><a href="/products/my-mimi-menstrual-disc" title="menstrual disc"><strong>menstrual disc</strong></a> is a reusable, medical-grade silicone product designed to collect menstrual fluid for up to 12 hours.<br/><br/>Unlike traditional pads and tampons, a menstrual disc sits comfortably higher in the vaginal fornix, offering a discreet, leak-free period experience.<br/><br/><a href="https://mymimi.com.au/pages/menstrual-disc-with-iud-everything-you-need-to-know" title="menstrual disc with iud">Safe for IUD users</a>, cost-effective, and sustainable for over five years, the <em><strong>my mimi </strong></em>disc delivers a modern, eco-conscious solution for period care.<br/><a href="https://mymimi.com.au/pages/how-do-menstrual-discs-work" title="https://mymimi.com.au/pages/how-do-menstrual-discs-work"><strong>how do menstrual discs work?</strong></a></p></motion-element></div><motion-element
  8630.        class="section__header--button block text-left md:text-left"
  8631.        data-motion="fade-up"
  8632.        data-motion-delay="150"
  8633.      >
  8634.        <a
  8635.          class="btn btn--secondary"
  8636.          
  8637.            href="/pages/frequently-asked-questions"
  8638.          
  8639.        >
  8640.          
  8641. learn more</a>
  8642.      </motion-element></div>
  8643.    <motion-element class="section__content block" data-motion="fade-up">
  8644.      <div class="collapsible-tabs__wrapper f-flex f-grid--gap-large f-grid--row-gap-large"><div
  8645.          class="collapsible-tabs__content-col f-column w-full flex flex-col items-center "
  8646.          style="--col-width: 100%;"
  8647.        >
  8648.          <collapsible-tabs
  8649.            class="block w-full accordion-parent"
  8650.            data-color-scheme="color-scheme-1"
  8651.          ><div
  8652.                    class="accordion-item accordion-card blocks-radius"
  8653.                    
  8654.                  >
  8655.                    <details
  8656.                      class="accordion-details"
  8657.                      is="accordion-group"
  8658.                      
  8659.                        aria-expanded="false"
  8660.                      
  8661.                    >
  8662.                      <summary class="accordion-details__summary flex items-center justify-between focus-inset">
  8663.                        <div class="flex items-center gap-2">
  8664.                          <h2 class=" font-heading h5 inline-richtext">how do i insert & remove a menstrual disc?</h2>
  8665.                        </div><svg
  8666.  xmlns="http://www.w3.org/2000/svg"
  8667.  class="icon icon-plus-toggle icon--medium"
  8668.  viewBox="0 0 20 20"
  8669.  fill="none"
  8670. >
  8671.  <path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8672.  <path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8673. </svg>
  8674. </summary>
  8675.                      <div class="accordion-details__content rte">
  8676.                        <ul><li><strong>Insert</strong>: Pinch the menstrual disc into a narrow shape, insert it horizontally, and tuck it behind the pubic bone.</li><li><strong>Remove</strong>: Hook a finger under loop tab and gently pull it out, keeping it level to avoid spills.<br/><a href="https://mymimi.com.au/pages/how-to-insert-a-menstrual-disc-for-beginners" title="how to insert a menstrual disc for beginners">find out more →</a></li></ul>
  8677.                        
  8678.                        
  8679.                      </div>
  8680.                    </details>
  8681.                  </div><div
  8682.                    class="accordion-item accordion-card blocks-radius"
  8683.                    
  8684.                  >
  8685.                    <details
  8686.                      class="accordion-details"
  8687.                      is="accordion-group"
  8688.                      
  8689.                        aria-expanded="false"
  8690.                      
  8691.                    >
  8692.                      <summary class="accordion-details__summary flex items-center justify-between focus-inset">
  8693.                        <div class="flex items-center gap-2">
  8694.                          <h2 class=" font-heading h5 inline-richtext">what's the difference between a menstrual disc & a cup?</h2>
  8695.                        </div><svg
  8696.  xmlns="http://www.w3.org/2000/svg"
  8697.  class="icon icon-plus-toggle icon--medium"
  8698.  viewBox="0 0 20 20"
  8699.  fill="none"
  8700. >
  8701.  <path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8702.  <path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8703. </svg>
  8704. </summary>
  8705.                      <div class="accordion-details__content rte">
  8706.                        <p>A menstrual disc sits higher in the vaginal fornix and doesn’t rely on suction, making it more comfortable for some users. It also allows for mess-free period sex, unlike a cup.<br/><br/><a href="https://mymimi.com.au/pages/menstrual-disc-vs-menstrual-cup" title="menstrual disc vs menstrual cup">find out more →</a></p>
  8707.                        
  8708.                        
  8709.                      </div>
  8710.                    </details>
  8711.                  </div><div
  8712.                    class="accordion-item accordion-card blocks-radius"
  8713.                    
  8714.                  >
  8715.                    <details
  8716.                      class="accordion-details"
  8717.                      is="accordion-group"
  8718.                      
  8719.                        aria-expanded="false"
  8720.                      
  8721.                    >
  8722.                      <summary class="accordion-details__summary flex items-center justify-between focus-inset">
  8723.                        <div class="flex items-center gap-2">
  8724.                          <h2 class=" font-heading h5 inline-richtext">can you sleep with a menstrual disc?</h2>
  8725.                        </div><svg
  8726.  xmlns="http://www.w3.org/2000/svg"
  8727.  class="icon icon-plus-toggle icon--medium"
  8728.  viewBox="0 0 20 20"
  8729.  fill="none"
  8730. >
  8731.  <path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8732.  <path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8733. </svg>
  8734. </summary>
  8735.                      <div class="accordion-details__content rte">
  8736.                        <p>Yes! Menstrual discs can be worn for up to 12 hours, making them a great option for overnight protection.<br/><a href="https://mymimi.com.au/pages/can-you-sleep-with-a-menstrual-disc" title="can you sleep with a menstrual disc?">find out more →</a></p>
  8737.                        
  8738.                        
  8739.                      </div>
  8740.                    </details>
  8741.                  </div><div
  8742.                    class="accordion-item accordion-card blocks-radius"
  8743.                    
  8744.                  >
  8745.                    <details
  8746.                      class="accordion-details"
  8747.                      is="accordion-group"
  8748.                      
  8749.                        aria-expanded="false"
  8750.                      
  8751.                    >
  8752.                      <summary class="accordion-details__summary flex items-center justify-between focus-inset">
  8753.                        <div class="flex items-center gap-2">
  8754.                          <h2 class=" font-heading h5 inline-richtext">can I use a menstrual disc if I have an IUD?</h2>
  8755.                        </div><svg
  8756.  xmlns="http://www.w3.org/2000/svg"
  8757.  class="icon icon-plus-toggle icon--medium"
  8758.  viewBox="0 0 20 20"
  8759.  fill="none"
  8760. >
  8761.  <path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8762.  <path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8763. </svg>
  8764. </summary>
  8765.                      <div class="accordion-details__content rte">
  8766.                        <p>Most people can, but it's important to check with your doctor and ensure the disc doesn’t dislodge the IUD strings during removal.<br/><a href="https://mymimi.com.au/pages/menstrual-disc-with-iud-everything-you-need-to-know" title="menstrual disc with IUD">find out more →</a></p>
  8767.                        
  8768.                        
  8769.                      </div>
  8770.                    </details>
  8771.                  </div><div
  8772.                    class="accordion-item accordion-card blocks-radius"
  8773.                    
  8774.                  >
  8775.                    <details
  8776.                      class="accordion-details"
  8777.                      is="accordion-group"
  8778.                      
  8779.                        aria-expanded="false"
  8780.                      
  8781.                    >
  8782.                      <summary class="accordion-details__summary flex items-center justify-between focus-inset">
  8783.                        <div class="flex items-center gap-2">
  8784.                          <h2 class=" font-heading h5 inline-richtext">are menstrual discs reusable and how do you clean them?</h2>
  8785.                        </div><svg
  8786.  xmlns="http://www.w3.org/2000/svg"
  8787.  class="icon icon-plus-toggle icon--medium"
  8788.  viewBox="0 0 20 20"
  8789.  fill="none"
  8790. >
  8791.  <path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8792.  <path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8793. </svg>
  8794. </summary>
  8795.                      <div class="accordion-details__content rte">
  8796.                        <p><em><strong>my mimi </strong></em>offers reusable menstrual discs made from medical-grade silicone.</p><p>Simply rinse with water, wash with a gentle cleanse, and sterilise between cycles.<br/><a href="https://mymimi.com.au/pages/are-menstrual-discs-reusable" title="are menstrual discs reusable?">find out more →</a></p>
  8797.                        
  8798.                        
  8799.                      </div>
  8800.                    </details>
  8801.                  </div><div
  8802.                    class="accordion-item accordion-card blocks-radius"
  8803.                    
  8804.                  >
  8805.                    <details
  8806.                      class="accordion-details"
  8807.                      is="accordion-group"
  8808.                      
  8809.                        aria-expanded="false"
  8810.                      
  8811.                    >
  8812.                      <summary class="accordion-details__summary flex items-center justify-between focus-inset">
  8813.                        <div class="flex items-center gap-2">
  8814.                          <h2 class=" font-heading h5 inline-richtext">where can i buy the my mimi menstrual disc?</h2>
  8815.                        </div><svg
  8816.  xmlns="http://www.w3.org/2000/svg"
  8817.  class="icon icon-plus-toggle icon--medium"
  8818.  viewBox="0 0 20 20"
  8819.  fill="none"
  8820. >
  8821.  <path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8822.  <path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8823. </svg>
  8824. </summary>
  8825.                      <div class="accordion-details__content rte">
  8826.                        <p>The my mimi Menstrual Disc is available at a few locations. <a href="https://mymimi.com.au/pages/menstrual-discs-chemist-warehouse" title="menstrual disc chemist warehouse">Chemist Warehouse</a>, Amazon, Amazon UK, My Deal and Catch.com.au</p>
  8827.                        
  8828.                        
  8829.                      </div>
  8830.                    </details>
  8831.                  </div></collapsible-tabs>
  8832.        </div>
  8833.      </div>
  8834.    </motion-element>
  8835.  </div>
  8836. </div>
  8837.  
  8838. </div><section id="shopify-section-template--18997227126996__rich_text_gNchn7" class="shopify-section section">
  8839. <div
  8840.  class="section section--padding rich-text-section color-scheme-1"
  8841.  style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
  8842. >
  8843.  <div class="page-width">
  8844.    <div class="rich-text text-center">
  8845.      
  8846.        
  8847.            <h2
  8848.              class="rich-text__heading h2"
  8849.              
  8850.            >
  8851.              <motion-element class="block" data-motion="fade-up" data-motion-delay="50">
  8852.                
  8853. recent articles
  8854.              </motion-element>
  8855.            </h2>
  8856.      
  8857.    </div>
  8858.  </div>
  8859. </div>
  8860.  
  8861.  
  8862. </section><div id="shopify-section-template--18997227126996__image_with_text_LBkfU9" class="shopify-section section"><link href="//mymimi.com.au/cdn/shop/t/11/assets/section-image-with-text.css?v=102341946412094105411738695061" rel="stylesheet" type="text/css" media="all" />
  8863.  
  8864.  
  8865. <div
  8866.  class="section section--padding image-with-text image-with-text--image-first color-scheme-1 color-inherit"
  8867.  style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
  8868. >
  8869.  <div class="page-width">
  8870.    <div class="image-with-text__wrapper hero hero--adapt f-grid f-grid-1-cols md:f-grid-2-cols f-grid--gap-none blocks-radius">
  8871.      <parallax-element
  8872.        class="block overflow-hidden blocks-radius"
  8873.        
  8874.      >
  8875.        <motion-element data-motion="zoom-out" class="block w-full h-full">
  8876.          <div
  8877.            class="image-with-text__media hero__media media-wrapper hover-wrapper"
  8878.            style="--aspect-ratio: 1.0;"
  8879.          >
  8880.            
  8881. <img src="//mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=1600" alt="womens insider - menstrual disc" srcset="//mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=300 300w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=400 400w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=500 500w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=600 600w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=700 700w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=800 800w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=900 900w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=1000 1000w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=1200 1200w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=1400 1400w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&amp;width=1600 1600w" width="1600" height="1600" loading="lazy" fetchpriority="low" sizes="min(1410, 100vw)" class="hover-scale-up">
  8882.          </div>
  8883.        </motion-element>
  8884.      </parallax-element>
  8885.      <div class="image-with-text__inner md:flex items-center text-left md:text-left color-scheme-1">
  8886.        <div class="image-with-text__content rich-text">
  8887.          
  8888.            
  8889.                <h2
  8890.                  class="rich-text__heading overflow-hidden h2"
  8891.                  
  8892.                >
  8893.                  <motion-element data-motion="fade-up" data-motion-delay="50" class="block">
  8894.                    
  8895. Revolutionising Period Care: How the my mimi Menstrual Disc Is Changing the Game
  8896.                  </motion-element>
  8897.                </h2>
  8898.          
  8899.            
  8900.                <motion-element
  8901.                  class="block rich-text__text rte text-base"
  8902.                  data-motion="fade-up"
  8903.                  data-motion-delay="100"
  8904.                  
  8905.                >
  8906.                  <p><em>my mimi</em> is transforming period care with its innovative <strong>menstrual disc</strong>, designed for comfort, sustainability, and ease of use. <br/>Founded by Kate Newbury, the brand addresses common frustrations with traditional products by offering a <strong>loop tab for easy removal, 12-hour wear time, IUD compatibility, and high capacity</strong>—all made from 100% medical-grade silicone. <br/>Committed to inclusivity and sustainability, <em>my mimi</em> is more than just a product; it’s a movement breaking menstrual taboos and empowering users worldwide. With a growing community and rave reviews, <em>my mimi</em> is setting a new standard in period care. </p>
  8907.                </motion-element>
  8908.          
  8909.            
  8910.                
  8911.                  <motion-element class="block" data-motion="fade-up" data-motion-delay="150">
  8912.                    <a
  8913.                      
  8914.                        href="https://womensinsider.com/revolutionising-period-care-how-the-my-mimi-menstrual-disc-is-changing-the-game/"
  8915.                      
  8916.                      class="btn btn--primary"
  8917.                      
  8918.                    >read here</a>
  8919.                  </motion-element>
  8920.            
  8921.          
  8922.        </div>
  8923.      </div>
  8924.    </div>
  8925.  </div>
  8926. </div>
  8927.  
  8928.  
  8929. </div><div id="shopify-section-template--18997227126996__image_with_text_MG73fJ" class="shopify-section section"><link href="//mymimi.com.au/cdn/shop/t/11/assets/section-image-with-text.css?v=102341946412094105411738695061" rel="stylesheet" type="text/css" media="all" />
  8930.  
  8931.  
  8932. <div
  8933.  class="section section--padding image-with-text image-with-text--image-first color-scheme-1 color-inherit"
  8934.  style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
  8935. >
  8936.  <div class="page-width">
  8937.    <div class="image-with-text__wrapper hero hero--adapt f-grid f-grid-1-cols md:f-grid-2-cols f-grid--gap-none blocks-radius">
  8938.      <parallax-element
  8939.        class="block overflow-hidden blocks-radius"
  8940.        
  8941.      >
  8942.        <motion-element data-motion="zoom-out" class="block w-full h-full">
  8943.          <div
  8944.            class="image-with-text__media hero__media media-wrapper hover-wrapper"
  8945.            style="--aspect-ratio: 1.0;"
  8946.          >
  8947.            
  8948. <img src="//mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&amp;width=1080" alt="best sustainable period care" srcset="//mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&amp;width=300 300w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&amp;width=400 400w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&amp;width=500 500w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&amp;width=600 600w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&amp;width=700 700w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&amp;width=800 800w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&amp;width=900 900w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" fetchpriority="low" sizes="min(1410, 100vw)" class="hover-scale-up">
  8949.          </div>
  8950.        </motion-element>
  8951.      </parallax-element>
  8952.      <div class="image-with-text__inner md:flex items-center text-left md:text-left color-scheme-1">
  8953.        <div class="image-with-text__content rich-text">
  8954.          
  8955.            
  8956.                <h2
  8957.                  class="rich-text__heading overflow-hidden h2"
  8958.                  
  8959.                >
  8960.                  <motion-element data-motion="fade-up" data-motion-delay="50" class="block">
  8961.                    
  8962. <strong>proudly </strong><a href="https://mymimi.com.au/pages/best-menstrual-disc-in-australia-top-choices-for-comfort-and-performance" title="best menstrual disc in australia"><strong>australian</strong></a><strong> and recognised for sustainability</strong>
  8963.                  </motion-element>
  8964.                </h2>
  8965.          
  8966.            
  8967.                <motion-element
  8968.                  class="block rich-text__text rte text-base"
  8969.                  data-motion="fade-up"
  8970.                  data-motion-delay="100"
  8971.                  
  8972.                >
  8973.                  <p>We’re honoured to be named among the <strong>‘Best Sustainable Period Care’ </strong>brands! Based in Melbourne, <em><strong>my mimi </strong></em>is dedicated to providing eco-friendly and cost-effective menstrual solutions. Our medical-grade silicone menstrual discs offer up to 12 hours of protection, replacing traditional pads and tampons with comfort and reliability. </p><p>Complementing our discs, we offer a water-based lubricant, gentle foaming cleanser, GO sanitiser and menstrual disc cleaning tablts ensuring comprehensive vaginal wellness while staying committed to sustainability.</p>
  8974.                </motion-element>
  8975.          
  8976.            
  8977.                
  8978.                  <motion-element class="block" data-motion="fade-up" data-motion-delay="150">
  8979.                    <a
  8980.                      
  8981.                        href="https://fashionjournal.com.au/health/sustainable-period-care-australia-nz/"
  8982.                      
  8983.                      class="btn btn--primary"
  8984.                      
  8985.                    >read here</a>
  8986.                  </motion-element>
  8987.            
  8988.          
  8989.        </div>
  8990.      </div>
  8991.    </div>
  8992.  </div>
  8993. </div>
  8994.  
  8995.  
  8996. </div><div id="shopify-section-template--18997227126996__image_with_text_U6Maiy" class="shopify-section section"><link href="//mymimi.com.au/cdn/shop/t/11/assets/section-image-with-text.css?v=102341946412094105411738695061" rel="stylesheet" type="text/css" media="all" />
  8997.  
  8998.  
  8999. <div
  9000.  class="section section--padding image-with-text image-with-text--image-first color-scheme-1 color-inherit"
  9001.  style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
  9002. >
  9003.  <div class="page-width">
  9004.    <div class="image-with-text__wrapper hero hero--adapt f-grid f-grid-1-cols md:f-grid-2-cols f-grid--gap-none blocks-radius">
  9005.      <parallax-element
  9006.        class="block overflow-hidden blocks-radius"
  9007.        
  9008.      >
  9009.        <motion-element data-motion="zoom-out" class="block w-full h-full">
  9010.          <div
  9011.            class="image-with-text__media hero__media media-wrapper hover-wrapper"
  9012.            style="--aspect-ratio: 1.3333333333333333;"
  9013.          >
  9014.            
  9015. <img src="//mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&amp;width=800" alt="menstrual disc" srcset="//mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&amp;width=300 300w, //mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&amp;width=400 400w, //mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&amp;width=500 500w, //mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&amp;width=600 600w, //mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&amp;width=700 700w, //mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&amp;width=800 800w" width="800" height="600" loading="lazy" fetchpriority="low" sizes="min(1410, 100vw)" class="hover-scale-up">
  9016.          </div>
  9017.        </motion-element>
  9018.      </parallax-element>
  9019.      <div class="image-with-text__inner md:flex items-center text-left md:text-left color-scheme-1">
  9020.        <div class="image-with-text__content rich-text">
  9021.          
  9022.            
  9023.                <h2
  9024.                  class="rich-text__heading overflow-hidden h2"
  9025.                  
  9026.                >
  9027.                  <motion-element data-motion="fade-up" data-motion-delay="50" class="block">
  9028.                    
  9029. <strong>are menstrual discs the period product we've been waiting for?</strong>
  9030.                  </motion-element>
  9031.                </h2>
  9032.          
  9033.            
  9034.                <motion-element
  9035.                  class="block rich-text__text rte text-base"
  9036.                  data-motion="fade-up"
  9037.                  data-motion-delay="100"
  9038.                  
  9039.                >
  9040.                  <p>A growing number of women are turning to <a href="https://mymimi.com.au/products/my-mimi-menstrual-disc" title="menstrual discs">menstrual discs</a> for improved comfort and sustainability, with a study <a href="https://bmcwomenshealth.biomedcentral.com/articles/10.1186/s12905-023-02197-3" target="_blank" title="37% of participants using reusable products">showing 37% of participants</a> using reusable products. Menstrual discs, especially <em><strong>my mimi</strong></em>, are gaining popularity for their comfort, flexibility, and leak protection. <a href="https://mymimi.com.au" title="my mimi - menstrual discs"><em><strong>my mimi</strong></em></a> stands out as a premium choice for Australians, offering an enhanced period experience.</p>
  9041.                </motion-element>
  9042.          
  9043.            
  9044.                
  9045.                  <motion-element class="block" data-motion="fade-up" data-motion-delay="150">
  9046.                    <a
  9047.                      
  9048.                        href="/pages/are-menstrual-discs-the-period-product-weve-been-waiting-for"
  9049.                      
  9050.                      class="btn btn--primary"
  9051.                      
  9052.                    >read here</a>
  9053.                  </motion-element>
  9054.            
  9055.          
  9056.        </div>
  9057.      </div>
  9058.    </div>
  9059.  </div>
  9060. </div>
  9061.  
  9062.  
  9063. </div><section id="shopify-section-template--18997227126996__173870501821608f19" class="shopify-section section"><style>
  9064.  #shopify-section-template--18997227126996__173870501821608f19 {
  9065.    --section-padding-top: 10px;
  9066.    --section-padding-bottom: 0px;
  9067.  }
  9068. </style>
  9069. <div class="section section-app section--padding">
  9070.  <div class="page-width"><div id="shopify-block-ATG93WnhIVzJobEhGM__instafeed_app_block_XPUiTy" class="shopify-block shopify-app-block">
  9071.  
  9072.  
  9073.  
  9074.  
  9075.  
  9076. <style>
  9077.  body #insta-feed {
  9078.      
  9079.  
  9080.      
  9081.  
  9082.      
  9083.  
  9084.      
  9085.        color: #283885;
  9086.      
  9087.      text-align: center;
  9088.  }
  9089.  
  9090.  #insta-feed h2 {
  9091.    
  9092.      color: #283885;
  9093.    
  9094.    
  9095.  }
  9096.  
  9097. </style>
  9098.  
  9099.  
  9100.  
  9101.  
  9102.  
  9103.  
  9104.  
  9105.  
  9106.  
  9107.  
  9108.  
  9109.  <div id="insta-feed"></div>
  9110.  <script>
  9111.    if (typeof instafeedLocalTitle === 'undefined') var instafeedLocalTitle = "";
  9112.    
  9113.  </script>
  9114.  
  9115.  
  9116.  
  9117.  
  9118.  
  9119.  
  9120.  
  9121.  
  9122.  
  9123.  
  9124. </div>
  9125. </div>
  9126. </div>
  9127.  
  9128.  
  9129. </section>
  9130.      </main>
  9131.  
  9132.      <!-- BEGIN sections: footer-group -->
  9133. <div id="shopify-section-sections--18997227847892__footer" class="shopify-section shopify-section-group-footer-group">
  9134. <script src="//mymimi.com.au/cdn/shop/t/11/assets/footer.js?v=56475581656799193111738695060" defer="defer"></script><footer class="footer color-scheme-1">
  9135.  <div class="section-divider">
  9136.    <div class="border-top no-empty"></div>
  9137.  </div>
  9138.  <div class="footer__wrapper"><div class="footer__top page-width">
  9139.        <div class="footer__top-wrapper f-flex"><div
  9140.                class="footer-block footer-block--newsletter f-column w-full lg:order-none order-first"
  9141.                style="--col-width:41%;--form-width: 550px;"
  9142.                
  9143.              >
  9144.                <motion-element class="block" data-motion="fade-up" data-motion-delay="50"><div class="footer-newsletter text-left"><h3 class="footer-block__heading inline-richtext h1">subscribe to our emails</h3><div class="footer-newsletter__description rte">
  9145.                            <p>With every product, <a href="https://www.mymimi.com.au" title="my mimi"><em><strong>my mimi</strong></em></a> redefines what period care can be: intuitive, sustainable, and as vibrant as the people we serve. <a href="https://womensinsider.com/revolutionising-period-care-how-the-my-mimi-menstrual-disc-is-changing-the-game/" target="_blank" title="womensinsider.com - revolutionising period care how the my mimi menstrual disc is changing the game">Join us in shaping a world where periods are celebrated—not just managed.</a></p>
  9146.                          </div><div class="footer-newsletter__form">
  9147.                          <div class="newsletter-form newsletter-form__design-1"><form method="post" action="/contact#ContactSubscribe-newsletter_3qCrWc" id="ContactSubscribe-newsletter_3qCrWc" accept-charset="UTF-8" class="contact-form" is="newsletter-form"><input type="hidden" name="form_type" value="customer" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="contact[tags]" value="newsletter">
  9148.    <div class="newsletter-form__field-wrapper">
  9149.      <div class="form-field relative">
  9150.        <label class="form-label visually-hidden" for="NewsletterForm-newsletter_3qCrWc">
  9151.          Email
  9152.        </label>
  9153.        <input
  9154.          id="NewsletterForm-newsletter_3qCrWc"
  9155.          type="email"
  9156.          name="contact[email]"
  9157.          class="form-control"
  9158.          value=""
  9159.          aria-required="true"
  9160.          autocorrect="off"
  9161.          autocapitalize="off"
  9162.          autocomplete="email"
  9163.          
  9164.          placeholder="Email"
  9165.          required
  9166.        ><button
  9167.            type="submit"
  9168.            class="newsletter-form__button btn btn--icon btn--blank"
  9169.            name="commit"
  9170.            id="Newsletter-submit--newsletter_3qCrWc"
  9171.            aria-label="Subscribe"
  9172.          >
  9173.            <svg
  9174.  class="icon icon-arrow icon--medium"
  9175.  viewBox="0 0 20 20"
  9176.  fill="none"
  9177.  xmlns="http://www.w3.org/2000/svg"
  9178. >
  9179.  <path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9180. </svg>
  9181.  
  9182.          </button><p
  9183.          class="form-message alert alert--error blocks-radius hidden"
  9184.          id="Newsletter-error-subscribed--newsletter_3qCrWc"
  9185.        >
  9186.          <svg
  9187.  class="icon icon-error icon--medium"
  9188.  viewBox="0 0 16 16"
  9189.  fill="none"
  9190.  xmlns="http://www.w3.org/2000/svg"
  9191. >
  9192.  <path d="M9 11.5C9 12.0523 8.55228 12.5 8 12.5C7.44772 12.5 7 12.0523 7 11.5C7 10.9477 7.44772 10.5 8 10.5C8.55228 10.5 9 10.9477 9 11.5Z" fill="currentColor"/>
  9193.  <path d="M8.75 4.25001C8.75001 3.8358 8.41422 3.50001 8.00001 3.5C7.5858 3.49999 7.25001 3.83578 7.25 4.24999L7.24994 8.74999C7.24993 9.1642 7.58572 9.49999 7.99993 9.5C8.41414 9.50001 8.74993 9.16422 8.74994 8.75001L8.75 4.25001Z" fill="currentColor"/>
  9194.  <path fill-rule="evenodd" clip-rule="evenodd" d="M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15ZM8 13.5C11.0376 13.5 13.5 11.0376 13.5 8C13.5 4.96243 11.0376 2.5 8 2.5C4.96243 2.5 2.5 4.96243 2.5 8C2.5 11.0376 4.96243 13.5 8 13.5Z" fill="currentColor"/>
  9195. </svg>
  9196.  
  9197. You have already subscribed!</p></div>
  9198.    </div></form></div>
  9199.  
  9200.                        </div><div class="footer-newsletter__term text-sm rte"><p>By <a href="https://mymimi.com.au/pages/subscribe" title="subscribe - my mimi">subscribing</a> you agree to the <a href="/policies/terms-of-service" title="Terms of Service">Terms of Use</a> & <a href="/policies/privacy-policy" title="Privacy Policy">Privacy Policy.</a></p></div></div></motion-element>
  9201.              </div><div
  9202.                class="footer-block footer-block--image_text f-column w-full has-border relative"
  9203.                style="--col-width:25%;"
  9204.                
  9205.              >
  9206.                <motion-element class="block" data-motion="fade-up" data-motion-delay="100"><details
  9207.                        id="Details-image_text_F3FNhx-sections--18997227847892__footer"
  9208.                        
  9209.                          is="footer-details"
  9210.                          open
  9211.                          data-open-default="true"
  9212.                        
  9213.                        class="accordion-details footer-accordion-details"
  9214.                      ><summary class="accordion-details__summary flex items-center justify-between gap-2">
  9215.                            <h3 class="footer-block__heading inline-richtext h4">About</h3>
  9216.                            <span class="flex items-center lg:hidden"><svg
  9217.  xmlns="http://www.w3.org/2000/svg"
  9218.  class="icon icon-plus-toggle icon--medium"
  9219.  viewBox="0 0 20 20"
  9220.  fill="none"
  9221. >
  9222.  <path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9223.  <path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9224. </svg>
  9225. </span>
  9226.                          </summary><div class="accordion-details__content footer-image-box">
  9227.                          
  9228. <div class="footer-image-box__text rte">
  9229.                              <p>At <a href="http://www.mymimi.com.au/" title="my mimi"><em><strong>my mimi</strong></em></a>, <a href="https://apnews.com/press-release/marketersmedia/menstruation-kate-newbury-email-df443cf3b52aec7171ae9ed84a2e8a83" target="_blank" title="Leading the Future of Period Care: How the my mimi Menstrual Disc is Transforming Menstrual Health">we are focused on transforming menstrual health with the my mimi Menstrual Disc.</a> <a href="https://www.digitaljournal.com/pr/news/revupmarketer/empowering-menstrual-health-mimi-educating-1460850575.html" target="_blank" title="Sustainable Period Care">Sustainable Period Care.</a></p>
  9230.                            </div><div class="footer-image-box__btn">
  9231.                              <a
  9232.                                
  9233.                                  href="/pages/about"
  9234.                                
  9235.                                class="btn btn--underline"
  9236.                              >read more</a>
  9237.                            </div></div>
  9238.                      </details></motion-element>
  9239.              </div><div
  9240.                class="footer-block footer-block--image_text f-column w-full"
  9241.                style="--col-width:20%;"
  9242.                
  9243.              >
  9244.                <motion-element class="block" data-motion="fade-up" data-motion-delay="150"><div
  9245.                        id="Details-image_text_JmYbxh-sections--18997227847892__footer"
  9246.                        
  9247.                        class="accordion-details footer-accordion-details"
  9248.                      ><div class="accordion-details__content footer-image-box">
  9249.                          
  9250. <div class="footer-image-box__text rte">
  9251.                              <h2>Total Comfort. Mess Free.<br/>No Leaks. <strong>Period.</strong></h2>
  9252.                            </div></div>
  9253.                      </div></motion-element>
  9254.              </div></div>
  9255.      </div>
  9256.    
  9257.    <div class="footer__bottom page-width">
  9258.      
  9259.      <motion-element class="block" data-motion="fade-up" data-motion-delay="50">
  9260.        
  9261.          <div class="footer__bottom-row flex justify-between">
  9262.            <div class="footer__localization relative z-2 flex items-center"><link rel="stylesheet" href="//mymimi.com.au/cdn/shop/t/11/assets/component-country-flag.css?v=34440972015563471671738695059" media="print" onload="this.media='all'">
  9263.  
  9264.  
  9265.  <div class="country-switcher " style="--f-max-width: 220px">
  9266.    <noscript><form method="post" action="/localization" id="country-29_NoScript" accept-charset="UTF-8" class="selectors-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/" /><h2 class="visually-hidden" id="CountryLabelNoScript-country-29">Country/region</h2>
  9267.        <div class="form-group">
  9268.          <select
  9269.            class="localization-selector form-control form-control--plain"
  9270.            name="country_code"
  9271.            aria-labelledby="CountryLabelNoScript-country-29"
  9272.          ><option
  9273.                value="AF"
  9274.                
  9275.              >
  9276.                Afghanistan (AFN
  9277.                ؋)
  9278.              </option><option
  9279.                value="AX"
  9280.                
  9281.              >
  9282.                Åland Islands (EUR
  9283.                €)
  9284.              </option><option
  9285.                value="AL"
  9286.                
  9287.              >
  9288.                Albania (ALL
  9289.                L)
  9290.              </option><option
  9291.                value="DZ"
  9292.                
  9293.              >
  9294.                Algeria (DZD
  9295.                د.ج)
  9296.              </option><option
  9297.                value="AD"
  9298.                
  9299.              >
  9300.                Andorra (EUR
  9301.                €)
  9302.              </option><option
  9303.                value="AO"
  9304.                
  9305.              >
  9306.                Angola (AUD
  9307.                $)
  9308.              </option><option
  9309.                value="AI"
  9310.                
  9311.              >
  9312.                Anguilla (XCD
  9313.                $)
  9314.              </option><option
  9315.                value="AG"
  9316.                
  9317.              >
  9318.                Antigua &amp; Barbuda (XCD
  9319.                $)
  9320.              </option><option
  9321.                value="AR"
  9322.                
  9323.              >
  9324.                Argentina (AUD
  9325.                $)
  9326.              </option><option
  9327.                value="AM"
  9328.                
  9329.              >
  9330.                Armenia (AMD
  9331.                դր.)
  9332.              </option><option
  9333.                value="AW"
  9334.                
  9335.              >
  9336.                Aruba (AWG
  9337.                ƒ)
  9338.              </option><option
  9339.                value="AC"
  9340.                
  9341.              >
  9342.                Ascension Island (SHP
  9343.                £)
  9344.              </option><option
  9345.                value="AU"
  9346.                
  9347.                  selected
  9348.                
  9349.              >
  9350.                Australia (AUD
  9351.                $)
  9352.              </option><option
  9353.                value="AT"
  9354.                
  9355.              >
  9356.                Austria (EUR
  9357.                €)
  9358.              </option><option
  9359.                value="AZ"
  9360.                
  9361.              >
  9362.                Azerbaijan (AZN
  9363.                ₼)
  9364.              </option><option
  9365.                value="BS"
  9366.                
  9367.              >
  9368.                Bahamas (BSD
  9369.                $)
  9370.              </option><option
  9371.                value="BH"
  9372.                
  9373.              >
  9374.                Bahrain (AUD
  9375.                $)
  9376.              </option><option
  9377.                value="BD"
  9378.                
  9379.              >
  9380.                Bangladesh (BDT
  9381.                ৳)
  9382.              </option><option
  9383.                value="BB"
  9384.                
  9385.              >
  9386.                Barbados (BBD
  9387.                $)
  9388.              </option><option
  9389.                value="BY"
  9390.                
  9391.              >
  9392.                Belarus (AUD
  9393.                $)
  9394.              </option><option
  9395.                value="BE"
  9396.                
  9397.              >
  9398.                Belgium (EUR
  9399.                €)
  9400.              </option><option
  9401.                value="BZ"
  9402.                
  9403.              >
  9404.                Belize (BZD
  9405.                $)
  9406.              </option><option
  9407.                value="BJ"
  9408.                
  9409.              >
  9410.                Benin (XOF
  9411.                Fr)
  9412.              </option><option
  9413.                value="BM"
  9414.                
  9415.              >
  9416.                Bermuda (USD
  9417.                $)
  9418.              </option><option
  9419.                value="BT"
  9420.                
  9421.              >
  9422.                Bhutan (AUD
  9423.                $)
  9424.              </option><option
  9425.                value="BO"
  9426.                
  9427.              >
  9428.                Bolivia (BOB
  9429.                Bs.)
  9430.              </option><option
  9431.                value="BA"
  9432.                
  9433.              >
  9434.                Bosnia &amp; Herzegovina (BAM
  9435.                КМ)
  9436.              </option><option
  9437.                value="BW"
  9438.                
  9439.              >
  9440.                Botswana (BWP
  9441.                P)
  9442.              </option><option
  9443.                value="BR"
  9444.                
  9445.              >
  9446.                Brazil (AUD
  9447.                $)
  9448.              </option><option
  9449.                value="IO"
  9450.                
  9451.              >
  9452.                British Indian Ocean Territory (USD
  9453.                $)
  9454.              </option><option
  9455.                value="VG"
  9456.                
  9457.              >
  9458.                British Virgin Islands (USD
  9459.                $)
  9460.              </option><option
  9461.                value="BN"
  9462.                
  9463.              >
  9464.                Brunei (BND
  9465.                $)
  9466.              </option><option
  9467.                value="BG"
  9468.                
  9469.              >
  9470.                Bulgaria (BGN
  9471.                лв.)
  9472.              </option><option
  9473.                value="BF"
  9474.                
  9475.              >
  9476.                Burkina Faso (XOF
  9477.                Fr)
  9478.              </option><option
  9479.                value="BI"
  9480.                
  9481.              >
  9482.                Burundi (BIF
  9483.                Fr)
  9484.              </option><option
  9485.                value="KH"
  9486.                
  9487.              >
  9488.                Cambodia (KHR
  9489.                ៛)
  9490.              </option><option
  9491.                value="CM"
  9492.                
  9493.              >
  9494.                Cameroon (XAF
  9495.                CFA)
  9496.              </option><option
  9497.                value="CA"
  9498.                
  9499.              >
  9500.                Canada (CAD
  9501.                $)
  9502.              </option><option
  9503.                value="CV"
  9504.                
  9505.              >
  9506.                Cape Verde (CVE
  9507.                $)
  9508.              </option><option
  9509.                value="BQ"
  9510.                
  9511.              >
  9512.                Caribbean Netherlands (USD
  9513.                $)
  9514.              </option><option
  9515.                value="KY"
  9516.                
  9517.              >
  9518.                Cayman Islands (KYD
  9519.                $)
  9520.              </option><option
  9521.                value="CF"
  9522.                
  9523.              >
  9524.                Central African Republic (XAF
  9525.                CFA)
  9526.              </option><option
  9527.                value="TD"
  9528.                
  9529.              >
  9530.                Chad (XAF
  9531.                CFA)
  9532.              </option><option
  9533.                value="CL"
  9534.                
  9535.              >
  9536.                Chile (AUD
  9537.                $)
  9538.              </option><option
  9539.                value="CN"
  9540.                
  9541.              >
  9542.                China (CNY
  9543.                ¥)
  9544.              </option><option
  9545.                value="CX"
  9546.                
  9547.              >
  9548.                Christmas Island (AUD
  9549.                $)
  9550.              </option><option
  9551.                value="CC"
  9552.                
  9553.              >
  9554.                Cocos (Keeling) Islands (AUD
  9555.                $)
  9556.              </option><option
  9557.                value="CO"
  9558.                
  9559.              >
  9560.                Colombia (AUD
  9561.                $)
  9562.              </option><option
  9563.                value="KM"
  9564.                
  9565.              >
  9566.                Comoros (KMF
  9567.                Fr)
  9568.              </option><option
  9569.                value="CG"
  9570.                
  9571.              >
  9572.                Congo - Brazzaville (XAF
  9573.                CFA)
  9574.              </option><option
  9575.                value="CD"
  9576.                
  9577.              >
  9578.                Congo - Kinshasa (CDF
  9579.                Fr)
  9580.              </option><option
  9581.                value="CK"
  9582.                
  9583.              >
  9584.                Cook Islands (NZD
  9585.                $)
  9586.              </option><option
  9587.                value="CR"
  9588.                
  9589.              >
  9590.                Costa Rica (CRC
  9591.                ₡)
  9592.              </option><option
  9593.                value="CI"
  9594.                
  9595.              >
  9596.                Côte d’Ivoire (XOF
  9597.                Fr)
  9598.              </option><option
  9599.                value="HR"
  9600.                
  9601.              >
  9602.                Croatia (EUR
  9603.                €)
  9604.              </option><option
  9605.                value="CW"
  9606.                
  9607.              >
  9608.                Curaçao (ANG
  9609.                ƒ)
  9610.              </option><option
  9611.                value="CY"
  9612.                
  9613.              >
  9614.                Cyprus (EUR
  9615.                €)
  9616.              </option><option
  9617.                value="CZ"
  9618.                
  9619.              >
  9620.                Czechia (CZK
  9621.                Kč)
  9622.              </option><option
  9623.                value="DK"
  9624.                
  9625.              >
  9626.                Denmark (DKK
  9627.                kr.)
  9628.              </option><option
  9629.                value="DJ"
  9630.                
  9631.              >
  9632.                Djibouti (DJF
  9633.                Fdj)
  9634.              </option><option
  9635.                value="DM"
  9636.                
  9637.              >
  9638.                Dominica (XCD
  9639.                $)
  9640.              </option><option
  9641.                value="DO"
  9642.                
  9643.              >
  9644.                Dominican Republic (DOP
  9645.                $)
  9646.              </option><option
  9647.                value="EC"
  9648.                
  9649.              >
  9650.                Ecuador (USD
  9651.                $)
  9652.              </option><option
  9653.                value="EG"
  9654.                
  9655.              >
  9656.                Egypt (EGP
  9657.                ج.م)
  9658.              </option><option
  9659.                value="SV"
  9660.                
  9661.              >
  9662.                El Salvador (USD
  9663.                $)
  9664.              </option><option
  9665.                value="GQ"
  9666.                
  9667.              >
  9668.                Equatorial Guinea (XAF
  9669.                CFA)
  9670.              </option><option
  9671.                value="ER"
  9672.                
  9673.              >
  9674.                Eritrea (AUD
  9675.                $)
  9676.              </option><option
  9677.                value="EE"
  9678.                
  9679.              >
  9680.                Estonia (EUR
  9681.                €)
  9682.              </option><option
  9683.                value="SZ"
  9684.                
  9685.              >
  9686.                Eswatini (AUD
  9687.                $)
  9688.              </option><option
  9689.                value="ET"
  9690.                
  9691.              >
  9692.                Ethiopia (ETB
  9693.                Br)
  9694.              </option><option
  9695.                value="FK"
  9696.                
  9697.              >
  9698.                Falkland Islands (FKP
  9699.                £)
  9700.              </option><option
  9701.                value="FO"
  9702.                
  9703.              >
  9704.                Faroe Islands (DKK
  9705.                kr.)
  9706.              </option><option
  9707.                value="FJ"
  9708.                
  9709.              >
  9710.                Fiji (FJD
  9711.                $)
  9712.              </option><option
  9713.                value="FI"
  9714.                
  9715.              >
  9716.                Finland (EUR
  9717.                €)
  9718.              </option><option
  9719.                value="FR"
  9720.                
  9721.              >
  9722.                France (EUR
  9723.                €)
  9724.              </option><option
  9725.                value="GF"
  9726.                
  9727.              >
  9728.                French Guiana (EUR
  9729.                €)
  9730.              </option><option
  9731.                value="PF"
  9732.                
  9733.              >
  9734.                French Polynesia (XPF
  9735.                Fr)
  9736.              </option><option
  9737.                value="TF"
  9738.                
  9739.              >
  9740.                French Southern Territories (EUR
  9741.                €)
  9742.              </option><option
  9743.                value="GA"
  9744.                
  9745.              >
  9746.                Gabon (XOF
  9747.                Fr)
  9748.              </option><option
  9749.                value="GM"
  9750.                
  9751.              >
  9752.                Gambia (GMD
  9753.                D)
  9754.              </option><option
  9755.                value="GE"
  9756.                
  9757.              >
  9758.                Georgia (AUD
  9759.                $)
  9760.              </option><option
  9761.                value="DE"
  9762.                
  9763.              >
  9764.                Germany (EUR
  9765.                €)
  9766.              </option><option
  9767.                value="GH"
  9768.                
  9769.              >
  9770.                Ghana (AUD
  9771.                $)
  9772.              </option><option
  9773.                value="GI"
  9774.                
  9775.              >
  9776.                Gibraltar (GBP
  9777.                £)
  9778.              </option><option
  9779.                value="GR"
  9780.                
  9781.              >
  9782.                Greece (EUR
  9783.                €)
  9784.              </option><option
  9785.                value="GL"
  9786.                
  9787.              >
  9788.                Greenland (DKK
  9789.                kr.)
  9790.              </option><option
  9791.                value="GD"
  9792.                
  9793.              >
  9794.                Grenada (XCD
  9795.                $)
  9796.              </option><option
  9797.                value="GP"
  9798.                
  9799.              >
  9800.                Guadeloupe (EUR
  9801.                €)
  9802.              </option><option
  9803.                value="GT"
  9804.                
  9805.              >
  9806.                Guatemala (GTQ
  9807.                Q)
  9808.              </option><option
  9809.                value="GG"
  9810.                
  9811.              >
  9812.                Guernsey (GBP
  9813.                £)
  9814.              </option><option
  9815.                value="GN"
  9816.                
  9817.              >
  9818.                Guinea (GNF
  9819.                Fr)
  9820.              </option><option
  9821.                value="GW"
  9822.                
  9823.              >
  9824.                Guinea-Bissau (XOF
  9825.                Fr)
  9826.              </option><option
  9827.                value="GY"
  9828.                
  9829.              >
  9830.                Guyana (GYD
  9831.                $)
  9832.              </option><option
  9833.                value="HT"
  9834.                
  9835.              >
  9836.                Haiti (AUD
  9837.                $)
  9838.              </option><option
  9839.                value="HN"
  9840.                
  9841.              >
  9842.                Honduras (HNL
  9843.                L)
  9844.              </option><option
  9845.                value="HK"
  9846.                
  9847.              >
  9848.                Hong Kong SAR (HKD
  9849.                $)
  9850.              </option><option
  9851.                value="HU"
  9852.                
  9853.              >
  9854.                Hungary (HUF
  9855.                Ft)
  9856.              </option><option
  9857.                value="IS"
  9858.                
  9859.              >
  9860.                Iceland (ISK
  9861.                kr)
  9862.              </option><option
  9863.                value="IN"
  9864.                
  9865.              >
  9866.                India (INR
  9867.                ₹)
  9868.              </option><option
  9869.                value="ID"
  9870.                
  9871.              >
  9872.                Indonesia (IDR
  9873.                Rp)
  9874.              </option><option
  9875.                value="IQ"
  9876.                
  9877.              >
  9878.                Iraq (AUD
  9879.                $)
  9880.              </option><option
  9881.                value="IE"
  9882.                
  9883.              >
  9884.                Ireland (EUR
  9885.                €)
  9886.              </option><option
  9887.                value="IM"
  9888.                
  9889.              >
  9890.                Isle of Man (GBP
  9891.                £)
  9892.              </option><option
  9893.                value="IL"
  9894.                
  9895.              >
  9896.                Israel (ILS
  9897.                ₪)
  9898.              </option><option
  9899.                value="IT"
  9900.                
  9901.              >
  9902.                Italy (EUR
  9903.                €)
  9904.              </option><option
  9905.                value="JM"
  9906.                
  9907.              >
  9908.                Jamaica (JMD
  9909.                $)
  9910.              </option><option
  9911.                value="JP"
  9912.                
  9913.              >
  9914.                Japan (JPY
  9915.                ¥)
  9916.              </option><option
  9917.                value="JE"
  9918.                
  9919.              >
  9920.                Jersey (AUD
  9921.                $)
  9922.              </option><option
  9923.                value="JO"
  9924.                
  9925.              >
  9926.                Jordan (AUD
  9927.                $)
  9928.              </option><option
  9929.                value="KZ"
  9930.                
  9931.              >
  9932.                Kazakhstan (KZT
  9933.                ₸)
  9934.              </option><option
  9935.                value="KE"
  9936.                
  9937.              >
  9938.                Kenya (KES
  9939.                KSh)
  9940.              </option><option
  9941.                value="KI"
  9942.                
  9943.              >
  9944.                Kiribati (AUD
  9945.                $)
  9946.              </option><option
  9947.                value="XK"
  9948.                
  9949.              >
  9950.                Kosovo (EUR
  9951.                €)
  9952.              </option><option
  9953.                value="KW"
  9954.                
  9955.              >
  9956.                Kuwait (AUD
  9957.                $)
  9958.              </option><option
  9959.                value="KG"
  9960.                
  9961.              >
  9962.                Kyrgyzstan (KGS
  9963.                som)
  9964.              </option><option
  9965.                value="LA"
  9966.                
  9967.              >
  9968.                Laos (LAK
  9969.                ₭)
  9970.              </option><option
  9971.                value="LV"
  9972.                
  9973.              >
  9974.                Latvia (EUR
  9975.                €)
  9976.              </option><option
  9977.                value="LB"
  9978.                
  9979.              >
  9980.                Lebanon (LBP
  9981.                ل.ل)
  9982.              </option><option
  9983.                value="LS"
  9984.                
  9985.              >
  9986.                Lesotho (AUD
  9987.                $)
  9988.              </option><option
  9989.                value="LR"
  9990.                
  9991.              >
  9992.                Liberia (AUD
  9993.                $)
  9994.              </option><option
  9995.                value="LY"
  9996.                
  9997.              >
  9998.                Libya (AUD
  9999.                $)
  10000.              </option><option
  10001.                value="LI"
  10002.                
  10003.              >
  10004.                Liechtenstein (CHF
  10005.                CHF)
  10006.              </option><option
  10007.                value="LT"
  10008.                
  10009.              >
  10010.                Lithuania (EUR
  10011.                €)
  10012.              </option><option
  10013.                value="LU"
  10014.                
  10015.              >
  10016.                Luxembourg (EUR
  10017.                €)
  10018.              </option><option
  10019.                value="MO"
  10020.                
  10021.              >
  10022.                Macao SAR (MOP
  10023.                P)
  10024.              </option><option
  10025.                value="MG"
  10026.                
  10027.              >
  10028.                Madagascar (AUD
  10029.                $)
  10030.              </option><option
  10031.                value="MW"
  10032.                
  10033.              >
  10034.                Malawi (MWK
  10035.                MK)
  10036.              </option><option
  10037.                value="MY"
  10038.                
  10039.              >
  10040.                Malaysia (MYR
  10041.                RM)
  10042.              </option><option
  10043.                value="MV"
  10044.                
  10045.              >
  10046.                Maldives (MVR
  10047.                MVR)
  10048.              </option><option
  10049.                value="ML"
  10050.                
  10051.              >
  10052.                Mali (XOF
  10053.                Fr)
  10054.              </option><option
  10055.                value="MT"
  10056.                
  10057.              >
  10058.                Malta (EUR
  10059.                €)
  10060.              </option><option
  10061.                value="MQ"
  10062.                
  10063.              >
  10064.                Martinique (EUR
  10065.                €)
  10066.              </option><option
  10067.                value="MR"
  10068.                
  10069.              >
  10070.                Mauritania (AUD
  10071.                $)
  10072.              </option><option
  10073.                value="MU"
  10074.                
  10075.              >
  10076.                Mauritius (MUR
  10077.                ₨)
  10078.              </option><option
  10079.                value="YT"
  10080.                
  10081.              >
  10082.                Mayotte (EUR
  10083.                €)
  10084.              </option><option
  10085.                value="MX"
  10086.                
  10087.              >
  10088.                Mexico (AUD
  10089.                $)
  10090.              </option><option
  10091.                value="MD"
  10092.                
  10093.              >
  10094.                Moldova (MDL
  10095.                L)
  10096.              </option><option
  10097.                value="MC"
  10098.                
  10099.              >
  10100.                Monaco (EUR
  10101.                €)
  10102.              </option><option
  10103.                value="MN"
  10104.                
  10105.              >
  10106.                Mongolia (MNT
  10107.                ₮)
  10108.              </option><option
  10109.                value="ME"
  10110.                
  10111.              >
  10112.                Montenegro (EUR
  10113.                €)
  10114.              </option><option
  10115.                value="MS"
  10116.                
  10117.              >
  10118.                Montserrat (XCD
  10119.                $)
  10120.              </option><option
  10121.                value="MA"
  10122.                
  10123.              >
  10124.                Morocco (MAD
  10125.                د.م.)
  10126.              </option><option
  10127.                value="MZ"
  10128.                
  10129.              >
  10130.                Mozambique (AUD
  10131.                $)
  10132.              </option><option
  10133.                value="MM"
  10134.                
  10135.              >
  10136.                Myanmar (Burma) (MMK
  10137.                K)
  10138.              </option><option
  10139.                value="NA"
  10140.                
  10141.              >
  10142.                Namibia (AUD
  10143.                $)
  10144.              </option><option
  10145.                value="NR"
  10146.                
  10147.              >
  10148.                Nauru (AUD
  10149.                $)
  10150.              </option><option
  10151.                value="NP"
  10152.                
  10153.              >
  10154.                Nepal (NPR
  10155.                Rs.)
  10156.              </option><option
  10157.                value="NL"
  10158.                
  10159.              >
  10160.                Netherlands (EUR
  10161.                €)
  10162.              </option><option
  10163.                value="NC"
  10164.                
  10165.              >
  10166.                New Caledonia (XPF
  10167.                Fr)
  10168.              </option><option
  10169.                value="NZ"
  10170.                
  10171.              >
  10172.                New Zealand (NZD
  10173.                $)
  10174.              </option><option
  10175.                value="NI"
  10176.                
  10177.              >
  10178.                Nicaragua (NIO
  10179.                C$)
  10180.              </option><option
  10181.                value="NE"
  10182.                
  10183.              >
  10184.                Niger (XOF
  10185.                Fr)
  10186.              </option><option
  10187.                value="NG"
  10188.                
  10189.              >
  10190.                Nigeria (NGN
  10191.                ₦)
  10192.              </option><option
  10193.                value="NU"
  10194.                
  10195.              >
  10196.                Niue (NZD
  10197.                $)
  10198.              </option><option
  10199.                value="NF"
  10200.                
  10201.              >
  10202.                Norfolk Island (AUD
  10203.                $)
  10204.              </option><option
  10205.                value="MK"
  10206.                
  10207.              >
  10208.                North Macedonia (MKD
  10209.                ден)
  10210.              </option><option
  10211.                value="NO"
  10212.                
  10213.              >
  10214.                Norway (AUD
  10215.                $)
  10216.              </option><option
  10217.                value="OM"
  10218.                
  10219.              >
  10220.                Oman (AUD
  10221.                $)
  10222.              </option><option
  10223.                value="PK"
  10224.                
  10225.              >
  10226.                Pakistan (PKR
  10227.                ₨)
  10228.              </option><option
  10229.                value="PS"
  10230.                
  10231.              >
  10232.                Palestinian Territories (ILS
  10233.                ₪)
  10234.              </option><option
  10235.                value="PA"
  10236.                
  10237.              >
  10238.                Panama (USD
  10239.                $)
  10240.              </option><option
  10241.                value="PG"
  10242.                
  10243.              >
  10244.                Papua New Guinea (PGK
  10245.                K)
  10246.              </option><option
  10247.                value="PY"
  10248.                
  10249.              >
  10250.                Paraguay (PYG
  10251.                ₲)
  10252.              </option><option
  10253.                value="PE"
  10254.                
  10255.              >
  10256.                Peru (PEN
  10257.                S/)
  10258.              </option><option
  10259.                value="PH"
  10260.                
  10261.              >
  10262.                Philippines (PHP
  10263.                ₱)
  10264.              </option><option
  10265.                value="PN"
  10266.                
  10267.              >
  10268.                Pitcairn Islands (NZD
  10269.                $)
  10270.              </option><option
  10271.                value="PL"
  10272.                
  10273.              >
  10274.                Poland (PLN
  10275.                zł)
  10276.              </option><option
  10277.                value="PT"
  10278.                
  10279.              >
  10280.                Portugal (EUR
  10281.                €)
  10282.              </option><option
  10283.                value="QA"
  10284.                
  10285.              >
  10286.                Qatar (QAR
  10287.                ر.ق)
  10288.              </option><option
  10289.                value="RE"
  10290.                
  10291.              >
  10292.                Réunion (EUR
  10293.                €)
  10294.              </option><option
  10295.                value="RO"
  10296.                
  10297.              >
  10298.                Romania (RON
  10299.                Lei)
  10300.              </option><option
  10301.                value="RU"
  10302.                
  10303.              >
  10304.                Russia (AUD
  10305.                $)
  10306.              </option><option
  10307.                value="RW"
  10308.                
  10309.              >
  10310.                Rwanda (RWF
  10311.                FRw)
  10312.              </option><option
  10313.                value="WS"
  10314.                
  10315.              >
  10316.                Samoa (WST
  10317.                T)
  10318.              </option><option
  10319.                value="SM"
  10320.                
  10321.              >
  10322.                San Marino (EUR
  10323.                €)
  10324.              </option><option
  10325.                value="ST"
  10326.                
  10327.              >
  10328.                São Tomé &amp; Príncipe (STD
  10329.                Db)
  10330.              </option><option
  10331.                value="SA"
  10332.                
  10333.              >
  10334.                Saudi Arabia (SAR
  10335.                ر.س)
  10336.              </option><option
  10337.                value="SN"
  10338.                
  10339.              >
  10340.                Senegal (XOF
  10341.                Fr)
  10342.              </option><option
  10343.                value="RS"
  10344.                
  10345.              >
  10346.                Serbia (RSD
  10347.                РСД)
  10348.              </option><option
  10349.                value="SC"
  10350.                
  10351.              >
  10352.                Seychelles (AUD
  10353.                $)
  10354.              </option><option
  10355.                value="SL"
  10356.                
  10357.              >
  10358.                Sierra Leone (SLL
  10359.                Le)
  10360.              </option><option
  10361.                value="SG"
  10362.                
  10363.              >
  10364.                Singapore (SGD
  10365.                $)
  10366.              </option><option
  10367.                value="SX"
  10368.                
  10369.              >
  10370.                Sint Maarten (ANG
  10371.                ƒ)
  10372.              </option><option
  10373.                value="SK"
  10374.                
  10375.              >
  10376.                Slovakia (EUR
  10377.                €)
  10378.              </option><option
  10379.                value="SI"
  10380.                
  10381.              >
  10382.                Slovenia (EUR
  10383.                €)
  10384.              </option><option
  10385.                value="SB"
  10386.                
  10387.              >
  10388.                Solomon Islands (SBD
  10389.                $)
  10390.              </option><option
  10391.                value="SO"
  10392.                
  10393.              >
  10394.                Somalia (AUD
  10395.                $)
  10396.              </option><option
  10397.                value="ZA"
  10398.                
  10399.              >
  10400.                South Africa (AUD
  10401.                $)
  10402.              </option><option
  10403.                value="GS"
  10404.                
  10405.              >
  10406.                South Georgia &amp; South Sandwich Islands (GBP
  10407.                £)
  10408.              </option><option
  10409.                value="SS"
  10410.                
  10411.              >
  10412.                South Sudan (AUD
  10413.                $)
  10414.              </option><option
  10415.                value="ES"
  10416.                
  10417.              >
  10418.                Spain (EUR
  10419.                €)
  10420.              </option><option
  10421.                value="LK"
  10422.                
  10423.              >
  10424.                Sri Lanka (LKR
  10425.                ₨)
  10426.              </option><option
  10427.                value="BL"
  10428.                
  10429.              >
  10430.                St. Barthélemy (EUR
  10431.                €)
  10432.              </option><option
  10433.                value="SH"
  10434.                
  10435.              >
  10436.                St. Helena (SHP
  10437.                £)
  10438.              </option><option
  10439.                value="KN"
  10440.                
  10441.              >
  10442.                St. Kitts &amp; Nevis (XCD
  10443.                $)
  10444.              </option><option
  10445.                value="LC"
  10446.                
  10447.              >
  10448.                St. Lucia (XCD
  10449.                $)
  10450.              </option><option
  10451.                value="MF"
  10452.                
  10453.              >
  10454.                St. Martin (EUR
  10455.                €)
  10456.              </option><option
  10457.                value="PM"
  10458.                
  10459.              >
  10460.                St. Pierre &amp; Miquelon (EUR
  10461.                €)
  10462.              </option><option
  10463.                value="VC"
  10464.                
  10465.              >
  10466.                St. Vincent &amp; Grenadines (XCD
  10467.                $)
  10468.              </option><option
  10469.                value="SD"
  10470.                
  10471.              >
  10472.                Sudan (AUD
  10473.                $)
  10474.              </option><option
  10475.                value="SR"
  10476.                
  10477.              >
  10478.                Suriname (AUD
  10479.                $)
  10480.              </option><option
  10481.                value="SJ"
  10482.                
  10483.              >
  10484.                Svalbard &amp; Jan Mayen (AUD
  10485.                $)
  10486.              </option><option
  10487.                value="SE"
  10488.                
  10489.              >
  10490.                Sweden (SEK
  10491.                kr)
  10492.              </option><option
  10493.                value="CH"
  10494.                
  10495.              >
  10496.                Switzerland (CHF
  10497.                CHF)
  10498.              </option><option
  10499.                value="TW"
  10500.                
  10501.              >
  10502.                Taiwan (TWD
  10503.                $)
  10504.              </option><option
  10505.                value="TJ"
  10506.                
  10507.              >
  10508.                Tajikistan (TJS
  10509.                ЅМ)
  10510.              </option><option
  10511.                value="TZ"
  10512.                
  10513.              >
  10514.                Tanzania (TZS
  10515.                Sh)
  10516.              </option><option
  10517.                value="TH"
  10518.                
  10519.              >
  10520.                Thailand (THB
  10521.                ฿)
  10522.              </option><option
  10523.                value="TL"
  10524.                
  10525.              >
  10526.                Timor-Leste (USD
  10527.                $)
  10528.              </option><option
  10529.                value="TG"
  10530.                
  10531.              >
  10532.                Togo (XOF
  10533.                Fr)
  10534.              </option><option
  10535.                value="TK"
  10536.                
  10537.              >
  10538.                Tokelau (NZD
  10539.                $)
  10540.              </option><option
  10541.                value="TO"
  10542.                
  10543.              >
  10544.                Tonga (TOP
  10545.                T$)
  10546.              </option><option
  10547.                value="TT"
  10548.                
  10549.              >
  10550.                Trinidad &amp; Tobago (TTD
  10551.                $)
  10552.              </option><option
  10553.                value="TA"
  10554.                
  10555.              >
  10556.                Tristan da Cunha (GBP
  10557.                £)
  10558.              </option><option
  10559.                value="TN"
  10560.                
  10561.              >
  10562.                Tunisia (AUD
  10563.                $)
  10564.              </option><option
  10565.                value="TR"
  10566.                
  10567.              >
  10568.                Türkiye (AUD
  10569.                $)
  10570.              </option><option
  10571.                value="TM"
  10572.                
  10573.              >
  10574.                Turkmenistan (AUD
  10575.                $)
  10576.              </option><option
  10577.                value="TC"
  10578.                
  10579.              >
  10580.                Turks &amp; Caicos Islands (USD
  10581.                $)
  10582.              </option><option
  10583.                value="TV"
  10584.                
  10585.              >
  10586.                Tuvalu (AUD
  10587.                $)
  10588.              </option><option
  10589.                value="UM"
  10590.                
  10591.              >
  10592.                U.S. Outlying Islands (USD
  10593.                $)
  10594.              </option><option
  10595.                value="UG"
  10596.                
  10597.              >
  10598.                Uganda (UGX
  10599.                USh)
  10600.              </option><option
  10601.                value="UA"
  10602.                
  10603.              >
  10604.                Ukraine (UAH
  10605.                ₴)
  10606.              </option><option
  10607.                value="AE"
  10608.                
  10609.              >
  10610.                United Arab Emirates (AED
  10611.                د.إ)
  10612.              </option><option
  10613.                value="GB"
  10614.                
  10615.              >
  10616.                United Kingdom (GBP
  10617.                £)
  10618.              </option><option
  10619.                value="UY"
  10620.                
  10621.              >
  10622.                Uruguay (UYU
  10623.                $U)
  10624.              </option><option
  10625.                value="UZ"
  10626.                
  10627.              >
  10628.                Uzbekistan (UZS
  10629.                so'm)
  10630.              </option><option
  10631.                value="VU"
  10632.                
  10633.              >
  10634.                Vanuatu (VUV
  10635.                Vt)
  10636.              </option><option
  10637.                value="VA"
  10638.                
  10639.              >
  10640.                Vatican City (EUR
  10641.                €)
  10642.              </option><option
  10643.                value="VE"
  10644.                
  10645.              >
  10646.                Venezuela (USD
  10647.                $)
  10648.              </option><option
  10649.                value="VN"
  10650.                
  10651.              >
  10652.                Vietnam (VND
  10653.                ₫)
  10654.              </option><option
  10655.                value="WF"
  10656.                
  10657.              >
  10658.                Wallis &amp; Futuna (XPF
  10659.                Fr)
  10660.              </option><option
  10661.                value="EH"
  10662.                
  10663.              >
  10664.                Western Sahara (MAD
  10665.                د.م.)
  10666.              </option><option
  10667.                value="YE"
  10668.                
  10669.              >
  10670.                Yemen (YER
  10671.                ﷼)
  10672.              </option><option
  10673.                value="ZM"
  10674.                
  10675.              >
  10676.                Zambia (AUD
  10677.                $)
  10678.              </option><option
  10679.                value="ZW"
  10680.                
  10681.              >
  10682.                Zimbabwe (USD
  10683.                $)
  10684.              </option></select>
  10685.          <button class="btn btn--with-icon btn--square" aria-label="Update country/region">
  10686.            <svg
  10687.  class="icon icon-arrow icon--small"
  10688.  viewBox="0 0 20 20"
  10689.  fill="none"
  10690.  xmlns="http://www.w3.org/2000/svg"
  10691. >
  10692.  <path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10693. </svg>
  10694.  
  10695.            <span class="visually-hidden">Update country/region</span>
  10696.          </button>
  10697.        </div></form></noscript>
  10698.  
  10699.    <localization-form
  10700.      class="disclosure no-js-hidden disclosure--up disclosure--plain"
  10701.      data-disclosure-country
  10702.    ><form method="post" action="/localization" id="country-29" accept-charset="UTF-8" class="selectors-form" enctype="multipart/form-data" data-disclosure-form=""><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/" /><h2 class="visually-hidden" id="CountryLabel-country-29">Country/region</h2>
  10703.        <button
  10704.          type="button"
  10705.          class="disclosure__toggle btn--plain text-normal font-body"
  10706.          aria-expanded="false"
  10707.          aria-controls="country-list"
  10708.          aria-describedby="CountryLabel-country-29"
  10709.          data-disclosure-toggle
  10710.        >
  10711.          <span class="f-country-flags f-country-flags--AU"></span>
  10712.          Australia (AUD
  10713.          $)
  10714.          <svg
  10715.  class="icon icon-arrow icon--small"
  10716.  viewBox="0 0 20 20"
  10717.  fill="none"
  10718.  xmlns="http://www.w3.org/2000/svg"
  10719. >
  10720.  <path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10721. </svg>
  10722.  
  10723.        </button>
  10724.        <ul class="disclosure-list v-scrollable text-left"><li class="disclosure-list__item">
  10725.              <a
  10726.                class="disclosure-list__option"
  10727.                href="#"
  10728.                
  10729.                data-value="AF"
  10730.                data-disclosure-option
  10731.              >
  10732.                <span class="f-country-flags f-country-flags--AF"></span>Afghanistan<span class="localization-form__currency"
  10733.                  >(AFN
  10734.                  ؋)</span
  10735.                >
  10736.              </a>
  10737.            </li><li class="disclosure-list__item">
  10738.              <a
  10739.                class="disclosure-list__option"
  10740.                href="#"
  10741.                
  10742.                data-value="AX"
  10743.                data-disclosure-option
  10744.              >
  10745.                <span class="f-country-flags f-country-flags--AX"></span>Åland Islands<span class="localization-form__currency"
  10746.                  >(EUR
  10747.                  €)</span
  10748.                >
  10749.              </a>
  10750.            </li><li class="disclosure-list__item">
  10751.              <a
  10752.                class="disclosure-list__option"
  10753.                href="#"
  10754.                
  10755.                data-value="AL"
  10756.                data-disclosure-option
  10757.              >
  10758.                <span class="f-country-flags f-country-flags--AL"></span>Albania<span class="localization-form__currency"
  10759.                  >(ALL
  10760.                  L)</span
  10761.                >
  10762.              </a>
  10763.            </li><li class="disclosure-list__item">
  10764.              <a
  10765.                class="disclosure-list__option"
  10766.                href="#"
  10767.                
  10768.                data-value="DZ"
  10769.                data-disclosure-option
  10770.              >
  10771.                <span class="f-country-flags f-country-flags--DZ"></span>Algeria<span class="localization-form__currency"
  10772.                  >(DZD
  10773.                  د.ج)</span
  10774.                >
  10775.              </a>
  10776.            </li><li class="disclosure-list__item">
  10777.              <a
  10778.                class="disclosure-list__option"
  10779.                href="#"
  10780.                
  10781.                data-value="AD"
  10782.                data-disclosure-option
  10783.              >
  10784.                <span class="f-country-flags f-country-flags--AD"></span>Andorra<span class="localization-form__currency"
  10785.                  >(EUR
  10786.                  €)</span
  10787.                >
  10788.              </a>
  10789.            </li><li class="disclosure-list__item">
  10790.              <a
  10791.                class="disclosure-list__option"
  10792.                href="#"
  10793.                
  10794.                data-value="AO"
  10795.                data-disclosure-option
  10796.              >
  10797.                <span class="f-country-flags f-country-flags--AO"></span>Angola<span class="localization-form__currency"
  10798.                  >(AUD
  10799.                  $)</span
  10800.                >
  10801.              </a>
  10802.            </li><li class="disclosure-list__item">
  10803.              <a
  10804.                class="disclosure-list__option"
  10805.                href="#"
  10806.                
  10807.                data-value="AI"
  10808.                data-disclosure-option
  10809.              >
  10810.                <span class="f-country-flags f-country-flags--AI"></span>Anguilla<span class="localization-form__currency"
  10811.                  >(XCD
  10812.                  $)</span
  10813.                >
  10814.              </a>
  10815.            </li><li class="disclosure-list__item">
  10816.              <a
  10817.                class="disclosure-list__option"
  10818.                href="#"
  10819.                
  10820.                data-value="AG"
  10821.                data-disclosure-option
  10822.              >
  10823.                <span class="f-country-flags f-country-flags--AG"></span>Antigua &amp; Barbuda<span class="localization-form__currency"
  10824.                  >(XCD
  10825.                  $)</span
  10826.                >
  10827.              </a>
  10828.            </li><li class="disclosure-list__item">
  10829.              <a
  10830.                class="disclosure-list__option"
  10831.                href="#"
  10832.                
  10833.                data-value="AR"
  10834.                data-disclosure-option
  10835.              >
  10836.                <span class="f-country-flags f-country-flags--AR"></span>Argentina<span class="localization-form__currency"
  10837.                  >(AUD
  10838.                  $)</span
  10839.                >
  10840.              </a>
  10841.            </li><li class="disclosure-list__item">
  10842.              <a
  10843.                class="disclosure-list__option"
  10844.                href="#"
  10845.                
  10846.                data-value="AM"
  10847.                data-disclosure-option
  10848.              >
  10849.                <span class="f-country-flags f-country-flags--AM"></span>Armenia<span class="localization-form__currency"
  10850.                  >(AMD
  10851.                  դր.)</span
  10852.                >
  10853.              </a>
  10854.            </li><li class="disclosure-list__item">
  10855.              <a
  10856.                class="disclosure-list__option"
  10857.                href="#"
  10858.                
  10859.                data-value="AW"
  10860.                data-disclosure-option
  10861.              >
  10862.                <span class="f-country-flags f-country-flags--AW"></span>Aruba<span class="localization-form__currency"
  10863.                  >(AWG
  10864.                  ƒ)</span
  10865.                >
  10866.              </a>
  10867.            </li><li class="disclosure-list__item">
  10868.              <a
  10869.                class="disclosure-list__option"
  10870.                href="#"
  10871.                
  10872.                data-value="AC"
  10873.                data-disclosure-option
  10874.              >
  10875.                <span class="f-country-flags f-country-flags--AC"></span>Ascension Island<span class="localization-form__currency"
  10876.                  >(SHP
  10877.                  £)</span
  10878.                >
  10879.              </a>
  10880.            </li><li class="disclosure-list__item disclosure-list__item--current">
  10881.              <a
  10882.                class="disclosure-list__option"
  10883.                href="#"
  10884.                
  10885.                  aria-current="true"
  10886.                
  10887.                data-value="AU"
  10888.                data-disclosure-option
  10889.              >
  10890.                <span class="f-country-flags f-country-flags--AU"></span>Australia<span class="localization-form__currency"
  10891.                  >(AUD
  10892.                  $)</span
  10893.                >
  10894.              </a>
  10895.            </li><li class="disclosure-list__item">
  10896.              <a
  10897.                class="disclosure-list__option"
  10898.                href="#"
  10899.                
  10900.                data-value="AT"
  10901.                data-disclosure-option
  10902.              >
  10903.                <span class="f-country-flags f-country-flags--AT"></span>Austria<span class="localization-form__currency"
  10904.                  >(EUR
  10905.                  €)</span
  10906.                >
  10907.              </a>
  10908.            </li><li class="disclosure-list__item">
  10909.              <a
  10910.                class="disclosure-list__option"
  10911.                href="#"
  10912.                
  10913.                data-value="AZ"
  10914.                data-disclosure-option
  10915.              >
  10916.                <span class="f-country-flags f-country-flags--AZ"></span>Azerbaijan<span class="localization-form__currency"
  10917.                  >(AZN
  10918.                  ₼)</span
  10919.                >
  10920.              </a>
  10921.            </li><li class="disclosure-list__item">
  10922.              <a
  10923.                class="disclosure-list__option"
  10924.                href="#"
  10925.                
  10926.                data-value="BS"
  10927.                data-disclosure-option
  10928.              >
  10929.                <span class="f-country-flags f-country-flags--BS"></span>Bahamas<span class="localization-form__currency"
  10930.                  >(BSD
  10931.                  $)</span
  10932.                >
  10933.              </a>
  10934.            </li><li class="disclosure-list__item">
  10935.              <a
  10936.                class="disclosure-list__option"
  10937.                href="#"
  10938.                
  10939.                data-value="BH"
  10940.                data-disclosure-option
  10941.              >
  10942.                <span class="f-country-flags f-country-flags--BH"></span>Bahrain<span class="localization-form__currency"
  10943.                  >(AUD
  10944.                  $)</span
  10945.                >
  10946.              </a>
  10947.            </li><li class="disclosure-list__item">
  10948.              <a
  10949.                class="disclosure-list__option"
  10950.                href="#"
  10951.                
  10952.                data-value="BD"
  10953.                data-disclosure-option
  10954.              >
  10955.                <span class="f-country-flags f-country-flags--BD"></span>Bangladesh<span class="localization-form__currency"
  10956.                  >(BDT
  10957.                  ৳)</span
  10958.                >
  10959.              </a>
  10960.            </li><li class="disclosure-list__item">
  10961.              <a
  10962.                class="disclosure-list__option"
  10963.                href="#"
  10964.                
  10965.                data-value="BB"
  10966.                data-disclosure-option
  10967.              >
  10968.                <span class="f-country-flags f-country-flags--BB"></span>Barbados<span class="localization-form__currency"
  10969.                  >(BBD
  10970.                  $)</span
  10971.                >
  10972.              </a>
  10973.            </li><li class="disclosure-list__item">
  10974.              <a
  10975.                class="disclosure-list__option"
  10976.                href="#"
  10977.                
  10978.                data-value="BY"
  10979.                data-disclosure-option
  10980.              >
  10981.                <span class="f-country-flags f-country-flags--BY"></span>Belarus<span class="localization-form__currency"
  10982.                  >(AUD
  10983.                  $)</span
  10984.                >
  10985.              </a>
  10986.            </li><li class="disclosure-list__item">
  10987.              <a
  10988.                class="disclosure-list__option"
  10989.                href="#"
  10990.                
  10991.                data-value="BE"
  10992.                data-disclosure-option
  10993.              >
  10994.                <span class="f-country-flags f-country-flags--BE"></span>Belgium<span class="localization-form__currency"
  10995.                  >(EUR
  10996.                  €)</span
  10997.                >
  10998.              </a>
  10999.            </li><li class="disclosure-list__item">
  11000.              <a
  11001.                class="disclosure-list__option"
  11002.                href="#"
  11003.                
  11004.                data-value="BZ"
  11005.                data-disclosure-option
  11006.              >
  11007.                <span class="f-country-flags f-country-flags--BZ"></span>Belize<span class="localization-form__currency"
  11008.                  >(BZD
  11009.                  $)</span
  11010.                >
  11011.              </a>
  11012.            </li><li class="disclosure-list__item">
  11013.              <a
  11014.                class="disclosure-list__option"
  11015.                href="#"
  11016.                
  11017.                data-value="BJ"
  11018.                data-disclosure-option
  11019.              >
  11020.                <span class="f-country-flags f-country-flags--BJ"></span>Benin<span class="localization-form__currency"
  11021.                  >(XOF
  11022.                  Fr)</span
  11023.                >
  11024.              </a>
  11025.            </li><li class="disclosure-list__item">
  11026.              <a
  11027.                class="disclosure-list__option"
  11028.                href="#"
  11029.                
  11030.                data-value="BM"
  11031.                data-disclosure-option
  11032.              >
  11033.                <span class="f-country-flags f-country-flags--BM"></span>Bermuda<span class="localization-form__currency"
  11034.                  >(USD
  11035.                  $)</span
  11036.                >
  11037.              </a>
  11038.            </li><li class="disclosure-list__item">
  11039.              <a
  11040.                class="disclosure-list__option"
  11041.                href="#"
  11042.                
  11043.                data-value="BT"
  11044.                data-disclosure-option
  11045.              >
  11046.                <span class="f-country-flags f-country-flags--BT"></span>Bhutan<span class="localization-form__currency"
  11047.                  >(AUD
  11048.                  $)</span
  11049.                >
  11050.              </a>
  11051.            </li><li class="disclosure-list__item">
  11052.              <a
  11053.                class="disclosure-list__option"
  11054.                href="#"
  11055.                
  11056.                data-value="BO"
  11057.                data-disclosure-option
  11058.              >
  11059.                <span class="f-country-flags f-country-flags--BO"></span>Bolivia<span class="localization-form__currency"
  11060.                  >(BOB
  11061.                  Bs.)</span
  11062.                >
  11063.              </a>
  11064.            </li><li class="disclosure-list__item">
  11065.              <a
  11066.                class="disclosure-list__option"
  11067.                href="#"
  11068.                
  11069.                data-value="BA"
  11070.                data-disclosure-option
  11071.              >
  11072.                <span class="f-country-flags f-country-flags--BA"></span>Bosnia &amp; Herzegovina<span class="localization-form__currency"
  11073.                  >(BAM
  11074.                  КМ)</span
  11075.                >
  11076.              </a>
  11077.            </li><li class="disclosure-list__item">
  11078.              <a
  11079.                class="disclosure-list__option"
  11080.                href="#"
  11081.                
  11082.                data-value="BW"
  11083.                data-disclosure-option
  11084.              >
  11085.                <span class="f-country-flags f-country-flags--BW"></span>Botswana<span class="localization-form__currency"
  11086.                  >(BWP
  11087.                  P)</span
  11088.                >
  11089.              </a>
  11090.            </li><li class="disclosure-list__item">
  11091.              <a
  11092.                class="disclosure-list__option"
  11093.                href="#"
  11094.                
  11095.                data-value="BR"
  11096.                data-disclosure-option
  11097.              >
  11098.                <span class="f-country-flags f-country-flags--BR"></span>Brazil<span class="localization-form__currency"
  11099.                  >(AUD
  11100.                  $)</span
  11101.                >
  11102.              </a>
  11103.            </li><li class="disclosure-list__item">
  11104.              <a
  11105.                class="disclosure-list__option"
  11106.                href="#"
  11107.                
  11108.                data-value="IO"
  11109.                data-disclosure-option
  11110.              >
  11111.                <span class="f-country-flags f-country-flags--IO"></span>British Indian Ocean Territory<span class="localization-form__currency"
  11112.                  >(USD
  11113.                  $)</span
  11114.                >
  11115.              </a>
  11116.            </li><li class="disclosure-list__item">
  11117.              <a
  11118.                class="disclosure-list__option"
  11119.                href="#"
  11120.                
  11121.                data-value="VG"
  11122.                data-disclosure-option
  11123.              >
  11124.                <span class="f-country-flags f-country-flags--VG"></span>British Virgin Islands<span class="localization-form__currency"
  11125.                  >(USD
  11126.                  $)</span
  11127.                >
  11128.              </a>
  11129.            </li><li class="disclosure-list__item">
  11130.              <a
  11131.                class="disclosure-list__option"
  11132.                href="#"
  11133.                
  11134.                data-value="BN"
  11135.                data-disclosure-option
  11136.              >
  11137.                <span class="f-country-flags f-country-flags--BN"></span>Brunei<span class="localization-form__currency"
  11138.                  >(BND
  11139.                  $)</span
  11140.                >
  11141.              </a>
  11142.            </li><li class="disclosure-list__item">
  11143.              <a
  11144.                class="disclosure-list__option"
  11145.                href="#"
  11146.                
  11147.                data-value="BG"
  11148.                data-disclosure-option
  11149.              >
  11150.                <span class="f-country-flags f-country-flags--BG"></span>Bulgaria<span class="localization-form__currency"
  11151.                  >(BGN
  11152.                  лв.)</span
  11153.                >
  11154.              </a>
  11155.            </li><li class="disclosure-list__item">
  11156.              <a
  11157.                class="disclosure-list__option"
  11158.                href="#"
  11159.                
  11160.                data-value="BF"
  11161.                data-disclosure-option
  11162.              >
  11163.                <span class="f-country-flags f-country-flags--BF"></span>Burkina Faso<span class="localization-form__currency"
  11164.                  >(XOF
  11165.                  Fr)</span
  11166.                >
  11167.              </a>
  11168.            </li><li class="disclosure-list__item">
  11169.              <a
  11170.                class="disclosure-list__option"
  11171.                href="#"
  11172.                
  11173.                data-value="BI"
  11174.                data-disclosure-option
  11175.              >
  11176.                <span class="f-country-flags f-country-flags--BI"></span>Burundi<span class="localization-form__currency"
  11177.                  >(BIF
  11178.                  Fr)</span
  11179.                >
  11180.              </a>
  11181.            </li><li class="disclosure-list__item">
  11182.              <a
  11183.                class="disclosure-list__option"
  11184.                href="#"
  11185.                
  11186.                data-value="KH"
  11187.                data-disclosure-option
  11188.              >
  11189.                <span class="f-country-flags f-country-flags--KH"></span>Cambodia<span class="localization-form__currency"
  11190.                  >(KHR
  11191.                  ៛)</span
  11192.                >
  11193.              </a>
  11194.            </li><li class="disclosure-list__item">
  11195.              <a
  11196.                class="disclosure-list__option"
  11197.                href="#"
  11198.                
  11199.                data-value="CM"
  11200.                data-disclosure-option
  11201.              >
  11202.                <span class="f-country-flags f-country-flags--CM"></span>Cameroon<span class="localization-form__currency"
  11203.                  >(XAF
  11204.                  CFA)</span
  11205.                >
  11206.              </a>
  11207.            </li><li class="disclosure-list__item">
  11208.              <a
  11209.                class="disclosure-list__option"
  11210.                href="#"
  11211.                
  11212.                data-value="CA"
  11213.                data-disclosure-option
  11214.              >
  11215.                <span class="f-country-flags f-country-flags--CA"></span>Canada<span class="localization-form__currency"
  11216.                  >(CAD
  11217.                  $)</span
  11218.                >
  11219.              </a>
  11220.            </li><li class="disclosure-list__item">
  11221.              <a
  11222.                class="disclosure-list__option"
  11223.                href="#"
  11224.                
  11225.                data-value="CV"
  11226.                data-disclosure-option
  11227.              >
  11228.                <span class="f-country-flags f-country-flags--CV"></span>Cape Verde<span class="localization-form__currency"
  11229.                  >(CVE
  11230.                  $)</span
  11231.                >
  11232.              </a>
  11233.            </li><li class="disclosure-list__item">
  11234.              <a
  11235.                class="disclosure-list__option"
  11236.                href="#"
  11237.                
  11238.                data-value="BQ"
  11239.                data-disclosure-option
  11240.              >
  11241.                <span class="f-country-flags f-country-flags--BQ"></span>Caribbean Netherlands<span class="localization-form__currency"
  11242.                  >(USD
  11243.                  $)</span
  11244.                >
  11245.              </a>
  11246.            </li><li class="disclosure-list__item">
  11247.              <a
  11248.                class="disclosure-list__option"
  11249.                href="#"
  11250.                
  11251.                data-value="KY"
  11252.                data-disclosure-option
  11253.              >
  11254.                <span class="f-country-flags f-country-flags--KY"></span>Cayman Islands<span class="localization-form__currency"
  11255.                  >(KYD
  11256.                  $)</span
  11257.                >
  11258.              </a>
  11259.            </li><li class="disclosure-list__item">
  11260.              <a
  11261.                class="disclosure-list__option"
  11262.                href="#"
  11263.                
  11264.                data-value="CF"
  11265.                data-disclosure-option
  11266.              >
  11267.                <span class="f-country-flags f-country-flags--CF"></span>Central African Republic<span class="localization-form__currency"
  11268.                  >(XAF
  11269.                  CFA)</span
  11270.                >
  11271.              </a>
  11272.            </li><li class="disclosure-list__item">
  11273.              <a
  11274.                class="disclosure-list__option"
  11275.                href="#"
  11276.                
  11277.                data-value="TD"
  11278.                data-disclosure-option
  11279.              >
  11280.                <span class="f-country-flags f-country-flags--TD"></span>Chad<span class="localization-form__currency"
  11281.                  >(XAF
  11282.                  CFA)</span
  11283.                >
  11284.              </a>
  11285.            </li><li class="disclosure-list__item">
  11286.              <a
  11287.                class="disclosure-list__option"
  11288.                href="#"
  11289.                
  11290.                data-value="CL"
  11291.                data-disclosure-option
  11292.              >
  11293.                <span class="f-country-flags f-country-flags--CL"></span>Chile<span class="localization-form__currency"
  11294.                  >(AUD
  11295.                  $)</span
  11296.                >
  11297.              </a>
  11298.            </li><li class="disclosure-list__item">
  11299.              <a
  11300.                class="disclosure-list__option"
  11301.                href="#"
  11302.                
  11303.                data-value="CN"
  11304.                data-disclosure-option
  11305.              >
  11306.                <span class="f-country-flags f-country-flags--CN"></span>China<span class="localization-form__currency"
  11307.                  >(CNY
  11308.                  ¥)</span
  11309.                >
  11310.              </a>
  11311.            </li><li class="disclosure-list__item">
  11312.              <a
  11313.                class="disclosure-list__option"
  11314.                href="#"
  11315.                
  11316.                data-value="CX"
  11317.                data-disclosure-option
  11318.              >
  11319.                <span class="f-country-flags f-country-flags--CX"></span>Christmas Island<span class="localization-form__currency"
  11320.                  >(AUD
  11321.                  $)</span
  11322.                >
  11323.              </a>
  11324.            </li><li class="disclosure-list__item">
  11325.              <a
  11326.                class="disclosure-list__option"
  11327.                href="#"
  11328.                
  11329.                data-value="CC"
  11330.                data-disclosure-option
  11331.              >
  11332.                <span class="f-country-flags f-country-flags--CC"></span>Cocos (Keeling) Islands<span class="localization-form__currency"
  11333.                  >(AUD
  11334.                  $)</span
  11335.                >
  11336.              </a>
  11337.            </li><li class="disclosure-list__item">
  11338.              <a
  11339.                class="disclosure-list__option"
  11340.                href="#"
  11341.                
  11342.                data-value="CO"
  11343.                data-disclosure-option
  11344.              >
  11345.                <span class="f-country-flags f-country-flags--CO"></span>Colombia<span class="localization-form__currency"
  11346.                  >(AUD
  11347.                  $)</span
  11348.                >
  11349.              </a>
  11350.            </li><li class="disclosure-list__item">
  11351.              <a
  11352.                class="disclosure-list__option"
  11353.                href="#"
  11354.                
  11355.                data-value="KM"
  11356.                data-disclosure-option
  11357.              >
  11358.                <span class="f-country-flags f-country-flags--KM"></span>Comoros<span class="localization-form__currency"
  11359.                  >(KMF
  11360.                  Fr)</span
  11361.                >
  11362.              </a>
  11363.            </li><li class="disclosure-list__item">
  11364.              <a
  11365.                class="disclosure-list__option"
  11366.                href="#"
  11367.                
  11368.                data-value="CG"
  11369.                data-disclosure-option
  11370.              >
  11371.                <span class="f-country-flags f-country-flags--CG"></span>Congo - Brazzaville<span class="localization-form__currency"
  11372.                  >(XAF
  11373.                  CFA)</span
  11374.                >
  11375.              </a>
  11376.            </li><li class="disclosure-list__item">
  11377.              <a
  11378.                class="disclosure-list__option"
  11379.                href="#"
  11380.                
  11381.                data-value="CD"
  11382.                data-disclosure-option
  11383.              >
  11384.                <span class="f-country-flags f-country-flags--CD"></span>Congo - Kinshasa<span class="localization-form__currency"
  11385.                  >(CDF
  11386.                  Fr)</span
  11387.                >
  11388.              </a>
  11389.            </li><li class="disclosure-list__item">
  11390.              <a
  11391.                class="disclosure-list__option"
  11392.                href="#"
  11393.                
  11394.                data-value="CK"
  11395.                data-disclosure-option
  11396.              >
  11397.                <span class="f-country-flags f-country-flags--CK"></span>Cook Islands<span class="localization-form__currency"
  11398.                  >(NZD
  11399.                  $)</span
  11400.                >
  11401.              </a>
  11402.            </li><li class="disclosure-list__item">
  11403.              <a
  11404.                class="disclosure-list__option"
  11405.                href="#"
  11406.                
  11407.                data-value="CR"
  11408.                data-disclosure-option
  11409.              >
  11410.                <span class="f-country-flags f-country-flags--CR"></span>Costa Rica<span class="localization-form__currency"
  11411.                  >(CRC
  11412.                  ₡)</span
  11413.                >
  11414.              </a>
  11415.            </li><li class="disclosure-list__item">
  11416.              <a
  11417.                class="disclosure-list__option"
  11418.                href="#"
  11419.                
  11420.                data-value="CI"
  11421.                data-disclosure-option
  11422.              >
  11423.                <span class="f-country-flags f-country-flags--CI"></span>Côte d’Ivoire<span class="localization-form__currency"
  11424.                  >(XOF
  11425.                  Fr)</span
  11426.                >
  11427.              </a>
  11428.            </li><li class="disclosure-list__item">
  11429.              <a
  11430.                class="disclosure-list__option"
  11431.                href="#"
  11432.                
  11433.                data-value="HR"
  11434.                data-disclosure-option
  11435.              >
  11436.                <span class="f-country-flags f-country-flags--HR"></span>Croatia<span class="localization-form__currency"
  11437.                  >(EUR
  11438.                  €)</span
  11439.                >
  11440.              </a>
  11441.            </li><li class="disclosure-list__item">
  11442.              <a
  11443.                class="disclosure-list__option"
  11444.                href="#"
  11445.                
  11446.                data-value="CW"
  11447.                data-disclosure-option
  11448.              >
  11449.                <span class="f-country-flags f-country-flags--CW"></span>Curaçao<span class="localization-form__currency"
  11450.                  >(ANG
  11451.                  ƒ)</span
  11452.                >
  11453.              </a>
  11454.            </li><li class="disclosure-list__item">
  11455.              <a
  11456.                class="disclosure-list__option"
  11457.                href="#"
  11458.                
  11459.                data-value="CY"
  11460.                data-disclosure-option
  11461.              >
  11462.                <span class="f-country-flags f-country-flags--CY"></span>Cyprus<span class="localization-form__currency"
  11463.                  >(EUR
  11464.                  €)</span
  11465.                >
  11466.              </a>
  11467.            </li><li class="disclosure-list__item">
  11468.              <a
  11469.                class="disclosure-list__option"
  11470.                href="#"
  11471.                
  11472.                data-value="CZ"
  11473.                data-disclosure-option
  11474.              >
  11475.                <span class="f-country-flags f-country-flags--CZ"></span>Czechia<span class="localization-form__currency"
  11476.                  >(CZK
  11477.                  Kč)</span
  11478.                >
  11479.              </a>
  11480.            </li><li class="disclosure-list__item">
  11481.              <a
  11482.                class="disclosure-list__option"
  11483.                href="#"
  11484.                
  11485.                data-value="DK"
  11486.                data-disclosure-option
  11487.              >
  11488.                <span class="f-country-flags f-country-flags--DK"></span>Denmark<span class="localization-form__currency"
  11489.                  >(DKK
  11490.                  kr.)</span
  11491.                >
  11492.              </a>
  11493.            </li><li class="disclosure-list__item">
  11494.              <a
  11495.                class="disclosure-list__option"
  11496.                href="#"
  11497.                
  11498.                data-value="DJ"
  11499.                data-disclosure-option
  11500.              >
  11501.                <span class="f-country-flags f-country-flags--DJ"></span>Djibouti<span class="localization-form__currency"
  11502.                  >(DJF
  11503.                  Fdj)</span
  11504.                >
  11505.              </a>
  11506.            </li><li class="disclosure-list__item">
  11507.              <a
  11508.                class="disclosure-list__option"
  11509.                href="#"
  11510.                
  11511.                data-value="DM"
  11512.                data-disclosure-option
  11513.              >
  11514.                <span class="f-country-flags f-country-flags--DM"></span>Dominica<span class="localization-form__currency"
  11515.                  >(XCD
  11516.                  $)</span
  11517.                >
  11518.              </a>
  11519.            </li><li class="disclosure-list__item">
  11520.              <a
  11521.                class="disclosure-list__option"
  11522.                href="#"
  11523.                
  11524.                data-value="DO"
  11525.                data-disclosure-option
  11526.              >
  11527.                <span class="f-country-flags f-country-flags--DO"></span>Dominican Republic<span class="localization-form__currency"
  11528.                  >(DOP
  11529.                  $)</span
  11530.                >
  11531.              </a>
  11532.            </li><li class="disclosure-list__item">
  11533.              <a
  11534.                class="disclosure-list__option"
  11535.                href="#"
  11536.                
  11537.                data-value="EC"
  11538.                data-disclosure-option
  11539.              >
  11540.                <span class="f-country-flags f-country-flags--EC"></span>Ecuador<span class="localization-form__currency"
  11541.                  >(USD
  11542.                  $)</span
  11543.                >
  11544.              </a>
  11545.            </li><li class="disclosure-list__item">
  11546.              <a
  11547.                class="disclosure-list__option"
  11548.                href="#"
  11549.                
  11550.                data-value="EG"
  11551.                data-disclosure-option
  11552.              >
  11553.                <span class="f-country-flags f-country-flags--EG"></span>Egypt<span class="localization-form__currency"
  11554.                  >(EGP
  11555.                  ج.م)</span
  11556.                >
  11557.              </a>
  11558.            </li><li class="disclosure-list__item">
  11559.              <a
  11560.                class="disclosure-list__option"
  11561.                href="#"
  11562.                
  11563.                data-value="SV"
  11564.                data-disclosure-option
  11565.              >
  11566.                <span class="f-country-flags f-country-flags--SV"></span>El Salvador<span class="localization-form__currency"
  11567.                  >(USD
  11568.                  $)</span
  11569.                >
  11570.              </a>
  11571.            </li><li class="disclosure-list__item">
  11572.              <a
  11573.                class="disclosure-list__option"
  11574.                href="#"
  11575.                
  11576.                data-value="GQ"
  11577.                data-disclosure-option
  11578.              >
  11579.                <span class="f-country-flags f-country-flags--GQ"></span>Equatorial Guinea<span class="localization-form__currency"
  11580.                  >(XAF
  11581.                  CFA)</span
  11582.                >
  11583.              </a>
  11584.            </li><li class="disclosure-list__item">
  11585.              <a
  11586.                class="disclosure-list__option"
  11587.                href="#"
  11588.                
  11589.                data-value="ER"
  11590.                data-disclosure-option
  11591.              >
  11592.                <span class="f-country-flags f-country-flags--ER"></span>Eritrea<span class="localization-form__currency"
  11593.                  >(AUD
  11594.                  $)</span
  11595.                >
  11596.              </a>
  11597.            </li><li class="disclosure-list__item">
  11598.              <a
  11599.                class="disclosure-list__option"
  11600.                href="#"
  11601.                
  11602.                data-value="EE"
  11603.                data-disclosure-option
  11604.              >
  11605.                <span class="f-country-flags f-country-flags--EE"></span>Estonia<span class="localization-form__currency"
  11606.                  >(EUR
  11607.                  €)</span
  11608.                >
  11609.              </a>
  11610.            </li><li class="disclosure-list__item">
  11611.              <a
  11612.                class="disclosure-list__option"
  11613.                href="#"
  11614.                
  11615.                data-value="SZ"
  11616.                data-disclosure-option
  11617.              >
  11618.                <span class="f-country-flags f-country-flags--SZ"></span>Eswatini<span class="localization-form__currency"
  11619.                  >(AUD
  11620.                  $)</span
  11621.                >
  11622.              </a>
  11623.            </li><li class="disclosure-list__item">
  11624.              <a
  11625.                class="disclosure-list__option"
  11626.                href="#"
  11627.                
  11628.                data-value="ET"
  11629.                data-disclosure-option
  11630.              >
  11631.                <span class="f-country-flags f-country-flags--ET"></span>Ethiopia<span class="localization-form__currency"
  11632.                  >(ETB
  11633.                  Br)</span
  11634.                >
  11635.              </a>
  11636.            </li><li class="disclosure-list__item">
  11637.              <a
  11638.                class="disclosure-list__option"
  11639.                href="#"
  11640.                
  11641.                data-value="FK"
  11642.                data-disclosure-option
  11643.              >
  11644.                <span class="f-country-flags f-country-flags--FK"></span>Falkland Islands<span class="localization-form__currency"
  11645.                  >(FKP
  11646.                  £)</span
  11647.                >
  11648.              </a>
  11649.            </li><li class="disclosure-list__item">
  11650.              <a
  11651.                class="disclosure-list__option"
  11652.                href="#"
  11653.                
  11654.                data-value="FO"
  11655.                data-disclosure-option
  11656.              >
  11657.                <span class="f-country-flags f-country-flags--FO"></span>Faroe Islands<span class="localization-form__currency"
  11658.                  >(DKK
  11659.                  kr.)</span
  11660.                >
  11661.              </a>
  11662.            </li><li class="disclosure-list__item">
  11663.              <a
  11664.                class="disclosure-list__option"
  11665.                href="#"
  11666.                
  11667.                data-value="FJ"
  11668.                data-disclosure-option
  11669.              >
  11670.                <span class="f-country-flags f-country-flags--FJ"></span>Fiji<span class="localization-form__currency"
  11671.                  >(FJD
  11672.                  $)</span
  11673.                >
  11674.              </a>
  11675.            </li><li class="disclosure-list__item">
  11676.              <a
  11677.                class="disclosure-list__option"
  11678.                href="#"
  11679.                
  11680.                data-value="FI"
  11681.                data-disclosure-option
  11682.              >
  11683.                <span class="f-country-flags f-country-flags--FI"></span>Finland<span class="localization-form__currency"
  11684.                  >(EUR
  11685.                  €)</span
  11686.                >
  11687.              </a>
  11688.            </li><li class="disclosure-list__item">
  11689.              <a
  11690.                class="disclosure-list__option"
  11691.                href="#"
  11692.                
  11693.                data-value="FR"
  11694.                data-disclosure-option
  11695.              >
  11696.                <span class="f-country-flags f-country-flags--FR"></span>France<span class="localization-form__currency"
  11697.                  >(EUR
  11698.                  €)</span
  11699.                >
  11700.              </a>
  11701.            </li><li class="disclosure-list__item">
  11702.              <a
  11703.                class="disclosure-list__option"
  11704.                href="#"
  11705.                
  11706.                data-value="GF"
  11707.                data-disclosure-option
  11708.              >
  11709.                <span class="f-country-flags f-country-flags--GF"></span>French Guiana<span class="localization-form__currency"
  11710.                  >(EUR
  11711.                  €)</span
  11712.                >
  11713.              </a>
  11714.            </li><li class="disclosure-list__item">
  11715.              <a
  11716.                class="disclosure-list__option"
  11717.                href="#"
  11718.                
  11719.                data-value="PF"
  11720.                data-disclosure-option
  11721.              >
  11722.                <span class="f-country-flags f-country-flags--PF"></span>French Polynesia<span class="localization-form__currency"
  11723.                  >(XPF
  11724.                  Fr)</span
  11725.                >
  11726.              </a>
  11727.            </li><li class="disclosure-list__item">
  11728.              <a
  11729.                class="disclosure-list__option"
  11730.                href="#"
  11731.                
  11732.                data-value="TF"
  11733.                data-disclosure-option
  11734.              >
  11735.                <span class="f-country-flags f-country-flags--TF"></span>French Southern Territories<span class="localization-form__currency"
  11736.                  >(EUR
  11737.                  €)</span
  11738.                >
  11739.              </a>
  11740.            </li><li class="disclosure-list__item">
  11741.              <a
  11742.                class="disclosure-list__option"
  11743.                href="#"
  11744.                
  11745.                data-value="GA"
  11746.                data-disclosure-option
  11747.              >
  11748.                <span class="f-country-flags f-country-flags--GA"></span>Gabon<span class="localization-form__currency"
  11749.                  >(XOF
  11750.                  Fr)</span
  11751.                >
  11752.              </a>
  11753.            </li><li class="disclosure-list__item">
  11754.              <a
  11755.                class="disclosure-list__option"
  11756.                href="#"
  11757.                
  11758.                data-value="GM"
  11759.                data-disclosure-option
  11760.              >
  11761.                <span class="f-country-flags f-country-flags--GM"></span>Gambia<span class="localization-form__currency"
  11762.                  >(GMD
  11763.                  D)</span
  11764.                >
  11765.              </a>
  11766.            </li><li class="disclosure-list__item">
  11767.              <a
  11768.                class="disclosure-list__option"
  11769.                href="#"
  11770.                
  11771.                data-value="GE"
  11772.                data-disclosure-option
  11773.              >
  11774.                <span class="f-country-flags f-country-flags--GE"></span>Georgia<span class="localization-form__currency"
  11775.                  >(AUD
  11776.                  $)</span
  11777.                >
  11778.              </a>
  11779.            </li><li class="disclosure-list__item">
  11780.              <a
  11781.                class="disclosure-list__option"
  11782.                href="#"
  11783.                
  11784.                data-value="DE"
  11785.                data-disclosure-option
  11786.              >
  11787.                <span class="f-country-flags f-country-flags--DE"></span>Germany<span class="localization-form__currency"
  11788.                  >(EUR
  11789.                  €)</span
  11790.                >
  11791.              </a>
  11792.            </li><li class="disclosure-list__item">
  11793.              <a
  11794.                class="disclosure-list__option"
  11795.                href="#"
  11796.                
  11797.                data-value="GH"
  11798.                data-disclosure-option
  11799.              >
  11800.                <span class="f-country-flags f-country-flags--GH"></span>Ghana<span class="localization-form__currency"
  11801.                  >(AUD
  11802.                  $)</span
  11803.                >
  11804.              </a>
  11805.            </li><li class="disclosure-list__item">
  11806.              <a
  11807.                class="disclosure-list__option"
  11808.                href="#"
  11809.                
  11810.                data-value="GI"
  11811.                data-disclosure-option
  11812.              >
  11813.                <span class="f-country-flags f-country-flags--GI"></span>Gibraltar<span class="localization-form__currency"
  11814.                  >(GBP
  11815.                  £)</span
  11816.                >
  11817.              </a>
  11818.            </li><li class="disclosure-list__item">
  11819.              <a
  11820.                class="disclosure-list__option"
  11821.                href="#"
  11822.                
  11823.                data-value="GR"
  11824.                data-disclosure-option
  11825.              >
  11826.                <span class="f-country-flags f-country-flags--GR"></span>Greece<span class="localization-form__currency"
  11827.                  >(EUR
  11828.                  €)</span
  11829.                >
  11830.              </a>
  11831.            </li><li class="disclosure-list__item">
  11832.              <a
  11833.                class="disclosure-list__option"
  11834.                href="#"
  11835.                
  11836.                data-value="GL"
  11837.                data-disclosure-option
  11838.              >
  11839.                <span class="f-country-flags f-country-flags--GL"></span>Greenland<span class="localization-form__currency"
  11840.                  >(DKK
  11841.                  kr.)</span
  11842.                >
  11843.              </a>
  11844.            </li><li class="disclosure-list__item">
  11845.              <a
  11846.                class="disclosure-list__option"
  11847.                href="#"
  11848.                
  11849.                data-value="GD"
  11850.                data-disclosure-option
  11851.              >
  11852.                <span class="f-country-flags f-country-flags--GD"></span>Grenada<span class="localization-form__currency"
  11853.                  >(XCD
  11854.                  $)</span
  11855.                >
  11856.              </a>
  11857.            </li><li class="disclosure-list__item">
  11858.              <a
  11859.                class="disclosure-list__option"
  11860.                href="#"
  11861.                
  11862.                data-value="GP"
  11863.                data-disclosure-option
  11864.              >
  11865.                <span class="f-country-flags f-country-flags--GP"></span>Guadeloupe<span class="localization-form__currency"
  11866.                  >(EUR
  11867.                  €)</span
  11868.                >
  11869.              </a>
  11870.            </li><li class="disclosure-list__item">
  11871.              <a
  11872.                class="disclosure-list__option"
  11873.                href="#"
  11874.                
  11875.                data-value="GT"
  11876.                data-disclosure-option
  11877.              >
  11878.                <span class="f-country-flags f-country-flags--GT"></span>Guatemala<span class="localization-form__currency"
  11879.                  >(GTQ
  11880.                  Q)</span
  11881.                >
  11882.              </a>
  11883.            </li><li class="disclosure-list__item">
  11884.              <a
  11885.                class="disclosure-list__option"
  11886.                href="#"
  11887.                
  11888.                data-value="GG"
  11889.                data-disclosure-option
  11890.              >
  11891.                <span class="f-country-flags f-country-flags--GG"></span>Guernsey<span class="localization-form__currency"
  11892.                  >(GBP
  11893.                  £)</span
  11894.                >
  11895.              </a>
  11896.            </li><li class="disclosure-list__item">
  11897.              <a
  11898.                class="disclosure-list__option"
  11899.                href="#"
  11900.                
  11901.                data-value="GN"
  11902.                data-disclosure-option
  11903.              >
  11904.                <span class="f-country-flags f-country-flags--GN"></span>Guinea<span class="localization-form__currency"
  11905.                  >(GNF
  11906.                  Fr)</span
  11907.                >
  11908.              </a>
  11909.            </li><li class="disclosure-list__item">
  11910.              <a
  11911.                class="disclosure-list__option"
  11912.                href="#"
  11913.                
  11914.                data-value="GW"
  11915.                data-disclosure-option
  11916.              >
  11917.                <span class="f-country-flags f-country-flags--GW"></span>Guinea-Bissau<span class="localization-form__currency"
  11918.                  >(XOF
  11919.                  Fr)</span
  11920.                >
  11921.              </a>
  11922.            </li><li class="disclosure-list__item">
  11923.              <a
  11924.                class="disclosure-list__option"
  11925.                href="#"
  11926.                
  11927.                data-value="GY"
  11928.                data-disclosure-option
  11929.              >
  11930.                <span class="f-country-flags f-country-flags--GY"></span>Guyana<span class="localization-form__currency"
  11931.                  >(GYD
  11932.                  $)</span
  11933.                >
  11934.              </a>
  11935.            </li><li class="disclosure-list__item">
  11936.              <a
  11937.                class="disclosure-list__option"
  11938.                href="#"
  11939.                
  11940.                data-value="HT"
  11941.                data-disclosure-option
  11942.              >
  11943.                <span class="f-country-flags f-country-flags--HT"></span>Haiti<span class="localization-form__currency"
  11944.                  >(AUD
  11945.                  $)</span
  11946.                >
  11947.              </a>
  11948.            </li><li class="disclosure-list__item">
  11949.              <a
  11950.                class="disclosure-list__option"
  11951.                href="#"
  11952.                
  11953.                data-value="HN"
  11954.                data-disclosure-option
  11955.              >
  11956.                <span class="f-country-flags f-country-flags--HN"></span>Honduras<span class="localization-form__currency"
  11957.                  >(HNL
  11958.                  L)</span
  11959.                >
  11960.              </a>
  11961.            </li><li class="disclosure-list__item">
  11962.              <a
  11963.                class="disclosure-list__option"
  11964.                href="#"
  11965.                
  11966.                data-value="HK"
  11967.                data-disclosure-option
  11968.              >
  11969.                <span class="f-country-flags f-country-flags--HK"></span>Hong Kong SAR<span class="localization-form__currency"
  11970.                  >(HKD
  11971.                  $)</span
  11972.                >
  11973.              </a>
  11974.            </li><li class="disclosure-list__item">
  11975.              <a
  11976.                class="disclosure-list__option"
  11977.                href="#"
  11978.                
  11979.                data-value="HU"
  11980.                data-disclosure-option
  11981.              >
  11982.                <span class="f-country-flags f-country-flags--HU"></span>Hungary<span class="localization-form__currency"
  11983.                  >(HUF
  11984.                  Ft)</span
  11985.                >
  11986.              </a>
  11987.            </li><li class="disclosure-list__item">
  11988.              <a
  11989.                class="disclosure-list__option"
  11990.                href="#"
  11991.                
  11992.                data-value="IS"
  11993.                data-disclosure-option
  11994.              >
  11995.                <span class="f-country-flags f-country-flags--IS"></span>Iceland<span class="localization-form__currency"
  11996.                  >(ISK
  11997.                  kr)</span
  11998.                >
  11999.              </a>
  12000.            </li><li class="disclosure-list__item">
  12001.              <a
  12002.                class="disclosure-list__option"
  12003.                href="#"
  12004.                
  12005.                data-value="IN"
  12006.                data-disclosure-option
  12007.              >
  12008.                <span class="f-country-flags f-country-flags--IN"></span>India<span class="localization-form__currency"
  12009.                  >(INR
  12010.                  ₹)</span
  12011.                >
  12012.              </a>
  12013.            </li><li class="disclosure-list__item">
  12014.              <a
  12015.                class="disclosure-list__option"
  12016.                href="#"
  12017.                
  12018.                data-value="ID"
  12019.                data-disclosure-option
  12020.              >
  12021.                <span class="f-country-flags f-country-flags--ID"></span>Indonesia<span class="localization-form__currency"
  12022.                  >(IDR
  12023.                  Rp)</span
  12024.                >
  12025.              </a>
  12026.            </li><li class="disclosure-list__item">
  12027.              <a
  12028.                class="disclosure-list__option"
  12029.                href="#"
  12030.                
  12031.                data-value="IQ"
  12032.                data-disclosure-option
  12033.              >
  12034.                <span class="f-country-flags f-country-flags--IQ"></span>Iraq<span class="localization-form__currency"
  12035.                  >(AUD
  12036.                  $)</span
  12037.                >
  12038.              </a>
  12039.            </li><li class="disclosure-list__item">
  12040.              <a
  12041.                class="disclosure-list__option"
  12042.                href="#"
  12043.                
  12044.                data-value="IE"
  12045.                data-disclosure-option
  12046.              >
  12047.                <span class="f-country-flags f-country-flags--IE"></span>Ireland<span class="localization-form__currency"
  12048.                  >(EUR
  12049.                  €)</span
  12050.                >
  12051.              </a>
  12052.            </li><li class="disclosure-list__item">
  12053.              <a
  12054.                class="disclosure-list__option"
  12055.                href="#"
  12056.                
  12057.                data-value="IM"
  12058.                data-disclosure-option
  12059.              >
  12060.                <span class="f-country-flags f-country-flags--IM"></span>Isle of Man<span class="localization-form__currency"
  12061.                  >(GBP
  12062.                  £)</span
  12063.                >
  12064.              </a>
  12065.            </li><li class="disclosure-list__item">
  12066.              <a
  12067.                class="disclosure-list__option"
  12068.                href="#"
  12069.                
  12070.                data-value="IL"
  12071.                data-disclosure-option
  12072.              >
  12073.                <span class="f-country-flags f-country-flags--IL"></span>Israel<span class="localization-form__currency"
  12074.                  >(ILS
  12075.                  ₪)</span
  12076.                >
  12077.              </a>
  12078.            </li><li class="disclosure-list__item">
  12079.              <a
  12080.                class="disclosure-list__option"
  12081.                href="#"
  12082.                
  12083.                data-value="IT"
  12084.                data-disclosure-option
  12085.              >
  12086.                <span class="f-country-flags f-country-flags--IT"></span>Italy<span class="localization-form__currency"
  12087.                  >(EUR
  12088.                  €)</span
  12089.                >
  12090.              </a>
  12091.            </li><li class="disclosure-list__item">
  12092.              <a
  12093.                class="disclosure-list__option"
  12094.                href="#"
  12095.                
  12096.                data-value="JM"
  12097.                data-disclosure-option
  12098.              >
  12099.                <span class="f-country-flags f-country-flags--JM"></span>Jamaica<span class="localization-form__currency"
  12100.                  >(JMD
  12101.                  $)</span
  12102.                >
  12103.              </a>
  12104.            </li><li class="disclosure-list__item">
  12105.              <a
  12106.                class="disclosure-list__option"
  12107.                href="#"
  12108.                
  12109.                data-value="JP"
  12110.                data-disclosure-option
  12111.              >
  12112.                <span class="f-country-flags f-country-flags--JP"></span>Japan<span class="localization-form__currency"
  12113.                  >(JPY
  12114.                  ¥)</span
  12115.                >
  12116.              </a>
  12117.            </li><li class="disclosure-list__item">
  12118.              <a
  12119.                class="disclosure-list__option"
  12120.                href="#"
  12121.                
  12122.                data-value="JE"
  12123.                data-disclosure-option
  12124.              >
  12125.                <span class="f-country-flags f-country-flags--JE"></span>Jersey<span class="localization-form__currency"
  12126.                  >(AUD
  12127.                  $)</span
  12128.                >
  12129.              </a>
  12130.            </li><li class="disclosure-list__item">
  12131.              <a
  12132.                class="disclosure-list__option"
  12133.                href="#"
  12134.                
  12135.                data-value="JO"
  12136.                data-disclosure-option
  12137.              >
  12138.                <span class="f-country-flags f-country-flags--JO"></span>Jordan<span class="localization-form__currency"
  12139.                  >(AUD
  12140.                  $)</span
  12141.                >
  12142.              </a>
  12143.            </li><li class="disclosure-list__item">
  12144.              <a
  12145.                class="disclosure-list__option"
  12146.                href="#"
  12147.                
  12148.                data-value="KZ"
  12149.                data-disclosure-option
  12150.              >
  12151.                <span class="f-country-flags f-country-flags--KZ"></span>Kazakhstan<span class="localization-form__currency"
  12152.                  >(KZT
  12153.                  ₸)</span
  12154.                >
  12155.              </a>
  12156.            </li><li class="disclosure-list__item">
  12157.              <a
  12158.                class="disclosure-list__option"
  12159.                href="#"
  12160.                
  12161.                data-value="KE"
  12162.                data-disclosure-option
  12163.              >
  12164.                <span class="f-country-flags f-country-flags--KE"></span>Kenya<span class="localization-form__currency"
  12165.                  >(KES
  12166.                  KSh)</span
  12167.                >
  12168.              </a>
  12169.            </li><li class="disclosure-list__item">
  12170.              <a
  12171.                class="disclosure-list__option"
  12172.                href="#"
  12173.                
  12174.                data-value="KI"
  12175.                data-disclosure-option
  12176.              >
  12177.                <span class="f-country-flags f-country-flags--KI"></span>Kiribati<span class="localization-form__currency"
  12178.                  >(AUD
  12179.                  $)</span
  12180.                >
  12181.              </a>
  12182.            </li><li class="disclosure-list__item">
  12183.              <a
  12184.                class="disclosure-list__option"
  12185.                href="#"
  12186.                
  12187.                data-value="XK"
  12188.                data-disclosure-option
  12189.              >
  12190.                <span class="f-country-flags f-country-flags--XK"></span>Kosovo<span class="localization-form__currency"
  12191.                  >(EUR
  12192.                  €)</span
  12193.                >
  12194.              </a>
  12195.            </li><li class="disclosure-list__item">
  12196.              <a
  12197.                class="disclosure-list__option"
  12198.                href="#"
  12199.                
  12200.                data-value="KW"
  12201.                data-disclosure-option
  12202.              >
  12203.                <span class="f-country-flags f-country-flags--KW"></span>Kuwait<span class="localization-form__currency"
  12204.                  >(AUD
  12205.                  $)</span
  12206.                >
  12207.              </a>
  12208.            </li><li class="disclosure-list__item">
  12209.              <a
  12210.                class="disclosure-list__option"
  12211.                href="#"
  12212.                
  12213.                data-value="KG"
  12214.                data-disclosure-option
  12215.              >
  12216.                <span class="f-country-flags f-country-flags--KG"></span>Kyrgyzstan<span class="localization-form__currency"
  12217.                  >(KGS
  12218.                  som)</span
  12219.                >
  12220.              </a>
  12221.            </li><li class="disclosure-list__item">
  12222.              <a
  12223.                class="disclosure-list__option"
  12224.                href="#"
  12225.                
  12226.                data-value="LA"
  12227.                data-disclosure-option
  12228.              >
  12229.                <span class="f-country-flags f-country-flags--LA"></span>Laos<span class="localization-form__currency"
  12230.                  >(LAK
  12231.                  ₭)</span
  12232.                >
  12233.              </a>
  12234.            </li><li class="disclosure-list__item">
  12235.              <a
  12236.                class="disclosure-list__option"
  12237.                href="#"
  12238.                
  12239.                data-value="LV"
  12240.                data-disclosure-option
  12241.              >
  12242.                <span class="f-country-flags f-country-flags--LV"></span>Latvia<span class="localization-form__currency"
  12243.                  >(EUR
  12244.                  €)</span
  12245.                >
  12246.              </a>
  12247.            </li><li class="disclosure-list__item">
  12248.              <a
  12249.                class="disclosure-list__option"
  12250.                href="#"
  12251.                
  12252.                data-value="LB"
  12253.                data-disclosure-option
  12254.              >
  12255.                <span class="f-country-flags f-country-flags--LB"></span>Lebanon<span class="localization-form__currency"
  12256.                  >(LBP
  12257.                  ل.ل)</span
  12258.                >
  12259.              </a>
  12260.            </li><li class="disclosure-list__item">
  12261.              <a
  12262.                class="disclosure-list__option"
  12263.                href="#"
  12264.                
  12265.                data-value="LS"
  12266.                data-disclosure-option
  12267.              >
  12268.                <span class="f-country-flags f-country-flags--LS"></span>Lesotho<span class="localization-form__currency"
  12269.                  >(AUD
  12270.                  $)</span
  12271.                >
  12272.              </a>
  12273.            </li><li class="disclosure-list__item">
  12274.              <a
  12275.                class="disclosure-list__option"
  12276.                href="#"
  12277.                
  12278.                data-value="LR"
  12279.                data-disclosure-option
  12280.              >
  12281.                <span class="f-country-flags f-country-flags--LR"></span>Liberia<span class="localization-form__currency"
  12282.                  >(AUD
  12283.                  $)</span
  12284.                >
  12285.              </a>
  12286.            </li><li class="disclosure-list__item">
  12287.              <a
  12288.                class="disclosure-list__option"
  12289.                href="#"
  12290.                
  12291.                data-value="LY"
  12292.                data-disclosure-option
  12293.              >
  12294.                <span class="f-country-flags f-country-flags--LY"></span>Libya<span class="localization-form__currency"
  12295.                  >(AUD
  12296.                  $)</span
  12297.                >
  12298.              </a>
  12299.            </li><li class="disclosure-list__item">
  12300.              <a
  12301.                class="disclosure-list__option"
  12302.                href="#"
  12303.                
  12304.                data-value="LI"
  12305.                data-disclosure-option
  12306.              >
  12307.                <span class="f-country-flags f-country-flags--LI"></span>Liechtenstein<span class="localization-form__currency"
  12308.                  >(CHF
  12309.                  CHF)</span
  12310.                >
  12311.              </a>
  12312.            </li><li class="disclosure-list__item">
  12313.              <a
  12314.                class="disclosure-list__option"
  12315.                href="#"
  12316.                
  12317.                data-value="LT"
  12318.                data-disclosure-option
  12319.              >
  12320.                <span class="f-country-flags f-country-flags--LT"></span>Lithuania<span class="localization-form__currency"
  12321.                  >(EUR
  12322.                  €)</span
  12323.                >
  12324.              </a>
  12325.            </li><li class="disclosure-list__item">
  12326.              <a
  12327.                class="disclosure-list__option"
  12328.                href="#"
  12329.                
  12330.                data-value="LU"
  12331.                data-disclosure-option
  12332.              >
  12333.                <span class="f-country-flags f-country-flags--LU"></span>Luxembourg<span class="localization-form__currency"
  12334.                  >(EUR
  12335.                  €)</span
  12336.                >
  12337.              </a>
  12338.            </li><li class="disclosure-list__item">
  12339.              <a
  12340.                class="disclosure-list__option"
  12341.                href="#"
  12342.                
  12343.                data-value="MO"
  12344.                data-disclosure-option
  12345.              >
  12346.                <span class="f-country-flags f-country-flags--MO"></span>Macao SAR<span class="localization-form__currency"
  12347.                  >(MOP
  12348.                  P)</span
  12349.                >
  12350.              </a>
  12351.            </li><li class="disclosure-list__item">
  12352.              <a
  12353.                class="disclosure-list__option"
  12354.                href="#"
  12355.                
  12356.                data-value="MG"
  12357.                data-disclosure-option
  12358.              >
  12359.                <span class="f-country-flags f-country-flags--MG"></span>Madagascar<span class="localization-form__currency"
  12360.                  >(AUD
  12361.                  $)</span
  12362.                >
  12363.              </a>
  12364.            </li><li class="disclosure-list__item">
  12365.              <a
  12366.                class="disclosure-list__option"
  12367.                href="#"
  12368.                
  12369.                data-value="MW"
  12370.                data-disclosure-option
  12371.              >
  12372.                <span class="f-country-flags f-country-flags--MW"></span>Malawi<span class="localization-form__currency"
  12373.                  >(MWK
  12374.                  MK)</span
  12375.                >
  12376.              </a>
  12377.            </li><li class="disclosure-list__item">
  12378.              <a
  12379.                class="disclosure-list__option"
  12380.                href="#"
  12381.                
  12382.                data-value="MY"
  12383.                data-disclosure-option
  12384.              >
  12385.                <span class="f-country-flags f-country-flags--MY"></span>Malaysia<span class="localization-form__currency"
  12386.                  >(MYR
  12387.                  RM)</span
  12388.                >
  12389.              </a>
  12390.            </li><li class="disclosure-list__item">
  12391.              <a
  12392.                class="disclosure-list__option"
  12393.                href="#"
  12394.                
  12395.                data-value="MV"
  12396.                data-disclosure-option
  12397.              >
  12398.                <span class="f-country-flags f-country-flags--MV"></span>Maldives<span class="localization-form__currency"
  12399.                  >(MVR
  12400.                  MVR)</span
  12401.                >
  12402.              </a>
  12403.            </li><li class="disclosure-list__item">
  12404.              <a
  12405.                class="disclosure-list__option"
  12406.                href="#"
  12407.                
  12408.                data-value="ML"
  12409.                data-disclosure-option
  12410.              >
  12411.                <span class="f-country-flags f-country-flags--ML"></span>Mali<span class="localization-form__currency"
  12412.                  >(XOF
  12413.                  Fr)</span
  12414.                >
  12415.              </a>
  12416.            </li><li class="disclosure-list__item">
  12417.              <a
  12418.                class="disclosure-list__option"
  12419.                href="#"
  12420.                
  12421.                data-value="MT"
  12422.                data-disclosure-option
  12423.              >
  12424.                <span class="f-country-flags f-country-flags--MT"></span>Malta<span class="localization-form__currency"
  12425.                  >(EUR
  12426.                  €)</span
  12427.                >
  12428.              </a>
  12429.            </li><li class="disclosure-list__item">
  12430.              <a
  12431.                class="disclosure-list__option"
  12432.                href="#"
  12433.                
  12434.                data-value="MQ"
  12435.                data-disclosure-option
  12436.              >
  12437.                <span class="f-country-flags f-country-flags--MQ"></span>Martinique<span class="localization-form__currency"
  12438.                  >(EUR
  12439.                  €)</span
  12440.                >
  12441.              </a>
  12442.            </li><li class="disclosure-list__item">
  12443.              <a
  12444.                class="disclosure-list__option"
  12445.                href="#"
  12446.                
  12447.                data-value="MR"
  12448.                data-disclosure-option
  12449.              >
  12450.                <span class="f-country-flags f-country-flags--MR"></span>Mauritania<span class="localization-form__currency"
  12451.                  >(AUD
  12452.                  $)</span
  12453.                >
  12454.              </a>
  12455.            </li><li class="disclosure-list__item">
  12456.              <a
  12457.                class="disclosure-list__option"
  12458.                href="#"
  12459.                
  12460.                data-value="MU"
  12461.                data-disclosure-option
  12462.              >
  12463.                <span class="f-country-flags f-country-flags--MU"></span>Mauritius<span class="localization-form__currency"
  12464.                  >(MUR
  12465.                  ₨)</span
  12466.                >
  12467.              </a>
  12468.            </li><li class="disclosure-list__item">
  12469.              <a
  12470.                class="disclosure-list__option"
  12471.                href="#"
  12472.                
  12473.                data-value="YT"
  12474.                data-disclosure-option
  12475.              >
  12476.                <span class="f-country-flags f-country-flags--YT"></span>Mayotte<span class="localization-form__currency"
  12477.                  >(EUR
  12478.                  €)</span
  12479.                >
  12480.              </a>
  12481.            </li><li class="disclosure-list__item">
  12482.              <a
  12483.                class="disclosure-list__option"
  12484.                href="#"
  12485.                
  12486.                data-value="MX"
  12487.                data-disclosure-option
  12488.              >
  12489.                <span class="f-country-flags f-country-flags--MX"></span>Mexico<span class="localization-form__currency"
  12490.                  >(AUD
  12491.                  $)</span
  12492.                >
  12493.              </a>
  12494.            </li><li class="disclosure-list__item">
  12495.              <a
  12496.                class="disclosure-list__option"
  12497.                href="#"
  12498.                
  12499.                data-value="MD"
  12500.                data-disclosure-option
  12501.              >
  12502.                <span class="f-country-flags f-country-flags--MD"></span>Moldova<span class="localization-form__currency"
  12503.                  >(MDL
  12504.                  L)</span
  12505.                >
  12506.              </a>
  12507.            </li><li class="disclosure-list__item">
  12508.              <a
  12509.                class="disclosure-list__option"
  12510.                href="#"
  12511.                
  12512.                data-value="MC"
  12513.                data-disclosure-option
  12514.              >
  12515.                <span class="f-country-flags f-country-flags--MC"></span>Monaco<span class="localization-form__currency"
  12516.                  >(EUR
  12517.                  €)</span
  12518.                >
  12519.              </a>
  12520.            </li><li class="disclosure-list__item">
  12521.              <a
  12522.                class="disclosure-list__option"
  12523.                href="#"
  12524.                
  12525.                data-value="MN"
  12526.                data-disclosure-option
  12527.              >
  12528.                <span class="f-country-flags f-country-flags--MN"></span>Mongolia<span class="localization-form__currency"
  12529.                  >(MNT
  12530.                  ₮)</span
  12531.                >
  12532.              </a>
  12533.            </li><li class="disclosure-list__item">
  12534.              <a
  12535.                class="disclosure-list__option"
  12536.                href="#"
  12537.                
  12538.                data-value="ME"
  12539.                data-disclosure-option
  12540.              >
  12541.                <span class="f-country-flags f-country-flags--ME"></span>Montenegro<span class="localization-form__currency"
  12542.                  >(EUR
  12543.                  €)</span
  12544.                >
  12545.              </a>
  12546.            </li><li class="disclosure-list__item">
  12547.              <a
  12548.                class="disclosure-list__option"
  12549.                href="#"
  12550.                
  12551.                data-value="MS"
  12552.                data-disclosure-option
  12553.              >
  12554.                <span class="f-country-flags f-country-flags--MS"></span>Montserrat<span class="localization-form__currency"
  12555.                  >(XCD
  12556.                  $)</span
  12557.                >
  12558.              </a>
  12559.            </li><li class="disclosure-list__item">
  12560.              <a
  12561.                class="disclosure-list__option"
  12562.                href="#"
  12563.                
  12564.                data-value="MA"
  12565.                data-disclosure-option
  12566.              >
  12567.                <span class="f-country-flags f-country-flags--MA"></span>Morocco<span class="localization-form__currency"
  12568.                  >(MAD
  12569.                  د.م.)</span
  12570.                >
  12571.              </a>
  12572.            </li><li class="disclosure-list__item">
  12573.              <a
  12574.                class="disclosure-list__option"
  12575.                href="#"
  12576.                
  12577.                data-value="MZ"
  12578.                data-disclosure-option
  12579.              >
  12580.                <span class="f-country-flags f-country-flags--MZ"></span>Mozambique<span class="localization-form__currency"
  12581.                  >(AUD
  12582.                  $)</span
  12583.                >
  12584.              </a>
  12585.            </li><li class="disclosure-list__item">
  12586.              <a
  12587.                class="disclosure-list__option"
  12588.                href="#"
  12589.                
  12590.                data-value="MM"
  12591.                data-disclosure-option
  12592.              >
  12593.                <span class="f-country-flags f-country-flags--MM"></span>Myanmar (Burma)<span class="localization-form__currency"
  12594.                  >(MMK
  12595.                  K)</span
  12596.                >
  12597.              </a>
  12598.            </li><li class="disclosure-list__item">
  12599.              <a
  12600.                class="disclosure-list__option"
  12601.                href="#"
  12602.                
  12603.                data-value="NA"
  12604.                data-disclosure-option
  12605.              >
  12606.                <span class="f-country-flags f-country-flags--NA"></span>Namibia<span class="localization-form__currency"
  12607.                  >(AUD
  12608.                  $)</span
  12609.                >
  12610.              </a>
  12611.            </li><li class="disclosure-list__item">
  12612.              <a
  12613.                class="disclosure-list__option"
  12614.                href="#"
  12615.                
  12616.                data-value="NR"
  12617.                data-disclosure-option
  12618.              >
  12619.                <span class="f-country-flags f-country-flags--NR"></span>Nauru<span class="localization-form__currency"
  12620.                  >(AUD
  12621.                  $)</span
  12622.                >
  12623.              </a>
  12624.            </li><li class="disclosure-list__item">
  12625.              <a
  12626.                class="disclosure-list__option"
  12627.                href="#"
  12628.                
  12629.                data-value="NP"
  12630.                data-disclosure-option
  12631.              >
  12632.                <span class="f-country-flags f-country-flags--NP"></span>Nepal<span class="localization-form__currency"
  12633.                  >(NPR
  12634.                  Rs.)</span
  12635.                >
  12636.              </a>
  12637.            </li><li class="disclosure-list__item">
  12638.              <a
  12639.                class="disclosure-list__option"
  12640.                href="#"
  12641.                
  12642.                data-value="NL"
  12643.                data-disclosure-option
  12644.              >
  12645.                <span class="f-country-flags f-country-flags--NL"></span>Netherlands<span class="localization-form__currency"
  12646.                  >(EUR
  12647.                  €)</span
  12648.                >
  12649.              </a>
  12650.            </li><li class="disclosure-list__item">
  12651.              <a
  12652.                class="disclosure-list__option"
  12653.                href="#"
  12654.                
  12655.                data-value="NC"
  12656.                data-disclosure-option
  12657.              >
  12658.                <span class="f-country-flags f-country-flags--NC"></span>New Caledonia<span class="localization-form__currency"
  12659.                  >(XPF
  12660.                  Fr)</span
  12661.                >
  12662.              </a>
  12663.            </li><li class="disclosure-list__item">
  12664.              <a
  12665.                class="disclosure-list__option"
  12666.                href="#"
  12667.                
  12668.                data-value="NZ"
  12669.                data-disclosure-option
  12670.              >
  12671.                <span class="f-country-flags f-country-flags--NZ"></span>New Zealand<span class="localization-form__currency"
  12672.                  >(NZD
  12673.                  $)</span
  12674.                >
  12675.              </a>
  12676.            </li><li class="disclosure-list__item">
  12677.              <a
  12678.                class="disclosure-list__option"
  12679.                href="#"
  12680.                
  12681.                data-value="NI"
  12682.                data-disclosure-option
  12683.              >
  12684.                <span class="f-country-flags f-country-flags--NI"></span>Nicaragua<span class="localization-form__currency"
  12685.                  >(NIO
  12686.                  C$)</span
  12687.                >
  12688.              </a>
  12689.            </li><li class="disclosure-list__item">
  12690.              <a
  12691.                class="disclosure-list__option"
  12692.                href="#"
  12693.                
  12694.                data-value="NE"
  12695.                data-disclosure-option
  12696.              >
  12697.                <span class="f-country-flags f-country-flags--NE"></span>Niger<span class="localization-form__currency"
  12698.                  >(XOF
  12699.                  Fr)</span
  12700.                >
  12701.              </a>
  12702.            </li><li class="disclosure-list__item">
  12703.              <a
  12704.                class="disclosure-list__option"
  12705.                href="#"
  12706.                
  12707.                data-value="NG"
  12708.                data-disclosure-option
  12709.              >
  12710.                <span class="f-country-flags f-country-flags--NG"></span>Nigeria<span class="localization-form__currency"
  12711.                  >(NGN
  12712.                  ₦)</span
  12713.                >
  12714.              </a>
  12715.            </li><li class="disclosure-list__item">
  12716.              <a
  12717.                class="disclosure-list__option"
  12718.                href="#"
  12719.                
  12720.                data-value="NU"
  12721.                data-disclosure-option
  12722.              >
  12723.                <span class="f-country-flags f-country-flags--NU"></span>Niue<span class="localization-form__currency"
  12724.                  >(NZD
  12725.                  $)</span
  12726.                >
  12727.              </a>
  12728.            </li><li class="disclosure-list__item">
  12729.              <a
  12730.                class="disclosure-list__option"
  12731.                href="#"
  12732.                
  12733.                data-value="NF"
  12734.                data-disclosure-option
  12735.              >
  12736.                <span class="f-country-flags f-country-flags--NF"></span>Norfolk Island<span class="localization-form__currency"
  12737.                  >(AUD
  12738.                  $)</span
  12739.                >
  12740.              </a>
  12741.            </li><li class="disclosure-list__item">
  12742.              <a
  12743.                class="disclosure-list__option"
  12744.                href="#"
  12745.                
  12746.                data-value="MK"
  12747.                data-disclosure-option
  12748.              >
  12749.                <span class="f-country-flags f-country-flags--MK"></span>North Macedonia<span class="localization-form__currency"
  12750.                  >(MKD
  12751.                  ден)</span
  12752.                >
  12753.              </a>
  12754.            </li><li class="disclosure-list__item">
  12755.              <a
  12756.                class="disclosure-list__option"
  12757.                href="#"
  12758.                
  12759.                data-value="NO"
  12760.                data-disclosure-option
  12761.              >
  12762.                <span class="f-country-flags f-country-flags--NO"></span>Norway<span class="localization-form__currency"
  12763.                  >(AUD
  12764.                  $)</span
  12765.                >
  12766.              </a>
  12767.            </li><li class="disclosure-list__item">
  12768.              <a
  12769.                class="disclosure-list__option"
  12770.                href="#"
  12771.                
  12772.                data-value="OM"
  12773.                data-disclosure-option
  12774.              >
  12775.                <span class="f-country-flags f-country-flags--OM"></span>Oman<span class="localization-form__currency"
  12776.                  >(AUD
  12777.                  $)</span
  12778.                >
  12779.              </a>
  12780.            </li><li class="disclosure-list__item">
  12781.              <a
  12782.                class="disclosure-list__option"
  12783.                href="#"
  12784.                
  12785.                data-value="PK"
  12786.                data-disclosure-option
  12787.              >
  12788.                <span class="f-country-flags f-country-flags--PK"></span>Pakistan<span class="localization-form__currency"
  12789.                  >(PKR
  12790.                  ₨)</span
  12791.                >
  12792.              </a>
  12793.            </li><li class="disclosure-list__item">
  12794.              <a
  12795.                class="disclosure-list__option"
  12796.                href="#"
  12797.                
  12798.                data-value="PS"
  12799.                data-disclosure-option
  12800.              >
  12801.                <span class="f-country-flags f-country-flags--PS"></span>Palestinian Territories<span class="localization-form__currency"
  12802.                  >(ILS
  12803.                  ₪)</span
  12804.                >
  12805.              </a>
  12806.            </li><li class="disclosure-list__item">
  12807.              <a
  12808.                class="disclosure-list__option"
  12809.                href="#"
  12810.                
  12811.                data-value="PA"
  12812.                data-disclosure-option
  12813.              >
  12814.                <span class="f-country-flags f-country-flags--PA"></span>Panama<span class="localization-form__currency"
  12815.                  >(USD
  12816.                  $)</span
  12817.                >
  12818.              </a>
  12819.            </li><li class="disclosure-list__item">
  12820.              <a
  12821.                class="disclosure-list__option"
  12822.                href="#"
  12823.                
  12824.                data-value="PG"
  12825.                data-disclosure-option
  12826.              >
  12827.                <span class="f-country-flags f-country-flags--PG"></span>Papua New Guinea<span class="localization-form__currency"
  12828.                  >(PGK
  12829.                  K)</span
  12830.                >
  12831.              </a>
  12832.            </li><li class="disclosure-list__item">
  12833.              <a
  12834.                class="disclosure-list__option"
  12835.                href="#"
  12836.                
  12837.                data-value="PY"
  12838.                data-disclosure-option
  12839.              >
  12840.                <span class="f-country-flags f-country-flags--PY"></span>Paraguay<span class="localization-form__currency"
  12841.                  >(PYG
  12842.                  ₲)</span
  12843.                >
  12844.              </a>
  12845.            </li><li class="disclosure-list__item">
  12846.              <a
  12847.                class="disclosure-list__option"
  12848.                href="#"
  12849.                
  12850.                data-value="PE"
  12851.                data-disclosure-option
  12852.              >
  12853.                <span class="f-country-flags f-country-flags--PE"></span>Peru<span class="localization-form__currency"
  12854.                  >(PEN
  12855.                  S/)</span
  12856.                >
  12857.              </a>
  12858.            </li><li class="disclosure-list__item">
  12859.              <a
  12860.                class="disclosure-list__option"
  12861.                href="#"
  12862.                
  12863.                data-value="PH"
  12864.                data-disclosure-option
  12865.              >
  12866.                <span class="f-country-flags f-country-flags--PH"></span>Philippines<span class="localization-form__currency"
  12867.                  >(PHP
  12868.                  ₱)</span
  12869.                >
  12870.              </a>
  12871.            </li><li class="disclosure-list__item">
  12872.              <a
  12873.                class="disclosure-list__option"
  12874.                href="#"
  12875.                
  12876.                data-value="PN"
  12877.                data-disclosure-option
  12878.              >
  12879.                <span class="f-country-flags f-country-flags--PN"></span>Pitcairn Islands<span class="localization-form__currency"
  12880.                  >(NZD
  12881.                  $)</span
  12882.                >
  12883.              </a>
  12884.            </li><li class="disclosure-list__item">
  12885.              <a
  12886.                class="disclosure-list__option"
  12887.                href="#"
  12888.                
  12889.                data-value="PL"
  12890.                data-disclosure-option
  12891.              >
  12892.                <span class="f-country-flags f-country-flags--PL"></span>Poland<span class="localization-form__currency"
  12893.                  >(PLN
  12894.                  zł)</span
  12895.                >
  12896.              </a>
  12897.            </li><li class="disclosure-list__item">
  12898.              <a
  12899.                class="disclosure-list__option"
  12900.                href="#"
  12901.                
  12902.                data-value="PT"
  12903.                data-disclosure-option
  12904.              >
  12905.                <span class="f-country-flags f-country-flags--PT"></span>Portugal<span class="localization-form__currency"
  12906.                  >(EUR
  12907.                  €)</span
  12908.                >
  12909.              </a>
  12910.            </li><li class="disclosure-list__item">
  12911.              <a
  12912.                class="disclosure-list__option"
  12913.                href="#"
  12914.                
  12915.                data-value="QA"
  12916.                data-disclosure-option
  12917.              >
  12918.                <span class="f-country-flags f-country-flags--QA"></span>Qatar<span class="localization-form__currency"
  12919.                  >(QAR
  12920.                  ر.ق)</span
  12921.                >
  12922.              </a>
  12923.            </li><li class="disclosure-list__item">
  12924.              <a
  12925.                class="disclosure-list__option"
  12926.                href="#"
  12927.                
  12928.                data-value="RE"
  12929.                data-disclosure-option
  12930.              >
  12931.                <span class="f-country-flags f-country-flags--RE"></span>Réunion<span class="localization-form__currency"
  12932.                  >(EUR
  12933.                  €)</span
  12934.                >
  12935.              </a>
  12936.            </li><li class="disclosure-list__item">
  12937.              <a
  12938.                class="disclosure-list__option"
  12939.                href="#"
  12940.                
  12941.                data-value="RO"
  12942.                data-disclosure-option
  12943.              >
  12944.                <span class="f-country-flags f-country-flags--RO"></span>Romania<span class="localization-form__currency"
  12945.                  >(RON
  12946.                  Lei)</span
  12947.                >
  12948.              </a>
  12949.            </li><li class="disclosure-list__item">
  12950.              <a
  12951.                class="disclosure-list__option"
  12952.                href="#"
  12953.                
  12954.                data-value="RU"
  12955.                data-disclosure-option
  12956.              >
  12957.                <span class="f-country-flags f-country-flags--RU"></span>Russia<span class="localization-form__currency"
  12958.                  >(AUD
  12959.                  $)</span
  12960.                >
  12961.              </a>
  12962.            </li><li class="disclosure-list__item">
  12963.              <a
  12964.                class="disclosure-list__option"
  12965.                href="#"
  12966.                
  12967.                data-value="RW"
  12968.                data-disclosure-option
  12969.              >
  12970.                <span class="f-country-flags f-country-flags--RW"></span>Rwanda<span class="localization-form__currency"
  12971.                  >(RWF
  12972.                  FRw)</span
  12973.                >
  12974.              </a>
  12975.            </li><li class="disclosure-list__item">
  12976.              <a
  12977.                class="disclosure-list__option"
  12978.                href="#"
  12979.                
  12980.                data-value="WS"
  12981.                data-disclosure-option
  12982.              >
  12983.                <span class="f-country-flags f-country-flags--WS"></span>Samoa<span class="localization-form__currency"
  12984.                  >(WST
  12985.                  T)</span
  12986.                >
  12987.              </a>
  12988.            </li><li class="disclosure-list__item">
  12989.              <a
  12990.                class="disclosure-list__option"
  12991.                href="#"
  12992.                
  12993.                data-value="SM"
  12994.                data-disclosure-option
  12995.              >
  12996.                <span class="f-country-flags f-country-flags--SM"></span>San Marino<span class="localization-form__currency"
  12997.                  >(EUR
  12998.                  €)</span
  12999.                >
  13000.              </a>
  13001.            </li><li class="disclosure-list__item">
  13002.              <a
  13003.                class="disclosure-list__option"
  13004.                href="#"
  13005.                
  13006.                data-value="ST"
  13007.                data-disclosure-option
  13008.              >
  13009.                <span class="f-country-flags f-country-flags--ST"></span>São Tomé &amp; Príncipe<span class="localization-form__currency"
  13010.                  >(STD
  13011.                  Db)</span
  13012.                >
  13013.              </a>
  13014.            </li><li class="disclosure-list__item">
  13015.              <a
  13016.                class="disclosure-list__option"
  13017.                href="#"
  13018.                
  13019.                data-value="SA"
  13020.                data-disclosure-option
  13021.              >
  13022.                <span class="f-country-flags f-country-flags--SA"></span>Saudi Arabia<span class="localization-form__currency"
  13023.                  >(SAR
  13024.                  ر.س)</span
  13025.                >
  13026.              </a>
  13027.            </li><li class="disclosure-list__item">
  13028.              <a
  13029.                class="disclosure-list__option"
  13030.                href="#"
  13031.                
  13032.                data-value="SN"
  13033.                data-disclosure-option
  13034.              >
  13035.                <span class="f-country-flags f-country-flags--SN"></span>Senegal<span class="localization-form__currency"
  13036.                  >(XOF
  13037.                  Fr)</span
  13038.                >
  13039.              </a>
  13040.            </li><li class="disclosure-list__item">
  13041.              <a
  13042.                class="disclosure-list__option"
  13043.                href="#"
  13044.                
  13045.                data-value="RS"
  13046.                data-disclosure-option
  13047.              >
  13048.                <span class="f-country-flags f-country-flags--RS"></span>Serbia<span class="localization-form__currency"
  13049.                  >(RSD
  13050.                  РСД)</span
  13051.                >
  13052.              </a>
  13053.            </li><li class="disclosure-list__item">
  13054.              <a
  13055.                class="disclosure-list__option"
  13056.                href="#"
  13057.                
  13058.                data-value="SC"
  13059.                data-disclosure-option
  13060.              >
  13061.                <span class="f-country-flags f-country-flags--SC"></span>Seychelles<span class="localization-form__currency"
  13062.                  >(AUD
  13063.                  $)</span
  13064.                >
  13065.              </a>
  13066.            </li><li class="disclosure-list__item">
  13067.              <a
  13068.                class="disclosure-list__option"
  13069.                href="#"
  13070.                
  13071.                data-value="SL"
  13072.                data-disclosure-option
  13073.              >
  13074.                <span class="f-country-flags f-country-flags--SL"></span>Sierra Leone<span class="localization-form__currency"
  13075.                  >(SLL
  13076.                  Le)</span
  13077.                >
  13078.              </a>
  13079.            </li><li class="disclosure-list__item">
  13080.              <a
  13081.                class="disclosure-list__option"
  13082.                href="#"
  13083.                
  13084.                data-value="SG"
  13085.                data-disclosure-option
  13086.              >
  13087.                <span class="f-country-flags f-country-flags--SG"></span>Singapore<span class="localization-form__currency"
  13088.                  >(SGD
  13089.                  $)</span
  13090.                >
  13091.              </a>
  13092.            </li><li class="disclosure-list__item">
  13093.              <a
  13094.                class="disclosure-list__option"
  13095.                href="#"
  13096.                
  13097.                data-value="SX"
  13098.                data-disclosure-option
  13099.              >
  13100.                <span class="f-country-flags f-country-flags--SX"></span>Sint Maarten<span class="localization-form__currency"
  13101.                  >(ANG
  13102.                  ƒ)</span
  13103.                >
  13104.              </a>
  13105.            </li><li class="disclosure-list__item">
  13106.              <a
  13107.                class="disclosure-list__option"
  13108.                href="#"
  13109.                
  13110.                data-value="SK"
  13111.                data-disclosure-option
  13112.              >
  13113.                <span class="f-country-flags f-country-flags--SK"></span>Slovakia<span class="localization-form__currency"
  13114.                  >(EUR
  13115.                  €)</span
  13116.                >
  13117.              </a>
  13118.            </li><li class="disclosure-list__item">
  13119.              <a
  13120.                class="disclosure-list__option"
  13121.                href="#"
  13122.                
  13123.                data-value="SI"
  13124.                data-disclosure-option
  13125.              >
  13126.                <span class="f-country-flags f-country-flags--SI"></span>Slovenia<span class="localization-form__currency"
  13127.                  >(EUR
  13128.                  €)</span
  13129.                >
  13130.              </a>
  13131.            </li><li class="disclosure-list__item">
  13132.              <a
  13133.                class="disclosure-list__option"
  13134.                href="#"
  13135.                
  13136.                data-value="SB"
  13137.                data-disclosure-option
  13138.              >
  13139.                <span class="f-country-flags f-country-flags--SB"></span>Solomon Islands<span class="localization-form__currency"
  13140.                  >(SBD
  13141.                  $)</span
  13142.                >
  13143.              </a>
  13144.            </li><li class="disclosure-list__item">
  13145.              <a
  13146.                class="disclosure-list__option"
  13147.                href="#"
  13148.                
  13149.                data-value="SO"
  13150.                data-disclosure-option
  13151.              >
  13152.                <span class="f-country-flags f-country-flags--SO"></span>Somalia<span class="localization-form__currency"
  13153.                  >(AUD
  13154.                  $)</span
  13155.                >
  13156.              </a>
  13157.            </li><li class="disclosure-list__item">
  13158.              <a
  13159.                class="disclosure-list__option"
  13160.                href="#"
  13161.                
  13162.                data-value="ZA"
  13163.                data-disclosure-option
  13164.              >
  13165.                <span class="f-country-flags f-country-flags--ZA"></span>South Africa<span class="localization-form__currency"
  13166.                  >(AUD
  13167.                  $)</span
  13168.                >
  13169.              </a>
  13170.            </li><li class="disclosure-list__item">
  13171.              <a
  13172.                class="disclosure-list__option"
  13173.                href="#"
  13174.                
  13175.                data-value="GS"
  13176.                data-disclosure-option
  13177.              >
  13178.                <span class="f-country-flags f-country-flags--GS"></span>South Georgia &amp; South Sandwich Islands<span class="localization-form__currency"
  13179.                  >(GBP
  13180.                  £)</span
  13181.                >
  13182.              </a>
  13183.            </li><li class="disclosure-list__item">
  13184.              <a
  13185.                class="disclosure-list__option"
  13186.                href="#"
  13187.                
  13188.                data-value="SS"
  13189.                data-disclosure-option
  13190.              >
  13191.                <span class="f-country-flags f-country-flags--SS"></span>South Sudan<span class="localization-form__currency"
  13192.                  >(AUD
  13193.                  $)</span
  13194.                >
  13195.              </a>
  13196.            </li><li class="disclosure-list__item">
  13197.              <a
  13198.                class="disclosure-list__option"
  13199.                href="#"
  13200.                
  13201.                data-value="ES"
  13202.                data-disclosure-option
  13203.              >
  13204.                <span class="f-country-flags f-country-flags--ES"></span>Spain<span class="localization-form__currency"
  13205.                  >(EUR
  13206.                  €)</span
  13207.                >
  13208.              </a>
  13209.            </li><li class="disclosure-list__item">
  13210.              <a
  13211.                class="disclosure-list__option"
  13212.                href="#"
  13213.                
  13214.                data-value="LK"
  13215.                data-disclosure-option
  13216.              >
  13217.                <span class="f-country-flags f-country-flags--LK"></span>Sri Lanka<span class="localization-form__currency"
  13218.                  >(LKR
  13219.                  ₨)</span
  13220.                >
  13221.              </a>
  13222.            </li><li class="disclosure-list__item">
  13223.              <a
  13224.                class="disclosure-list__option"
  13225.                href="#"
  13226.                
  13227.                data-value="BL"
  13228.                data-disclosure-option
  13229.              >
  13230.                <span class="f-country-flags f-country-flags--BL"></span>St. Barthélemy<span class="localization-form__currency"
  13231.                  >(EUR
  13232.                  €)</span
  13233.                >
  13234.              </a>
  13235.            </li><li class="disclosure-list__item">
  13236.              <a
  13237.                class="disclosure-list__option"
  13238.                href="#"
  13239.                
  13240.                data-value="SH"
  13241.                data-disclosure-option
  13242.              >
  13243.                <span class="f-country-flags f-country-flags--SH"></span>St. Helena<span class="localization-form__currency"
  13244.                  >(SHP
  13245.                  £)</span
  13246.                >
  13247.              </a>
  13248.            </li><li class="disclosure-list__item">
  13249.              <a
  13250.                class="disclosure-list__option"
  13251.                href="#"
  13252.                
  13253.                data-value="KN"
  13254.                data-disclosure-option
  13255.              >
  13256.                <span class="f-country-flags f-country-flags--KN"></span>St. Kitts &amp; Nevis<span class="localization-form__currency"
  13257.                  >(XCD
  13258.                  $)</span
  13259.                >
  13260.              </a>
  13261.            </li><li class="disclosure-list__item">
  13262.              <a
  13263.                class="disclosure-list__option"
  13264.                href="#"
  13265.                
  13266.                data-value="LC"
  13267.                data-disclosure-option
  13268.              >
  13269.                <span class="f-country-flags f-country-flags--LC"></span>St. Lucia<span class="localization-form__currency"
  13270.                  >(XCD
  13271.                  $)</span
  13272.                >
  13273.              </a>
  13274.            </li><li class="disclosure-list__item">
  13275.              <a
  13276.                class="disclosure-list__option"
  13277.                href="#"
  13278.                
  13279.                data-value="MF"
  13280.                data-disclosure-option
  13281.              >
  13282.                <span class="f-country-flags f-country-flags--MF"></span>St. Martin<span class="localization-form__currency"
  13283.                  >(EUR
  13284.                  €)</span
  13285.                >
  13286.              </a>
  13287.            </li><li class="disclosure-list__item">
  13288.              <a
  13289.                class="disclosure-list__option"
  13290.                href="#"
  13291.                
  13292.                data-value="PM"
  13293.                data-disclosure-option
  13294.              >
  13295.                <span class="f-country-flags f-country-flags--PM"></span>St. Pierre &amp; Miquelon<span class="localization-form__currency"
  13296.                  >(EUR
  13297.                  €)</span
  13298.                >
  13299.              </a>
  13300.            </li><li class="disclosure-list__item">
  13301.              <a
  13302.                class="disclosure-list__option"
  13303.                href="#"
  13304.                
  13305.                data-value="VC"
  13306.                data-disclosure-option
  13307.              >
  13308.                <span class="f-country-flags f-country-flags--VC"></span>St. Vincent &amp; Grenadines<span class="localization-form__currency"
  13309.                  >(XCD
  13310.                  $)</span
  13311.                >
  13312.              </a>
  13313.            </li><li class="disclosure-list__item">
  13314.              <a
  13315.                class="disclosure-list__option"
  13316.                href="#"
  13317.                
  13318.                data-value="SD"
  13319.                data-disclosure-option
  13320.              >
  13321.                <span class="f-country-flags f-country-flags--SD"></span>Sudan<span class="localization-form__currency"
  13322.                  >(AUD
  13323.                  $)</span
  13324.                >
  13325.              </a>
  13326.            </li><li class="disclosure-list__item">
  13327.              <a
  13328.                class="disclosure-list__option"
  13329.                href="#"
  13330.                
  13331.                data-value="SR"
  13332.                data-disclosure-option
  13333.              >
  13334.                <span class="f-country-flags f-country-flags--SR"></span>Suriname<span class="localization-form__currency"
  13335.                  >(AUD
  13336.                  $)</span
  13337.                >
  13338.              </a>
  13339.            </li><li class="disclosure-list__item">
  13340.              <a
  13341.                class="disclosure-list__option"
  13342.                href="#"
  13343.                
  13344.                data-value="SJ"
  13345.                data-disclosure-option
  13346.              >
  13347.                <span class="f-country-flags f-country-flags--SJ"></span>Svalbard &amp; Jan Mayen<span class="localization-form__currency"
  13348.                  >(AUD
  13349.                  $)</span
  13350.                >
  13351.              </a>
  13352.            </li><li class="disclosure-list__item">
  13353.              <a
  13354.                class="disclosure-list__option"
  13355.                href="#"
  13356.                
  13357.                data-value="SE"
  13358.                data-disclosure-option
  13359.              >
  13360.                <span class="f-country-flags f-country-flags--SE"></span>Sweden<span class="localization-form__currency"
  13361.                  >(SEK
  13362.                  kr)</span
  13363.                >
  13364.              </a>
  13365.            </li><li class="disclosure-list__item">
  13366.              <a
  13367.                class="disclosure-list__option"
  13368.                href="#"
  13369.                
  13370.                data-value="CH"
  13371.                data-disclosure-option
  13372.              >
  13373.                <span class="f-country-flags f-country-flags--CH"></span>Switzerland<span class="localization-form__currency"
  13374.                  >(CHF
  13375.                  CHF)</span
  13376.                >
  13377.              </a>
  13378.            </li><li class="disclosure-list__item">
  13379.              <a
  13380.                class="disclosure-list__option"
  13381.                href="#"
  13382.                
  13383.                data-value="TW"
  13384.                data-disclosure-option
  13385.              >
  13386.                <span class="f-country-flags f-country-flags--TW"></span>Taiwan<span class="localization-form__currency"
  13387.                  >(TWD
  13388.                  $)</span
  13389.                >
  13390.              </a>
  13391.            </li><li class="disclosure-list__item">
  13392.              <a
  13393.                class="disclosure-list__option"
  13394.                href="#"
  13395.                
  13396.                data-value="TJ"
  13397.                data-disclosure-option
  13398.              >
  13399.                <span class="f-country-flags f-country-flags--TJ"></span>Tajikistan<span class="localization-form__currency"
  13400.                  >(TJS
  13401.                  ЅМ)</span
  13402.                >
  13403.              </a>
  13404.            </li><li class="disclosure-list__item">
  13405.              <a
  13406.                class="disclosure-list__option"
  13407.                href="#"
  13408.                
  13409.                data-value="TZ"
  13410.                data-disclosure-option
  13411.              >
  13412.                <span class="f-country-flags f-country-flags--TZ"></span>Tanzania<span class="localization-form__currency"
  13413.                  >(TZS
  13414.                  Sh)</span
  13415.                >
  13416.              </a>
  13417.            </li><li class="disclosure-list__item">
  13418.              <a
  13419.                class="disclosure-list__option"
  13420.                href="#"
  13421.                
  13422.                data-value="TH"
  13423.                data-disclosure-option
  13424.              >
  13425.                <span class="f-country-flags f-country-flags--TH"></span>Thailand<span class="localization-form__currency"
  13426.                  >(THB
  13427.                  ฿)</span
  13428.                >
  13429.              </a>
  13430.            </li><li class="disclosure-list__item">
  13431.              <a
  13432.                class="disclosure-list__option"
  13433.                href="#"
  13434.                
  13435.                data-value="TL"
  13436.                data-disclosure-option
  13437.              >
  13438.                <span class="f-country-flags f-country-flags--TL"></span>Timor-Leste<span class="localization-form__currency"
  13439.                  >(USD
  13440.                  $)</span
  13441.                >
  13442.              </a>
  13443.            </li><li class="disclosure-list__item">
  13444.              <a
  13445.                class="disclosure-list__option"
  13446.                href="#"
  13447.                
  13448.                data-value="TG"
  13449.                data-disclosure-option
  13450.              >
  13451.                <span class="f-country-flags f-country-flags--TG"></span>Togo<span class="localization-form__currency"
  13452.                  >(XOF
  13453.                  Fr)</span
  13454.                >
  13455.              </a>
  13456.            </li><li class="disclosure-list__item">
  13457.              <a
  13458.                class="disclosure-list__option"
  13459.                href="#"
  13460.                
  13461.                data-value="TK"
  13462.                data-disclosure-option
  13463.              >
  13464.                <span class="f-country-flags f-country-flags--TK"></span>Tokelau<span class="localization-form__currency"
  13465.                  >(NZD
  13466.                  $)</span
  13467.                >
  13468.              </a>
  13469.            </li><li class="disclosure-list__item">
  13470.              <a
  13471.                class="disclosure-list__option"
  13472.                href="#"
  13473.                
  13474.                data-value="TO"
  13475.                data-disclosure-option
  13476.              >
  13477.                <span class="f-country-flags f-country-flags--TO"></span>Tonga<span class="localization-form__currency"
  13478.                  >(TOP
  13479.                  T$)</span
  13480.                >
  13481.              </a>
  13482.            </li><li class="disclosure-list__item">
  13483.              <a
  13484.                class="disclosure-list__option"
  13485.                href="#"
  13486.                
  13487.                data-value="TT"
  13488.                data-disclosure-option
  13489.              >
  13490.                <span class="f-country-flags f-country-flags--TT"></span>Trinidad &amp; Tobago<span class="localization-form__currency"
  13491.                  >(TTD
  13492.                  $)</span
  13493.                >
  13494.              </a>
  13495.            </li><li class="disclosure-list__item">
  13496.              <a
  13497.                class="disclosure-list__option"
  13498.                href="#"
  13499.                
  13500.                data-value="TA"
  13501.                data-disclosure-option
  13502.              >
  13503.                <span class="f-country-flags f-country-flags--TA"></span>Tristan da Cunha<span class="localization-form__currency"
  13504.                  >(GBP
  13505.                  £)</span
  13506.                >
  13507.              </a>
  13508.            </li><li class="disclosure-list__item">
  13509.              <a
  13510.                class="disclosure-list__option"
  13511.                href="#"
  13512.                
  13513.                data-value="TN"
  13514.                data-disclosure-option
  13515.              >
  13516.                <span class="f-country-flags f-country-flags--TN"></span>Tunisia<span class="localization-form__currency"
  13517.                  >(AUD
  13518.                  $)</span
  13519.                >
  13520.              </a>
  13521.            </li><li class="disclosure-list__item">
  13522.              <a
  13523.                class="disclosure-list__option"
  13524.                href="#"
  13525.                
  13526.                data-value="TR"
  13527.                data-disclosure-option
  13528.              >
  13529.                <span class="f-country-flags f-country-flags--TR"></span>Türkiye<span class="localization-form__currency"
  13530.                  >(AUD
  13531.                  $)</span
  13532.                >
  13533.              </a>
  13534.            </li><li class="disclosure-list__item">
  13535.              <a
  13536.                class="disclosure-list__option"
  13537.                href="#"
  13538.                
  13539.                data-value="TM"
  13540.                data-disclosure-option
  13541.              >
  13542.                <span class="f-country-flags f-country-flags--TM"></span>Turkmenistan<span class="localization-form__currency"
  13543.                  >(AUD
  13544.                  $)</span
  13545.                >
  13546.              </a>
  13547.            </li><li class="disclosure-list__item">
  13548.              <a
  13549.                class="disclosure-list__option"
  13550.                href="#"
  13551.                
  13552.                data-value="TC"
  13553.                data-disclosure-option
  13554.              >
  13555.                <span class="f-country-flags f-country-flags--TC"></span>Turks &amp; Caicos Islands<span class="localization-form__currency"
  13556.                  >(USD
  13557.                  $)</span
  13558.                >
  13559.              </a>
  13560.            </li><li class="disclosure-list__item">
  13561.              <a
  13562.                class="disclosure-list__option"
  13563.                href="#"
  13564.                
  13565.                data-value="TV"
  13566.                data-disclosure-option
  13567.              >
  13568.                <span class="f-country-flags f-country-flags--TV"></span>Tuvalu<span class="localization-form__currency"
  13569.                  >(AUD
  13570.                  $)</span
  13571.                >
  13572.              </a>
  13573.            </li><li class="disclosure-list__item">
  13574.              <a
  13575.                class="disclosure-list__option"
  13576.                href="#"
  13577.                
  13578.                data-value="UM"
  13579.                data-disclosure-option
  13580.              >
  13581.                <span class="f-country-flags f-country-flags--UM"></span>U.S. Outlying Islands<span class="localization-form__currency"
  13582.                  >(USD
  13583.                  $)</span
  13584.                >
  13585.              </a>
  13586.            </li><li class="disclosure-list__item">
  13587.              <a
  13588.                class="disclosure-list__option"
  13589.                href="#"
  13590.                
  13591.                data-value="UG"
  13592.                data-disclosure-option
  13593.              >
  13594.                <span class="f-country-flags f-country-flags--UG"></span>Uganda<span class="localization-form__currency"
  13595.                  >(UGX
  13596.                  USh)</span
  13597.                >
  13598.              </a>
  13599.            </li><li class="disclosure-list__item">
  13600.              <a
  13601.                class="disclosure-list__option"
  13602.                href="#"
  13603.                
  13604.                data-value="UA"
  13605.                data-disclosure-option
  13606.              >
  13607.                <span class="f-country-flags f-country-flags--UA"></span>Ukraine<span class="localization-form__currency"
  13608.                  >(UAH
  13609.                  ₴)</span
  13610.                >
  13611.              </a>
  13612.            </li><li class="disclosure-list__item">
  13613.              <a
  13614.                class="disclosure-list__option"
  13615.                href="#"
  13616.                
  13617.                data-value="AE"
  13618.                data-disclosure-option
  13619.              >
  13620.                <span class="f-country-flags f-country-flags--AE"></span>United Arab Emirates<span class="localization-form__currency"
  13621.                  >(AED
  13622.                  د.إ)</span
  13623.                >
  13624.              </a>
  13625.            </li><li class="disclosure-list__item">
  13626.              <a
  13627.                class="disclosure-list__option"
  13628.                href="#"
  13629.                
  13630.                data-value="GB"
  13631.                data-disclosure-option
  13632.              >
  13633.                <span class="f-country-flags f-country-flags--GB"></span>United Kingdom<span class="localization-form__currency"
  13634.                  >(GBP
  13635.                  £)</span
  13636.                >
  13637.              </a>
  13638.            </li><li class="disclosure-list__item">
  13639.              <a
  13640.                class="disclosure-list__option"
  13641.                href="#"
  13642.                
  13643.                data-value="UY"
  13644.                data-disclosure-option
  13645.              >
  13646.                <span class="f-country-flags f-country-flags--UY"></span>Uruguay<span class="localization-form__currency"
  13647.                  >(UYU
  13648.                  $U)</span
  13649.                >
  13650.              </a>
  13651.            </li><li class="disclosure-list__item">
  13652.              <a
  13653.                class="disclosure-list__option"
  13654.                href="#"
  13655.                
  13656.                data-value="UZ"
  13657.                data-disclosure-option
  13658.              >
  13659.                <span class="f-country-flags f-country-flags--UZ"></span>Uzbekistan<span class="localization-form__currency"
  13660.                  >(UZS
  13661.                  so'm)</span
  13662.                >
  13663.              </a>
  13664.            </li><li class="disclosure-list__item">
  13665.              <a
  13666.                class="disclosure-list__option"
  13667.                href="#"
  13668.                
  13669.                data-value="VU"
  13670.                data-disclosure-option
  13671.              >
  13672.                <span class="f-country-flags f-country-flags--VU"></span>Vanuatu<span class="localization-form__currency"
  13673.                  >(VUV
  13674.                  Vt)</span
  13675.                >
  13676.              </a>
  13677.            </li><li class="disclosure-list__item">
  13678.              <a
  13679.                class="disclosure-list__option"
  13680.                href="#"
  13681.                
  13682.                data-value="VA"
  13683.                data-disclosure-option
  13684.              >
  13685.                <span class="f-country-flags f-country-flags--VA"></span>Vatican City<span class="localization-form__currency"
  13686.                  >(EUR
  13687.                  €)</span
  13688.                >
  13689.              </a>
  13690.            </li><li class="disclosure-list__item">
  13691.              <a
  13692.                class="disclosure-list__option"
  13693.                href="#"
  13694.                
  13695.                data-value="VE"
  13696.                data-disclosure-option
  13697.              >
  13698.                <span class="f-country-flags f-country-flags--VE"></span>Venezuela<span class="localization-form__currency"
  13699.                  >(USD
  13700.                  $)</span
  13701.                >
  13702.              </a>
  13703.            </li><li class="disclosure-list__item">
  13704.              <a
  13705.                class="disclosure-list__option"
  13706.                href="#"
  13707.                
  13708.                data-value="VN"
  13709.                data-disclosure-option
  13710.              >
  13711.                <span class="f-country-flags f-country-flags--VN"></span>Vietnam<span class="localization-form__currency"
  13712.                  >(VND
  13713.                  ₫)</span
  13714.                >
  13715.              </a>
  13716.            </li><li class="disclosure-list__item">
  13717.              <a
  13718.                class="disclosure-list__option"
  13719.                href="#"
  13720.                
  13721.                data-value="WF"
  13722.                data-disclosure-option
  13723.              >
  13724.                <span class="f-country-flags f-country-flags--WF"></span>Wallis &amp; Futuna<span class="localization-form__currency"
  13725.                  >(XPF
  13726.                  Fr)</span
  13727.                >
  13728.              </a>
  13729.            </li><li class="disclosure-list__item">
  13730.              <a
  13731.                class="disclosure-list__option"
  13732.                href="#"
  13733.                
  13734.                data-value="EH"
  13735.                data-disclosure-option
  13736.              >
  13737.                <span class="f-country-flags f-country-flags--EH"></span>Western Sahara<span class="localization-form__currency"
  13738.                  >(MAD
  13739.                  د.م.)</span
  13740.                >
  13741.              </a>
  13742.            </li><li class="disclosure-list__item">
  13743.              <a
  13744.                class="disclosure-list__option"
  13745.                href="#"
  13746.                
  13747.                data-value="YE"
  13748.                data-disclosure-option
  13749.              >
  13750.                <span class="f-country-flags f-country-flags--YE"></span>Yemen<span class="localization-form__currency"
  13751.                  >(YER
  13752.                  ﷼)</span
  13753.                >
  13754.              </a>
  13755.            </li><li class="disclosure-list__item">
  13756.              <a
  13757.                class="disclosure-list__option"
  13758.                href="#"
  13759.                
  13760.                data-value="ZM"
  13761.                data-disclosure-option
  13762.              >
  13763.                <span class="f-country-flags f-country-flags--ZM"></span>Zambia<span class="localization-form__currency"
  13764.                  >(AUD
  13765.                  $)</span
  13766.                >
  13767.              </a>
  13768.            </li><li class="disclosure-list__item">
  13769.              <a
  13770.                class="disclosure-list__option"
  13771.                href="#"
  13772.                
  13773.                data-value="ZW"
  13774.                data-disclosure-option
  13775.              >
  13776.                <span class="f-country-flags f-country-flags--ZW"></span>Zimbabwe<span class="localization-form__currency"
  13777.                  >(USD
  13778.                  $)</span
  13779.                >
  13780.              </a>
  13781.            </li></ul>
  13782.        <input type="hidden" name="country_code" value="AU" data-disclosure-input></form></localization-form>
  13783.  </div>
  13784.  
  13785.  
  13786. </div>
  13787. <ul class="list-unstyled flex gap-x-4 gap-y-2 items-center socials footer__list-social" role="list"><li class="social__item inline-flex">
  13788.      <a href="https://www.facebook.com/profile.php?id=61559873790442" class="social__link inline-flex"><svg
  13789.  aria-hidden="true"
  13790.  focusable="false"
  13791.  role="presentation"
  13792.  class="icon icon-facebook icon--large"
  13793.  viewBox="0 0 24 24"
  13794.  xmlns="http://www.w3.org/2000/svg"
  13795. >
  13796.  <path fill-rule="evenodd" clip-rule="evenodd" d="M4 12.4972C4 16.6986 7.06844 20.1919 11.081 20.9L11.1284 20.8621C11.1126 20.8591 11.0968 20.856 11.081 20.8528V14.8575H8.9567V12.4972H11.081V10.6089C11.081 8.48464 12.45 7.30447 14.3855 7.30447C14.9992 7.30447 15.6601 7.39888 16.2737 7.4933V9.6648H15.188C14.1494 9.6648 13.9134 10.1841 13.9134 10.845V12.4972H16.1793L15.8017 14.8575H13.9134V20.8528C13.8976 20.856 13.8818 20.8591 13.866 20.8621L13.9134 20.9C17.926 20.1919 20.9944 16.6986 20.9944 12.4972C20.9944 7.82374 17.1707 4 12.4972 4C7.82374 4 4 7.82374 4 12.4972Z" fill="currentColor"/>
  13797. </svg>
  13798. <span class="visually-hidden">Facebook</span>
  13799.      </a>
  13800.    </li><li class="social__item inline-flex">
  13801.      <a href="http://www.instagram.com/mymimi.com.au" class="social__link inline-flex"><svg
  13802.  aria-hidden="true"
  13803.  focusable="false"
  13804.  role="presentation"
  13805.  class="icon icon-instagram icon--large"
  13806.  viewBox="0 0 24 24"
  13807.  xmlns="http://www.w3.org/2000/svg"
  13808. >
  13809.  <path d="M11.7255 3C9.35597 3 9.0586 3.01036 8.12796 3.05271C7.19914 3.09525 6.56515 3.2423 6.0104 3.45806C5.43656 3.68091 4.9498 3.97902 4.46485 4.46416C3.97953 4.94913 3.68144 5.43591 3.45787 6.00958C3.24157 6.56453 3.09434 7.19872 3.05253 8.12721C3.01091 9.05788 3 9.35544 3 11.725C3 14.0946 3.01054 14.391 3.05271 15.3217C3.09543 16.2506 3.24248 16.8846 3.45805 17.4393C3.68107 18.0132 3.97917 18.5 4.4643 18.9849C4.94907 19.4703 5.43584 19.7691 6.00931 19.9919C6.56442 20.2077 7.1986 20.3548 8.12724 20.3973C9.05787 20.4396 9.35506 20.45 11.7244 20.45C14.094 20.45 14.3905 20.4396 15.3211 20.3973C16.25 20.3548 16.8847 20.2077 17.4398 19.9919C18.0135 19.7691 18.4995 19.4703 18.9843 18.9849C19.4696 18.5 19.7677 18.0132 19.9912 17.4395C20.2057 16.8846 20.353 16.2504 20.3966 15.3219C20.4384 14.3912 20.4493 14.0946 20.4493 11.725C20.4493 9.35544 20.4384 9.05806 20.3966 8.12739C20.353 7.19854 20.2057 6.56453 19.9912 6.00976C19.7677 5.43591 19.4696 4.94913 18.9843 4.46416C18.4989 3.97884 18.0136 3.68073 17.4393 3.45806C16.8831 3.2423 16.2487 3.09525 15.3199 3.05271C14.3892 3.01036 14.093 3 11.7227 3H11.7255ZM10.9428 4.57232C11.1751 4.57195 11.4343 4.57232 11.7255 4.57232C14.055 4.57232 14.3311 4.58068 15.251 4.62249C16.1016 4.66139 16.5633 4.80353 16.8709 4.92295C17.278 5.08109 17.5683 5.27014 17.8735 5.57551C18.1789 5.88089 18.3679 6.17172 18.5264 6.57889C18.6458 6.88608 18.7881 7.34778 18.8269 8.19846C18.8687 9.11822 18.8777 9.39452 18.8777 11.723C18.8777 14.0515 18.8687 14.3278 18.8269 15.2475C18.788 16.0982 18.6458 16.5599 18.5264 16.8671C18.3683 17.2743 18.1789 17.5642 17.8735 17.8694C17.5681 18.1748 17.2782 18.3638 16.8709 18.522C16.5637 18.6419 16.1016 18.7837 15.251 18.8226C14.3313 18.8644 14.055 18.8735 11.7255 18.8735C9.39578 18.8735 9.11968 18.8644 8.19994 18.8226C7.34928 18.7833 6.8876 18.6412 6.57987 18.5218C6.17271 18.3636 5.88189 18.1746 5.57652 17.8692C5.27116 17.5638 5.08212 17.2737 4.92362 16.8664C4.8042 16.5592 4.66188 16.0975 4.62316 15.2468C4.58136 14.3271 4.573 14.0508 4.573 11.7208C4.573 9.39088 4.58136 9.11604 4.62316 8.19628C4.66206 7.3456 4.8042 6.8839 4.92362 6.57634C5.08176 6.16917 5.27116 5.87834 5.57652 5.57297C5.88189 5.26759 6.17271 5.07855 6.57987 4.92005C6.88741 4.80008 7.34928 4.6583 8.19994 4.61921C9.0048 4.58286 9.31671 4.57195 10.9428 4.57014V4.57232ZM16.3827 6.02103C15.8046 6.02103 15.3357 6.48945 15.3357 7.06767C15.3357 7.6457 15.8046 8.11467 16.3827 8.11467C16.9607 8.11467 17.4296 7.6457 17.4296 7.06767C17.4296 6.48964 16.9607 6.02067 16.3827 6.02067V6.02103ZM11.7255 7.24435C9.25109 7.24435 7.24495 9.25055 7.24495 11.725C7.24495 14.1994 9.25109 16.2047 11.7255 16.2047C14.1998 16.2047 16.2053 14.1994 16.2053 11.725C16.2053 9.25055 14.1997 7.24435 11.7253 7.24435H11.7255ZM11.7255 8.81667C13.3315 8.81667 14.6337 10.1187 14.6337 11.725C14.6337 13.3311 13.3315 14.6333 11.7255 14.6333C10.1192 14.6333 8.81722 13.3311 8.81722 11.725C8.81722 10.1187 10.1192 8.81667 11.7255 8.81667Z" fill="currentColor"/>
  13810. </svg>
  13811. <span class="visually-hidden">Instagram</span>
  13812.      </a>
  13813.    </li><li class="social__item inline-flex">
  13814.      <a href="https://www.tiktok.com/@mymimi.com.au" class="social__link inline-flex"><svg
  13815.  aria-hidden="true"
  13816.  focusable="false"
  13817.  role="presentation"
  13818.  class="icon icon-tiktok icon--large"
  13819.  fill="none"
  13820.  viewBox="0 0 24 24"
  13821.  xmlns="http://www.w3.org/2000/svg"
  13822. >
  13823.  <path d="M10.2664 17.2589C11.6014 17.2589 12.6837 16.3032 12.6837 14.8417V4H15.5826C15.42 5.97723 17.3855 7.88718 19.5532 7.8435V10.5695C17.6994 10.5695 16.123 9.78561 15.5743 9.35059V14.8417C15.5743 17.2589 13.6728 20 10.2664 20C6.8601 20 5 17.2589 5 14.8417C5 11.43 8.61044 9.45136 11.0017 9.93497V12.7115C10.8814 12.669 10.5712 12.6061 10.3069 12.6061C8.96086 12.5564 7.8492 13.6482 7.8492 14.8417C7.8492 16.1767 8.93143 17.2589 10.2664 17.2589Z" fill="currentColor"/>
  13824. </svg>
  13825. <span class="visually-hidden">TikTok</span>
  13826.      </a>
  13827.    </li><li class="social__item inline-flex">
  13828.      <a href="https://www.youtube.com/@mymimiau" class="social__link inline-flex"><svg
  13829.  aria-hidden="true"
  13830.  focusable="false"
  13831.  role="presentation"
  13832.  class="icon icon-youtube icon--large"
  13833.  viewBox="0 0 24 24"
  13834.  xmlns="http://www.w3.org/2000/svg"
  13835. >
  13836.  <path fill-rule="evenodd" clip-rule="evenodd" d="M19.8212 5.42824C20.6776 5.65882 21.3529 6.33412 21.5835 7.19059C22.0118 8.75529 21.9953 12.0165 21.9953 12.0165C21.9953 12.0165 21.9953 15.2612 21.5835 16.8259C21.3529 17.6824 20.6776 18.3576 19.8212 18.5882C18.2565 19 11.9976 19 11.9976 19C11.9976 19 5.75529 19 4.17412 18.5718C3.31765 18.3412 2.64235 17.6659 2.41176 16.8094C2 15.2612 2 12 2 12C2 12 2 8.75529 2.41176 7.19059C2.64235 6.33412 3.33412 5.64235 4.17412 5.41176C5.73882 5 11.9976 5 11.9976 5C11.9976 5 18.2565 5 19.8212 5.42824ZM15.2091 11.8857L10.0044 14.8834V8.88807L15.2091 11.8857Z" fill="currentColor"/>
  13837. </svg>
  13838. <span class="visually-hidden">YouTube</span>
  13839.      </a>
  13840.    </li></ul>
  13841. </div>
  13842.        
  13843.        <div class="footer__bottom-row flex justify-between items-center">
  13844.          <div class="footer__copyright">
  13845.            <p class="footer__copyright-content">
  13846.              &copy; 2025
  13847.              <a class="link-underline" href="/">my mimi</a>.
  13848.              <span><a target="_blank" rel="nofollow" href="https://www.shopify.com?utm_campaign=poweredby&amp;utm_medium=shopify&amp;utm_source=onlinestore">Powered by Shopify</a></span>
  13849.            </p></div>
  13850.          <div class="footer__info flex items-center">
  13851.            
  13852.              <ul class="linklist linklist--horizontal list-unstyled">
  13853.                
  13854.                  <li>
  13855.                    <a href="/policies/terms-of-service" class="reversed-link">Terms of Service</a>
  13856.                  </li>
  13857.                
  13858.                  <li>
  13859.                    <a href="/policies/shipping-policy" class="reversed-link">Shipping Policy</a>
  13860.                  </li>
  13861.                
  13862.                  <li>
  13863.                    <a href="/policies/refund-policy" class="reversed-link">Refund Policy</a>
  13864.                  </li>
  13865.                
  13866.                  <li>
  13867.                    <a href="/policies/privacy-policy" class="reversed-link">Privacy Policy</a>
  13868.                  </li>
  13869.                
  13870.                  <li>
  13871.                    <a href="/pages/articles" class="reversed-link">Articles</a>
  13872.                  </li>
  13873.                
  13874.                  <li>
  13875.                    <a href="/pages/my-mimi-menstrual-disc-reviews" class="reversed-link">Reviews</a>
  13876.                  </li>
  13877.                
  13878.                  <li>
  13879.                    <a href="/pages/about" class="reversed-link">About</a>
  13880.                  </li>
  13881.                
  13882.                  <li>
  13883.                    <a href="/pages/contact" class="reversed-link">Contact</a>
  13884.                  </li>
  13885.                
  13886.              </ul>
  13887.            
  13888. <div class="footer__payment">
  13889.                <span class="visually-hidden">Payment methods</span>
  13890.                <ul class="list list-payment" role="list"><li class="list-payment__item">
  13891.                      <svg class="icon icon--full-color" 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>
  13892.  
  13893.                    </li><li class="list-payment__item">
  13894.                      <svg class="icon icon--full-color" 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>
  13895.  
  13896.                    </li><li class="list-payment__item">
  13897.                      <svg class="icon icon--full-color" 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>
  13898.  
  13899.                    </li><li class="list-payment__item">
  13900.                      <svg class="icon icon--full-color" 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>
  13901.                    </li><li class="list-payment__item">
  13902.                      <svg class="icon icon--full-color" 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>
  13903.                    </li><li class="list-payment__item">
  13904.                      <svg class="icon icon--full-color" 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>
  13905.  
  13906.                    </li><li class="list-payment__item">
  13907.                      <svg class="icon icon--full-color" viewBox="-36 25 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-unionpay"><title id="pi-unionpay">Union Pay</title><path fill="#005B9A" d="M-36 46.8v.7-.7zM-18.3 25v24h-7.2c-1.3 0-2.1-1-1.8-2.3l4.4-19.4c.3-1.3 1.9-2.3 3.2-2.3h1.4zm12.6 0c-1.3 0-2.9 1-3.2 2.3l-4.5 19.4c-.3 1.3.5 2.3 1.8 2.3h-4.9V25h10.8z"/><path fill="#E9292D" d="M-19.7 25c-1.3 0-2.9 1.1-3.2 2.3l-4.4 19.4c-.3 1.3.5 2.3 1.8 2.3h-8.9c-.8 0-1.5-.6-1.5-1.4v-21c0-.8.7-1.6 1.5-1.6h14.7z"/><path fill="#0E73B9" d="M-5.7 25c-1.3 0-2.9 1.1-3.2 2.3l-4.4 19.4c-.3 1.3.5 2.3 1.8 2.3H-26h.5c-1.3 0-2.1-1-1.8-2.3l4.4-19.4c.3-1.3 1.9-2.3 3.2-2.3h14z"/><path fill="#059DA4" d="M2 26.6v21c0 .8-.6 1.4-1.5 1.4h-12.1c-1.3 0-2.1-1.1-1.8-2.3l4.5-19.4C-8.6 26-7 25-5.7 25H.5c.9 0 1.5.7 1.5 1.6z"/><path fill="#fff" d="M-21.122 38.645h.14c.14 0 .28-.07.28-.14l.42-.63h1.19l-.21.35h1.4l-.21.63h-1.68c-.21.28-.42.42-.7.42h-.84l.21-.63m-.21.91h3.01l-.21.7h-1.19l-.21.7h1.19l-.21.7h-1.19l-.28 1.05c-.07.14 0 .28.28.21h.98l-.21.7h-1.89c-.35 0-.49-.21-.35-.63l.35-1.33h-.77l.21-.7h.77l.21-.7h-.7l.21-.7zm4.83-1.75v.42s.56-.42 1.12-.42h1.96l-.77 2.66c-.07.28-.35.49-.77.49h-2.24l-.49 1.89c0 .07 0 .14.14.14h.42l-.14.56h-1.12c-.42 0-.56-.14-.49-.35l1.47-5.39h.91zm1.68.77h-1.75l-.21.7s.28-.21.77-.21h1.05l.14-.49zm-.63 1.68c.14 0 .21 0 .21-.14l.14-.35h-1.75l-.14.56 1.54-.07zm-1.19.84h.98v.42h.28c.14 0 .21-.07.21-.14l.07-.28h.84l-.14.49c-.07.35-.35.49-.77.56h-.56v.77c0 .14.07.21.35.21h.49l-.14.56h-1.19c-.35 0-.49-.14-.49-.49l.07-2.1zm4.2-2.45l.21-.84h1.19l-.07.28s.56-.28 1.05-.28h1.47l-.21.84h-.21l-1.12 3.85h.21l-.21.77h-.21l-.07.35h-1.19l.07-.35h-2.17l.21-.77h.21l1.12-3.85h-.28m1.26 0l-.28 1.05s.49-.21.91-.28c.07-.35.21-.77.21-.77h-.84zm-.49 1.54l-.28 1.12s.56-.28.98-.28c.14-.42.21-.77.21-.77l-.91-.07zm.21 2.31l.21-.77h-.84l-.21.77h.84zm2.87-4.69h1.12l.07.42c0 .07.07.14.21.14h.21l-.21.7h-.77c-.28 0-.49-.07-.49-.35l-.14-.91zm-.35 1.47h3.57l-.21.77h-1.19l-.21.7h1.12l-.21.77h-1.26l-.28.42h.63l.14.84c0 .07.07.14.21.14h.21l-.21.7h-.7c-.35 0-.56-.07-.56-.35l-.14-.77-.56.84c-.14.21-.35.35-.63.35h-1.05l.21-.7h.35c.14 0 .21-.07.35-.21l.84-1.26h-1.05l.21-.77h1.19l.21-.7h-1.19l.21-.77zm-19.74-5.04c-.14.7-.42 1.19-.91 1.54-.49.35-1.12.56-1.89.56-.7 0-1.26-.21-1.54-.56-.21-.28-.35-.56-.35-.98 0-.14 0-.35.07-.56l.84-3.92h1.19l-.77 3.92v.28c0 .21.07.35.14.49.14.21.35.28.7.28s.7-.07.91-.28c.21-.21.42-.42.49-.77l.77-3.92h1.19l-.84 3.92m1.12-1.54h.84l-.07.49.14-.14c.28-.28.63-.42 1.05-.42.35 0 .63.14.77.35.14.21.21.49.14.91l-.49 2.38h-.91l.42-2.17c.07-.28.07-.49 0-.56-.07-.14-.21-.14-.35-.14-.21 0-.42.07-.56.21-.14.14-.28.35-.28.63l-.42 2.03h-.91l.63-3.57m9.8 0h.84l-.07.49.14-.14c.28-.28.63-.42 1.05-.42.35 0 .63.14.77.35s.21.49.14.91l-.49 2.38h-.91l.42-2.24c.07-.21 0-.42-.07-.49-.07-.14-.21-.14-.35-.14-.21 0-.42.07-.56.21-.14.14-.28.35-.28.63l-.42 2.03h-.91l.7-3.57m-5.81 0h.98l-.77 3.5h-.98l.77-3.5m.35-1.33h.98l-.21.84h-.98l.21-.84zm1.4 4.55c-.21-.21-.35-.56-.35-.98v-.21c0-.07 0-.21.07-.28.14-.56.35-1.05.7-1.33.35-.35.84-.49 1.33-.49.42 0 .77.14 1.05.35.21.21.35.56.35.98v.21c0 .07 0 .21-.07.28-.14.56-.35.98-.7 1.33-.35.35-.84.49-1.33.49-.35 0-.7-.14-1.05-.35m1.89-.7c.14-.21.28-.49.35-.84v-.35c0-.21-.07-.35-.14-.49a.635.635 0 0 0-.49-.21c-.28 0-.49.07-.63.28-.14.21-.28.49-.35.84v.28c0 .21.07.35.14.49.14.14.28.21.49.21.28.07.42 0 .63-.21m6.51-4.69h2.52c.49 0 .84.14 1.12.35.28.21.35.56.35.91v.28c0 .07 0 .21-.07.28-.07.49-.35.98-.7 1.26-.42.35-.84.49-1.4.49h-1.4l-.42 2.03h-1.19l1.19-5.6m.56 2.59h1.12c.28 0 .49-.07.7-.21.14-.14.28-.35.35-.63v-.28c0-.21-.07-.35-.21-.42-.14-.07-.35-.14-.7-.14h-.91l-.35 1.68zm8.68 3.71c-.35.77-.7 1.26-.91 1.47-.21.21-.63.7-1.61.7l.07-.63c.84-.28 1.26-1.4 1.54-1.96l-.28-3.78h1.19l.07 2.38.91-2.31h1.05l-2.03 4.13m-2.94-3.85l-.42.28c-.42-.35-.84-.56-1.54-.21-.98.49-1.89 4.13.91 2.94l.14.21h1.12l.7-3.29-.91.07m-.56 1.82c-.21.56-.56.84-.91.77-.28-.14-.35-.63-.21-1.19.21-.56.56-.84.91-.77.28.14.35.63.21 1.19"/></svg>
  13908.                    </li><li class="list-payment__item">
  13909.                      <svg class="icon icon--full-color" 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>
  13910.                    </li></ul>
  13911.              </div></div>
  13912.        </div>
  13913.      </motion-element>
  13914.    </div>
  13915.  </div>
  13916. </footer>
  13917.  
  13918. </div><div id="shopify-section-sections--18997227847892__mobile_sticky_bar_aYhgJK" class="shopify-section shopify-section-group-footer-group"><script src="//mymimi.com.au/cdn/shop/t/11/assets/mobile-sticky-bar.js?v=7303052032413197921738695060" defer="defer"></script>
  13919.  <style data-shopify>
  13920.    .cart-icon-wrap {
  13921.      width: 4rem;
  13922.    }
  13923.    .mobile-sticky-bar {
  13924.      position: fixed;
  13925.      bottom: 0;
  13926.      left: 0;
  13927.      width: 100%;
  13928.      z-index: 11;
  13929.      background: rgba(var(--color-background));
  13930.      box-shadow: -1px -2px 10px rgb(0 0 0 / 8%);
  13931.      max-width: 100vw;
  13932.      will-change: transform;
  13933.      transition: transform 0.3s;
  13934.    }
  13935.    .mobile-sticky-bar.up {
  13936.      transform: translateY(0);
  13937.    }
  13938.    .mobile-sticky-bar.down {
  13939.      transform: translateY(100%);
  13940.    }
  13941.    .mobile-sticky-bar__link {
  13942.      padding: 1rem 0.5rem;
  13943.      min-height: 5rem !important;
  13944.      overflow: hidden;
  13945.      gap: 0.5rem;
  13946.    }
  13947.    .mobile-sticky-bar__link + .mobile-sticky-bar__link {
  13948.      border-left: 0.1rem solid rgb(var(--color-border));
  13949.    }
  13950.    .mobile-sticky-bar__text {
  13951.      line-height: 1;
  13952.      overflow: hidden;
  13953.      text-overflow: ellipsis;
  13954.      width: 100%;
  13955.      white-space: nowrap;
  13956.      flex: 0 0 auto;
  13957.    }
  13958.  
  13959.    @media (max-width: 767px) {
  13960.      body.mobile-sticky-bar-enabled {
  13961.        padding-bottom: calc(var(--mobile-sticky-bar-height, 6.5rem) + 1rem);
  13962.      }
  13963.    }
  13964.  </style>
  13965. <mobile-sticky-bar class="mobile-sticky-bar md:hidden up" data-section-type="mobile-sticky-bar">
  13966.      <div class="mobile-sticky-bar__wrapper f-grid f-grid-5-cols">
  13967.                <a
  13968.                  class="f-column mobile-sticky-bar__link mobile-sticky-bar__link flex flex-col items-center justify-center"
  13969.                  href="/collections/all"
  13970.                  
  13971.                >
  13972.                  
  13973.                    
  13974. <svg
  13975.    class="icon icon-tag non-scaling-stroke icon--large"
  13976.    aria-hidden="true"
  13977.    focusable="false"
  13978.    xmlns="http://www.w3.org/2000/svg"
  13979.    width="20"
  13980.    height="20"
  13981.    viewBox="0 0 20 20"
  13982.    fill="none"
  13983.  ><path d="M3.30781 10.8078C3.19082 10.6907 3.12508 10.5319 3.125 10.3664V3.125H10.3664C10.5319 3.12508 10.6907 3.19082 10.8078 3.30781L18.5672 11.0672C18.6843 11.1844 18.7501 11.3433 18.7501 11.509C18.7501 11.6747 18.6843 11.8336 18.5672 11.9508L11.9531 18.5672C11.8359 18.6843 11.677 18.7501 11.5113 18.7501C11.3456 18.7501 11.1867 18.6843 11.0695 18.5672L3.30781 10.8078Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  13984.        <path d="M6.5625 7.5C7.08027 7.5 7.5 7.08027 7.5 6.5625C7.5 6.04473 7.08027 5.625 6.5625 5.625C6.04473 5.625 5.625 6.04473 5.625 6.5625C5.625 7.08027 6.04473 7.5 6.5625 7.5Z" fill="currentColor"/></svg>
  13985. <span class="mobile-sticky-bar__text text-center text-sm">products</span>
  13986.                </a><a
  13987.                href="/cart"
  13988.                class="f-column cart-drawer-button mobile-sticky-bar__link mobile-sticky-bar__cart flex flex-col items-center justify-center"
  13989.                aria-controls="CartDrawer"
  13990.              >
  13991.                <span class="cart-icon-wrap relative flex justify-center"><svg
  13992.    viewBox="0 0 24 24"
  13993.    fill="none"
  13994.    class="icon icon-shopping-cart icon--large"
  13995.    xmlns="http://www.w3.org/2000/svg"
  13996.  >
  13997.    <path d="M7.5 21.75C8.32843 21.75 9 21.0784 9 20.25C9 19.4216 8.32843 18.75 7.5 18.75C6.67157 18.75 6 19.4216 6 20.25C6 21.0784 6.67157 21.75 7.5 21.75Z" fill="currentColor"/>
  13998.    <path d="M17.25 21.75C18.0784 21.75 18.75 21.0784 18.75 20.25C18.75 19.4216 18.0784 18.75 17.25 18.75C16.4216 18.75 15.75 19.4216 15.75 20.25C15.75 21.0784 16.4216 21.75 17.25 21.75Z" fill="currentColor"/>
  13999.    <path d="M3.96469 6.75H21L18.3262 15.4416C18.2318 15.7482 18.0415 16.0165 17.7833 16.207C17.5252 16.3975 17.2127 16.5002 16.8919 16.5H7.88156C7.55556 16.5001 7.23839 16.3941 6.97806 16.1978C6.71772 16.0016 6.5284 15.7259 6.43875 15.4125L3.04781 3.54375C3.00301 3.38711 2.90842 3.24932 2.77835 3.15122C2.64828 3.05311 2.4898 3.00003 2.32687 3H0.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14000.  </svg><cart-count
  14001.                    class="cart-count cart-count--absolute font-body-bolder"
  14002.                    aria-label="0 items"
  14003.                    
  14004.                      hidden
  14005.                    
  14006.                  >0</cart-count>
  14007.                </span>
  14008.                <span class="mobile-sticky-bar__text text-center text-sm">cart</span>
  14009.              </a><a
  14010.                class="f-column mobile-sticky-bar__link mobile-sticky-bar__home flex flex-col items-center justify-center"
  14011.                href="https://mymimi.com.au"
  14012.                
  14013.              ><svg
  14014.  class="icon icon-home icon--large"
  14015.  viewBox="0 0 24 24"
  14016.  fill="none"
  14017.  xmlns="http://www.w3.org/2000/svg"
  14018. >
  14019.  <path d="M14.25 19.5V15C14.25 14.801 14.171 14.6103 14.0303 14.4696C13.8897 14.329 13.6989 14.25 13.5 14.25H10.5C10.3011 14.25 10.1103 14.329 9.96967 14.4696C9.82902 14.6103 9.75 14.801 9.75 15V19.5C9.75 19.6989 9.67098 19.8896 9.53033 20.0303C9.38968 20.1709 9.19891 20.25 9 20.25H4.5C4.30109 20.25 4.11032 20.1709 3.96967 20.0303C3.82902 19.8896 3.75 19.6989 3.75 19.5V10.8281C3.75168 10.7243 3.77411 10.6219 3.81597 10.5269C3.85783 10.4319 3.91828 10.3462 3.99375 10.275L11.4937 3.45933C11.632 3.33284 11.8126 3.2627 12 3.2627C12.1874 3.2627 12.368 3.33284 12.5062 3.45933L20.0062 10.275C20.0817 10.3462 20.1422 10.4319 20.184 10.5269C20.2259 10.6219 20.2483 10.7243 20.25 10.8281V19.5C20.25 19.6989 20.171 19.8896 20.0303 20.0303C19.8897 20.1709 19.6989 20.25 19.5 20.25H15C14.8011 20.25 14.6103 20.1709 14.4697 20.0303C14.329 19.8896 14.25 19.6989 14.25 19.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14020. </svg>
  14021. <span class="mobile-sticky-bar__text text-center text-sm">home</span>
  14022.              </a>
  14023.                <a
  14024.                  class="f-column mobile-sticky-bar__link mobile-sticky-bar__link flex flex-col items-center justify-center"
  14025.                  href="https://mymimi.com.au/pages/frequently-asked-questions"
  14026.                  
  14027.                >
  14028.                  
  14029.                    
  14030. <svg
  14031.    class="icon icon-check-circle non-scaling-stroke icon--large"
  14032.    aria-hidden="true"
  14033.    focusable="false"
  14034.    xmlns="http://www.w3.org/2000/svg"
  14035.    width="20"
  14036.    height="20"
  14037.    viewBox="0 0 20 20"
  14038.    fill="none"
  14039.  ><path d="M6.875 10.625L8.75 12.5L13.125 8.125" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14040.        <path d="M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
  14041. <span class="mobile-sticky-bar__text text-center text-sm">faq</span>
  14042.                </a><a
  14043.                href="/search"
  14044.                class="f-column search-drawer-button mobile-sticky-bar__link mobile-sticky-bar__search flex flex-col items-center justify-center"
  14045.                aria-controls="SearchDrawer"
  14046.              ><svg
  14047.  xmlns="http://www.w3.org/2000/svg"
  14048.  class="icon icon-search icon--large"
  14049.  viewBox="0 0 24 24"
  14050.  fill="none"
  14051. >
  14052.  <path d="M10.875 18.75C15.2242 18.75 18.75 15.2242 18.75 10.875C18.75 6.52576 15.2242 3 10.875 3C6.52576 3 3 6.52576 3 10.875C3 15.2242 6.52576 18.75 10.875 18.75Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14053.  <path d="M16.4434 16.4453L20.9997 21.0016" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14054. </svg>
  14055. <span class="mobile-sticky-bar__text text-center text-sm">search</span>
  14056.              </a></div>
  14057.    </mobile-sticky-bar>
  14058.    <div id="mobileNavStatic" class="no-empty"></div>
  14059. </div>
  14060. <!-- END sections: footer-group -->
  14061.    </div>
  14062.  
  14063.    <!-- BEGIN sections: overlay-group -->
  14064. <div id="shopify-section-sections--18997227913428__cart-drawer" class="shopify-section shopify-section-group-overlay-group"><link
  14065.      rel="stylesheet"
  14066.      href="//mymimi.com.au/cdn/shop/t/11/assets/cart.css?v=69615393273473763031738695059"
  14067.      media="print"
  14068.      fetchpriority="low"
  14069.      onload="this.media='all'"
  14070.    ><script src="//mymimi.com.au/cdn/shop/t/11/assets/cart.js?v=43136902408170861241738695059" defer="defer"></script><cart-drawer
  14071.    id="CartDrawer"
  14072.    class="drawer cart-drawer drawer--right"
  14073.    data-section-id="sections--18997227913428__cart-drawer"
  14074.    shopify-design-mode
  14075.    hidden
  14076.  >
  14077.    <div class="fixed-overlay" aria-controls="CartDrawer"></div>
  14078.    <div class="drawer__inner">
  14079.      <button
  14080.        class="drawer__close-btn z-1"
  14081.        aria-controls="CartDrawer"
  14082.        type="button"
  14083.        aria-label="Cart"
  14084.      >
  14085.        <svg
  14086.  xmlns="http://www.w3.org/2000/svg"
  14087.  aria-hidden="true"
  14088.  focusable="false"
  14089.  class="icon icon-close icon--large"
  14090.  fill="none"
  14091.  viewBox="0 0 24 24"
  14092. >
  14093.  <path d="M18.75 5.13496L5.25 18.8544" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14094.  <path d="M18.75 18.8544L5.25 5.13496" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14095. </svg>
  14096.  
  14097.      </button>
  14098.      <div id="CartDrawer-sections--18997227913428__cart-drawer" class="drawer__content flex flex-col h-full w-full">
  14099.        <div class="drawer__header cart-drawer__header flex flex-col gap-5 items-start">
  14100.          <h2 class="drawer__heading h3 flex items-center gap-3">
  14101.            <span>Your cart</span>
  14102.            <cart-count
  14103.              class="cart-count cart-count--medium font-body-bolder"
  14104.              aria-label="0 items"
  14105.              
  14106.                hidden
  14107.              
  14108.            >0</cart-count>
  14109.          </h2><free-shipping-goal
  14110.  data-cart-total="0"
  14111.  data-minimum-amount="85"
  14112.  class="free-shipping-goal grid gap-3 w-full"
  14113. >
  14114.  <span class="free-shipping-goal__label free-shipping-goal__label--success">You are eligible for free shipping.</span>
  14115.  <span class="free-shipping-goal__label free-shipping-goal__label--default">Spend <strong data-left-to-spend>$0.00</strong> more to reach free shipping!</span>
  14116.  <progress-bar
  14117.    class="progress-bar"
  14118.  ></progress-bar>
  14119. </free-shipping-goal>
  14120. </div>
  14121.        <div
  14122.          id="CartDrawerEmpty-sections--18997227913428__cart-drawer"
  14123.          class="drawer__body flex-grow v-scrollable"
  14124.        >
  14125.          <div class="cart-drawer__empty text-center grid gap-10">
  14126.            <div class="grid gap-3">
  14127.              <p class="h4">Your cart is currently empty.</p><div class="rte"><p></p><p><strong>A single menstrual disc will save you </strong></p><p><strong>up to $1,200 in the next 5 years</strong></p></div></div><ul class="recommendation-collection flex flex-col gap-4" role="list"><li class="recommendation-collection-item blocks-radius flex-grow flex items-center">
  14128.                    <a href="/collections/featured-collection" class="w-full flex items-center gap-3">
  14129.                      <div class="recommendation-collection-item__image blocks-radius-sm media-wrapper"><img src="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=2000" alt="" srcset="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=180 180w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=360 360w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&amp;width=540 540w" width="2000" height="2000" loading="lazy" is="image-lazy"></div>
  14130.                      <div class="recommendation-collection-item__content flex items-center justify-between flex-grow">
  14131.                        <h3 class="recommendation-collection-item__title h5 font-body-bolder">
  14132.                          featured collection
  14133.                        </h3>
  14134.                        <button
  14135.                          class="btn btn--icon-circle btn--secondary shrink-0"
  14136.                          aria-label="featured collection"
  14137.                        >
  14138.                          <svg
  14139.                            class="icon icon--medium rtl-flip-x"
  14140.                            width="20"
  14141.                            height="20"
  14142.                            viewBox="0 0 20 20"
  14143.                            fill="none"
  14144.                            xmlns="http://www.w3.org/2000/svg"
  14145.                          >
  14146.                            <path d="M5 15L15 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14147.                            <path d="M6.875 5H15V13.125" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14148.                          </svg>
  14149.                        </button>
  14150.                      </div>
  14151.                    </a>
  14152.                  </li></ul></div>
  14153.        </div>
  14154.        <div
  14155.          id="CartDrawerBody-sections--18997227913428__cart-drawer"
  14156.          class="drawer__body cart-drawer__body flex-grow v-scrollable hidden"
  14157.        >
  14158.          <div class="flex flex-col gap-8"><cart-items>
  14159.              <ul role="list" class="flex flex-col gap-8"></ul>
  14160.            </cart-items>
  14161.          </div>
  14162.        </div>
  14163.        <div
  14164.          id="CartDrawerFooter-sections--18997227913428__cart-drawer"
  14165.          class="drawer__footer cart-drawer__footer grid gap-4 hidden"
  14166.        >
  14167.          <div class="drawer__footer-head"><div class="flex gap-6 cart-drawer__addons"><button
  14168.                    type="button"
  14169.                    class="btn--inherit flex gap-2 items-center justify-center"
  14170.                    aria-controls="CartNote-sections--18997227913428__cart-drawer"
  14171.                    aria-expanded="false"
  14172.                  ><svg
  14173.  xmlns="http://www.w3.org/2000/svg"
  14174.  class="icon icon-pencil icon--medium"
  14175.  viewBox="0 0 20 20"
  14176.  fill="none"
  14177. >
  14178.  <path d="M7.24141 16.8751H3.75C3.58424 16.8751 3.42527 16.8093 3.30806 16.692C3.19085 16.5748 3.125 16.4159 3.125 16.2501V12.7587C3.12508 12.5932 3.19082 12.4344 3.30781 12.3173L12.9422 2.68291C13.0594 2.56579 13.2183 2.5 13.384 2.5C13.5497 2.5 13.7086 2.56579 13.8258 2.68291L17.3172 6.17198C17.4343 6.28917 17.5001 6.44808 17.5001 6.61377C17.5001 6.77946 17.4343 6.93837 17.3172 7.05557L7.68281 16.6923C7.56569 16.8093 7.40695 16.875 7.24141 16.8751Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14179.  <path d="M10.625 5L15 9.375" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14180. </svg>
  14181. <span class="reversed-link">Order note</span>
  14182.                  </button><button
  14183.                    type="button"
  14184.                    class="btn--inherit flex gap-2 items-center justify-center"
  14185.                    aria-controls="ShippingCalculator-sections--18997227913428__cart-drawer"
  14186.                    aria-expanded="false"
  14187.                  ><svg
  14188.  xmlns="http://www.w3.org/2000/svg"
  14189.  class="icon icon-clock icon--medium"
  14190.  viewBox="0 0 20 20"
  14191.  fill="none"
  14192. >
  14193.  <path d="M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14194.  <path d="M10 5.625V10H14.375" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14195. </svg>
  14196. <span class="reversed-link">Estimate Shipping</span>
  14197.                  </button><modal-component
  14198.                    id="CartNote-sections--18997227913428__cart-drawer"
  14199.                    class="drawer cart-addons-drawer drawer--bottom"
  14200.                    hidden
  14201.                  >
  14202.                    <div class="fixed-overlay absolute" aria-controls="CartNote-sections--18997227913428__cart-drawer"></div>
  14203.                    <div class="drawer__inner">
  14204.                      <button aria-controls="CartNote-sections--18997227913428__cart-drawer" class="drawer__close-btn z-1"><svg
  14205.  xmlns="http://www.w3.org/2000/svg"
  14206.  aria-hidden="true"
  14207.  focusable="false"
  14208.  class="icon icon-close icon--medium"
  14209.  fill="none"
  14210.  viewBox="0 0 24 24"
  14211. >
  14212.  <path d="M18.75 5.13496L5.25 18.8544" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14213.  <path d="M18.75 18.8544L5.25 5.13496" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14214. </svg>
  14215. </button>
  14216.                      <div class="drawer__content cart-addons-drawer__content grid gap-5">
  14217.                        <h4>Order note</h4>
  14218.                        <cart-note class="flex flex-col items-start gap-5">
  14219.                          <div class="form-field w-full">
  14220.                            <textarea
  14221.                              name="note"
  14222.                              class="form-control form-control--textarea"
  14223.                              rows="5"
  14224.                              placeholder="Order special instructions"
  14225.                              id="CartNoteForm-sections--18997227913428__cart-drawer"
  14226.                            ></textarea>
  14227.                            <label class="visually-hidden" for="CartNoteForm-sections--18997227913428__cart-drawer">Order note</label>
  14228.                          </div>
  14229.                          <button
  14230.                            class="btn btn--primary"
  14231.                            type="button"
  14232.                            aria-controls="CartNote-sections--18997227913428__cart-drawer"
  14233.                            aria-expanded="false"
  14234.                          >
  14235.                            <span>Apply</span>
  14236.                          </button>
  14237.                        </cart-note>
  14238.                      </div>
  14239.                    </div>
  14240.                  </modal-component><calculate-shipping
  14241.                    id="ShippingCalculator-sections--18997227913428__cart-drawer"
  14242.                    class="drawer cart-addons-drawer drawer--bottom"
  14243.                    hidden
  14244.                    data-show="fasle"
  14245.                  >
  14246.                    <div class="fixed-overlay absolute" aria-controls="ShippingCalculator-sections--18997227913428__cart-drawer"></div>
  14247.                    <div class="drawer__inner cart-addons-drawer__inner flex flex-col w-full h-full">
  14248.                      <button aria-controls="ShippingCalculator-sections--18997227913428__cart-drawer" class="drawer__close-btn z-1"><svg
  14249.  xmlns="http://www.w3.org/2000/svg"
  14250.  aria-hidden="true"
  14251.  focusable="false"
  14252.  class="icon icon-close icon--medium"
  14253.  fill="none"
  14254.  viewBox="0 0 24 24"
  14255. >
  14256.  <path d="M18.75 5.13496L5.25 18.8544" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14257.  <path d="M18.75 18.8544L5.25 5.13496" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14258. </svg>
  14259. </button>
  14260.                      <div class="drawer__content v-scrollable cart-addons-drawer__content flex flex-col gap-4">
  14261.                        <h4>Estimate Shipping</h4>
  14262.                        <form
  14263.                          class="grid gap-4"
  14264.                          action="/cart"
  14265.                          method="POST"
  14266.                          novalidate
  14267.                          is="shipping-calculator"
  14268.                        >
  14269.                          <country-province
  14270.                            class="grid gap-4"
  14271.                            
  14272.                          >
  14273.                            <div class="form-field reset-spacing">
  14274.                              <label class="form-label" for="ShippingCalculatorCountry-sections--18997227913428__cart-drawer">Country/region</label>
  14275.                              <div class="select">
  14276.                                <select
  14277.                                  name="address[country]"
  14278.                                  class="form-control form-control--select"
  14279.                                  autocomplete="country"
  14280.                                  id="ShippingCalculatorCountry-sections--18997227913428__cart-drawer"
  14281.                                >
  14282.                                  <template><option value="---" data-provinces="[]">---</option>
  14283. <option value="Afghanistan" data-provinces="[]">Afghanistan</option>
  14284. <option value="Aland Islands" data-provinces="[]">Åland Islands</option>
  14285. <option value="Albania" data-provinces="[]">Albania</option>
  14286. <option value="Algeria" data-provinces="[]">Algeria</option>
  14287. <option value="Andorra" data-provinces="[]">Andorra</option>
  14288. <option value="Angola" data-provinces="[]">Angola</option>
  14289. <option value="Anguilla" data-provinces="[]">Anguilla</option>
  14290. <option value="Antigua And Barbuda" data-provinces="[]">Antigua & Barbuda</option>
  14291. <option value="Argentina" data-provinces="[[&quot;Buenos Aires&quot;,&quot;Buenos Aires Province&quot;],[&quot;Catamarca&quot;,&quot;Catamarca&quot;],[&quot;Chaco&quot;,&quot;Chaco&quot;],[&quot;Chubut&quot;,&quot;Chubut&quot;],[&quot;Ciudad Autónoma de Buenos Aires&quot;,&quot;Buenos Aires (Autonomous City)&quot;],[&quot;Corrientes&quot;,&quot;Corrientes&quot;],[&quot;Córdoba&quot;,&quot;Córdoba&quot;],[&quot;Entre Ríos&quot;,&quot;Entre Ríos&quot;],[&quot;Formosa&quot;,&quot;Formosa&quot;],[&quot;Jujuy&quot;,&quot;Jujuy&quot;],[&quot;La Pampa&quot;,&quot;La Pampa&quot;],[&quot;La Rioja&quot;,&quot;La Rioja&quot;],[&quot;Mendoza&quot;,&quot;Mendoza&quot;],[&quot;Misiones&quot;,&quot;Misiones&quot;],[&quot;Neuquén&quot;,&quot;Neuquén&quot;],[&quot;Río Negro&quot;,&quot;Río Negro&quot;],[&quot;Salta&quot;,&quot;Salta&quot;],[&quot;San Juan&quot;,&quot;San Juan&quot;],[&quot;San Luis&quot;,&quot;San Luis&quot;],[&quot;Santa Cruz&quot;,&quot;Santa Cruz&quot;],[&quot;Santa Fe&quot;,&quot;Santa Fe&quot;],[&quot;Santiago Del Estero&quot;,&quot;Santiago del Estero&quot;],[&quot;Tierra Del Fuego&quot;,&quot;Tierra del Fuego&quot;],[&quot;Tucumán&quot;,&quot;Tucumán&quot;]]">Argentina</option>
  14292. <option value="Armenia" data-provinces="[]">Armenia</option>
  14293. <option value="Aruba" data-provinces="[]">Aruba</option>
  14294. <option value="Ascension Island" data-provinces="[]">Ascension Island</option>
  14295. <option value="Australia" data-provinces="[[&quot;Australian Capital Territory&quot;,&quot;Australian Capital Territory&quot;],[&quot;New South Wales&quot;,&quot;New South Wales&quot;],[&quot;Northern Territory&quot;,&quot;Northern Territory&quot;],[&quot;Queensland&quot;,&quot;Queensland&quot;],[&quot;South Australia&quot;,&quot;South Australia&quot;],[&quot;Tasmania&quot;,&quot;Tasmania&quot;],[&quot;Victoria&quot;,&quot;Victoria&quot;],[&quot;Western Australia&quot;,&quot;Western Australia&quot;]]">Australia</option>
  14296. <option value="Austria" data-provinces="[]">Austria</option>
  14297. <option value="Azerbaijan" data-provinces="[]">Azerbaijan</option>
  14298. <option value="Bahamas" data-provinces="[]">Bahamas</option>
  14299. <option value="Bahrain" data-provinces="[]">Bahrain</option>
  14300. <option value="Bangladesh" data-provinces="[]">Bangladesh</option>
  14301. <option value="Barbados" data-provinces="[]">Barbados</option>
  14302. <option value="Belarus" data-provinces="[]">Belarus</option>
  14303. <option value="Belgium" data-provinces="[]">Belgium</option>
  14304. <option value="Belize" data-provinces="[]">Belize</option>
  14305. <option value="Benin" data-provinces="[]">Benin</option>
  14306. <option value="Bermuda" data-provinces="[]">Bermuda</option>
  14307. <option value="Bhutan" data-provinces="[]">Bhutan</option>
  14308. <option value="Bolivia" data-provinces="[]">Bolivia</option>
  14309. <option value="Bosnia And Herzegovina" data-provinces="[]">Bosnia & Herzegovina</option>
  14310. <option value="Botswana" data-provinces="[]">Botswana</option>
  14311. <option value="Brazil" data-provinces="[[&quot;Acre&quot;,&quot;Acre&quot;],[&quot;Alagoas&quot;,&quot;Alagoas&quot;],[&quot;Amapá&quot;,&quot;Amapá&quot;],[&quot;Amazonas&quot;,&quot;Amazonas&quot;],[&quot;Bahia&quot;,&quot;Bahia&quot;],[&quot;Ceará&quot;,&quot;Ceará&quot;],[&quot;Distrito Federal&quot;,&quot;Federal District&quot;],[&quot;Espírito Santo&quot;,&quot;Espírito Santo&quot;],[&quot;Goiás&quot;,&quot;Goiás&quot;],[&quot;Maranhão&quot;,&quot;Maranhão&quot;],[&quot;Mato Grosso&quot;,&quot;Mato Grosso&quot;],[&quot;Mato Grosso do Sul&quot;,&quot;Mato Grosso do Sul&quot;],[&quot;Minas Gerais&quot;,&quot;Minas Gerais&quot;],[&quot;Paraná&quot;,&quot;Paraná&quot;],[&quot;Paraíba&quot;,&quot;Paraíba&quot;],[&quot;Pará&quot;,&quot;Pará&quot;],[&quot;Pernambuco&quot;,&quot;Pernambuco&quot;],[&quot;Piauí&quot;,&quot;Piauí&quot;],[&quot;Rio Grande do Norte&quot;,&quot;Rio Grande do Norte&quot;],[&quot;Rio Grande do Sul&quot;,&quot;Rio Grande do Sul&quot;],[&quot;Rio de Janeiro&quot;,&quot;Rio de Janeiro&quot;],[&quot;Rondônia&quot;,&quot;Rondônia&quot;],[&quot;Roraima&quot;,&quot;Roraima&quot;],[&quot;Santa Catarina&quot;,&quot;Santa Catarina&quot;],[&quot;Sergipe&quot;,&quot;Sergipe&quot;],[&quot;São Paulo&quot;,&quot;São Paulo&quot;],[&quot;Tocantins&quot;,&quot;Tocantins&quot;]]">Brazil</option>
  14312. <option value="British Indian Ocean Territory" data-provinces="[]">British Indian Ocean Territory</option>
  14313. <option value="Virgin Islands, British" data-provinces="[]">British Virgin Islands</option>
  14314. <option value="Brunei" data-provinces="[]">Brunei</option>
  14315. <option value="Bulgaria" data-provinces="[]">Bulgaria</option>
  14316. <option value="Burkina Faso" data-provinces="[]">Burkina Faso</option>
  14317. <option value="Burundi" data-provinces="[]">Burundi</option>
  14318. <option value="Cambodia" data-provinces="[]">Cambodia</option>
  14319. <option value="Republic of Cameroon" data-provinces="[]">Cameroon</option>
  14320. <option value="Canada" data-provinces="[[&quot;Alberta&quot;,&quot;Alberta&quot;],[&quot;British Columbia&quot;,&quot;British Columbia&quot;],[&quot;Manitoba&quot;,&quot;Manitoba&quot;],[&quot;New Brunswick&quot;,&quot;New Brunswick&quot;],[&quot;Newfoundland and Labrador&quot;,&quot;Newfoundland and Labrador&quot;],[&quot;Northwest Territories&quot;,&quot;Northwest Territories&quot;],[&quot;Nova Scotia&quot;,&quot;Nova Scotia&quot;],[&quot;Nunavut&quot;,&quot;Nunavut&quot;],[&quot;Ontario&quot;,&quot;Ontario&quot;],[&quot;Prince Edward Island&quot;,&quot;Prince Edward Island&quot;],[&quot;Quebec&quot;,&quot;Quebec&quot;],[&quot;Saskatchewan&quot;,&quot;Saskatchewan&quot;],[&quot;Yukon&quot;,&quot;Yukon&quot;]]">Canada</option>
  14321. <option value="Cape Verde" data-provinces="[]">Cape Verde</option>
  14322. <option value="Caribbean Netherlands" data-provinces="[]">Caribbean Netherlands</option>
  14323. <option value="Cayman Islands" data-provinces="[]">Cayman Islands</option>
  14324. <option value="Central African Republic" data-provinces="[]">Central African Republic</option>
  14325. <option value="Chad" data-provinces="[]">Chad</option>
  14326. <option value="Chile" data-provinces="[[&quot;Antofagasta&quot;,&quot;Antofagasta&quot;],[&quot;Araucanía&quot;,&quot;Araucanía&quot;],[&quot;Arica and Parinacota&quot;,&quot;Arica y Parinacota&quot;],[&quot;Atacama&quot;,&quot;Atacama&quot;],[&quot;Aysén&quot;,&quot;Aysén&quot;],[&quot;Biobío&quot;,&quot;Bío Bío&quot;],[&quot;Coquimbo&quot;,&quot;Coquimbo&quot;],[&quot;Los Lagos&quot;,&quot;Los Lagos&quot;],[&quot;Los Ríos&quot;,&quot;Los Ríos&quot;],[&quot;Magallanes&quot;,&quot;Magallanes Region&quot;],[&quot;Maule&quot;,&quot;Maule&quot;],[&quot;O&#39;Higgins&quot;,&quot;Libertador General Bernardo O’Higgins&quot;],[&quot;Santiago&quot;,&quot;Santiago Metropolitan&quot;],[&quot;Tarapacá&quot;,&quot;Tarapacá&quot;],[&quot;Valparaíso&quot;,&quot;Valparaíso&quot;],[&quot;Ñuble&quot;,&quot;Ñuble&quot;]]">Chile</option>
  14327. <option value="China" data-provinces="[[&quot;Anhui&quot;,&quot;Anhui&quot;],[&quot;Beijing&quot;,&quot;Beijing&quot;],[&quot;Chongqing&quot;,&quot;Chongqing&quot;],[&quot;Fujian&quot;,&quot;Fujian&quot;],[&quot;Gansu&quot;,&quot;Gansu&quot;],[&quot;Guangdong&quot;,&quot;Guangdong&quot;],[&quot;Guangxi&quot;,&quot;Guangxi&quot;],[&quot;Guizhou&quot;,&quot;Guizhou&quot;],[&quot;Hainan&quot;,&quot;Hainan&quot;],[&quot;Hebei&quot;,&quot;Hebei&quot;],[&quot;Heilongjiang&quot;,&quot;Heilongjiang&quot;],[&quot;Henan&quot;,&quot;Henan&quot;],[&quot;Hubei&quot;,&quot;Hubei&quot;],[&quot;Hunan&quot;,&quot;Hunan&quot;],[&quot;Inner Mongolia&quot;,&quot;Inner Mongolia&quot;],[&quot;Jiangsu&quot;,&quot;Jiangsu&quot;],[&quot;Jiangxi&quot;,&quot;Jiangxi&quot;],[&quot;Jilin&quot;,&quot;Jilin&quot;],[&quot;Liaoning&quot;,&quot;Liaoning&quot;],[&quot;Ningxia&quot;,&quot;Ningxia&quot;],[&quot;Qinghai&quot;,&quot;Qinghai&quot;],[&quot;Shaanxi&quot;,&quot;Shaanxi&quot;],[&quot;Shandong&quot;,&quot;Shandong&quot;],[&quot;Shanghai&quot;,&quot;Shanghai&quot;],[&quot;Shanxi&quot;,&quot;Shanxi&quot;],[&quot;Sichuan&quot;,&quot;Sichuan&quot;],[&quot;Tianjin&quot;,&quot;Tianjin&quot;],[&quot;Xinjiang&quot;,&quot;Xinjiang&quot;],[&quot;Xizang&quot;,&quot;Tibet&quot;],[&quot;Yunnan&quot;,&quot;Yunnan&quot;],[&quot;Zhejiang&quot;,&quot;Zhejiang&quot;]]">China</option>
  14328. <option value="Christmas Island" data-provinces="[]">Christmas Island</option>
  14329. <option value="Cocos (Keeling) Islands" data-provinces="[]">Cocos (Keeling) Islands</option>
  14330. <option value="Colombia" data-provinces="[[&quot;Amazonas&quot;,&quot;Amazonas&quot;],[&quot;Antioquia&quot;,&quot;Antioquia&quot;],[&quot;Arauca&quot;,&quot;Arauca&quot;],[&quot;Atlántico&quot;,&quot;Atlántico&quot;],[&quot;Bogotá, D.C.&quot;,&quot;Capital District&quot;],[&quot;Bolívar&quot;,&quot;Bolívar&quot;],[&quot;Boyacá&quot;,&quot;Boyacá&quot;],[&quot;Caldas&quot;,&quot;Caldas&quot;],[&quot;Caquetá&quot;,&quot;Caquetá&quot;],[&quot;Casanare&quot;,&quot;Casanare&quot;],[&quot;Cauca&quot;,&quot;Cauca&quot;],[&quot;Cesar&quot;,&quot;Cesar&quot;],[&quot;Chocó&quot;,&quot;Chocó&quot;],[&quot;Cundinamarca&quot;,&quot;Cundinamarca&quot;],[&quot;Córdoba&quot;,&quot;Córdoba&quot;],[&quot;Guainía&quot;,&quot;Guainía&quot;],[&quot;Guaviare&quot;,&quot;Guaviare&quot;],[&quot;Huila&quot;,&quot;Huila&quot;],[&quot;La Guajira&quot;,&quot;La Guajira&quot;],[&quot;Magdalena&quot;,&quot;Magdalena&quot;],[&quot;Meta&quot;,&quot;Meta&quot;],[&quot;Nariño&quot;,&quot;Nariño&quot;],[&quot;Norte de Santander&quot;,&quot;Norte de Santander&quot;],[&quot;Putumayo&quot;,&quot;Putumayo&quot;],[&quot;Quindío&quot;,&quot;Quindío&quot;],[&quot;Risaralda&quot;,&quot;Risaralda&quot;],[&quot;San Andrés, Providencia y Santa Catalina&quot;,&quot;San Andrés \u0026 Providencia&quot;],[&quot;Santander&quot;,&quot;Santander&quot;],[&quot;Sucre&quot;,&quot;Sucre&quot;],[&quot;Tolima&quot;,&quot;Tolima&quot;],[&quot;Valle del Cauca&quot;,&quot;Valle del Cauca&quot;],[&quot;Vaupés&quot;,&quot;Vaupés&quot;],[&quot;Vichada&quot;,&quot;Vichada&quot;]]">Colombia</option>
  14331. <option value="Comoros" data-provinces="[]">Comoros</option>
  14332. <option value="Congo" data-provinces="[]">Congo - Brazzaville</option>
  14333. <option value="Congo, The Democratic Republic Of The" data-provinces="[]">Congo - Kinshasa</option>
  14334. <option value="Cook Islands" data-provinces="[]">Cook Islands</option>
  14335. <option value="Costa Rica" data-provinces="[[&quot;Alajuela&quot;,&quot;Alajuela&quot;],[&quot;Cartago&quot;,&quot;Cartago&quot;],[&quot;Guanacaste&quot;,&quot;Guanacaste&quot;],[&quot;Heredia&quot;,&quot;Heredia&quot;],[&quot;Limón&quot;,&quot;Limón&quot;],[&quot;Puntarenas&quot;,&quot;Puntarenas&quot;],[&quot;San José&quot;,&quot;San José&quot;]]">Costa Rica</option>
  14336. <option value="Croatia" data-provinces="[]">Croatia</option>
  14337. <option value="Curaçao" data-provinces="[]">Curaçao</option>
  14338. <option value="Cyprus" data-provinces="[]">Cyprus</option>
  14339. <option value="Czech Republic" data-provinces="[]">Czechia</option>
  14340. <option value="Côte d'Ivoire" data-provinces="[]">Côte d’Ivoire</option>
  14341. <option value="Denmark" data-provinces="[]">Denmark</option>
  14342. <option value="Djibouti" data-provinces="[]">Djibouti</option>
  14343. <option value="Dominica" data-provinces="[]">Dominica</option>
  14344. <option value="Dominican Republic" data-provinces="[]">Dominican Republic</option>
  14345. <option value="Ecuador" data-provinces="[]">Ecuador</option>
  14346. <option value="Egypt" data-provinces="[[&quot;6th of October&quot;,&quot;6th of October&quot;],[&quot;Al Sharqia&quot;,&quot;Al Sharqia&quot;],[&quot;Alexandria&quot;,&quot;Alexandria&quot;],[&quot;Aswan&quot;,&quot;Aswan&quot;],[&quot;Asyut&quot;,&quot;Asyut&quot;],[&quot;Beheira&quot;,&quot;Beheira&quot;],[&quot;Beni Suef&quot;,&quot;Beni Suef&quot;],[&quot;Cairo&quot;,&quot;Cairo&quot;],[&quot;Dakahlia&quot;,&quot;Dakahlia&quot;],[&quot;Damietta&quot;,&quot;Damietta&quot;],[&quot;Faiyum&quot;,&quot;Faiyum&quot;],[&quot;Gharbia&quot;,&quot;Gharbia&quot;],[&quot;Giza&quot;,&quot;Giza&quot;],[&quot;Helwan&quot;,&quot;Helwan&quot;],[&quot;Ismailia&quot;,&quot;Ismailia&quot;],[&quot;Kafr el-Sheikh&quot;,&quot;Kafr el-Sheikh&quot;],[&quot;Luxor&quot;,&quot;Luxor&quot;],[&quot;Matrouh&quot;,&quot;Matrouh&quot;],[&quot;Minya&quot;,&quot;Minya&quot;],[&quot;Monufia&quot;,&quot;Monufia&quot;],[&quot;New Valley&quot;,&quot;New Valley&quot;],[&quot;North Sinai&quot;,&quot;North Sinai&quot;],[&quot;Port Said&quot;,&quot;Port Said&quot;],[&quot;Qalyubia&quot;,&quot;Qalyubia&quot;],[&quot;Qena&quot;,&quot;Qena&quot;],[&quot;Red Sea&quot;,&quot;Red Sea&quot;],[&quot;Sohag&quot;,&quot;Sohag&quot;],[&quot;South Sinai&quot;,&quot;South Sinai&quot;],[&quot;Suez&quot;,&quot;Suez&quot;]]">Egypt</option>
  14347. <option value="El Salvador" data-provinces="[[&quot;Ahuachapán&quot;,&quot;Ahuachapán&quot;],[&quot;Cabañas&quot;,&quot;Cabañas&quot;],[&quot;Chalatenango&quot;,&quot;Chalatenango&quot;],[&quot;Cuscatlán&quot;,&quot;Cuscatlán&quot;],[&quot;La Libertad&quot;,&quot;La Libertad&quot;],[&quot;La Paz&quot;,&quot;La Paz&quot;],[&quot;La Unión&quot;,&quot;La Unión&quot;],[&quot;Morazán&quot;,&quot;Morazán&quot;],[&quot;San Miguel&quot;,&quot;San Miguel&quot;],[&quot;San Salvador&quot;,&quot;San Salvador&quot;],[&quot;San Vicente&quot;,&quot;San Vicente&quot;],[&quot;Santa Ana&quot;,&quot;Santa Ana&quot;],[&quot;Sonsonate&quot;,&quot;Sonsonate&quot;],[&quot;Usulután&quot;,&quot;Usulután&quot;]]">El Salvador</option>
  14348. <option value="Equatorial Guinea" data-provinces="[]">Equatorial Guinea</option>
  14349. <option value="Eritrea" data-provinces="[]">Eritrea</option>
  14350. <option value="Estonia" data-provinces="[]">Estonia</option>
  14351. <option value="Eswatini" data-provinces="[]">Eswatini</option>
  14352. <option value="Ethiopia" data-provinces="[]">Ethiopia</option>
  14353. <option value="Falkland Islands (Malvinas)" data-provinces="[]">Falkland Islands</option>
  14354. <option value="Faroe Islands" data-provinces="[]">Faroe Islands</option>
  14355. <option value="Fiji" data-provinces="[]">Fiji</option>
  14356. <option value="Finland" data-provinces="[]">Finland</option>
  14357. <option value="France" data-provinces="[]">France</option>
  14358. <option value="French Guiana" data-provinces="[]">French Guiana</option>
  14359. <option value="French Polynesia" data-provinces="[]">French Polynesia</option>
  14360. <option value="French Southern Territories" data-provinces="[]">French Southern Territories</option>
  14361. <option value="Gabon" data-provinces="[]">Gabon</option>
  14362. <option value="Gambia" data-provinces="[]">Gambia</option>
  14363. <option value="Georgia" data-provinces="[]">Georgia</option>
  14364. <option value="Germany" data-provinces="[]">Germany</option>
  14365. <option value="Ghana" data-provinces="[]">Ghana</option>
  14366. <option value="Gibraltar" data-provinces="[]">Gibraltar</option>
  14367. <option value="Greece" data-provinces="[]">Greece</option>
  14368. <option value="Greenland" data-provinces="[]">Greenland</option>
  14369. <option value="Grenada" data-provinces="[]">Grenada</option>
  14370. <option value="Guadeloupe" data-provinces="[]">Guadeloupe</option>
  14371. <option value="Guatemala" data-provinces="[[&quot;Alta Verapaz&quot;,&quot;Alta Verapaz&quot;],[&quot;Baja Verapaz&quot;,&quot;Baja Verapaz&quot;],[&quot;Chimaltenango&quot;,&quot;Chimaltenango&quot;],[&quot;Chiquimula&quot;,&quot;Chiquimula&quot;],[&quot;El Progreso&quot;,&quot;El Progreso&quot;],[&quot;Escuintla&quot;,&quot;Escuintla&quot;],[&quot;Guatemala&quot;,&quot;Guatemala&quot;],[&quot;Huehuetenango&quot;,&quot;Huehuetenango&quot;],[&quot;Izabal&quot;,&quot;Izabal&quot;],[&quot;Jalapa&quot;,&quot;Jalapa&quot;],[&quot;Jutiapa&quot;,&quot;Jutiapa&quot;],[&quot;Petén&quot;,&quot;Petén&quot;],[&quot;Quetzaltenango&quot;,&quot;Quetzaltenango&quot;],[&quot;Quiché&quot;,&quot;Quiché&quot;],[&quot;Retalhuleu&quot;,&quot;Retalhuleu&quot;],[&quot;Sacatepéquez&quot;,&quot;Sacatepéquez&quot;],[&quot;San Marcos&quot;,&quot;San Marcos&quot;],[&quot;Santa Rosa&quot;,&quot;Santa Rosa&quot;],[&quot;Sololá&quot;,&quot;Sololá&quot;],[&quot;Suchitepéquez&quot;,&quot;Suchitepéquez&quot;],[&quot;Totonicapán&quot;,&quot;Totonicapán&quot;],[&quot;Zacapa&quot;,&quot;Zacapa&quot;]]">Guatemala</option>
  14372. <option value="Guernsey" data-provinces="[]">Guernsey</option>
  14373. <option value="Guinea" data-provinces="[]">Guinea</option>
  14374. <option value="Guinea Bissau" data-provinces="[]">Guinea-Bissau</option>
  14375. <option value="Guyana" data-provinces="[]">Guyana</option>
  14376. <option value="Haiti" data-provinces="[]">Haiti</option>
  14377. <option value="Honduras" data-provinces="[]">Honduras</option>
  14378. <option value="Hong Kong" data-provinces="[[&quot;Hong Kong Island&quot;,&quot;Hong Kong Island&quot;],[&quot;Kowloon&quot;,&quot;Kowloon&quot;],[&quot;New Territories&quot;,&quot;New Territories&quot;]]">Hong Kong SAR</option>
  14379. <option value="Hungary" data-provinces="[]">Hungary</option>
  14380. <option value="Iceland" data-provinces="[]">Iceland</option>
  14381. <option value="India" data-provinces="[[&quot;Andaman and Nicobar Islands&quot;,&quot;Andaman and Nicobar Islands&quot;],[&quot;Andhra Pradesh&quot;,&quot;Andhra Pradesh&quot;],[&quot;Arunachal Pradesh&quot;,&quot;Arunachal Pradesh&quot;],[&quot;Assam&quot;,&quot;Assam&quot;],[&quot;Bihar&quot;,&quot;Bihar&quot;],[&quot;Chandigarh&quot;,&quot;Chandigarh&quot;],[&quot;Chhattisgarh&quot;,&quot;Chhattisgarh&quot;],[&quot;Dadra and Nagar Haveli&quot;,&quot;Dadra and Nagar Haveli&quot;],[&quot;Daman and Diu&quot;,&quot;Daman and Diu&quot;],[&quot;Delhi&quot;,&quot;Delhi&quot;],[&quot;Goa&quot;,&quot;Goa&quot;],[&quot;Gujarat&quot;,&quot;Gujarat&quot;],[&quot;Haryana&quot;,&quot;Haryana&quot;],[&quot;Himachal Pradesh&quot;,&quot;Himachal Pradesh&quot;],[&quot;Jammu and Kashmir&quot;,&quot;Jammu and Kashmir&quot;],[&quot;Jharkhand&quot;,&quot;Jharkhand&quot;],[&quot;Karnataka&quot;,&quot;Karnataka&quot;],[&quot;Kerala&quot;,&quot;Kerala&quot;],[&quot;Ladakh&quot;,&quot;Ladakh&quot;],[&quot;Lakshadweep&quot;,&quot;Lakshadweep&quot;],[&quot;Madhya Pradesh&quot;,&quot;Madhya Pradesh&quot;],[&quot;Maharashtra&quot;,&quot;Maharashtra&quot;],[&quot;Manipur&quot;,&quot;Manipur&quot;],[&quot;Meghalaya&quot;,&quot;Meghalaya&quot;],[&quot;Mizoram&quot;,&quot;Mizoram&quot;],[&quot;Nagaland&quot;,&quot;Nagaland&quot;],[&quot;Odisha&quot;,&quot;Odisha&quot;],[&quot;Puducherry&quot;,&quot;Puducherry&quot;],[&quot;Punjab&quot;,&quot;Punjab&quot;],[&quot;Rajasthan&quot;,&quot;Rajasthan&quot;],[&quot;Sikkim&quot;,&quot;Sikkim&quot;],[&quot;Tamil Nadu&quot;,&quot;Tamil Nadu&quot;],[&quot;Telangana&quot;,&quot;Telangana&quot;],[&quot;Tripura&quot;,&quot;Tripura&quot;],[&quot;Uttar Pradesh&quot;,&quot;Uttar Pradesh&quot;],[&quot;Uttarakhand&quot;,&quot;Uttarakhand&quot;],[&quot;West Bengal&quot;,&quot;West Bengal&quot;]]">India</option>
  14382. <option value="Indonesia" data-provinces="[[&quot;Aceh&quot;,&quot;Aceh&quot;],[&quot;Bali&quot;,&quot;Bali&quot;],[&quot;Bangka Belitung&quot;,&quot;Bangka–Belitung Islands&quot;],[&quot;Banten&quot;,&quot;Banten&quot;],[&quot;Bengkulu&quot;,&quot;Bengkulu&quot;],[&quot;Gorontalo&quot;,&quot;Gorontalo&quot;],[&quot;Jakarta&quot;,&quot;Jakarta&quot;],[&quot;Jambi&quot;,&quot;Jambi&quot;],[&quot;Jawa Barat&quot;,&quot;West Java&quot;],[&quot;Jawa Tengah&quot;,&quot;Central Java&quot;],[&quot;Jawa Timur&quot;,&quot;East Java&quot;],[&quot;Kalimantan Barat&quot;,&quot;West Kalimantan&quot;],[&quot;Kalimantan Selatan&quot;,&quot;South Kalimantan&quot;],[&quot;Kalimantan Tengah&quot;,&quot;Central Kalimantan&quot;],[&quot;Kalimantan Timur&quot;,&quot;East Kalimantan&quot;],[&quot;Kalimantan Utara&quot;,&quot;North Kalimantan&quot;],[&quot;Kepulauan Riau&quot;,&quot;Riau Islands&quot;],[&quot;Lampung&quot;,&quot;Lampung&quot;],[&quot;Maluku&quot;,&quot;Maluku&quot;],[&quot;Maluku Utara&quot;,&quot;North Maluku&quot;],[&quot;North Sumatra&quot;,&quot;North Sumatra&quot;],[&quot;Nusa Tenggara Barat&quot;,&quot;West Nusa Tenggara&quot;],[&quot;Nusa Tenggara Timur&quot;,&quot;East Nusa Tenggara&quot;],[&quot;Papua&quot;,&quot;Papua&quot;],[&quot;Papua Barat&quot;,&quot;West Papua&quot;],[&quot;Riau&quot;,&quot;Riau&quot;],[&quot;South Sumatra&quot;,&quot;South Sumatra&quot;],[&quot;Sulawesi Barat&quot;,&quot;West Sulawesi&quot;],[&quot;Sulawesi Selatan&quot;,&quot;South Sulawesi&quot;],[&quot;Sulawesi Tengah&quot;,&quot;Central Sulawesi&quot;],[&quot;Sulawesi Tenggara&quot;,&quot;Southeast Sulawesi&quot;],[&quot;Sulawesi Utara&quot;,&quot;North Sulawesi&quot;],[&quot;West Sumatra&quot;,&quot;West Sumatra&quot;],[&quot;Yogyakarta&quot;,&quot;Yogyakarta&quot;]]">Indonesia</option>
  14383. <option value="Iraq" data-provinces="[]">Iraq</option>
  14384. <option value="Ireland" data-provinces="[[&quot;Carlow&quot;,&quot;Carlow&quot;],[&quot;Cavan&quot;,&quot;Cavan&quot;],[&quot;Clare&quot;,&quot;Clare&quot;],[&quot;Cork&quot;,&quot;Cork&quot;],[&quot;Donegal&quot;,&quot;Donegal&quot;],[&quot;Dublin&quot;,&quot;Dublin&quot;],[&quot;Galway&quot;,&quot;Galway&quot;],[&quot;Kerry&quot;,&quot;Kerry&quot;],[&quot;Kildare&quot;,&quot;Kildare&quot;],[&quot;Kilkenny&quot;,&quot;Kilkenny&quot;],[&quot;Laois&quot;,&quot;Laois&quot;],[&quot;Leitrim&quot;,&quot;Leitrim&quot;],[&quot;Limerick&quot;,&quot;Limerick&quot;],[&quot;Longford&quot;,&quot;Longford&quot;],[&quot;Louth&quot;,&quot;Louth&quot;],[&quot;Mayo&quot;,&quot;Mayo&quot;],[&quot;Meath&quot;,&quot;Meath&quot;],[&quot;Monaghan&quot;,&quot;Monaghan&quot;],[&quot;Offaly&quot;,&quot;Offaly&quot;],[&quot;Roscommon&quot;,&quot;Roscommon&quot;],[&quot;Sligo&quot;,&quot;Sligo&quot;],[&quot;Tipperary&quot;,&quot;Tipperary&quot;],[&quot;Waterford&quot;,&quot;Waterford&quot;],[&quot;Westmeath&quot;,&quot;Westmeath&quot;],[&quot;Wexford&quot;,&quot;Wexford&quot;],[&quot;Wicklow&quot;,&quot;Wicklow&quot;]]">Ireland</option>
  14385. <option value="Isle Of Man" data-provinces="[]">Isle of Man</option>
  14386. <option value="Israel" data-provinces="[]">Israel</option>
  14387. <option value="Italy" data-provinces="[[&quot;Agrigento&quot;,&quot;Agrigento&quot;],[&quot;Alessandria&quot;,&quot;Alessandria&quot;],[&quot;Ancona&quot;,&quot;Ancona&quot;],[&quot;Aosta&quot;,&quot;Aosta Valley&quot;],[&quot;Arezzo&quot;,&quot;Arezzo&quot;],[&quot;Ascoli Piceno&quot;,&quot;Ascoli Piceno&quot;],[&quot;Asti&quot;,&quot;Asti&quot;],[&quot;Avellino&quot;,&quot;Avellino&quot;],[&quot;Bari&quot;,&quot;Bari&quot;],[&quot;Barletta-Andria-Trani&quot;,&quot;Barletta-Andria-Trani&quot;],[&quot;Belluno&quot;,&quot;Belluno&quot;],[&quot;Benevento&quot;,&quot;Benevento&quot;],[&quot;Bergamo&quot;,&quot;Bergamo&quot;],[&quot;Biella&quot;,&quot;Biella&quot;],[&quot;Bologna&quot;,&quot;Bologna&quot;],[&quot;Bolzano&quot;,&quot;South Tyrol&quot;],[&quot;Brescia&quot;,&quot;Brescia&quot;],[&quot;Brindisi&quot;,&quot;Brindisi&quot;],[&quot;Cagliari&quot;,&quot;Cagliari&quot;],[&quot;Caltanissetta&quot;,&quot;Caltanissetta&quot;],[&quot;Campobasso&quot;,&quot;Campobasso&quot;],[&quot;Carbonia-Iglesias&quot;,&quot;Carbonia-Iglesias&quot;],[&quot;Caserta&quot;,&quot;Caserta&quot;],[&quot;Catania&quot;,&quot;Catania&quot;],[&quot;Catanzaro&quot;,&quot;Catanzaro&quot;],[&quot;Chieti&quot;,&quot;Chieti&quot;],[&quot;Como&quot;,&quot;Como&quot;],[&quot;Cosenza&quot;,&quot;Cosenza&quot;],[&quot;Cremona&quot;,&quot;Cremona&quot;],[&quot;Crotone&quot;,&quot;Crotone&quot;],[&quot;Cuneo&quot;,&quot;Cuneo&quot;],[&quot;Enna&quot;,&quot;Enna&quot;],[&quot;Fermo&quot;,&quot;Fermo&quot;],[&quot;Ferrara&quot;,&quot;Ferrara&quot;],[&quot;Firenze&quot;,&quot;Florence&quot;],[&quot;Foggia&quot;,&quot;Foggia&quot;],[&quot;Forlì-Cesena&quot;,&quot;Forlì-Cesena&quot;],[&quot;Frosinone&quot;,&quot;Frosinone&quot;],[&quot;Genova&quot;,&quot;Genoa&quot;],[&quot;Gorizia&quot;,&quot;Gorizia&quot;],[&quot;Grosseto&quot;,&quot;Grosseto&quot;],[&quot;Imperia&quot;,&quot;Imperia&quot;],[&quot;Isernia&quot;,&quot;Isernia&quot;],[&quot;L&#39;Aquila&quot;,&quot;L’Aquila&quot;],[&quot;La Spezia&quot;,&quot;La Spezia&quot;],[&quot;Latina&quot;,&quot;Latina&quot;],[&quot;Lecce&quot;,&quot;Lecce&quot;],[&quot;Lecco&quot;,&quot;Lecco&quot;],[&quot;Livorno&quot;,&quot;Livorno&quot;],[&quot;Lodi&quot;,&quot;Lodi&quot;],[&quot;Lucca&quot;,&quot;Lucca&quot;],[&quot;Macerata&quot;,&quot;Macerata&quot;],[&quot;Mantova&quot;,&quot;Mantua&quot;],[&quot;Massa-Carrara&quot;,&quot;Massa and Carrara&quot;],[&quot;Matera&quot;,&quot;Matera&quot;],[&quot;Medio Campidano&quot;,&quot;Medio Campidano&quot;],[&quot;Messina&quot;,&quot;Messina&quot;],[&quot;Milano&quot;,&quot;Milan&quot;],[&quot;Modena&quot;,&quot;Modena&quot;],[&quot;Monza e Brianza&quot;,&quot;Monza and Brianza&quot;],[&quot;Napoli&quot;,&quot;Naples&quot;],[&quot;Novara&quot;,&quot;Novara&quot;],[&quot;Nuoro&quot;,&quot;Nuoro&quot;],[&quot;Ogliastra&quot;,&quot;Ogliastra&quot;],[&quot;Olbia-Tempio&quot;,&quot;Olbia-Tempio&quot;],[&quot;Oristano&quot;,&quot;Oristano&quot;],[&quot;Padova&quot;,&quot;Padua&quot;],[&quot;Palermo&quot;,&quot;Palermo&quot;],[&quot;Parma&quot;,&quot;Parma&quot;],[&quot;Pavia&quot;,&quot;Pavia&quot;],[&quot;Perugia&quot;,&quot;Perugia&quot;],[&quot;Pesaro e Urbino&quot;,&quot;Pesaro and Urbino&quot;],[&quot;Pescara&quot;,&quot;Pescara&quot;],[&quot;Piacenza&quot;,&quot;Piacenza&quot;],[&quot;Pisa&quot;,&quot;Pisa&quot;],[&quot;Pistoia&quot;,&quot;Pistoia&quot;],[&quot;Pordenone&quot;,&quot;Pordenone&quot;],[&quot;Potenza&quot;,&quot;Potenza&quot;],[&quot;Prato&quot;,&quot;Prato&quot;],[&quot;Ragusa&quot;,&quot;Ragusa&quot;],[&quot;Ravenna&quot;,&quot;Ravenna&quot;],[&quot;Reggio Calabria&quot;,&quot;Reggio Calabria&quot;],[&quot;Reggio Emilia&quot;,&quot;Reggio Emilia&quot;],[&quot;Rieti&quot;,&quot;Rieti&quot;],[&quot;Rimini&quot;,&quot;Rimini&quot;],[&quot;Roma&quot;,&quot;Rome&quot;],[&quot;Rovigo&quot;,&quot;Rovigo&quot;],[&quot;Salerno&quot;,&quot;Salerno&quot;],[&quot;Sassari&quot;,&quot;Sassari&quot;],[&quot;Savona&quot;,&quot;Savona&quot;],[&quot;Siena&quot;,&quot;Siena&quot;],[&quot;Siracusa&quot;,&quot;Syracuse&quot;],[&quot;Sondrio&quot;,&quot;Sondrio&quot;],[&quot;Taranto&quot;,&quot;Taranto&quot;],[&quot;Teramo&quot;,&quot;Teramo&quot;],[&quot;Terni&quot;,&quot;Terni&quot;],[&quot;Torino&quot;,&quot;Turin&quot;],[&quot;Trapani&quot;,&quot;Trapani&quot;],[&quot;Trento&quot;,&quot;Trentino&quot;],[&quot;Treviso&quot;,&quot;Treviso&quot;],[&quot;Trieste&quot;,&quot;Trieste&quot;],[&quot;Udine&quot;,&quot;Udine&quot;],[&quot;Varese&quot;,&quot;Varese&quot;],[&quot;Venezia&quot;,&quot;Venice&quot;],[&quot;Verbano-Cusio-Ossola&quot;,&quot;Verbano-Cusio-Ossola&quot;],[&quot;Vercelli&quot;,&quot;Vercelli&quot;],[&quot;Verona&quot;,&quot;Verona&quot;],[&quot;Vibo Valentia&quot;,&quot;Vibo Valentia&quot;],[&quot;Vicenza&quot;,&quot;Vicenza&quot;],[&quot;Viterbo&quot;,&quot;Viterbo&quot;]]">Italy</option>
  14388. <option value="Jamaica" data-provinces="[]">Jamaica</option>
  14389. <option value="Japan" data-provinces="[[&quot;Aichi&quot;,&quot;Aichi&quot;],[&quot;Akita&quot;,&quot;Akita&quot;],[&quot;Aomori&quot;,&quot;Aomori&quot;],[&quot;Chiba&quot;,&quot;Chiba&quot;],[&quot;Ehime&quot;,&quot;Ehime&quot;],[&quot;Fukui&quot;,&quot;Fukui&quot;],[&quot;Fukuoka&quot;,&quot;Fukuoka&quot;],[&quot;Fukushima&quot;,&quot;Fukushima&quot;],[&quot;Gifu&quot;,&quot;Gifu&quot;],[&quot;Gunma&quot;,&quot;Gunma&quot;],[&quot;Hiroshima&quot;,&quot;Hiroshima&quot;],[&quot;Hokkaidō&quot;,&quot;Hokkaido&quot;],[&quot;Hyōgo&quot;,&quot;Hyogo&quot;],[&quot;Ibaraki&quot;,&quot;Ibaraki&quot;],[&quot;Ishikawa&quot;,&quot;Ishikawa&quot;],[&quot;Iwate&quot;,&quot;Iwate&quot;],[&quot;Kagawa&quot;,&quot;Kagawa&quot;],[&quot;Kagoshima&quot;,&quot;Kagoshima&quot;],[&quot;Kanagawa&quot;,&quot;Kanagawa&quot;],[&quot;Kumamoto&quot;,&quot;Kumamoto&quot;],[&quot;Kyōto&quot;,&quot;Kyoto&quot;],[&quot;Kōchi&quot;,&quot;Kochi&quot;],[&quot;Mie&quot;,&quot;Mie&quot;],[&quot;Miyagi&quot;,&quot;Miyagi&quot;],[&quot;Miyazaki&quot;,&quot;Miyazaki&quot;],[&quot;Nagano&quot;,&quot;Nagano&quot;],[&quot;Nagasaki&quot;,&quot;Nagasaki&quot;],[&quot;Nara&quot;,&quot;Nara&quot;],[&quot;Niigata&quot;,&quot;Niigata&quot;],[&quot;Okayama&quot;,&quot;Okayama&quot;],[&quot;Okinawa&quot;,&quot;Okinawa&quot;],[&quot;Saga&quot;,&quot;Saga&quot;],[&quot;Saitama&quot;,&quot;Saitama&quot;],[&quot;Shiga&quot;,&quot;Shiga&quot;],[&quot;Shimane&quot;,&quot;Shimane&quot;],[&quot;Shizuoka&quot;,&quot;Shizuoka&quot;],[&quot;Tochigi&quot;,&quot;Tochigi&quot;],[&quot;Tokushima&quot;,&quot;Tokushima&quot;],[&quot;Tottori&quot;,&quot;Tottori&quot;],[&quot;Toyama&quot;,&quot;Toyama&quot;],[&quot;Tōkyō&quot;,&quot;Tokyo&quot;],[&quot;Wakayama&quot;,&quot;Wakayama&quot;],[&quot;Yamagata&quot;,&quot;Yamagata&quot;],[&quot;Yamaguchi&quot;,&quot;Yamaguchi&quot;],[&quot;Yamanashi&quot;,&quot;Yamanashi&quot;],[&quot;Ōita&quot;,&quot;Oita&quot;],[&quot;Ōsaka&quot;,&quot;Osaka&quot;]]">Japan</option>
  14390. <option value="Jersey" data-provinces="[]">Jersey</option>
  14391. <option value="Jordan" data-provinces="[]">Jordan</option>
  14392. <option value="Kazakhstan" data-provinces="[]">Kazakhstan</option>
  14393. <option value="Kenya" data-provinces="[]">Kenya</option>
  14394. <option value="Kiribati" data-provinces="[]">Kiribati</option>
  14395. <option value="Kosovo" data-provinces="[]">Kosovo</option>
  14396. <option value="Kuwait" data-provinces="[[&quot;Al Ahmadi&quot;,&quot;Al Ahmadi&quot;],[&quot;Al Asimah&quot;,&quot;Al Asimah&quot;],[&quot;Al Farwaniyah&quot;,&quot;Al Farwaniyah&quot;],[&quot;Al Jahra&quot;,&quot;Al Jahra&quot;],[&quot;Hawalli&quot;,&quot;Hawalli&quot;],[&quot;Mubarak Al-Kabeer&quot;,&quot;Mubarak Al-Kabeer&quot;]]">Kuwait</option>
  14397. <option value="Kyrgyzstan" data-provinces="[]">Kyrgyzstan</option>
  14398. <option value="Lao People's Democratic Republic" data-provinces="[]">Laos</option>
  14399. <option value="Latvia" data-provinces="[]">Latvia</option>
  14400. <option value="Lebanon" data-provinces="[]">Lebanon</option>
  14401. <option value="Lesotho" data-provinces="[]">Lesotho</option>
  14402. <option value="Liberia" data-provinces="[]">Liberia</option>
  14403. <option value="Libyan Arab Jamahiriya" data-provinces="[]">Libya</option>
  14404. <option value="Liechtenstein" data-provinces="[]">Liechtenstein</option>
  14405. <option value="Lithuania" data-provinces="[]">Lithuania</option>
  14406. <option value="Luxembourg" data-provinces="[]">Luxembourg</option>
  14407. <option value="Macao" data-provinces="[]">Macao SAR</option>
  14408. <option value="Madagascar" data-provinces="[]">Madagascar</option>
  14409. <option value="Malawi" data-provinces="[]">Malawi</option>
  14410. <option value="Malaysia" data-provinces="[[&quot;Johor&quot;,&quot;Johor&quot;],[&quot;Kedah&quot;,&quot;Kedah&quot;],[&quot;Kelantan&quot;,&quot;Kelantan&quot;],[&quot;Kuala Lumpur&quot;,&quot;Kuala Lumpur&quot;],[&quot;Labuan&quot;,&quot;Labuan&quot;],[&quot;Melaka&quot;,&quot;Malacca&quot;],[&quot;Negeri Sembilan&quot;,&quot;Negeri Sembilan&quot;],[&quot;Pahang&quot;,&quot;Pahang&quot;],[&quot;Penang&quot;,&quot;Penang&quot;],[&quot;Perak&quot;,&quot;Perak&quot;],[&quot;Perlis&quot;,&quot;Perlis&quot;],[&quot;Putrajaya&quot;,&quot;Putrajaya&quot;],[&quot;Sabah&quot;,&quot;Sabah&quot;],[&quot;Sarawak&quot;,&quot;Sarawak&quot;],[&quot;Selangor&quot;,&quot;Selangor&quot;],[&quot;Terengganu&quot;,&quot;Terengganu&quot;]]">Malaysia</option>
  14411. <option value="Maldives" data-provinces="[]">Maldives</option>
  14412. <option value="Mali" data-provinces="[]">Mali</option>
  14413. <option value="Malta" data-provinces="[]">Malta</option>
  14414. <option value="Martinique" data-provinces="[]">Martinique</option>
  14415. <option value="Mauritania" data-provinces="[]">Mauritania</option>
  14416. <option value="Mauritius" data-provinces="[]">Mauritius</option>
  14417. <option value="Mayotte" data-provinces="[]">Mayotte</option>
  14418. <option value="Mexico" data-provinces="[[&quot;Aguascalientes&quot;,&quot;Aguascalientes&quot;],[&quot;Baja California&quot;,&quot;Baja California&quot;],[&quot;Baja California Sur&quot;,&quot;Baja California Sur&quot;],[&quot;Campeche&quot;,&quot;Campeche&quot;],[&quot;Chiapas&quot;,&quot;Chiapas&quot;],[&quot;Chihuahua&quot;,&quot;Chihuahua&quot;],[&quot;Ciudad de México&quot;,&quot;Ciudad de Mexico&quot;],[&quot;Coahuila&quot;,&quot;Coahuila&quot;],[&quot;Colima&quot;,&quot;Colima&quot;],[&quot;Durango&quot;,&quot;Durango&quot;],[&quot;Guanajuato&quot;,&quot;Guanajuato&quot;],[&quot;Guerrero&quot;,&quot;Guerrero&quot;],[&quot;Hidalgo&quot;,&quot;Hidalgo&quot;],[&quot;Jalisco&quot;,&quot;Jalisco&quot;],[&quot;Michoacán&quot;,&quot;Michoacán&quot;],[&quot;Morelos&quot;,&quot;Morelos&quot;],[&quot;México&quot;,&quot;Mexico State&quot;],[&quot;Nayarit&quot;,&quot;Nayarit&quot;],[&quot;Nuevo León&quot;,&quot;Nuevo León&quot;],[&quot;Oaxaca&quot;,&quot;Oaxaca&quot;],[&quot;Puebla&quot;,&quot;Puebla&quot;],[&quot;Querétaro&quot;,&quot;Querétaro&quot;],[&quot;Quintana Roo&quot;,&quot;Quintana Roo&quot;],[&quot;San Luis Potosí&quot;,&quot;San Luis Potosí&quot;],[&quot;Sinaloa&quot;,&quot;Sinaloa&quot;],[&quot;Sonora&quot;,&quot;Sonora&quot;],[&quot;Tabasco&quot;,&quot;Tabasco&quot;],[&quot;Tamaulipas&quot;,&quot;Tamaulipas&quot;],[&quot;Tlaxcala&quot;,&quot;Tlaxcala&quot;],[&quot;Veracruz&quot;,&quot;Veracruz&quot;],[&quot;Yucatán&quot;,&quot;Yucatán&quot;],[&quot;Zacatecas&quot;,&quot;Zacatecas&quot;]]">Mexico</option>
  14419. <option value="Moldova, Republic of" data-provinces="[]">Moldova</option>
  14420. <option value="Monaco" data-provinces="[]">Monaco</option>
  14421. <option value="Mongolia" data-provinces="[]">Mongolia</option>
  14422. <option value="Montenegro" data-provinces="[]">Montenegro</option>
  14423. <option value="Montserrat" data-provinces="[]">Montserrat</option>
  14424. <option value="Morocco" data-provinces="[]">Morocco</option>
  14425. <option value="Mozambique" data-provinces="[]">Mozambique</option>
  14426. <option value="Myanmar" data-provinces="[]">Myanmar (Burma)</option>
  14427. <option value="Namibia" data-provinces="[]">Namibia</option>
  14428. <option value="Nauru" data-provinces="[]">Nauru</option>
  14429. <option value="Nepal" data-provinces="[]">Nepal</option>
  14430. <option value="Netherlands" data-provinces="[]">Netherlands</option>
  14431. <option value="New Caledonia" data-provinces="[]">New Caledonia</option>
  14432. <option value="New Zealand" data-provinces="[[&quot;Auckland&quot;,&quot;Auckland&quot;],[&quot;Bay of Plenty&quot;,&quot;Bay of Plenty&quot;],[&quot;Canterbury&quot;,&quot;Canterbury&quot;],[&quot;Chatham Islands&quot;,&quot;Chatham Islands&quot;],[&quot;Gisborne&quot;,&quot;Gisborne&quot;],[&quot;Hawke&#39;s Bay&quot;,&quot;Hawke’s Bay&quot;],[&quot;Manawatu-Wanganui&quot;,&quot;Manawatū-Whanganui&quot;],[&quot;Marlborough&quot;,&quot;Marlborough&quot;],[&quot;Nelson&quot;,&quot;Nelson&quot;],[&quot;Northland&quot;,&quot;Northland&quot;],[&quot;Otago&quot;,&quot;Otago&quot;],[&quot;Southland&quot;,&quot;Southland&quot;],[&quot;Taranaki&quot;,&quot;Taranaki&quot;],[&quot;Tasman&quot;,&quot;Tasman&quot;],[&quot;Waikato&quot;,&quot;Waikato&quot;],[&quot;Wellington&quot;,&quot;Wellington&quot;],[&quot;West Coast&quot;,&quot;West Coast&quot;]]">New Zealand</option>
  14433. <option value="Nicaragua" data-provinces="[]">Nicaragua</option>
  14434. <option value="Niger" data-provinces="[]">Niger</option>
  14435. <option value="Nigeria" data-provinces="[[&quot;Abia&quot;,&quot;Abia&quot;],[&quot;Abuja Federal Capital Territory&quot;,&quot;Federal Capital Territory&quot;],[&quot;Adamawa&quot;,&quot;Adamawa&quot;],[&quot;Akwa Ibom&quot;,&quot;Akwa Ibom&quot;],[&quot;Anambra&quot;,&quot;Anambra&quot;],[&quot;Bauchi&quot;,&quot;Bauchi&quot;],[&quot;Bayelsa&quot;,&quot;Bayelsa&quot;],[&quot;Benue&quot;,&quot;Benue&quot;],[&quot;Borno&quot;,&quot;Borno&quot;],[&quot;Cross River&quot;,&quot;Cross River&quot;],[&quot;Delta&quot;,&quot;Delta&quot;],[&quot;Ebonyi&quot;,&quot;Ebonyi&quot;],[&quot;Edo&quot;,&quot;Edo&quot;],[&quot;Ekiti&quot;,&quot;Ekiti&quot;],[&quot;Enugu&quot;,&quot;Enugu&quot;],[&quot;Gombe&quot;,&quot;Gombe&quot;],[&quot;Imo&quot;,&quot;Imo&quot;],[&quot;Jigawa&quot;,&quot;Jigawa&quot;],[&quot;Kaduna&quot;,&quot;Kaduna&quot;],[&quot;Kano&quot;,&quot;Kano&quot;],[&quot;Katsina&quot;,&quot;Katsina&quot;],[&quot;Kebbi&quot;,&quot;Kebbi&quot;],[&quot;Kogi&quot;,&quot;Kogi&quot;],[&quot;Kwara&quot;,&quot;Kwara&quot;],[&quot;Lagos&quot;,&quot;Lagos&quot;],[&quot;Nasarawa&quot;,&quot;Nasarawa&quot;],[&quot;Niger&quot;,&quot;Niger&quot;],[&quot;Ogun&quot;,&quot;Ogun&quot;],[&quot;Ondo&quot;,&quot;Ondo&quot;],[&quot;Osun&quot;,&quot;Osun&quot;],[&quot;Oyo&quot;,&quot;Oyo&quot;],[&quot;Plateau&quot;,&quot;Plateau&quot;],[&quot;Rivers&quot;,&quot;Rivers&quot;],[&quot;Sokoto&quot;,&quot;Sokoto&quot;],[&quot;Taraba&quot;,&quot;Taraba&quot;],[&quot;Yobe&quot;,&quot;Yobe&quot;],[&quot;Zamfara&quot;,&quot;Zamfara&quot;]]">Nigeria</option>
  14436. <option value="Niue" data-provinces="[]">Niue</option>
  14437. <option value="Norfolk Island" data-provinces="[]">Norfolk Island</option>
  14438. <option value="North Macedonia" data-provinces="[]">North Macedonia</option>
  14439. <option value="Norway" data-provinces="[]">Norway</option>
  14440. <option value="Oman" data-provinces="[]">Oman</option>
  14441. <option value="Pakistan" data-provinces="[]">Pakistan</option>
  14442. <option value="Palestinian Territory, Occupied" data-provinces="[]">Palestinian Territories</option>
  14443. <option value="Panama" data-provinces="[[&quot;Bocas del Toro&quot;,&quot;Bocas del Toro&quot;],[&quot;Chiriquí&quot;,&quot;Chiriquí&quot;],[&quot;Coclé&quot;,&quot;Coclé&quot;],[&quot;Colón&quot;,&quot;Colón&quot;],[&quot;Darién&quot;,&quot;Darién&quot;],[&quot;Emberá&quot;,&quot;Emberá&quot;],[&quot;Herrera&quot;,&quot;Herrera&quot;],[&quot;Kuna Yala&quot;,&quot;Guna Yala&quot;],[&quot;Los Santos&quot;,&quot;Los Santos&quot;],[&quot;Ngöbe-Buglé&quot;,&quot;Ngöbe-Buglé&quot;],[&quot;Panamá&quot;,&quot;Panamá&quot;],[&quot;Panamá Oeste&quot;,&quot;West Panamá&quot;],[&quot;Veraguas&quot;,&quot;Veraguas&quot;]]">Panama</option>
  14444. <option value="Papua New Guinea" data-provinces="[]">Papua New Guinea</option>
  14445. <option value="Paraguay" data-provinces="[]">Paraguay</option>
  14446. <option value="Peru" data-provinces="[[&quot;Amazonas&quot;,&quot;Amazonas&quot;],[&quot;Apurímac&quot;,&quot;Apurímac&quot;],[&quot;Arequipa&quot;,&quot;Arequipa&quot;],[&quot;Ayacucho&quot;,&quot;Ayacucho&quot;],[&quot;Cajamarca&quot;,&quot;Cajamarca&quot;],[&quot;Callao&quot;,&quot;El Callao&quot;],[&quot;Cuzco&quot;,&quot;Cusco&quot;],[&quot;Huancavelica&quot;,&quot;Huancavelica&quot;],[&quot;Huánuco&quot;,&quot;Huánuco&quot;],[&quot;Ica&quot;,&quot;Ica&quot;],[&quot;Junín&quot;,&quot;Junín&quot;],[&quot;La Libertad&quot;,&quot;La Libertad&quot;],[&quot;Lambayeque&quot;,&quot;Lambayeque&quot;],[&quot;Lima (departamento)&quot;,&quot;Lima (Department)&quot;],[&quot;Lima (provincia)&quot;,&quot;Lima (Metropolitan)&quot;],[&quot;Loreto&quot;,&quot;Loreto&quot;],[&quot;Madre de Dios&quot;,&quot;Madre de Dios&quot;],[&quot;Moquegua&quot;,&quot;Moquegua&quot;],[&quot;Pasco&quot;,&quot;Pasco&quot;],[&quot;Piura&quot;,&quot;Piura&quot;],[&quot;Puno&quot;,&quot;Puno&quot;],[&quot;San Martín&quot;,&quot;San Martín&quot;],[&quot;Tacna&quot;,&quot;Tacna&quot;],[&quot;Tumbes&quot;,&quot;Tumbes&quot;],[&quot;Ucayali&quot;,&quot;Ucayali&quot;],[&quot;Áncash&quot;,&quot;Ancash&quot;]]">Peru</option>
  14447. <option value="Philippines" data-provinces="[[&quot;Abra&quot;,&quot;Abra&quot;],[&quot;Agusan del Norte&quot;,&quot;Agusan del Norte&quot;],[&quot;Agusan del Sur&quot;,&quot;Agusan del Sur&quot;],[&quot;Aklan&quot;,&quot;Aklan&quot;],[&quot;Albay&quot;,&quot;Albay&quot;],[&quot;Antique&quot;,&quot;Antique&quot;],[&quot;Apayao&quot;,&quot;Apayao&quot;],[&quot;Aurora&quot;,&quot;Aurora&quot;],[&quot;Basilan&quot;,&quot;Basilan&quot;],[&quot;Bataan&quot;,&quot;Bataan&quot;],[&quot;Batanes&quot;,&quot;Batanes&quot;],[&quot;Batangas&quot;,&quot;Batangas&quot;],[&quot;Benguet&quot;,&quot;Benguet&quot;],[&quot;Biliran&quot;,&quot;Biliran&quot;],[&quot;Bohol&quot;,&quot;Bohol&quot;],[&quot;Bukidnon&quot;,&quot;Bukidnon&quot;],[&quot;Bulacan&quot;,&quot;Bulacan&quot;],[&quot;Cagayan&quot;,&quot;Cagayan&quot;],[&quot;Camarines Norte&quot;,&quot;Camarines Norte&quot;],[&quot;Camarines Sur&quot;,&quot;Camarines Sur&quot;],[&quot;Camiguin&quot;,&quot;Camiguin&quot;],[&quot;Capiz&quot;,&quot;Capiz&quot;],[&quot;Catanduanes&quot;,&quot;Catanduanes&quot;],[&quot;Cavite&quot;,&quot;Cavite&quot;],[&quot;Cebu&quot;,&quot;Cebu&quot;],[&quot;Cotabato&quot;,&quot;Cotabato&quot;],[&quot;Davao Occidental&quot;,&quot;Davao Occidental&quot;],[&quot;Davao Oriental&quot;,&quot;Davao Oriental&quot;],[&quot;Davao de Oro&quot;,&quot;Compostela Valley&quot;],[&quot;Davao del Norte&quot;,&quot;Davao del Norte&quot;],[&quot;Davao del Sur&quot;,&quot;Davao del Sur&quot;],[&quot;Dinagat Islands&quot;,&quot;Dinagat Islands&quot;],[&quot;Eastern Samar&quot;,&quot;Eastern Samar&quot;],[&quot;Guimaras&quot;,&quot;Guimaras&quot;],[&quot;Ifugao&quot;,&quot;Ifugao&quot;],[&quot;Ilocos Norte&quot;,&quot;Ilocos Norte&quot;],[&quot;Ilocos Sur&quot;,&quot;Ilocos Sur&quot;],[&quot;Iloilo&quot;,&quot;Iloilo&quot;],[&quot;Isabela&quot;,&quot;Isabela&quot;],[&quot;Kalinga&quot;,&quot;Kalinga&quot;],[&quot;La Union&quot;,&quot;La Union&quot;],[&quot;Laguna&quot;,&quot;Laguna&quot;],[&quot;Lanao del Norte&quot;,&quot;Lanao del Norte&quot;],[&quot;Lanao del Sur&quot;,&quot;Lanao del Sur&quot;],[&quot;Leyte&quot;,&quot;Leyte&quot;],[&quot;Maguindanao&quot;,&quot;Maguindanao&quot;],[&quot;Marinduque&quot;,&quot;Marinduque&quot;],[&quot;Masbate&quot;,&quot;Masbate&quot;],[&quot;Metro Manila&quot;,&quot;Metro Manila&quot;],[&quot;Misamis Occidental&quot;,&quot;Misamis Occidental&quot;],[&quot;Misamis Oriental&quot;,&quot;Misamis Oriental&quot;],[&quot;Mountain Province&quot;,&quot;Mountain&quot;],[&quot;Negros Occidental&quot;,&quot;Negros Occidental&quot;],[&quot;Negros Oriental&quot;,&quot;Negros Oriental&quot;],[&quot;Northern Samar&quot;,&quot;Northern Samar&quot;],[&quot;Nueva Ecija&quot;,&quot;Nueva Ecija&quot;],[&quot;Nueva Vizcaya&quot;,&quot;Nueva Vizcaya&quot;],[&quot;Occidental Mindoro&quot;,&quot;Occidental Mindoro&quot;],[&quot;Oriental Mindoro&quot;,&quot;Oriental Mindoro&quot;],[&quot;Palawan&quot;,&quot;Palawan&quot;],[&quot;Pampanga&quot;,&quot;Pampanga&quot;],[&quot;Pangasinan&quot;,&quot;Pangasinan&quot;],[&quot;Quezon&quot;,&quot;Quezon&quot;],[&quot;Quirino&quot;,&quot;Quirino&quot;],[&quot;Rizal&quot;,&quot;Rizal&quot;],[&quot;Romblon&quot;,&quot;Romblon&quot;],[&quot;Samar&quot;,&quot;Samar&quot;],[&quot;Sarangani&quot;,&quot;Sarangani&quot;],[&quot;Siquijor&quot;,&quot;Siquijor&quot;],[&quot;Sorsogon&quot;,&quot;Sorsogon&quot;],[&quot;South Cotabato&quot;,&quot;South Cotabato&quot;],[&quot;Southern Leyte&quot;,&quot;Southern Leyte&quot;],[&quot;Sultan Kudarat&quot;,&quot;Sultan Kudarat&quot;],[&quot;Sulu&quot;,&quot;Sulu&quot;],[&quot;Surigao del Norte&quot;,&quot;Surigao del Norte&quot;],[&quot;Surigao del Sur&quot;,&quot;Surigao del Sur&quot;],[&quot;Tarlac&quot;,&quot;Tarlac&quot;],[&quot;Tawi-Tawi&quot;,&quot;Tawi-Tawi&quot;],[&quot;Zambales&quot;,&quot;Zambales&quot;],[&quot;Zamboanga Sibugay&quot;,&quot;Zamboanga Sibugay&quot;],[&quot;Zamboanga del Norte&quot;,&quot;Zamboanga del Norte&quot;],[&quot;Zamboanga del Sur&quot;,&quot;Zamboanga del Sur&quot;]]">Philippines</option>
  14448. <option value="Pitcairn" data-provinces="[]">Pitcairn Islands</option>
  14449. <option value="Poland" data-provinces="[]">Poland</option>
  14450. <option value="Portugal" data-provinces="[[&quot;Aveiro&quot;,&quot;Aveiro&quot;],[&quot;Açores&quot;,&quot;Azores&quot;],[&quot;Beja&quot;,&quot;Beja&quot;],[&quot;Braga&quot;,&quot;Braga&quot;],[&quot;Bragança&quot;,&quot;Bragança&quot;],[&quot;Castelo Branco&quot;,&quot;Castelo Branco&quot;],[&quot;Coimbra&quot;,&quot;Coimbra&quot;],[&quot;Faro&quot;,&quot;Faro&quot;],[&quot;Guarda&quot;,&quot;Guarda&quot;],[&quot;Leiria&quot;,&quot;Leiria&quot;],[&quot;Lisboa&quot;,&quot;Lisbon&quot;],[&quot;Madeira&quot;,&quot;Madeira&quot;],[&quot;Portalegre&quot;,&quot;Portalegre&quot;],[&quot;Porto&quot;,&quot;Porto&quot;],[&quot;Santarém&quot;,&quot;Santarém&quot;],[&quot;Setúbal&quot;,&quot;Setúbal&quot;],[&quot;Viana do Castelo&quot;,&quot;Viana do Castelo&quot;],[&quot;Vila Real&quot;,&quot;Vila Real&quot;],[&quot;Viseu&quot;,&quot;Viseu&quot;],[&quot;Évora&quot;,&quot;Évora&quot;]]">Portugal</option>
  14451. <option value="Qatar" data-provinces="[]">Qatar</option>
  14452. <option value="Reunion" data-provinces="[]">Réunion</option>
  14453. <option value="Romania" data-provinces="[[&quot;Alba&quot;,&quot;Alba&quot;],[&quot;Arad&quot;,&quot;Arad&quot;],[&quot;Argeș&quot;,&quot;Argeș&quot;],[&quot;Bacău&quot;,&quot;Bacău&quot;],[&quot;Bihor&quot;,&quot;Bihor&quot;],[&quot;Bistrița-Năsăud&quot;,&quot;Bistriţa-Năsăud&quot;],[&quot;Botoșani&quot;,&quot;Botoşani&quot;],[&quot;Brașov&quot;,&quot;Braşov&quot;],[&quot;Brăila&quot;,&quot;Brăila&quot;],[&quot;București&quot;,&quot;Bucharest&quot;],[&quot;Buzău&quot;,&quot;Buzău&quot;],[&quot;Caraș-Severin&quot;,&quot;Caraș-Severin&quot;],[&quot;Cluj&quot;,&quot;Cluj&quot;],[&quot;Constanța&quot;,&quot;Constanța&quot;],[&quot;Covasna&quot;,&quot;Covasna&quot;],[&quot;Călărași&quot;,&quot;Călărași&quot;],[&quot;Dolj&quot;,&quot;Dolj&quot;],[&quot;Dâmbovița&quot;,&quot;Dâmbovița&quot;],[&quot;Galați&quot;,&quot;Galați&quot;],[&quot;Giurgiu&quot;,&quot;Giurgiu&quot;],[&quot;Gorj&quot;,&quot;Gorj&quot;],[&quot;Harghita&quot;,&quot;Harghita&quot;],[&quot;Hunedoara&quot;,&quot;Hunedoara&quot;],[&quot;Ialomița&quot;,&quot;Ialomița&quot;],[&quot;Iași&quot;,&quot;Iași&quot;],[&quot;Ilfov&quot;,&quot;Ilfov&quot;],[&quot;Maramureș&quot;,&quot;Maramureş&quot;],[&quot;Mehedinți&quot;,&quot;Mehedinți&quot;],[&quot;Mureș&quot;,&quot;Mureş&quot;],[&quot;Neamț&quot;,&quot;Neamţ&quot;],[&quot;Olt&quot;,&quot;Olt&quot;],[&quot;Prahova&quot;,&quot;Prahova&quot;],[&quot;Satu Mare&quot;,&quot;Satu Mare&quot;],[&quot;Sibiu&quot;,&quot;Sibiu&quot;],[&quot;Suceava&quot;,&quot;Suceava&quot;],[&quot;Sălaj&quot;,&quot;Sălaj&quot;],[&quot;Teleorman&quot;,&quot;Teleorman&quot;],[&quot;Timiș&quot;,&quot;Timiș&quot;],[&quot;Tulcea&quot;,&quot;Tulcea&quot;],[&quot;Vaslui&quot;,&quot;Vaslui&quot;],[&quot;Vrancea&quot;,&quot;Vrancea&quot;],[&quot;Vâlcea&quot;,&quot;Vâlcea&quot;]]">Romania</option>
  14454. <option value="Russia" data-provinces="[[&quot;Altai Krai&quot;,&quot;Altai Krai&quot;],[&quot;Altai Republic&quot;,&quot;Altai&quot;],[&quot;Amur Oblast&quot;,&quot;Amur&quot;],[&quot;Arkhangelsk Oblast&quot;,&quot;Arkhangelsk&quot;],[&quot;Astrakhan Oblast&quot;,&quot;Astrakhan&quot;],[&quot;Belgorod Oblast&quot;,&quot;Belgorod&quot;],[&quot;Bryansk Oblast&quot;,&quot;Bryansk&quot;],[&quot;Chechen Republic&quot;,&quot;Chechen&quot;],[&quot;Chelyabinsk Oblast&quot;,&quot;Chelyabinsk&quot;],[&quot;Chukotka Autonomous Okrug&quot;,&quot;Chukotka Okrug&quot;],[&quot;Chuvash Republic&quot;,&quot;Chuvash&quot;],[&quot;Irkutsk Oblast&quot;,&quot;Irkutsk&quot;],[&quot;Ivanovo Oblast&quot;,&quot;Ivanovo&quot;],[&quot;Jewish Autonomous Oblast&quot;,&quot;Jewish&quot;],[&quot;Kabardino-Balkarian Republic&quot;,&quot;Kabardino-Balkar&quot;],[&quot;Kaliningrad Oblast&quot;,&quot;Kaliningrad&quot;],[&quot;Kaluga Oblast&quot;,&quot;Kaluga&quot;],[&quot;Kamchatka Krai&quot;,&quot;Kamchatka Krai&quot;],[&quot;Karachay–Cherkess Republic&quot;,&quot;Karachay-Cherkess&quot;],[&quot;Kemerovo Oblast&quot;,&quot;Kemerovo&quot;],[&quot;Khabarovsk Krai&quot;,&quot;Khabarovsk Krai&quot;],[&quot;Khanty-Mansi Autonomous Okrug&quot;,&quot;Khanty-Mansi&quot;],[&quot;Kirov Oblast&quot;,&quot;Kirov&quot;],[&quot;Komi Republic&quot;,&quot;Komi&quot;],[&quot;Kostroma Oblast&quot;,&quot;Kostroma&quot;],[&quot;Krasnodar Krai&quot;,&quot;Krasnodar Krai&quot;],[&quot;Krasnoyarsk Krai&quot;,&quot;Krasnoyarsk Krai&quot;],[&quot;Kurgan Oblast&quot;,&quot;Kurgan&quot;],[&quot;Kursk Oblast&quot;,&quot;Kursk&quot;],[&quot;Leningrad Oblast&quot;,&quot;Leningrad&quot;],[&quot;Lipetsk Oblast&quot;,&quot;Lipetsk&quot;],[&quot;Magadan Oblast&quot;,&quot;Magadan&quot;],[&quot;Mari El Republic&quot;,&quot;Mari El&quot;],[&quot;Moscow&quot;,&quot;Moscow&quot;],[&quot;Moscow Oblast&quot;,&quot;Moscow Province&quot;],[&quot;Murmansk Oblast&quot;,&quot;Murmansk&quot;],[&quot;Nizhny Novgorod Oblast&quot;,&quot;Nizhny Novgorod&quot;],[&quot;Novgorod Oblast&quot;,&quot;Novgorod&quot;],[&quot;Novosibirsk Oblast&quot;,&quot;Novosibirsk&quot;],[&quot;Omsk Oblast&quot;,&quot;Omsk&quot;],[&quot;Orenburg Oblast&quot;,&quot;Orenburg&quot;],[&quot;Oryol Oblast&quot;,&quot;Oryol&quot;],[&quot;Penza Oblast&quot;,&quot;Penza&quot;],[&quot;Perm Krai&quot;,&quot;Perm Krai&quot;],[&quot;Primorsky Krai&quot;,&quot;Primorsky Krai&quot;],[&quot;Pskov Oblast&quot;,&quot;Pskov&quot;],[&quot;Republic of Adygeya&quot;,&quot;Adygea&quot;],[&quot;Republic of Bashkortostan&quot;,&quot;Bashkortostan&quot;],[&quot;Republic of Buryatia&quot;,&quot;Buryat&quot;],[&quot;Republic of Dagestan&quot;,&quot;Dagestan&quot;],[&quot;Republic of Ingushetia&quot;,&quot;Ingushetia&quot;],[&quot;Republic of Kalmykia&quot;,&quot;Kalmykia&quot;],[&quot;Republic of Karelia&quot;,&quot;Karelia&quot;],[&quot;Republic of Khakassia&quot;,&quot;Khakassia&quot;],[&quot;Republic of Mordovia&quot;,&quot;Mordovia&quot;],[&quot;Republic of North Ossetia–Alania&quot;,&quot;North Ossetia-Alania&quot;],[&quot;Republic of Tatarstan&quot;,&quot;Tatarstan&quot;],[&quot;Rostov Oblast&quot;,&quot;Rostov&quot;],[&quot;Ryazan Oblast&quot;,&quot;Ryazan&quot;],[&quot;Saint Petersburg&quot;,&quot;Saint Petersburg&quot;],[&quot;Sakha Republic (Yakutia)&quot;,&quot;Sakha&quot;],[&quot;Sakhalin Oblast&quot;,&quot;Sakhalin&quot;],[&quot;Samara Oblast&quot;,&quot;Samara&quot;],[&quot;Saratov Oblast&quot;,&quot;Saratov&quot;],[&quot;Smolensk Oblast&quot;,&quot;Smolensk&quot;],[&quot;Stavropol Krai&quot;,&quot;Stavropol Krai&quot;],[&quot;Sverdlovsk Oblast&quot;,&quot;Sverdlovsk&quot;],[&quot;Tambov Oblast&quot;,&quot;Tambov&quot;],[&quot;Tomsk Oblast&quot;,&quot;Tomsk&quot;],[&quot;Tula Oblast&quot;,&quot;Tula&quot;],[&quot;Tver Oblast&quot;,&quot;Tver&quot;],[&quot;Tyumen Oblast&quot;,&quot;Tyumen&quot;],[&quot;Tyva Republic&quot;,&quot;Tuva&quot;],[&quot;Udmurtia&quot;,&quot;Udmurt&quot;],[&quot;Ulyanovsk Oblast&quot;,&quot;Ulyanovsk&quot;],[&quot;Vladimir Oblast&quot;,&quot;Vladimir&quot;],[&quot;Volgograd Oblast&quot;,&quot;Volgograd&quot;],[&quot;Vologda Oblast&quot;,&quot;Vologda&quot;],[&quot;Voronezh Oblast&quot;,&quot;Voronezh&quot;],[&quot;Yamalo-Nenets Autonomous Okrug&quot;,&quot;Yamalo-Nenets Okrug&quot;],[&quot;Yaroslavl Oblast&quot;,&quot;Yaroslavl&quot;],[&quot;Zabaykalsky Krai&quot;,&quot;Zabaykalsky Krai&quot;]]">Russia</option>
  14455. <option value="Rwanda" data-provinces="[]">Rwanda</option>
  14456. <option value="Samoa" data-provinces="[]">Samoa</option>
  14457. <option value="San Marino" data-provinces="[]">San Marino</option>
  14458. <option value="Sao Tome And Principe" data-provinces="[]">São Tomé & Príncipe</option>
  14459. <option value="Saudi Arabia" data-provinces="[]">Saudi Arabia</option>
  14460. <option value="Senegal" data-provinces="[]">Senegal</option>
  14461. <option value="Serbia" data-provinces="[]">Serbia</option>
  14462. <option value="Seychelles" data-provinces="[]">Seychelles</option>
  14463. <option value="Sierra Leone" data-provinces="[]">Sierra Leone</option>
  14464. <option value="Singapore" data-provinces="[]">Singapore</option>
  14465. <option value="Sint Maarten" data-provinces="[]">Sint Maarten</option>
  14466. <option value="Slovakia" data-provinces="[]">Slovakia</option>
  14467. <option value="Slovenia" data-provinces="[]">Slovenia</option>
  14468. <option value="Solomon Islands" data-provinces="[]">Solomon Islands</option>
  14469. <option value="Somalia" data-provinces="[]">Somalia</option>
  14470. <option value="South Africa" data-provinces="[[&quot;Eastern Cape&quot;,&quot;Eastern Cape&quot;],[&quot;Free State&quot;,&quot;Free State&quot;],[&quot;Gauteng&quot;,&quot;Gauteng&quot;],[&quot;KwaZulu-Natal&quot;,&quot;KwaZulu-Natal&quot;],[&quot;Limpopo&quot;,&quot;Limpopo&quot;],[&quot;Mpumalanga&quot;,&quot;Mpumalanga&quot;],[&quot;North West&quot;,&quot;North West&quot;],[&quot;Northern Cape&quot;,&quot;Northern Cape&quot;],[&quot;Western Cape&quot;,&quot;Western Cape&quot;]]">South Africa</option>
  14471. <option value="South Georgia And The South Sandwich Islands" data-provinces="[]">South Georgia & South Sandwich Islands</option>
  14472. <option value="South Korea" data-provinces="[[&quot;Busan&quot;,&quot;Busan&quot;],[&quot;Chungbuk&quot;,&quot;North Chungcheong&quot;],[&quot;Chungnam&quot;,&quot;South Chungcheong&quot;],[&quot;Daegu&quot;,&quot;Daegu&quot;],[&quot;Daejeon&quot;,&quot;Daejeon&quot;],[&quot;Gangwon&quot;,&quot;Gangwon&quot;],[&quot;Gwangju&quot;,&quot;Gwangju City&quot;],[&quot;Gyeongbuk&quot;,&quot;North Gyeongsang&quot;],[&quot;Gyeonggi&quot;,&quot;Gyeonggi&quot;],[&quot;Gyeongnam&quot;,&quot;South Gyeongsang&quot;],[&quot;Incheon&quot;,&quot;Incheon&quot;],[&quot;Jeju&quot;,&quot;Jeju&quot;],[&quot;Jeonbuk&quot;,&quot;North Jeolla&quot;],[&quot;Jeonnam&quot;,&quot;South Jeolla&quot;],[&quot;Sejong&quot;,&quot;Sejong&quot;],[&quot;Seoul&quot;,&quot;Seoul&quot;],[&quot;Ulsan&quot;,&quot;Ulsan&quot;]]">South Korea</option>
  14473. <option value="South Sudan" data-provinces="[]">South Sudan</option>
  14474. <option value="Spain" data-provinces="[[&quot;A Coruña&quot;,&quot;A Coruña&quot;],[&quot;Albacete&quot;,&quot;Albacete&quot;],[&quot;Alicante&quot;,&quot;Alicante&quot;],[&quot;Almería&quot;,&quot;Almería&quot;],[&quot;Asturias&quot;,&quot;Asturias Province&quot;],[&quot;Badajoz&quot;,&quot;Badajoz&quot;],[&quot;Balears&quot;,&quot;Balears Province&quot;],[&quot;Barcelona&quot;,&quot;Barcelona&quot;],[&quot;Burgos&quot;,&quot;Burgos&quot;],[&quot;Cantabria&quot;,&quot;Cantabria Province&quot;],[&quot;Castellón&quot;,&quot;Castellón&quot;],[&quot;Ceuta&quot;,&quot;Ceuta&quot;],[&quot;Ciudad Real&quot;,&quot;Ciudad Real&quot;],[&quot;Cuenca&quot;,&quot;Cuenca&quot;],[&quot;Cáceres&quot;,&quot;Cáceres&quot;],[&quot;Cádiz&quot;,&quot;Cádiz&quot;],[&quot;Córdoba&quot;,&quot;Córdoba&quot;],[&quot;Girona&quot;,&quot;Girona&quot;],[&quot;Granada&quot;,&quot;Granada&quot;],[&quot;Guadalajara&quot;,&quot;Guadalajara&quot;],[&quot;Guipúzcoa&quot;,&quot;Gipuzkoa&quot;],[&quot;Huelva&quot;,&quot;Huelva&quot;],[&quot;Huesca&quot;,&quot;Huesca&quot;],[&quot;Jaén&quot;,&quot;Jaén&quot;],[&quot;La Rioja&quot;,&quot;La Rioja Province&quot;],[&quot;Las Palmas&quot;,&quot;Las Palmas&quot;],[&quot;León&quot;,&quot;León&quot;],[&quot;Lleida&quot;,&quot;Lleida&quot;],[&quot;Lugo&quot;,&quot;Lugo&quot;],[&quot;Madrid&quot;,&quot;Madrid Province&quot;],[&quot;Melilla&quot;,&quot;Melilla&quot;],[&quot;Murcia&quot;,&quot;Murcia&quot;],[&quot;Málaga&quot;,&quot;Málaga&quot;],[&quot;Navarra&quot;,&quot;Navarra&quot;],[&quot;Ourense&quot;,&quot;Ourense&quot;],[&quot;Palencia&quot;,&quot;Palencia&quot;],[&quot;Pontevedra&quot;,&quot;Pontevedra&quot;],[&quot;Salamanca&quot;,&quot;Salamanca&quot;],[&quot;Santa Cruz de Tenerife&quot;,&quot;Santa Cruz de Tenerife&quot;],[&quot;Segovia&quot;,&quot;Segovia&quot;],[&quot;Sevilla&quot;,&quot;Seville&quot;],[&quot;Soria&quot;,&quot;Soria&quot;],[&quot;Tarragona&quot;,&quot;Tarragona&quot;],[&quot;Teruel&quot;,&quot;Teruel&quot;],[&quot;Toledo&quot;,&quot;Toledo&quot;],[&quot;Valencia&quot;,&quot;Valencia&quot;],[&quot;Valladolid&quot;,&quot;Valladolid&quot;],[&quot;Vizcaya&quot;,&quot;Biscay&quot;],[&quot;Zamora&quot;,&quot;Zamora&quot;],[&quot;Zaragoza&quot;,&quot;Zaragoza&quot;],[&quot;Álava&quot;,&quot;Álava&quot;],[&quot;Ávila&quot;,&quot;Ávila&quot;]]">Spain</option>
  14475. <option value="Sri Lanka" data-provinces="[]">Sri Lanka</option>
  14476. <option value="Saint Barthélemy" data-provinces="[]">St. Barthélemy</option>
  14477. <option value="Saint Helena" data-provinces="[]">St. Helena</option>
  14478. <option value="Saint Kitts And Nevis" data-provinces="[]">St. Kitts & Nevis</option>
  14479. <option value="Saint Lucia" data-provinces="[]">St. Lucia</option>
  14480. <option value="Saint Martin" data-provinces="[]">St. Martin</option>
  14481. <option value="Saint Pierre And Miquelon" data-provinces="[]">St. Pierre & Miquelon</option>
  14482. <option value="St. Vincent" data-provinces="[]">St. Vincent & Grenadines</option>
  14483. <option value="Sudan" data-provinces="[]">Sudan</option>
  14484. <option value="Suriname" data-provinces="[]">Suriname</option>
  14485. <option value="Svalbard And Jan Mayen" data-provinces="[]">Svalbard & Jan Mayen</option>
  14486. <option value="Sweden" data-provinces="[]">Sweden</option>
  14487. <option value="Switzerland" data-provinces="[]">Switzerland</option>
  14488. <option value="Taiwan" data-provinces="[]">Taiwan</option>
  14489. <option value="Tajikistan" data-provinces="[]">Tajikistan</option>
  14490. <option value="Tanzania, United Republic Of" data-provinces="[]">Tanzania</option>
  14491. <option value="Thailand" data-provinces="[[&quot;Amnat Charoen&quot;,&quot;Amnat Charoen&quot;],[&quot;Ang Thong&quot;,&quot;Ang Thong&quot;],[&quot;Bangkok&quot;,&quot;Bangkok&quot;],[&quot;Bueng Kan&quot;,&quot;Bueng Kan&quot;],[&quot;Buriram&quot;,&quot;Buri Ram&quot;],[&quot;Chachoengsao&quot;,&quot;Chachoengsao&quot;],[&quot;Chai Nat&quot;,&quot;Chai Nat&quot;],[&quot;Chaiyaphum&quot;,&quot;Chaiyaphum&quot;],[&quot;Chanthaburi&quot;,&quot;Chanthaburi&quot;],[&quot;Chiang Mai&quot;,&quot;Chiang Mai&quot;],[&quot;Chiang Rai&quot;,&quot;Chiang Rai&quot;],[&quot;Chon Buri&quot;,&quot;Chon Buri&quot;],[&quot;Chumphon&quot;,&quot;Chumphon&quot;],[&quot;Kalasin&quot;,&quot;Kalasin&quot;],[&quot;Kamphaeng Phet&quot;,&quot;Kamphaeng Phet&quot;],[&quot;Kanchanaburi&quot;,&quot;Kanchanaburi&quot;],[&quot;Khon Kaen&quot;,&quot;Khon Kaen&quot;],[&quot;Krabi&quot;,&quot;Krabi&quot;],[&quot;Lampang&quot;,&quot;Lampang&quot;],[&quot;Lamphun&quot;,&quot;Lamphun&quot;],[&quot;Loei&quot;,&quot;Loei&quot;],[&quot;Lopburi&quot;,&quot;Lopburi&quot;],[&quot;Mae Hong Son&quot;,&quot;Mae Hong Son&quot;],[&quot;Maha Sarakham&quot;,&quot;Maha Sarakham&quot;],[&quot;Mukdahan&quot;,&quot;Mukdahan&quot;],[&quot;Nakhon Nayok&quot;,&quot;Nakhon Nayok&quot;],[&quot;Nakhon Pathom&quot;,&quot;Nakhon Pathom&quot;],[&quot;Nakhon Phanom&quot;,&quot;Nakhon Phanom&quot;],[&quot;Nakhon Ratchasima&quot;,&quot;Nakhon Ratchasima&quot;],[&quot;Nakhon Sawan&quot;,&quot;Nakhon Sawan&quot;],[&quot;Nakhon Si Thammarat&quot;,&quot;Nakhon Si Thammarat&quot;],[&quot;Nan&quot;,&quot;Nan&quot;],[&quot;Narathiwat&quot;,&quot;Narathiwat&quot;],[&quot;Nong Bua Lam Phu&quot;,&quot;Nong Bua Lam Phu&quot;],[&quot;Nong Khai&quot;,&quot;Nong Khai&quot;],[&quot;Nonthaburi&quot;,&quot;Nonthaburi&quot;],[&quot;Pathum Thani&quot;,&quot;Pathum Thani&quot;],[&quot;Pattani&quot;,&quot;Pattani&quot;],[&quot;Pattaya&quot;,&quot;Pattaya&quot;],[&quot;Phangnga&quot;,&quot;Phang Nga&quot;],[&quot;Phatthalung&quot;,&quot;Phatthalung&quot;],[&quot;Phayao&quot;,&quot;Phayao&quot;],[&quot;Phetchabun&quot;,&quot;Phetchabun&quot;],[&quot;Phetchaburi&quot;,&quot;Phetchaburi&quot;],[&quot;Phichit&quot;,&quot;Phichit&quot;],[&quot;Phitsanulok&quot;,&quot;Phitsanulok&quot;],[&quot;Phra Nakhon Si Ayutthaya&quot;,&quot;Phra Nakhon Si Ayutthaya&quot;],[&quot;Phrae&quot;,&quot;Phrae&quot;],[&quot;Phuket&quot;,&quot;Phuket&quot;],[&quot;Prachin Buri&quot;,&quot;Prachin Buri&quot;],[&quot;Prachuap Khiri Khan&quot;,&quot;Prachuap Khiri Khan&quot;],[&quot;Ranong&quot;,&quot;Ranong&quot;],[&quot;Ratchaburi&quot;,&quot;Ratchaburi&quot;],[&quot;Rayong&quot;,&quot;Rayong&quot;],[&quot;Roi Et&quot;,&quot;Roi Et&quot;],[&quot;Sa Kaeo&quot;,&quot;Sa Kaeo&quot;],[&quot;Sakon Nakhon&quot;,&quot;Sakon Nakhon&quot;],[&quot;Samut Prakan&quot;,&quot;Samut Prakan&quot;],[&quot;Samut Sakhon&quot;,&quot;Samut Sakhon&quot;],[&quot;Samut Songkhram&quot;,&quot;Samut Songkhram&quot;],[&quot;Saraburi&quot;,&quot;Saraburi&quot;],[&quot;Satun&quot;,&quot;Satun&quot;],[&quot;Sing Buri&quot;,&quot;Sing Buri&quot;],[&quot;Sisaket&quot;,&quot;Si Sa Ket&quot;],[&quot;Songkhla&quot;,&quot;Songkhla&quot;],[&quot;Sukhothai&quot;,&quot;Sukhothai&quot;],[&quot;Suphan Buri&quot;,&quot;Suphanburi&quot;],[&quot;Surat Thani&quot;,&quot;Surat Thani&quot;],[&quot;Surin&quot;,&quot;Surin&quot;],[&quot;Tak&quot;,&quot;Tak&quot;],[&quot;Trang&quot;,&quot;Trang&quot;],[&quot;Trat&quot;,&quot;Trat&quot;],[&quot;Ubon Ratchathani&quot;,&quot;Ubon Ratchathani&quot;],[&quot;Udon Thani&quot;,&quot;Udon Thani&quot;],[&quot;Uthai Thani&quot;,&quot;Uthai Thani&quot;],[&quot;Uttaradit&quot;,&quot;Uttaradit&quot;],[&quot;Yala&quot;,&quot;Yala&quot;],[&quot;Yasothon&quot;,&quot;Yasothon&quot;]]">Thailand</option>
  14492. <option value="Timor Leste" data-provinces="[]">Timor-Leste</option>
  14493. <option value="Togo" data-provinces="[]">Togo</option>
  14494. <option value="Tokelau" data-provinces="[]">Tokelau</option>
  14495. <option value="Tonga" data-provinces="[]">Tonga</option>
  14496. <option value="Trinidad and Tobago" data-provinces="[]">Trinidad & Tobago</option>
  14497. <option value="Tristan da Cunha" data-provinces="[]">Tristan da Cunha</option>
  14498. <option value="Tunisia" data-provinces="[]">Tunisia</option>
  14499. <option value="Turkey" data-provinces="[]">Türkiye</option>
  14500. <option value="Turkmenistan" data-provinces="[]">Turkmenistan</option>
  14501. <option value="Turks and Caicos Islands" data-provinces="[]">Turks & Caicos Islands</option>
  14502. <option value="Tuvalu" data-provinces="[]">Tuvalu</option>
  14503. <option value="United States Minor Outlying Islands" data-provinces="[]">U.S. Outlying Islands</option>
  14504. <option value="Uganda" data-provinces="[]">Uganda</option>
  14505. <option value="Ukraine" data-provinces="[]">Ukraine</option>
  14506. <option value="United Arab Emirates" data-provinces="[[&quot;Abu Dhabi&quot;,&quot;Abu Dhabi&quot;],[&quot;Ajman&quot;,&quot;Ajman&quot;],[&quot;Dubai&quot;,&quot;Dubai&quot;],[&quot;Fujairah&quot;,&quot;Fujairah&quot;],[&quot;Ras al-Khaimah&quot;,&quot;Ras al-Khaimah&quot;],[&quot;Sharjah&quot;,&quot;Sharjah&quot;],[&quot;Umm al-Quwain&quot;,&quot;Umm al-Quwain&quot;]]">United Arab Emirates</option>
  14507. <option value="United Kingdom" data-provinces="[[&quot;British Forces&quot;,&quot;British Forces&quot;],[&quot;England&quot;,&quot;England&quot;],[&quot;Northern Ireland&quot;,&quot;Northern Ireland&quot;],[&quot;Scotland&quot;,&quot;Scotland&quot;],[&quot;Wales&quot;,&quot;Wales&quot;]]">United Kingdom</option>
  14508. <option value="United States" data-provinces="[[&quot;Alabama&quot;,&quot;Alabama&quot;],[&quot;Alaska&quot;,&quot;Alaska&quot;],[&quot;American Samoa&quot;,&quot;American Samoa&quot;],[&quot;Arizona&quot;,&quot;Arizona&quot;],[&quot;Arkansas&quot;,&quot;Arkansas&quot;],[&quot;Armed Forces Americas&quot;,&quot;Armed Forces Americas&quot;],[&quot;Armed Forces Europe&quot;,&quot;Armed Forces Europe&quot;],[&quot;Armed Forces Pacific&quot;,&quot;Armed Forces Pacific&quot;],[&quot;California&quot;,&quot;California&quot;],[&quot;Colorado&quot;,&quot;Colorado&quot;],[&quot;Connecticut&quot;,&quot;Connecticut&quot;],[&quot;Delaware&quot;,&quot;Delaware&quot;],[&quot;District of Columbia&quot;,&quot;Washington DC&quot;],[&quot;Federated States of Micronesia&quot;,&quot;Micronesia&quot;],[&quot;Florida&quot;,&quot;Florida&quot;],[&quot;Georgia&quot;,&quot;Georgia&quot;],[&quot;Guam&quot;,&quot;Guam&quot;],[&quot;Hawaii&quot;,&quot;Hawaii&quot;],[&quot;Idaho&quot;,&quot;Idaho&quot;],[&quot;Illinois&quot;,&quot;Illinois&quot;],[&quot;Indiana&quot;,&quot;Indiana&quot;],[&quot;Iowa&quot;,&quot;Iowa&quot;],[&quot;Kansas&quot;,&quot;Kansas&quot;],[&quot;Kentucky&quot;,&quot;Kentucky&quot;],[&quot;Louisiana&quot;,&quot;Louisiana&quot;],[&quot;Maine&quot;,&quot;Maine&quot;],[&quot;Marshall Islands&quot;,&quot;Marshall Islands&quot;],[&quot;Maryland&quot;,&quot;Maryland&quot;],[&quot;Massachusetts&quot;,&quot;Massachusetts&quot;],[&quot;Michigan&quot;,&quot;Michigan&quot;],[&quot;Minnesota&quot;,&quot;Minnesota&quot;],[&quot;Mississippi&quot;,&quot;Mississippi&quot;],[&quot;Missouri&quot;,&quot;Missouri&quot;],[&quot;Montana&quot;,&quot;Montana&quot;],[&quot;Nebraska&quot;,&quot;Nebraska&quot;],[&quot;Nevada&quot;,&quot;Nevada&quot;],[&quot;New Hampshire&quot;,&quot;New Hampshire&quot;],[&quot;New Jersey&quot;,&quot;New Jersey&quot;],[&quot;New Mexico&quot;,&quot;New Mexico&quot;],[&quot;New York&quot;,&quot;New York&quot;],[&quot;North Carolina&quot;,&quot;North Carolina&quot;],[&quot;North Dakota&quot;,&quot;North Dakota&quot;],[&quot;Northern Mariana Islands&quot;,&quot;Northern Mariana Islands&quot;],[&quot;Ohio&quot;,&quot;Ohio&quot;],[&quot;Oklahoma&quot;,&quot;Oklahoma&quot;],[&quot;Oregon&quot;,&quot;Oregon&quot;],[&quot;Palau&quot;,&quot;Palau&quot;],[&quot;Pennsylvania&quot;,&quot;Pennsylvania&quot;],[&quot;Puerto Rico&quot;,&quot;Puerto Rico&quot;],[&quot;Rhode Island&quot;,&quot;Rhode Island&quot;],[&quot;South Carolina&quot;,&quot;South Carolina&quot;],[&quot;South Dakota&quot;,&quot;South Dakota&quot;],[&quot;Tennessee&quot;,&quot;Tennessee&quot;],[&quot;Texas&quot;,&quot;Texas&quot;],[&quot;Utah&quot;,&quot;Utah&quot;],[&quot;Vermont&quot;,&quot;Vermont&quot;],[&quot;Virgin Islands&quot;,&quot;U.S. Virgin Islands&quot;],[&quot;Virginia&quot;,&quot;Virginia&quot;],[&quot;Washington&quot;,&quot;Washington&quot;],[&quot;West Virginia&quot;,&quot;West Virginia&quot;],[&quot;Wisconsin&quot;,&quot;Wisconsin&quot;],[&quot;Wyoming&quot;,&quot;Wyoming&quot;]]">United States</option>
  14509. <option value="Uruguay" data-provinces="[[&quot;Artigas&quot;,&quot;Artigas&quot;],[&quot;Canelones&quot;,&quot;Canelones&quot;],[&quot;Cerro Largo&quot;,&quot;Cerro Largo&quot;],[&quot;Colonia&quot;,&quot;Colonia&quot;],[&quot;Durazno&quot;,&quot;Durazno&quot;],[&quot;Flores&quot;,&quot;Flores&quot;],[&quot;Florida&quot;,&quot;Florida&quot;],[&quot;Lavalleja&quot;,&quot;Lavalleja&quot;],[&quot;Maldonado&quot;,&quot;Maldonado&quot;],[&quot;Montevideo&quot;,&quot;Montevideo&quot;],[&quot;Paysandú&quot;,&quot;Paysandú&quot;],[&quot;Rivera&quot;,&quot;Rivera&quot;],[&quot;Rocha&quot;,&quot;Rocha&quot;],[&quot;Río Negro&quot;,&quot;Río Negro&quot;],[&quot;Salto&quot;,&quot;Salto&quot;],[&quot;San José&quot;,&quot;San José&quot;],[&quot;Soriano&quot;,&quot;Soriano&quot;],[&quot;Tacuarembó&quot;,&quot;Tacuarembó&quot;],[&quot;Treinta y Tres&quot;,&quot;Treinta y Tres&quot;]]">Uruguay</option>
  14510. <option value="Uzbekistan" data-provinces="[]">Uzbekistan</option>
  14511. <option value="Vanuatu" data-provinces="[]">Vanuatu</option>
  14512. <option value="Holy See (Vatican City State)" data-provinces="[]">Vatican City</option>
  14513. <option value="Venezuela" data-provinces="[[&quot;Amazonas&quot;,&quot;Amazonas&quot;],[&quot;Anzoátegui&quot;,&quot;Anzoátegui&quot;],[&quot;Apure&quot;,&quot;Apure&quot;],[&quot;Aragua&quot;,&quot;Aragua&quot;],[&quot;Barinas&quot;,&quot;Barinas&quot;],[&quot;Bolívar&quot;,&quot;Bolívar&quot;],[&quot;Carabobo&quot;,&quot;Carabobo&quot;],[&quot;Cojedes&quot;,&quot;Cojedes&quot;],[&quot;Delta Amacuro&quot;,&quot;Delta Amacuro&quot;],[&quot;Dependencias Federales&quot;,&quot;Federal Dependencies&quot;],[&quot;Distrito Capital&quot;,&quot;Capital&quot;],[&quot;Falcón&quot;,&quot;Falcón&quot;],[&quot;Guárico&quot;,&quot;Guárico&quot;],[&quot;La Guaira&quot;,&quot;Vargas&quot;],[&quot;Lara&quot;,&quot;Lara&quot;],[&quot;Miranda&quot;,&quot;Miranda&quot;],[&quot;Monagas&quot;,&quot;Monagas&quot;],[&quot;Mérida&quot;,&quot;Mérida&quot;],[&quot;Nueva Esparta&quot;,&quot;Nueva Esparta&quot;],[&quot;Portuguesa&quot;,&quot;Portuguesa&quot;],[&quot;Sucre&quot;,&quot;Sucre&quot;],[&quot;Trujillo&quot;,&quot;Trujillo&quot;],[&quot;Táchira&quot;,&quot;Táchira&quot;],[&quot;Yaracuy&quot;,&quot;Yaracuy&quot;],[&quot;Zulia&quot;,&quot;Zulia&quot;]]">Venezuela</option>
  14514. <option value="Vietnam" data-provinces="[]">Vietnam</option>
  14515. <option value="Wallis And Futuna" data-provinces="[]">Wallis & Futuna</option>
  14516. <option value="Western Sahara" data-provinces="[]">Western Sahara</option>
  14517. <option value="Yemen" data-provinces="[]">Yemen</option>
  14518. <option value="Zambia" data-provinces="[]">Zambia</option>
  14519. <option value="Zimbabwe" data-provinces="[]">Zimbabwe</option></template>
  14520.                                </select><svg
  14521.  xmlns="http://www.w3.org/2000/svg"
  14522.  class="icon icon-caret-down icon--medium"
  14523.  viewBox="0 0 20 20"
  14524.  fill="none"
  14525. >
  14526.  <path d="M16.25 7.5L10 13.75L3.75 7.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14527. </svg>
  14528. </div>
  14529.                            </div>
  14530.                            <div class="form-field reset-spacing" hidden>
  14531.                              <label class="form-label" for="ShippingCalculatorProvince-sections--18997227913428__cart-drawer">Province</label>
  14532.                              <div class="select">
  14533.                                <select
  14534.                                  name="address[province]"
  14535.                                  class="form-control form-control--select"
  14536.                                  autocomplete="address-level1"
  14537.                                  id="ShippingCalculatorProvince-sections--18997227913428__cart-drawer"
  14538.                                ></select><svg
  14539.  xmlns="http://www.w3.org/2000/svg"
  14540.  class="icon icon-caret-down icon--medium"
  14541.  viewBox="0 0 20 20"
  14542.  fill="none"
  14543. >
  14544.  <path d="M16.25 7.5L10 13.75L3.75 7.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14545. </svg>
  14546. </div>
  14547.                            </div>
  14548.                          </country-province>
  14549.                          <div class="form-field">
  14550.                            <label class="form-label" for="ShippingCalculatorZip-sections--18997227913428__cart-drawer">Postal/ZIP code</label>
  14551.                            <input
  14552.                              name="address[zip]"
  14553.                              class="form-control form-control--input"
  14554.                              type="text"
  14555.                              autocapitalize="characters"
  14556.                              autocomplete="postal-code"
  14557.                              placeholder=" "
  14558.                              id="ShippingCalculatorZip-sections--18997227913428__cart-drawer"
  14559.                              
  14560.                            >
  14561.                          </div>
  14562.                          <div class="">
  14563.                            <button class="btn btn--primary" type="submit">
  14564.                              <span>Calculate</span>
  14565.  
  14566. <div class="loading__spinner hidden">
  14567.  <svg
  14568.    aria-hidden="true"
  14569.    focusable="false"
  14570.    class="spinner icon icon--extra-medium"
  14571.    viewBox="0 0 66 66"
  14572.    xmlns="http://www.w3.org/2000/svg"
  14573.  >
  14574.    <circle class="path" fill="none" stroke-width="4" cx="33" cy="33" r="30"></circle>
  14575.  </svg>
  14576. </div>
  14577. </button>
  14578.                          </div>
  14579.                          <div class="grid gap-3"></div>
  14580.                        </form>
  14581.                      </div>
  14582.                    </div>
  14583.                  </calculate-shipping></div></div>
  14584.          <div class="drawer__footer-body">
  14585.            <div class="grid gap-4">
  14586.              <div class="grid gap-2"><div class="totals flex justify-between items-center">
  14587.                  <span class="totals__subtotal h4">Estimated total</span>
  14588.                  <span class="totals__subtotal-value h4 font-body-bolder">$0.00 AUD</span>
  14589.                </div>
  14590.                <div class="tax-note">Taxes and <a href="/policies/shipping-policy" class="btn--link">shipping</a> calculated at checkout</div>
  14591.              </div>
  14592.              <form
  14593.                action="/cart"
  14594.                method="POST"
  14595.                novalidate
  14596.                class="drawer__footer-buttons flex flex-wrap gap-2"
  14597.              >
  14598.                <a href="/cart" class="btn btn--secondary">
  14599.                  View cart
  14600.                </a>
  14601.                <button class="btn btn--primary flex-grow" type="submit" name="checkout">
  14602.                  Check out
  14603.                </button>
  14604.              </form>
  14605.            </div>
  14606.          </div>
  14607.        </div>
  14608.      </div>
  14609.    </div>
  14610.  </cart-drawer>
  14611. </div><div id="shopify-section-sections--18997227913428__search-drawer" class="shopify-section shopify-section-group-overlay-group"><link
  14612.  rel="stylesheet"
  14613.  href="//mymimi.com.au/cdn/shop/t/11/assets/search.css?v=94606528337522958341738695060"
  14614.  media="print"
  14615.  fetchpriority="low"
  14616.  onload="this.media='all'"
  14617. ><script src="//mymimi.com.au/cdn/shop/t/11/assets/search.js?v=33075705360132167011738695060" defer="defer"></script><search-drawer id="SearchDrawer" class="search-drawer drawer drawer--right" shopify-design-mode hidden>
  14618.  <div class="fixed-overlay" aria-controls="SearchDrawer"></div>
  14619.  <div class="drawer__inner">
  14620.    <button class="drawer__close-btn z-1" aria-controls="SearchDrawer" type="button">
  14621.      <svg
  14622.  xmlns="http://www.w3.org/2000/svg"
  14623.  aria-hidden="true"
  14624.  focusable="false"
  14625.  class="icon icon-close icon--medium"
  14626.  fill="none"
  14627.  viewBox="0 0 24 24"
  14628. >
  14629.  <path d="M18.75 5.13496L5.25 18.8544" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14630.  <path d="M18.75 18.8544L5.25 5.13496" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14631. </svg>
  14632.  
  14633.    </button>
  14634.    <div class="drawer__content flex flex-col h-full w-full">
  14635.      <div class="drawer__header search-drawer__header">
  14636.        <h2 class="drawer__heading h3 flex items-center">
  14637.          Search
  14638.        </h2>
  14639.      </div>
  14640.      <div class="v-scrollable"><form
  14641.  action="/search"
  14642.  
  14643.    is="predictive-search"
  14644.    data-results-limit="3"
  14645.  
  14646.  method="get"
  14647.  role="search"
  14648.  class="search__form flex flex-col w-full h-full relative"
  14649.  data-search-recommendation-empty="false"
  14650. >
  14651.  <input type="hidden" name="options[prefix]" value="last">
  14652.  <div class="search__field relative flex items-center">
  14653.    <span class="search__field-icon absolute search__icon-search flex items-center justify-center"><svg
  14654.  xmlns="http://www.w3.org/2000/svg"
  14655.  class="icon icon-search icon--large"
  14656.  viewBox="0 0 24 24"
  14657.  fill="none"
  14658. >
  14659.  <path d="M10.875 18.75C15.2242 18.75 18.75 15.2242 18.75 10.875C18.75 6.52576 15.2242 3 10.875 3C6.52576 3 3 6.52576 3 10.875C3 15.2242 6.52576 18.75 10.875 18.75Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14660.  <path d="M16.4434 16.4453L20.9997 21.0016" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  14661. </svg>
  14662. </span>
  14663.    <input
  14664.      id="SearchInput-sections--18997227913428__search-drawer"
  14665.      class="search__input form-control"
  14666.      type="search"
  14667.      name="q"
  14668.      
  14669.      placeholder="Search"
  14670.      
  14671.        role="combobox"
  14672.        aria-expanded="false"
  14673.        aria-owns="predictive-search-results"
  14674.        aria-controls="predictive-search-results"
  14675.        aria-haspopup="listbox"
  14676.        aria-autocomplete="list"
  14677.        autocorrect="off"
  14678.        autocomplete="off"
  14679.        autocapitalize="off"
  14680.        spellcheck="false"
  14681.      
  14682.    >
  14683.    <label class="visually-hidden" for="SearchInput-sections--18997227913428__search-drawer">Search</label>
  14684.      <button
  14685.        type="reset"
  14686.        class="search__reset absolute flex items-center justify-center text-subtext"
  14687.        aria-label="Clear search term"
  14688.      >
  14689.        <span>Clear</span>
  14690.        
  14691.  
  14692. <div class="loading__spinner hidden">
  14693.  <svg
  14694.    aria-hidden="true"
  14695.    focusable="false"
  14696.    class="spinner icon icon--extra-medium"
  14697.    viewBox="0 0 66 66"
  14698.    xmlns="http://www.w3.org/2000/svg"
  14699.  >
  14700.    <circle class="path" fill="none" stroke-width="4" cx="33" cy="33" r="30"></circle>
  14701.  </svg>
  14702. </div>
  14703.  
  14704.      </button></div>
  14705.  <div class="search__content flex-grow"><div class="search_box search__recommendations grid gap-6"><div class="search__most-searched-keywords search__box-item grid gap-3">
  14706.            <h4 class="h5">Most searched keywords</h4>
  14707.            <ul class="flex flex-wrap gap-x-1 gap-y-2"><li>
  14708.                  <a
  14709.                    href="/search?type=product&options%5Bprefix%5D=last&q=menstrual disc"
  14710.                    class="reversed-link text-capitalize"
  14711.                  >menstrual disc
  14712. </a>
  14713.                </li></ul>
  14714.          </div>
  14715.          <div class="search__products-recommendation search__box-item grid gap-6">
  14716.            <h4 class="h5">Most searched products</h4>
  14717.            <ul class="grid gap-4"><li class="predictive-search__list-item">
  14718.                  <div class="flex items-center gap-3"><a href="/products/my-mimi-menstrual-disc" class="media-wrapper blocks-radius-sm">
  14719.                        <img
  14720.                          class=""
  14721.                          src="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=150"
  14722.                          alt="my mimi reusable menstrual disc made from 100% medical grade silicone – sustainable period care solution"
  14723.                          width="100"
  14724.                          is="image-lazy"
  14725.                          loading="lazy"
  14726.                          height="100.0"
  14727.                        >
  14728.                      </a><div class="grid gap-1">
  14729.                      <p class="block m-0">
  14730.                        <a href="/products/my-mimi-menstrual-disc" class="reversed-link text-pcard-title">menstrual disc - comfortable &amp; leak-free protection</a>
  14731.                      </p>
  14732.                      
  14733. <div
  14734.  class="
  14735.    f-price"
  14736. ><div class="f-price__regular">
  14737.    <span class="visually-hidden visually-hidden--inline">Regular price</span>
  14738.    <span class="f-price-item f-price-item--regular">
  14739.      $44.95
  14740.    </span>
  14741.  </div>
  14742.  <div class="f-price__sale">
  14743.    <span class="visually-hidden visually-hidden--inline">Sale price</span>
  14744.    <span class="f-price-item f-price-item--sale">
  14745.      $44.95
  14746.    </span>
  14747.      <span class="visually-hidden visually-hidden--inline">Regular price</span>
  14748.      <span class="f-price-item f-price-item--regular">
  14749.        <s>
  14750.          
  14751.            
  14752.          
  14753.        </s>
  14754.      </span></div>
  14755.  <div class="f-price__unit-wrapper hidden">
  14756.    <span class="visually-hidden">Unit price</span>
  14757.    <div class="f-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span class="visually-hidden">per&nbsp;</span><span data-unit-price-base-unit></span></div>
  14758.  </div>
  14759.  
  14760.  
  14761. </div>
  14762.  
  14763.                    </div>
  14764.                  </div>
  14765.                </li></ul>
  14766.          </div></div><div class="search__box search__results w-full h-full">
  14767.      <div
  14768.        id="PredictiveSearchResults-sections--18997227913428__search-drawer"
  14769.        role="listbox"
  14770.        class="h-full w-full"
  14771.      ></div>
  14772.    </div>
  14773.  </div>
  14774. </form>
  14775. </div>
  14776.    </div>
  14777.  </div>
  14778. </search-drawer>
  14779.  
  14780. </div><div id="shopify-section-sections--18997227913428__quick-view" class="shopify-section shopify-section-group-overlay-group section-group-overlay-quick-view">
  14781. </div>
  14782. <!-- END sections: overlay-group -->
  14783. <ul hidden>
  14784.      <li id="a11y-refresh-page-message">Choosing a selection results in a full page refresh.</li>
  14785.      <li id="a11y-new-window-message">Opens in a new window.</li>
  14786.    </ul>
  14787.  
  14788.    
  14789.      <script src="//mymimi.com.au/cdn/shop/t/11/assets/quick-view.js?v=2969925004022311361738695060" defer="defer"></script>
  14790.    
  14791.  
  14792.    <script>
  14793.  // LazyLoad YouTube Videos
  14794.  document.addEventListener("DOMContentLoaded", function() {
  14795.      document.querySelectorAll(".youtube-wrapper").forEach(function(el) {
  14796.          el.addEventListener("click", function() {
  14797.              let videoId = el.getAttribute("data-id");
  14798.              let iframe = document.createElement("iframe");
  14799.              iframe.src = `https://www.youtube.com/embed/${videoId}?autoplay=1&rel=0`;
  14800.              iframe.setAttribute("frameborder", "0");
  14801.              iframe.setAttribute("allowfullscreen", "true");
  14802.              iframe.style.width = "100%";
  14803.              iframe.style.height = "100%";
  14804.              el.innerHTML = ""; // Clear existing content
  14805.              el.appendChild(iframe); // Append new iframe
  14806.          });
  14807.      });
  14808.  });
  14809.  
  14810.  // Delay Shopify Chatbubble
  14811.  document.addEventListener("mousemove", function() {
  14812.      if (!window.chatLoaded) {
  14813.          let script = document.createElement("script");
  14814.          script.src = "https://cdn.shopify.com/shopifycloud/chat-ui/v1/shopifyChatWidget.js"; // Confirm this is the correct URL
  14815.          script.defer = true;
  14816.          document.body.appendChild(script);
  14817.          window.chatLoaded = true;
  14818.      }
  14819.  }, { once: true });
  14820.  
  14821.  // Facebook Pixel – Load Only After Cookie Consent
  14822.  document.addEventListener("DOMContentLoaded", function() {
  14823.      if (localStorage.getItem("cookieConsent") === "true") {
  14824.          let script = document.createElement("script");
  14825.          script.src = "https://connect.facebook.net/en_US/fbevents.js";
  14826.          script.async = true;
  14827.          document.body.appendChild(script);
  14828.      }
  14829.  });
  14830.    </script>
  14831.  
  14832.    <script type="text/javascript">
  14833.        // Statcounter code for mymimi http://www.mymimi.com.au on Shopify
  14834.      var sc_project=13000597;
  14835.      var sc_invisible=1;
  14836.      var sc_security="4841207b";
  14837.    </script>
  14838.    <script
  14839.      type="text/javascript"
  14840.      src="https://www.statcounter.com/counter/counter.js"
  14841.      defer
  14842.    ></script>
  14843.    <noscript>
  14844.      <div class="statcounter">
  14845.        <a
  14846.          title="Web Analytics"
  14847.          href="https://statcounter.com/"
  14848.          target="_blank"
  14849.          ><img
  14850.            class="statcounter"
  14851.            src="https://c.statcounter.com/13000597/0/4841207b/1/"
  14852.            alt="Web Analytics"
  14853.            referrerPolicy="no-referrer-when-downgrade"
  14854.        ></a>
  14855.      </div>
  14856.    </noscript>
  14857.    <!-- End of Statcounter Code -->
  14858.  
  14859.    <script>
  14860.      //Excludes unnecessary Java Script //
  14861.        if (window.innerWidth < 768) {
  14862.            document.querySelectorAll("script[src]").forEach(script => {
  14863.                if (script.src.includes("unnecessary-script.js")) {
  14864.                    script.remove();
  14865.                }
  14866.            });
  14867.        }
  14868.    </script>
  14869.  <style> .page-title,h1.page-title {text-align: left !important;} </style>
  14870. <div id="shopify-block-AZFd6aGFnS21FS1hVa__13768625480086291342" class="shopify-block shopify-app-block"><script>
  14871.  window['ShopifyForms'] = {
  14872.    ...window['ShopifyForms'],
  14873.    currentPageType: "index"
  14874.  };
  14875. </script>
  14876.  
  14877.  
  14878. </div><div id="shopify-block-Aajk0TllTV2lJZTdoT__15683396631634586217" class="shopify-block shopify-app-block"><script
  14879.  id="chat-button-container"
  14880.  data-horizontal-position=bottom_right
  14881.  data-vertical-position=higher
  14882.  data-icon=chat_bubble
  14883.  data-text=chat_with_us
  14884.  data-color=#000000
  14885.  data-secondary-color=#ffffff
  14886.  data-ternary-color=#6a6a6a
  14887.  
  14888.  data-domain=mymimi.com.au
  14889.  data-shop-domain=mymimi.com.au
  14890.  data-external-identifier=U2BG7PIE85FwmotxUSDUz88zhyxP7YvLT7iuDpm0qac
  14891.  
  14892. >
  14893. </script>
  14894.  
  14895.  
  14896. </div></body>
  14897. </html>
  14898.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda