/** Shopify CDN: Minification failed

Line 292:0 Unexpected "{"
Line 292:1 Expected identifier but found "%"
Line 302:0 Unexpected "{"
Line 302:1 Expected identifier but found "%"

**/
.header__icon--menu {
	position: initial;
}

.js menu-drawer > details > summary::before,
.js menu-drawer > details[open]:not(.menu-opening) > summary::before {
	content: '';
	position: absolute;
	cursor: default;
	width: 100%;
	height: calc(100vh - 100%);
	height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
	top: 100%;
	left: 0;
	background: rgba(var(--color-foreground), 0.5);
	opacity: 0;
	visibility: hidden;
	z-index: 2;
	transition: opacity var(--duration-default) ease,
	visibility var(--duration-default) ease;
}

menu-drawer > details[open] > summary::before {
	visibility: visible;
	opacity: 1;
}

.menu-drawer {
	position: absolute;
	transform: translateX(-100%);
	opacity: 0;
	visibility: hidden;
	z-index: 3;
	left: 0;
	top: 100%;
	width: 100%;
	padding: 0;
	border-left: 0;
	background-color: rgb(var(--color-background));
	overflow-x: hidden;
}

.js .menu-drawer {
	height: calc(100vh - 100%);
	height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
}

.js details[open] > .menu-drawer,
.js details[open] > .menu-drawer__submenu {
	transition: transform var(--duration-default) ease,
	visibility var(--duration-default) ease, opacity var(--duration-default) ease;
}

.no-js details[open] > .menu-drawer,
.js details[open].menu-opening > .menu-drawer {
	transform: translateX(0);
	visibility: visible;
	opacity: 1;
}

details[open] > .menu-drawer__submenu {
	visibility: visible;
}

@media screen and (min-width: 750px) {
	.no-js .menu-drawer {
		height: auto;
	}
}

.menu-drawer__inner-container {
	position: relative;
	height: 100%;
}

.menu-drawer__navigation-container {
	display: grid;
	grid-template-rows: 1fr auto;
	align-content: space-between;
	overflow-y: auto;
	height: 100%;
}

.menu-drawer__navigation {
	padding: 0 1.5rem;
}

.menu-drawer__inner-submenu {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

.menu-drawer__inner-submenu * {
	text-transform: none;
}

.menu-drawer__inner-submenu .link {
	font-size: 1.2rem;
	color: rgba(var(--color-foreground), 0.75);
	font-weight: var(--font-body-weight);
}

.menu-drawer__inner-submenu .menu-drawer__menu-item {
	border-bottom: 0.1rem solid rgba(var(--color-foreground-secondary), 0.3);
}

.menu-drawer__menu .link {
	font-size: 1.1rem;
}


.js .menu-drawer__menu li {
	margin-bottom: 0.2rem;
}

.menu-drawer__menu-item {
	padding: 2.2rem 0;
	text-decoration: none;
}

.menu-drawer__submenu .menu-drawer__submenu .menu-drawer__menu-item {
	padding-left: 2rem;
}

.menu-drawer summary.menu-drawer__menu-item {
	padding-right: 5.2rem;
}

.menu-drawer__menu-item {
	border-bottom: 0.1rem solid rgba(var(--color-foreground-secondary), 0.75);
}

.menu-drawer__menu-item--active,
.menu-drawer__menu-item:focus,
.menu-drawer__close-button:focus,
.menu-drawer__menu-item:hover,
.menu-drawer__close-button:hover {
	color: rgb(var(--color-foreground));
}

.menu-drawer__menu-item--active:hover {
	background-color: rgba(var(--color-foreground), 0.08);
}


.menu-drawer .icon-arrow {
	width: 1.3rem;
}

.menu-drawer__menu-item > .icon-caret {
	right: 0;
}

.js .menu-drawer__submenu {
	width: 100%;
	background-color: rgb(var(--color-background));
	z-index: 1;
	visibility: hidden;
}

.menu-drawer__close-button {
	margin-top: 1.5rem;
	padding: 1.2rem 2.6rem;
	text-decoration: none;
	display: flex;
	display: none;
	align-items: center;
	font-size: 1.4rem;
	width: 100%;
	background-color: transparent;
	font-family: var(--font-body-family);
	font-style: var(--font-body-style);
}

.no-js .menu-drawer__close-button {
	display: none;
}

.menu-drawer__close-button .icon-arrow {
	transform: rotate(180deg);
	margin-right: 1rem;
}

.menu-drawer__utility-links {
	padding: 7.5rem 2.5rem;
}

.menu-drawer__account {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	width: 100%;
	height: 60px;
}

.menu-drawer__account .icon-account {
	height: 1.5rem;
	width: 1.5rem;
	margin-right: 1rem;
}

.menu-drawer__account-register {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.6rem;
	text-transform: none;
	font-weight: var(--font-body-weight);
}

.menu-drawer__account-register a {
	font-weight: var(--font-header-menu-weight);
	margin-left: 0.3rem;
}

.menu-drawer .menu-drawer__utility-account {
	text-transform: none;
	font-weight: var(--font-body-weight);
}

.menu-drawer__utility-account-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.6rem;
}

.menu-drawer__utility-account-body {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0 2rem;
	background-color: rgba(var(--color-scondary-element-background));
}

.menu-drawer__utility-account-body li {
	width: 100%;
}

.menu-drawer__utility-account-body li:not(:last-child) {
	border-bottom: 0.1rem solid rgba(var(--color-foreground-secondary), .5);
}

.menu-drawer__utility-account-body li a {
	display: block;
	padding: 1.7rem 0;
	text-decoration: none;
}

.menu-drawer__utility-account-cart {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu-drawer__utility-account-cart a {
	flex: 1;
}

.menu-drawer__utility-account a {
	color: rgba(var(--color-foreground), 0.75);
	font-size: 1.2rem;
	transition: var(--duration-short);
}

.menu-drawer__utility-account a:hover {
	color: rgba(var(--color-foreground));
}

.menu-drawer__utility-name {
	color: rgba(var(--color-foreground));
}
/* 
.menu-drawer .cart-count-bubble {
	position: static;
	top: auto;
	right: auto;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.2rem;
} */
{%if template.name !="index"%}
.menu-drawer .cart-count-bubble {
	position: static;
	top: auto;
	right: auto;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.2rem;
    transform: translate(-32%,0%) !important;
}
{% endif %}
.menu-drawer .list-social {
	margin-top: 1rem;
	justify-content: center;
	gap: 2rem;
}

.menu-drawer .list-social__link {
	padding: 0;
	background-color: transparent;
	border-radius: 0;
	color: rgba(var(--color-foreground), 0.6);
	font-size: 1.6rem;
}

.menu-drawer .list-social__link .icon {
	height: 2rem;
	width: 2rem;
}

.menu-drawer .list-social__link:hover {
	color: rgba(var(--color-foreground))
}

.menu-drawer .list-social__item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-drawer .list-social:empty {
	display: none;
}

.menu-drawer__utility-links .list-social__link:hover {
	color: rgba(var(--color-foreground), 0.75);
}
