/** Shopify CDN: Minification failed

Line 70:32 Unexpected "{"
Line 89:32 Unexpected "{"

**/
/* RESET : On vient reboot les règles auto du navigateur */
* {
	line-height: 1.2;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	/* Optimiser l'affichage des fonts (surtout pour Mac) */
}
*,
:before,
:after {
	box-sizing: border-box;
}
html,
body {
	padding: 0;
	margin: 0;
}
html {
	padding-bottom: 0 !important;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
	display: inline-block;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
img,
picture,
video {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.rte ul {
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
}
p, li {
	text-wrap: pretty;
}
button {
	cursor: pointer;
}

/**********************************************************************************************/
/* MAIN : Règles générales du thème */
/* Formulaires  -------------------- */
.field {
    display: flex;
    flex-direction: column-reverse;
}
label {
    text-align: left;
}
input[type='text'],
input[type='tel'],
input[type='email']:not(#Banner-{{ section.id }}),
input[type='password'],
textarea, select {
    padding: 12px;
    color: #001A14;
    font-family: var(--body-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;
    width: 100%;
    -webkit-appearance: none;
    background: #FFF;
    border: 1px solid var(--black-300);
    margin: 0 0 10px;
    border-radius: 10px;
}
input[type='text']:focus-visible,
input[type='tel']:focus-visible,
input[type='email']:not(#Banner-{{ section.id }}):focus-visible,
input[type='password']:focus-visible,
textarea:focus-visible, select:focus-visible {
    outline: 1px solid var(--black-500);
}
textarea {
    form-sizing: content;
    min-height: 2lh;
    max-height: 10lh;
}
.select {
    position: relative;
}
.select svg {
    color: var(--white);
    position: absolute;
    top: 17px;
    right: 16px;
    width: 16px;
}
input::placeholder,
textarea::placeholder {
    color: var(--white);
}
input[type='checkbox'],
input[type='radio'] {
    -webkit-appearance: auto;
}

/**********************************************************************************************/
/* Utility */
.mm-centered {
	text-align: center;
}
.mm-text-start {
	text-align: start;
}
.mm-text-end {
	text-align: end;
}
.mm-w-full {
	width: 100%;
}
.mm-h-full {
	height: 100%;
}
.mm-w-fit {
	width: fit-content;
}
.mm-h-fit {
	height: fit-content;
}
.mm-h-0 {
	height: 0;
}
.mm-h-auto {
	height: auto;
}
.mm-grid {
	display: grid;
}
.mm-inline {
	display: inline-block;
}
.mm-flex {
	display: flex;
}
.mm-row {
    flex-direction: row;
}
.mm-row-reverse {
    flex-direction: row-reverse;
}
.mm-flex-wrap {
	flex-wrap: wrap;
}
.mm-no-wrap {
	white-space: nowrap;
}
.mm-column {
	flex-direction: column;
}
.mm-column-reverse {
	flex-direction: column-reverse;
}
.mm-row-reverse {
	flex-direction: row-reverse;
}
.mm-justify-between {
	justify-content: space-between;
}
.mm-justify-around {
	justify-content: space-around;
}
.mm-justify-center {
	justify-content: center;
}
.mm-justify-end {
	justify-content: flex-end;
}
.mm-justify-start {
	justify-content: flex-start;
}
.mm-align-center {
	align-items: center;
}
.mm-align-start {
	align-items: flex-start;
}
.mm-align-end {
	align-items: flex-end;
}
.mm-align-baseline {
	align-items: baseline;
}
.mm-flex-grow {
	flex-grow: 1;
}
.mm-flex-shrink {
	flex-shrink: 0;
}
.mm-none {
	display: none;
}
.mm-show {
	display: block;
}
.mm-flex-1 {
	flex: 1;
}
.mm-z-index-1 {
	z-index: 1;
}
.mm-0,
.mm-0 > * {
	margin: 0;
}
.mm-auto {
    margin: auto;
}
.mm-order-1 {
	order: 1;
}
.mm-text-balance {
	text-wrap: balance;
}
.mm-upcase {
	text-transform: uppercase;
}
.mm-capitalize {
	text-transform: capitalize;
}
.mm-linethrough {
	text-decoration: line-through;
}
.mm-underline {
	text-decoration: underline;
}
.visually-hidden {
	display: none;
}
.visible {
	opacity: 1;
	pointer-events: auto;
	display: block;
}
.hidden {
	opacity: 0;
	pointer-events: none;
	cursor: default;
}
.mm-overflow-hidden {
	overflow: hidden;
}
.mm-overflow-visible {
	overflow: visible;
}
.mm-pointer-events-none {
	pointer-events: none;
}
.stop-scrolling {
	height: 100% !important;
	overflow: hidden !important;
}
.mm-cursor-pointer {
	cursor: pointer;
}
.mm-cursor-default {
	cursor: default;
}
.mm-list-unstyled {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mm-opacity-0 {
	opacity: 0;
}
.mm-absolute {
	position: absolute;
}
.mm-relative {
	position: relative;
}
.mm-filter-img img {
	filter: brightness(1) contrast(1.2);
}
.mm-list-style-inside ul {
	list-style: inside;
}

/**********************************************************************************************/
/* LOADER */
.loader {
	width: 14px;
	height: 14px;
	border: 2px solid var(--black-500);
	border-bottom-color: transparent;
	border-radius: 50%;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	display: none;
}
.mm-loading *:not(.loader) {
	display: none !important;
}
.mm-loading .loader {
	display: block;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
		100% {
		transform: rotate(360deg);
	}
}

/**********************************************************************************************/
/* Responsive */
.mm-desktop,
.mm-desktop-425,
.mm-desktop-768,
.mm-desktop-990,
.mm-desktop-1024,
.mm-desktop-1200,
.mm-desktop-1280 {
	display: flex !important;
}
.mm-desktop-block {
	display: block !important;
}
.mm-desktop-inline-block {
	display: inline-block !important;
}
.mm-mobile,
.mm-mobile-425,
.mm-mobile-768,
.mm-mobile-990,
.mm-mobile-1024,
.mm-mobile-1200,
.mm-mobile-1280,
.mm-mobile-block,
.mm-mobile-inline-block {
	display: none !important;
}
@media (min-width: 1441px) {
	.mm-desktop-none-1440 {
		display: none !important;
	}
}
@media (max-width: 1440px) {
	.mm-mobile-none-1440 {
		display: none !important;
	}
}

@media (max-width: 1280px) {
	.mm-desktop-1280 {
		display: none !important;
	}
    .mm-mobile-1280 {
		display: flex !important;
	}
}

@media (max-width: 1200px) {
	.mm-desktop-1200 {
		display: none !important;
	}
    .mm-mobile-1200 {
		display: flex !important;
	}
}

@media (max-width: 1024px) {
	.mm-desktop-1024 {
		display: none !important;
	}
    .mm-mobile-1024 {
		display: flex !important;
	}
}

@media (max-width: 990px) {
	.mm-desktop-990 {
		display: none !important;
	}
	.mm-mobile-990 {
		display: flex !important;
	}
}

@media (max-width: 768px) {
	.mm-desktop-768 {
		display: none !important;
	}
	.mm-mobile-768 {
		display: flex !important;
	}
}

@media (min-width: 768px) {
    .mm-desktop-none {
		display: none !important;
	}
}
@media (max-width: 768px) {
	.mm-desktop,
	.mm-desktop-block,
	.mm-desktop-inline-block,
    .mm-mobile-none {
		display: none !important;
	}
	.mm-mobile {
		display: flex !important;
	}
	.mm-mobile-block {
		display: block !important;
	}
	.mm-mobile-inline-block {
		display: inline-block !important;
	}
}

@media (max-width: 425px) {
    .mm-mobile-425 {
		display: flex !important;
	}
    .mm-desktop-425 {
        display: none !important;
    }
}

/**********************************************************************************************/
/* Product card */
.mm-product-card {
	grid-gap: 12px;
}
.mm-product-card-label {
	padding: 2px 6px !important;
	letter-spacing: 0.8px;
	top: 8px;
	left: 8px;
}
.mm-product-card-image {
	width: 100%;
	height: fit-content;
	aspect-ratio: 1;
}
.mm-product-card-image-second {
    transition: all 0.3s ease-in-out;
	opacity: 0;
	top: 0;
	left: 0;
}
.mm-product-card:hover .mm-product-card-image-second {
	opacity: 1;
}
.mm-product-card-info {
	grid-gap: 8px;
}

/**********************************************************************************************/
/* Dropdown */
.mm-filter-container .mm-dropdown {
	padding-bottom: 12px;
	border-bottom: 1px solid #E5E6E5;
}
.mm-filter-container .mm-dropdown-question {
    grid-gap: 8px;
	padding-top: 8px;
}
.mm-filter-container .mm-dropdown-question svg {
    transition: all 0.3s ease-in-out;
}
.mm-filter-container .mm-dropdown-question.active svg {
    rotate: -180deg;
}
.mm-filter-container .mm-dropdown-answer {
    cursor: default;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.mm-filter-container .mm-answer {
    padding-top: 20px;
}

.mm-product-form-faq .mm-dropdown:not(:last-child) {
	border-bottom: 1px solid #E5E6E5;
}
.mm-product-form-faq .mm-dropdown-question {
	padding-bottom: 22px;
    grid-gap: 8px;
}
.mm-product-form-faq .mm-dropdown-answer {
    cursor: default;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.mm-product-form-faq .mm-answer {
    padding-bottom: 22px;
}
.mm-product-form-faq .mm-answer .metafield-rich_text_field,
.mm-product-form-faq .mm-answer .metafield-rich_text_field ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.mm-dropdown .mm-icon-minus {
    display: none;
}
.mm-dropdown .active .mm-icon-minus {
    display: flex;
}
.mm-dropdown .active .mm-icon-plus {
    display: none;
}

/**********************************************************************************************/
/* Breaking block */
.mm-breaking-block {
    min-height: 440px;
    padding: 20px 20px 20px 90px;
}
.mm-breaking-block-container {
    max-width: 420px; 
    grid-gap: 20px;
}
.mm-breaking-block-image {
    left: 0;
    top: 0;
}

@media (max-width: 1024px) { 
    .mm-breaking-block {
        min-height: 350px;
        padding: 30px;
    }
    .mm-breaking-block-container {
        grid-gap: 10px;
        align-items: center;
        justify-content: center;
    }
    .mm-breaking-block-container p {
        text-align: center;
    }
}

/**********************************************************************************************/
/* Pagination */
.mm-pagination {
	padding: var(--margin-3, 12px);
}
.mm-pagination .mm-icon-chevron-right {
	rotate: -90deg;
}
.mm-pagination .mm-icon-chevron-left {
	rotate: 90deg;
}
.mm-pagination-link {
	width: 60px;
	height: 50px;
	border-bottom: 2px solid #E5E6E5;
	transition: all 0.3s ease-in-out;
}
.mm-pagination-link:hover {
	border-bottom: 2px solid #0B0B0B;
}
.mm-pagination-link-page {
	border-bottom: 2px solid #0B0B0B;
}

@media (max-width: 768px) { 
	.mm-pagination {
		padding: var(--margin-5, 20px) 0;
	}
}

/**********************************************************************************************/
/* Ratio image */
.mm-ratio-1-desktop {
	aspect-ratio: 1;
	height: auto !important;
}
.mm-ratio-16-9-desktop {
	aspect-ratio: 16/9;
	height: auto !important;
}
.mm-ratio-9-16-desktop {
	aspect-ratio: 9/16;
	height: auto !important;
}
.mm-ratio-3-4-desktop {
	aspect-ratio: 3/4;
	height: auto !important;
}
.mm-ratio-none-desktop {
	aspect-ratio: initial;
}

@media (max-width: 990px) { 
	.mm-ratio-1-mobile-990 {
		aspect-ratio: 1 !important;
	}
	.mm-ratio-16-9-mobile-990 {
		aspect-ratio: 16/9 !important;
	}
	.mm-ratio-9-16-mobile-990 {
		aspect-ratio: 9/16 !important;
	}
	.mm-ratio-3-4-mobile-990 {
		aspect-ratio: 3/4 !important;
	}
	.mm-ratio-none-mobile-990 {
		aspect-ratio: initial !important;
	}
}

@media (max-width: 768px) { 
	.mm-ratio-1-mobile,
	.mm-ratio-1-mobile-768 {
		aspect-ratio: 1 !important;
	}
	.mm-ratio-16-9-mobile,
	.mm-ratio-16-9-mobile-768 {
		aspect-ratio: 16/9 !important;
	}
	.mm-ratio-9-16-mobile,
	.mm-ratio-9-16-mobile-768 {
		aspect-ratio: 9/16 !important;
	}
	.mm-ratio-3-4-mobile,
	.mm-ratio-3-4-mobile-768 {
		aspect-ratio: 3/4 !important;
	}
	.mm-ratio-none-mobile,
	.mm-ratio-none-mobile-768 {
		aspect-ratio: initial !important;
	}
}

.mm-contain img {
	object-fit: contain !important;
}

.mm-cover img {
	object-fit: cover !important;
}

/**********************************************************************************************/
/* Qtty btn */
.mm-qtty-btn {
    border: none;
}
.mm-qtty-btn[disabled] {
    cursor: default; 
}
.mm-qtty-btn[disabled] .mm-icon-plus {
    opacity: 0.5;
}
.mm-product-quantity input {
    pointer-events: none;
    border: none;
    -moz-appearance: textfield;
}
.mm-product-quantity input::-webkit-outer-spin-button,
.mm-product-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/**********************************************************************************************/
/* Return to line */
.mm-return-to-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mm-return-to-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mm-return-to-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}