<!doctype html>
<html
class="no-js"
lang="en"
>
<head>
<script>
// Lazy --> Changed to "eager" Loading Script for entire Theme Liquid//
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll("img").forEach(img => {
if (!img.hasAttribute("loading")) {
img.setAttribute("loading", "eager");
}
});
});
</script>
<!-- CLS (Cumulative Layout Shift) -->
<style>
body { visibility: hidden; }
</style>
<script>
//CLS (Cumulative Layout Shift)
document.addEventListener("DOMContentLoaded", function() {
document.body.style.visibility = "visible";
});
</script>
<!-- Microsoft Clarity -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "q2ws21t7ot");
</script>
<!-- End Microsoft Clarity -->
<!-- Google Tag Manager (Optimized for Performance) -->
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' });
function loadGTM() {
if (!w.gtmLoaded) {
let script = d.createElement(s);
script.async = true;
script.src = 'https://www.googletagmanager.com/gtm.js?id=' + i;
d.body.appendChild(script);
w.gtmLoaded = true;
}
}
// Load GTM immediately if JavaScript is enabled
if (document.readyState === "complete") {
loadGTM();
} else {
d.addEventListener("DOMContentLoaded", loadGTM);
d.addEventListener("scroll", loadGTM, { once: true });
}
})(window, document, 'script', 'dataLayer', 'GTM-P2B2ZR8K');
</script>
<!-- End Google Tag Manager -->
<script>
/**
* Author: Md Hasanuzzamna
* Email: info@leomeasure.com
* Linkedin: https://linkedin.com/in/md-h
* Version: 3.5.0
* Last Update: 22 Oct 2024
*/
(function() {
class Ultimate_Shopify_DataLayer {
constructor() {
window.dataLayer = window.dataLayer || [];
// use a prefix of events name
this.eventPrefix = 'popy_';
//Keep the value false to get non-formatted product ID
this.formattedItemId = true;
// data schema
this.dataSchema = {
ecommerce: {
show: true
},
dynamicRemarketing: {
show: false,
business_vertical: 'retail'
}
}
// add to wishlist selectors
this.addToWishListSelectors = {
'addWishListIcon': '',
'gridItemSelector': '',
'productLinkSelector': 'a[href*="/products/"]'
}
// quick view selectors
this.quickViewSelector = {
'quickViewElement': '',
'gridItemSelector': '',
'productLinkSelector': 'a[href*="/products/"]'
}
// mini cart button selector
this.miniCartButton = [
'a[href="/cart"]',
];
this.miniCartAppersOn = 'click';
// begin checkout buttons/links selectors
this.beginCheckoutButtons = [
'input[name="checkout"]',
'button[name="checkout"]',
'a[href="/checkout"]',
'.additional-checkout-buttons',
];
// direct checkout button selector
this.shopifyDirectCheckoutButton = [
'.shopify-payment-button'
]
//Keep the value true if Add to Cart redirects to the cart page
this.isAddToCartRedirect = false;
// keep the value false if cart items increment/decrement/remove refresh page
this.isAjaxCartIncrementDecrement = true;
// Caution: Do not modify anything below this line, as it may result in it not functioning correctly.
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}
this.countryCode = "AU";
this.storeURL = "https://mymimi.com.au";
localStorage.setItem('shopCountryCode', this.countryCode);
this.collectData();
this.itemsList = [];
}
updateCart() {
fetch("/cart.js")
.then((response) => response.json())
.then((data) => {
this.cart = data;
});
}
debounce(delay) {
let timeoutId;
return function(func) {
const context = this;
const args = arguments;
clearTimeout(timeoutId);
timeoutId = setTimeout(function() {
func.apply(context, args);
}, delay);
};
}
eventConsole(eventName, eventData) {
const css1 = 'background: red; color: #fff; font-size: normal; border-radius: 3px 0 0 3px; padding: 3px 4px;';
const css2 = 'background-color: blue; color: #fff; font-size: normal; border-radius: 0 3px 3px 0; padding: 3px 4px;';
console.log('%cGTM DataLayer Event:%c' + eventName, css1, css2, eventData);
}
collectData() {
this.customerData();
this.ajaxRequestData();
this.searchPageData();
this.miniCartData();
this.beginCheckoutData();
this.addToWishListData();
this.quickViewData();
this.selectItemData();
this.formData();
this.phoneClickData();
this.emailClickData();
this.loginRegisterData();
}
//logged-in customer data
customerData() {
const currentUser = {};
if (currentUser.email) {
currentUser.hash_email = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
}
if (currentUser.phone) {
currentUser.hash_phone = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
}
window.dataLayer = window.dataLayer || [];
dataLayer.push({
customer: currentUser
});
}
// add_to_cart, remove_from_cart, search
ajaxRequestData() {
const self = this;
// handle non-ajax add to cart
if(this.isAddToCartRedirect) {
document.addEventListener('submit', function(event) {
const addToCartForm = event.target.closest('form[action="/cart/add"]');
if(addToCartForm) {
event.preventDefault();
const formData = new FormData(addToCartForm);
fetch(window.Shopify.routes.root + 'cart/add.js', {
method: 'POST',
body: formData
})
.then(response => {
window.location.href = "/cart";
})
.catch((error) => {
console.error('Error:', error);
});
}
});
}
// fetch
let originalFetch = window.fetch;
let debounce = this.debounce(800);
window.fetch = function () {
return originalFetch.apply(this, arguments).then((response) => {
if (response.ok) {
let cloneResponse = response.clone();
let requestURL = arguments[0]['url'] || arguments[0];
if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {
const queryString = requestURL.split('?')[1];
const urlParams = new URLSearchParams(queryString);
const search_term = urlParams.get("q");
debounce(function() {
fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
.then(res => res.json())
.then(function(data) {
const products = data.resources.results.products;
if(products.length) {
const fetchRequests = products.map(product =>
fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
.then(response => response.json())
.catch(error => console.error('Error fetching:', error))
);
Promise.all(fetchRequests)
.then(products => {
const items = products.map((product) => {
return {
product_id: product.id,
product_title: product.title,
variant_id: product.variants[0].id,
variant_title: product.variants[0].title,
vendor: product.vendor,
total_discount: 0,
final_price: product.price_min,
product_type: product.type,
quantity: 1
}
});
self.ecommerceDataLayer('search', {search_term, items});
})
}else {
self.ecommerceDataLayer('search', {search_term, items: []});
}
});
});
}
else if (requestURL.includes("/cart/add")) {
cloneResponse.text().then((text) => {
let data = JSON.parse(text);
if(data.items && Array.isArray(data.items)) {
data.items.forEach(function(item) {
self.ecommerceDataLayer('add_to_cart', {items: [item]});
})
} else {
self.ecommerceDataLayer('add_to_cart', {items: [data]});
}
self.updateCart();
});
}else if(requestURL.includes("/cart/change") || requestURL.includes("/cart/update")) {
cloneResponse.text().then((text) => {
let newCart = JSON.parse(text);
let newCartItems = newCart.items;
let oldCartItems = self.cart.items;
for(let i = 0; i < oldCartItems.length; i++) {
let item = oldCartItems[i];
let newItem = newCartItems.find(newItems => newItems.id === item.id);
if(newItem) {
if(newItem.quantity > item.quantity) {
// cart item increment
let quantity = (newItem.quantity - item.quantity);
let updatedItem = {...item, quantity}
self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
self.updateCart();
}else if(newItem.quantity < item.quantity) {
// cart item decrement
let quantity = (item.quantity - newItem.quantity);
let updatedItem = {...item, quantity}
self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
self.updateCart();
}
}else {
self.ecommerceDataLayer('remove_from_cart', {items: [item]});
self.updateCart();
}
}
});
}
}
return response;
});
}
// end fetch
//xhr
var origXMLHttpRequest = XMLHttpRequest;
XMLHttpRequest = function() {
var requestURL;
var xhr = new origXMLHttpRequest();
var origOpen = xhr.open;
var origSend = xhr.send;
// Override the `open` function.
xhr.open = function(method, url) {
requestURL = url;
return origOpen.apply(this, arguments);
};
xhr.send = function() {
// Only proceed if the request URL matches what we're looking for.
if (requestURL.includes("/cart/add") || requestURL.includes("/cart/change") || /.*\/search\/?.*\?.*q=.+/.test(requestURL)) {
xhr.addEventListener('load', function() {
if (xhr.readyState === 4) {
if (xhr.status >= 200 && xhr.status < 400) {
if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {
const queryString = requestURL.split('?')[1];
const urlParams = new URLSearchParams(queryString);
const search_term = urlParams.get("q");
debounce(function() {
fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
.then(res => res.json())
.then(function(data) {
const products = data.resources.results.products;
if(products.length) {
const fetchRequests = products.map(product =>
fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
.then(response => response.json())
.catch(error => console.error('Error fetching:', error))
);
Promise.all(fetchRequests)
.then(products => {
const items = products.map((product) => {
return {
product_id: product.id,
product_title: product.title,
variant_id: product.variants[0].id,
variant_title: product.variants[0].title,
vendor: product.vendor,
total_discount: 0,
final_price: product.price_min,
product_type: product.type,
quantity: 1
}
});
self.ecommerceDataLayer('search', {search_term, items});
})
}else {
self.ecommerceDataLayer('search', {search_term, items: []});
}
});
});
}
else if(requestURL.includes("/cart/add")) {
const data = JSON.parse(xhr.responseText);
if(data.items && Array.isArray(data.items)) {
data.items.forEach(function(item) {
self.ecommerceDataLayer('add_to_cart', {items: [item]});
})
} else {
self.ecommerceDataLayer('add_to_cart', {items: [data]});
}
self.updateCart();
}else if(requestURL.includes("/cart/change")) {
const newCart = JSON.parse(xhr.responseText);
const newCartItems = newCart.items;
let oldCartItems = self.cart.items;
for(let i = 0; i < oldCartItems.length; i++) {
let item = oldCartItems[i];
let newItem = newCartItems.find(newItems => newItems.id === item.id);
if(newItem) {
if(newItem.quantity > item.quantity) {
// cart item increment
let quantity = (newItem.quantity - item.quantity);
let updatedItem = {...item, quantity}
self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
self.updateCart();
}else if(newItem.quantity < item.quantity) {
// cart item decrement
let quantity = (item.quantity - newItem.quantity);
let updatedItem = {...item, quantity}
self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
self.updateCart();
}
}else {
self.ecommerceDataLayer('remove_from_cart', {items: [item]});
self.updateCart();
}
}
}
}
}
});
}
return origSend.apply(this, arguments);
};
return xhr;
};
//end xhr
}
// search event from search page
searchPageData() {
const self = this;
let pageUrl = window.location.href;
if(/.+\/search\?.*\&?q=.+/.test(pageUrl)) {
const queryString = pageUrl.split('?')[1];
const urlParams = new URLSearchParams(queryString);
const search_term = urlParams.get("q");
fetch(`https://mymimi.com.au/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
.then(res => res.json())
.then(function(data) {
const products = data.resources.results.products;
if(products.length) {
const fetchRequests = products.map(product =>
fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
.then(response => response.json())
.catch(error => console.error('Error fetching:', error))
);
Promise.all(fetchRequests)
.then(products => {
const items = products.map((product) => {
return {
product_id: product.id,
product_title: product.title,
variant_id: product.variants[0].id,
variant_title: product.variants[0].title,
vendor: product.vendor,
total_discount: 0,
final_price: product.price_min,
product_type: product.type,
quantity: 1
}
});
self.ecommerceDataLayer('search', {search_term, items});
});
}else {
self.ecommerceDataLayer('search', {search_term, items: []});
}
});
}
}
// view_cart
miniCartData() {
if(this.miniCartButton.length) {
let self = this;
if(this.miniCartAppersOn === 'hover') {
this.miniCartAppersOn = 'mouseenter';
}
this.miniCartButton.forEach((selector) => {
let miniCartButtons = document.querySelectorAll(selector);
miniCartButtons.forEach((miniCartButton) => {
miniCartButton.addEventListener(self.miniCartAppersOn, () => {
self.ecommerceDataLayer('view_cart', self.cart);
});
})
});
}
}
// begin_checkout
beginCheckoutData() {
let self = this;
document.addEventListener('pointerdown', (event) => {
let targetElement = event.target.closest(self.beginCheckoutButtons.join(', '));
if(targetElement) {
self.ecommerceDataLayer('begin_checkout', self.cart);
}
});
}
// view_cart, add_to_cart, remove_from_cart
viewCartPageData() {
this.ecommerceDataLayer('view_cart', this.cart);
//if cart quantity chagne reload page
if(!this.isAjaxCartIncrementDecrement) {
const self = this;
document.addEventListener('pointerdown', (event) => {
const target = event.target.closest('a[href*="/cart/change?"]');
if(target) {
const linkUrl = target.getAttribute('href');
const queryString = linkUrl.split("?")[1];
const urlParams = new URLSearchParams(queryString);
const newQuantity = urlParams.get("quantity");
const line = urlParams.get("line");
const cart_id = urlParams.get("id");
if(newQuantity && (line || cart_id)) {
let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
let event = 'add_to_cart';
if(newQuantity < item.quantity) {
event = 'remove_from_cart';
}
let quantity = Math.abs(newQuantity - item.quantity);
item['quantity'] = quantity;
self.ecommerceDataLayer(event, {items: [item]});
}
}
});
}
}
productSinglePage() {
}
collectionsPageData() {
var ecommerce = {
'items': [
]
};
this.itemsList = ecommerce.items;
ecommerce['item_list_id'] = null
ecommerce['item_list_name'] = null
this.ecommerceDataLayer('view_item_list', ecommerce);
}
// add to wishlist
addToWishListData() {
if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
const self = this;
document.addEventListener('pointerdown', (event) => {
let target = event.target;
if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
let pageULR = window.location.href.replace(/\?.+/, '');
let requestURL = undefined;
if(/\/products\/[^/]+$/.test(pageULR)) {
requestURL = pageULR;
} else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
if(itemElement) {
let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
if(linkElement) {
let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
if(link && /\/products\/[^/]+$/.test(link)) {
requestURL = link;
}
}
}
}
if(requestURL) {
fetch(requestURL + '.json')
.then(res => res.json())
.then(result => {
let data = result.product;
if(data) {
let dataLayerData = {
product_id: data.id,
variant_id: data.variants[0].id,
product_title: data.title,
quantity: 1,
final_price: parseFloat(data.variants[0].price) * 100,
total_discount: 0,
product_type: data.product_type,
vendor: data.vendor,
variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
sku: data.variants[0].sku,
}
self.ecommerceDataLayer('add_to_wishlist', {items: [dataLayerData]});
}
});
}
}
});
}
}
quickViewData() {
if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
const self = this;
document.addEventListener('pointerdown', (event) => {
let target = event.target;
if(target.closest(self.quickViewSelector.quickViewElement)) {
let requestURL = undefined;
let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
if(itemElement) {
let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
if(linkElement) {
let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
if(link && /\/products\/[^/]+$/.test(link)) {
requestURL = link;
}
}
}
if(requestURL) {
fetch(requestURL + '.json')
.then(res => res.json())
.then(result => {
let data = result.product;
if(data) {
let dataLayerData = {
product_id: data.id,
variant_id: data.variants[0].id,
product_title: data.title,
quantity: 1,
final_price: parseFloat(data.variants[0].price) * 100,
total_discount: 0,
product_type: data.product_type,
vendor: data.vendor,
variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
sku: data.variants[0].sku,
}
self.ecommerceDataLayer('view_item', {items: [dataLayerData]});
self.quickViewVariants = data.variants;
self.quickViewedItem = dataLayerData;
}
});
}
}
});
if(this.shopifyDirectCheckoutButton.length) {
let self = this;
document.addEventListener('pointerdown', (event) => {
let target = event.target;
let checkoutButton = event.target.closest(this.shopifyDirectCheckoutButton.join(', '));
if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
if(checkoutForm) {
let quantity = 1;
let varientInput = checkoutForm.querySelector('input[name="id"]');
let quantitySelector = checkoutForm.getAttribute('id');
if(quantitySelector) {
let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
if(quentityInput) {
quantity = +quentityInput.value;
}
}
if(varientInput) {
let variant_id = parseInt(varientInput.value);
if(variant_id) {
const variant = self.quickViewVariants.find(item => item.id === +variant_id);
if(variant && self.quickViewedItem) {
self.quickViewedItem['variant_id'] = variant_id;
self.quickViewedItem['variant_title'] = variant.title;
self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
self.quickViewedItem['quantity'] = quantity;
self.ecommerceDataLayer('add_to_cart', {items: [self.quickViewedItem]});
self.ecommerceDataLayer('begin_checkout', {items: [self.quickViewedItem]});
}
}
}
}
}
});
}
}
}
// select_item events
selectItemData() {
const self = this;
const items = this.itemsList;
// select item on varient change
document.addEventListener('variant:change', function(event) {
const product_id = event.detail.product.id;
const variant_id = event.detail.variant.id;
const vendor = event.detail.product.vendor;
const variant_title = event.detail.variant.public_title;
const product_title = event.detail.product.title;
const final_price = event.detail.variant.price;
const product_type = event.detail.product.type;
const item = {
product_id: product_id,
product_title: product_title,
variant_id: variant_id,
variant_title: variant_title,
vendor: vendor,
final_price: final_price,
product_type: product_type,
quantity: 1
}
self.ecommerceDataLayer('select_item', {items: [item]});
});
}
// all ecommerce events
ecommerceDataLayer(event, data) {
const self = this;
dataLayer.push({ 'ecommerce': null });
const dataLayerData = {
"event": this.eventPrefix + event,
'ecommerce': {
'currency': this.cart.currency,
'items': data.items.map((item, index) => {
const dataLayerItem = {
'index': index,
'item_id': this.formattedItemId ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
'product_id': item.product_id.toString(),
'variant_id': item.variant_id.toString(),
'item_name': item.product_title,
'quantity': item.quantity,
'price': +((item.final_price / 100).toFixed(2)),
'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
}
if(item.product_type) {
dataLayerItem['item_category'] = item.product_type;
}
if(item.vendor) {
dataLayerItem['item_brand'] = item.vendor;
}
if(item.variant_title && item.variant_title !== 'Default Title') {
dataLayerItem['item_variant'] = item.variant_title;
}
if(item.sku) {
dataLayerItem['sku'] = item.sku;
}
if(item.item_list_name) {
dataLayerItem['item_list_name'] = item.item_list_name;
}
if(item.item_list_id) {
dataLayerItem['item_list_id'] = item.item_list_id.toString()
}
return dataLayerItem;
})
}
}
if(data.total_price !== undefined) {
dataLayerData['ecommerce']['value'] = +((data.total_price / 100).toFixed(2));
} else {
dataLayerData['ecommerce']['value'] = +(dataLayerData['ecommerce']['items'].reduce((total, item) => total + (item.price * item.quantity), 0)).toFixed(2);
}
if(data.item_list_id) {
dataLayerData['ecommerce']['item_list_id'] = data.item_list_id;
}
if(data.item_list_name) {
dataLayerData['ecommerce']['item_list_name'] = data.item_list_name;
}
if(data.search_term) {
dataLayerData['search_term'] = data.search_term;
}
if(self.dataSchema.dynamicRemarketing && self.dataSchema.dynamicRemarketing.show) {
dataLayer.push({ 'dynamicRemarketing': null });
dataLayerData['dynamicRemarketing'] = {
value: dataLayerData.ecommerce.value,
items: dataLayerData.ecommerce.items.map(item => ({id: item.item_id, google_business_vertical: self.dataSchema.dynamicRemarketing.business_vertical}))
}
}
if(!self.dataSchema.ecommerce || !self.dataSchema.ecommerce.show) {
delete dataLayerData['ecommerce'];
}
dataLayer.push(dataLayerData);
self.eventConsole(self.eventPrefix + event, dataLayerData);
}
// contact form submit & newsletters signup
formData() {
const self = this;
document.addEventListener('submit', function(event) {
let targetForm = event.target.closest('form[action^="/contact"]');
if(targetForm) {
const formData = {
form_location: window.location.href,
form_id: targetForm.getAttribute('id'),
form_classes: targetForm.getAttribute('class')
};
let formType = targetForm.querySelector('input[name="form_type"]');
let inputs = targetForm.querySelectorAll("input:not([type=hidden]):not([type=submit]), textarea, select");
inputs.forEach(function(input) {
var inputName = input.name;
var inputValue = input.value;
if (inputName && inputValue) {
var matches = inputName.match(/\[(.*?)\]/);
if (matches && matches.length > 1) {
var fieldName = matches[1];
formData[fieldName] = input.value;
}
}
});
if(formType && formType.value === 'customer') {
dataLayer.push({ event: self.eventPrefix + 'newsletter_signup', ...formData});
self.eventConsole(self.eventPrefix + 'newsletter_signup', { event: self.eventPrefix + 'newsletter_signup', ...formData});
} else if(formType && formType.value === 'contact') {
dataLayer.push({ event: self.eventPrefix + 'contact_form_submit', ...formData});
self.eventConsole(self.eventPrefix + 'contact_form_submit', { event: self.eventPrefix + 'contact_form_submit', ...formData});
}
}
});
}
// phone_number_click event
phoneClickData() {
const self = this;
document.addEventListener('click', function(event) {
let target = event.target.closest('a[href^="tel:"]');
if(target) {
let phone_number = target.getAttribute('href').replace('tel:', '');
let eventData = {
event: self.eventPrefix + 'phone_number_click',
page_location: window.location.href,
link_classes: target.getAttribute('class'),
link_id: target.getAttribute('id'),
phone_number
}
dataLayer.push(eventData);
this.eventConsole(self.eventPrefix + 'phone_number_click', eventData);
}
});
}
// email_click event
emailClickData() {
const self = this;
document.addEventListener('click', function(event) {
let target = event.target.closest('a[href^="mailto:"]');
if(target) {
let email_address = target.getAttribute('href').replace('mailto:', '');
let eventData = {
event: self.eventPrefix + 'email_click',
page_location: window.location.href,
link_classes: target.getAttribute('class'),
link_id: target.getAttribute('id'),
email_address
}
dataLayer.push(eventData);
this.eventConsole(self.eventPrefix + 'email_click', eventData);
}
});
}
//login register
loginRegisterData() {
const self = this;
let isTrackedLogin = false;
let isTrackedRegister = false;
if(window.location.href.includes('/account/login')) {
document.addEventListener('submit', function(e) {
const loginForm = e.target.closest('[action="/account/login"]');
if(loginForm && !isTrackedLogin) {
const eventData = {
event: self.eventPrefix + 'login'
}
isTrackedLogin = true;
dataLayer.push(eventData);
self.eventConsole(self.eventPrefix + 'login', eventData);
}
});
}
if(window.location.href.includes('/account/register')) {
document.addEventListener('submit', function(e) {
const registerForm = e.target.closest('[action="/account"]');
if(registerForm && !isTrackedRegister) {
const eventData = {
event: self.eventPrefix + 'sign_up'
}
isTrackedRegister = true;
dataLayer.push(eventData);
self.eventConsole(self.eventPrefix + 'sign_up', eventData);
}
});
}
}
}
// end Ultimate_Shopify_DataLayer
document.addEventListener('DOMContentLoaded', function() {
try{
new Ultimate_Shopify_DataLayer();
}catch(error) {
console.log(error);
}
});
})();
</script>
<!-- Shopify CAPTCHA – Only Load on Checkout/Login Pages -->
<!-- Page Title -->
<title>
Menstrual Disc | Eco-Friendly Period Care Australia
</title>
<!-- End Page Title -->
<!-- page description -->
<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.">
<!-- end page description -->
<!-- Meta tags for SEO -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="facebook-domain-verification" content="m27enu291n4fgbvooj1p4v3rgjgibx">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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">
<meta name="author" content="my mimi">
<meta name="robots" content="index,follow">
<meta name="theme-color" content="#FFFFFF">
<link rel="canonical" href="https://mymimi.com.au/">
<link rel="preconnect" href="https://cdn.shopify.com" crossorigin>
<!-- Meta tags for SEO -->
<!-- noindex collab, retail register, and collections -->
<!-- end noindex collab, retail register, and collections -->
<!-- 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 -->
<meta property="og:site_name" content="my mimi">
<meta property="og:url" content="https://mymimi.com.au/">
<meta property="og:title" content="Menstrual Disc | Eco-Friendly Period Care Australia">
<meta property="og:type" content="website">
<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">
<meta property="og:image:secure_url" content="https://mymimi.com.au/cdn/shop/files/mymimi-social-sharing-logo.jpg?v=1716105444">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="628"><meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Menstrual Disc | Eco-Friendly Period Care Australia">
<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.">
<style data-shopify>
@font-face {
font-family: Archivo;
font-weight: 400;
font-style: normal;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n4.abb5ec97705c33fe369ef678fc93b9cf87658330.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=f2fed0a2c0e60a4e5870e0f4da6b4dbd69f2c7764ec8f1d250b0b9009cce025d") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_n4.0ae8e008abb455fbd654c11c5b30dc47b6849133.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=0261a86ea6fbb309a018e78d64aafe77a36cbb7357f53e2ecd9ed2dfc0cc34e6") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 400;
font-style: italic;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_i4.a95feba2fc444cfedf1a05723e49fbee7d12512b.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=2a63580f1c8295a200b1afe2d9d1581fe926651eee25db7d98ae3ad75e991a05") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_i4.9734cbbe4db53e64fe62bb6fe5f4ef00f6bc0c85.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=0b84bd34d151fe4b857ad13eff80f2a46a9e98d18ce0f28a786b605803353c12") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 500;
font-style: normal;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 500;
font-style: italic;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_i5.be59f179235426372fab88c7b5cb876b2d561fa8.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=67b4ebee04886b17eabcfe4c2246336060320803f8d49d181e7eb1cda3c2191e") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_i5.b88604f0bf28b524365a590cee678e57ce714f16.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=e93baf8048c0f9473e56778e5d273440719a19806862093d9f68ddcf226a4204") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 700;
font-style: normal;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n7.6f363ab30b12ea00d5e6243ed0e977a11393a3ad.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=d2a39d0e053026139fb498b1ba743a71f9640aef47154009c2d0b76500fefaed") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_n7.846b40a5735bbd149ad44b083a19c3e5d88d8fab.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=2d59eafea993deba9d72d13f5f2890f3c2d4ec149646b9e353c80fb0e05528df") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 700;
font-style: italic;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_i7.f132b18f71dd794aabbdb5631a7514bf5d5fa150.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=d624984148a6fcf013b747a4b66b269001508f0afce8d53c8ce05eb91baff386") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_i7.030187938ee569c3b9c961b486ffa4c07d5a5205.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=755eef3cc7d1c2bc9f774dbf2711c0ec6757738b3695a2008a01af84c559ca32") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 500;
font-style: normal;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 500;
font-style: normal;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 500;
font-style: italic;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_i5.be59f179235426372fab88c7b5cb876b2d561fa8.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=67b4ebee04886b17eabcfe4c2246336060320803f8d49d181e7eb1cda3c2191e") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_i5.b88604f0bf28b524365a590cee678e57ce714f16.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=e93baf8048c0f9473e56778e5d273440719a19806862093d9f68ddcf226a4204") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 500;
font-style: normal;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 500;
font-style: normal;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 500;
font-style: normal;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
}
@font-face {
font-family: Archivo;
font-weight: 500;
font-style: normal;
font-display: swap;
src: url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.bbeed03f357a4309f5ea02d1c5e99e42776e6f2e.woff2?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=8ede2c1ff296329147f2f76da647f567bcf00c8392737a8305987c8c3cf51ca7") format("woff2"),
url("//mymimi.com.au/cdn/fonts/archivo/archivo_n5.8e453c6bad9f316dc5545171682aeef1147552d6.woff?h1=ZmY3YTU2LTMwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bXltaW1pLmNvbS5hdQ&hmac=b49d2b81ae8afdf8d4e425a7a0d2ccc8098faa7e489bd6237b8f9afbc4f212ae") format("woff");
}
:root,
.color-scheme-1 {
--color-background: 253,251,247;
--color-secondary-background: 236,232,219;
--color-primary: 40,56,133;
--color-text-heading: 40,56,133;
--color-foreground: 40,56,133;
--color-border: 240,202,188;
--color-button: 240,202,188;
--color-button-text: 40,56,133;
--color-secondary-button: 40,56,133;
--color-secondary-button-border: 255,255,255;
--color-secondary-button-text: 255,255,255;
--color-button-hover-background: 240,202,188;
--color-button-hover-text: 40,56,133;
--color-button-before: #ffffff;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 40,56,133;
--color-link-hover: 40,56,133;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #7d86b3;
--color-foreground-lighten-19: #d5d6e1;
}
@media (min-width: 768px) {
body .desktop-color-scheme-1 {
--color-background: 253,251,247;
--color-secondary-background: 236,232,219;
--color-primary: 40,56,133;
--color-text-heading: 40,56,133;
--color-foreground: 40,56,133;
--color-border: 240,202,188;
--color-button: 240,202,188;
--color-button-text: 40,56,133;
--color-secondary-button: 40,56,133;
--color-secondary-button-border: 255,255,255;
--color-secondary-button-text: 255,255,255;
--color-button-hover-background: 240,202,188;
--color-button-hover-text: 40,56,133;
--color-button-before: #ffffff;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 40,56,133;
--color-link-hover: 40,56,133;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #7d86b3;
--color-foreground-lighten-19: #d5d6e1;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
@media (max-width: 767px) {
body .mobile-color-scheme-1 {
--color-background: 253,251,247;
--color-secondary-background: 236,232,219;
--color-primary: 40,56,133;
--color-text-heading: 40,56,133;
--color-foreground: 40,56,133;
--color-border: 240,202,188;
--color-button: 240,202,188;
--color-button-text: 40,56,133;
--color-secondary-button: 40,56,133;
--color-secondary-button-border: 255,255,255;
--color-secondary-button-text: 255,255,255;
--color-button-hover-background: 240,202,188;
--color-button-hover-text: 40,56,133;
--color-button-before: #ffffff;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 40,56,133;
--color-link-hover: 40,56,133;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #7d86b3;
--color-foreground-lighten-19: #d5d6e1;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
.color-scheme-2 {
--color-background: 240,202,188;
--color-secondary-background: 243,238,234;
--color-primary: 255,255,255;
--color-text-heading: 40,56,133;
--color-foreground: 40,56,133;
--color-border: 240,202,188;
--color-button: 255,255,255;
--color-button-text: 255,255,255;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 40,56,133;
--color-button-hover-background: 255,255,255;
--color-button-hover-text: 255,255,255;
--color-button-before: #ffffff;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 40,56,133;
--color-link-hover: 40,56,133;
--color-product-price-sale: 255,255,255;
--color-foreground-lighten-60: #78729b;
--color-foreground-lighten-19: #caaeb2;
}
@media (min-width: 768px) {
body .desktop-color-scheme-2 {
--color-background: 240,202,188;
--color-secondary-background: 243,238,234;
--color-primary: 255,255,255;
--color-text-heading: 40,56,133;
--color-foreground: 40,56,133;
--color-border: 240,202,188;
--color-button: 255,255,255;
--color-button-text: 255,255,255;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 40,56,133;
--color-button-hover-background: 255,255,255;
--color-button-hover-text: 255,255,255;
--color-button-before: #ffffff;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 40,56,133;
--color-link-hover: 40,56,133;
--color-product-price-sale: 255,255,255;
--color-foreground-lighten-60: #78729b;
--color-foreground-lighten-19: #caaeb2;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
@media (max-width: 767px) {
body .mobile-color-scheme-2 {
--color-background: 240,202,188;
--color-secondary-background: 243,238,234;
--color-primary: 255,255,255;
--color-text-heading: 40,56,133;
--color-foreground: 40,56,133;
--color-border: 240,202,188;
--color-button: 255,255,255;
--color-button-text: 255,255,255;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 40,56,133;
--color-button-hover-background: 255,255,255;
--color-button-hover-text: 255,255,255;
--color-button-before: #ffffff;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 40,56,133;
--color-link-hover: 40,56,133;
--color-product-price-sale: 255,255,255;
--color-foreground-lighten-60: #78729b;
--color-foreground-lighten-19: #caaeb2;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
.color-scheme-3 {
--color-background: 236,232,219;
--color-secondary-background: 255,255,255;
--color-primary: 85,155,96;
--color-text-heading: 236,232,219;
--color-foreground: 236,232,219;
--color-border: 230,230,230;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 255,255,255;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 236,232,219;
--color-link-hover: 236,232,219;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #ece8db;
--color-foreground-lighten-19: #ece8db;
}
@media (min-width: 768px) {
body .desktop-color-scheme-3 {
--color-background: 236,232,219;
--color-secondary-background: 255,255,255;
--color-primary: 85,155,96;
--color-text-heading: 236,232,219;
--color-foreground: 236,232,219;
--color-border: 230,230,230;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 255,255,255;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 236,232,219;
--color-link-hover: 236,232,219;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #ece8db;
--color-foreground-lighten-19: #ece8db;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
@media (max-width: 767px) {
body .mobile-color-scheme-3 {
--color-background: 236,232,219;
--color-secondary-background: 255,255,255;
--color-primary: 85,155,96;
--color-text-heading: 236,232,219;
--color-foreground: 236,232,219;
--color-border: 230,230,230;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 255,255,255;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 236,232,219;
--color-link-hover: 236,232,219;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #ece8db;
--color-foreground-lighten-19: #ece8db;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
.color-scheme-4 {
--color-background: 40,56,133;
--color-secondary-background: 240,202,188;
--color-primary: 40,56,133;
--color-text-heading: 40,56,133;
--color-foreground: 40,56,133;
--color-border: 240,202,188;
--color-button: 255,255,255;
--color-button-text: 255,255,255;
--color-secondary-button: 240,202,188;
--color-secondary-button-border: 255,255,255;
--color-secondary-button-text: 255,255,255;
--color-button-hover-background: 255,255,255;
--color-button-hover-text: 255,255,255;
--color-button-before: #ffffff;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 40,56,133;
--color-link-hover: 40,56,133;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #283885;
--color-foreground-lighten-19: #283885;
}
@media (min-width: 768px) {
body .desktop-color-scheme-4 {
--color-background: 40,56,133;
--color-secondary-background: 240,202,188;
--color-primary: 40,56,133;
--color-text-heading: 40,56,133;
--color-foreground: 40,56,133;
--color-border: 240,202,188;
--color-button: 255,255,255;
--color-button-text: 255,255,255;
--color-secondary-button: 240,202,188;
--color-secondary-button-border: 255,255,255;
--color-secondary-button-text: 255,255,255;
--color-button-hover-background: 255,255,255;
--color-button-hover-text: 255,255,255;
--color-button-before: #ffffff;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 40,56,133;
--color-link-hover: 40,56,133;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #283885;
--color-foreground-lighten-19: #283885;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
@media (max-width: 767px) {
body .mobile-color-scheme-4 {
--color-background: 40,56,133;
--color-secondary-background: 240,202,188;
--color-primary: 40,56,133;
--color-text-heading: 40,56,133;
--color-foreground: 40,56,133;
--color-border: 240,202,188;
--color-button: 255,255,255;
--color-button-text: 255,255,255;
--color-secondary-button: 240,202,188;
--color-secondary-button-border: 255,255,255;
--color-secondary-button-text: 255,255,255;
--color-button-hover-background: 255,255,255;
--color-button-hover-text: 255,255,255;
--color-button-before: #ffffff;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 40,56,133;
--color-link-hover: 40,56,133;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #283885;
--color-foreground-lighten-19: #283885;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
.color-scheme-inverse {
--color-background: 40,56,133;
--color-secondary-background: 240,202,188;
--color-primary: 214,58,47;
--color-text-heading: 255,255,255;
--color-foreground: 255,255,255;
--color-border: 255,255,255;
--color-button: 240,202,188;
--color-button-text: 40,56,133;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 40,56,133;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 255,255,255;
--color-link-hover: 255,255,255;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #a9afce;
--color-foreground-lighten-19: #515e9c;
}
@media (min-width: 768px) {
body .desktop-color-scheme-inverse {
--color-background: 40,56,133;
--color-secondary-background: 240,202,188;
--color-primary: 214,58,47;
--color-text-heading: 255,255,255;
--color-foreground: 255,255,255;
--color-border: 255,255,255;
--color-button: 240,202,188;
--color-button-text: 40,56,133;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 40,56,133;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 255,255,255;
--color-link-hover: 255,255,255;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #a9afce;
--color-foreground-lighten-19: #515e9c;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
@media (max-width: 767px) {
body .mobile-color-scheme-inverse {
--color-background: 40,56,133;
--color-secondary-background: 240,202,188;
--color-primary: 214,58,47;
--color-text-heading: 255,255,255;
--color-foreground: 255,255,255;
--color-border: 255,255,255;
--color-button: 240,202,188;
--color-button-text: 40,56,133;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 40,56,133;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 255,255,255;
--color-link-hover: 255,255,255;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #a9afce;
--color-foreground-lighten-19: #515e9c;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
.color-scheme-6 {
--color-background: 255,255,255;
--color-secondary-background: 243,238,234;
--color-primary: 255,240,245;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 230,230,230;
--color-button: 255,192,203;
--color-button-text: 255,255,255;
--color-secondary-button: 240,128,128;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #666666;
--color-foreground-lighten-19: #cfcfcf;
}
@media (min-width: 768px) {
body .desktop-color-scheme-6 {
--color-background: 255,255,255;
--color-secondary-background: 243,238,234;
--color-primary: 255,240,245;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 230,230,230;
--color-button: 255,192,203;
--color-button-text: 255,255,255;
--color-secondary-button: 240,128,128;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #666666;
--color-foreground-lighten-19: #cfcfcf;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
@media (max-width: 767px) {
body .mobile-color-scheme-6 {
--color-background: 255,255,255;
--color-secondary-background: 243,238,234;
--color-primary: 255,240,245;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 230,230,230;
--color-button: 255,192,203;
--color-button-text: 255,255,255;
--color-secondary-button: 240,128,128;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #666666;
--color-foreground-lighten-19: #cfcfcf;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
.color-scheme-7 {
--color-background: 236,232,219;
--color-secondary-background: 233,233,233;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 189,186,175;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 233,233,233;
--color-secondary-button-border: 195,192,181;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 245,245,245;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #5e5d58;
--color-foreground-lighten-19: #bfbcb1;
}
@media (min-width: 768px) {
body .desktop-color-scheme-7 {
--color-background: 236,232,219;
--color-secondary-background: 233,233,233;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 189,186,175;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 233,233,233;
--color-secondary-button-border: 195,192,181;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 245,245,245;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #5e5d58;
--color-foreground-lighten-19: #bfbcb1;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
@media (max-width: 767px) {
body .mobile-color-scheme-7 {
--color-background: 236,232,219;
--color-secondary-background: 233,233,233;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 189,186,175;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 233,233,233;
--color-secondary-button-border: 195,192,181;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 245,245,245;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #5e5d58;
--color-foreground-lighten-19: #bfbcb1;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
.color-scheme-8 {
--color-background: 255,255,255;
--color-secondary-background: 247,247,247;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 230,230,230;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 23,67,31;
--color-button-hover-text: 255,255,255;
--color-button-before: #318f42;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #666666;
--color-foreground-lighten-19: #cfcfcf;
}
@media (min-width: 768px) {
body .desktop-color-scheme-8 {
--color-background: 255,255,255;
--color-secondary-background: 247,247,247;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 230,230,230;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 23,67,31;
--color-button-hover-text: 255,255,255;
--color-button-before: #318f42;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #666666;
--color-foreground-lighten-19: #cfcfcf;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
@media (max-width: 767px) {
body .mobile-color-scheme-8 {
--color-background: 255,255,255;
--color-secondary-background: 247,247,247;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 230,230,230;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 255,255,255;
--color-secondary-button-border: 230,230,230;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 23,67,31;
--color-button-hover-text: 255,255,255;
--color-button-before: #318f42;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #666666;
--color-foreground-lighten-19: #cfcfcf;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
.color-scheme-9 {
--color-background: 247,246,242;
--color-secondary-background: 236,232,219;
--color-primary: 85,155,96;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 222,221,218;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 247,246,242;
--color-secondary-button-border: 198,197,194;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #636261;
--color-foreground-lighten-19: #c8c7c4;
}
@media (min-width: 768px) {
body .desktop-color-scheme-9 {
--color-background: 247,246,242;
--color-secondary-background: 236,232,219;
--color-primary: 85,155,96;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 222,221,218;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 247,246,242;
--color-secondary-button-border: 198,197,194;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #636261;
--color-foreground-lighten-19: #c8c7c4;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
@media (max-width: 767px) {
body .mobile-color-scheme-9 {
--color-background: 247,246,242;
--color-secondary-background: 236,232,219;
--color-primary: 85,155,96;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 222,221,218;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 247,246,242;
--color-secondary-button-border: 198,197,194;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #636261;
--color-foreground-lighten-19: #c8c7c4;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
.color-scheme-10 {
--color-background: 246,246,246;
--color-secondary-background: 247,247,247;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 230,230,230;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 233,233,233;
--color-secondary-button-border: 233,233,233;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 245,245,245;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #626262;
--color-foreground-lighten-19: #c7c7c7;
}
@media (min-width: 768px) {
body .desktop-color-scheme-10 {
--color-background: 246,246,246;
--color-secondary-background: 247,247,247;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 230,230,230;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 233,233,233;
--color-secondary-button-border: 233,233,233;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 245,245,245;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #626262;
--color-foreground-lighten-19: #c7c7c7;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
@media (max-width: 767px) {
body .mobile-color-scheme-10 {
--color-background: 246,246,246;
--color-secondary-background: 247,247,247;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 230,230,230;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 233,233,233;
--color-secondary-button-border: 233,233,233;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 245,245,245;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #626262;
--color-foreground-lighten-19: #c7c7c7;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
.color-scheme-11 {
--color-background: 243,238,234;
--color-secondary-background: 247,247,247;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 255,255,255;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 233,233,233;
--color-secondary-button-border: 233,233,233;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #615f5e;
--color-foreground-lighten-19: #c5c1be;
}
@media (min-width: 768px) {
body .desktop-color-scheme-11 {
--color-background: 243,238,234;
--color-secondary-background: 247,247,247;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 255,255,255;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 233,233,233;
--color-secondary-button-border: 233,233,233;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #615f5e;
--color-foreground-lighten-19: #c5c1be;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
@media (max-width: 767px) {
body .mobile-color-scheme-11 {
--color-background: 243,238,234;
--color-secondary-background: 247,247,247;
--color-primary: 214,58,47;
--color-text-heading: 0,0,0;
--color-foreground: 0,0,0;
--color-border: 255,255,255;
--color-button: 0,0,0;
--color-button-text: 255,255,255;
--color-secondary-button: 233,233,233;
--color-secondary-button-border: 233,233,233;
--color-secondary-button-text: 0,0,0;
--color-button-hover-background: 0,0,0;
--color-button-hover-text: 255,255,255;
--color-button-before: #333333;
--color-field: 255,255,255;
--color-field-text: 0,0,0;
--color-link: 0,0,0;
--color-link-hover: 0,0,0;
--color-product-price-sale: 214,58,47;
--color-foreground-lighten-60: #615f5e;
--color-foreground-lighten-19: #c5c1be;
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
}
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 {
color: rgb(var(--color-foreground));
background-color: rgb(var(--color-background));
}
:root {
/* Animation variable */
--animation-nav: .5s cubic-bezier(.6, 0, .4, 1);
--animation-default: .5s cubic-bezier(.3, 1, .3, 1);
--animation-fast: .3s cubic-bezier(.7, 0, .3, 1);
--transform-origin-start: left;
--transform-origin-end: right;
--duration-default: 200ms;
--duration-image: 1000ms;
--font-body-family: Archivo, serif;
--font-body-style: normal;
--font-body-weight: 400;
--font-body-weight-bolder: 500;
--font-body-weight-bold: 700;
--font-body-size: 1.5rem;
--font-body-line-height: 1.6;
--font-heading-family: Archivo, serif;
--font-heading-style: normal;
--font-heading-weight: 500;
--font-heading-letter-spacing: -0.04em;
--font-heading-transform: none;
--font-heading-scale: 1.0;
--font-heading-mobile-scale: 0.8;
--font-hd1-transform:none;
--font-subheading-family: Archivo, serif;
--font-subheading-weight: 500;
--font-subheading-scale: 1.2;
--font-subheading-transform: none;
--font-subheading-letter-spacing: 0.0em;
--font-navigation-family: Archivo, serif;
--font-navigation-weight: 500;
--navigation-transform: none;
--font-button-family: Archivo, serif;
--font-button-weight: 500;
--buttons-letter-spacing: 0.0em;
--buttons-transform: none;
--buttons-height: 4.8rem;
--buttons-border-width: 1px;
--inputs-border-width: 1px;
--font-pcard-title-family: Archivo, serif;
--font-pcard-title-style: normal;
--font-pcard-title-weight: 500;
--font-pcard-title-scale: 1.06;
--font-pcard-title-transform: none;
--font-hd1-size: 6.0rem;
--font-hd2-size: 4.8rem;
--font-hd3-size: 3.6rem;
--font-h1-size: calc(var(--font-heading-scale) * 4rem);
--font-h2-size: calc(var(--font-heading-scale) * 3.2rem);
--font-h3-size: calc(var(--font-heading-scale) * 2.8rem);
--font-h4-size: calc(var(--font-heading-scale) * 2.2rem);
--font-h5-size: calc(var(--font-heading-scale) * 1.8rem);
--font-h6-size: calc(var(--font-heading-scale) * 1.6rem);
--font-subheading-size: calc(var(--font-subheading-scale) * var(--font-body-size));
--font-pcard-title-size: calc(var(--font-pcard-title-scale) * var(--font-body-size));
--color-badge-sale: #D63A2F;
--color-badge-sale-text: #FFFFFF;
--color-badge-soldout: #A5A4AB;
--color-badge-soldout-text: #FFFFFF;
--color-badge-hot: #000000;
--color-badge-hot-text: #FFFFFF;
--color-badge-new: #417365;
--color-badge-new-text: #FFFFFF;
--color-cart-bubble: #000000;
--color-keyboard-focus: 11 97 205;
--buttons-radius: 1.0rem;
--inputs-radius: 1.0rem;
--textareas-radius: 1.0rem;
--blocks-radius: 1.0rem;
--blocks-radius-mobile: 0.8rem;
--small-blocks-radius: 0.5rem;
--medium-blocks-radius: 0.8rem;
--pcard-radius: 1.0rem;
--pcard-inner-radius: 0.6rem;
--badges-radius: 0.5rem;
--page-width: 1410px;
--page-width-margin: 0rem;
--header-padding-bottom: 4rem;
--header-padding-bottom-mobile: 3.2rem;
--header-padding-bottom-large: 6rem;
--header-padding-bottom-large-lg: 4rem;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
font-size: 62.5%;
height: 100%;
}
body {
min-height: 100%;
margin: 0;
font-family: var(--font-body-family);
font-style: var(--font-body-style);
font-weight: var(--font-body-weight);
font-size: var(--font-body-size);
line-height: var(--font-body-line-height);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
touch-action: manipulation;
-webkit-text-size-adjust: 100%;
font-feature-settings: normal;
}
@media (min-width: 1485px) {
.swiper-controls--outside {
--swiper-navigation-offset-x: calc((var(--swiper-navigation-size) + 2.7rem) * -1);
}
}
</style>
<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>
<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>
<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">
<meta name="facebook-domain-verification" content="6u05sh7l5chy2wk2lskq3w2w557e0u">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/69627969748/digital_wallets/dialog">
<meta name="shopify-requires-components" content="true" product-ids="8358559383764,8361989308628,8362009264340,8715302043860,8797590028500">
<meta name="shopify-checkout-api-token" content="4ca042b5edfa125ced385f913cb0a5e0">
<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">
<script async="async" src="/checkouts/internal/preloads.js?locale=en-AU"></script>
<link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
<script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-AU&shop_id=69627969748" crossorigin="anonymous"></script>
<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>
<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>
<script>var Shopify = Shopify || {};
Shopify.shop = "ff7a56-30.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"AUD","rate":"1.0"};
Shopify.country = "AU";
Shopify.theme = {"name":"Sleek","id":148125679828,"schema_name":"Sleek","schema_version":"1.7.0","theme_store_id":2821,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "mymimi.com.au/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<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>
<script>window.ShopifyPay = window.ShopifyPay || {};
window.ShopifyPay.apiHost = "shop.app\/pay";</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
<script>
window.Shopify = window.Shopify || {};
if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
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"]};
</script>
<script>(function() {
function asyncLoad() {
var urls = ["https:\/\/cdn1.judge.me\/assets\/installed.js?shop=ff7a56-30.myshopify.com"];
for (var i = 0; i < urls.length; i++) {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = urls[i];
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
};
if(window.attachEvent) {
window.attachEvent('onload', asyncLoad);
} else {
window.addEventListener('load', asyncLoad, false);
}
})();</script>
<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>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<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>
<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>
<script crossorigin="anonymous" defer="defer" src="//mymimi.com.au/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-80e528be853eac23af2454534897ca9536b1d3d04aa043b042f34879a3c111c8.js?v=20220906"></script>
<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)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
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);
</script>
<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})}}));
</script>
<script id='scb4127' type='text/javascript' async='' src='https://mymimi.com.au/cdn/shopifycloud/privacy-banner/storefront-banner.js'></script>
<link rel="stylesheet" media="screen" href="https://mymimi.com.au/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
<style id="shopify-accelerated-checkout-cart">
#shopify-buyer-consent {
margin-top: 1em;
display: inline-block;
width: 100%;
}
#shopify-buyer-consent.hidden {
display: none;
}
#shopify-subscription-policy-button {
background: none;
border: none;
padding: 0;
text-decoration: underline;
font-size: inherit;
cursor: pointer;
}
#shopify-subscription-policy-button::before {
box-shadow: none;
}
</style>
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
<script src="//mymimi.com.au/cdn/shop/t/11/assets/vendor.js?v=70296684678509862901738695061" defer="defer"></script>
<script src="//mymimi.com.au/cdn/shop/t/11/assets/theme.js?v=178999039422783560011741003193" defer="defer"></script><script>
if (Shopify.designMode) {
document.documentElement.classList.add('shopify-design-mode');
}
</script>
<script>
window.FoxTheme = window.FoxTheme || {};
document.documentElement.classList.replace('no-js', 'js');
window.shopUrl = 'https://mymimi.com.au';
window.FoxTheme.routes = {
cart_add_url: '/cart/add',
cart_change_url: '/cart/change',
cart_update_url: '/cart/update',
cart_url: '/cart',
shop_url: 'https://mymimi.com.au',
predictive_search_url: '/search/suggest',
};
FoxTheme.shippingCalculatorStrings = {
error: "One or more errors occurred while retrieving the shipping rates:",
notFound: "Sorry, we do not ship to your address.",
oneResult: "There is one shipping rate for your address:",
multipleResults: "There are multiple shipping rates for your address:",
};
FoxTheme.settings = {
cartType: "drawer",
moneyFormat: "${{amount}}",
themeName: 'Sleek',
themeVersion: '1.7.0'
}
FoxTheme.variantStrings = {
addToCart: `Add to cart`,
soldOut: `Sold out`,
unavailable: `Unavailable`,
unavailable_with_option: `[value] - Unavailable`,
};
FoxTheme.quickOrderListStrings = {
itemsAdded: "[quantity] items added",
itemAdded: "[quantity] item added",
itemsRemoved: "[quantity] items removed",
itemRemoved: "[quantity] item removed",
viewCart: "View cart",
each: "[money]\/ea",
min_error: "This item has a minimum of [min]",
max_error: "This item has a maximum of [max]",
step_error: "You can only add this item in increments of [step]",
};
FoxTheme.accessibilityStrings = {
imageAvailable: `Image [index] is now available in gallery view`,
shareSuccess: `Copied`,
pauseSlideshow: `Pause slideshow`,
playSlideshow: `Play slideshow`,
recipientFormExpanded: `Gift card recipient form expanded`,
recipientFormCollapsed: `Gift card recipient form collapsed`,
countrySelectorSearchCount: `[count] countries/regions found`,
};
</script>
<!-- BEGIN app block: shopify://apps/instafeed/blocks/head-block/c447db20-095d-4a10-9725-b5977662c9d5 --><link rel="preconnect" href="https://cdn.nfcube.com/">
<link rel="preconnect" href="https://scontent.cdninstagram.com/">
<script>
document.addEventListener('DOMContentLoaded', function () {
let instafeedScript = document.createElement('script');
instafeedScript.src = 'https://cdn.nfcube.com/instafeed-6e831217ee21e2d02dcbc7e2e9b5b97d.js';
document.body.appendChild(instafeedScript);
});
</script>
<!-- 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>
<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>
<link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<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>
<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>
window.ShopifyAnalytics = window.ShopifyAnalytics || {};
window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
window.ShopifyAnalytics.meta.currency = 'AUD';
var meta = {"page":{"pageType":"home"}};
for (var attr in meta) {
window.ShopifyAnalytics.meta[attr] = meta[attr];
}
</script>
<script class="analytics">
(function () {
var customDocumentWrite = function(content) {
var jquery = null;
if (window.jQuery) {
jquery = window.jQuery;
} else if (window.Checkout && window.Checkout.$) {
jquery = window.Checkout.$;
}
if (jquery) {
jquery('body').append(content);
}
};
var hasLoggedConversion = function(token) {
if (token) {
return document.cookie.indexOf('loggedConversion=' + token) !== -1;
}
return false;
}
var setCookieIfConversion = function(token) {
if (token) {
var twoMonthsFromNow = new Date(Date.now());
twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
}
}
var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
if (trekkie.integrations) {
return;
}
trekkie.methods = [
'identify',
'page',
'ready',
'track',
'trackForm',
'trackLink'
];
trekkie.factory = function(method) {
return function() {
var args = Array.prototype.slice.call(arguments);
args.unshift(method);
trekkie.push(args);
return trekkie;
};
};
for (var i = 0; i < trekkie.methods.length; i++) {
var key = trekkie.methods[i];
trekkie[key] = trekkie.factory(key);
}
trekkie.load = function(config) {
trekkie.config = config || {};
trekkie.config.initialDocumentCookie = document.cookie;
var first = document.getElementsByTagName('script')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onerror = function(e) {
var scriptFallback = document.createElement('script');
scriptFallback.type = 'text/javascript';
scriptFallback.onerror = function(error) {
var Monorail = {
produce: function produce(monorailDomain, schemaId, payload) {
var currentMs = new Date().getTime();
var event = {
schema_id: schemaId,
payload: payload,
metadata: {
event_created_at_ms: currentMs,
event_sent_at_ms: currentMs
}
};
return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
},
sendRequest: function sendRequest(endpointUrl, payload) {
// Try the sendBeacon API
if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
var blobData = new window.Blob([payload], {
type: 'text/plain'
});
if (window.navigator.sendBeacon(endpointUrl, blobData)) {
return true;
} // sendBeacon was not successful
} // XHR beacon
var xhr = new XMLHttpRequest();
try {
xhr.open('POST', endpointUrl);
xhr.setRequestHeader('Content-Type', 'text/plain');
xhr.send(payload);
} catch (e) {
console.log(e);
}
return false;
},
isIos12: function isIos12() {
return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
}
};
Monorail.produce('monorail-edge.shopifysvc.com',
'trekkie_storefront_load_errors/1.1',
{shop_id: 69627969748,
theme_id: 148125679828,
app_name: "storefront",
context_url: window.location.href,
source_url: "//mymimi.com.au/cdn/s/trekkie.storefront.67031bb556ecae068d9d26b268af7634adc01a0c.min.js"});
};
scriptFallback.async = true;
scriptFallback.src = '//mymimi.com.au/cdn/s/trekkie.storefront.67031bb556ecae068d9d26b268af7634adc01a0c.min.js';
first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//mymimi.com.au/cdn/s/trekkie.storefront.67031bb556ecae068d9d26b268af7634adc01a0c.min.js';
first.parentNode.insertBefore(script, first);
};
trekkie.load(
{"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}}
);
var loaded = false;
trekkie.ready(function() {
if (loaded) return;
loaded = true;
window.ShopifyAnalytics.lib = window.trekkie;
var originalDocumentWrite = document.write;
document.write = customDocumentWrite;
try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
document.write = originalDocumentWrite;
window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
var token = match? match[1]: undefined;
if (!hasLoggedConversion(token)) {
setCookieIfConversion(token);
}
});
var eventsListenerScript = document.createElement('script');
eventsListenerScript.async = true;
eventsListenerScript.src = "//mymimi.com.au/cdn/shopifycloud/shopify/assets/shop_events_listener-f55dd2979ec32029c7d9e0b454ab8b33f79c01ca039d17a6f5c9b95647564b19.js";
document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
<script
defer
src="https://mymimi.com.au/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.5.0.min.js"
data-application="storefront-renderer"
data-shop-id="69627969748"
data-render-region="gcp-us-east1"
data-page-type="index"
data-theme-instance-id="148125679828"
data-monorail-region="shop_domain"
data-resource-timing-sampling-rate="10"
></script>
</head>
<body
class="index-template blocks-corner--slightly"
data-initializing
>
<a class="skip-to-content-link button visually-hidden" href="#MainContent">
Skip to content
</a><page-transition class="loading-bar"> </page-transition>
<div class="site-wrapper min-height-screen">
<!-- BEGIN sections: header-group -->
<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 {
--section-padding-top: 12px;
--section-padding-bottom: 12px;
--h-spacing: 60px;
--v-spacing: 0px;
--h-spacing-mobile: 24px;
--v-spacing-mobile: 0px;
--duration: 60.0s;
--align-self: center
}</style><div
class="section section--padding color-scheme-inverse section--scrolling-promotion"
data-section-index="1"
>
<scrolling-promotion
data-section-type="scrolling-promotion"
data-section-id="sections--18997227880660__scrolling_promotion_KhdTdc"
class="scrolling-promotion scrolling-promotion--left"
>
<div class="promotion"><div
class="promotion__item promotion__item-text"
style="--text-opacity: 1.0;"
><a
href="/collections/shop-now"
class="block promotion__item-wrap"
>
<div
class="promotion__text text-base font-heading font-normal text-normal"
style="letter-spacing: 0.0em;"
>
Australia: $10 Shipping - Spend $85+ for Free Shipping
</div>
</a></div><div
class="promotion__item promotion__item-text"
style="--text-opacity: 1.0;"
><a
href="/pages/my-mimi-menstrual-disc-reviews"
class="block promotion__item-wrap"
>
<div
class="promotion__text text-base font-heading font-normal text-normal"
style="letter-spacing: 0.0em;"
>
⭐️⭐️⭐️⭐️⭐️ Read our 5 star reviews. Comfort, Confidence & Leak-Free Period Protection ⭐️⭐️⭐️⭐️⭐️
</div>
</a></div></div>
</scrolling-promotion>
</div>
</div><div id="shopify-section-sections--18997227880660__header" class="shopify-section shopify-section-group-header-group header-section"><link
rel="stylesheet"
href="//mymimi.com.au/cdn/shop/t/11/assets/component-custom-card.css?v=68178963558480365221738695059"
media="print"
fetchpriority="low"
onload="this.media='all'"
>
<script src="//mymimi.com.au/cdn/shop/t/11/assets/header.js?v=66152140337227491141738695060" defer="defer"></script><style data-shopify>
#shopify-section-sections--18997227880660__header {
--section-padding-top: 20px;
--section-padding-bottom: 20px;
--logo-width: 180px;
--logo-width-mobile: 140px;
--color-transparent: 255,255,255;
}
</style>
<header
data-section-id="sections--18997227880660__header"
class="header section--padding grid items-center header--center-left color-scheme-1 header-mobile--center page-width header--show-sperator-line"
data-enable-transparent="false"
is="sticky-header" data-sticky-type="always"
><div class="header__icons header__icons--left lg:justify-start z-1 lg:hidden">
<div class="header__buttons flex items-center">
<button
class="menu-drawer-button btn btn--inherit flex items-center justify-center lg:hidden"
aria-controls="MenuDrawer"
aria-label="Toggle menu"
><svg
class="icon icon-hamburger icon--large"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M3.76807 10.0078L17.5181 10.007" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.76807 5.00781L17.5181 5.00699" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.76855 15.0078L17.5186 15.007" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</div>
</div><h1 class="header__logo flex justify-center z-1"><a
href="/"
class="h3 relative flex header__logo--image"
><img
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"
src="//mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=140"
loading="eager"
width="700"
height="139"
alt="my mimi"
class="logo header__logo--mobile md:hidden"
><img
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"
src="//mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=180"
loading="eager"
width="700"
height="139"
alt="my mimi"
class="logo header__logo--desktop md:block hidden"
></a></h1><div class="header__navigation hidden lg:flex">
<nav class="header__menu flex" role="navigation" aria-label="Primary">
<ul class="flex flex-wrap"><li><a href="/" class="menu__item flex relative z-2 font-navigation">
<span class="reversed-link">Home</span>
</a></li><li><details
is="details-dropdown"
level="top"
trigger="click"
>
<summary data-link="/pages/learn-more" class="z-2">
<span class="menu__item flex items-center relative">
<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">
<path d="M9.75 4.5L6 8.25L2.25 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</span>
</summary>
<div class="dropdown">
<div class="dropdown__container blocks-radius-bottom-left-right">
<ul class="dropdown__nav" role="list"><li>
<p>
<a href="https://mymimi.com.au/pages/menstrual-disc" class="reversed-link">Start Here</a>
</p>
</li><li>
<p>
<a href="/pages/frequently-asked-questions" class="reversed-link">FAQ</a>
</p>
</li><li>
<p>
<a href="/pages/articles" class="reversed-link">Articles</a>
</p>
</li></ul>
</div>
</div>
</details></li><li><a href="/collections/shop" class="menu__item flex relative z-2 font-navigation">
<span class="reversed-link">Shop</span>
</a></li></ul>
</nav>
</div><div class="header__icons header__icons--right flex justify-end z-1">
<div class="header__buttons flex items-center justify-center">
<a
href="/search"
class="search-drawer-button flex items-center justify-center"
aria-controls="SearchDrawer"
aria-label="Search"
><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-search icon--large"
viewBox="0 0 24 24"
fill="none"
>
<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"/>
<path d="M16.4434 16.4453L20.9997 21.0016" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a><a
href="/cart"
class="cart-drawer-button flex items-center justify-center relative"
aria-controls="CartDrawer"
><svg
viewBox="0 0 24 24"
fill="none"
class="icon icon-shopping-cart icon--large"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
<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"/>
<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"/>
</svg><span class="visually-hidden">Cart</span>
<cart-count
class="cart-count cart-count--absolute font-body-bolder"
aria-label="0 items"
hidden
>0</cart-count>
</a><button
class="menu-drawer-button btn btn--inherit flex items-center justify-center lg:hidden hidden"
aria-controls="MenuDrawer"
aria-expanded="false"
><svg
class="icon icon-hamburger icon--large"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M3.76807 10.0078L17.5181 10.007" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.76807 5.00781L17.5181 5.00699" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.76855 15.0078L17.5186 15.007" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button></div>
</div>
</header>
<div class="fixed-overlay z-10"></div><style data-shopify>
#MenuDrawer {
--logo-width: 180px;
--logo-width-mobile: 140px;
}
</style>
<menu-drawer id="MenuDrawer" class="menu-drawer drawer drawer--left" hidden>
<div class="fixed-overlay" aria-controls="MenuDrawer"></div>
<div class="drawer__inner flex flex-col w-full h-full overflow-hidden">
<div class="drawer__header menu-drawer__header flex items-center justify-between">
<a
href="/"
class="h3 relative flex header__logo--image"
><img
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"
src="//mymimi.com.au/cdn/shop/files/logo.png?v=1716105592&width=140"
loading="eager"
width="700"
height="139"
alt="my mimi"
></a>
<button class="drawer__close btn btn--inherit" aria-controls="MenuDrawer"><svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close icon--large"
fill="none"
viewBox="0 0 24 24"
>
<path d="M18.75 5.13496L5.25 18.8544" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.75 18.8544L5.25 5.13496" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</div>
<div class="drawer__content menu-drawer__content flex-grow flex flex-col h-full w-full">
<nav class="overflow-hidden flex-grow" role="navigation">
<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">
<summary class="menu-drawer__item-link flex items-center justify-between">
<span>Learn</span><svg
class="icon icon-arrow icon--medium"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</summary>
<div class="menu-drawer__submenu absolute z-1 flex flex-col w-full h-full" data-parent>
<button type="button" class="menu-drawer__item-back-link font-navigation flex items-center gap-2 w-full"><svg
class="icon icon-arrow icon--small"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Learn
</button>
<ul class="flex flex-col h-full v-scrollable" data-parent role="list"><li class="menu-drawer__item" level="child"><a
href="https://mymimi.com.au/pages/menstrual-disc"
class="menu-drawer__item-link flex items-center justify-between"
>Start Here</a></li><li class="menu-drawer__item" level="child"><a
href="/pages/frequently-asked-questions"
class="menu-drawer__item-link flex items-center justify-between"
>FAQ</a></li><li class="menu-drawer__item" level="child"><a
href="/pages/articles"
class="menu-drawer__item-link flex items-center justify-between"
>Articles</a></li></ul>
</div>
</details>
</li><li class="menu-drawer__item"><a href="/collections/shop" class="menu-drawer__item-link flex items-center justify-between">Shop</a></li></ul>
</nav>
<div class="drawer__footer menu-drawer__footer flex justify-center flex-col gap-y-5">
<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'">
<div class="country-switcher " style="--f-max-width: 220px">
<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>
<div class="form-group">
<select
class="localization-selector form-control"
name="country_code"
aria-labelledby="CountryLabelNoScript-country-32"
><option
value="AF"
>
Afghanistan (AFN
؋)
</option><option
value="AX"
>
Åland Islands (EUR
€)
</option><option
value="AL"
>
Albania (ALL
L)
</option><option
value="DZ"
>
Algeria (DZD
د.ج)
</option><option
value="AD"
>
Andorra (EUR
€)
</option><option
value="AO"
>
Angola (AUD
$)
</option><option
value="AI"
>
Anguilla (XCD
$)
</option><option
value="AG"
>
Antigua & Barbuda (XCD
$)
</option><option
value="AR"
>
Argentina (AUD
$)
</option><option
value="AM"
>
Armenia (AMD
դր.)
</option><option
value="AW"
>
Aruba (AWG
ƒ)
</option><option
value="AC"
>
Ascension Island (SHP
£)
</option><option
value="AU"
selected
>
Australia (AUD
$)
</option><option
value="AT"
>
Austria (EUR
€)
</option><option
value="AZ"
>
Azerbaijan (AZN
₼)
</option><option
value="BS"
>
Bahamas (BSD
$)
</option><option
value="BH"
>
Bahrain (AUD
$)
</option><option
value="BD"
>
Bangladesh (BDT
৳)
</option><option
value="BB"
>
Barbados (BBD
$)
</option><option
value="BY"
>
Belarus (AUD
$)
</option><option
value="BE"
>
Belgium (EUR
€)
</option><option
value="BZ"
>
Belize (BZD
$)
</option><option
value="BJ"
>
Benin (XOF
Fr)
</option><option
value="BM"
>
Bermuda (USD
$)
</option><option
value="BT"
>
Bhutan (AUD
$)
</option><option
value="BO"
>
Bolivia (BOB
Bs.)
</option><option
value="BA"
>
Bosnia & Herzegovina (BAM
КМ)
</option><option
value="BW"
>
Botswana (BWP
P)
</option><option
value="BR"
>
Brazil (AUD
$)
</option><option
value="IO"
>
British Indian Ocean Territory (USD
$)
</option><option
value="VG"
>
British Virgin Islands (USD
$)
</option><option
value="BN"
>
Brunei (BND
$)
</option><option
value="BG"
>
Bulgaria (BGN
лв.)
</option><option
value="BF"
>
Burkina Faso (XOF
Fr)
</option><option
value="BI"
>
Burundi (BIF
Fr)
</option><option
value="KH"
>
Cambodia (KHR
៛)
</option><option
value="CM"
>
Cameroon (XAF
CFA)
</option><option
value="CA"
>
Canada (CAD
$)
</option><option
value="CV"
>
Cape Verde (CVE
$)
</option><option
value="BQ"
>
Caribbean Netherlands (USD
$)
</option><option
value="KY"
>
Cayman Islands (KYD
$)
</option><option
value="CF"
>
Central African Republic (XAF
CFA)
</option><option
value="TD"
>
Chad (XAF
CFA)
</option><option
value="CL"
>
Chile (AUD
$)
</option><option
value="CN"
>
China (CNY
¥)
</option><option
value="CX"
>
Christmas Island (AUD
$)
</option><option
value="CC"
>
Cocos (Keeling) Islands (AUD
$)
</option><option
value="CO"
>
Colombia (AUD
$)
</option><option
value="KM"
>
Comoros (KMF
Fr)
</option><option
value="CG"
>
Congo - Brazzaville (XAF
CFA)
</option><option
value="CD"
>
Congo - Kinshasa (CDF
Fr)
</option><option
value="CK"
>
Cook Islands (NZD
$)
</option><option
value="CR"
>
Costa Rica (CRC
₡)
</option><option
value="CI"
>
Côte d’Ivoire (XOF
Fr)
</option><option
value="HR"
>
Croatia (EUR
€)
</option><option
value="CW"
>
Curaçao (ANG
ƒ)
</option><option
value="CY"
>
Cyprus (EUR
€)
</option><option
value="CZ"
>
Czechia (CZK
Kč)
</option><option
value="DK"
>
Denmark (DKK
kr.)
</option><option
value="DJ"
>
Djibouti (DJF
Fdj)
</option><option
value="DM"
>
Dominica (XCD
$)
</option><option
value="DO"
>
Dominican Republic (DOP
$)
</option><option
value="EC"
>
Ecuador (USD
$)
</option><option
value="EG"
>
Egypt (EGP
ج.م)
</option><option
value="SV"
>
El Salvador (USD
$)
</option><option
value="GQ"
>
Equatorial Guinea (XAF
CFA)
</option><option
value="ER"
>
Eritrea (AUD
$)
</option><option
value="EE"
>
Estonia (EUR
€)
</option><option
value="SZ"
>
Eswatini (AUD
$)
</option><option
value="ET"
>
Ethiopia (ETB
Br)
</option><option
value="FK"
>
Falkland Islands (FKP
£)
</option><option
value="FO"
>
Faroe Islands (DKK
kr.)
</option><option
value="FJ"
>
Fiji (FJD
$)
</option><option
value="FI"
>
Finland (EUR
€)
</option><option
value="FR"
>
France (EUR
€)
</option><option
value="GF"
>
French Guiana (EUR
€)
</option><option
value="PF"
>
French Polynesia (XPF
Fr)
</option><option
value="TF"
>
French Southern Territories (EUR
€)
</option><option
value="GA"
>
Gabon (XOF
Fr)
</option><option
value="GM"
>
Gambia (GMD
D)
</option><option
value="GE"
>
Georgia (AUD
$)
</option><option
value="DE"
>
Germany (EUR
€)
</option><option
value="GH"
>
Ghana (AUD
$)
</option><option
value="GI"
>
Gibraltar (GBP
£)
</option><option
value="GR"
>
Greece (EUR
€)
</option><option
value="GL"
>
Greenland (DKK
kr.)
</option><option
value="GD"
>
Grenada (XCD
$)
</option><option
value="GP"
>
Guadeloupe (EUR
€)
</option><option
value="GT"
>
Guatemala (GTQ
Q)
</option><option
value="GG"
>
Guernsey (GBP
£)
</option><option
value="GN"
>
Guinea (GNF
Fr)
</option><option
value="GW"
>
Guinea-Bissau (XOF
Fr)
</option><option
value="GY"
>
Guyana (GYD
$)
</option><option
value="HT"
>
Haiti (AUD
$)
</option><option
value="HN"
>
Honduras (HNL
L)
</option><option
value="HK"
>
Hong Kong SAR (HKD
$)
</option><option
value="HU"
>
Hungary (HUF
Ft)
</option><option
value="IS"
>
Iceland (ISK
kr)
</option><option
value="IN"
>
India (INR
₹)
</option><option
value="ID"
>
Indonesia (IDR
Rp)
</option><option
value="IQ"
>
Iraq (AUD
$)
</option><option
value="IE"
>
Ireland (EUR
€)
</option><option
value="IM"
>
Isle of Man (GBP
£)
</option><option
value="IL"
>
Israel (ILS
₪)
</option><option
value="IT"
>
Italy (EUR
€)
</option><option
value="JM"
>
Jamaica (JMD
$)
</option><option
value="JP"
>
Japan (JPY
¥)
</option><option
value="JE"
>
Jersey (AUD
$)
</option><option
value="JO"
>
Jordan (AUD
$)
</option><option
value="KZ"
>
Kazakhstan (KZT
₸)
</option><option
value="KE"
>
Kenya (KES
KSh)
</option><option
value="KI"
>
Kiribati (AUD
$)
</option><option
value="XK"
>
Kosovo (EUR
€)
</option><option
value="KW"
>
Kuwait (AUD
$)
</option><option
value="KG"
>
Kyrgyzstan (KGS
som)
</option><option
value="LA"
>
Laos (LAK
₭)
</option><option
value="LV"
>
Latvia (EUR
€)
</option><option
value="LB"
>
Lebanon (LBP
ل.ل)
</option><option
value="LS"
>
Lesotho (AUD
$)
</option><option
value="LR"
>
Liberia (AUD
$)
</option><option
value="LY"
>
Libya (AUD
$)
</option><option
value="LI"
>
Liechtenstein (CHF
CHF)
</option><option
value="LT"
>
Lithuania (EUR
€)
</option><option
value="LU"
>
Luxembourg (EUR
€)
</option><option
value="MO"
>
Macao SAR (MOP
P)
</option><option
value="MG"
>
Madagascar (AUD
$)
</option><option
value="MW"
>
Malawi (MWK
MK)
</option><option
value="MY"
>
Malaysia (MYR
RM)
</option><option
value="MV"
>
Maldives (MVR
MVR)
</option><option
value="ML"
>
Mali (XOF
Fr)
</option><option
value="MT"
>
Malta (EUR
€)
</option><option
value="MQ"
>
Martinique (EUR
€)
</option><option
value="MR"
>
Mauritania (AUD
$)
</option><option
value="MU"
>
Mauritius (MUR
₨)
</option><option
value="YT"
>
Mayotte (EUR
€)
</option><option
value="MX"
>
Mexico (AUD
$)
</option><option
value="MD"
>
Moldova (MDL
L)
</option><option
value="MC"
>
Monaco (EUR
€)
</option><option
value="MN"
>
Mongolia (MNT
₮)
</option><option
value="ME"
>
Montenegro (EUR
€)
</option><option
value="MS"
>
Montserrat (XCD
$)
</option><option
value="MA"
>
Morocco (MAD
د.م.)
</option><option
value="MZ"
>
Mozambique (AUD
$)
</option><option
value="MM"
>
Myanmar (Burma) (MMK
K)
</option><option
value="NA"
>
Namibia (AUD
$)
</option><option
value="NR"
>
Nauru (AUD
$)
</option><option
value="NP"
>
Nepal (NPR
Rs.)
</option><option
value="NL"
>
Netherlands (EUR
€)
</option><option
value="NC"
>
New Caledonia (XPF
Fr)
</option><option
value="NZ"
>
New Zealand (NZD
$)
</option><option
value="NI"
>
Nicaragua (NIO
C$)
</option><option
value="NE"
>
Niger (XOF
Fr)
</option><option
value="NG"
>
Nigeria (NGN
₦)
</option><option
value="NU"
>
Niue (NZD
$)
</option><option
value="NF"
>
Norfolk Island (AUD
$)
</option><option
value="MK"
>
North Macedonia (MKD
ден)
</option><option
value="NO"
>
Norway (AUD
$)
</option><option
value="OM"
>
Oman (AUD
$)
</option><option
value="PK"
>
Pakistan (PKR
₨)
</option><option
value="PS"
>
Palestinian Territories (ILS
₪)
</option><option
value="PA"
>
Panama (USD
$)
</option><option
value="PG"
>
Papua New Guinea (PGK
K)
</option><option
value="PY"
>
Paraguay (PYG
₲)
</option><option
value="PE"
>
Peru (PEN
S/)
</option><option
value="PH"
>
Philippines (PHP
₱)
</option><option
value="PN"
>
Pitcairn Islands (NZD
$)
</option><option
value="PL"
>
Poland (PLN
zł)
</option><option
value="PT"
>
Portugal (EUR
€)
</option><option
value="QA"
>
Qatar (QAR
ر.ق)
</option><option
value="RE"
>
Réunion (EUR
€)
</option><option
value="RO"
>
Romania (RON
Lei)
</option><option
value="RU"
>
Russia (AUD
$)
</option><option
value="RW"
>
Rwanda (RWF
FRw)
</option><option
value="WS"
>
Samoa (WST
T)
</option><option
value="SM"
>
San Marino (EUR
€)
</option><option
value="ST"
>
São Tomé & Príncipe (STD
Db)
</option><option
value="SA"
>
Saudi Arabia (SAR
ر.س)
</option><option
value="SN"
>
Senegal (XOF
Fr)
</option><option
value="RS"
>
Serbia (RSD
РСД)
</option><option
value="SC"
>
Seychelles (AUD
$)
</option><option
value="SL"
>
Sierra Leone (SLL
Le)
</option><option
value="SG"
>
Singapore (SGD
$)
</option><option
value="SX"
>
Sint Maarten (ANG
ƒ)
</option><option
value="SK"
>
Slovakia (EUR
€)
</option><option
value="SI"
>
Slovenia (EUR
€)
</option><option
value="SB"
>
Solomon Islands (SBD
$)
</option><option
value="SO"
>
Somalia (AUD
$)
</option><option
value="ZA"
>
South Africa (AUD
$)
</option><option
value="GS"
>
South Georgia & South Sandwich Islands (GBP
£)
</option><option
value="SS"
>
South Sudan (AUD
$)
</option><option
value="ES"
>
Spain (EUR
€)
</option><option
value="LK"
>
Sri Lanka (LKR
₨)
</option><option
value="BL"
>
St. Barthélemy (EUR
€)
</option><option
value="SH"
>
St. Helena (SHP
£)
</option><option
value="KN"
>
St. Kitts & Nevis (XCD
$)
</option><option
value="LC"
>
St. Lucia (XCD
$)
</option><option
value="MF"
>
St. Martin (EUR
€)
</option><option
value="PM"
>
St. Pierre & Miquelon (EUR
€)
</option><option
value="VC"
>
St. Vincent & Grenadines (XCD
$)
</option><option
value="SD"
>
Sudan (AUD
$)
</option><option
value="SR"
>
Suriname (AUD
$)
</option><option
value="SJ"
>
Svalbard & Jan Mayen (AUD
$)
</option><option
value="SE"
>
Sweden (SEK
kr)
</option><option
value="CH"
>
Switzerland (CHF
CHF)
</option><option
value="TW"
>
Taiwan (TWD
$)
</option><option
value="TJ"
>
Tajikistan (TJS
ЅМ)
</option><option
value="TZ"
>
Tanzania (TZS
Sh)
</option><option
value="TH"
>
Thailand (THB
฿)
</option><option
value="TL"
>
Timor-Leste (USD
$)
</option><option
value="TG"
>
Togo (XOF
Fr)
</option><option
value="TK"
>
Tokelau (NZD
$)
</option><option
value="TO"
>
Tonga (TOP
T$)
</option><option
value="TT"
>
Trinidad & Tobago (TTD
$)
</option><option
value="TA"
>
Tristan da Cunha (GBP
£)
</option><option
value="TN"
>
Tunisia (AUD
$)
</option><option
value="TR"
>
Türkiye (AUD
$)
</option><option
value="TM"
>
Turkmenistan (AUD
$)
</option><option
value="TC"
>
Turks & Caicos Islands (USD
$)
</option><option
value="TV"
>
Tuvalu (AUD
$)
</option><option
value="UM"
>
U.S. Outlying Islands (USD
$)
</option><option
value="UG"
>
Uganda (UGX
USh)
</option><option
value="UA"
>
Ukraine (UAH
₴)
</option><option
value="AE"
>
United Arab Emirates (AED
د.إ)
</option><option
value="GB"
>
United Kingdom (GBP
£)
</option><option
value="UY"
>
Uruguay (UYU
$U)
</option><option
value="UZ"
>
Uzbekistan (UZS
so'm)
</option><option
value="VU"
>
Vanuatu (VUV
Vt)
</option><option
value="VA"
>
Vatican City (EUR
€)
</option><option
value="VE"
>
Venezuela (USD
$)
</option><option
value="VN"
>
Vietnam (VND
₫)
</option><option
value="WF"
>
Wallis & Futuna (XPF
Fr)
</option><option
value="EH"
>
Western Sahara (MAD
د.م.)
</option><option
value="YE"
>
Yemen (YER
﷼)
</option><option
value="ZM"
>
Zambia (AUD
$)
</option><option
value="ZW"
>
Zimbabwe (USD
$)
</option></select>
<button class="btn btn--with-icon btn--square" aria-label="Update country/region">
<svg
class="icon icon-arrow icon--small"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span class="visually-hidden">Update country/region</span>
</button>
</div></form></noscript>
<localization-form
class="disclosure no-js-hidden disclosure--up"
data-disclosure-country
><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>
<button
type="button"
class="disclosure__toggle text-normal font-body"
aria-expanded="false"
aria-controls="country-list"
aria-describedby="CountryLabel-country-32"
data-disclosure-toggle
>
<span class="f-country-flags f-country-flags--AU"></span>
Australia (AUD
$)
<svg
class="icon icon-arrow icon--small"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<ul class="disclosure-list v-scrollable text-left"><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AF"></span>Afghanistan<span class="localization-form__currency"
>(AFN
؋)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AX"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AX"></span>Åland Islands<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AL"></span>Albania<span class="localization-form__currency"
>(ALL
L)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DZ"></span>Algeria<span class="localization-form__currency"
>(DZD
د.ج)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AD"></span>Andorra<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AO"></span>Angola<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AI"></span>Anguilla<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AG"></span>Antigua & Barbuda<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AR"></span>Argentina<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AM"></span>Armenia<span class="localization-form__currency"
>(AMD
դր.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AW"></span>Aruba<span class="localization-form__currency"
>(AWG
ƒ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AC"></span>Ascension Island<span class="localization-form__currency"
>(SHP
£)</span
>
</a>
</li><li class="disclosure-list__item disclosure-list__item--current">
<a
class="disclosure-list__option"
href="#"
aria-current="true"
data-value="AU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AU"></span>Australia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AT"></span>Austria<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AZ"></span>Azerbaijan<span class="localization-form__currency"
>(AZN
₼)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BS"></span>Bahamas<span class="localization-form__currency"
>(BSD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BH"></span>Bahrain<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BD"></span>Bangladesh<span class="localization-form__currency"
>(BDT
৳)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BB"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BB"></span>Barbados<span class="localization-form__currency"
>(BBD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BY"></span>Belarus<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BE"></span>Belgium<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BZ"></span>Belize<span class="localization-form__currency"
>(BZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BJ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BJ"></span>Benin<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BM"></span>Bermuda<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BT"></span>Bhutan<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BO"></span>Bolivia<span class="localization-form__currency"
>(BOB
Bs.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BA"></span>Bosnia & Herzegovina<span class="localization-form__currency"
>(BAM
КМ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BW"></span>Botswana<span class="localization-form__currency"
>(BWP
P)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BR"></span>Brazil<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IO"></span>British Indian Ocean Territory<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VG"></span>British Virgin Islands<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BN"></span>Brunei<span class="localization-form__currency"
>(BND
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BG"></span>Bulgaria<span class="localization-form__currency"
>(BGN
лв.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BF"></span>Burkina Faso<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BI"></span>Burundi<span class="localization-form__currency"
>(BIF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KH"></span>Cambodia<span class="localization-form__currency"
>(KHR
៛)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CM"></span>Cameroon<span class="localization-form__currency"
>(XAF
CFA)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CA"></span>Canada<span class="localization-form__currency"
>(CAD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CV"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CV"></span>Cape Verde<span class="localization-form__currency"
>(CVE
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BQ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BQ"></span>Caribbean Netherlands<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KY"></span>Cayman Islands<span class="localization-form__currency"
>(KYD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CF"></span>Central African Republic<span class="localization-form__currency"
>(XAF
CFA)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TD"></span>Chad<span class="localization-form__currency"
>(XAF
CFA)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CL"></span>Chile<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CN"></span>China<span class="localization-form__currency"
>(CNY
¥)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CX"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CX"></span>Christmas Island<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CC"></span>Cocos (Keeling) Islands<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CO"></span>Colombia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KM"></span>Comoros<span class="localization-form__currency"
>(KMF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CG"></span>Congo - Brazzaville<span class="localization-form__currency"
>(XAF
CFA)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CD"></span>Congo - Kinshasa<span class="localization-form__currency"
>(CDF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CK"></span>Cook Islands<span class="localization-form__currency"
>(NZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CR"></span>Costa Rica<span class="localization-form__currency"
>(CRC
₡)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CI"></span>Côte d’Ivoire<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="HR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--HR"></span>Croatia<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CW"></span>Curaçao<span class="localization-form__currency"
>(ANG
ƒ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CY"></span>Cyprus<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CZ"></span>Czechia<span class="localization-form__currency"
>(CZK
Kč)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DK"></span>Denmark<span class="localization-form__currency"
>(DKK
kr.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DJ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DJ"></span>Djibouti<span class="localization-form__currency"
>(DJF
Fdj)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DM"></span>Dominica<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DO"></span>Dominican Republic<span class="localization-form__currency"
>(DOP
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="EC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--EC"></span>Ecuador<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="EG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--EG"></span>Egypt<span class="localization-form__currency"
>(EGP
ج.م)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SV"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SV"></span>El Salvador<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GQ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GQ"></span>Equatorial Guinea<span class="localization-form__currency"
>(XAF
CFA)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ER"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ER"></span>Eritrea<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="EE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--EE"></span>Estonia<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SZ"></span>Eswatini<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ET"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ET"></span>Ethiopia<span class="localization-form__currency"
>(ETB
Br)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="FK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--FK"></span>Falkland Islands<span class="localization-form__currency"
>(FKP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="FO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--FO"></span>Faroe Islands<span class="localization-form__currency"
>(DKK
kr.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="FJ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--FJ"></span>Fiji<span class="localization-form__currency"
>(FJD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="FI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--FI"></span>Finland<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="FR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--FR"></span>France<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GF"></span>French Guiana<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PF"></span>French Polynesia<span class="localization-form__currency"
>(XPF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TF"></span>French Southern Territories<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GA"></span>Gabon<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GM"></span>Gambia<span class="localization-form__currency"
>(GMD
D)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GE"></span>Georgia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DE"></span>Germany<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GH"></span>Ghana<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GI"></span>Gibraltar<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GR"></span>Greece<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GL"></span>Greenland<span class="localization-form__currency"
>(DKK
kr.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GD"></span>Grenada<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GP"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GP"></span>Guadeloupe<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GT"></span>Guatemala<span class="localization-form__currency"
>(GTQ
Q)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GG"></span>Guernsey<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GN"></span>Guinea<span class="localization-form__currency"
>(GNF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GW"></span>Guinea-Bissau<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GY"></span>Guyana<span class="localization-form__currency"
>(GYD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="HT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--HT"></span>Haiti<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="HN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--HN"></span>Honduras<span class="localization-form__currency"
>(HNL
L)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="HK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--HK"></span>Hong Kong SAR<span class="localization-form__currency"
>(HKD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="HU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--HU"></span>Hungary<span class="localization-form__currency"
>(HUF
Ft)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IS"></span>Iceland<span class="localization-form__currency"
>(ISK
kr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IN"></span>India<span class="localization-form__currency"
>(INR
₹)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ID"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ID"></span>Indonesia<span class="localization-form__currency"
>(IDR
Rp)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IQ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IQ"></span>Iraq<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IE"></span>Ireland<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IM"></span>Isle of Man<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IL"></span>Israel<span class="localization-form__currency"
>(ILS
₪)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IT"></span>Italy<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="JM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--JM"></span>Jamaica<span class="localization-form__currency"
>(JMD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="JP"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--JP"></span>Japan<span class="localization-form__currency"
>(JPY
¥)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="JE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--JE"></span>Jersey<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="JO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--JO"></span>Jordan<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KZ"></span>Kazakhstan<span class="localization-form__currency"
>(KZT
₸)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KE"></span>Kenya<span class="localization-form__currency"
>(KES
KSh)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KI"></span>Kiribati<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="XK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--XK"></span>Kosovo<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KW"></span>Kuwait<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KG"></span>Kyrgyzstan<span class="localization-form__currency"
>(KGS
som)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LA"></span>Laos<span class="localization-form__currency"
>(LAK
₭)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LV"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LV"></span>Latvia<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LB"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LB"></span>Lebanon<span class="localization-form__currency"
>(LBP
ل.ل)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LS"></span>Lesotho<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LR"></span>Liberia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LY"></span>Libya<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LI"></span>Liechtenstein<span class="localization-form__currency"
>(CHF
CHF)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LT"></span>Lithuania<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LU"></span>Luxembourg<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MO"></span>Macao SAR<span class="localization-form__currency"
>(MOP
P)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MG"></span>Madagascar<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MW"></span>Malawi<span class="localization-form__currency"
>(MWK
MK)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MY"></span>Malaysia<span class="localization-form__currency"
>(MYR
RM)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MV"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MV"></span>Maldives<span class="localization-form__currency"
>(MVR
MVR)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ML"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ML"></span>Mali<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MT"></span>Malta<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MQ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MQ"></span>Martinique<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MR"></span>Mauritania<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MU"></span>Mauritius<span class="localization-form__currency"
>(MUR
₨)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="YT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--YT"></span>Mayotte<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MX"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MX"></span>Mexico<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MD"></span>Moldova<span class="localization-form__currency"
>(MDL
L)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MC"></span>Monaco<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MN"></span>Mongolia<span class="localization-form__currency"
>(MNT
₮)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ME"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ME"></span>Montenegro<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MS"></span>Montserrat<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MA"></span>Morocco<span class="localization-form__currency"
>(MAD
د.م.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MZ"></span>Mozambique<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MM"></span>Myanmar (Burma)<span class="localization-form__currency"
>(MMK
K)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NA"></span>Namibia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NR"></span>Nauru<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NP"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NP"></span>Nepal<span class="localization-form__currency"
>(NPR
Rs.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NL"></span>Netherlands<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NC"></span>New Caledonia<span class="localization-form__currency"
>(XPF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NZ"></span>New Zealand<span class="localization-form__currency"
>(NZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NI"></span>Nicaragua<span class="localization-form__currency"
>(NIO
C$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NE"></span>Niger<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NG"></span>Nigeria<span class="localization-form__currency"
>(NGN
₦)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NU"></span>Niue<span class="localization-form__currency"
>(NZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NF"></span>Norfolk Island<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MK"></span>North Macedonia<span class="localization-form__currency"
>(MKD
ден)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NO"></span>Norway<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="OM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--OM"></span>Oman<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PK"></span>Pakistan<span class="localization-form__currency"
>(PKR
₨)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PS"></span>Palestinian Territories<span class="localization-form__currency"
>(ILS
₪)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PA"></span>Panama<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PG"></span>Papua New Guinea<span class="localization-form__currency"
>(PGK
K)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PY"></span>Paraguay<span class="localization-form__currency"
>(PYG
₲)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PE"></span>Peru<span class="localization-form__currency"
>(PEN
S/)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PH"></span>Philippines<span class="localization-form__currency"
>(PHP
₱)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PN"></span>Pitcairn Islands<span class="localization-form__currency"
>(NZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PL"></span>Poland<span class="localization-form__currency"
>(PLN
zł)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PT"></span>Portugal<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="QA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--QA"></span>Qatar<span class="localization-form__currency"
>(QAR
ر.ق)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="RE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--RE"></span>Réunion<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="RO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--RO"></span>Romania<span class="localization-form__currency"
>(RON
Lei)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="RU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--RU"></span>Russia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="RW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--RW"></span>Rwanda<span class="localization-form__currency"
>(RWF
FRw)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="WS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--WS"></span>Samoa<span class="localization-form__currency"
>(WST
T)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SM"></span>San Marino<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ST"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ST"></span>São Tomé & Príncipe<span class="localization-form__currency"
>(STD
Db)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SA"></span>Saudi Arabia<span class="localization-form__currency"
>(SAR
ر.س)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SN"></span>Senegal<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="RS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--RS"></span>Serbia<span class="localization-form__currency"
>(RSD
РСД)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SC"></span>Seychelles<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SL"></span>Sierra Leone<span class="localization-form__currency"
>(SLL
Le)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SG"></span>Singapore<span class="localization-form__currency"
>(SGD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SX"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SX"></span>Sint Maarten<span class="localization-form__currency"
>(ANG
ƒ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SK"></span>Slovakia<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SI"></span>Slovenia<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SB"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SB"></span>Solomon Islands<span class="localization-form__currency"
>(SBD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SO"></span>Somalia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ZA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ZA"></span>South Africa<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GS"></span>South Georgia & South Sandwich Islands<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SS"></span>South Sudan<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ES"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ES"></span>Spain<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LK"></span>Sri Lanka<span class="localization-form__currency"
>(LKR
₨)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BL"></span>St. Barthélemy<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SH"></span>St. Helena<span class="localization-form__currency"
>(SHP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KN"></span>St. Kitts & Nevis<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LC"></span>St. Lucia<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MF"></span>St. Martin<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PM"></span>St. Pierre & Miquelon<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VC"></span>St. Vincent & Grenadines<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SD"></span>Sudan<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SR"></span>Suriname<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SJ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SJ"></span>Svalbard & Jan Mayen<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SE"></span>Sweden<span class="localization-form__currency"
>(SEK
kr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CH"></span>Switzerland<span class="localization-form__currency"
>(CHF
CHF)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TW"></span>Taiwan<span class="localization-form__currency"
>(TWD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TJ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TJ"></span>Tajikistan<span class="localization-form__currency"
>(TJS
ЅМ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TZ"></span>Tanzania<span class="localization-form__currency"
>(TZS
Sh)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TH"></span>Thailand<span class="localization-form__currency"
>(THB
฿)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TL"></span>Timor-Leste<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TG"></span>Togo<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TK"></span>Tokelau<span class="localization-form__currency"
>(NZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TO"></span>Tonga<span class="localization-form__currency"
>(TOP
T$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TT"></span>Trinidad & Tobago<span class="localization-form__currency"
>(TTD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TA"></span>Tristan da Cunha<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TN"></span>Tunisia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TR"></span>Türkiye<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TM"></span>Turkmenistan<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TC"></span>Turks & Caicos Islands<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TV"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TV"></span>Tuvalu<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="UM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--UM"></span>U.S. Outlying Islands<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="UG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--UG"></span>Uganda<span class="localization-form__currency"
>(UGX
USh)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="UA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--UA"></span>Ukraine<span class="localization-form__currency"
>(UAH
₴)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AE"></span>United Arab Emirates<span class="localization-form__currency"
>(AED
د.إ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GB"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GB"></span>United Kingdom<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="UY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--UY"></span>Uruguay<span class="localization-form__currency"
>(UYU
$U)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="UZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--UZ"></span>Uzbekistan<span class="localization-form__currency"
>(UZS
so'm)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VU"></span>Vanuatu<span class="localization-form__currency"
>(VUV
Vt)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VA"></span>Vatican City<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VE"></span>Venezuela<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VN"></span>Vietnam<span class="localization-form__currency"
>(VND
₫)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="WF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--WF"></span>Wallis & Futuna<span class="localization-form__currency"
>(XPF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="EH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--EH"></span>Western Sahara<span class="localization-form__currency"
>(MAD
د.م.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="YE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--YE"></span>Yemen<span class="localization-form__currency"
>(YER
﷼)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ZM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ZM"></span>Zambia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ZW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ZW"></span>Zimbabwe<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li></ul>
<input type="hidden" name="country_code" value="AU" data-disclosure-input></form></localization-form>
</div>
</div></div><div class="menu-drawer__social-icons">
<ul class="list-unstyled flex gap-x-4 gap-y-2 items-center socials justify-center" role="list"><li class="social__item inline-flex">
<a href="https://www.facebook.com/profile.php?id=61559873790442" class="social__link inline-flex"><svg
aria-hidden="true"
focusable="false"
role="presentation"
class="icon icon-facebook icon--large"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<span class="visually-hidden">Facebook</span>
</a>
</li><li class="social__item inline-flex">
<a href="http://www.instagram.com/mymimi.com.au" class="social__link inline-flex"><svg
aria-hidden="true"
focusable="false"
role="presentation"
class="icon icon-instagram icon--large"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<span class="visually-hidden">Instagram</span>
</a>
</li><li class="social__item inline-flex">
<a href="https://www.tiktok.com/@mymimi.com.au" class="social__link inline-flex"><svg
aria-hidden="true"
focusable="false"
role="presentation"
class="icon icon-tiktok icon--large"
fill="none"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<span class="visually-hidden">TikTok</span>
</a>
</li><li class="social__item inline-flex">
<a href="https://www.youtube.com/@mymimiau" class="social__link inline-flex"><svg
aria-hidden="true"
focusable="false"
role="presentation"
class="icon icon-youtube icon--large"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<span class="visually-hidden">YouTube</span>
</a>
</li></ul>
</div></div>
</div>
</div>
</menu-drawer>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "my mimi",
"logo": "https:\/\/mymimi.com.au\/cdn\/shop\/files\/logo.png?v=1716105592\u0026width=500",
"sameAs": [
"",
"https:\/\/www.facebook.com\/profile.php?id=61559873790442",
"",
"http:\/\/www.instagram.com\/mymimi.com.au",
"https:\/\/www.tiktok.com\/@mymimi.com.au",
"",
"",
"https:\/\/www.youtube.com\/@mymimiau",
""
],
"url": "https:\/\/mymimi.com.au"
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "my mimi",
"potentialAction": {
"@type": "SearchAction",
"target": "https:\/\/mymimi.com.au\/search?q={search_term_string}",
"query-input": "required name=search_term_string"
},
"url": "https:\/\/mymimi.com.au"
}
</script>
</div>
<!-- END sections: header-group -->
<main id="MainContent" class="main-content content-for-layout focus-none" role="main" tabindex="-1">
<div id="shopify-section-template--18997227126996__image_with_text_overlay_cadqWR" class="shopify-section"><style>
#shopify-section-template--18997227126996__image_with_text_overlay_cadqWR {
--section-padding-top: 0px;
--section-padding-bottom: 0px;
--media-ratio: 38.4;
--padding-x: var(--page-padding);}</style>
<div class="image-with-text-overlay section--padding">
<div class="w-full">
<div class="relative overflow-hidden">
<parallax-element
class="block w-full h-full overflow-hidden"
>
<motion-element
data-motion="zoom-out"
class="block relative overflow-hidden w-full h-full media mb:media--auto media--adapt"
><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&width=960" alt="menstrual disc" srcset="//mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&width=300 300w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&width=400 400w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&width=500 500w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&width=600 600w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&width=700 700w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&width=800 800w, //mymimi.com.au/cdn/shop/files/menstrualdischomepagebanner_transparent_2.png?v=1740797452&width=900 900w" width="960" height="25" loading="lazy" sizes="100vw" is="image-eager"></picture></motion-element>
</parallax-element>
<div class="image-with-text-ovelay__content">
<div class="image-with-text-ovelay__content-wrapper content-overlay content-overlay--middle-left color-scheme-3 page-width">
<div class="relative z-1 rich-text text-left">
<motion-element
data-motion="fade-up"
data-motion-delay="50"
class="block rich-text__text rte text-sm"
><h1>Menstrual Disc | Reusable Eco-Friendly Period Care Australia</h1></motion-element>
</div>
</div>
</div>
<div
class="bg-overlay absolute inset-0"
style="--color-overlay-alpha: 0;"
></div>
</div>
</div>
</div>
</div><div id="shopify-section-template--18997227126996__image_with_text_overlay_yXRaKt" class="shopify-section"><style>
#shopify-section-template--18997227126996__image_with_text_overlay_yXRaKt {
--section-padding-top: 0px;
--section-padding-bottom: 0px;
--media-ratio: 2.73972602739726;
--padding-x: var(--page-padding);}</style>
<div class="image-with-text-overlay section--padding">
<div class="w-full">
<div class="relative overflow-hidden">
<parallax-element
class="block w-full h-full overflow-hidden"
>
<motion-element
data-motion="zoom-out"
class="block relative overflow-hidden w-full h-full media mb:media--small media--adapt"
><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&width=2200" alt="menstrual disc" srcset="//mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=300 300w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=400 400w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=500 500w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=600 600w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=700 700w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=800 800w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=900 900w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=1000 1000w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=1200 1200w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=1400 1400w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=1600 1600w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=1800 1800w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=2000 2000w, //mymimi.com.au/cdn/shop/files/menstrual_disc_005.webp?v=1741640249&width=2200 2200w" width="2200" height="803" loading="lazy" sizes="100vw" is="image-eager"></picture></motion-element>
</parallax-element>
<div class="image-with-text-ovelay__content">
<div class="image-with-text-ovelay__content-wrapper content-overlay content-overlay--middle-left color-scheme-inverse page-width">
<div class="relative z-1 rich-text text-left">
</div>
</div>
</div>
<div
class="bg-overlay absolute inset-0"
style="--color-overlay-alpha: 0;"
></div>
</div>
</div>
</div>
</div><section id="shopify-section-template--18997227126996__rich_text_7MPpdy" class="shopify-section section">
<div
class="section section--padding rich-text-section color-scheme-1"
style="--section-padding-top: 20px;--section-padding-bottom: 20px;"
>
<div class="page-width">
<div class="rich-text text-center">
<motion-element
data-motion="fade-up"
data-motion-delay="50"
class="block rich-text__text rte text-inherit"
>
<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>
</motion-element>
</div>
</div>
</div>
</section><section id="shopify-section-template--18997227126996__rich_text_8JETzA" class="shopify-section section">
<div
class="section section--padding rich-text-section color-scheme-1"
style="--section-padding-top: 0px;--section-padding-bottom: 50px;"
>
<div class="page-width">
<div class="rich-text text-center">
<motion-element
data-motion="fade-up"
data-motion-delay="50"
class="block rich-text__text rte text-base"
>
<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>
</motion-element>
</div>
</div>
</div>
</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" />
<div
class="section section--padding multicolumn color-scheme-1"
style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
>
<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">
<motion-element data-motion="fade-up" data-motion-delay="50" class="block">
<a href="/pages/menstrual-disc-benefits" title="benefits">menstrual disc benefits</a>
</motion-element>
</h2></div><motion-element
class="section__content block f-grid--gap-large"
data-motion="fade-up"
data-motion-delay="100"
>
<div class="multicolumn__items f-grid f-grid-2-cols md:f-grid-3-cols lg:f-grid-3-cols"><div class="f-column" >
<div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
<motion-element data-motion="zoom-out-sm" class="block w-full h-full">
<img src="//mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&width=1100" alt="menstrual disc - mess free activities" srcset="//mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&width=165 165w, //mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&width=360 360w, //mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&width=535 535w, //mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&width=750 750w, //mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&width=940 940w, //mymimi.com.au/cdn/shop/files/messfreecircularlogo.png?v=1738702032&width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</motion-element>
</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">
<p>providing a clean and discrete solution for staying active & confident during your period</p>
</div><a
href="https://mymimi.com.au/pages/mess-free-lifestyle"
class="btn btn--underline"
>read more</a></div>
</div>
</div><div class="f-column" >
<div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
<motion-element data-motion="zoom-out-sm" class="block w-full h-full">
<img src="//mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&width=1100" alt="menstrual disc - vaginal wellness" srcset="//mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&width=165 165w, //mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&width=360 360w, //mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&width=535 535w, //mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&width=750 750w, //mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&width=940 940w, //mymimi.com.au/cdn/shop/files/vaginalwellnesscircularlogo.png?v=1738702032&width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</motion-element>
</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">
<p>our BPA-free product is designed to maintain your body’s natural pH balance</p>
</div><a
href="https://mymimi.com.au/pages/do-doctors-recommend-menstrual-discs"
class="btn btn--underline"
>read more</a></div>
</div>
</div><div class="f-column" >
<div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
<motion-element data-motion="zoom-out-sm" class="block w-full h-full">
<img src="//mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&width=1100" alt="menstrual disc - budget friendly" srcset="//mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&width=165 165w, //mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&width=360 360w, //mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&width=535 535w, //mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&width=750 750w, //mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&width=940 940w, //mymimi.com.au/cdn/shop/files/budgetfriendlycircularlogo.png?v=1738702032&width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</motion-element>
</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">
<p>cost-effective alternative solution, reducing the need for frequent purchases of disposable products</p>
</div><a
href="https://mymimi.com.au/pages/budget-friendly"
class="btn btn--underline"
>read more</a></div>
</div>
</div><div class="f-column" >
<div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
<motion-element data-motion="zoom-out-sm" class="block w-full h-full">
<img src="//mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&width=1100" alt="menstrual disc - long lasting protection" srcset="//mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&width=165 165w, //mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&width=360 360w, //mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&width=535 535w, //mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&width=750 750w, //mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&width=940 940w, //mymimi.com.au/cdn/shop/files/longlastingcircularlogo.png?v=1738702032&width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</motion-element>
</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">
<p>offering up to 12 hours of protection, making it ideal for both day and night</p>
</div><a
href="https://mymimi.com.au/pages/long-lasting-protection"
class="btn btn--underline"
>read more</a></div>
</div>
</div><div class="f-column" >
<div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
<motion-element data-motion="zoom-out-sm" class="block w-full h-full">
<img src="//mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&width=1100" alt="menstrual disc - suction free" srcset="//mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&width=165 165w, //mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&width=360 360w, //mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&width=535 535w, //mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&width=750 750w, //mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&width=940 940w, //mymimi.com.au/cdn/shop/files/suctionfreecircularlogo.png?v=1738702032&width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</motion-element>
</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">
<p>designed to be suction free, providing a secure fit without causing discomfort & IUD-friendly</p>
</div><a
href="https://mymimi.com.au/pages/menstrual-disc-with-iud-everything-you-need-to-know"
class="btn btn--underline"
>read more</a></div>
</div>
</div><div class="f-column" >
<div class="multicolumn-card multicolumn-card-mobile-inherit multicolumn-card--image-extra-large text-center"><div class="multicolumn-card__image media-wrapper">
<motion-element data-motion="zoom-out-sm" class="block w-full h-full">
<img src="//mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&width=1100" alt="menstrual disc - premium materials" srcset="//mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&width=165 165w, //mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&width=360 360w, //mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&width=535 535w, //mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&width=750 750w, //mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&width=940 940w, //mymimi.com.au/cdn/shop/files/premiummaterialscircularlogo.png?v=1738702031&width=1100 1100w" width="1100" height="1100" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</motion-element>
</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">
<p>crafted from premium, 100% medical grade silicone, ensuring both comfort and durability</p>
</div><a
href="https://mymimi.com.au/pages/are-menstrual-discs-safe-to-use"
class="btn btn--underline"
>read more</a></div>
</div>
</div></div>
</motion-element>
</div>
</div>
</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" />
<div
class="section section-template--18997227126996__products_showcase_wbf8TB section--padding section--products-showcase slider-enabled page-width color-scheme-1"
style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
data-id="template--18997227126996__products_showcase_wbf8TB"
><div class="section__wrapper relative slider-controls--grouped-mobile slider-controls--below"><div class="section__header-wrap flex justify-between gap-3">
<div class="slider-controls--group">
<div class="slider-controls block md:flex items-center justify-start gap-2">
<button
class="swiper-button-prev btn"
name="previous"
aria-label="Slide left"
>
<svg
class="icon icon-slider-prev icon--medium"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M12.75 16.2505L6.5 10.0005L12.75 3.75049" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<button
class="swiper-button-next btn"
name="next"
aria-label="Slide right"
>
<svg
class="icon icon-slider-prev icon--medium"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<div class="swiper-pagination"></div>
</div>
</div>
</div><motion-element data-motion="fade-up" data-motion-delay="50" class="block section__content">
<products-showcase
data-section-id="template--18997227126996__products_showcase_wbf8TB"
data-enable-slider="true"
data-item-gap="10"
class="block"
>
<div class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="product-showcase grid f-grid-1-cols md:f-grid-2-cols">
<div class="product-showcase__thumbnail">
<div class="media-wrapper blocks-radius">
<a
href="/products/my-mimi-menstrual-disc"
class="hover-wrapper"
aria-label="menstrual disc - comfortable & leak-free protection"
tabindex="-1"
><div class="w-full" style="--aspect-ratio: 1.0">
<img src="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&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&width=360 360w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=460 460w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=535 535w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=720 720w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=920 920w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=1070 1070w" width="1500" height="1500" loading="lazy" fetchpriority="low" class="motion-reduce hover-scale-up" is="image-lazy">
</div></a>
</div>
</div>
<div class="product-showcase__info flex items-center">
<div class="product-showcase__info-inner w-full"><p class="product-showcase__vendor h5">
<span class="visually-hidden">Vendor:</span>
my mimi
</p><h3 class="product-showcase__title h1">
<a href="/products/my-mimi-menstrual-disc">menstrual disc - comfortable & leak-free protection</a>
</h3>
<div
class="
f-price f-price--large"
><div class="f-price__regular">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="f-price-item f-price-item--regular">
$44.95
</span>
</div>
<div class="f-price__sale">
<span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="f-price-item f-price-item--sale">
$44.95
</span>
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="f-price-item f-price-item--regular">
<s>
</s>
</span></div>
<div class="f-price__unit-wrapper hidden">
<span class="visually-hidden">Unit price</span>
<div class="f-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span class="visually-hidden">per </span><span data-unit-price-base-unit></span></div>
</div>
</div>
<div class="product-showcase__description rte text-lg">
<div class="text-limit-2-lines"><h2>revolutionising period care with superior comfort<strong></strong>
</h2>
<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>
<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>
<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>
<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>
<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>
<p><strong>health and safety focus:</strong></p>
<ul>
<li>
<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>
<li>
<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>
</ul>
<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>
</div></div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="product-showcase grid f-grid-1-cols md:f-grid-2-cols">
<div class="product-showcase__thumbnail">
<div class="media-wrapper blocks-radius">
<a
href="/products/menstrual-disc-blue-bundle"
class="hover-wrapper"
aria-label="menstrual disc blue bundle"
tabindex="-1"
><div class="w-full" style="--aspect-ratio: 1.0">
<img src="//mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&width=1500" alt="menstrual disc bundle" srcset="//mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&width=360 360w, //mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&width=460 460w, //mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&width=535 535w, //mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&width=720 720w, //mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&width=920 920w, //mymimi.com.au/cdn/shop/files/menstrualdiscbluebundle9.jpg?v=1742974792&width=1070 1070w" width="1500" height="1500" loading="lazy" fetchpriority="low" class="motion-reduce hover-scale-up" is="image-lazy">
</div></a>
</div>
</div>
<div class="product-showcase__info flex items-center">
<div class="product-showcase__info-inner w-full"><p class="product-showcase__vendor h5">
<span class="visually-hidden">Vendor:</span>
my mimi
</p><h3 class="product-showcase__title h1">
<a href="/products/menstrual-disc-blue-bundle">menstrual disc blue bundle</a>
</h3>
<div
class="
f-price f-price--large f-price--on-sale "
><div class="f-price__regular">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="f-price-item f-price-item--regular">
$59.95
</span>
</div>
<div class="f-price__sale">
<span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="f-price-item f-price-item--sale">
$59.95
</span>
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="f-price-item f-price-item--regular">
<s>
$78.85
</s>
</span></div>
<div class="f-price__unit-wrapper hidden">
<span class="visually-hidden">Unit price</span>
<div class="f-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span class="visually-hidden">per </span><span data-unit-price-base-unit></span></div>
</div>
</div>
<div class="product-showcase__description rte text-lg">
<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>
<h3 class="" data-end="434" data-start="406">Discover Each Product:</h3>
<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>
<h4><a href="https://mymimi.com.au/products/my-mimi-go" title="my mimi sanitiser"><em>my mimi</em> GO</a></h4>
<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>
<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>
<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>
</div></div>
</div>
</div>
</div></div>
</div>
</products-showcase>
</motion-element>
</div>
</div>
<script src="//mymimi.com.au/cdn/shop/t/11/assets/products-showcase.js?v=105277316822558500191738695060" defer="defer"></script>
</div><section id="shopify-section-template--18997227126996__rich_text_tbB9mQ" class="shopify-section section">
<div
class="section section--padding rich-text-section color-scheme-1"
style="--section-padding-top: 12px;--section-padding-bottom: 12px;"
>
<div class="page-width">
<div class="rich-text text-center">
<motion-element
class="block"
data-motion="fade-up"
data-motion-delay="50"
>
<a
href="https://mymimi.com.au/collections/shop"
class="btn btn--primary"
>shop now</a>
</motion-element>
</div>
</div>
</div>
</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" />
<link href="//mymimi.com.au/cdn/shop/t/11/assets/section-testimonials.css?v=145344366386897382781738695061" rel="stylesheet" type="text/css" media="all" />
<script src="//mymimi.com.au/cdn/shop/t/11/assets/testimonial.js?v=73233044216274929441738695061" defer="defer"></script>
<div
class="section section-template--18997227126996__testimonials_8JHr3L section--padding testimonials-wrapper testimonials-wrapper--slider color-scheme-inverse"
style="--section-padding-top: 12px;--section-padding-bottom: 18px;"
>
<div class="page-width"><div class="section__header md:flex justify-between gap-6">
<div class="rich-text md:text-left text-left">
<h2 class="rich-text__heading inline-richtext overflow-hidden h2">
<motion-element data-motion="fade-up" data-motion-delay="50" class="block">
<a href="https://mymimi.com.au/pages/my-mimi-menstrual-disc-reviews-page-2" title="menstrual disc reviews">reviews</a>
</motion-element>
</h2>
</div>
<motion-element
data-motion="fade-up"
data-motion-delay="100"
class="swiper-controls hidden md:inline-flex"
>
<button
type="button"
class="swiper-btn-prev btn btn--icon-circle shrink-0"
name="previous"
aria-label="Slide left"
><svg
class="icon icon-slider-prev icon--medium"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M12.75 16.2505L6.5 10.0005L12.75 3.75049" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<button
type="button"
class="swiper-btn-next btn btn--icon-circle shrink-0"
name="next"
aria-label="Slide right"
><svg
class="icon icon-slider-prev icon--medium"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</motion-element>
</div><motion-element class="section__content block" data-motion="fade-up" data-motion-delay="100">
<testimonials-component
class="testimonials block f-grid--gap-medium swiper swipe-mobile swipe-mobile--1-cols"
data-section-id="template--18997227126996__testimonials_8JHr3L"
data-layout="1"
data-enable-slider="true"
data-items="4"
data-tablet-items="2"
>
<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
class="f-column swiper-slide"
data-index="0"
>
<div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
<div class="testimonial__inner flex-1 flex flex-col">
<div class="testimonial__header flex gap-x-2 flex-wrap">
<h4 class="testimonial__name h5">Phoebe</h4>
<div class="testimonial__bio text-subtext text-sm">Mona Vale, Australia</div>
</div>
<div class="testimonial__icon">
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
</div>
<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>
<div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/menstrual-disc-bayside-blue" target="_blank">
<span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
<img src="//mymimi.com.au/cdn/shop/files/menstrual-disc-blue.webp?v=1741224581&width=360" alt="menstrual disc - bayside blue - limited edition" srcset="//mymimi.com.au/cdn/shop/files/menstrual-disc-blue.webp?v=1741224581&width=165 165w, //mymimi.com.au/cdn/shop/files/menstrual-disc-blue.webp?v=1741224581&width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</span>
<p class="testimonial__product-title text-pcard-title m-0">
<span class="reversed-link">menstrual disc - bayside blue - limited edition</span>
</p>
</a>
</div>
</div>
</div>
</div><div
class="f-column swiper-slide"
data-index="1"
>
<div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
<div class="testimonial__inner flex-1 flex flex-col">
<div class="testimonial__header flex gap-x-2 flex-wrap">
<h4 class="testimonial__name h5">Mathilda</h4>
<div class="testimonial__bio text-subtext text-sm">Albury, Australia</div>
</div>
<div class="testimonial__icon">
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
</div>
<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>
<div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/my-mimi-menstrual-disc" target="_blank">
<span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
<img src="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&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&width=165 165w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</span>
<p class="testimonial__product-title text-pcard-title m-0">
<span class="reversed-link">menstrual disc - comfortable & leak-free protection</span>
</p>
</a>
</div>
</div>
</div>
</div><div
class="f-column swiper-slide"
data-index="2"
>
<div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
<div class="testimonial__inner flex-1 flex flex-col">
<div class="testimonial__header flex gap-x-2 flex-wrap">
<h4 class="testimonial__name h5">Arwen</h4>
<div class="testimonial__bio text-subtext text-sm">Coquitlam, Canada</div>
</div>
<div class="testimonial__icon">
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
</div>
<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>
<div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/my-mimi-menstrual-disc-twin" target="_blank">
<span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
<img src="//mymimi.com.au/cdn/shop/files/menstrual-disc-duo.jpg?v=1735119104&width=360" alt="menstrual disc" srcset="//mymimi.com.au/cdn/shop/files/menstrual-disc-duo.jpg?v=1735119104&width=165 165w, //mymimi.com.au/cdn/shop/files/menstrual-disc-duo.jpg?v=1735119104&width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</span>
<p class="testimonial__product-title text-pcard-title m-0">
<span class="reversed-link">menstural disc twin bundle</span>
</p>
</a>
</div>
</div>
</div>
</div><div
class="f-column swiper-slide"
data-index="3"
>
<div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
<div class="testimonial__inner flex-1 flex flex-col">
<div class="testimonial__header flex gap-x-2 flex-wrap">
<h4 class="testimonial__name h5">Harper</h4>
<div class="testimonial__bio text-subtext text-sm">Bristol, UK</div>
</div>
<div class="testimonial__icon">
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
</div>
<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>
<div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/my-mimi-starter" target="_blank">
<span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
<img src="//mymimi.com.au/cdn/shop/files/mymimi-starter.jpg?v=1735119079&width=360" alt="my mimi - menstrual disc | 100% medical grade silicone" srcset="//mymimi.com.au/cdn/shop/files/mymimi-starter.jpg?v=1735119079&width=165 165w, //mymimi.com.au/cdn/shop/files/mymimi-starter.jpg?v=1735119079&width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</span>
<p class="testimonial__product-title text-pcard-title m-0">
<span class="reversed-link">menstrual disc starter bundle</span>
</p>
</a>
</div>
</div>
</div>
</div><div
class="f-column swiper-slide"
data-index="4"
>
<div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
<div class="testimonial__inner flex-1 flex flex-col">
<div class="testimonial__header flex gap-x-2 flex-wrap">
<h4 class="testimonial__name h5">Ash A</h4>
<div class="testimonial__bio text-subtext text-sm">Halifax, Canada</div>
</div>
<div class="testimonial__icon">
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
</div>
<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>
<div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/my-mimi-menstrual-disc" target="_blank">
<span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
<img src="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&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&width=165 165w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</span>
<p class="testimonial__product-title text-pcard-title m-0">
<span class="reversed-link">menstrual disc - comfortable & leak-free protection</span>
</p>
</a>
</div>
</div>
</div>
</div><div
class="f-column swiper-slide"
data-index="5"
>
<div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
<div class="testimonial__inner flex-1 flex flex-col">
<div class="testimonial__header flex gap-x-2 flex-wrap">
<h4 class="testimonial__name h5">Nina</h4>
<div class="testimonial__bio text-subtext text-sm">Vancouver, Canada</div>
</div>
<div class="testimonial__icon">
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
</div>
<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>
<div class="testimonial__footer flex-1 flex flex-col justify-end"><a class="testimonial__product" href="/products/my-mimi-menstrual-disc" target="_blank">
<span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
<img src="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&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&width=165 165w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</span>
<p class="testimonial__product-title text-pcard-title m-0">
<span class="reversed-link">menstrual disc - comfortable & leak-free protection</span>
</p>
</a>
</div>
</div>
</div>
</div><div
class="f-column swiper-slide"
data-index="6"
>
<div class="testimonial testimonial--layout-1 testimonial--has-bg blocks-radius color-scheme-1 h-full flex flex-col">
<div class="testimonial__inner flex-1 flex flex-col">
<div class="testimonial__header flex gap-x-2 flex-wrap">
<h4 class="testimonial__name h5">Elle</h4>
<div class="testimonial__bio text-subtext text-sm">Surat Thani, Thailand</div>
</div>
<div class="testimonial__icon">
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<svg
class="icon icon-star icon--small"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
</div>
<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>
<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">
<span class="block blocks-radius-sm hover-wrapper" style="--aspect-ratio: 1;">
<img src="//mymimi.com.au/cdn/shop/files/menstrual-disc-care-bundle.webp?v=1739505839&width=360" alt="menstrual disc" srcset="//mymimi.com.au/cdn/shop/files/menstrual-disc-care-bundle.webp?v=1739505839&width=165 165w, //mymimi.com.au/cdn/shop/files/menstrual-disc-care-bundle.webp?v=1739505839&width=360 360w" width="360" height="360" loading="lazy" class="motion-reduce hover-scale-up" is="image-lazy">
</span>
<p class="testimonial__product-title text-pcard-title m-0">
<span class="reversed-link">menstrual disc care bundle</span>
</p>
</a>
</div>
</div>
</div>
</div></div>
</testimonials-component>
</motion-element>
</div>
</div>
</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" />
<script src="//mymimi.com.au/cdn/shop/t/11/assets/collapsible-tabs.js?v=64882150398653107041738695059" defer="defer"></script>
<div
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"
style="--section-padding-top: 60px;--section-padding-bottom: 100px;"
data-id="template--18997227126996__collapsible_tabs_KNKLiF"
>
<div class="section__wrapper">
<div class="section__header section__header--vertical spacing--normal">
<div class="section__header--text text-left md:text-left"><h2 class="section__heading h2">
<motion-element class="block" data-motion="fade-up" data-motion-delay="50">
<a href="https://mymimi.com.au/pages/what-is-a-menstrual-disc" title="what is a menstrual disc?">what is a menstrual disc?</a>
</motion-element>
</h2><motion-element
class="section__description block rte text-base"
data-motion="fade-up"
data-motion-delay="100"
><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
class="section__header--button block text-left md:text-left"
data-motion="fade-up"
data-motion-delay="150"
>
<a
class="btn btn--secondary"
href="/pages/frequently-asked-questions"
>
learn more</a>
</motion-element></div>
<motion-element class="section__content block" data-motion="fade-up">
<div class="collapsible-tabs__wrapper f-flex f-grid--gap-large f-grid--row-gap-large"><div
class="collapsible-tabs__content-col f-column w-full flex flex-col items-center "
style="--col-width: 100%;"
>
<collapsible-tabs
class="block w-full accordion-parent"
data-color-scheme="color-scheme-1"
><div
class="accordion-item accordion-card blocks-radius"
>
<details
class="accordion-details"
is="accordion-group"
aria-expanded="false"
>
<summary class="accordion-details__summary flex items-center justify-between focus-inset">
<div class="flex items-center gap-2">
<h2 class=" font-heading h5 inline-richtext">how do i insert & remove a menstrual disc?</h2>
</div><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-plus-toggle icon--medium"
viewBox="0 0 20 20"
fill="none"
>
<path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</summary>
<div class="accordion-details__content rte">
<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>
</div>
</details>
</div><div
class="accordion-item accordion-card blocks-radius"
>
<details
class="accordion-details"
is="accordion-group"
aria-expanded="false"
>
<summary class="accordion-details__summary flex items-center justify-between focus-inset">
<div class="flex items-center gap-2">
<h2 class=" font-heading h5 inline-richtext">what's the difference between a menstrual disc & a cup?</h2>
</div><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-plus-toggle icon--medium"
viewBox="0 0 20 20"
fill="none"
>
<path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</summary>
<div class="accordion-details__content rte">
<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>
</div>
</details>
</div><div
class="accordion-item accordion-card blocks-radius"
>
<details
class="accordion-details"
is="accordion-group"
aria-expanded="false"
>
<summary class="accordion-details__summary flex items-center justify-between focus-inset">
<div class="flex items-center gap-2">
<h2 class=" font-heading h5 inline-richtext">can you sleep with a menstrual disc?</h2>
</div><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-plus-toggle icon--medium"
viewBox="0 0 20 20"
fill="none"
>
<path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</summary>
<div class="accordion-details__content rte">
<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>
</div>
</details>
</div><div
class="accordion-item accordion-card blocks-radius"
>
<details
class="accordion-details"
is="accordion-group"
aria-expanded="false"
>
<summary class="accordion-details__summary flex items-center justify-between focus-inset">
<div class="flex items-center gap-2">
<h2 class=" font-heading h5 inline-richtext">can I use a menstrual disc if I have an IUD?</h2>
</div><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-plus-toggle icon--medium"
viewBox="0 0 20 20"
fill="none"
>
<path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</summary>
<div class="accordion-details__content rte">
<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>
</div>
</details>
</div><div
class="accordion-item accordion-card blocks-radius"
>
<details
class="accordion-details"
is="accordion-group"
aria-expanded="false"
>
<summary class="accordion-details__summary flex items-center justify-between focus-inset">
<div class="flex items-center gap-2">
<h2 class=" font-heading h5 inline-richtext">are menstrual discs reusable and how do you clean them?</h2>
</div><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-plus-toggle icon--medium"
viewBox="0 0 20 20"
fill="none"
>
<path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</summary>
<div class="accordion-details__content rte">
<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>
</div>
</details>
</div><div
class="accordion-item accordion-card blocks-radius"
>
<details
class="accordion-details"
is="accordion-group"
aria-expanded="false"
>
<summary class="accordion-details__summary flex items-center justify-between focus-inset">
<div class="flex items-center gap-2">
<h2 class=" font-heading h5 inline-richtext">where can i buy the my mimi menstrual disc?</h2>
</div><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-plus-toggle icon--medium"
viewBox="0 0 20 20"
fill="none"
>
<path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</summary>
<div class="accordion-details__content rte">
<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>
</div>
</details>
</div></collapsible-tabs>
</div>
</div>
</motion-element>
</div>
</div>
</div><section id="shopify-section-template--18997227126996__rich_text_gNchn7" class="shopify-section section">
<div
class="section section--padding rich-text-section color-scheme-1"
style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
>
<div class="page-width">
<div class="rich-text text-center">
<h2
class="rich-text__heading h2"
>
<motion-element class="block" data-motion="fade-up" data-motion-delay="50">
recent articles
</motion-element>
</h2>
</div>
</div>
</div>
</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" />
<div
class="section section--padding image-with-text image-with-text--image-first color-scheme-1 color-inherit"
style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
>
<div class="page-width">
<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">
<parallax-element
class="block overflow-hidden blocks-radius"
>
<motion-element data-motion="zoom-out" class="block w-full h-full">
<div
class="image-with-text__media hero__media media-wrapper hover-wrapper"
style="--aspect-ratio: 1.0;"
>
<img src="//mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&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&width=300 300w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&width=400 400w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&width=500 500w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&width=600 600w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&width=700 700w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&width=800 800w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&width=900 900w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&width=1000 1000w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&width=1200 1200w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&width=1400 1400w, //mymimi.com.au/cdn/shop/files/How-the-my-mimi-Menstrual-Disc-Is-Changing-the-Game.webp?v=1743197811&width=1600 1600w" width="1600" height="1600" loading="lazy" fetchpriority="low" sizes="min(1410, 100vw)" class="hover-scale-up">
</div>
</motion-element>
</parallax-element>
<div class="image-with-text__inner md:flex items-center text-left md:text-left color-scheme-1">
<div class="image-with-text__content rich-text">
<h2
class="rich-text__heading overflow-hidden h2"
>
<motion-element data-motion="fade-up" data-motion-delay="50" class="block">
Revolutionising Period Care: How the my mimi Menstrual Disc Is Changing the Game
</motion-element>
</h2>
<motion-element
class="block rich-text__text rte text-base"
data-motion="fade-up"
data-motion-delay="100"
>
<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>
</motion-element>
<motion-element class="block" data-motion="fade-up" data-motion-delay="150">
<a
href="https://womensinsider.com/revolutionising-period-care-how-the-my-mimi-menstrual-disc-is-changing-the-game/"
class="btn btn--primary"
>read here</a>
</motion-element>
</div>
</div>
</div>
</div>
</div>
</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" />
<div
class="section section--padding image-with-text image-with-text--image-first color-scheme-1 color-inherit"
style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
>
<div class="page-width">
<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">
<parallax-element
class="block overflow-hidden blocks-radius"
>
<motion-element data-motion="zoom-out" class="block w-full h-full">
<div
class="image-with-text__media hero__media media-wrapper hover-wrapper"
style="--aspect-ratio: 1.0;"
>
<img src="//mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&width=1080" alt="best sustainable period care" srcset="//mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&width=300 300w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&width=400 400w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&width=500 500w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&width=600 600w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&width=700 700w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&width=800 800w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&width=900 900w, //mymimi.com.au/cdn/shop/files/fashion-journal-menstrual-disc.jpg?v=1730242261&width=1000 1000w" width="1080" height="1080" loading="lazy" fetchpriority="low" sizes="min(1410, 100vw)" class="hover-scale-up">
</div>
</motion-element>
</parallax-element>
<div class="image-with-text__inner md:flex items-center text-left md:text-left color-scheme-1">
<div class="image-with-text__content rich-text">
<h2
class="rich-text__heading overflow-hidden h2"
>
<motion-element data-motion="fade-up" data-motion-delay="50" class="block">
<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>
</motion-element>
</h2>
<motion-element
class="block rich-text__text rte text-base"
data-motion="fade-up"
data-motion-delay="100"
>
<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>
</motion-element>
<motion-element class="block" data-motion="fade-up" data-motion-delay="150">
<a
href="https://fashionjournal.com.au/health/sustainable-period-care-australia-nz/"
class="btn btn--primary"
>read here</a>
</motion-element>
</div>
</div>
</div>
</div>
</div>
</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" />
<div
class="section section--padding image-with-text image-with-text--image-first color-scheme-1 color-inherit"
style="--section-padding-top: 50px;--section-padding-bottom: 50px;"
>
<div class="page-width">
<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">
<parallax-element
class="block overflow-hidden blocks-radius"
>
<motion-element data-motion="zoom-out" class="block w-full h-full">
<div
class="image-with-text__media hero__media media-wrapper hover-wrapper"
style="--aspect-ratio: 1.3333333333333333;"
>
<img src="//mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&width=800" alt="menstrual disc" srcset="//mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&width=300 300w, //mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&width=400 400w, //mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&width=500 500w, //mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&width=600 600w, //mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&width=700 700w, //mymimi.com.au/cdn/shop/files/emailcutting.png?v=1737328653&width=800 800w" width="800" height="600" loading="lazy" fetchpriority="low" sizes="min(1410, 100vw)" class="hover-scale-up">
</div>
</motion-element>
</parallax-element>
<div class="image-with-text__inner md:flex items-center text-left md:text-left color-scheme-1">
<div class="image-with-text__content rich-text">
<h2
class="rich-text__heading overflow-hidden h2"
>
<motion-element data-motion="fade-up" data-motion-delay="50" class="block">
<strong>are menstrual discs the period product we've been waiting for?</strong>
</motion-element>
</h2>
<motion-element
class="block rich-text__text rte text-base"
data-motion="fade-up"
data-motion-delay="100"
>
<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>
</motion-element>
<motion-element class="block" data-motion="fade-up" data-motion-delay="150">
<a
href="/pages/are-menstrual-discs-the-period-product-weve-been-waiting-for"
class="btn btn--primary"
>read here</a>
</motion-element>
</div>
</div>
</div>
</div>
</div>
</div><section id="shopify-section-template--18997227126996__173870501821608f19" class="shopify-section section"><style>
#shopify-section-template--18997227126996__173870501821608f19 {
--section-padding-top: 10px;
--section-padding-bottom: 0px;
}
</style>
<div class="section section-app section--padding">
<div class="page-width"><div id="shopify-block-ATG93WnhIVzJobEhGM__instafeed_app_block_XPUiTy" class="shopify-block shopify-app-block">
<style>
body #insta-feed {
color: #283885;
text-align: center;
}
#insta-feed h2 {
color: #283885;
}
</style>
<div id="insta-feed"></div>
<script>
if (typeof instafeedLocalTitle === 'undefined') var instafeedLocalTitle = "";
</script>
</div>
</div>
</div>
</section>
</main>
<!-- BEGIN sections: footer-group -->
<div id="shopify-section-sections--18997227847892__footer" class="shopify-section shopify-section-group-footer-group">
<script src="//mymimi.com.au/cdn/shop/t/11/assets/footer.js?v=56475581656799193111738695060" defer="defer"></script><footer class="footer color-scheme-1">
<div class="section-divider">
<div class="border-top no-empty"></div>
</div>
<div class="footer__wrapper"><div class="footer__top page-width">
<div class="footer__top-wrapper f-flex"><div
class="footer-block footer-block--newsletter f-column w-full lg:order-none order-first"
style="--col-width:41%;--form-width: 550px;"
>
<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">
<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>
</div><div class="footer-newsletter__form">
<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">
<div class="newsletter-form__field-wrapper">
<div class="form-field relative">
<label class="form-label visually-hidden" for="NewsletterForm-newsletter_3qCrWc">
Email
</label>
<input
id="NewsletterForm-newsletter_3qCrWc"
type="email"
name="contact[email]"
class="form-control"
value=""
aria-required="true"
autocorrect="off"
autocapitalize="off"
autocomplete="email"
placeholder="Email"
required
><button
type="submit"
class="newsletter-form__button btn btn--icon btn--blank"
name="commit"
id="Newsletter-submit--newsletter_3qCrWc"
aria-label="Subscribe"
>
<svg
class="icon icon-arrow icon--medium"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button><p
class="form-message alert alert--error blocks-radius hidden"
id="Newsletter-error-subscribed--newsletter_3qCrWc"
>
<svg
class="icon icon-error icon--medium"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
<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"/>
<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"/>
</svg>
You have already subscribed!</p></div>
</div></form></div>
</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>
</div><div
class="footer-block footer-block--image_text f-column w-full has-border relative"
style="--col-width:25%;"
>
<motion-element class="block" data-motion="fade-up" data-motion-delay="100"><details
id="Details-image_text_F3FNhx-sections--18997227847892__footer"
is="footer-details"
open
data-open-default="true"
class="accordion-details footer-accordion-details"
><summary class="accordion-details__summary flex items-center justify-between gap-2">
<h3 class="footer-block__heading inline-richtext h4">About</h3>
<span class="flex items-center lg:hidden"><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-plus-toggle icon--medium"
viewBox="0 0 20 20"
fill="none"
>
<path class="horizontal" d="M3.125 10H16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path class="vertical" d="M10 3.125L10 16.875" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</summary><div class="accordion-details__content footer-image-box">
<div class="footer-image-box__text rte">
<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>
</div><div class="footer-image-box__btn">
<a
href="/pages/about"
class="btn btn--underline"
>read more</a>
</div></div>
</details></motion-element>
</div><div
class="footer-block footer-block--image_text f-column w-full"
style="--col-width:20%;"
>
<motion-element class="block" data-motion="fade-up" data-motion-delay="150"><div
id="Details-image_text_JmYbxh-sections--18997227847892__footer"
class="accordion-details footer-accordion-details"
><div class="accordion-details__content footer-image-box">
<div class="footer-image-box__text rte">
<h2>Total Comfort. Mess Free.<br/>No Leaks. <strong>Period.</strong></h2>
</div></div>
</div></motion-element>
</div></div>
</div>
<div class="footer__bottom page-width">
<motion-element class="block" data-motion="fade-up" data-motion-delay="50">
<div class="footer__bottom-row flex justify-between">
<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'">
<div class="country-switcher " style="--f-max-width: 220px">
<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>
<div class="form-group">
<select
class="localization-selector form-control form-control--plain"
name="country_code"
aria-labelledby="CountryLabelNoScript-country-29"
><option
value="AF"
>
Afghanistan (AFN
؋)
</option><option
value="AX"
>
Åland Islands (EUR
€)
</option><option
value="AL"
>
Albania (ALL
L)
</option><option
value="DZ"
>
Algeria (DZD
د.ج)
</option><option
value="AD"
>
Andorra (EUR
€)
</option><option
value="AO"
>
Angola (AUD
$)
</option><option
value="AI"
>
Anguilla (XCD
$)
</option><option
value="AG"
>
Antigua & Barbuda (XCD
$)
</option><option
value="AR"
>
Argentina (AUD
$)
</option><option
value="AM"
>
Armenia (AMD
դր.)
</option><option
value="AW"
>
Aruba (AWG
ƒ)
</option><option
value="AC"
>
Ascension Island (SHP
£)
</option><option
value="AU"
selected
>
Australia (AUD
$)
</option><option
value="AT"
>
Austria (EUR
€)
</option><option
value="AZ"
>
Azerbaijan (AZN
₼)
</option><option
value="BS"
>
Bahamas (BSD
$)
</option><option
value="BH"
>
Bahrain (AUD
$)
</option><option
value="BD"
>
Bangladesh (BDT
৳)
</option><option
value="BB"
>
Barbados (BBD
$)
</option><option
value="BY"
>
Belarus (AUD
$)
</option><option
value="BE"
>
Belgium (EUR
€)
</option><option
value="BZ"
>
Belize (BZD
$)
</option><option
value="BJ"
>
Benin (XOF
Fr)
</option><option
value="BM"
>
Bermuda (USD
$)
</option><option
value="BT"
>
Bhutan (AUD
$)
</option><option
value="BO"
>
Bolivia (BOB
Bs.)
</option><option
value="BA"
>
Bosnia & Herzegovina (BAM
КМ)
</option><option
value="BW"
>
Botswana (BWP
P)
</option><option
value="BR"
>
Brazil (AUD
$)
</option><option
value="IO"
>
British Indian Ocean Territory (USD
$)
</option><option
value="VG"
>
British Virgin Islands (USD
$)
</option><option
value="BN"
>
Brunei (BND
$)
</option><option
value="BG"
>
Bulgaria (BGN
лв.)
</option><option
value="BF"
>
Burkina Faso (XOF
Fr)
</option><option
value="BI"
>
Burundi (BIF
Fr)
</option><option
value="KH"
>
Cambodia (KHR
៛)
</option><option
value="CM"
>
Cameroon (XAF
CFA)
</option><option
value="CA"
>
Canada (CAD
$)
</option><option
value="CV"
>
Cape Verde (CVE
$)
</option><option
value="BQ"
>
Caribbean Netherlands (USD
$)
</option><option
value="KY"
>
Cayman Islands (KYD
$)
</option><option
value="CF"
>
Central African Republic (XAF
CFA)
</option><option
value="TD"
>
Chad (XAF
CFA)
</option><option
value="CL"
>
Chile (AUD
$)
</option><option
value="CN"
>
China (CNY
¥)
</option><option
value="CX"
>
Christmas Island (AUD
$)
</option><option
value="CC"
>
Cocos (Keeling) Islands (AUD
$)
</option><option
value="CO"
>
Colombia (AUD
$)
</option><option
value="KM"
>
Comoros (KMF
Fr)
</option><option
value="CG"
>
Congo - Brazzaville (XAF
CFA)
</option><option
value="CD"
>
Congo - Kinshasa (CDF
Fr)
</option><option
value="CK"
>
Cook Islands (NZD
$)
</option><option
value="CR"
>
Costa Rica (CRC
₡)
</option><option
value="CI"
>
Côte d’Ivoire (XOF
Fr)
</option><option
value="HR"
>
Croatia (EUR
€)
</option><option
value="CW"
>
Curaçao (ANG
ƒ)
</option><option
value="CY"
>
Cyprus (EUR
€)
</option><option
value="CZ"
>
Czechia (CZK
Kč)
</option><option
value="DK"
>
Denmark (DKK
kr.)
</option><option
value="DJ"
>
Djibouti (DJF
Fdj)
</option><option
value="DM"
>
Dominica (XCD
$)
</option><option
value="DO"
>
Dominican Republic (DOP
$)
</option><option
value="EC"
>
Ecuador (USD
$)
</option><option
value="EG"
>
Egypt (EGP
ج.م)
</option><option
value="SV"
>
El Salvador (USD
$)
</option><option
value="GQ"
>
Equatorial Guinea (XAF
CFA)
</option><option
value="ER"
>
Eritrea (AUD
$)
</option><option
value="EE"
>
Estonia (EUR
€)
</option><option
value="SZ"
>
Eswatini (AUD
$)
</option><option
value="ET"
>
Ethiopia (ETB
Br)
</option><option
value="FK"
>
Falkland Islands (FKP
£)
</option><option
value="FO"
>
Faroe Islands (DKK
kr.)
</option><option
value="FJ"
>
Fiji (FJD
$)
</option><option
value="FI"
>
Finland (EUR
€)
</option><option
value="FR"
>
France (EUR
€)
</option><option
value="GF"
>
French Guiana (EUR
€)
</option><option
value="PF"
>
French Polynesia (XPF
Fr)
</option><option
value="TF"
>
French Southern Territories (EUR
€)
</option><option
value="GA"
>
Gabon (XOF
Fr)
</option><option
value="GM"
>
Gambia (GMD
D)
</option><option
value="GE"
>
Georgia (AUD
$)
</option><option
value="DE"
>
Germany (EUR
€)
</option><option
value="GH"
>
Ghana (AUD
$)
</option><option
value="GI"
>
Gibraltar (GBP
£)
</option><option
value="GR"
>
Greece (EUR
€)
</option><option
value="GL"
>
Greenland (DKK
kr.)
</option><option
value="GD"
>
Grenada (XCD
$)
</option><option
value="GP"
>
Guadeloupe (EUR
€)
</option><option
value="GT"
>
Guatemala (GTQ
Q)
</option><option
value="GG"
>
Guernsey (GBP
£)
</option><option
value="GN"
>
Guinea (GNF
Fr)
</option><option
value="GW"
>
Guinea-Bissau (XOF
Fr)
</option><option
value="GY"
>
Guyana (GYD
$)
</option><option
value="HT"
>
Haiti (AUD
$)
</option><option
value="HN"
>
Honduras (HNL
L)
</option><option
value="HK"
>
Hong Kong SAR (HKD
$)
</option><option
value="HU"
>
Hungary (HUF
Ft)
</option><option
value="IS"
>
Iceland (ISK
kr)
</option><option
value="IN"
>
India (INR
₹)
</option><option
value="ID"
>
Indonesia (IDR
Rp)
</option><option
value="IQ"
>
Iraq (AUD
$)
</option><option
value="IE"
>
Ireland (EUR
€)
</option><option
value="IM"
>
Isle of Man (GBP
£)
</option><option
value="IL"
>
Israel (ILS
₪)
</option><option
value="IT"
>
Italy (EUR
€)
</option><option
value="JM"
>
Jamaica (JMD
$)
</option><option
value="JP"
>
Japan (JPY
¥)
</option><option
value="JE"
>
Jersey (AUD
$)
</option><option
value="JO"
>
Jordan (AUD
$)
</option><option
value="KZ"
>
Kazakhstan (KZT
₸)
</option><option
value="KE"
>
Kenya (KES
KSh)
</option><option
value="KI"
>
Kiribati (AUD
$)
</option><option
value="XK"
>
Kosovo (EUR
€)
</option><option
value="KW"
>
Kuwait (AUD
$)
</option><option
value="KG"
>
Kyrgyzstan (KGS
som)
</option><option
value="LA"
>
Laos (LAK
₭)
</option><option
value="LV"
>
Latvia (EUR
€)
</option><option
value="LB"
>
Lebanon (LBP
ل.ل)
</option><option
value="LS"
>
Lesotho (AUD
$)
</option><option
value="LR"
>
Liberia (AUD
$)
</option><option
value="LY"
>
Libya (AUD
$)
</option><option
value="LI"
>
Liechtenstein (CHF
CHF)
</option><option
value="LT"
>
Lithuania (EUR
€)
</option><option
value="LU"
>
Luxembourg (EUR
€)
</option><option
value="MO"
>
Macao SAR (MOP
P)
</option><option
value="MG"
>
Madagascar (AUD
$)
</option><option
value="MW"
>
Malawi (MWK
MK)
</option><option
value="MY"
>
Malaysia (MYR
RM)
</option><option
value="MV"
>
Maldives (MVR
MVR)
</option><option
value="ML"
>
Mali (XOF
Fr)
</option><option
value="MT"
>
Malta (EUR
€)
</option><option
value="MQ"
>
Martinique (EUR
€)
</option><option
value="MR"
>
Mauritania (AUD
$)
</option><option
value="MU"
>
Mauritius (MUR
₨)
</option><option
value="YT"
>
Mayotte (EUR
€)
</option><option
value="MX"
>
Mexico (AUD
$)
</option><option
value="MD"
>
Moldova (MDL
L)
</option><option
value="MC"
>
Monaco (EUR
€)
</option><option
value="MN"
>
Mongolia (MNT
₮)
</option><option
value="ME"
>
Montenegro (EUR
€)
</option><option
value="MS"
>
Montserrat (XCD
$)
</option><option
value="MA"
>
Morocco (MAD
د.م.)
</option><option
value="MZ"
>
Mozambique (AUD
$)
</option><option
value="MM"
>
Myanmar (Burma) (MMK
K)
</option><option
value="NA"
>
Namibia (AUD
$)
</option><option
value="NR"
>
Nauru (AUD
$)
</option><option
value="NP"
>
Nepal (NPR
Rs.)
</option><option
value="NL"
>
Netherlands (EUR
€)
</option><option
value="NC"
>
New Caledonia (XPF
Fr)
</option><option
value="NZ"
>
New Zealand (NZD
$)
</option><option
value="NI"
>
Nicaragua (NIO
C$)
</option><option
value="NE"
>
Niger (XOF
Fr)
</option><option
value="NG"
>
Nigeria (NGN
₦)
</option><option
value="NU"
>
Niue (NZD
$)
</option><option
value="NF"
>
Norfolk Island (AUD
$)
</option><option
value="MK"
>
North Macedonia (MKD
ден)
</option><option
value="NO"
>
Norway (AUD
$)
</option><option
value="OM"
>
Oman (AUD
$)
</option><option
value="PK"
>
Pakistan (PKR
₨)
</option><option
value="PS"
>
Palestinian Territories (ILS
₪)
</option><option
value="PA"
>
Panama (USD
$)
</option><option
value="PG"
>
Papua New Guinea (PGK
K)
</option><option
value="PY"
>
Paraguay (PYG
₲)
</option><option
value="PE"
>
Peru (PEN
S/)
</option><option
value="PH"
>
Philippines (PHP
₱)
</option><option
value="PN"
>
Pitcairn Islands (NZD
$)
</option><option
value="PL"
>
Poland (PLN
zł)
</option><option
value="PT"
>
Portugal (EUR
€)
</option><option
value="QA"
>
Qatar (QAR
ر.ق)
</option><option
value="RE"
>
Réunion (EUR
€)
</option><option
value="RO"
>
Romania (RON
Lei)
</option><option
value="RU"
>
Russia (AUD
$)
</option><option
value="RW"
>
Rwanda (RWF
FRw)
</option><option
value="WS"
>
Samoa (WST
T)
</option><option
value="SM"
>
San Marino (EUR
€)
</option><option
value="ST"
>
São Tomé & Príncipe (STD
Db)
</option><option
value="SA"
>
Saudi Arabia (SAR
ر.س)
</option><option
value="SN"
>
Senegal (XOF
Fr)
</option><option
value="RS"
>
Serbia (RSD
РСД)
</option><option
value="SC"
>
Seychelles (AUD
$)
</option><option
value="SL"
>
Sierra Leone (SLL
Le)
</option><option
value="SG"
>
Singapore (SGD
$)
</option><option
value="SX"
>
Sint Maarten (ANG
ƒ)
</option><option
value="SK"
>
Slovakia (EUR
€)
</option><option
value="SI"
>
Slovenia (EUR
€)
</option><option
value="SB"
>
Solomon Islands (SBD
$)
</option><option
value="SO"
>
Somalia (AUD
$)
</option><option
value="ZA"
>
South Africa (AUD
$)
</option><option
value="GS"
>
South Georgia & South Sandwich Islands (GBP
£)
</option><option
value="SS"
>
South Sudan (AUD
$)
</option><option
value="ES"
>
Spain (EUR
€)
</option><option
value="LK"
>
Sri Lanka (LKR
₨)
</option><option
value="BL"
>
St. Barthélemy (EUR
€)
</option><option
value="SH"
>
St. Helena (SHP
£)
</option><option
value="KN"
>
St. Kitts & Nevis (XCD
$)
</option><option
value="LC"
>
St. Lucia (XCD
$)
</option><option
value="MF"
>
St. Martin (EUR
€)
</option><option
value="PM"
>
St. Pierre & Miquelon (EUR
€)
</option><option
value="VC"
>
St. Vincent & Grenadines (XCD
$)
</option><option
value="SD"
>
Sudan (AUD
$)
</option><option
value="SR"
>
Suriname (AUD
$)
</option><option
value="SJ"
>
Svalbard & Jan Mayen (AUD
$)
</option><option
value="SE"
>
Sweden (SEK
kr)
</option><option
value="CH"
>
Switzerland (CHF
CHF)
</option><option
value="TW"
>
Taiwan (TWD
$)
</option><option
value="TJ"
>
Tajikistan (TJS
ЅМ)
</option><option
value="TZ"
>
Tanzania (TZS
Sh)
</option><option
value="TH"
>
Thailand (THB
฿)
</option><option
value="TL"
>
Timor-Leste (USD
$)
</option><option
value="TG"
>
Togo (XOF
Fr)
</option><option
value="TK"
>
Tokelau (NZD
$)
</option><option
value="TO"
>
Tonga (TOP
T$)
</option><option
value="TT"
>
Trinidad & Tobago (TTD
$)
</option><option
value="TA"
>
Tristan da Cunha (GBP
£)
</option><option
value="TN"
>
Tunisia (AUD
$)
</option><option
value="TR"
>
Türkiye (AUD
$)
</option><option
value="TM"
>
Turkmenistan (AUD
$)
</option><option
value="TC"
>
Turks & Caicos Islands (USD
$)
</option><option
value="TV"
>
Tuvalu (AUD
$)
</option><option
value="UM"
>
U.S. Outlying Islands (USD
$)
</option><option
value="UG"
>
Uganda (UGX
USh)
</option><option
value="UA"
>
Ukraine (UAH
₴)
</option><option
value="AE"
>
United Arab Emirates (AED
د.إ)
</option><option
value="GB"
>
United Kingdom (GBP
£)
</option><option
value="UY"
>
Uruguay (UYU
$U)
</option><option
value="UZ"
>
Uzbekistan (UZS
so'm)
</option><option
value="VU"
>
Vanuatu (VUV
Vt)
</option><option
value="VA"
>
Vatican City (EUR
€)
</option><option
value="VE"
>
Venezuela (USD
$)
</option><option
value="VN"
>
Vietnam (VND
₫)
</option><option
value="WF"
>
Wallis & Futuna (XPF
Fr)
</option><option
value="EH"
>
Western Sahara (MAD
د.م.)
</option><option
value="YE"
>
Yemen (YER
﷼)
</option><option
value="ZM"
>
Zambia (AUD
$)
</option><option
value="ZW"
>
Zimbabwe (USD
$)
</option></select>
<button class="btn btn--with-icon btn--square" aria-label="Update country/region">
<svg
class="icon icon-arrow icon--small"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span class="visually-hidden">Update country/region</span>
</button>
</div></form></noscript>
<localization-form
class="disclosure no-js-hidden disclosure--up disclosure--plain"
data-disclosure-country
><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>
<button
type="button"
class="disclosure__toggle btn--plain text-normal font-body"
aria-expanded="false"
aria-controls="country-list"
aria-describedby="CountryLabel-country-29"
data-disclosure-toggle
>
<span class="f-country-flags f-country-flags--AU"></span>
Australia (AUD
$)
<svg
class="icon icon-arrow icon--small"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M7.5 3.74121L13.75 9.99121L7.5 16.2412" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<ul class="disclosure-list v-scrollable text-left"><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AF"></span>Afghanistan<span class="localization-form__currency"
>(AFN
؋)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AX"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AX"></span>Åland Islands<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AL"></span>Albania<span class="localization-form__currency"
>(ALL
L)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DZ"></span>Algeria<span class="localization-form__currency"
>(DZD
د.ج)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AD"></span>Andorra<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AO"></span>Angola<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AI"></span>Anguilla<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AG"></span>Antigua & Barbuda<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AR"></span>Argentina<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AM"></span>Armenia<span class="localization-form__currency"
>(AMD
դր.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AW"></span>Aruba<span class="localization-form__currency"
>(AWG
ƒ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AC"></span>Ascension Island<span class="localization-form__currency"
>(SHP
£)</span
>
</a>
</li><li class="disclosure-list__item disclosure-list__item--current">
<a
class="disclosure-list__option"
href="#"
aria-current="true"
data-value="AU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AU"></span>Australia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AT"></span>Austria<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AZ"></span>Azerbaijan<span class="localization-form__currency"
>(AZN
₼)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BS"></span>Bahamas<span class="localization-form__currency"
>(BSD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BH"></span>Bahrain<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BD"></span>Bangladesh<span class="localization-form__currency"
>(BDT
৳)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BB"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BB"></span>Barbados<span class="localization-form__currency"
>(BBD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BY"></span>Belarus<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BE"></span>Belgium<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BZ"></span>Belize<span class="localization-form__currency"
>(BZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BJ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BJ"></span>Benin<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BM"></span>Bermuda<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BT"></span>Bhutan<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BO"></span>Bolivia<span class="localization-form__currency"
>(BOB
Bs.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BA"></span>Bosnia & Herzegovina<span class="localization-form__currency"
>(BAM
КМ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BW"></span>Botswana<span class="localization-form__currency"
>(BWP
P)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BR"></span>Brazil<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IO"></span>British Indian Ocean Territory<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VG"></span>British Virgin Islands<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BN"></span>Brunei<span class="localization-form__currency"
>(BND
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BG"></span>Bulgaria<span class="localization-form__currency"
>(BGN
лв.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BF"></span>Burkina Faso<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BI"></span>Burundi<span class="localization-form__currency"
>(BIF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KH"></span>Cambodia<span class="localization-form__currency"
>(KHR
៛)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CM"></span>Cameroon<span class="localization-form__currency"
>(XAF
CFA)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CA"></span>Canada<span class="localization-form__currency"
>(CAD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CV"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CV"></span>Cape Verde<span class="localization-form__currency"
>(CVE
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BQ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BQ"></span>Caribbean Netherlands<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KY"></span>Cayman Islands<span class="localization-form__currency"
>(KYD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CF"></span>Central African Republic<span class="localization-form__currency"
>(XAF
CFA)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TD"></span>Chad<span class="localization-form__currency"
>(XAF
CFA)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CL"></span>Chile<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CN"></span>China<span class="localization-form__currency"
>(CNY
¥)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CX"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CX"></span>Christmas Island<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CC"></span>Cocos (Keeling) Islands<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CO"></span>Colombia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KM"></span>Comoros<span class="localization-form__currency"
>(KMF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CG"></span>Congo - Brazzaville<span class="localization-form__currency"
>(XAF
CFA)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CD"></span>Congo - Kinshasa<span class="localization-form__currency"
>(CDF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CK"></span>Cook Islands<span class="localization-form__currency"
>(NZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CR"></span>Costa Rica<span class="localization-form__currency"
>(CRC
₡)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CI"></span>Côte d’Ivoire<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="HR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--HR"></span>Croatia<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CW"></span>Curaçao<span class="localization-form__currency"
>(ANG
ƒ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CY"></span>Cyprus<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CZ"></span>Czechia<span class="localization-form__currency"
>(CZK
Kč)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DK"></span>Denmark<span class="localization-form__currency"
>(DKK
kr.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DJ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DJ"></span>Djibouti<span class="localization-form__currency"
>(DJF
Fdj)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DM"></span>Dominica<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DO"></span>Dominican Republic<span class="localization-form__currency"
>(DOP
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="EC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--EC"></span>Ecuador<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="EG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--EG"></span>Egypt<span class="localization-form__currency"
>(EGP
ج.م)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SV"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SV"></span>El Salvador<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GQ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GQ"></span>Equatorial Guinea<span class="localization-form__currency"
>(XAF
CFA)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ER"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ER"></span>Eritrea<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="EE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--EE"></span>Estonia<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SZ"></span>Eswatini<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ET"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ET"></span>Ethiopia<span class="localization-form__currency"
>(ETB
Br)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="FK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--FK"></span>Falkland Islands<span class="localization-form__currency"
>(FKP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="FO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--FO"></span>Faroe Islands<span class="localization-form__currency"
>(DKK
kr.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="FJ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--FJ"></span>Fiji<span class="localization-form__currency"
>(FJD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="FI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--FI"></span>Finland<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="FR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--FR"></span>France<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GF"></span>French Guiana<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PF"></span>French Polynesia<span class="localization-form__currency"
>(XPF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TF"></span>French Southern Territories<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GA"></span>Gabon<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GM"></span>Gambia<span class="localization-form__currency"
>(GMD
D)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GE"></span>Georgia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="DE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--DE"></span>Germany<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GH"></span>Ghana<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GI"></span>Gibraltar<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GR"></span>Greece<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GL"></span>Greenland<span class="localization-form__currency"
>(DKK
kr.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GD"></span>Grenada<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GP"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GP"></span>Guadeloupe<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GT"></span>Guatemala<span class="localization-form__currency"
>(GTQ
Q)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GG"></span>Guernsey<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GN"></span>Guinea<span class="localization-form__currency"
>(GNF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GW"></span>Guinea-Bissau<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GY"></span>Guyana<span class="localization-form__currency"
>(GYD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="HT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--HT"></span>Haiti<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="HN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--HN"></span>Honduras<span class="localization-form__currency"
>(HNL
L)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="HK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--HK"></span>Hong Kong SAR<span class="localization-form__currency"
>(HKD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="HU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--HU"></span>Hungary<span class="localization-form__currency"
>(HUF
Ft)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IS"></span>Iceland<span class="localization-form__currency"
>(ISK
kr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IN"></span>India<span class="localization-form__currency"
>(INR
₹)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ID"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ID"></span>Indonesia<span class="localization-form__currency"
>(IDR
Rp)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IQ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IQ"></span>Iraq<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IE"></span>Ireland<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IM"></span>Isle of Man<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IL"></span>Israel<span class="localization-form__currency"
>(ILS
₪)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="IT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--IT"></span>Italy<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="JM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--JM"></span>Jamaica<span class="localization-form__currency"
>(JMD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="JP"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--JP"></span>Japan<span class="localization-form__currency"
>(JPY
¥)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="JE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--JE"></span>Jersey<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="JO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--JO"></span>Jordan<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KZ"></span>Kazakhstan<span class="localization-form__currency"
>(KZT
₸)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KE"></span>Kenya<span class="localization-form__currency"
>(KES
KSh)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KI"></span>Kiribati<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="XK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--XK"></span>Kosovo<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KW"></span>Kuwait<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KG"></span>Kyrgyzstan<span class="localization-form__currency"
>(KGS
som)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LA"></span>Laos<span class="localization-form__currency"
>(LAK
₭)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LV"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LV"></span>Latvia<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LB"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LB"></span>Lebanon<span class="localization-form__currency"
>(LBP
ل.ل)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LS"></span>Lesotho<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LR"></span>Liberia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LY"></span>Libya<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LI"></span>Liechtenstein<span class="localization-form__currency"
>(CHF
CHF)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LT"></span>Lithuania<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LU"></span>Luxembourg<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MO"></span>Macao SAR<span class="localization-form__currency"
>(MOP
P)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MG"></span>Madagascar<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MW"></span>Malawi<span class="localization-form__currency"
>(MWK
MK)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MY"></span>Malaysia<span class="localization-form__currency"
>(MYR
RM)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MV"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MV"></span>Maldives<span class="localization-form__currency"
>(MVR
MVR)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ML"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ML"></span>Mali<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MT"></span>Malta<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MQ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MQ"></span>Martinique<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MR"></span>Mauritania<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MU"></span>Mauritius<span class="localization-form__currency"
>(MUR
₨)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="YT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--YT"></span>Mayotte<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MX"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MX"></span>Mexico<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MD"></span>Moldova<span class="localization-form__currency"
>(MDL
L)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MC"></span>Monaco<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MN"></span>Mongolia<span class="localization-form__currency"
>(MNT
₮)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ME"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ME"></span>Montenegro<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MS"></span>Montserrat<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MA"></span>Morocco<span class="localization-form__currency"
>(MAD
د.م.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MZ"></span>Mozambique<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MM"></span>Myanmar (Burma)<span class="localization-form__currency"
>(MMK
K)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NA"></span>Namibia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NR"></span>Nauru<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NP"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NP"></span>Nepal<span class="localization-form__currency"
>(NPR
Rs.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NL"></span>Netherlands<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NC"></span>New Caledonia<span class="localization-form__currency"
>(XPF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NZ"></span>New Zealand<span class="localization-form__currency"
>(NZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NI"></span>Nicaragua<span class="localization-form__currency"
>(NIO
C$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NE"></span>Niger<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NG"></span>Nigeria<span class="localization-form__currency"
>(NGN
₦)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NU"></span>Niue<span class="localization-form__currency"
>(NZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NF"></span>Norfolk Island<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MK"></span>North Macedonia<span class="localization-form__currency"
>(MKD
ден)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="NO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--NO"></span>Norway<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="OM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--OM"></span>Oman<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PK"></span>Pakistan<span class="localization-form__currency"
>(PKR
₨)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PS"></span>Palestinian Territories<span class="localization-form__currency"
>(ILS
₪)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PA"></span>Panama<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PG"></span>Papua New Guinea<span class="localization-form__currency"
>(PGK
K)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PY"></span>Paraguay<span class="localization-form__currency"
>(PYG
₲)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PE"></span>Peru<span class="localization-form__currency"
>(PEN
S/)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PH"></span>Philippines<span class="localization-form__currency"
>(PHP
₱)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PN"></span>Pitcairn Islands<span class="localization-form__currency"
>(NZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PL"></span>Poland<span class="localization-form__currency"
>(PLN
zł)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PT"></span>Portugal<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="QA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--QA"></span>Qatar<span class="localization-form__currency"
>(QAR
ر.ق)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="RE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--RE"></span>Réunion<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="RO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--RO"></span>Romania<span class="localization-form__currency"
>(RON
Lei)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="RU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--RU"></span>Russia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="RW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--RW"></span>Rwanda<span class="localization-form__currency"
>(RWF
FRw)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="WS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--WS"></span>Samoa<span class="localization-form__currency"
>(WST
T)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SM"></span>San Marino<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ST"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ST"></span>São Tomé & Príncipe<span class="localization-form__currency"
>(STD
Db)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SA"></span>Saudi Arabia<span class="localization-form__currency"
>(SAR
ر.س)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SN"></span>Senegal<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="RS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--RS"></span>Serbia<span class="localization-form__currency"
>(RSD
РСД)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SC"></span>Seychelles<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SL"></span>Sierra Leone<span class="localization-form__currency"
>(SLL
Le)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SG"></span>Singapore<span class="localization-form__currency"
>(SGD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SX"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SX"></span>Sint Maarten<span class="localization-form__currency"
>(ANG
ƒ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SK"></span>Slovakia<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SI"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SI"></span>Slovenia<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SB"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SB"></span>Solomon Islands<span class="localization-form__currency"
>(SBD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SO"></span>Somalia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ZA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ZA"></span>South Africa<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GS"></span>South Georgia & South Sandwich Islands<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SS"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SS"></span>South Sudan<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ES"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ES"></span>Spain<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LK"></span>Sri Lanka<span class="localization-form__currency"
>(LKR
₨)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="BL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--BL"></span>St. Barthélemy<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SH"></span>St. Helena<span class="localization-form__currency"
>(SHP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="KN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--KN"></span>St. Kitts & Nevis<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="LC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--LC"></span>St. Lucia<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="MF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--MF"></span>St. Martin<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="PM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--PM"></span>St. Pierre & Miquelon<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VC"></span>St. Vincent & Grenadines<span class="localization-form__currency"
>(XCD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SD"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SD"></span>Sudan<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SR"></span>Suriname<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SJ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SJ"></span>Svalbard & Jan Mayen<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="SE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--SE"></span>Sweden<span class="localization-form__currency"
>(SEK
kr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="CH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--CH"></span>Switzerland<span class="localization-form__currency"
>(CHF
CHF)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TW"></span>Taiwan<span class="localization-form__currency"
>(TWD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TJ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TJ"></span>Tajikistan<span class="localization-form__currency"
>(TJS
ЅМ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TZ"></span>Tanzania<span class="localization-form__currency"
>(TZS
Sh)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TH"></span>Thailand<span class="localization-form__currency"
>(THB
฿)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TL"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TL"></span>Timor-Leste<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TG"></span>Togo<span class="localization-form__currency"
>(XOF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TK"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TK"></span>Tokelau<span class="localization-form__currency"
>(NZD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TO"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TO"></span>Tonga<span class="localization-form__currency"
>(TOP
T$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TT"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TT"></span>Trinidad & Tobago<span class="localization-form__currency"
>(TTD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TA"></span>Tristan da Cunha<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TN"></span>Tunisia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TR"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TR"></span>Türkiye<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TM"></span>Turkmenistan<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TC"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TC"></span>Turks & Caicos Islands<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="TV"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--TV"></span>Tuvalu<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="UM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--UM"></span>U.S. Outlying Islands<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="UG"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--UG"></span>Uganda<span class="localization-form__currency"
>(UGX
USh)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="UA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--UA"></span>Ukraine<span class="localization-form__currency"
>(UAH
₴)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="AE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--AE"></span>United Arab Emirates<span class="localization-form__currency"
>(AED
د.إ)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="GB"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--GB"></span>United Kingdom<span class="localization-form__currency"
>(GBP
£)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="UY"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--UY"></span>Uruguay<span class="localization-form__currency"
>(UYU
$U)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="UZ"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--UZ"></span>Uzbekistan<span class="localization-form__currency"
>(UZS
so'm)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VU"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VU"></span>Vanuatu<span class="localization-form__currency"
>(VUV
Vt)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VA"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VA"></span>Vatican City<span class="localization-form__currency"
>(EUR
€)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VE"></span>Venezuela<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="VN"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--VN"></span>Vietnam<span class="localization-form__currency"
>(VND
₫)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="WF"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--WF"></span>Wallis & Futuna<span class="localization-form__currency"
>(XPF
Fr)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="EH"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--EH"></span>Western Sahara<span class="localization-form__currency"
>(MAD
د.م.)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="YE"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--YE"></span>Yemen<span class="localization-form__currency"
>(YER
﷼)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ZM"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ZM"></span>Zambia<span class="localization-form__currency"
>(AUD
$)</span
>
</a>
</li><li class="disclosure-list__item">
<a
class="disclosure-list__option"
href="#"
data-value="ZW"
data-disclosure-option
>
<span class="f-country-flags f-country-flags--ZW"></span>Zimbabwe<span class="localization-form__currency"
>(USD
$)</span
>
</a>
</li></ul>
<input type="hidden" name="country_code" value="AU" data-disclosure-input></form></localization-form>
</div>
</div>
<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">
<a href="https://www.facebook.com/profile.php?id=61559873790442" class="social__link inline-flex"><svg
aria-hidden="true"
focusable="false"
role="presentation"
class="icon icon-facebook icon--large"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<span class="visually-hidden">Facebook</span>
</a>
</li><li class="social__item inline-flex">
<a href="http://www.instagram.com/mymimi.com.au" class="social__link inline-flex"><svg
aria-hidden="true"
focusable="false"
role="presentation"
class="icon icon-instagram icon--large"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<span class="visually-hidden">Instagram</span>
</a>
</li><li class="social__item inline-flex">
<a href="https://www.tiktok.com/@mymimi.com.au" class="social__link inline-flex"><svg
aria-hidden="true"
focusable="false"
role="presentation"
class="icon icon-tiktok icon--large"
fill="none"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<span class="visually-hidden">TikTok</span>
</a>
</li><li class="social__item inline-flex">
<a href="https://www.youtube.com/@mymimiau" class="social__link inline-flex"><svg
aria-hidden="true"
focusable="false"
role="presentation"
class="icon icon-youtube icon--large"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<span class="visually-hidden">YouTube</span>
</a>
</li></ul>
</div>
<div class="footer__bottom-row flex justify-between items-center">
<div class="footer__copyright">
<p class="footer__copyright-content">
© 2025
<a class="link-underline" href="/">my mimi</a>.
<span><a target="_blank" rel="nofollow" href="https://www.shopify.com?utm_campaign=poweredby&utm_medium=shopify&utm_source=onlinestore">Powered by Shopify</a></span>
</p></div>
<div class="footer__info flex items-center">
<ul class="linklist linklist--horizontal list-unstyled">
<li>
<a href="/policies/terms-of-service" class="reversed-link">Terms of Service</a>
</li>
<li>
<a href="/policies/shipping-policy" class="reversed-link">Shipping Policy</a>
</li>
<li>
<a href="/policies/refund-policy" class="reversed-link">Refund Policy</a>
</li>
<li>
<a href="/policies/privacy-policy" class="reversed-link">Privacy Policy</a>
</li>
<li>
<a href="/pages/articles" class="reversed-link">Articles</a>
</li>
<li>
<a href="/pages/my-mimi-menstrual-disc-reviews" class="reversed-link">Reviews</a>
</li>
<li>
<a href="/pages/about" class="reversed-link">About</a>
</li>
<li>
<a href="/pages/contact" class="reversed-link">Contact</a>
</li>
</ul>
<div class="footer__payment">
<span class="visually-hidden">Payment methods</span>
<ul class="list list-payment" role="list"><li class="list-payment__item">
<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>
</li><li class="list-payment__item">
<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>
</li><li class="list-payment__item">
<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>
</li><li class="list-payment__item">
<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>
</li><li class="list-payment__item">
<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>
</li><li class="list-payment__item">
<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>
</li><li class="list-payment__item">
<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>
</li><li class="list-payment__item">
<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>
</li></ul>
</div></div>
</div>
</motion-element>
</div>
</div>
</footer>
</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>
<style data-shopify>
.cart-icon-wrap {
width: 4rem;
}
.mobile-sticky-bar {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 11;
background: rgba(var(--color-background));
box-shadow: -1px -2px 10px rgb(0 0 0 / 8%);
max-width: 100vw;
will-change: transform;
transition: transform 0.3s;
}
.mobile-sticky-bar.up {
transform: translateY(0);
}
.mobile-sticky-bar.down {
transform: translateY(100%);
}
.mobile-sticky-bar__link {
padding: 1rem 0.5rem;
min-height: 5rem !important;
overflow: hidden;
gap: 0.5rem;
}
.mobile-sticky-bar__link + .mobile-sticky-bar__link {
border-left: 0.1rem solid rgb(var(--color-border));
}
.mobile-sticky-bar__text {
line-height: 1;
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
white-space: nowrap;
flex: 0 0 auto;
}
@media (max-width: 767px) {
body.mobile-sticky-bar-enabled {
padding-bottom: calc(var(--mobile-sticky-bar-height, 6.5rem) + 1rem);
}
}
</style>
<mobile-sticky-bar class="mobile-sticky-bar md:hidden up" data-section-type="mobile-sticky-bar">
<div class="mobile-sticky-bar__wrapper f-grid f-grid-5-cols">
<a
class="f-column mobile-sticky-bar__link mobile-sticky-bar__link flex flex-col items-center justify-center"
href="/collections/all"
>
<svg
class="icon icon-tag non-scaling-stroke icon--large"
aria-hidden="true"
focusable="false"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
><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"/>
<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>
<span class="mobile-sticky-bar__text text-center text-sm">products</span>
</a><a
href="/cart"
class="f-column cart-drawer-button mobile-sticky-bar__link mobile-sticky-bar__cart flex flex-col items-center justify-center"
aria-controls="CartDrawer"
>
<span class="cart-icon-wrap relative flex justify-center"><svg
viewBox="0 0 24 24"
fill="none"
class="icon icon-shopping-cart icon--large"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
<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"/>
<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"/>
</svg><cart-count
class="cart-count cart-count--absolute font-body-bolder"
aria-label="0 items"
hidden
>0</cart-count>
</span>
<span class="mobile-sticky-bar__text text-center text-sm">cart</span>
</a><a
class="f-column mobile-sticky-bar__link mobile-sticky-bar__home flex flex-col items-center justify-center"
href="https://mymimi.com.au"
><svg
class="icon icon-home icon--large"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<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"/>
</svg>
<span class="mobile-sticky-bar__text text-center text-sm">home</span>
</a>
<a
class="f-column mobile-sticky-bar__link mobile-sticky-bar__link flex flex-col items-center justify-center"
href="https://mymimi.com.au/pages/frequently-asked-questions"
>
<svg
class="icon icon-check-circle non-scaling-stroke icon--large"
aria-hidden="true"
focusable="false"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
><path d="M6.875 10.625L8.75 12.5L13.125 8.125" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<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>
<span class="mobile-sticky-bar__text text-center text-sm">faq</span>
</a><a
href="/search"
class="f-column search-drawer-button mobile-sticky-bar__link mobile-sticky-bar__search flex flex-col items-center justify-center"
aria-controls="SearchDrawer"
><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-search icon--large"
viewBox="0 0 24 24"
fill="none"
>
<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"/>
<path d="M16.4434 16.4453L20.9997 21.0016" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span class="mobile-sticky-bar__text text-center text-sm">search</span>
</a></div>
</mobile-sticky-bar>
<div id="mobileNavStatic" class="no-empty"></div>
</div>
<!-- END sections: footer-group -->
</div>
<!-- BEGIN sections: overlay-group -->
<div id="shopify-section-sections--18997227913428__cart-drawer" class="shopify-section shopify-section-group-overlay-group"><link
rel="stylesheet"
href="//mymimi.com.au/cdn/shop/t/11/assets/cart.css?v=69615393273473763031738695059"
media="print"
fetchpriority="low"
onload="this.media='all'"
><script src="//mymimi.com.au/cdn/shop/t/11/assets/cart.js?v=43136902408170861241738695059" defer="defer"></script><cart-drawer
id="CartDrawer"
class="drawer cart-drawer drawer--right"
data-section-id="sections--18997227913428__cart-drawer"
shopify-design-mode
hidden
>
<div class="fixed-overlay" aria-controls="CartDrawer"></div>
<div class="drawer__inner">
<button
class="drawer__close-btn z-1"
aria-controls="CartDrawer"
type="button"
aria-label="Cart"
>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close icon--large"
fill="none"
viewBox="0 0 24 24"
>
<path d="M18.75 5.13496L5.25 18.8544" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.75 18.8544L5.25 5.13496" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<div id="CartDrawer-sections--18997227913428__cart-drawer" class="drawer__content flex flex-col h-full w-full">
<div class="drawer__header cart-drawer__header flex flex-col gap-5 items-start">
<h2 class="drawer__heading h3 flex items-center gap-3">
<span>Your cart</span>
<cart-count
class="cart-count cart-count--medium font-body-bolder"
aria-label="0 items"
hidden
>0</cart-count>
</h2><free-shipping-goal
data-cart-total="0"
data-minimum-amount="85"
class="free-shipping-goal grid gap-3 w-full"
>
<span class="free-shipping-goal__label free-shipping-goal__label--success">You are eligible for free shipping.</span>
<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>
<progress-bar
class="progress-bar"
></progress-bar>
</free-shipping-goal>
</div>
<div
id="CartDrawerEmpty-sections--18997227913428__cart-drawer"
class="drawer__body flex-grow v-scrollable"
>
<div class="cart-drawer__empty text-center grid gap-10">
<div class="grid gap-3">
<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">
<a href="/collections/featured-collection" class="w-full flex items-center gap-3">
<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&width=2000" alt="" srcset="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=180 180w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=360 360w, //mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=540 540w" width="2000" height="2000" loading="lazy" is="image-lazy"></div>
<div class="recommendation-collection-item__content flex items-center justify-between flex-grow">
<h3 class="recommendation-collection-item__title h5 font-body-bolder">
featured collection
</h3>
<button
class="btn btn--icon-circle btn--secondary shrink-0"
aria-label="featured collection"
>
<svg
class="icon icon--medium rtl-flip-x"
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M5 15L15 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.875 5H15V13.125" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</div>
</a>
</li></ul></div>
</div>
<div
id="CartDrawerBody-sections--18997227913428__cart-drawer"
class="drawer__body cart-drawer__body flex-grow v-scrollable hidden"
>
<div class="flex flex-col gap-8"><cart-items>
<ul role="list" class="flex flex-col gap-8"></ul>
</cart-items>
</div>
</div>
<div
id="CartDrawerFooter-sections--18997227913428__cart-drawer"
class="drawer__footer cart-drawer__footer grid gap-4 hidden"
>
<div class="drawer__footer-head"><div class="flex gap-6 cart-drawer__addons"><button
type="button"
class="btn--inherit flex gap-2 items-center justify-center"
aria-controls="CartNote-sections--18997227913428__cart-drawer"
aria-expanded="false"
><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-pencil icon--medium"
viewBox="0 0 20 20"
fill="none"
>
<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"/>
<path d="M10.625 5L15 9.375" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span class="reversed-link">Order note</span>
</button><button
type="button"
class="btn--inherit flex gap-2 items-center justify-center"
aria-controls="ShippingCalculator-sections--18997227913428__cart-drawer"
aria-expanded="false"
><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-clock icon--medium"
viewBox="0 0 20 20"
fill="none"
>
<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"/>
<path d="M10 5.625V10H14.375" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span class="reversed-link">Estimate Shipping</span>
</button><modal-component
id="CartNote-sections--18997227913428__cart-drawer"
class="drawer cart-addons-drawer drawer--bottom"
hidden
>
<div class="fixed-overlay absolute" aria-controls="CartNote-sections--18997227913428__cart-drawer"></div>
<div class="drawer__inner">
<button aria-controls="CartNote-sections--18997227913428__cart-drawer" class="drawer__close-btn z-1"><svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close icon--medium"
fill="none"
viewBox="0 0 24 24"
>
<path d="M18.75 5.13496L5.25 18.8544" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.75 18.8544L5.25 5.13496" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<div class="drawer__content cart-addons-drawer__content grid gap-5">
<h4>Order note</h4>
<cart-note class="flex flex-col items-start gap-5">
<div class="form-field w-full">
<textarea
name="note"
class="form-control form-control--textarea"
rows="5"
placeholder="Order special instructions"
id="CartNoteForm-sections--18997227913428__cart-drawer"
></textarea>
<label class="visually-hidden" for="CartNoteForm-sections--18997227913428__cart-drawer">Order note</label>
</div>
<button
class="btn btn--primary"
type="button"
aria-controls="CartNote-sections--18997227913428__cart-drawer"
aria-expanded="false"
>
<span>Apply</span>
</button>
</cart-note>
</div>
</div>
</modal-component><calculate-shipping
id="ShippingCalculator-sections--18997227913428__cart-drawer"
class="drawer cart-addons-drawer drawer--bottom"
hidden
data-show="fasle"
>
<div class="fixed-overlay absolute" aria-controls="ShippingCalculator-sections--18997227913428__cart-drawer"></div>
<div class="drawer__inner cart-addons-drawer__inner flex flex-col w-full h-full">
<button aria-controls="ShippingCalculator-sections--18997227913428__cart-drawer" class="drawer__close-btn z-1"><svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close icon--medium"
fill="none"
viewBox="0 0 24 24"
>
<path d="M18.75 5.13496L5.25 18.8544" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.75 18.8544L5.25 5.13496" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<div class="drawer__content v-scrollable cart-addons-drawer__content flex flex-col gap-4">
<h4>Estimate Shipping</h4>
<form
class="grid gap-4"
action="/cart"
method="POST"
novalidate
is="shipping-calculator"
>
<country-province
class="grid gap-4"
>
<div class="form-field reset-spacing">
<label class="form-label" for="ShippingCalculatorCountry-sections--18997227913428__cart-drawer">Country/region</label>
<div class="select">
<select
name="address[country]"
class="form-control form-control--select"
autocomplete="country"
id="ShippingCalculatorCountry-sections--18997227913428__cart-drawer"
>
<template><option value="---" data-provinces="[]">---</option>
<option value="Afghanistan" data-provinces="[]">Afghanistan</option>
<option value="Aland Islands" data-provinces="[]">Åland Islands</option>
<option value="Albania" data-provinces="[]">Albania</option>
<option value="Algeria" data-provinces="[]">Algeria</option>
<option value="Andorra" data-provinces="[]">Andorra</option>
<option value="Angola" data-provinces="[]">Angola</option>
<option value="Anguilla" data-provinces="[]">Anguilla</option>
<option value="Antigua And Barbuda" data-provinces="[]">Antigua & Barbuda</option>
<option value="Argentina" data-provinces="[["Buenos Aires","Buenos Aires Province"],["Catamarca","Catamarca"],["Chaco","Chaco"],["Chubut","Chubut"],["Ciudad Autónoma de Buenos Aires","Buenos Aires (Autonomous City)"],["Corrientes","Corrientes"],["Córdoba","Córdoba"],["Entre Ríos","Entre Ríos"],["Formosa","Formosa"],["Jujuy","Jujuy"],["La Pampa","La Pampa"],["La Rioja","La Rioja"],["Mendoza","Mendoza"],["Misiones","Misiones"],["Neuquén","Neuquén"],["Río Negro","Río Negro"],["Salta","Salta"],["San Juan","San Juan"],["San Luis","San Luis"],["Santa Cruz","Santa Cruz"],["Santa Fe","Santa Fe"],["Santiago Del Estero","Santiago del Estero"],["Tierra Del Fuego","Tierra del Fuego"],["Tucumán","Tucumán"]]">Argentina</option>
<option value="Armenia" data-provinces="[]">Armenia</option>
<option value="Aruba" data-provinces="[]">Aruba</option>
<option value="Ascension Island" data-provinces="[]">Ascension Island</option>
<option value="Australia" data-provinces="[["Australian Capital Territory","Australian Capital Territory"],["New South Wales","New South Wales"],["Northern Territory","Northern Territory"],["Queensland","Queensland"],["South Australia","South Australia"],["Tasmania","Tasmania"],["Victoria","Victoria"],["Western Australia","Western Australia"]]">Australia</option>
<option value="Austria" data-provinces="[]">Austria</option>
<option value="Azerbaijan" data-provinces="[]">Azerbaijan</option>
<option value="Bahamas" data-provinces="[]">Bahamas</option>
<option value="Bahrain" data-provinces="[]">Bahrain</option>
<option value="Bangladesh" data-provinces="[]">Bangladesh</option>
<option value="Barbados" data-provinces="[]">Barbados</option>
<option value="Belarus" data-provinces="[]">Belarus</option>
<option value="Belgium" data-provinces="[]">Belgium</option>
<option value="Belize" data-provinces="[]">Belize</option>
<option value="Benin" data-provinces="[]">Benin</option>
<option value="Bermuda" data-provinces="[]">Bermuda</option>
<option value="Bhutan" data-provinces="[]">Bhutan</option>
<option value="Bolivia" data-provinces="[]">Bolivia</option>
<option value="Bosnia And Herzegovina" data-provinces="[]">Bosnia & Herzegovina</option>
<option value="Botswana" data-provinces="[]">Botswana</option>
<option value="Brazil" data-provinces="[["Acre","Acre"],["Alagoas","Alagoas"],["Amapá","Amapá"],["Amazonas","Amazonas"],["Bahia","Bahia"],["Ceará","Ceará"],["Distrito Federal","Federal District"],["Espírito Santo","Espírito Santo"],["Goiás","Goiás"],["Maranhão","Maranhão"],["Mato Grosso","Mato Grosso"],["Mato Grosso do Sul","Mato Grosso do Sul"],["Minas Gerais","Minas Gerais"],["Paraná","Paraná"],["Paraíba","Paraíba"],["Pará","Pará"],["Pernambuco","Pernambuco"],["Piauí","Piauí"],["Rio Grande do Norte","Rio Grande do Norte"],["Rio Grande do Sul","Rio Grande do Sul"],["Rio de Janeiro","Rio de Janeiro"],["Rondônia","Rondônia"],["Roraima","Roraima"],["Santa Catarina","Santa Catarina"],["Sergipe","Sergipe"],["São Paulo","São Paulo"],["Tocantins","Tocantins"]]">Brazil</option>
<option value="British Indian Ocean Territory" data-provinces="[]">British Indian Ocean Territory</option>
<option value="Virgin Islands, British" data-provinces="[]">British Virgin Islands</option>
<option value="Brunei" data-provinces="[]">Brunei</option>
<option value="Bulgaria" data-provinces="[]">Bulgaria</option>
<option value="Burkina Faso" data-provinces="[]">Burkina Faso</option>
<option value="Burundi" data-provinces="[]">Burundi</option>
<option value="Cambodia" data-provinces="[]">Cambodia</option>
<option value="Republic of Cameroon" data-provinces="[]">Cameroon</option>
<option value="Canada" data-provinces="[["Alberta","Alberta"],["British Columbia","British Columbia"],["Manitoba","Manitoba"],["New Brunswick","New Brunswick"],["Newfoundland and Labrador","Newfoundland and Labrador"],["Northwest Territories","Northwest Territories"],["Nova Scotia","Nova Scotia"],["Nunavut","Nunavut"],["Ontario","Ontario"],["Prince Edward Island","Prince Edward Island"],["Quebec","Quebec"],["Saskatchewan","Saskatchewan"],["Yukon","Yukon"]]">Canada</option>
<option value="Cape Verde" data-provinces="[]">Cape Verde</option>
<option value="Caribbean Netherlands" data-provinces="[]">Caribbean Netherlands</option>
<option value="Cayman Islands" data-provinces="[]">Cayman Islands</option>
<option value="Central African Republic" data-provinces="[]">Central African Republic</option>
<option value="Chad" data-provinces="[]">Chad</option>
<option value="Chile" data-provinces="[["Antofagasta","Antofagasta"],["Araucanía","Araucanía"],["Arica and Parinacota","Arica y Parinacota"],["Atacama","Atacama"],["Aysén","Aysén"],["Biobío","Bío Bío"],["Coquimbo","Coquimbo"],["Los Lagos","Los Lagos"],["Los Ríos","Los Ríos"],["Magallanes","Magallanes Region"],["Maule","Maule"],["O'Higgins","Libertador General Bernardo O’Higgins"],["Santiago","Santiago Metropolitan"],["Tarapacá","Tarapacá"],["Valparaíso","Valparaíso"],["Ñuble","Ñuble"]]">Chile</option>
<option value="China" data-provinces="[["Anhui","Anhui"],["Beijing","Beijing"],["Chongqing","Chongqing"],["Fujian","Fujian"],["Gansu","Gansu"],["Guangdong","Guangdong"],["Guangxi","Guangxi"],["Guizhou","Guizhou"],["Hainan","Hainan"],["Hebei","Hebei"],["Heilongjiang","Heilongjiang"],["Henan","Henan"],["Hubei","Hubei"],["Hunan","Hunan"],["Inner Mongolia","Inner Mongolia"],["Jiangsu","Jiangsu"],["Jiangxi","Jiangxi"],["Jilin","Jilin"],["Liaoning","Liaoning"],["Ningxia","Ningxia"],["Qinghai","Qinghai"],["Shaanxi","Shaanxi"],["Shandong","Shandong"],["Shanghai","Shanghai"],["Shanxi","Shanxi"],["Sichuan","Sichuan"],["Tianjin","Tianjin"],["Xinjiang","Xinjiang"],["Xizang","Tibet"],["Yunnan","Yunnan"],["Zhejiang","Zhejiang"]]">China</option>
<option value="Christmas Island" data-provinces="[]">Christmas Island</option>
<option value="Cocos (Keeling) Islands" data-provinces="[]">Cocos (Keeling) Islands</option>
<option value="Colombia" data-provinces="[["Amazonas","Amazonas"],["Antioquia","Antioquia"],["Arauca","Arauca"],["Atlántico","Atlántico"],["Bogotá, D.C.","Capital District"],["Bolívar","Bolívar"],["Boyacá","Boyacá"],["Caldas","Caldas"],["Caquetá","Caquetá"],["Casanare","Casanare"],["Cauca","Cauca"],["Cesar","Cesar"],["Chocó","Chocó"],["Cundinamarca","Cundinamarca"],["Córdoba","Córdoba"],["Guainía","Guainía"],["Guaviare","Guaviare"],["Huila","Huila"],["La Guajira","La Guajira"],["Magdalena","Magdalena"],["Meta","Meta"],["Nariño","Nariño"],["Norte de Santander","Norte de Santander"],["Putumayo","Putumayo"],["Quindío","Quindío"],["Risaralda","Risaralda"],["San Andrés, Providencia y Santa Catalina","San Andrés \u0026 Providencia"],["Santander","Santander"],["Sucre","Sucre"],["Tolima","Tolima"],["Valle del Cauca","Valle del Cauca"],["Vaupés","Vaupés"],["Vichada","Vichada"]]">Colombia</option>
<option value="Comoros" data-provinces="[]">Comoros</option>
<option value="Congo" data-provinces="[]">Congo - Brazzaville</option>
<option value="Congo, The Democratic Republic Of The" data-provinces="[]">Congo - Kinshasa</option>
<option value="Cook Islands" data-provinces="[]">Cook Islands</option>
<option value="Costa Rica" data-provinces="[["Alajuela","Alajuela"],["Cartago","Cartago"],["Guanacaste","Guanacaste"],["Heredia","Heredia"],["Limón","Limón"],["Puntarenas","Puntarenas"],["San José","San José"]]">Costa Rica</option>
<option value="Croatia" data-provinces="[]">Croatia</option>
<option value="Curaçao" data-provinces="[]">Curaçao</option>
<option value="Cyprus" data-provinces="[]">Cyprus</option>
<option value="Czech Republic" data-provinces="[]">Czechia</option>
<option value="Côte d'Ivoire" data-provinces="[]">Côte d’Ivoire</option>
<option value="Denmark" data-provinces="[]">Denmark</option>
<option value="Djibouti" data-provinces="[]">Djibouti</option>
<option value="Dominica" data-provinces="[]">Dominica</option>
<option value="Dominican Republic" data-provinces="[]">Dominican Republic</option>
<option value="Ecuador" data-provinces="[]">Ecuador</option>
<option value="Egypt" data-provinces="[["6th of October","6th of October"],["Al Sharqia","Al Sharqia"],["Alexandria","Alexandria"],["Aswan","Aswan"],["Asyut","Asyut"],["Beheira","Beheira"],["Beni Suef","Beni Suef"],["Cairo","Cairo"],["Dakahlia","Dakahlia"],["Damietta","Damietta"],["Faiyum","Faiyum"],["Gharbia","Gharbia"],["Giza","Giza"],["Helwan","Helwan"],["Ismailia","Ismailia"],["Kafr el-Sheikh","Kafr el-Sheikh"],["Luxor","Luxor"],["Matrouh","Matrouh"],["Minya","Minya"],["Monufia","Monufia"],["New Valley","New Valley"],["North Sinai","North Sinai"],["Port Said","Port Said"],["Qalyubia","Qalyubia"],["Qena","Qena"],["Red Sea","Red Sea"],["Sohag","Sohag"],["South Sinai","South Sinai"],["Suez","Suez"]]">Egypt</option>
<option value="El Salvador" data-provinces="[["Ahuachapán","Ahuachapán"],["Cabañas","Cabañas"],["Chalatenango","Chalatenango"],["Cuscatlán","Cuscatlán"],["La Libertad","La Libertad"],["La Paz","La Paz"],["La Unión","La Unión"],["Morazán","Morazán"],["San Miguel","San Miguel"],["San Salvador","San Salvador"],["San Vicente","San Vicente"],["Santa Ana","Santa Ana"],["Sonsonate","Sonsonate"],["Usulután","Usulután"]]">El Salvador</option>
<option value="Equatorial Guinea" data-provinces="[]">Equatorial Guinea</option>
<option value="Eritrea" data-provinces="[]">Eritrea</option>
<option value="Estonia" data-provinces="[]">Estonia</option>
<option value="Eswatini" data-provinces="[]">Eswatini</option>
<option value="Ethiopia" data-provinces="[]">Ethiopia</option>
<option value="Falkland Islands (Malvinas)" data-provinces="[]">Falkland Islands</option>
<option value="Faroe Islands" data-provinces="[]">Faroe Islands</option>
<option value="Fiji" data-provinces="[]">Fiji</option>
<option value="Finland" data-provinces="[]">Finland</option>
<option value="France" data-provinces="[]">France</option>
<option value="French Guiana" data-provinces="[]">French Guiana</option>
<option value="French Polynesia" data-provinces="[]">French Polynesia</option>
<option value="French Southern Territories" data-provinces="[]">French Southern Territories</option>
<option value="Gabon" data-provinces="[]">Gabon</option>
<option value="Gambia" data-provinces="[]">Gambia</option>
<option value="Georgia" data-provinces="[]">Georgia</option>
<option value="Germany" data-provinces="[]">Germany</option>
<option value="Ghana" data-provinces="[]">Ghana</option>
<option value="Gibraltar" data-provinces="[]">Gibraltar</option>
<option value="Greece" data-provinces="[]">Greece</option>
<option value="Greenland" data-provinces="[]">Greenland</option>
<option value="Grenada" data-provinces="[]">Grenada</option>
<option value="Guadeloupe" data-provinces="[]">Guadeloupe</option>
<option value="Guatemala" data-provinces="[["Alta Verapaz","Alta Verapaz"],["Baja Verapaz","Baja Verapaz"],["Chimaltenango","Chimaltenango"],["Chiquimula","Chiquimula"],["El Progreso","El Progreso"],["Escuintla","Escuintla"],["Guatemala","Guatemala"],["Huehuetenango","Huehuetenango"],["Izabal","Izabal"],["Jalapa","Jalapa"],["Jutiapa","Jutiapa"],["Petén","Petén"],["Quetzaltenango","Quetzaltenango"],["Quiché","Quiché"],["Retalhuleu","Retalhuleu"],["Sacatepéquez","Sacatepéquez"],["San Marcos","San Marcos"],["Santa Rosa","Santa Rosa"],["Sololá","Sololá"],["Suchitepéquez","Suchitepéquez"],["Totonicapán","Totonicapán"],["Zacapa","Zacapa"]]">Guatemala</option>
<option value="Guernsey" data-provinces="[]">Guernsey</option>
<option value="Guinea" data-provinces="[]">Guinea</option>
<option value="Guinea Bissau" data-provinces="[]">Guinea-Bissau</option>
<option value="Guyana" data-provinces="[]">Guyana</option>
<option value="Haiti" data-provinces="[]">Haiti</option>
<option value="Honduras" data-provinces="[]">Honduras</option>
<option value="Hong Kong" data-provinces="[["Hong Kong Island","Hong Kong Island"],["Kowloon","Kowloon"],["New Territories","New Territories"]]">Hong Kong SAR</option>
<option value="Hungary" data-provinces="[]">Hungary</option>
<option value="Iceland" data-provinces="[]">Iceland</option>
<option value="India" data-provinces="[["Andaman and Nicobar Islands","Andaman and Nicobar Islands"],["Andhra Pradesh","Andhra Pradesh"],["Arunachal Pradesh","Arunachal Pradesh"],["Assam","Assam"],["Bihar","Bihar"],["Chandigarh","Chandigarh"],["Chhattisgarh","Chhattisgarh"],["Dadra and Nagar Haveli","Dadra and Nagar Haveli"],["Daman and Diu","Daman and Diu"],["Delhi","Delhi"],["Goa","Goa"],["Gujarat","Gujarat"],["Haryana","Haryana"],["Himachal Pradesh","Himachal Pradesh"],["Jammu and Kashmir","Jammu and Kashmir"],["Jharkhand","Jharkhand"],["Karnataka","Karnataka"],["Kerala","Kerala"],["Ladakh","Ladakh"],["Lakshadweep","Lakshadweep"],["Madhya Pradesh","Madhya Pradesh"],["Maharashtra","Maharashtra"],["Manipur","Manipur"],["Meghalaya","Meghalaya"],["Mizoram","Mizoram"],["Nagaland","Nagaland"],["Odisha","Odisha"],["Puducherry","Puducherry"],["Punjab","Punjab"],["Rajasthan","Rajasthan"],["Sikkim","Sikkim"],["Tamil Nadu","Tamil Nadu"],["Telangana","Telangana"],["Tripura","Tripura"],["Uttar Pradesh","Uttar Pradesh"],["Uttarakhand","Uttarakhand"],["West Bengal","West Bengal"]]">India</option>
<option value="Indonesia" data-provinces="[["Aceh","Aceh"],["Bali","Bali"],["Bangka Belitung","Bangka–Belitung Islands"],["Banten","Banten"],["Bengkulu","Bengkulu"],["Gorontalo","Gorontalo"],["Jakarta","Jakarta"],["Jambi","Jambi"],["Jawa Barat","West Java"],["Jawa Tengah","Central Java"],["Jawa Timur","East Java"],["Kalimantan Barat","West Kalimantan"],["Kalimantan Selatan","South Kalimantan"],["Kalimantan Tengah","Central Kalimantan"],["Kalimantan Timur","East Kalimantan"],["Kalimantan Utara","North Kalimantan"],["Kepulauan Riau","Riau Islands"],["Lampung","Lampung"],["Maluku","Maluku"],["Maluku Utara","North Maluku"],["North Sumatra","North Sumatra"],["Nusa Tenggara Barat","West Nusa Tenggara"],["Nusa Tenggara Timur","East Nusa Tenggara"],["Papua","Papua"],["Papua Barat","West Papua"],["Riau","Riau"],["South Sumatra","South Sumatra"],["Sulawesi Barat","West Sulawesi"],["Sulawesi Selatan","South Sulawesi"],["Sulawesi Tengah","Central Sulawesi"],["Sulawesi Tenggara","Southeast Sulawesi"],["Sulawesi Utara","North Sulawesi"],["West Sumatra","West Sumatra"],["Yogyakarta","Yogyakarta"]]">Indonesia</option>
<option value="Iraq" data-provinces="[]">Iraq</option>
<option value="Ireland" data-provinces="[["Carlow","Carlow"],["Cavan","Cavan"],["Clare","Clare"],["Cork","Cork"],["Donegal","Donegal"],["Dublin","Dublin"],["Galway","Galway"],["Kerry","Kerry"],["Kildare","Kildare"],["Kilkenny","Kilkenny"],["Laois","Laois"],["Leitrim","Leitrim"],["Limerick","Limerick"],["Longford","Longford"],["Louth","Louth"],["Mayo","Mayo"],["Meath","Meath"],["Monaghan","Monaghan"],["Offaly","Offaly"],["Roscommon","Roscommon"],["Sligo","Sligo"],["Tipperary","Tipperary"],["Waterford","Waterford"],["Westmeath","Westmeath"],["Wexford","Wexford"],["Wicklow","Wicklow"]]">Ireland</option>
<option value="Isle Of Man" data-provinces="[]">Isle of Man</option>
<option value="Israel" data-provinces="[]">Israel</option>
<option value="Italy" data-provinces="[["Agrigento","Agrigento"],["Alessandria","Alessandria"],["Ancona","Ancona"],["Aosta","Aosta Valley"],["Arezzo","Arezzo"],["Ascoli Piceno","Ascoli Piceno"],["Asti","Asti"],["Avellino","Avellino"],["Bari","Bari"],["Barletta-Andria-Trani","Barletta-Andria-Trani"],["Belluno","Belluno"],["Benevento","Benevento"],["Bergamo","Bergamo"],["Biella","Biella"],["Bologna","Bologna"],["Bolzano","South Tyrol"],["Brescia","Brescia"],["Brindisi","Brindisi"],["Cagliari","Cagliari"],["Caltanissetta","Caltanissetta"],["Campobasso","Campobasso"],["Carbonia-Iglesias","Carbonia-Iglesias"],["Caserta","Caserta"],["Catania","Catania"],["Catanzaro","Catanzaro"],["Chieti","Chieti"],["Como","Como"],["Cosenza","Cosenza"],["Cremona","Cremona"],["Crotone","Crotone"],["Cuneo","Cuneo"],["Enna","Enna"],["Fermo","Fermo"],["Ferrara","Ferrara"],["Firenze","Florence"],["Foggia","Foggia"],["Forlì-Cesena","Forlì-Cesena"],["Frosinone","Frosinone"],["Genova","Genoa"],["Gorizia","Gorizia"],["Grosseto","Grosseto"],["Imperia","Imperia"],["Isernia","Isernia"],["L'Aquila","L’Aquila"],["La Spezia","La Spezia"],["Latina","Latina"],["Lecce","Lecce"],["Lecco","Lecco"],["Livorno","Livorno"],["Lodi","Lodi"],["Lucca","Lucca"],["Macerata","Macerata"],["Mantova","Mantua"],["Massa-Carrara","Massa and Carrara"],["Matera","Matera"],["Medio Campidano","Medio Campidano"],["Messina","Messina"],["Milano","Milan"],["Modena","Modena"],["Monza e Brianza","Monza and Brianza"],["Napoli","Naples"],["Novara","Novara"],["Nuoro","Nuoro"],["Ogliastra","Ogliastra"],["Olbia-Tempio","Olbia-Tempio"],["Oristano","Oristano"],["Padova","Padua"],["Palermo","Palermo"],["Parma","Parma"],["Pavia","Pavia"],["Perugia","Perugia"],["Pesaro e Urbino","Pesaro and Urbino"],["Pescara","Pescara"],["Piacenza","Piacenza"],["Pisa","Pisa"],["Pistoia","Pistoia"],["Pordenone","Pordenone"],["Potenza","Potenza"],["Prato","Prato"],["Ragusa","Ragusa"],["Ravenna","Ravenna"],["Reggio Calabria","Reggio Calabria"],["Reggio Emilia","Reggio Emilia"],["Rieti","Rieti"],["Rimini","Rimini"],["Roma","Rome"],["Rovigo","Rovigo"],["Salerno","Salerno"],["Sassari","Sassari"],["Savona","Savona"],["Siena","Siena"],["Siracusa","Syracuse"],["Sondrio","Sondrio"],["Taranto","Taranto"],["Teramo","Teramo"],["Terni","Terni"],["Torino","Turin"],["Trapani","Trapani"],["Trento","Trentino"],["Treviso","Treviso"],["Trieste","Trieste"],["Udine","Udine"],["Varese","Varese"],["Venezia","Venice"],["Verbano-Cusio-Ossola","Verbano-Cusio-Ossola"],["Vercelli","Vercelli"],["Verona","Verona"],["Vibo Valentia","Vibo Valentia"],["Vicenza","Vicenza"],["Viterbo","Viterbo"]]">Italy</option>
<option value="Jamaica" data-provinces="[]">Jamaica</option>
<option value="Japan" data-provinces="[["Aichi","Aichi"],["Akita","Akita"],["Aomori","Aomori"],["Chiba","Chiba"],["Ehime","Ehime"],["Fukui","Fukui"],["Fukuoka","Fukuoka"],["Fukushima","Fukushima"],["Gifu","Gifu"],["Gunma","Gunma"],["Hiroshima","Hiroshima"],["Hokkaidō","Hokkaido"],["Hyōgo","Hyogo"],["Ibaraki","Ibaraki"],["Ishikawa","Ishikawa"],["Iwate","Iwate"],["Kagawa","Kagawa"],["Kagoshima","Kagoshima"],["Kanagawa","Kanagawa"],["Kumamoto","Kumamoto"],["Kyōto","Kyoto"],["Kōchi","Kochi"],["Mie","Mie"],["Miyagi","Miyagi"],["Miyazaki","Miyazaki"],["Nagano","Nagano"],["Nagasaki","Nagasaki"],["Nara","Nara"],["Niigata","Niigata"],["Okayama","Okayama"],["Okinawa","Okinawa"],["Saga","Saga"],["Saitama","Saitama"],["Shiga","Shiga"],["Shimane","Shimane"],["Shizuoka","Shizuoka"],["Tochigi","Tochigi"],["Tokushima","Tokushima"],["Tottori","Tottori"],["Toyama","Toyama"],["Tōkyō","Tokyo"],["Wakayama","Wakayama"],["Yamagata","Yamagata"],["Yamaguchi","Yamaguchi"],["Yamanashi","Yamanashi"],["Ōita","Oita"],["Ōsaka","Osaka"]]">Japan</option>
<option value="Jersey" data-provinces="[]">Jersey</option>
<option value="Jordan" data-provinces="[]">Jordan</option>
<option value="Kazakhstan" data-provinces="[]">Kazakhstan</option>
<option value="Kenya" data-provinces="[]">Kenya</option>
<option value="Kiribati" data-provinces="[]">Kiribati</option>
<option value="Kosovo" data-provinces="[]">Kosovo</option>
<option value="Kuwait" data-provinces="[["Al Ahmadi","Al Ahmadi"],["Al Asimah","Al Asimah"],["Al Farwaniyah","Al Farwaniyah"],["Al Jahra","Al Jahra"],["Hawalli","Hawalli"],["Mubarak Al-Kabeer","Mubarak Al-Kabeer"]]">Kuwait</option>
<option value="Kyrgyzstan" data-provinces="[]">Kyrgyzstan</option>
<option value="Lao People's Democratic Republic" data-provinces="[]">Laos</option>
<option value="Latvia" data-provinces="[]">Latvia</option>
<option value="Lebanon" data-provinces="[]">Lebanon</option>
<option value="Lesotho" data-provinces="[]">Lesotho</option>
<option value="Liberia" data-provinces="[]">Liberia</option>
<option value="Libyan Arab Jamahiriya" data-provinces="[]">Libya</option>
<option value="Liechtenstein" data-provinces="[]">Liechtenstein</option>
<option value="Lithuania" data-provinces="[]">Lithuania</option>
<option value="Luxembourg" data-provinces="[]">Luxembourg</option>
<option value="Macao" data-provinces="[]">Macao SAR</option>
<option value="Madagascar" data-provinces="[]">Madagascar</option>
<option value="Malawi" data-provinces="[]">Malawi</option>
<option value="Malaysia" data-provinces="[["Johor","Johor"],["Kedah","Kedah"],["Kelantan","Kelantan"],["Kuala Lumpur","Kuala Lumpur"],["Labuan","Labuan"],["Melaka","Malacca"],["Negeri Sembilan","Negeri Sembilan"],["Pahang","Pahang"],["Penang","Penang"],["Perak","Perak"],["Perlis","Perlis"],["Putrajaya","Putrajaya"],["Sabah","Sabah"],["Sarawak","Sarawak"],["Selangor","Selangor"],["Terengganu","Terengganu"]]">Malaysia</option>
<option value="Maldives" data-provinces="[]">Maldives</option>
<option value="Mali" data-provinces="[]">Mali</option>
<option value="Malta" data-provinces="[]">Malta</option>
<option value="Martinique" data-provinces="[]">Martinique</option>
<option value="Mauritania" data-provinces="[]">Mauritania</option>
<option value="Mauritius" data-provinces="[]">Mauritius</option>
<option value="Mayotte" data-provinces="[]">Mayotte</option>
<option value="Mexico" data-provinces="[["Aguascalientes","Aguascalientes"],["Baja California","Baja California"],["Baja California Sur","Baja California Sur"],["Campeche","Campeche"],["Chiapas","Chiapas"],["Chihuahua","Chihuahua"],["Ciudad de México","Ciudad de Mexico"],["Coahuila","Coahuila"],["Colima","Colima"],["Durango","Durango"],["Guanajuato","Guanajuato"],["Guerrero","Guerrero"],["Hidalgo","Hidalgo"],["Jalisco","Jalisco"],["Michoacán","Michoacán"],["Morelos","Morelos"],["México","Mexico State"],["Nayarit","Nayarit"],["Nuevo León","Nuevo León"],["Oaxaca","Oaxaca"],["Puebla","Puebla"],["Querétaro","Querétaro"],["Quintana Roo","Quintana Roo"],["San Luis Potosí","San Luis Potosí"],["Sinaloa","Sinaloa"],["Sonora","Sonora"],["Tabasco","Tabasco"],["Tamaulipas","Tamaulipas"],["Tlaxcala","Tlaxcala"],["Veracruz","Veracruz"],["Yucatán","Yucatán"],["Zacatecas","Zacatecas"]]">Mexico</option>
<option value="Moldova, Republic of" data-provinces="[]">Moldova</option>
<option value="Monaco" data-provinces="[]">Monaco</option>
<option value="Mongolia" data-provinces="[]">Mongolia</option>
<option value="Montenegro" data-provinces="[]">Montenegro</option>
<option value="Montserrat" data-provinces="[]">Montserrat</option>
<option value="Morocco" data-provinces="[]">Morocco</option>
<option value="Mozambique" data-provinces="[]">Mozambique</option>
<option value="Myanmar" data-provinces="[]">Myanmar (Burma)</option>
<option value="Namibia" data-provinces="[]">Namibia</option>
<option value="Nauru" data-provinces="[]">Nauru</option>
<option value="Nepal" data-provinces="[]">Nepal</option>
<option value="Netherlands" data-provinces="[]">Netherlands</option>
<option value="New Caledonia" data-provinces="[]">New Caledonia</option>
<option value="New Zealand" data-provinces="[["Auckland","Auckland"],["Bay of Plenty","Bay of Plenty"],["Canterbury","Canterbury"],["Chatham Islands","Chatham Islands"],["Gisborne","Gisborne"],["Hawke's Bay","Hawke’s Bay"],["Manawatu-Wanganui","Manawatū-Whanganui"],["Marlborough","Marlborough"],["Nelson","Nelson"],["Northland","Northland"],["Otago","Otago"],["Southland","Southland"],["Taranaki","Taranaki"],["Tasman","Tasman"],["Waikato","Waikato"],["Wellington","Wellington"],["West Coast","West Coast"]]">New Zealand</option>
<option value="Nicaragua" data-provinces="[]">Nicaragua</option>
<option value="Niger" data-provinces="[]">Niger</option>
<option value="Nigeria" data-provinces="[["Abia","Abia"],["Abuja Federal Capital Territory","Federal Capital Territory"],["Adamawa","Adamawa"],["Akwa Ibom","Akwa Ibom"],["Anambra","Anambra"],["Bauchi","Bauchi"],["Bayelsa","Bayelsa"],["Benue","Benue"],["Borno","Borno"],["Cross River","Cross River"],["Delta","Delta"],["Ebonyi","Ebonyi"],["Edo","Edo"],["Ekiti","Ekiti"],["Enugu","Enugu"],["Gombe","Gombe"],["Imo","Imo"],["Jigawa","Jigawa"],["Kaduna","Kaduna"],["Kano","Kano"],["Katsina","Katsina"],["Kebbi","Kebbi"],["Kogi","Kogi"],["Kwara","Kwara"],["Lagos","Lagos"],["Nasarawa","Nasarawa"],["Niger","Niger"],["Ogun","Ogun"],["Ondo","Ondo"],["Osun","Osun"],["Oyo","Oyo"],["Plateau","Plateau"],["Rivers","Rivers"],["Sokoto","Sokoto"],["Taraba","Taraba"],["Yobe","Yobe"],["Zamfara","Zamfara"]]">Nigeria</option>
<option value="Niue" data-provinces="[]">Niue</option>
<option value="Norfolk Island" data-provinces="[]">Norfolk Island</option>
<option value="North Macedonia" data-provinces="[]">North Macedonia</option>
<option value="Norway" data-provinces="[]">Norway</option>
<option value="Oman" data-provinces="[]">Oman</option>
<option value="Pakistan" data-provinces="[]">Pakistan</option>
<option value="Palestinian Territory, Occupied" data-provinces="[]">Palestinian Territories</option>
<option value="Panama" data-provinces="[["Bocas del Toro","Bocas del Toro"],["Chiriquí","Chiriquí"],["Coclé","Coclé"],["Colón","Colón"],["Darién","Darién"],["Emberá","Emberá"],["Herrera","Herrera"],["Kuna Yala","Guna Yala"],["Los Santos","Los Santos"],["Ngöbe-Buglé","Ngöbe-Buglé"],["Panamá","Panamá"],["Panamá Oeste","West Panamá"],["Veraguas","Veraguas"]]">Panama</option>
<option value="Papua New Guinea" data-provinces="[]">Papua New Guinea</option>
<option value="Paraguay" data-provinces="[]">Paraguay</option>
<option value="Peru" data-provinces="[["Amazonas","Amazonas"],["Apurímac","Apurímac"],["Arequipa","Arequipa"],["Ayacucho","Ayacucho"],["Cajamarca","Cajamarca"],["Callao","El Callao"],["Cuzco","Cusco"],["Huancavelica","Huancavelica"],["Huánuco","Huánuco"],["Ica","Ica"],["Junín","Junín"],["La Libertad","La Libertad"],["Lambayeque","Lambayeque"],["Lima (departamento)","Lima (Department)"],["Lima (provincia)","Lima (Metropolitan)"],["Loreto","Loreto"],["Madre de Dios","Madre de Dios"],["Moquegua","Moquegua"],["Pasco","Pasco"],["Piura","Piura"],["Puno","Puno"],["San Martín","San Martín"],["Tacna","Tacna"],["Tumbes","Tumbes"],["Ucayali","Ucayali"],["Áncash","Ancash"]]">Peru</option>
<option value="Philippines" data-provinces="[["Abra","Abra"],["Agusan del Norte","Agusan del Norte"],["Agusan del Sur","Agusan del Sur"],["Aklan","Aklan"],["Albay","Albay"],["Antique","Antique"],["Apayao","Apayao"],["Aurora","Aurora"],["Basilan","Basilan"],["Bataan","Bataan"],["Batanes","Batanes"],["Batangas","Batangas"],["Benguet","Benguet"],["Biliran","Biliran"],["Bohol","Bohol"],["Bukidnon","Bukidnon"],["Bulacan","Bulacan"],["Cagayan","Cagayan"],["Camarines Norte","Camarines Norte"],["Camarines Sur","Camarines Sur"],["Camiguin","Camiguin"],["Capiz","Capiz"],["Catanduanes","Catanduanes"],["Cavite","Cavite"],["Cebu","Cebu"],["Cotabato","Cotabato"],["Davao Occidental","Davao Occidental"],["Davao Oriental","Davao Oriental"],["Davao de Oro","Compostela Valley"],["Davao del Norte","Davao del Norte"],["Davao del Sur","Davao del Sur"],["Dinagat Islands","Dinagat Islands"],["Eastern Samar","Eastern Samar"],["Guimaras","Guimaras"],["Ifugao","Ifugao"],["Ilocos Norte","Ilocos Norte"],["Ilocos Sur","Ilocos Sur"],["Iloilo","Iloilo"],["Isabela","Isabela"],["Kalinga","Kalinga"],["La Union","La Union"],["Laguna","Laguna"],["Lanao del Norte","Lanao del Norte"],["Lanao del Sur","Lanao del Sur"],["Leyte","Leyte"],["Maguindanao","Maguindanao"],["Marinduque","Marinduque"],["Masbate","Masbate"],["Metro Manila","Metro Manila"],["Misamis Occidental","Misamis Occidental"],["Misamis Oriental","Misamis Oriental"],["Mountain Province","Mountain"],["Negros Occidental","Negros Occidental"],["Negros Oriental","Negros Oriental"],["Northern Samar","Northern Samar"],["Nueva Ecija","Nueva Ecija"],["Nueva Vizcaya","Nueva Vizcaya"],["Occidental Mindoro","Occidental Mindoro"],["Oriental Mindoro","Oriental Mindoro"],["Palawan","Palawan"],["Pampanga","Pampanga"],["Pangasinan","Pangasinan"],["Quezon","Quezon"],["Quirino","Quirino"],["Rizal","Rizal"],["Romblon","Romblon"],["Samar","Samar"],["Sarangani","Sarangani"],["Siquijor","Siquijor"],["Sorsogon","Sorsogon"],["South Cotabato","South Cotabato"],["Southern Leyte","Southern Leyte"],["Sultan Kudarat","Sultan Kudarat"],["Sulu","Sulu"],["Surigao del Norte","Surigao del Norte"],["Surigao del Sur","Surigao del Sur"],["Tarlac","Tarlac"],["Tawi-Tawi","Tawi-Tawi"],["Zambales","Zambales"],["Zamboanga Sibugay","Zamboanga Sibugay"],["Zamboanga del Norte","Zamboanga del Norte"],["Zamboanga del Sur","Zamboanga del Sur"]]">Philippines</option>
<option value="Pitcairn" data-provinces="[]">Pitcairn Islands</option>
<option value="Poland" data-provinces="[]">Poland</option>
<option value="Portugal" data-provinces="[["Aveiro","Aveiro"],["Açores","Azores"],["Beja","Beja"],["Braga","Braga"],["Bragança","Bragança"],["Castelo Branco","Castelo Branco"],["Coimbra","Coimbra"],["Faro","Faro"],["Guarda","Guarda"],["Leiria","Leiria"],["Lisboa","Lisbon"],["Madeira","Madeira"],["Portalegre","Portalegre"],["Porto","Porto"],["Santarém","Santarém"],["Setúbal","Setúbal"],["Viana do Castelo","Viana do Castelo"],["Vila Real","Vila Real"],["Viseu","Viseu"],["Évora","Évora"]]">Portugal</option>
<option value="Qatar" data-provinces="[]">Qatar</option>
<option value="Reunion" data-provinces="[]">Réunion</option>
<option value="Romania" data-provinces="[["Alba","Alba"],["Arad","Arad"],["Argeș","Argeș"],["Bacău","Bacău"],["Bihor","Bihor"],["Bistrița-Năsăud","Bistriţa-Năsăud"],["Botoșani","Botoşani"],["Brașov","Braşov"],["Brăila","Brăila"],["București","Bucharest"],["Buzău","Buzău"],["Caraș-Severin","Caraș-Severin"],["Cluj","Cluj"],["Constanța","Constanța"],["Covasna","Covasna"],["Călărași","Călărași"],["Dolj","Dolj"],["Dâmbovița","Dâmbovița"],["Galați","Galați"],["Giurgiu","Giurgiu"],["Gorj","Gorj"],["Harghita","Harghita"],["Hunedoara","Hunedoara"],["Ialomița","Ialomița"],["Iași","Iași"],["Ilfov","Ilfov"],["Maramureș","Maramureş"],["Mehedinți","Mehedinți"],["Mureș","Mureş"],["Neamț","Neamţ"],["Olt","Olt"],["Prahova","Prahova"],["Satu Mare","Satu Mare"],["Sibiu","Sibiu"],["Suceava","Suceava"],["Sălaj","Sălaj"],["Teleorman","Teleorman"],["Timiș","Timiș"],["Tulcea","Tulcea"],["Vaslui","Vaslui"],["Vrancea","Vrancea"],["Vâlcea","Vâlcea"]]">Romania</option>
<option value="Russia" data-provinces="[["Altai Krai","Altai Krai"],["Altai Republic","Altai"],["Amur Oblast","Amur"],["Arkhangelsk Oblast","Arkhangelsk"],["Astrakhan Oblast","Astrakhan"],["Belgorod Oblast","Belgorod"],["Bryansk Oblast","Bryansk"],["Chechen Republic","Chechen"],["Chelyabinsk Oblast","Chelyabinsk"],["Chukotka Autonomous Okrug","Chukotka Okrug"],["Chuvash Republic","Chuvash"],["Irkutsk Oblast","Irkutsk"],["Ivanovo Oblast","Ivanovo"],["Jewish Autonomous Oblast","Jewish"],["Kabardino-Balkarian Republic","Kabardino-Balkar"],["Kaliningrad Oblast","Kaliningrad"],["Kaluga Oblast","Kaluga"],["Kamchatka Krai","Kamchatka Krai"],["Karachay–Cherkess Republic","Karachay-Cherkess"],["Kemerovo Oblast","Kemerovo"],["Khabarovsk Krai","Khabarovsk Krai"],["Khanty-Mansi Autonomous Okrug","Khanty-Mansi"],["Kirov Oblast","Kirov"],["Komi Republic","Komi"],["Kostroma Oblast","Kostroma"],["Krasnodar Krai","Krasnodar Krai"],["Krasnoyarsk Krai","Krasnoyarsk Krai"],["Kurgan Oblast","Kurgan"],["Kursk Oblast","Kursk"],["Leningrad Oblast","Leningrad"],["Lipetsk Oblast","Lipetsk"],["Magadan Oblast","Magadan"],["Mari El Republic","Mari El"],["Moscow","Moscow"],["Moscow Oblast","Moscow Province"],["Murmansk Oblast","Murmansk"],["Nizhny Novgorod Oblast","Nizhny Novgorod"],["Novgorod Oblast","Novgorod"],["Novosibirsk Oblast","Novosibirsk"],["Omsk Oblast","Omsk"],["Orenburg Oblast","Orenburg"],["Oryol Oblast","Oryol"],["Penza Oblast","Penza"],["Perm Krai","Perm Krai"],["Primorsky Krai","Primorsky Krai"],["Pskov Oblast","Pskov"],["Republic of Adygeya","Adygea"],["Republic of Bashkortostan","Bashkortostan"],["Republic of Buryatia","Buryat"],["Republic of Dagestan","Dagestan"],["Republic of Ingushetia","Ingushetia"],["Republic of Kalmykia","Kalmykia"],["Republic of Karelia","Karelia"],["Republic of Khakassia","Khakassia"],["Republic of Mordovia","Mordovia"],["Republic of North Ossetia–Alania","North Ossetia-Alania"],["Republic of Tatarstan","Tatarstan"],["Rostov Oblast","Rostov"],["Ryazan Oblast","Ryazan"],["Saint Petersburg","Saint Petersburg"],["Sakha Republic (Yakutia)","Sakha"],["Sakhalin Oblast","Sakhalin"],["Samara Oblast","Samara"],["Saratov Oblast","Saratov"],["Smolensk Oblast","Smolensk"],["Stavropol Krai","Stavropol Krai"],["Sverdlovsk Oblast","Sverdlovsk"],["Tambov Oblast","Tambov"],["Tomsk Oblast","Tomsk"],["Tula Oblast","Tula"],["Tver Oblast","Tver"],["Tyumen Oblast","Tyumen"],["Tyva Republic","Tuva"],["Udmurtia","Udmurt"],["Ulyanovsk Oblast","Ulyanovsk"],["Vladimir Oblast","Vladimir"],["Volgograd Oblast","Volgograd"],["Vologda Oblast","Vologda"],["Voronezh Oblast","Voronezh"],["Yamalo-Nenets Autonomous Okrug","Yamalo-Nenets Okrug"],["Yaroslavl Oblast","Yaroslavl"],["Zabaykalsky Krai","Zabaykalsky Krai"]]">Russia</option>
<option value="Rwanda" data-provinces="[]">Rwanda</option>
<option value="Samoa" data-provinces="[]">Samoa</option>
<option value="San Marino" data-provinces="[]">San Marino</option>
<option value="Sao Tome And Principe" data-provinces="[]">São Tomé & Príncipe</option>
<option value="Saudi Arabia" data-provinces="[]">Saudi Arabia</option>
<option value="Senegal" data-provinces="[]">Senegal</option>
<option value="Serbia" data-provinces="[]">Serbia</option>
<option value="Seychelles" data-provinces="[]">Seychelles</option>
<option value="Sierra Leone" data-provinces="[]">Sierra Leone</option>
<option value="Singapore" data-provinces="[]">Singapore</option>
<option value="Sint Maarten" data-provinces="[]">Sint Maarten</option>
<option value="Slovakia" data-provinces="[]">Slovakia</option>
<option value="Slovenia" data-provinces="[]">Slovenia</option>
<option value="Solomon Islands" data-provinces="[]">Solomon Islands</option>
<option value="Somalia" data-provinces="[]">Somalia</option>
<option value="South Africa" data-provinces="[["Eastern Cape","Eastern Cape"],["Free State","Free State"],["Gauteng","Gauteng"],["KwaZulu-Natal","KwaZulu-Natal"],["Limpopo","Limpopo"],["Mpumalanga","Mpumalanga"],["North West","North West"],["Northern Cape","Northern Cape"],["Western Cape","Western Cape"]]">South Africa</option>
<option value="South Georgia And The South Sandwich Islands" data-provinces="[]">South Georgia & South Sandwich Islands</option>
<option value="South Korea" data-provinces="[["Busan","Busan"],["Chungbuk","North Chungcheong"],["Chungnam","South Chungcheong"],["Daegu","Daegu"],["Daejeon","Daejeon"],["Gangwon","Gangwon"],["Gwangju","Gwangju City"],["Gyeongbuk","North Gyeongsang"],["Gyeonggi","Gyeonggi"],["Gyeongnam","South Gyeongsang"],["Incheon","Incheon"],["Jeju","Jeju"],["Jeonbuk","North Jeolla"],["Jeonnam","South Jeolla"],["Sejong","Sejong"],["Seoul","Seoul"],["Ulsan","Ulsan"]]">South Korea</option>
<option value="South Sudan" data-provinces="[]">South Sudan</option>
<option value="Spain" data-provinces="[["A Coruña","A Coruña"],["Albacete","Albacete"],["Alicante","Alicante"],["Almería","Almería"],["Asturias","Asturias Province"],["Badajoz","Badajoz"],["Balears","Balears Province"],["Barcelona","Barcelona"],["Burgos","Burgos"],["Cantabria","Cantabria Province"],["Castellón","Castellón"],["Ceuta","Ceuta"],["Ciudad Real","Ciudad Real"],["Cuenca","Cuenca"],["Cáceres","Cáceres"],["Cádiz","Cádiz"],["Córdoba","Córdoba"],["Girona","Girona"],["Granada","Granada"],["Guadalajara","Guadalajara"],["Guipúzcoa","Gipuzkoa"],["Huelva","Huelva"],["Huesca","Huesca"],["Jaén","Jaén"],["La Rioja","La Rioja Province"],["Las Palmas","Las Palmas"],["León","León"],["Lleida","Lleida"],["Lugo","Lugo"],["Madrid","Madrid Province"],["Melilla","Melilla"],["Murcia","Murcia"],["Málaga","Málaga"],["Navarra","Navarra"],["Ourense","Ourense"],["Palencia","Palencia"],["Pontevedra","Pontevedra"],["Salamanca","Salamanca"],["Santa Cruz de Tenerife","Santa Cruz de Tenerife"],["Segovia","Segovia"],["Sevilla","Seville"],["Soria","Soria"],["Tarragona","Tarragona"],["Teruel","Teruel"],["Toledo","Toledo"],["Valencia","Valencia"],["Valladolid","Valladolid"],["Vizcaya","Biscay"],["Zamora","Zamora"],["Zaragoza","Zaragoza"],["Álava","Álava"],["Ávila","Ávila"]]">Spain</option>
<option value="Sri Lanka" data-provinces="[]">Sri Lanka</option>
<option value="Saint Barthélemy" data-provinces="[]">St. Barthélemy</option>
<option value="Saint Helena" data-provinces="[]">St. Helena</option>
<option value="Saint Kitts And Nevis" data-provinces="[]">St. Kitts & Nevis</option>
<option value="Saint Lucia" data-provinces="[]">St. Lucia</option>
<option value="Saint Martin" data-provinces="[]">St. Martin</option>
<option value="Saint Pierre And Miquelon" data-provinces="[]">St. Pierre & Miquelon</option>
<option value="St. Vincent" data-provinces="[]">St. Vincent & Grenadines</option>
<option value="Sudan" data-provinces="[]">Sudan</option>
<option value="Suriname" data-provinces="[]">Suriname</option>
<option value="Svalbard And Jan Mayen" data-provinces="[]">Svalbard & Jan Mayen</option>
<option value="Sweden" data-provinces="[]">Sweden</option>
<option value="Switzerland" data-provinces="[]">Switzerland</option>
<option value="Taiwan" data-provinces="[]">Taiwan</option>
<option value="Tajikistan" data-provinces="[]">Tajikistan</option>
<option value="Tanzania, United Republic Of" data-provinces="[]">Tanzania</option>
<option value="Thailand" data-provinces="[["Amnat Charoen","Amnat Charoen"],["Ang Thong","Ang Thong"],["Bangkok","Bangkok"],["Bueng Kan","Bueng Kan"],["Buriram","Buri Ram"],["Chachoengsao","Chachoengsao"],["Chai Nat","Chai Nat"],["Chaiyaphum","Chaiyaphum"],["Chanthaburi","Chanthaburi"],["Chiang Mai","Chiang Mai"],["Chiang Rai","Chiang Rai"],["Chon Buri","Chon Buri"],["Chumphon","Chumphon"],["Kalasin","Kalasin"],["Kamphaeng Phet","Kamphaeng Phet"],["Kanchanaburi","Kanchanaburi"],["Khon Kaen","Khon Kaen"],["Krabi","Krabi"],["Lampang","Lampang"],["Lamphun","Lamphun"],["Loei","Loei"],["Lopburi","Lopburi"],["Mae Hong Son","Mae Hong Son"],["Maha Sarakham","Maha Sarakham"],["Mukdahan","Mukdahan"],["Nakhon Nayok","Nakhon Nayok"],["Nakhon Pathom","Nakhon Pathom"],["Nakhon Phanom","Nakhon Phanom"],["Nakhon Ratchasima","Nakhon Ratchasima"],["Nakhon Sawan","Nakhon Sawan"],["Nakhon Si Thammarat","Nakhon Si Thammarat"],["Nan","Nan"],["Narathiwat","Narathiwat"],["Nong Bua Lam Phu","Nong Bua Lam Phu"],["Nong Khai","Nong Khai"],["Nonthaburi","Nonthaburi"],["Pathum Thani","Pathum Thani"],["Pattani","Pattani"],["Pattaya","Pattaya"],["Phangnga","Phang Nga"],["Phatthalung","Phatthalung"],["Phayao","Phayao"],["Phetchabun","Phetchabun"],["Phetchaburi","Phetchaburi"],["Phichit","Phichit"],["Phitsanulok","Phitsanulok"],["Phra Nakhon Si Ayutthaya","Phra Nakhon Si Ayutthaya"],["Phrae","Phrae"],["Phuket","Phuket"],["Prachin Buri","Prachin Buri"],["Prachuap Khiri Khan","Prachuap Khiri Khan"],["Ranong","Ranong"],["Ratchaburi","Ratchaburi"],["Rayong","Rayong"],["Roi Et","Roi Et"],["Sa Kaeo","Sa Kaeo"],["Sakon Nakhon","Sakon Nakhon"],["Samut Prakan","Samut Prakan"],["Samut Sakhon","Samut Sakhon"],["Samut Songkhram","Samut Songkhram"],["Saraburi","Saraburi"],["Satun","Satun"],["Sing Buri","Sing Buri"],["Sisaket","Si Sa Ket"],["Songkhla","Songkhla"],["Sukhothai","Sukhothai"],["Suphan Buri","Suphanburi"],["Surat Thani","Surat Thani"],["Surin","Surin"],["Tak","Tak"],["Trang","Trang"],["Trat","Trat"],["Ubon Ratchathani","Ubon Ratchathani"],["Udon Thani","Udon Thani"],["Uthai Thani","Uthai Thani"],["Uttaradit","Uttaradit"],["Yala","Yala"],["Yasothon","Yasothon"]]">Thailand</option>
<option value="Timor Leste" data-provinces="[]">Timor-Leste</option>
<option value="Togo" data-provinces="[]">Togo</option>
<option value="Tokelau" data-provinces="[]">Tokelau</option>
<option value="Tonga" data-provinces="[]">Tonga</option>
<option value="Trinidad and Tobago" data-provinces="[]">Trinidad & Tobago</option>
<option value="Tristan da Cunha" data-provinces="[]">Tristan da Cunha</option>
<option value="Tunisia" data-provinces="[]">Tunisia</option>
<option value="Turkey" data-provinces="[]">Türkiye</option>
<option value="Turkmenistan" data-provinces="[]">Turkmenistan</option>
<option value="Turks and Caicos Islands" data-provinces="[]">Turks & Caicos Islands</option>
<option value="Tuvalu" data-provinces="[]">Tuvalu</option>
<option value="United States Minor Outlying Islands" data-provinces="[]">U.S. Outlying Islands</option>
<option value="Uganda" data-provinces="[]">Uganda</option>
<option value="Ukraine" data-provinces="[]">Ukraine</option>
<option value="United Arab Emirates" data-provinces="[["Abu Dhabi","Abu Dhabi"],["Ajman","Ajman"],["Dubai","Dubai"],["Fujairah","Fujairah"],["Ras al-Khaimah","Ras al-Khaimah"],["Sharjah","Sharjah"],["Umm al-Quwain","Umm al-Quwain"]]">United Arab Emirates</option>
<option value="United Kingdom" data-provinces="[["British Forces","British Forces"],["England","England"],["Northern Ireland","Northern Ireland"],["Scotland","Scotland"],["Wales","Wales"]]">United Kingdom</option>
<option value="United States" data-provinces="[["Alabama","Alabama"],["Alaska","Alaska"],["American Samoa","American Samoa"],["Arizona","Arizona"],["Arkansas","Arkansas"],["Armed Forces Americas","Armed Forces Americas"],["Armed Forces Europe","Armed Forces Europe"],["Armed Forces Pacific","Armed Forces Pacific"],["California","California"],["Colorado","Colorado"],["Connecticut","Connecticut"],["Delaware","Delaware"],["District of Columbia","Washington DC"],["Federated States of Micronesia","Micronesia"],["Florida","Florida"],["Georgia","Georgia"],["Guam","Guam"],["Hawaii","Hawaii"],["Idaho","Idaho"],["Illinois","Illinois"],["Indiana","Indiana"],["Iowa","Iowa"],["Kansas","Kansas"],["Kentucky","Kentucky"],["Louisiana","Louisiana"],["Maine","Maine"],["Marshall Islands","Marshall Islands"],["Maryland","Maryland"],["Massachusetts","Massachusetts"],["Michigan","Michigan"],["Minnesota","Minnesota"],["Mississippi","Mississippi"],["Missouri","Missouri"],["Montana","Montana"],["Nebraska","Nebraska"],["Nevada","Nevada"],["New Hampshire","New Hampshire"],["New Jersey","New Jersey"],["New Mexico","New Mexico"],["New York","New York"],["North Carolina","North Carolina"],["North Dakota","North Dakota"],["Northern Mariana Islands","Northern Mariana Islands"],["Ohio","Ohio"],["Oklahoma","Oklahoma"],["Oregon","Oregon"],["Palau","Palau"],["Pennsylvania","Pennsylvania"],["Puerto Rico","Puerto Rico"],["Rhode Island","Rhode Island"],["South Carolina","South Carolina"],["South Dakota","South Dakota"],["Tennessee","Tennessee"],["Texas","Texas"],["Utah","Utah"],["Vermont","Vermont"],["Virgin Islands","U.S. Virgin Islands"],["Virginia","Virginia"],["Washington","Washington"],["West Virginia","West Virginia"],["Wisconsin","Wisconsin"],["Wyoming","Wyoming"]]">United States</option>
<option value="Uruguay" data-provinces="[["Artigas","Artigas"],["Canelones","Canelones"],["Cerro Largo","Cerro Largo"],["Colonia","Colonia"],["Durazno","Durazno"],["Flores","Flores"],["Florida","Florida"],["Lavalleja","Lavalleja"],["Maldonado","Maldonado"],["Montevideo","Montevideo"],["Paysandú","Paysandú"],["Rivera","Rivera"],["Rocha","Rocha"],["Río Negro","Río Negro"],["Salto","Salto"],["San José","San José"],["Soriano","Soriano"],["Tacuarembó","Tacuarembó"],["Treinta y Tres","Treinta y Tres"]]">Uruguay</option>
<option value="Uzbekistan" data-provinces="[]">Uzbekistan</option>
<option value="Vanuatu" data-provinces="[]">Vanuatu</option>
<option value="Holy See (Vatican City State)" data-provinces="[]">Vatican City</option>
<option value="Venezuela" data-provinces="[["Amazonas","Amazonas"],["Anzoátegui","Anzoátegui"],["Apure","Apure"],["Aragua","Aragua"],["Barinas","Barinas"],["Bolívar","Bolívar"],["Carabobo","Carabobo"],["Cojedes","Cojedes"],["Delta Amacuro","Delta Amacuro"],["Dependencias Federales","Federal Dependencies"],["Distrito Capital","Capital"],["Falcón","Falcón"],["Guárico","Guárico"],["La Guaira","Vargas"],["Lara","Lara"],["Miranda","Miranda"],["Monagas","Monagas"],["Mérida","Mérida"],["Nueva Esparta","Nueva Esparta"],["Portuguesa","Portuguesa"],["Sucre","Sucre"],["Trujillo","Trujillo"],["Táchira","Táchira"],["Yaracuy","Yaracuy"],["Zulia","Zulia"]]">Venezuela</option>
<option value="Vietnam" data-provinces="[]">Vietnam</option>
<option value="Wallis And Futuna" data-provinces="[]">Wallis & Futuna</option>
<option value="Western Sahara" data-provinces="[]">Western Sahara</option>
<option value="Yemen" data-provinces="[]">Yemen</option>
<option value="Zambia" data-provinces="[]">Zambia</option>
<option value="Zimbabwe" data-provinces="[]">Zimbabwe</option></template>
</select><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-caret-down icon--medium"
viewBox="0 0 20 20"
fill="none"
>
<path d="M16.25 7.5L10 13.75L3.75 7.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
<div class="form-field reset-spacing" hidden>
<label class="form-label" for="ShippingCalculatorProvince-sections--18997227913428__cart-drawer">Province</label>
<div class="select">
<select
name="address[province]"
class="form-control form-control--select"
autocomplete="address-level1"
id="ShippingCalculatorProvince-sections--18997227913428__cart-drawer"
></select><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-caret-down icon--medium"
viewBox="0 0 20 20"
fill="none"
>
<path d="M16.25 7.5L10 13.75L3.75 7.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
</country-province>
<div class="form-field">
<label class="form-label" for="ShippingCalculatorZip-sections--18997227913428__cart-drawer">Postal/ZIP code</label>
<input
name="address[zip]"
class="form-control form-control--input"
type="text"
autocapitalize="characters"
autocomplete="postal-code"
placeholder=" "
id="ShippingCalculatorZip-sections--18997227913428__cart-drawer"
>
</div>
<div class="">
<button class="btn btn--primary" type="submit">
<span>Calculate</span>
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner icon icon--extra-medium"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="4" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button>
</div>
<div class="grid gap-3"></div>
</form>
</div>
</div>
</calculate-shipping></div></div>
<div class="drawer__footer-body">
<div class="grid gap-4">
<div class="grid gap-2"><div class="totals flex justify-between items-center">
<span class="totals__subtotal h4">Estimated total</span>
<span class="totals__subtotal-value h4 font-body-bolder">$0.00 AUD</span>
</div>
<div class="tax-note">Taxes and <a href="/policies/shipping-policy" class="btn--link">shipping</a> calculated at checkout</div>
</div>
<form
action="/cart"
method="POST"
novalidate
class="drawer__footer-buttons flex flex-wrap gap-2"
>
<a href="/cart" class="btn btn--secondary">
View cart
</a>
<button class="btn btn--primary flex-grow" type="submit" name="checkout">
Check out
</button>
</form>
</div>
</div>
</div>
</div>
</div>
</cart-drawer>
</div><div id="shopify-section-sections--18997227913428__search-drawer" class="shopify-section shopify-section-group-overlay-group"><link
rel="stylesheet"
href="//mymimi.com.au/cdn/shop/t/11/assets/search.css?v=94606528337522958341738695060"
media="print"
fetchpriority="low"
onload="this.media='all'"
><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>
<div class="fixed-overlay" aria-controls="SearchDrawer"></div>
<div class="drawer__inner">
<button class="drawer__close-btn z-1" aria-controls="SearchDrawer" type="button">
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close icon--medium"
fill="none"
viewBox="0 0 24 24"
>
<path d="M18.75 5.13496L5.25 18.8544" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.75 18.8544L5.25 5.13496" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<div class="drawer__content flex flex-col h-full w-full">
<div class="drawer__header search-drawer__header">
<h2 class="drawer__heading h3 flex items-center">
Search
</h2>
</div>
<div class="v-scrollable"><form
action="/search"
is="predictive-search"
data-results-limit="3"
method="get"
role="search"
class="search__form flex flex-col w-full h-full relative"
data-search-recommendation-empty="false"
>
<input type="hidden" name="options[prefix]" value="last">
<div class="search__field relative flex items-center">
<span class="search__field-icon absolute search__icon-search flex items-center justify-center"><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-search icon--large"
viewBox="0 0 24 24"
fill="none"
>
<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"/>
<path d="M16.4434 16.4453L20.9997 21.0016" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
<input
id="SearchInput-sections--18997227913428__search-drawer"
class="search__input form-control"
type="search"
name="q"
placeholder="Search"
role="combobox"
aria-expanded="false"
aria-owns="predictive-search-results"
aria-controls="predictive-search-results"
aria-haspopup="listbox"
aria-autocomplete="list"
autocorrect="off"
autocomplete="off"
autocapitalize="off"
spellcheck="false"
>
<label class="visually-hidden" for="SearchInput-sections--18997227913428__search-drawer">Search</label>
<button
type="reset"
class="search__reset absolute flex items-center justify-center text-subtext"
aria-label="Clear search term"
>
<span>Clear</span>
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner icon icon--extra-medium"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="4" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button></div>
<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">
<h4 class="h5">Most searched keywords</h4>
<ul class="flex flex-wrap gap-x-1 gap-y-2"><li>
<a
href="/search?type=product&options%5Bprefix%5D=last&q=menstrual disc"
class="reversed-link text-capitalize"
>menstrual disc
</a>
</li></ul>
</div>
<div class="search__products-recommendation search__box-item grid gap-6">
<h4 class="h5">Most searched products</h4>
<ul class="grid gap-4"><li class="predictive-search__list-item">
<div class="flex items-center gap-3"><a href="/products/my-mimi-menstrual-disc" class="media-wrapper blocks-radius-sm">
<img
class=""
src="//mymimi.com.au/cdn/shop/files/mymimi-menstrual-disc-10_29b68281-c7a4-4388-9597-e02eb6ac0a17.jpg?v=1739505839&width=150"
alt="my mimi reusable menstrual disc made from 100% medical grade silicone – sustainable period care solution"
width="100"
is="image-lazy"
loading="lazy"
height="100.0"
>
</a><div class="grid gap-1">
<p class="block m-0">
<a href="/products/my-mimi-menstrual-disc" class="reversed-link text-pcard-title">menstrual disc - comfortable & leak-free protection</a>
</p>
<div
class="
f-price"
><div class="f-price__regular">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="f-price-item f-price-item--regular">
$44.95
</span>
</div>
<div class="f-price__sale">
<span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="f-price-item f-price-item--sale">
$44.95
</span>
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="f-price-item f-price-item--regular">
<s>
</s>
</span></div>
<div class="f-price__unit-wrapper hidden">
<span class="visually-hidden">Unit price</span>
<div class="f-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span class="visually-hidden">per </span><span data-unit-price-base-unit></span></div>
</div>
</div>
</div>
</div>
</li></ul>
</div></div><div class="search__box search__results w-full h-full">
<div
id="PredictiveSearchResults-sections--18997227913428__search-drawer"
role="listbox"
class="h-full w-full"
></div>
</div>
</div>
</form>
</div>
</div>
</div>
</search-drawer>
</div><div id="shopify-section-sections--18997227913428__quick-view" class="shopify-section shopify-section-group-overlay-group section-group-overlay-quick-view">
</div>
<!-- END sections: overlay-group -->
<ul hidden>
<li id="a11y-refresh-page-message">Choosing a selection results in a full page refresh.</li>
<li id="a11y-new-window-message">Opens in a new window.</li>
</ul>
<script src="//mymimi.com.au/cdn/shop/t/11/assets/quick-view.js?v=2969925004022311361738695060" defer="defer"></script>
<script>
// LazyLoad YouTube Videos
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll(".youtube-wrapper").forEach(function(el) {
el.addEventListener("click", function() {
let videoId = el.getAttribute("data-id");
let iframe = document.createElement("iframe");
iframe.src = `https://www.youtube.com/embed/${videoId}?autoplay=1&rel=0`;
iframe.setAttribute("frameborder", "0");
iframe.setAttribute("allowfullscreen", "true");
iframe.style.width = "100%";
iframe.style.height = "100%";
el.innerHTML = ""; // Clear existing content
el.appendChild(iframe); // Append new iframe
});
});
});
// Delay Shopify Chatbubble
document.addEventListener("mousemove", function() {
if (!window.chatLoaded) {
let script = document.createElement("script");
script.src = "https://cdn.shopify.com/shopifycloud/chat-ui/v1/shopifyChatWidget.js"; // Confirm this is the correct URL
script.defer = true;
document.body.appendChild(script);
window.chatLoaded = true;
}
}, { once: true });
// Facebook Pixel – Load Only After Cookie Consent
document.addEventListener("DOMContentLoaded", function() {
if (localStorage.getItem("cookieConsent") === "true") {
let script = document.createElement("script");
script.src = "https://connect.facebook.net/en_US/fbevents.js";
script.async = true;
document.body.appendChild(script);
}
});
</script>
<script type="text/javascript">
// Statcounter code for mymimi http://www.mymimi.com.au on Shopify
var sc_project=13000597;
var sc_invisible=1;
var sc_security="4841207b";
</script>
<script
type="text/javascript"
src="https://www.statcounter.com/counter/counter.js"
defer
></script>
<noscript>
<div class="statcounter">
<a
title="Web Analytics"
href="https://statcounter.com/"
target="_blank"
><img
class="statcounter"
src="https://c.statcounter.com/13000597/0/4841207b/1/"
alt="Web Analytics"
referrerPolicy="no-referrer-when-downgrade"
></a>
</div>
</noscript>
<!-- End of Statcounter Code -->
<script>
//Excludes unnecessary Java Script //
if (window.innerWidth < 768) {
document.querySelectorAll("script[src]").forEach(script => {
if (script.src.includes("unnecessary-script.js")) {
script.remove();
}
});
}
</script>
<style> .page-title,h1.page-title {text-align: left !important;} </style>
<div id="shopify-block-AZFd6aGFnS21FS1hVa__13768625480086291342" class="shopify-block shopify-app-block"><script>
window['ShopifyForms'] = {
...window['ShopifyForms'],
currentPageType: "index"
};
</script>
</div><div id="shopify-block-Aajk0TllTV2lJZTdoT__15683396631634586217" class="shopify-block shopify-app-block"><script
id="chat-button-container"
data-horizontal-position=bottom_right
data-vertical-position=higher
data-icon=chat_bubble
data-text=chat_with_us
data-color=#000000
data-secondary-color=#ffffff
data-ternary-color=#6a6a6a
data-domain=mymimi.com.au
data-shop-domain=mymimi.com.au
data-external-identifier=U2BG7PIE85FwmotxUSDUz88zhyxP7YvLT7iuDpm0qac
>
</script>
</div></body>
</html>