/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(/wp-content/themes/afrepp-theme/dist/_/node_modules/leaflet/dist/images/layers.png?ver=a6137456);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/wp-content/themes/afrepp-theme/dist/_/node_modules/leaflet/dist/images/layers-2x.png?ver=4f0283c6);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(/wp-content/themes/afrepp-theme/dist/_/node_modules/leaflet/dist/images/marker-icon.png?ver=2273e3d8);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

figure {
  display: block;
}

figure img {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}

button {
  padding: 0;
  border: 0;
  background: 0;
  cursor: pointer;
  font: inherit;
}
button:focus {
  outline: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 62.5%;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: currentColor;
}

strong {
  font-weight: 600;
}

@font-face {
  font-family: "Public Sans";
  src: url(/wp-content/themes/afrepp-theme/dist/assets/fonts/PublicSans-SemiBold.woff2?ver=90948fdd) format("woff2"), url(/wp-content/themes/afrepp-theme/dist/assets/fonts/PublicSans-SemiBold.woff?ver=e8fd1144) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url(/wp-content/themes/afrepp-theme/dist/assets/fonts/PublicSans-Regular.woff2?ver=02c35514) format("woff2"), url(/wp-content/themes/afrepp-theme/dist/assets/fonts/PublicSans-Regular.woff?ver=70d5b87f) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url(/wp-content/themes/afrepp-theme/dist/assets/fonts/PublicSans-Bold.woff2?ver=44a54961) format("woff2"), url(/wp-content/themes/afrepp-theme/dist/assets/fonts/PublicSans-Bold.woff?ver=36067908) format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
p:not(:last-child) {
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  p:not(:last-child) {
    margin-bottom: 4.8309178744vw;
  }
}
p > a {
  text-decoration: underline;
}
p > a:hover {
  color: var(--quintery);
}

h1, .h1, .form--search label input[type=text], .woocommerce .cart-collaterals .cart_totals table .recurring-totals th {
  font-size: 2.3611111111vw;
  line-height: 3.0555555556vw;
}
@media (max-width: 63.99em) {
  h1, .h1, .form--search label input[type=text], .woocommerce .cart-collaterals .cart_totals table .recurring-totals th {
    font-size: 8.2125603865vw;
    line-height: 10.6280193237vw;
  }
}

h2, .h2, blockquote p {
  font-size: 3.0555555556vw;
  line-height: 3.75vw;
  font-weight: var(--semibold);
}
@media (max-width: 63.99em) {
  h2, .h2, blockquote p {
    font-size: 10.6280193237vw;
    line-height: 13.0434782609vw;
  }
}

h3, .h3, .article--body h2, [data-section-scroll-nav].active, .woocommerce form fieldset legend, .woocommerce:not(body) h2 {
  font-size: 2.3611111111vw;
  line-height: 3.0555555556vw;
  font-weight: var(--semibold);
}
@media (max-width: 63.99em) {
  h3, .h3, .article--body h2, [data-section-scroll-nav].active, .woocommerce form fieldset legend, .woocommerce:not(body) h2 {
    font-size: 8.2125603865vw;
    line-height: 10.6280193237vw;
  }
}

h4, .h4, .article--body h3, .article--body .block-highlight-image .highlight-image--text, .article--body > .wp-block-pullquote p, .article--body ol li:before, .product--meta .amount, .product--summary .amount {
  font-size: 1.6666666667vw;
  line-height: 2.3611111111vw;
}
@media (max-width: 63.99em) {
  h4, .h4, .article--body h3, .article--body .block-highlight-image .highlight-image--text, .article--body > .wp-block-pullquote p, .article--body ol li:before, .product--meta .amount, .product--summary .amount {
    font-size: 5.7971014493vw;
    line-height: 8.2125603865vw;
  }
}

.paragraph, .article--body > .block-custom-readalso .bloc--name, .paiement--panier table.shop_table .first-payment-date, .bloc--name, .woocommerce form .form-row input, .woocommerce form .form-row textarea {
  font-size: 1.1111111111vw;
  line-height: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .paragraph, .article--body > .block-custom-readalso .bloc--name, .paiement--panier table.shop_table .first-payment-date, .bloc--name, .woocommerce form .form-row input, .woocommerce form .form-row textarea {
    font-size: 3.8647342995vw;
    line-height: 7.2463768116vw;
  }
}

.subtitle {
  font-size: 0.9722222222vw;
  line-height: 1.6666666667vw;
}
@media (max-width: 63.99em) {
  .subtitle {
    font-size: 3.3816425121vw;
    line-height: 5.7971014493vw;
  }
}

.semibold, .article--body ol li:before {
  font-weight: var(--semibold);
}

.regular, .article--body > .wp-block-pullquote p {
  font-weight: var(--regular);
}

.bold {
  font-weight: var(--bold);
}

.text-center {
  text-align: center;
}

a.underline {
  text-decoration: none;
  display: inline;
  background-image: linear-gradient(to bottom, transparent 20%, var(--fontColor) 21%);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size 0.2s ease-in-out 0.2s;
}
a.underline:hover {
  color: var(--quintery);
  background-image: linear-gradient(to bottom, transparent 20%, var(--quintery) 21%);
}

:root {
  --white: #ffffff;
  --black: #000000;
  --grey: #DDDDDD;
  --primary: #65CFE9;
  --primaryOp: #cff0f7;
  --secondary: #00747A;
  --secondaryOp: #E5F1F1;
  --secondaryOp40: #CAE4E0;
  --secondaryOp50: #00747A50;
  --tertiary: #00505C;
  --quaternary: #7BBBB2;
  --quaternaryOp: #7BBBB210;
  --quaternaryOp20: #7BBBB220;
  --quintery: #8E258D;
  --bg: #F1F8F7;
  --borderColor: var(--secondaryOp);
  --fontColor: var(--tertiary);
  --fontColor2: #006874;
  --font: "Public Sans", sans-serif;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 800;
  --containerWidth: 95.1388888889vw;
  --bgMenu: #005A67;
}

/*------------------------------------*\
  #GRID
\*------------------------------------*/
.button--link, .article--body .wp-block-buttons a, .woocommerce .button.view, .woocommerce #place_order, .woocommerce button.button[type=submit], .woocommerce .wc-proceed-to-checkout a.checkout-button, .woocommerce .restore-item, .woocommerce input.button, .woocommerce .wc-address-book-meta > a, .button--border, .woocommerce a.add_to_cart_button, .woocommerce .button.alt, .woocommerce button.button, .woocommerce a.button, .woocommerce a.edit, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a, .edit-profile-picture input[type=submit] {
  display: inline-block;
  padding: 0.6944444444vw 2.4305555556vw;
  color: var(--tertiary);
  line-height: initial;
  font-weight: var(--semibold);
  background-color: var(--primary);
  border-radius: 30px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
@media (max-width: 63.99em) {
  .button--link, .article--body .wp-block-buttons a, .woocommerce .button.view, .woocommerce #place_order, .woocommerce button.button[type=submit], .woocommerce .wc-proceed-to-checkout a.checkout-button, .woocommerce .restore-item, .woocommerce input.button, .woocommerce .wc-address-book-meta > a, .button--border, .woocommerce a.add_to_cart_button, .woocommerce .button.alt, .woocommerce button.button, .woocommerce a.button, .woocommerce a.edit, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a, .edit-profile-picture input[type=submit] {
    padding: 2.4154589372vw 8.4541062802vw;
  }
}
.button--link[class*=bg-], .article--body .wp-block-buttons a[class*=bg-], .woocommerce [class*=bg-].button.view, .woocommerce [class*=bg-]#place_order, .woocommerce .wc-proceed-to-checkout a[class*=bg-].checkout-button, .woocommerce [class*=bg-].restore-item, .woocommerce input[class*=bg-].button, .woocommerce .wc-address-book-meta > a[class*=bg-], [class*=bg-].button--border, .woocommerce a[class*=bg-].add_to_cart_button, .woocommerce [class*=bg-].button.alt, .woocommerce button[class*=bg-].button, .woocommerce a[class*=bg-].button, .woocommerce a[class*=bg-].edit, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a[class*=bg-], .edit-profile-picture input[class*=bg-][type=submit] {
  color: var(--white);
}
@media (min-width: 64em) {
  .button--link:hover, .article--body .wp-block-buttons a:hover, .woocommerce .button.view:hover, .woocommerce #place_order:hover, .woocommerce .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce .restore-item:hover, .woocommerce input.button:hover, .woocommerce .wc-address-book-meta > a:hover, .button--border:hover, .woocommerce a.add_to_cart_button:hover, .woocommerce .button.alt:hover, .woocommerce button.button:hover, .woocommerce a.button:hover, .woocommerce a.edit:hover, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a:hover, .edit-profile-picture input[type=submit]:hover {
    background-color: var(--white);
    border-color: var(--primary);
    color: var(--primary);
  }
  .button--link:hover.bg-primary, .article--body .wp-block-buttons a:hover.bg-primary, .woocommerce .button.view:hover.bg-primary, .woocommerce #place_order:hover.bg-primary, .woocommerce .wc-proceed-to-checkout a.checkout-button:hover.bg-primary, .woocommerce .restore-item:hover.bg-primary, .woocommerce input.button:hover.bg-primary, .woocommerce .wc-address-book-meta > a:hover.bg-primary, .button--border:hover.bg-primary, .woocommerce a.add_to_cart_button:hover.bg-primary, .woocommerce .button.alt:hover.bg-primary, .woocommerce button.button:hover.bg-primary, .woocommerce a.button:hover.bg-primary, .woocommerce a.edit:hover.bg-primary, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a:hover.bg-primary, .edit-profile-picture input[type=submit]:hover.bg-primary {
    border-color: var(--primary);
    color: var(--primary);
  }
  .button--link:hover.bg-primaryOp, .article--body .wp-block-buttons a:hover.bg-primaryOp, .woocommerce .button.view:hover.bg-primaryOp, .woocommerce #place_order:hover.bg-primaryOp, .woocommerce .wc-proceed-to-checkout a.checkout-button:hover.bg-primaryOp, .woocommerce .restore-item:hover.bg-primaryOp, .woocommerce input.button:hover.bg-primaryOp, .woocommerce .wc-address-book-meta > a:hover.bg-primaryOp, .button--border:hover.bg-primaryOp, .woocommerce a.add_to_cart_button:hover.bg-primaryOp, .woocommerce .button.alt:hover.bg-primaryOp, .woocommerce button.button:hover.bg-primaryOp, .woocommerce a.button:hover.bg-primaryOp, .woocommerce a.edit:hover.bg-primaryOp, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a:hover.bg-primaryOp, .edit-profile-picture input[type=submit]:hover.bg-primaryOp {
    border-color: var(--primaryOp);
    color: var(--primaryOp);
  }
  .button--link:hover.bg-secondary, .article--body .wp-block-buttons a:hover.bg-secondary, .woocommerce .button.view:hover.bg-secondary, .woocommerce #place_order:hover.bg-secondary, .woocommerce .wc-proceed-to-checkout a.checkout-button:hover.bg-secondary, .woocommerce .restore-item:hover.bg-secondary, .woocommerce input.button:hover.bg-secondary, .woocommerce .wc-address-book-meta > a:hover.bg-secondary, .button--border:hover.bg-secondary, .woocommerce a.add_to_cart_button:hover.bg-secondary, .woocommerce .button.alt:hover.bg-secondary, .woocommerce button.button:hover.bg-secondary, .woocommerce a.button:hover.bg-secondary, .woocommerce a.edit:hover.bg-secondary, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a:hover.bg-secondary, .edit-profile-picture input[type=submit]:hover.bg-secondary {
    border-color: var(--secondary);
    color: var(--secondary);
  }
  .button--link:hover.bg-secondaryOp40, .article--body .wp-block-buttons a:hover.bg-secondaryOp40, .woocommerce .button.view:hover.bg-secondaryOp40, .woocommerce #place_order:hover.bg-secondaryOp40, .woocommerce .wc-proceed-to-checkout a.checkout-button:hover.bg-secondaryOp40, .woocommerce .restore-item:hover.bg-secondaryOp40, .woocommerce input.button:hover.bg-secondaryOp40, .woocommerce .wc-address-book-meta > a:hover.bg-secondaryOp40, .button--border:hover.bg-secondaryOp40, .woocommerce a.add_to_cart_button:hover.bg-secondaryOp40, .woocommerce .button.alt:hover.bg-secondaryOp40, .woocommerce button.button:hover.bg-secondaryOp40, .woocommerce a.button:hover.bg-secondaryOp40, .woocommerce a.edit:hover.bg-secondaryOp40, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a:hover.bg-secondaryOp40, .edit-profile-picture input[type=submit]:hover.bg-secondaryOp40 {
    border-color: var(--secondaryOp40);
    color: var(--secondaryOp40);
  }
  .button--link:hover.bg-tertiary, .article--body .wp-block-buttons a:hover.bg-tertiary, .woocommerce .button.view:hover.bg-tertiary, .woocommerce #place_order:hover.bg-tertiary, .woocommerce .wc-proceed-to-checkout a.checkout-button:hover.bg-tertiary, .woocommerce .restore-item:hover.bg-tertiary, .woocommerce input.button:hover.bg-tertiary, .woocommerce .wc-address-book-meta > a:hover.bg-tertiary, .button--border:hover.bg-tertiary, .woocommerce a.add_to_cart_button:hover.bg-tertiary, .woocommerce .button.alt:hover.bg-tertiary, .woocommerce button.button:hover.bg-tertiary, .woocommerce a.button:hover.bg-tertiary, .woocommerce a.edit:hover.bg-tertiary, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a:hover.bg-tertiary, .edit-profile-picture input[type=submit]:hover.bg-tertiary {
    border-color: var(--tertiary);
    color: var(--tertiary);
  }
  .button--link:hover.bg-quaternary, .article--body .wp-block-buttons a:hover.bg-quaternary, .woocommerce .button.view:hover.bg-quaternary, .woocommerce #place_order:hover.bg-quaternary, .woocommerce .wc-proceed-to-checkout a.checkout-button:hover.bg-quaternary, .woocommerce .restore-item:hover.bg-quaternary, .woocommerce input.button:hover.bg-quaternary, .woocommerce .wc-address-book-meta > a:hover.bg-quaternary, .button--border:hover.bg-quaternary, .woocommerce a.add_to_cart_button:hover.bg-quaternary, .woocommerce .button.alt:hover.bg-quaternary, .woocommerce button.button:hover.bg-quaternary, .woocommerce a.button:hover.bg-quaternary, .woocommerce a.edit:hover.bg-quaternary, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a:hover.bg-quaternary, .edit-profile-picture input[type=submit]:hover.bg-quaternary {
    border-color: var(--quaternary);
    color: var(--quaternary);
  }
  .button--link:hover.bg-quaternaryOp, .article--body .wp-block-buttons a:hover.bg-quaternaryOp, .woocommerce .button.view:hover.bg-quaternaryOp, .woocommerce #place_order:hover.bg-quaternaryOp, .woocommerce .wc-proceed-to-checkout a.checkout-button:hover.bg-quaternaryOp, .woocommerce .restore-item:hover.bg-quaternaryOp, .woocommerce input.button:hover.bg-quaternaryOp, .woocommerce .wc-address-book-meta > a:hover.bg-quaternaryOp, .button--border:hover.bg-quaternaryOp, .woocommerce a.add_to_cart_button:hover.bg-quaternaryOp, .woocommerce .button.alt:hover.bg-quaternaryOp, .woocommerce button.button:hover.bg-quaternaryOp, .woocommerce a.button:hover.bg-quaternaryOp, .woocommerce a.edit:hover.bg-quaternaryOp, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a:hover.bg-quaternaryOp, .edit-profile-picture input[type=submit]:hover.bg-quaternaryOp {
    border-color: var(--quaternaryOp);
    color: var(--quaternaryOp);
  }
  .button--link:hover.bg-quintery, .article--body .wp-block-buttons a:hover.bg-quintery, .woocommerce .button.view:hover.bg-quintery, .woocommerce #place_order:hover.bg-quintery, .woocommerce .wc-proceed-to-checkout a.checkout-button:hover.bg-quintery, .woocommerce .restore-item:hover.bg-quintery, .woocommerce input.button:hover.bg-quintery, .woocommerce .wc-address-book-meta > a:hover.bg-quintery, .button--border:hover.bg-quintery, .woocommerce a.add_to_cart_button:hover.bg-quintery, .woocommerce .button.alt:hover.bg-quintery, .woocommerce button.button:hover.bg-quintery, .woocommerce a.button:hover.bg-quintery, .woocommerce a.edit:hover.bg-quintery, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a:hover.bg-quintery, .edit-profile-picture input[type=submit]:hover.bg-quintery {
    border-color: var(--quintery);
    color: var(--quintery);
  }
}

.button--full, .woocommerce .button.view, .woocommerce #place_order, .woocommerce button.button[type=submit], .woocommerce .wc-proceed-to-checkout a.checkout-button, .woocommerce .restore-item, .woocommerce input.button, .woocommerce .wc-address-book-meta > a {
  background-color: var(--quintery);
  color: var(--white);
  border: 1px solid var(--quintery);
}
.button--full:hover, .woocommerce .button.view:hover, .woocommerce #place_order:hover, .woocommerce button.button[type=submit]:hover, .woocommerce .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce .restore-item:hover, .woocommerce input.button:hover, .woocommerce .wc-address-book-meta > a:hover {
  background-color: var(--white);
  color: var(--quintery);
  border-color: var(--quintery);
}

.button--drag {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 3.125vw);
  left: calc(100% - 6.25vw - 3.4722222222vw);
  width: 6.25vw;
  height: 6.25vw;
  border-radius: 6.25vw;
  background-color: var(--quaternary);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 63.99em) {
  .button--drag {
    display: none;
    top: calc(50% - 10.8695652174vw);
    left: calc(100% - 21.7391304348vw);
    width: 21.7391304348vw;
    height: 21.7391304348vw;
    border-radius: 21.7391304348vw;
  }
}
.button--drag svg:first-child {
  transform: translateY(-5px);
}
.button--drag svg:last-child {
  transform: translateY(5px);
}

.button--arrow, .button--download {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.button--arrow > span, .button--download > span {
  text-decoration: underline;
}
.button--arrow > *:last-child, .button--download > *:last-child {
  margin-left: 1.7361111111vw;
}
@media (max-width: 63.99em) {
  .button--arrow > *:last-child, .button--download > *:last-child {
    margin-left: 6.038647343vw;
  }
}
.button--arrow svg path, .button--download svg path {
  transition: all 0.3s;
  transform-origin: 50% 50%;
  transform-box: fill-box;
}

.next a svg path, .next a svg circle, .next button svg path, .next button svg circle, .prev a svg path, .prev a svg circle, .prev button svg path, .prev button svg circle {
  transition: all 0.3s;
  transform-origin: 50% 50%;
  transform-box: fill-box;
}

.button--arrow:hover svg path, .next a:hover svg path, .next button:hover svg path {
  transform: translateX(5px);
}

.prev a:hover svg circle, .prev button:hover svg circle {
  transform: translateX(-5px);
}

.button--download svg path:nth-child(2) {
  transform: translateY(0) rotate(90deg);
}
.button--download:hover svg path:nth-child(2) {
  transform: translateY(2px) rotate(90deg);
}
.button--download:hover svg path:last-child {
  transform: scaleX(1.3);
}

.button--search {
  padding-bottom: 0.3472222222vw;
  text-decoration: none;
  display: inline;
  background-image: linear-gradient(to bottom, transparent 20%, var(--fontColor) 21%);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size 0.2s ease-in-out 0.2s;
  display: flex;
  align-items: center;
}
@media (max-width: 63.99em) {
  .button--search {
    padding-bottom: 2.4154589372vw;
    width: 100%;
  }
}
.button--search span {
  color: var(--fontColor);
}
.button--search svg {
  margin-right: 0.6944444444vw;
  transform: scaleX(-1);
  width: 1.1805555556vw !important;
}
@media (max-width: 63.99em) {
  .button--search svg {
    width: 4.1062801932vw !important;
    margin-right: 2.4154589372vw;
  }
}
.button--search svg * {
  fill: var(--fontColor);
}

.button--burger {
  font-size: 1.4rem;
  z-index: 1;
}
.button--burger > span {
  flex-direction: column;
  color: var(--fontColor);
}
.button--burger > span:first-child {
  display: flex;
}
.button--burger > span:first-child svg {
  width: 40px;
  height: auto;
}
.button--burger > span:first-child svg * {
  fill: var(--fontColor);
}
.button--burger > span:last-child {
  display: none;
}
.button--burger > span:last-child svg {
  width: 22px;
  height: auto;
}
.button--burger.active > span:first-child {
  display: none;
}
.button--burger.active > span:last-child {
  display: flex;
}

.edit-profile-picture input[type=submit] {
  background-color: transparent;
  border: 1px solid var(--quintery);
  color: var(--quintery);
}
@media (min-width: 64em) {
  .edit-profile-picture input[type=submit]:hover {
    background-color: var(--quintery);
    color: var(--white);
    border-color: var(--quintery);
  }
}

.button--border, .woocommerce a.add_to_cart_button, .woocommerce .button.alt, .woocommerce button.button, .woocommerce a.button, .woocommerce a.edit, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a {
  background-color: transparent;
  border: 1px solid var(--quintery);
  color: var(--quintery);
}
@media (min-width: 64em) {
  .button--border:hover, .woocommerce a.add_to_cart_button:hover, .woocommerce .button.alt:hover, .woocommerce button.button:hover, .woocommerce a.button:hover, .woocommerce a.edit:hover, .woocommerce .woocommerce-MyAccount-navigation-link--customer-logout > a:hover {
    background-color: var(--quintery);
    color: var(--white);
    border-color: var(--quintery);
  }
}

.form .fieldset--flex {
  display: flex;
}
@media (max-width: 63.99em) {
  .form .fieldset--flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
.form select, .form input[type=text], .form textarea {
  -webkit-appearance: none;
  margin: 0;
  padding: 0.6944444444vw 1.3888888889vw;
  width: 100%;
  background-color: var(--white);
  font-family: inherit;
  color: var(--fontColor);
  font-size: inherit;
  border-radius: 3px;
}
.form select::-moz-placeholder, .form input[type=text]::-moz-placeholder, .form textarea::-moz-placeholder {
  color: var(--fontColor);
}
.form select::placeholder, .form input[type=text]::placeholder, .form textarea::placeholder {
  color: var(--fontColor);
}
@media (max-width: 63.99em) {
  .form select, .form input[type=text], .form textarea {
    padding: 10px 15px;
    border-radius: 5px;
  }
}
.form select option, .form input[type=text] option, .form textarea option {
  background-color: var(--bg);
  color: var(--fontColor);
}
.form select {
  cursor: pointer;
}
.form input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--secondary);
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  border-radius: 100%;
}
@media (max-width: 63.99em) {
  .form input[type=radio] {
    width: 3.6231884058vw;
    height: 3.6231884058vw;
  }
}
.form input[type=radio]:checked {
  background-color: var(--secondary);
}
.form input[type=checkbox], .form input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: 0;
  margin-bottom: 0.3472222222vw;
  margin-right: 0.6944444444vw;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid var(--borderColor);
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  border-radius: 100%;
}
@media (max-width: 63.99em) {
  .form input[type=checkbox], .form input[type=radio] {
    margin-bottom: 1.2077294686vw;
    margin-right: 2.4154589372vw;
    width: 3.6231884058vw;
    height: 3.6231884058vw;
  }
}
.form input[type=checkbox]:checked, .form input[type=radio]:checked {
  background-color: var(--primary);
}
.form input, .form select, .form textarea {
  outline-color: var(--secondary);
}
.form input[type=submit] {
  -webkit-appearance: none;
  border: none;
}
.form input:not([type=submit]), .form textarea {
  box-sizing: border-box;
}
.form:not(.form--search) select, .form:not(.form--search) input[type=text], .form:not(.form--search) input[type=password], .form:not(.form--search) textarea {
  border: 1px solid var(--secondary);
}
.form label.input--search {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.form label.input--search input, .form label.input--search select {
  padding-left: 3.4722222222vw;
}
@media (max-width: 63.99em) {
  .form label.input--search input, .form label.input--search select {
    padding-left: 12.077294686vw;
  }
}
.form label.input--search svg {
  position: absolute;
  width: 3.4722222222vw !important;
  height: 1.25vw !important;
}
@media (max-width: 63.99em) {
  .form label.input--search svg {
    width: 12.077294686vw !important;
    height: 4.347826087vw !important;
  }
}
.form label.input--search svg * {
  fill: var(--secondary);
}
.form .document--tags > span {
  position: relative;
  display: block;
  margin-bottom: 1.3888888889vw;
  font-weight: var(--bold);
  width: 100%;
}

.input-wrapper, label.checkbox {
  cursor: pointer;
}
.input-wrapper:hover input[type=checkbox]:not(:checked), .input-wrapper:hover input[type=radio]:not(:checked), label.checkbox:hover input[type=checkbox]:not(:checked), label.checkbox:hover input[type=radio]:not(:checked) {
  background-color: var(--primary);
  opacity: 0.5;
}

.form-informations {
  font-size: 1.1111111111vw;
  font-style: italic;
  padding-right: 1.3888888889vw;
}
@media (min-width: 131.25em) {
  .form-informations {
    font-size: 1.6rem;
  }
}
@media (max-width: 63.99em) {
  .form-informations {
    font-size: 3.8647342995vw;
    padding-right: 4.8309178744vw;
  }
}

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.share--wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(90px + ((100% - 330px) / 12 * 2));
  z-index: 2;
}
@media (max-width: 63.99em) {
  .share--wrapper {
    position: relative;
    right: initial;
  }
}

.share--toolbox {
  position: sticky;
  top: 5.5555555556vw;
}
@media (max-width: 63.99em) {
  .share--toolbox {
    position: initial;
    top: initial;
    display: flex;
    flex-direction: row;
  }
}
.share--toolbox > li {
  background-color: var(--white);
  line-height: 0;
  font-size: 0;
  border-radius: 100%;
}
.share--toolbox > li:not(:last-child) {
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .share--toolbox > li:not(:last-child) {
    margin-bottom: 7.2463768116vw;
    margin-right: 4.8309178744vw;
  }
}

.share--socials {
  position: relative;
}
.share--socials ul {
  position: absolute;
  left: 100%;
  top: -3px;
  bottom: -3px;
  display: flex;
  align-items: center;
  padding-left: 1.0416666667vw;
  margin-left: -1.0416666667vw;
  z-index: -1;
  border-radius: 0 30px 30px 0;
  background-color: var(--secondary);
  visibility: hidden;
  overflow: hidden;
}
@media (max-width: 63.99em) {
  .share--socials ul {
    padding-right: 3.6231884058vw;
    margin-right: -3.6231884058vw;
    padding-left: 0;
    margin-left: 0;
    right: 100%;
    left: initial;
    border-radius: 30px 0 0 30px;
  }
}
.share--socials ul li {
  position: relative;
  padding: 0 1.0416666667vw;
}
@media (max-width: 63.99em) {
  .share--socials ul li {
    padding: 0 3.6231884058vw;
  }
}
.share--socials ul li:first-child {
  padding-left: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .share--socials ul li:first-child {
    padding-left: 4.8309178744vw;
  }
}
.share--socials ul li:last-child {
  padding-right: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .share--socials ul li:last-child {
    padding-right: 4.8309178744vw;
  }
}
.share--socials ul li:not(:last-child) {
  border-right: 1px solid var(--white);
}
.share--socials ul li button {
  display: block;
}
.share--socials ul .icon svg {
  width: auto;
}
.share--socials ul .icon svg * {
  fill: var(--white);
}

.share--background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-color: var(--secondary);
  opacity: 0;
  border-radius: 100%;
}

.woocommerce form .form-row {
  margin-bottom: 1.3888888889vw;
  padding: 0;
}
@media (max-width: 63.99em) {
  .woocommerce form .form-row {
    margin-bottom: 4.8309178744vw;
  }
}
.woocommerce form .form-row label {
  margin-bottom: 0.6944444444vw;
  cursor: pointer;
}
@media (max-width: 63.99em) {
  .woocommerce form .form-row label {
    margin-bottom: 2.4154589372vw;
  }
}
.woocommerce form .form-row label.checkbox {
  display: block;
}
.woocommerce form .form-row .required {
  color: var(--quintery);
}
.woocommerce form .form-row input, .woocommerce form .form-row textarea {
  padding: 0.6944444444vw 1.25vw;
  border: 1px solid var(--secondary);
  border-radius: 3px;
  font-family: var(--font);
  color: var(--secondary);
  background-color: var(--white);
}
@media (max-width: 63.99em) {
  .woocommerce form .form-row input, .woocommerce form .form-row textarea {
    padding: 2.4154589372vw 4.347826087vw;
  }
}
.woocommerce form .form-row input::-moz-placeholder, .woocommerce form .form-row textarea::-moz-placeholder {
  line-height: inherit;
}
.woocommerce form .form-row input::placeholder, .woocommerce form .form-row textarea::placeholder {
  line-height: inherit;
}
.woocommerce form .form-row input.input-text::-moz-placeholder, .woocommerce form .form-row textarea.input-text::-moz-placeholder {
  color: var(--secondaryOp50);
}
.woocommerce form .form-row input.input-text::placeholder, .woocommerce form .form-row textarea.input-text::placeholder {
  color: var(--secondaryOp50);
}
.woocommerce form .form-row input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--secondary);
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  border-radius: 100%;
}
@media (max-width: 63.99em) {
  .woocommerce form .form-row input[type=radio] {
    width: 3.6231884058vw;
    height: 3.6231884058vw;
  }
}
.woocommerce form .form-row input[type=radio]:checked {
  background-color: var(--secondary);
}
.woocommerce form .form-row input[type=checkbox], .woocommerce form .form-row input[type=radio] {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: 0;
  margin-bottom: 0.3472222222vw;
  margin-right: 0.6944444444vw;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid var(--borderColor);
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  border-radius: 100%;
}
@media (max-width: 63.99em) {
  .woocommerce form .form-row input[type=checkbox], .woocommerce form .form-row input[type=radio] {
    margin-bottom: 1.2077294686vw;
    margin-right: 2.4154589372vw;
    width: 3.6231884058vw;
    height: 3.6231884058vw;
  }
}
.woocommerce form .form-row input[type=checkbox]:checked, .woocommerce form .form-row input[type=radio]:checked {
  background-color: var(--primary);
}
.woocommerce form .form-row textarea {
  min-height: 9.0277777778vw;
}
@media (max-width: 63.99em) {
  .woocommerce form .form-row textarea {
    min-height: 31.4009661836vw;
  }
}
.woocommerce form .form-row .select2-container {
  line-height: 1;
}
.woocommerce form .form-row em {
  font-size: 0.9722222222vw;
  line-height: 1.2;
}
@media (max-width: 63.99em) {
  .woocommerce form .form-row em {
    font-size: 3.1400966184vw;
    line-height: 1;
  }
}
.woocommerce form input.input-text {
  border-color: var(--secondary) !important;
}
.woocommerce form fieldset legend {
  display: block;
  margin-top: 4.8611111111vw;
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .woocommerce form fieldset legend {
    margin-top: 12.077294686vw;
    margin-bottom: 4.8309178744vw;
  }
}
.woocommerce form.login, .woocommerce form.lost_reset_password, .woocommerce form.register, .woocommerce form.checkout_coupon {
  border: none;
  padding: 0;
  width: calc(150px + ((100% - 330px) / 12 * 5));
}
@media (max-width: 63.99em) {
  .woocommerce form.login, .woocommerce form.lost_reset_password, .woocommerce form.register, .woocommerce form.checkout_coupon {
    width: 100%;
  }
}
.woocommerce form.login .woocommerce-form-login__rememberme, .woocommerce form.lost_reset_password .woocommerce-form-login__rememberme, .woocommerce form.register .woocommerce-form-login__rememberme, .woocommerce form.checkout_coupon .woocommerce-form-login__rememberme {
  margin-bottom: 0;
}
.woocommerce form.login p, .woocommerce form.lost_reset_password p, .woocommerce form.register p, .woocommerce form.checkout_coupon p {
  width: 100%;
}
.woocommerce form.checkout_coupon {
  width: calc(210px + ((100% - 330px) / 12 * 7));
}
.woocommerce table.my_account_orders td {
  vertical-align: top;
}
.woocommerce table.shop_table {
  border: none;
  margin-bottom: 4.1666666667vw;
}
@media (max-width: 63.99em) {
  .woocommerce table.shop_table {
    margin-bottom: 12.077294686vw;
  }
}
.woocommerce table.shop_table td {
  padding: 1.7361111111vw 0 1.3888888889vw;
  vertical-align: baseline;
}
@media (max-width: 63.99em) {
  .woocommerce table.shop_table td {
    padding: 6.038647343vw 0 4.8309178744vw;
  }
  .woocommerce table.shop_table td:last-child {
    text-align: right;
  }
}
.woocommerce table.shop_table td.woocommerce-orders-table__cell-order-actions, .woocommerce table.shop_table td .order-actions, .woocommerce table.shop_table td.membership-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 63.99em) {
  .woocommerce table.shop_table td.woocommerce-orders-table__cell-order-actions, .woocommerce table.shop_table td .order-actions, .woocommerce table.shop_table td.membership-actions {
    flex-direction: row;
    justify-content: space-between;
  }
  .woocommerce table.shop_table td.woocommerce-orders-table__cell-order-actions:before, .woocommerce table.shop_table td .order-actions:before, .woocommerce table.shop_table td.membership-actions:before {
    content: none;
  }
}
.woocommerce table.shop_table td.woocommerce-orders-table__cell-order-actions > a:not(:first-child), .woocommerce table.shop_table td .order-actions > a:not(:first-child), .woocommerce table.shop_table td.membership-actions > a:not(:first-child) {
  margin-left: 0;
}
.woocommerce table.shop_table td.woocommerce-orders-table__cell-order-actions > a:not(:last-child), .woocommerce table.shop_table td .order-actions > a:not(:last-child), .woocommerce table.shop_table td.membership-actions > a:not(:last-child) {
  margin-bottom: 0.6944444444vw;
}
.woocommerce table.shop_table td a:not(:first-child) {
  margin-left: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .woocommerce table.shop_table td a:not(:first-child) {
    margin-left: 0;
    margin-top: 2.4154589372vw;
  }
}
.woocommerce table.shop_table th {
  padding: 0.6944444444vw 0;
  font-size: 1.3888888889vw;
  line-height: 1;
  font-weight: var(--bold);
}
@media (max-width: 63.99em) {
  .woocommerce table.shop_table th {
    padding: 2.4154589372vw 0;
    font-size: 4.8309178744vw;
    line-height: 8.2125603865vw;
  }
}
.woocommerce table.shop_table thead th {
  border: none;
}
.woocommerce table.shop_table:not(.woocommerce-orders-table--subscriptions) tbody tr:first-child td {
  border-top: none;
}
@media (max-width: 63.99em) {
  .woocommerce table.shop_table.woocommerce-orders-table--subscriptions td {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .woocommerce table.shop_table.woocommerce-orders-table--subscriptions td:before {
    font-size: 4.8309178744vw;
    line-height: 8.2125603865vw;
  }
}
.woocommerce table.shop_table.subscription_details td > a {
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .woocommerce table.shop_table.subscription_details td > a {
    margin-bottom: 4.8309178744vw;
  }
}
.woocommerce table.shop_table tfoot th, .woocommerce table.shop_table .woocommerce-orders-table__cell-order-total th, .woocommerce table.shop_table .order-total th {
  padding: 1.7361111111vw 0 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .woocommerce table.shop_table tfoot th, .woocommerce table.shop_table .woocommerce-orders-table__cell-order-total th, .woocommerce table.shop_table .order-total th {
    padding: 6.038647343vw 0 4.8309178744vw;
  }
}
.woocommerce table.shop_table tfoot .amount, .woocommerce table.shop_table .woocommerce-orders-table__cell-order-total .amount, .woocommerce table.shop_table .order-total .amount {
  font-size: 1.3888888889vw;
  line-height: 2.3611111111vw;
  font-weight: var(--bold);
  color: var(--quintery);
}
@media (max-width: 63.99em) {
  .woocommerce table.shop_table tfoot .amount, .woocommerce table.shop_table .woocommerce-orders-table__cell-order-total .amount, .woocommerce table.shop_table .order-total .amount {
    font-size: 4.8309178744vw;
    line-height: 8.2125603865vw;
  }
}
.woocommerce .woocommerce-customer-details {
  padding-bottom: 7.9861111111vw;
  margin-bottom: 0;
  padding-top: 0;
}
.woocommerce .woocommerce-customer-details address {
  border: none;
  padding: 0;
}
.woocommerce:not(body) h2 {
  margin-bottom: 2.0833333333vw !important;
}
@media (max-width: 63.99em) {
  .woocommerce:not(body) h2 {
    margin-bottom: 7.2463768116vw !important;
  }
}
.woocommerce:not(body) h3 {
  margin-bottom: 1.3888888889vw;
}
.woocommerce .woocommerce-Addresses, .woocommerce .woocommerce-Address, .woocommerce .address_book {
  display: flex;
  flex-direction: column;
  width: 100% !important;
}
.woocommerce .woocommerce-Addresses:not(:last-child), .woocommerce .woocommerce-Address:not(:last-child), .woocommerce .address_book:not(:last-child) {
  margin-bottom: 3.4722222222vw;
}
@media (max-width: 63.99em) {
  .woocommerce .woocommerce-Addresses:not(:last-child), .woocommerce .woocommerce-Address:not(:last-child), .woocommerce .address_book:not(:last-child) {
    margin-bottom: 12.077294686vw;
  }
}
.woocommerce .woocommerce-Addresses .title, .woocommerce .woocommerce-Address .title, .woocommerce .address_book .title {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 63.99em) {
  .woocommerce .woocommerce-Addresses .title, .woocommerce .woocommerce-Address .title, .woocommerce .address_book .title {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 7.2463768116vw;
  }
}
.woocommerce .woocommerce-Addresses .title h3, .woocommerce .woocommerce-Address .title h3, .woocommerce .address_book .title h3 {
  margin-right: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .woocommerce .woocommerce-Addresses .title h3, .woocommerce .woocommerce-Address .title h3, .woocommerce .address_book .title h3 {
    margin-bottom: 2.4154589372vw;
  }
}
.woocommerce .product-remove .remove {
  background-color: var(--secondary);
  color: var(--white) !important;
}
.woocommerce table.cart {
  margin-bottom: 4.1666666667vw;
}
.woocommerce table.cart thead tr th {
  border-bottom: 1px solid var(--borderColor);
}
.woocommerce table.cart td.actions .coupon {
  width: calc(120px + ((100% - 270px) / 10 * 4.5));
}
.woocommerce table.cart td.actions .coupon .input-text {
  -webkit-appearance: none;
  margin: 0;
  padding: 0.6944444444vw 1.3888888889vw;
  width: calc(30px + ((100% - 90px) / 4 * 2)) !important;
  background-color: var(--white);
  font-family: inherit;
  color: var(--fontColor);
  font-size: inherit;
  border-radius: 3px;
}
.woocommerce table.cart td.actions .coupon .input-text::-moz-placeholder {
  color: var(--fontColor);
}
.woocommerce table.cart td.actions .coupon .input-text::placeholder {
  color: var(--fontColor);
}
@media (max-width: 63.99em) {
  .woocommerce table.cart td.actions .coupon .input-text {
    padding: 10px 15px;
    border-radius: 5px;
  }
}
.woocommerce table.cart .product-name {
  padding-left: 1.3888888889vw;
}
.woocommerce table.cart .product-thumbnail .media-image {
  margin: 0 auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.woocommerce table.cart .product-thumbnail .media-image picture img {
  width: 5.9027777778vw;
  border-radius: 10px;
}
.woocommerce table.cart .product-thumbnail .img--circle {
  position: absolute;
  top: -0.6944444444vw;
  right: -0.6944444444vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125vw;
  height: 3.125vw;
  border-radius: 100%;
  z-index: 1;
}
.woocommerce table.cart .product-thumbnail .img--circle > a {
  font-size: 0;
  line-height: 0;
}
.woocommerce .woocommerce-cart-form {
  width: calc(270px + ((100% - 330px) / 12 * 10));
  margin-left: calc(30px + ((100% - 330px) / 12 * 1));
}
.woocommerce .cart-collaterals {
  position: relative;
  padding-top: 3.4722222222vw;
  padding-bottom: 6.25vw;
}
.woocommerce .cart-collaterals .cart_totals {
  width: calc(180px + ((100% - 330px) / 12 * 6));
}
.woocommerce .cart-collaterals .cart_totals:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2.4305555556vw;
  right: -2.4305555556vw;
  background-color: var(--bg);
  z-index: -1;
}
.woocommerce .cart-collaterals .cart_totals table th {
  width: calc(120px + ((100% - 180px) / 6 * 4));
}
.woocommerce .cart-collaterals .cart_totals table .recurring-totals th {
  font-weight: var(--semibold);
  padding-top: 2.0833333333vw;
  padding-bottom: 0.6944444444vw;
}
.woocommerce .woocommerce-pagination .woocommerce-button:not(:last-child) {
  margin-right: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .woocommerce .woocommerce-pagination .woocommerce-button:not(:last-child) {
    margin-left: 7.2463768116vw;
  }
}
.woocommerce.user-incomplete-profile-notice {
  top: initial;
  bottom: 0;
  position: fixed;
  background: var(--primary);
}
.woocommerce .wc-memberships-restriction-message {
  margin-bottom: 0;
}

.section--cart {
  padding-bottom: 0;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  /*
   display: flex;
   justify-content: space-between;
   */
  color: inherit;
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
  border-top-width: 1px;
  border-color: var(--borderColor);
}
@media (max-width: 63.99em) {
  .woocommerce-error, .woocommerce-info, .woocommerce-message {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .woocommerce-error > a.button, .woocommerce-info > a.button, .woocommerce-message > a.button {
    margin-bottom: 4.8309178744vw;
  }
}
.woocommerce-error:before, .woocommerce-error:after, .woocommerce-info:before, .woocommerce-info:after, .woocommerce-message:before, .woocommerce-message:after {
  content: none;
}

body {
  font-family: var(--font);
  font-weight: var(--regular);
  font-size: 1.1111111111vw;
  line-height: 2.0833333333vw;
  color: var(--fontColor);
  transition: 0.3s;
  position: relative;
  width: 100vw;
  overflow-x: hidden;
}
@media (min-width: 131.25em) {
  body {
    font-size: 2.2rem;
    line-height: 4rem;
  }
}
@media (max-width: 63.99em) {
  body {
    font-size: 3.8647342995vw;
    line-height: 7.2463768116vw;
  }
}

section {
  padding: 6.25vw 0 5.5555555556vw;
}
@media (max-width: 63.99em) {
  section {
    padding: 10.8695652174vw 0 21.7391304348vw;
  }
}

.container {
  position: relative;
  margin: 0 auto;
  max-width: var(--containerWidth);
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 63.99em) {
  .container {
    max-width: 90.3381642512vw;
  }
}

.section {
  margin-top: 6.9444444444vw;
}
@media (max-width: 63.99em) {
  .section {
    margin-top: 100px;
  }
}
.section:first-of-type {
  margin-top: 0;
  padding-top: 15.625vw;
}
@media (max-width: 63.99em) {
  .section:first-of-type {
    padding-top: 200px;
  }
}

.section--blank:first-child {
  margin-top: 0;
  padding-top: 0;
}

.section--header h1 {
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .section--header h1 {
    margin-bottom: 20px;
  }
}
.section--header h1 .title--triangle {
  margin-top: 4.1666666667vw;
}

.bloc--name {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(90px + ((100% - 330px) / 12 * 3));
}
@media (max-width: 63.99em) {
  .bloc--name {
    width: 100%;
  }
}
.bloc--name svg {
  margin-left: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .bloc--name svg {
    margin-left: 7.2463768116vw;
  }
}

.content-padding .bloc--name {
  position: absolute;
  left: 0;
}
@media (max-width: 63.99em) {
  .content-padding .bloc--name {
    position: relative;
    margin-bottom: 6.038647343vw;
  }
}
.content-padding .container > div {
  padding-left: calc(90px + ((100% - 330px) / 12 * 3));
}
@media (max-width: 63.99em) {
  .content-padding .container > div {
    padding-left: 0;
  }
}

.accordion li {
  border-top: 1px solid var(--black);
}
.accordion li:last-child {
  border-bottom: 1px solid var(--black);
}
.accordion details summary {
  display: block;
  list-style: none;
  cursor: pointer;
  margin-top: 0.6944444444vw;
  margin-bottom: 0.6944444444vw;
}
.accordion details summary .icon {
  position: relative;
  transition: transform 0.3s;
  transform: rotate(-45deg);
  flex: none;
}
.accordion details summary p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion details summary::-webkit-details-marker, .accordion details summary::marker {
  display: none;
  font-size: 0;
}
.accordion details[open] {
  padding-bottom: 1.3888888889vw;
}
.accordion details[open] summary .icon {
  transform: rotate(0deg);
}

.avatar-wrapper img {
  width: auto;
  border-radius: 10px;
}

main {
  padding-top: 6.5972222222vw;
}
@media (max-width: 63.99em) {
  main {
    padding-top: 29.4685990338vw;
  }
}

svg {
  overflow: visible;
  height: auto;
}

[class*=columns] .row {
  display: flex;
}
@media (max-width: 63.99em) {
  [class*=columns] .row {
    flex-direction: column;
  }
}
[class*=columns] .row:not(:last-child) {
  margin-bottom: 8.3333333333vw;
}

@media (min-width: 64em) {
  .columns--2 .column {
    width: calc(100% / 2);
  }
  .columns--2 .column:not(:last-child) {
    margin-right: calc(30px + ((100% - 690px) / 24 * 0.1));
  }
}
@media (max-width: 63.99em) {
  .columns--2 .column:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media (max-width: 63.99em) {
  .columns--2.gutter--large .column:not(:last-child) {
    margin-right: calc(10px + ((100% - 230px) / 24 * 1));
  }
}

@media (min-width: 64em) {
  .columns--3 .column {
    width: calc(100% / 3);
  }
  .columns--3 .column:not(:last-child) {
    margin-right: calc(30px + ((100% - 690px) / 24 * 0.1));
  }
}
@media (max-width: 63.99em) {
  .columns--3 .column:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media (max-width: 63.99em) {
  .columns--3.gutter--large .column:not(:last-child) {
    margin-right: calc(10px + ((100% - 230px) / 24 * 1));
  }
}

@media (min-width: 64em) {
  .columns--4 .column {
    width: calc(100% / 4);
  }
  .columns--4 .column:not(:last-child) {
    margin-right: calc(30px + ((100% - 690px) / 24 * 0.1));
  }
}
@media (max-width: 63.99em) {
  .columns--4 .column:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media (max-width: 63.99em) {
  .columns--4.gutter--large .column:not(:last-child) {
    margin-right: calc(10px + ((100% - 230px) / 24 * 1));
  }
}

@media (min-width: 64em) {
  .columns--5 .column {
    width: calc(100% / 5);
  }
  .columns--5 .column:not(:last-child) {
    margin-right: calc(30px + ((100% - 690px) / 24 * 0.1));
  }
}
@media (max-width: 63.99em) {
  .columns--5 .column:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media (max-width: 63.99em) {
  .columns--5.gutter--large .column:not(:last-child) {
    margin-right: calc(10px + ((100% - 230px) / 24 * 1));
  }
}

@media (min-width: 64em) {
  .columns--6 .column {
    width: calc(100% / 6);
  }
  .columns--6 .column:not(:last-child) {
    margin-right: calc(30px + ((100% - 690px) / 24 * 0.1));
  }
}
@media (max-width: 63.99em) {
  .columns--6 .column:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media (max-width: 63.99em) {
  .columns--6.gutter--large .column:not(:last-child) {
    margin-right: calc(10px + ((100% - 230px) / 24 * 1));
  }
}

@media (min-width: 64em) {
  .columns--7 .column {
    width: calc(100% / 7);
  }
  .columns--7 .column:not(:last-child) {
    margin-right: calc(30px + ((100% - 690px) / 24 * 0.1));
  }
}
@media (max-width: 63.99em) {
  .columns--7 .column:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media (max-width: 63.99em) {
  .columns--7.gutter--large .column:not(:last-child) {
    margin-right: calc(10px + ((100% - 230px) / 24 * 1));
  }
}

@media (min-width: 64em) {
  .columns--8 .column {
    width: calc(100% / 8);
  }
  .columns--8 .column:not(:last-child) {
    margin-right: calc(30px + ((100% - 690px) / 24 * 0.1));
  }
}
@media (max-width: 63.99em) {
  .columns--8 .column:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media (max-width: 63.99em) {
  .columns--8.gutter--large .column:not(:last-child) {
    margin-right: calc(10px + ((100% - 230px) / 24 * 1));
  }
}

@media (min-width: 64em) {
  .columns--9 .column {
    width: calc(100% / 9);
  }
  .columns--9 .column:not(:last-child) {
    margin-right: calc(30px + ((100% - 690px) / 24 * 0.1));
  }
}
@media (max-width: 63.99em) {
  .columns--9 .column:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media (max-width: 63.99em) {
  .columns--9.gutter--large .column:not(:last-child) {
    margin-right: calc(10px + ((100% - 230px) / 24 * 1));
  }
}

@media (min-width: 64em) {
  .columns--10 .column {
    width: calc(100% / 10);
  }
  .columns--10 .column:not(:last-child) {
    margin-right: calc(30px + ((100% - 690px) / 24 * 0.1));
  }
}
@media (max-width: 63.99em) {
  .columns--10 .column:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media (max-width: 63.99em) {
  .columns--10.gutter--large .column:not(:last-child) {
    margin-right: calc(10px + ((100% - 230px) / 24 * 1));
  }
}

.bg-primary {
  background-color: var(--primary);
}
.bg-primary:not(.bg-quaternaryOp) {
  color: var(--white);
}

.bg-primaryOp {
  background-color: var(--primaryOp);
}
.bg-primaryOp:not(.bg-quaternaryOp) {
  color: var(--white);
}

.bg-secondary {
  background-color: var(--secondary);
}
.bg-secondary:not(.bg-quaternaryOp) {
  color: var(--white);
}

.bg-secondaryOp40 {
  background-color: var(--secondaryOp40);
}
.bg-secondaryOp40:not(.bg-quaternaryOp) {
  color: var(--white);
}

.bg-tertiary {
  background-color: var(--tertiary);
}
.bg-tertiary:not(.bg-quaternaryOp) {
  color: var(--white);
}

.bg-quaternary {
  background-color: var(--quaternary);
}
.bg-quaternary:not(.bg-quaternaryOp) {
  color: var(--white);
}

.bg-quaternaryOp {
  background-color: var(--quaternaryOp);
}
.bg-quaternaryOp:not(.bg-quaternaryOp) {
  color: var(--white);
}

.bg-quintery {
  background-color: var(--quintery);
}
.bg-quintery:not(.bg-quaternaryOp) {
  color: var(--white);
}

.absolute--link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.icon {
  line-height: 0;
  font-size: 0;
}

.pagination {
  margin-top: 4.1666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 63.99em) {
  .pagination {
    margin-top: 30px;
    padding-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.pagination .icon {
  display: block;
}
.pagination .rounded-line--svg {
  width: 5.6944444444vw;
  height: auto;
}
@media (min-width: 131.25em) {
  .pagination .rounded-line--svg {
    width: 82px;
  }
}
@media (max-width: 63.99em) {
  .pagination .rounded-line--svg {
    width: 40px;
  }
}
.pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination li:not(:last-child) {
  margin-right: 0.6944444444vw;
}
.pagination li:not(.btn) {
  width: 2.7777777778vw;
  height: 2.7777777778vw;
  border-radius: 100%;
}
@media (max-width: 63.99em) {
  .pagination li:not(.btn) {
    width: 40px;
    height: 40px;
  }
}
.pagination li.current {
  background-color: var(--primary);
  margin-left: 0.6944444444vw;
}
@media (max-width: 63.99em) {
  .pagination li.current {
    margin-left: 2.4154589372vw;
  }
}
.pagination li.btn svg {
  display: block;
}

.list--disc li:before {
  content: "";
  display: inline-block;
  margin-right: 1.3888888889vw;
  width: 0.6944444444vw;
  height: 0.6944444444vw;
  border-radius: 100%;
  background-color: var(--quintery);
}
@media (max-width: 63.99em) {
  .list--disc li:before {
    width: 2.4154589372vw;
    height: 2.4154589372vw;
    margin-right: 4.8309178744vw;
  }
}

.list--line li:not(:last-child) {
  margin-bottom: 0.6944444444vw;
}
@media (max-width: 63.99em) {
  .list--line li:not(:last-child) {
    margin-bottom: 2.4154589372vw;
  }
}
.list--line li:not(.no--disc):before {
  content: "\2014";
  display: inline-block;
  position: relative;
  margin-right: 0.6944444444vw;
}

blockquote {
  position: relative;
  padding-left: calc(((100% - 150px) / 6 * 1));
}
@media (max-width: 63.99em) {
  blockquote {
    padding-left: calc(20px + ((100% - 110px) / 12 * 3));
  }
}
blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6944444444vw;
  width: 3.4027777778vw;
  height: 2.7777777778vw;
  background-image: url(/wp-content/themes/afrepp-theme/dist/assets/images/quotes.svg?ver=e799b3a6);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}
@media (max-width: 63.99em) {
  blockquote:before {
    width: 11.8357487923vw;
    height: 9.6618357488vw;
    top: 2.4154589372vw;
  }
}
.bloc--figures {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .bloc--figures {
    flex-direction: column;
  }
}

.figures--wrapper {
  padding-top: 3.4722222222vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc(390px + ((100% - 690px) / 24 * 13));
}
@media (max-width: 63.99em) {
  .figures--wrapper {
    width: 100%;
  }
}

.figures--item {
  margin-bottom: 2.0833333333vw;
  width: calc(180px + ((100% - 420px) / 15 * 7));
  flex: none;
}
@media (max-width: 63.99em) {
  .figures--item {
    margin-bottom: 40px;
  }
  .figures--item.h3, .figures--item[data-section-scroll-nav].active {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
.figures--item:nth-child(odd) {
  margin-right: calc(60px + ((100% - 420px) / 15 * 1));
}
.figures--item span {
  display: block;
}

[data-filter] {
  cursor: pointer;
}

[data-filter-element].hidden {
  display: none;
}

[data-toggle-element] {
  display: none !important;
}
[data-toggle-element].toggled {
  display: block !important;
}

[data-section-scroll-nav] {
  cursor: pointer;
  transition: font-size 0.3s;
  text-align: right;
}
@media (min-width: 64em) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 63.99em) {
  .hide-mobile {
    display: none !important;
  }
}

.hidden {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.outdated-browser {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  background-color: white;
  font-family: "Poppins";
}
.outdated-browser svg {
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.outdated-browser h2 {
  margin-bottom: 30px;
  font-weight: 500;
}
.outdated-browser h3 {
  margin-bottom: 100px;
}
.outdated-browser .button--link {
  background-color: #FFC7C6;
  width: 300px;
  margin: 0 auto;
}

.select2-container--default .select2-selection--single {
  height: auto;
  padding: 0;
  border-color: var(--secondary);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal;
  padding: 0.6944444444vw 1.25vw;
  color: var(--fontColor);
}
@media (max-width: 63.99em) {
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 2.4154589372vw 4.347826087vw;
  }
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--quintery) transparent transparent transparent;
}

.split--background:after {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 50vw;
  height: 100vh;
  background-color: var(--bg);
  z-index: -1;
}

#map {
  margin-top: 4.8611111111vw;
  height: 48.6111111111vw;
  z-index: 0;
}
#map img {
  filter: grayscale(1);
}
@media (max-width: 63.99em) {
  #map {
    margin-top: 12.077294686vw;
    height: 120.7729468599vw;
  }
}
#map .leaflet-interactive {
  stroke: var(--secondary);
  fill: var(--secondary);
}

.marker-cluster {
  background-color: var(--secondary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: opacity 0.3s;
  opacity: 0.9 !important;
}
.marker-cluster:hover {
  opacity: 1 !important;
}
.marker-cluster > div {
  width: 80%;
  height: 80%;
  background-color: var(--quintery);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-encrypt [data-name]:before {
  content: attr(data-name);
}
.email-encrypt [data-domain]:before {
  content: attr(data-domain);
}

.main-header {
  position: fixed;
  top: 0;
  width: 100vw;
  padding-bottom: 0;
  padding-top: 1.3888888889vw;
  z-index: 6;
  background-color: transparent;
  transition: all 0.3s;
}
.main-header.stuck {
  background-color: var(--white);
  padding-top: 0.6944444444vw;
  padding-bottom: 0.6944444444vw;
}
@media (max-width: 63.99em) {
  .main-header.stuck {
    padding-top: 2.4154589372vw;
    padding-bottom: 2.4154589372vw;
  }
}
.main-header.stuck .main-logo img {
  width: 10.4166666667vw;
}
@media (max-width: 63.99em) {
  .main-header.stuck .main-logo img {
    width: 36.231884058vw;
  }
}
.main-header.stuck .navigation > ul:after {
  content: none;
}
@media (min-width: 64em) {
  .main-header.stuck .navigation > ul > li {
    padding-top: 0.6944444444vw;
  }
}
@media (max-width: 63.99em) {
  .main-header {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

.main-logo img {
  width: 13.6111111111vw;
  transition: width 0.3s;
}
@media (max-width: 63.99em) {
  .main-logo img {
    width: 54.1062801932vw;
    height: auto;
  }
}

.navigation {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
@media (max-width: 63.99em) {
  .navigation {
    justify-content: space-between;
  }
  .navigation > .login--toolbox {
    display: none;
  }
}
.navigation ul {
  align-self: stretch;
  list-style: none;
}
@media (max-width: 63.99em) {
  .navigation ul.toggled + .button--burger > span:first-child {
    display: none;
  }
  .navigation ul.toggled + .button--burger > span:last-child {
    display: flex;
  }
}
.navigation > ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 63.99em) {
  .navigation > ul {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--bgMenu);
    background-image: url(/wp-content/themes/afrepp-theme/dist/assets/images/shape-menu-mobile.svg?ver=a0b03ce6);
    background-repeat: no-repeat;
    background-position: 4.8309178744vw 19.3236714976vw;
    padding-top: 85px;
    padding-left: 7.2463768116vw;
    padding-right: 7.2463768116vw;
    color: var(--white);
    height: 100vh;
    overflow: scroll;
    z-index: 1;
  }
}
@media (min-width: 64em) {
  .navigation > ul {
    position: relative;
    display: flex !important;
  }
  .navigation > ul:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--tertiary);
    opacity: 0.1;
    z-index: 0;
  }
}
.navigation > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}
@media (max-width: 63.99em) {
  .navigation > ul > li {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }
  .navigation > ul > li:not(:first-child):not(:last-child) {
    font-size: 5.7971014493vw;
    border-bottom: 1px solid var(--quaternaryOp20);
  }
}
@media (min-width: 64em) {
  .navigation > ul > li:after {
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--fontColor);
    transform: scale(0);
    transition: transform 0.3s;
    z-index: 0;
  }
  .navigation > ul > li.menu-item:not(.item--last) {
    margin-right: 3.4722222222vw;
  }
}
@media (min-width: 64em) and (max-width: 63.99em) {
  .navigation > ul > li.menu-item:not(.item--last) {
    margin-right: 0;
  }
}
@media (min-width: 64em) {
  .navigation > ul > li:hover:after {
    transform: scale(1);
  }
}
.navigation .button--link:last-child {
  margin-left: 1.3888888889vw;
}
.navigation .button--search {
  background-image: linear-gradient(to bottom, transparent 20%, var(--white) 21%);
  margin-bottom: 9.6618357488vw;
  width: auto;
}
.navigation .button--search svg * {
  fill: var(--white);
}
.navigation .button--search span {
  color: var(--white);
}

@media (max-width: 63.99em) {
  .menu--link-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .menu--link-wrapper > span {
    display: block;
    width: 100%;
  }
  .menu--link-wrapper > span:after {
    content: "";
    margin-top: -2px;
    position: absolute;
    top: 50%;
    right: 0;
    height: 0;
    width: 0;
    border-style: solid;
    border-width: 0.6944444444vw 0.4861111111vw 0 0.4861111111vw;
    border-color: var(--primary) transparent transparent transparent;
    transition: transform 0.3s;
  }
}
@media (max-width: 63.99em) and (max-width: 63.99em) {
  .menu--link-wrapper > span:after {
    border-width: 2.4154589372vw 1.690821256vw 0 1.690821256vw;
  }
}
@media (max-width: 63.99em) {
  .menu--link-wrapper > span.active:after {
    transform: rotate(180deg);
  }
}

.menu-item-has-children > a {
  position: relative;
  z-index: 2;
}

.navigation--children {
  visibility: hidden;
  opacity: 0;
  padding-top: 6.25vw;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: -moz-max-content;
  max-width: max-content;
  transform: translateY(-40px);
  z-index: 1;
}
@media (min-width: 64em) {
  .navigation--children {
    display: block !important;
  }
}
@media (max-width: 63.99em) {
  .navigation--children {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
.navigation--children > ul {
  display: flex;
  flex-direction: column;
}
@media (max-width: 63.99em) {
  .navigation--children > ul > li {
    font-size: 4.347826087vw;
    line-height: 8.2125603865vw;
    padding-left: 4.8309178744vw;
  }
}

.navigation--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: var(--bg);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
  border-radius: 0 0 10px 10px;
}

.login--toolbox {
  display: flex;
}
@media (max-width: 63.99em) {
  .login--toolbox {
    justify-content: space-around;
  }
}

.menu--toolbox {
  width: 48.309178744vw;
}

.main-footer {
  margin-top: 2.7777777778vw;
  margin-bottom: 4.1666666667vw;
  background-color: var(--white);
}
@media (max-width: 63.99em) {
  .main-footer {
    margin-top: 9.6618357488vw;
    margin-bottom: 14.4927536232vw;
  }
}

.main-breadcrumbs {
  border-top: 1px solid var(--borderColor);
  padding-top: 2.0833333333vw;
  padding-bottom: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .main-breadcrumbs {
    padding-top: 4.8309178744vw;
    padding-bottom: 4.8309178744vw;
  }
}
.main-breadcrumbs a {
  text-decoration: underline;
}

.pre-footer {
  border-top: 1px solid var(--borderColor);
  padding-top: 7.6388888889vw;
  padding-bottom: 4.5138888889vw;
  display: flex;
}
@media (max-width: 63.99em) {
  .pre-footer {
    padding-top: 8.4541062802vw;
    padding-bottom: 9.6618357488vw;
  }
}
.pre-footer .media-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: calc(90px + ((100% - 330px) / 12 * 3));
  flex: none;
}
@media (max-width: 63.99em) {
  .pre-footer .media-image {
    width: calc(50px + ((100% - 110px) / 12 * 5));
    margin-right: calc(((100% - 110px) / 12 * 1));
  }
}
.pre-footer .media-image img {
  width: 11.1111111111vw;
  height: auto;
}
@media (max-width: 63.99em) {
  .pre-footer .media-image img {
    width: 100%;
  }
}

.pre-footer--content .h1 {
  width: calc(150px + ((100% - 240px) / 9 * 5));
  margin-bottom: 2.4305555556vw;
}
@media (max-width: 63.99em) {
  .pre-footer--content .h1 {
    width: 100%;
    margin-bottom: 8.4541062802vw;
  }
}
.pre-footer--content > div {
  display: flex;
  align-items: center;
}
@media (max-width: 63.99em) {
  .pre-footer--content > div {
    align-items: flex-end;
  }
  .pre-footer--content > div > div {
    flex-grow: 1;
  }
}
.pre-footer--content .button--link {
  display: block;
  margin-right: 6.25vw;
}
@media (max-width: 63.99em) {
  .pre-footer--content .button--link {
    margin-right: 0;
    margin-top: 9.6618357488vw;
    text-align: center;
  }
}
.pre-footer--content .contact--wrapper {
  display: flex;
  align-items: center;
  width: calc(180px + ((100% - 240px) / 9 * 6));
}

.legal-footer {
  display: flex;
  flex-direction: column;
  width: calc(270px + ((100% - 330px) / 12 * 9));
  margin-left: calc(60px + ((100% - 330px) / 12 * 3));
}
@media (max-width: 63.99em) {
  .legal-footer {
    margin-left: 0;
    flex-direction: column;
    width: 100%;
  }
}
.legal-footer > div {
  border-top: 1px solid var(--borderColor);
  padding-top: 1.3888888889vw;
  display: flex;
  width: calc(270px + (100% - 270px));
}
@media (max-width: 63.99em) {
  .legal-footer > div {
    padding-top: 4.8309178744vw;
    width: 100%;
    margin-bottom: 4.8309178744vw;
  }
}
.legal-footer ul {
  display: flex;
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .legal-footer ul {
    margin-bottom: 7.2463768116vw;
    flex-direction: column;
  }
}
.legal-footer ul li:not(:last-child) {
  margin-right: 1.7361111111vw;
}
@media (max-width: 63.99em) {
  .legal-footer ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2.4154589372vw;
  }
}
.legal-footer ul a {
  text-decoration: none;
  display: inline;
  background-image: linear-gradient(to bottom, transparent 20%, var(--fontColor) 21%);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size 0.2s ease-in-out 0.2s;
}

.box--search .toggle--wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 63.99em) {
  .box--search .toggle--wrapper {
    padding: 0 calc(10px + ((100% - 110px) / 12 * 1));
  }
}
.box--search .toggle--wrapper .button--close {
  position: absolute;
  top: 4.1666666667vw;
}
@media (max-width: 63.99em) {
  .box--search .toggle--wrapper .button--close {
    top: initial;
    bottom: 20px;
    right: 20px;
  }
}

.form--search {
  border-bottom: 1px solid var(--secondary);
}
.form--search fieldset {
  display: flex;
  align-items: center;
}
.form--search label {
  display: flex;
  align-items: center;
}
.form--search label > svg {
  width: 4.3055555556vw;
  height: auto;
  margin-right: 4.8611111111vw;
}
@media (max-width: 63.99em) {
  .form--search label > svg {
    width: 25px;
    margin-right: 20px;
  }
}
.form--search label > svg * {
  fill: var(--secondary);
}
.form--search label input[type=text] {
  padding: 0.6944444444vw 2.0833333333vw;
  border: none;
  background-color: transparent;
}
@media (max-width: 63.99em) {
  .form--search label input[type=text] {
    font-size: 7.2463768116vw;
  }
}
.form--search .button--submit svg {
  width: 4.3055555556vw;
  height: auto;
}
.form--search .button--submit svg * {
  fill: var(--secondary);
}
@media (max-width: 63.99em) {
  .form--search .button--submit svg {
    width: 30px;
  }
}

.section--search {
  padding-top: 2.7777777778vw;
}
@media (max-width: 63.99em) {
  .section--search {
    padding-top: 9.6618357488vw;
  }
}

.search--wrapper {
  width: calc(240px + ((100% - 330px) / 12 * 9));
}
@media (max-width: 63.99em) {
  .search--wrapper {
    width: 100%;
  }
}

.search--number {
  color: var(--quintery);
}

.search--listing {
  border-top: 1px solid var(--borderColor);
  margin-top: 1.3888888889vw;
  padding-top: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .search--listing {
    margin-top: 7.2463768116vw;
    padding-top: 7.2463768116vw;
  }
}

.search--item {
  position: relative;
  padding-bottom: 4.1666666667vw;
  margin-bottom: 2.0833333333vw;
  border-bottom: 1px solid var(--borderColor);
}
@media (max-width: 63.99em) {
  .search--item {
    padding-bottom: 16.9082125604vw;
    margin-bottom: 7.2463768116vw;
  }
}

.search--text {
  margin-bottom: 1.0416666667vw;
}
.search--text:not(:empty) {
  margin-top: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .search--text:not(:empty) {
    margin-top: 4.8309178744vw;
  }
}
@media (max-width: 63.99em) {
  .search--text {
    margin-bottom: 3.6231884058vw;
  }
}

.search--keywords {
  padding: 0.4861111111vw 1.0416666667vw;
  margin-top: 2.0833333333vw;
  background-color: var(--bg);
}
@media (max-width: 63.99em) {
  .search--keywords {
    padding: 1.690821256vw 3.6231884058vw;
    margin-top: 7.2463768116vw;
  }
}
.search--keywords > a {
  text-decoration: underline;
}

.navigation--social {
  padding-right: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .navigation--social {
    margin-bottom: 6.038647343vw;
    padding-right: 0;
  }
}
.navigation--social ul {
  display: flex;
  align-items: center;
}
.navigation--social li {
  font-size: 0;
  line-height: 0;
}
@media (max-width: 63.99em) {
  .navigation--social li svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.navigation--social li:not(:last-child) {
  margin-right: 2.7777777778vw;
}
@media (max-width: 63.99em) {
  .navigation--social li:not(:last-child) {
    margin-right: 7.2463768116vw;
  }
}

.main-header .navigation--social {
  margin-top: 13.2850241546vw;
  margin-bottom: 8.4541062802vw;
}
.main-header .navigation--social li svg * {
  fill: var(--white);
}

.news--listing {
  width: 100%;
  flex: none;
}
.news--listing > .h3 {
  margin-bottom: 3.4722222222vw;
}
@media (max-width: 63.99em) {
  .news--listing > .h3 {
    margin-bottom: 7.2463768116vw;
  }
}

.news--item {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 63.99em) {
  .news--item {
    flex-direction: column;
  }
}
.news--item time {
  display: block;
  margin-bottom: 1.0416666667vw;
  font-weight: var(--semibold);
}
@media (max-width: 63.99em) {
  .news--item time {
    margin-bottom: 2.4154589372vw;
  }
}
.news--item .media-image {
  width: 18.0555555556vw;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 63.99em) {
  .news--item .media-image {
    width: 100%;
    margin-bottom: 4.8309178744vw;
  }
}
.news--item .media-image img {
  transition: transform 0.3s;
}
.news--item:hover .media-image img {
  transform: scale(1.05);
}
.news--item:not(:last-child) {
  position: relative;
  margin-bottom: 2.0833333333vw;
  padding-bottom: 2.0833333333vw;
  border-bottom: 1px solid var(--borderColor);
}
@media (max-width: 63.99em) {
  .news--item:not(:last-child) {
    margin-bottom: 7.2463768116vw;
    padding-bottom: 7.2463768116vw;
  }
}

.news--item-content {
  width: calc(180px + ((100% - 240px) / 9 * 6));
  padding-right: calc(30px + ((100% - 240px) / 9 * 1));
}
@media (max-width: 63.99em) {
  .news--item-content {
    width: 100%;
    padding-right: 0;
  }
}

.woocommerce-shop main {
  padding-top: 9.0277777778vw;
}
@media (max-width: 63.99em) {
  .woocommerce-shop main {
    margin-top: 24.154589372vw;
  }
}

.product--illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.3333333333vw;
  height: 8.3333333333vw;
  border-radius: 100%;
}
@media (max-width: 63.99em) {
  .product--illustration {
    width: 24.154589372vw;
    height: 24.154589372vw;
  }
}
.product--illustration img {
  min-height: 2.0833333333vw;
  max-height: 2.7777777778vw;
  min-width: 2.7777777778vw;
}
@media (max-width: 63.99em) {
  .product--illustration img {
    min-height: 9.6618357488vw;
    max-height: 7.2463768116vw;
    min-width: 7.2463768116vw;
  }
}

.section--products {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.product--listing-disclaimer {
  width: calc(270px + ((100% - 330px) / 12 * 10));
  margin-left: calc(30px + ((100% - 330px) / 12 * 1));
  margin-bottom: 2.0833333333vw;
  padding: 0.6944444444vw;
  display: flex;
  justify-content: center;
  font-size: 0.9027777778vw;
  line-height: 1.4;
  background-color: var(--secondaryOp);
}
@media (max-width: 63.99em) {
  .product--listing-disclaimer {
    margin-left: 0;
    width: 100%;
    padding: 2.4154589372vw;
    margin-bottom: 7.2463768116vw;
    font-size: 3.1400966184vw;
    line-height: 1.6;
  }
}

.product--listing {
  width: calc(270px + ((100% - 330px) / 12 * 10));
  margin-left: calc(30px + ((100% - 330px) / 12 * 1));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 63.99em) {
  .product--listing {
    margin-left: 0;
    padding: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
.product--listing > div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.product--item {
  position: relative;
  padding: 1.3888888889vw 2.0833333333vw 3.4722222222vw;
  width: calc(90px + ((100% - 270px) / 10 * 3));
  flex: none;
  border: 1px solid var(--borderColor);
  transition: background-color 0.3s;
}
@media (max-width: 63.99em) {
  .product--item {
    padding: 13.2850241546vw 4.8309178744vw;
    width: 100%;
  }
  .product--item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 7.2463768116vw;
  }
}
@media (min-width: 64em) {
  .product--item:hover {
    background-color: var(--bg);
  }
}
.product--item .product--meta {
  padding: 1.3888888889vw 0;
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 63.99em) {
  .product--item .product--meta {
    padding: 4.8309178744vw 0;
  }
}

.product--name {
  position: relative;
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .product--name {
    margin-bottom: 9.6618357488vw;
  }
}
.product--name .absolute--link {
  z-index: 1;
}
.product--name h2 {
  font-weight: var(--regular);
}
.product--name h2, .product--name h3 {
  position: relative;
  padding-top: 2.7777777778vw;
  padding-left: 4.1666666667vw;
  z-index: 1;
  min-height: 11.25vw;
}
@media (max-width: 63.99em) {
  .product--name h2, .product--name h3 {
    padding-top: 7.2463768116vw;
    padding-left: 0;
    left: 16.9082125604vw;
    width: 80%;
  }
}
.product--name .product--illustration {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: -0.6944444444vw;
  z-index: 0;
}
.product--name .product--illustration img {
  transform: translateX(-1.7361111111vw);
}
@media (max-width: 63.99em) {
  .product--name .product--illustration img {
    transform: translateX(-2.4154589372vw);
  }
}

.product--meta .amount, .product--summary .amount {
  color: var(--quintery);
  font-weight: var(--semibold);
  margin-right: 0.3472222222vw;
}
@media (max-width: 63.99em) {
  .product--meta .amount, .product--summary .amount {
    margin-right: 1.2077294686vw;
  }
}

.products--description {
  margin-top: 2.0833333333vw;
  font-size: 1.0416666667vw;
  line-height: 1.8055555556vw;
}
@media (max-width: 63.99em) {
  .products--description {
    margin-top: 4.8309178744vw;
    font-size: 3.6231884058vw;
    line-height: 6.2801932367vw;
  }
}
.products--description strong {
  display: block;
  margin-bottom: 1.0416666667vw;
}
@media (max-width: 63.99em) {
  .products--description strong {
    margin-bottom: 3.6231884058vw;
  }
}

.section--product .product--photo {
  position: relative;
  width: 18.0555555556vw;
}
@media (max-width: 63.99em) {
  .section--product .product--photo {
    width: calc(100px + ((100% - 110px) / 12 * 10));
    margin-bottom: 6.038647343vw;
  }
}
.section--product .product--photo figure:not(.product--illustration) img {
  border-radius: 10px;
}
.section--product .product--photo .product--illustration {
  position: absolute;
  top: -1.3888888889vw;
  right: -2.7777777778vw;
  z-index: 1;
}
@media (max-width: 63.99em) {
  .section--product .product--photo .product--illustration {
    top: -4.8309178744vw;
    right: -9.6618357488vw;
  }
}

.variations select {
  -webkit-appearance: none;
  margin: 0;
  padding: 0.6944444444vw 1.3888888889vw;
  width: 100%;
  background-color: var(--white);
  font-family: inherit;
  color: var(--fontColor);
  font-size: inherit;
  border-radius: 3px;
}
.variations select::-moz-placeholder {
  color: var(--fontColor);
}
.variations select::placeholder {
  color: var(--fontColor);
}
@media (max-width: 63.99em) {
  .variations select {
    padding: 10px 15px;
    border-radius: 5px;
  }
}
.variations select option {
  background-color: var(--bg);
  color: var(--fontColor);
}

.product--wrapper {
  padding-left: calc(90px + ((100% - 330px) / 12 * 3));
}
@media (max-width: 63.99em) {
  .product--wrapper {
    padding-left: 0;
  }
}

.product--infos {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 63.99em) {
  .product--infos {
    flex-direction: column;
    align-items: center;
  }
}

.product--summary {
  width: calc(150px + ((100% - 240px) / 9 * 6));
  padding-right: calc(60px + ((100% - 240px) / 9 * 2));
  flex: none;
}
@media (max-width: 63.99em) {
  .product--summary {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}
.product--summary .product_title {
  font-weight: var(--semibold);
  margin-bottom: 1.7361111111vw;
}
@media (max-width: 63.99em) {
  .product--summary .product_title {
    margin-bottom: 6.038647343vw;
  }
}
.product--summary .woocommerce-variation-price {
  margin: 1.3888888889vw 0;
}
.product--summary .woocommerce-variation-description, .product--summary .product_title.entry-title + .price, .product--summary .product_meta, .product--summary .reset_variations {
  display: none;
}
.product--summary #formules option:first-child {
  display: none;
}
.product--summary table.variations td.label {
  padding-right: 1.3888888889vw;
}

.product--description, .product--other {
  margin-top: 4.8611111111vw;
  padding-top: 2.0833333333vw;
  border-top: 1px solid var(--borderColor);
}
@media (max-width: 63.99em) {
  .product--description, .product--other {
    margin-top: 16.9082125604vw;
    padding-top: 7.2463768116vw;
  }
}
.product--description h2, .product--other h2 {
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .product--description h2, .product--other h2 {
    margin-bottom: 7.2463768116vw;
  }
}

.product--other ul {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 63.99em) {
  .product--other ul {
    flex-direction: column;
  }
}
.product--other ul li {
  width: calc(90px + ((100% - 240px) / 9 * 4));
}
@media (max-width: 63.99em) {
  .product--other ul li {
    width: 100%;
    margin-bottom: 6.038647343vw;
  }
}
.product--other .product--item {
  width: 100%;
  padding: 0;
  border: none;
}
.product--other .product--item:hover {
  background-color: transparent;
}
.product--other .product--item:nth-child(odd):not(:nth-last-child(2)):after {
  content: none;
}
@media (max-width: 63.99em) {
  .product--other .product--name h3 {
    max-width: initial;
  }
}
.product--other .product--meta {
  justify-content: flex-start;
}
.product--other .product--meta > div {
  margin-bottom: 0;
  margin-right: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .product--other .product--meta > div {
    margin-right: 7.2463768116vw;
  }
}

.woocommerce-account:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(90px + ((100% - 330px) / 12 * 3));
  right: 0;
  background-color: var(--bg);
  z-index: -1;
}
@media (max-width: 63.99em) {
  .woocommerce-account:after {
    left: -4.8309178744vw;
  }
}
.woocommerce-account form.register, .woocommerce-account form.login, .woocommerce-account form.lost_reset_password {
  margin-left: auto;
  margin-right: auto;
}
.woocommerce-account .woocommerce > .woocommerce-notices-wrapper {
  width: calc(150px + ((100% - 330px) / 12 * 5));
  margin-left: auto;
  margin-right: auto;
}

.section--account .woocommerce-MyAccount-navigation {
  width: calc(90px + ((100% - 330px) / 12 * 3));
  padding-left: calc(((100% - 330px) / 12 * 1));
}
@media (max-width: 63.99em) {
  .section--account .woocommerce-MyAccount-navigation {
    width: 100%;
  }
  .section--account .woocommerce-MyAccount-navigation ul {
    display: flex;
    overflow: scroll;
    align-items: center;
  }
}
.section--account .woocommerce-MyAccount-navigation li:not(:last-child) {
  margin-bottom: 0.6944444444vw;
}
@media (max-width: 63.99em) {
  .section--account .woocommerce-MyAccount-navigation li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 4.8309178744vw;
    width: -moz-max-content;
    width: max-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 4.8309178744vw 0;
  }
}
.section--account .woocommerce-MyAccount-navigation li.is-active a {
  text-decoration: underline;
}
.section--account .woocommerce-MyAccount-content fieldset {
  display: contents;
}
.section--account .page-title {
  margin-bottom: 3.4722222222vw;
  margin-left: calc(90px + ((100% - 330px) / 12 * 4));
}
@media (max-width: 63.99em) {
  .section--account .page-title {
    margin-left: 0;
    margin-bottom: 9.6618357488vw;
  }
}
.section--account .woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .section--account .woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 0;
  }
}

.woocommerce table.my_account_orders {
  font-size: inherit;
  line-height: inherit;
}
.woocommerce .woocommerce-address-fields span.description {
  display: block !important;
}
.woocommerce .address_book header {
  border: none;
}
.woocommerce .wc-address-book-meta {
  display: flex;
  flex-direction: column;
}
.woocommerce .wc-address-book-meta a {
  text-align: center;
  font-size: 0.8333333333vw;
}
.woocommerce .wc-address-book-meta a:not(:last-child) {
  margin-bottom: 1.3888888889vw;
}

.edit-profile-picture {
  margin-left: calc(90px + ((100% - 330px) / 12 * 4));
  display: none;
}
@media (max-width: 63.99em) {
  .edit-profile-picture {
    margin-left: 0;
  }
}
.edit-profile-picture h3 {
  margin-top: 4.8611111111vw;
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .edit-profile-picture h3 {
    margin-top: 16.9082125604vw;
    margin-bottom: 4.8309178744vw;
  }
}
.edit-profile-picture form > img {
  float: left;
  margin-right: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .edit-profile-picture form > img {
    margin-right: 4.8309178744vw;
  }
}
.edit-profile-picture input[type=submit] {
  cursor: pointer;
}

.woocommerce-profile_fields_area .edit-profile-picture {
  display: block;
}

.section--paiement {
  padding-bottom: 0;
}
.section--paiement .woocommerce-checkout {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 63.99em) {
  .section--paiement .woocommerce-checkout {
    flex-direction: column;
  }
}
.section--paiement .woocommerce-checkout > div {
  padding: 0 calc(((100% - 330px) / 12 * 1));
  width: calc(150px + ((100% - 330px) / 12 * 6));
  flex: none;
}
@media (max-width: 63.99em) {
  .section--paiement .woocommerce-checkout > div {
    width: 100%;
    padding: 0;
  }
}
.section--paiement .woocommerce {
  margin-top: 3.8194444444vw;
}
@media (max-width: 63.99em) {
  .section--paiement .woocommerce {
    margin-top: 13.2850241546vw;
  }
}
.section--paiement .woocommerce .woocommerce-order-details {
  margin-top: 4.1666666667vw;
  padding-top: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .section--paiement .woocommerce .woocommerce-order-details {
    margin-top: 14.4927536232vw;
    padding-top: 7.2463768116vw;
  }
}
.section--paiement .woocommerce-info {
  margin-bottom: 0;
  padding-left: 0;
  background: transparent;
  border: none;
}
.section--paiement .woocommerce-info a {
  text-decoration: underline;
}
.section--paiement .woocommerce-info:before {
  content: none;
}
.section--paiement .woocommerce-additional-fields {
  margin-top: 3.4722222222vw;
}
.section--paiement .woocommerce-additional-fields h3 {
  margin-bottom: 0;
}
.section--paiement .woocommerce-order {
  margin-top: 3.8194444444vw;
}
.section--paiement .woocommerce-notice {
  padding-top: 2.0833333333vw;
  margin-bottom: 1.3888888889vw;
  border-top: 1px solid var(--borderColor);
}
@media (max-width: 63.99em) {
  .section--paiement .woocommerce-notice {
    padding-top: 7.2463768116vw;
    margin-bottom: 4.8309178744vw;
  }
}
.section--paiement .woocommerce-order-overview {
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .section--paiement .woocommerce-order-overview {
    margin-bottom: 7.2463768116vw;
  }
}

.woocommerce-form-login-toggle, .woocommerce-form-coupon-toggle {
  border-top: 1px solid var(--borderColor);
}
.woocommerce-form-login-toggle .woocommerce-info, .woocommerce-form-coupon-toggle .woocommerce-info {
  justify-content: flex-start;
}
@media (max-width: 63.99em) {
  .woocommerce-form-login-toggle .woocommerce-info, .woocommerce-form-coupon-toggle .woocommerce-info {
    flex-direction: column;
  }
}
.woocommerce-form-login-toggle .woocommerce-info > a, .woocommerce-form-coupon-toggle .woocommerce-info > a {
  margin-left: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .woocommerce-form-login-toggle .woocommerce-info > a, .woocommerce-form-coupon-toggle .woocommerce-info > a {
    margin-left: 0;
  }
}

.woocommerce-form-coupon-toggle {
  border-bottom: 1px solid var(--borderColor);
}

.paiement--header {
  padding: 0 calc(((100% - 330px) / 12 * 1));
  margin-bottom: 3.125vw;
}
@media (max-width: 63.99em) {
  .paiement--header {
    margin-bottom: 10.8695652174vw;
  }
}

.paiement--information h3 {
  margin-bottom: 1.0416666667vw;
}
@media (max-width: 63.99em) {
  .paiement--information h3 {
    margin-bottom: 3.6231884058vw;
  }
}

.paiement--panier h3 {
  margin-bottom: 3.125vw;
}
@media (max-width: 63.99em) {
  .paiement--panier h3 {
    margin-bottom: 10.8695652174vw;
  }
}
.paiement--panier table.shop_table {
  border: none;
}
.paiement--panier table.shop_table th, .paiement--panier table.shop_table td {
  padding: 1.0416666667vw 0.625vw 1.3888888889vw;
  line-height: inherit;
}
@media (max-width: 63.99em) {
  .paiement--panier table.shop_table th, .paiement--panier table.shop_table td {
    padding: 3.6231884058vw 2.1739130435vw 4.8309178744vw;
  }
  .paiement--panier table.shop_table th.product-total, .paiement--panier table.shop_table td.product-total {
    text-align: right;
  }
}
.paiement--panier table.shop_table th:nth-child(2), .paiement--panier table.shop_table td:nth-child(2) {
  width: calc(30px + ((100% - 90px) / 4 * 1));
}
.paiement--panier table.shop_table thead {
  display: none;
}
.paiement--panier table.shop_table td, .paiement--panier table.shop_table tfoot th, .paiement--panier table.shop_table tfoot td {
  border-color: var(--borderColor);
}
.paiement--panier table.shop_table tfoot td, .paiement--panier table.shop_table tfoot th {
  font-size: 1.3888888889vw;
  line-height: 2.0833333333vw;
  font-weight: bold;
}
@media (max-width: 63.99em) {
  .paiement--panier table.shop_table tfoot td, .paiement--panier table.shop_table tfoot th {
    font-size: 4.8309178744vw;
    line-height: 7.2463768116vw;
  }
}
.paiement--panier table.shop_table tfoot td {
  color: var(--quintery);
}
@media (max-width: 63.99em) {
  .paiement--panier table.shop_table tfoot td {
    text-align: right;
  }
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background-color: transparent;
}
#add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row {
  padding: 0;
}
#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  border: none;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  padding: 1.3888888889vw 1.0416666667vw 1.7361111111vw;
  font-size: inherit;
  line-height: inherit;
  color: var(--white);
  background-color: var(--secondary);
  border-radius: 3px;
}
@media (max-width: 63.99em) {
  #add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
    padding: 4.8309178744vw 3.6231884058vw 6.038647343vw;
  }
}
#add_payment_method #payment div.payment_box:before, .woocommerce-cart #payment div.payment_box:before, .woocommerce-checkout #payment div.payment_box:before {
  content: none;
}
#add_payment_method #payment #place_order, .woocommerce-cart #payment #place_order, .woocommerce-checkout #payment #place_order {
  float: none;
  width: calc(90px + ((100% - 150px) / 4 * 2));
}

.woocommerce-terms-and-conditions-wrapper {
  margin-top: 3.4722222222vw;
  margin-bottom: 3.125vw;
}
@media (max-width: 63.99em) {
  .woocommerce-terms-and-conditions-wrapper {
    margin-top: 12.077294686vw;
    margin-bottom: 10.8695652174vw;
  }
}

.woocommerce-order-received .split--background:after {
  content: none;
}

.woocommerce-order--recap, .woocommerce-order--info {
  padding-left: calc(((100% - 330px) / 12 * 1));
  padding-right: calc(((100% - 330px) / 12 * 1));
}

.woocommerce-order--info {
  padding-top: 4.1666666667vw;
  margin-top: 4.1666666667vw;
  position: relative;
}
.woocommerce-order--info:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2.4305555556vw;
  width: 100vw;
  background-color: var(--bg);
  z-index: -1;
}
@media (max-width: 63.99em) {
  .woocommerce-order--info:after {
    left: -4.8309178744vw;
  }
}
.woocommerce-order--info section {
  padding: 0;
}

@media (max-width: 63.99em) {
  .section--fiches .container {
    max-width: calc(90.3381642512vw + 4.8309178744vw);
    margin-left: 4.8309178744vw;
  }
}

.fiches--listing {
  display: flex;
  flex-direction: column;
}
@media (max-width: 63.99em) {
  .fiches--listing {
    overflow: scroll;
    padding-right: 4.8309178744vw;
    flex-direction: row;
  }
}
.fiches--listing .row {
  display: flex;
}
.fiches--listing .row:not(:last-child) {
  margin-bottom: 2.4305555556vw;
}
@media (max-width: 63.99em) {
  .fiches--listing .row:not(:last-child) {
    margin-right: 4.8309178744vw;
  }
}

.fiches--item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(60px + ((100% - 240px) / 9 * 3));
  flex: none;
  background-color: var(--bg);
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 63.99em) {
  .fiches--item {
    width: 77.2946859903vw;
  }
}
.fiches--item:not(:last-child) {
  margin-right: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .fiches--item:not(:last-child) {
    margin-right: 4.8309178744vw;
  }
}
.fiches--item .media-image img {
  border-radius: 0 0 10px 10px;
  transition: transform 0.3s;
}
.fiches--item:hover .media-image img {
  transform: scale(1.05);
}

.fiches--content {
  padding: 1.3888888889vw 1.3888888889vw 3.125vw;
}
@media (max-width: 63.99em) {
  .fiches--content {
    padding: 4.8309178744vw 4.8309178744vw 10.8695652174vw;
  }
}
.fiches--content h3 {
  margin-bottom: 1.0416666667vw;
}

.section--fiche .article--body {
  padding-top: 3.4722222222vw;
}
@media (max-width: 63.99em) {
  .section--fiche .article--body {
    padding-top: 12.077294686vw;
    margin-bottom: 7.2463768116vw;
  }
}
.section--fiche .share--toolbox {
  top: 31.25vw;
}

.fiche--title, .fiche--keywords {
  position: relative;
  padding: 2.0833333333vw 0;
  min-height: 14.5833333333vw;
}
@media (max-width: 63.99em) {
  .fiche--title, .fiche--keywords {
    padding: 7.2463768116vw 0;
  }
}

.fiche--title-wrapper {
  display: flex;
  align-items: center;
  min-height: 10.4166666667vw;
}
@media (max-width: 63.99em) {
  .fiche--title-wrapper {
    padding-bottom: 9.6618357488vw;
    order: 2;
    flex-direction: column;
    align-items: flex-end;
  }
}
.fiche--title-wrapper h1 {
  width: calc(150px + ((100% - 240px) / 9 * 5));
  margin-right: calc(30px + ((100% - 240px) / 9 * 1));
  align-self: baseline;
}
@media (max-width: 63.99em) {
  .fiche--title-wrapper h1 {
    width: 100%;
    margin-bottom: 12.077294686vw;
  }
}

@media (max-width: 63.99em) {
  .fiche--title .container {
    display: flex;
    flex-direction: column;
  }
}

.fiche--meta {
  position: absolute;
  top: -5.9027777778vw;
  right: 0;
  padding: 1.3888888889vw 2.0833333333vw 1.7361111111vw !important;
  width: calc(60px + ((100% - 330px) / 12 * 3));
}
@media (max-width: 63.99em) {
  .fiche--meta {
    padding: 4.8309178744vw 0 6.038647343vw !important;
    margin-bottom: 12.077294686vw;
    position: relative;
    top: initial;
    width: calc(90px + ((100% - 110px) / 12 * 9));
  }
}
.fiche--meta strong {
  display: block;
}
.fiche--meta:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  background-color: var(--secondary);
  width: 50%;
}
@media (max-width: 63.99em) {
  .fiche--meta:after {
    left: initial;
    right: 100%;
  }
}

.fiche--keywords {
  background-color: var(--bg);
  color: var(--fontColor2);
}
.fiche--keywords .keywords--listing {
  width: calc(150px + ((100% - 240px) / 9 * 6));
}
@media (max-width: 63.99em) {
  .fiche--keywords .keywords--listing {
    width: 100%;
  }
}
.fiche--keywords .keywords--listing li {
  position: relative;
  padding-left: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .fiche--keywords .keywords--listing li {
    padding-left: 7.2463768116vw;
  }
}
.fiche--keywords .keywords--listing li:before {
  content: "-";
  position: absolute;
  left: 0;
}

.section--fiches-archive .fiches--item {
  width: calc(60px + ((100% - 330px) / 12 * 3));
}

.form--document .document--tags, .form--annuaire .document--tags {
  width: 100%;
}
@media (max-width: 63.99em) {
  .form--document .document--tags, .form--annuaire .document--tags {
    padding: 4.8309178744vw 0;
  }
  .form--document .document--tags:not(:first-child), .form--annuaire .document--tags:not(:first-child) {
    position: relative;
  }
  .form--document .document--tags:not(:first-child):before, .form--annuaire .document--tags:not(:first-child):before {
    content: "";
    border-top: 1px solid var(--borderColor);
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    opacity: 0.2;
  }
}
@media (max-width: 63.99em) {
  .form--document .document--tags > span:after, .form--annuaire .document--tags > span:after {
    content: "";
    margin-top: -2px;
    position: absolute;
    top: 50%;
    right: 0;
    height: 0;
    width: 0;
    border-style: solid;
    border-width: 0.6944444444vw 0.4861111111vw 0 0.4861111111vw;
    border-color: var(--white) transparent transparent transparent;
    transition: transform 0.3s;
  }
}
@media (max-width: 63.99em) and (max-width: 63.99em) {
  .form--document .document--tags > span:after, .form--annuaire .document--tags > span:after {
    border-width: 2.4154589372vw 1.690821256vw 0 1.690821256vw;
  }
}
.form--document .document--tags > ul, .form--annuaire .document--tags > ul {
  width: 100%;
}
@media (min-width: 64em) {
  .form--document .document--tags > ul, .form--annuaire .document--tags > ul {
    display: block !important;
  }
}
.form--document .document--tags > ul > li, .form--annuaire .document--tags > ul > li {
  display: flex;
}
@media (max-width: 63.99em) {
  .form--document .document--tags > ul > li, .form--annuaire .document--tags > ul > li {
    flex-direction: column;
  }
}
.form--document .document--tags > ul label, .form--annuaire .document--tags > ul label {
  width: calc(30px + ((100% - 150px) / 6 * 2));
  white-space: nowrap;
}
.form--document fieldset:not(:last-child), .form--annuaire fieldset:not(:last-child) {
  margin-bottom: 2.7777777778vw;
}
@media (max-width: 63.99em) {
  .form--document fieldset:not(:last-child), .form--annuaire fieldset:not(:last-child) {
    margin-bottom: 7.2463768116vw;
  }
}

.form--document {
  position: relative;
  width: calc(150px + ((100% - 240px) / 9 * 6));
}
@media (max-width: 63.99em) {
  .form--document {
    width: 100%;
  }
}

@media (max-width: 63.99em) {
  .section--annuaire {
    padding-bottom: 4.8309178744vw;
  }
}
.section--annuaire .page-title, .section--annuaire .article--body > * {
  margin-left: calc(30px + ((100% - 330px) / 12 * 1));
}
@media (max-width: 63.99em) {
  .section--annuaire .page-title, .section--annuaire .article--body > * {
    margin-left: 0;
  }
}
.section--annuaire .page-title {
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .section--annuaire .page-title {
    margin-bottom: 4.8309178744vw;
  }
}

.form--annuaire {
  width: calc(180px + ((100% - 240px) / 9 * 7));
}
@media (max-width: 63.99em) {
  .form--annuaire {
    width: 100%;
  }
}
.form--annuaire .document--tags > ul {
  display: table;
}
.form--annuaire button[type=submit] {
  margin-left: 2.0833333333vw;
  width: calc(30px + ((100% - 150px) / 6 * 2));
  flex: none;
}
@media (max-width: 63.99em) {
  .form--annuaire button[type=submit] {
    margin-left: 0;
    margin-top: 4.8309178744vw;
    width: auto;
  }
}

.section--search-annuaire .search--item {
  display: flex;
}
.section--search-annuaire .search--content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 1.3888888889vw;
  width: 100%;
}
@media (max-width: 63.99em) {
  .section--search-annuaire .search--content {
    flex-direction: column;
    margin-left: 4.8309178744vw;
  }
}
.section--search-annuaire .search--content .button--arrow {
  align-self: flex-end;
  flex: none;
}
@media (max-width: 63.99em) {
  .section--search-annuaire .search--content .button--arrow {
    align-self: flex-start;
    margin-top: 4.8309178744vw;
  }
}
.section--search-annuaire .search--content address:not(:last-child) {
  margin-bottom: 0.6944444444vw;
}
.section--search-annuaire .search--content h3 span {
  display: inline;
  vertical-align: middle;
  margin-left: 10px;
  font-size: 60%;
}

.avatar-wrapper {
  display: flex;
  justify-content: flex-end;
  flex: none;
  width: 8.125vw;
  height: 8.125vw;
}
@media (max-width: 63.99em) {
  .avatar-wrapper {
    width: 23.1884057971vw;
    height: 23.1884057971vw;
  }
}
.avatar-wrapper .avatar {
  width: 8.125vw;
  height: 8.125vw;
}
@media (max-width: 63.99em) {
  .avatar-wrapper .avatar {
    width: 23.1884057971vw;
    height: 23.1884057971vw;
  }
}

.section--therapeute {
  padding: 3.125vw 0;
}
.section--therapeute .container {
  display: flex;
}
.section--therapeute .avatar-wrapper {
  margin-left: calc(30px + ((100% - 330px) / 12 * 2));
}
@media (max-width: 63.99em) {
  .section--therapeute .avatar-wrapper {
    margin-left: 0;
  }
}

.therapeute--meta {
  margin-left: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .therapeute--meta {
    margin-left: 4.8309178744vw;
  }
}
.therapeute--meta a:hover {
  text-decoration: underline;
}

.therapeute--addresses {
  display: flex;
  margin-top: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .therapeute--addresses {
    margin-top: 4.8309178744vw;
    flex-direction: column;
  }
}
.therapeute--addresses address:not(:first-child) {
  margin-left: 2.0833333333vw;
  padding-left: 2.0833333333vw;
  border-left: 1px solid var(--borderColor);
}
@media (max-width: 63.99em) {
  .therapeute--addresses address:not(:first-child) {
    margin-left: 0;
    padding-left: 0;
    margin-top: 7.2463768116vw;
    border-left: none;
  }
}

.section--therapeute-content {
  padding: 2.0833333333vw 0;
}
@media (max-width: 63.99em) {
  .section--therapeute-content {
    padding: 7.2463768116vw 0;
  }
}
.section--therapeute-content #map {
  height: 27.7777777778vw;
}
@media (max-width: 63.99em) {
  .section--therapeute-content #map {
    height: 96.6183574879vw;
  }
}

.therapeute--wrapper {
  width: calc(240px + ((100% - 330px) / 12 * 9));
}
@media (max-width: 63.99em) {
  .therapeute--wrapper {
    width: 100%;
  }
}

.therapeute--links {
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .therapeute--links {
    margin-bottom: 4.8309178744vw;
  }
}

ul.tile--listing {
  margin-top: 0.6944444444vw;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 63.99em) {
  ul.tile--listing {
    margin-top: 4.8309178744vw;
  }
}
ul.tile--listing li {
  padding: 0 0.8333333333vw;
  margin-bottom: 0.6944444444vw;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--bg);
}
@media (max-width: 63.99em) {
  ul.tile--listing li {
    padding: 0 2.8985507246vw;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 2.4154589372vw;
  }
}
ul.tile--listing li:before {
  content: none !important;
}
ul.tile--listing li:not(:last-child) {
  margin-right: 0.6944444444vw;
}
@media (max-width: 63.99em) {
  ul.tile--listing li:not(:last-child) {
    margin-right: 2.4154589372vw;
  }
}

.archive--filter {
  margin-top: 2.7777777778vw;
  padding: 1.3888888889vw 0;
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
}
@media (max-width: 63.99em) {
  .archive--filter {
    margin-top: 9.6618357488vw;
    padding: 4.8309178744vw 0;
    overflow: scroll;
  }
}
.archive--filter ul {
  display: flex;
}
@media (max-width: 63.99em) {
  .archive--filter ul {
    width: -moz-max-content;
    width: max-content;
  }
}
.archive--filter ul li:not(:first-child) {
  margin-left: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .archive--filter ul li:not(:first-child) {
    margin-left: 4.8309178744vw;
  }
}
.archive--filter ul li:not(:first-child):before {
  content: "";
  margin-top: 0;
  margin-bottom: 0.3472222222vw;
  margin-right: 0.6944444444vw;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid var(--fontColor);
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  border-radius: 100%;
}
@media (max-width: 63.99em) {
  .archive--filter ul li:not(:first-child):before {
    margin-bottom: 1.2077294686vw;
    margin-right: 2.4154589372vw;
    width: 3.6231884058vw;
    height: 3.6231884058vw;
  }
}
.archive--filter ul li:not(:first-child).active:before {
  background-color: var(--primary);
}
.archive--filter ul li:not(:first-child):hover:before {
  background-color: var(--primary);
  opacity: 0.5;
}

.archive--number {
  padding: 2.0833333333vw 0 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .archive--number {
    padding: 7.2463768116vw 0 4.8309178744vw;
  }
}

.section--home > .container {
  padding-top: 4.1666666667vw;
  border-top: 1px solid var(--borderColor);
}

.events--wrapper {
  width: calc(270px + ((100% - 330px) / 12 * 10));
}
@media (max-width: 63.99em) {
  .events--wrapper {
    width: 100%;
  }
}

.event--image img {
  border-radius: 10px;
  border: 1px solid var(--grey);
}

.event--date {
  display: block;
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .event--date {
    margin-bottom: 4.8309178744vw;
  }
}
.event--date span {
  display: block;
}

.event-date--flex {
  display: flex;
}
.event-date--flex > div:first-child {
  padding-right: 2.0833333333vw;
  border-right: 1px solid var(--borderColor);
}
.event-date--flex > div:last-child {
  padding-left: 2.0833333333vw;
}

.event--address, .event--website {
  display: flex;
  align-items: center;
}
.event--address > svg, .event--website > svg {
  margin-right: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .event--address > svg, .event--website > svg {
    margin-right: 4.8309178744vw;
  }
}
.event--address:hover, .event--website:hover {
  color: var(--quintery);
}

.event--address {
  margin-top: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .event--address {
    margin-top: 4.8309178744vw;
  }
}
.event--address > a {
  font-weight: var(--semibold);
}

.event--website {
  margin-top: 1.0416666667vw;
}
@media (max-width: 63.99em) {
  .event--website {
    margin-top: 3.6231884058vw;
  }
}
.event--website > a {
  text-decoration: underline;
}

.events--item {
  position: relative;
  padding: 2.0833333333vw 0 2.7777777778vw;
  display: flex;
  border-top: 1px solid var(--borderColor);
}
@media (max-width: 63.99em) {
  .events--item {
    padding: 7.2463768116vw 0 9.6618357488vw;
    flex-direction: column;
  }
}
.events--item:last-child {
  border-bottom: 1px solid var(--borderColor);
}
.events--item .media-image {
  margin-right: 2.0833333333vw;
  max-width: calc(30px + ((100% - 180px) / 7 * 2));
}
@media (max-width: 63.99em) {
  .events--item .media-image {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 4.8309178744vw;
  }
}
.events--item .event--address > svg {
  margin-right: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .events--item .event--address > svg {
    margin-right: 4.8309178744vw;
  }
}

.event--content {
  width: calc(120px + ((100% - 180px) / 7 * 5));
}
@media (max-width: 63.99em) {
  .event--content {
    width: 100%;
  }
}
.event--content h2 {
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .event--content h2 {
    margin-bottom: 4.8309178744vw;
  }
}

.event--description {
  padding-right: calc(30px + ((100% - 330px) / 12 * 0.5));
  margin-top: 2.0833333333vw;
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .event--description {
    padding-right: 0;
    margin-top: 7.2463768116vw;
    margin-bottom: 7.2463768116vw;
  }
}

.event--categories {
  z-index: 2;
  position: relative;
}

.section--event .page-title {
  padding-left: calc(30px + ((100% - 330px) / 12 * 1));
}
@media (max-width: 63.99em) {
  .section--event .page-title {
    padding-left: 0;
  }
}
.section--event .article--body > p, .section--event .article--body > a, .section--event .article--body > h2, .section--event .article--body > h3, .section--event .article--body > ul, .section--event .article--body > ol, .section--event .article--body > .wp-block-image, .section--event .article--body > .block-highlight, .section--event .article--body > .wp-block-pullquote, .section--event .article--body > .block-custom-button, .section--event .article--body > .wp-block-media-text, .section--event .article--body > .wp-block-columns {
  padding-left: calc(30px + ((100% - 330px) / 12 * 1));
}
@media (max-width: 63.99em) {
  .section--event .article--body > p, .section--event .article--body > a, .section--event .article--body > h2, .section--event .article--body > h3, .section--event .article--body > ul, .section--event .article--body > ol, .section--event .article--body > .wp-block-image, .section--event .article--body > .block-highlight, .section--event .article--body > .wp-block-pullquote, .section--event .article--body > .block-custom-button, .section--event .article--body > .wp-block-media-text, .section--event .article--body > .wp-block-columns {
    padding-left: 0;
  }
}
.section--event .event--image {
  left: calc(((100% - 330px) / 12 * 1));
  max-width: 22.2222222222vw;
  position: absolute;
}
@media (max-width: 63.99em) {
  .section--event .event--image {
    position: relative;
    left: initial;
    max-width: 100%;
    margin-bottom: 7.2463768116vw;
  }
}
.section--event .event--address {
  margin-top: 2.7777777778vw;
}
.section--event .button--download {
  margin-top: 3.8194444444vw;
}
.section--event .button--download > *:last-child {
  margin-left: 1.0416666667vw;
}
.section--event .tile--listing {
  margin-top: 2.0833333333vw;
  margin-left: calc(120px + ((100% - 330px) / 12 * 4));
}
@media (max-width: 63.99em) {
  .section--event .tile--listing {
    margin-left: 0;
    margin-top: 7.2463768116vw;
  }
}

.event--illustration {
  margin-top: 4.1666666667vw;
  margin-left: calc(120px + ((100% - 330px) / 12 * 4));
}
@media (max-width: 63.99em) {
  .event--illustration {
    margin-top: 9.6618357488vw;
    margin-left: 0;
  }
}
.event--illustration img {
  max-width: calc(120px + ((100% - 330px) / 12 * 5));
  width: auto;
}
@media (max-width: 63.99em) {
  .event--illustration img {
    max-width: 100%;
  }
}

.page-title {
  margin-left: calc(90px + ((100% - 330px) / 12 * 3));
  width: calc(150px + ((100% - 330px) / 12 * 6));
  margin-bottom: 3.8194444444vw;
}
@media (max-width: 63.99em) {
  .page-title {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 9.6618357488vw;
  }
}

.article--body > p, .article--body > a, .article--body > h2, .article--body > h3, .article--body > ul, .article--body > ol,
.article--body > .wp-block-buttons,
.article--body > .wp-block-image,
.article--body > .block-highlight,
.article--body > .wp-block-pullquote,
.article--body > .block-custom-button,
.article--body > .wp-block-media-text,
.article--body > .wp-block-columns {
  width: calc(150px + ((100% - 330px) / 12 * 6));
  margin-left: calc(90px + ((100% - 330px) / 12 * 3));
}
@media (max-width: 63.99em) {
  .article--body > p, .article--body > a, .article--body > h2, .article--body > h3, .article--body > ul, .article--body > ol,
  .article--body > .wp-block-buttons,
  .article--body > .wp-block-image,
  .article--body > .block-highlight,
  .article--body > .wp-block-pullquote,
  .article--body > .block-custom-button,
  .article--body > .wp-block-media-text,
  .article--body > .wp-block-columns {
    width: 100%;
    margin-left: 0;
  }
}
.article--body > p:not(:last-child), .article--body > a:not(:last-child), .article--body > h2:not(:last-child), .article--body > h3:not(:last-child), .article--body > ul:not(:last-child), .article--body > ol:not(:last-child),
.article--body > .wp-block-buttons:not(:last-child),
.article--body > .wp-block-image:not(:last-child),
.article--body > .block-highlight:not(:last-child),
.article--body > .wp-block-pullquote:not(:last-child),
.article--body > .block-custom-button:not(:last-child),
.article--body > .wp-block-media-text:not(:last-child),
.article--body > .wp-block-columns:not(:last-child) {
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .article--body > p:not(:last-child), .article--body > a:not(:last-child), .article--body > h2:not(:last-child), .article--body > h3:not(:last-child), .article--body > ul:not(:last-child), .article--body > ol:not(:last-child),
  .article--body > .wp-block-buttons:not(:last-child),
  .article--body > .wp-block-image:not(:last-child),
  .article--body > .block-highlight:not(:last-child),
  .article--body > .wp-block-pullquote:not(:last-child),
  .article--body > .block-custom-button:not(:last-child),
  .article--body > .wp-block-media-text:not(:last-child),
  .article--body > .wp-block-columns:not(:last-child) {
    margin-bottom: 7.2463768116vw;
  }
}
.article--body > p:not(:first-child), .article--body > a:not(:first-child), .article--body > h2:not(:first-child), .article--body > h3:not(:first-child), .article--body > ul:not(:first-child), .article--body > ol:not(:first-child),
.article--body > .wp-block-buttons:not(:first-child),
.article--body > .wp-block-image:not(:first-child),
.article--body > .block-highlight:not(:first-child),
.article--body > .wp-block-pullquote:not(:first-child),
.article--body > .block-custom-button:not(:first-child),
.article--body > .wp-block-media-text:not(:first-child),
.article--body > .wp-block-columns:not(:first-child) {
  margin-top: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .article--body > p:not(:first-child), .article--body > a:not(:first-child), .article--body > h2:not(:first-child), .article--body > h3:not(:first-child), .article--body > ul:not(:first-child), .article--body > ol:not(:first-child),
  .article--body > .wp-block-buttons:not(:first-child),
  .article--body > .wp-block-image:not(:first-child),
  .article--body > .block-highlight:not(:first-child),
  .article--body > .wp-block-pullquote:not(:first-child),
  .article--body > .block-custom-button:not(:first-child),
  .article--body > .wp-block-media-text:not(:first-child),
  .article--body > .wp-block-columns:not(:first-child) {
    margin-top: 7.2463768116vw;
  }
}
.article--body > .wp-block-media-text {
  display: flex;
  justify-content: space-between;
}
.article--body > .wp-block-media-text:not(:first-child) {
  margin-top: 4.8611111111vw;
}
@media (max-width: 63.99em) {
  .article--body > .wp-block-media-text:not(:first-child) {
    margin-top: 16.9082125604vw;
  }
}
.article--body > .wp-block-media-text:not(:last-child) {
  margin-bottom: 5.5555555556vw;
}
@media (max-width: 63.99em) {
  .article--body > .wp-block-media-text:not(:last-child) {
    margin-bottom: 19.3236714976vw;
  }
}
@media (max-width: 63.99em) {
  .article--body > .wp-block-media-text {
    flex-direction: column-reverse;
  }
}
.article--body > .wp-block-media-text.has-media-on-the-right {
  flex-direction: row-reverse;
}
.article--body > .wp-block-media-text.has-media-on-the-right > div {
  width: calc(120px + ((100% - 150px) / 6 * 3.25));
}
@media (max-width: 63.99em) {
  .article--body > .wp-block-media-text.has-media-on-the-right {
    flex-direction: column;
  }
  .article--body > .wp-block-media-text.has-media-on-the-right > div {
    margin-bottom: 0;
  }
  .article--body > .wp-block-media-text.has-media-on-the-right > figure {
    margin-bottom: 12.077294686vw;
  }
}
.article--body > .wp-block-media-text > * {
  padding: 0;
}
@media (max-width: 63.99em) {
  .article--body > .wp-block-media-text > * {
    width: 100%;
  }
}
.article--body > .wp-block-media-text .wp-block-media-text__media {
  width: calc(30px + ((100% - 150px) / 6 * 2));
  flex: none;
  align-self: flex-start;
}
.article--body > .wp-block-media-text > div {
  width: calc(90px + ((100% - 150px) / 6 * 4));
  align-self: start;
}
@media (max-width: 63.99em) {
  .article--body > .wp-block-media-text > div {
    margin-bottom: 12.077294686vw;
  }
}
.article--body > .wp-block-media-text .subtitle {
  margin-bottom: 1.0416666667vw;
}
@media (max-width: 63.99em) {
  .article--body > .wp-block-media-text .subtitle {
    margin-bottom: 3.6231884058vw;
  }
}
.article--body > .wp-block-media-text .h4, .article--body > .wp-block-media-text ol li:before, .article--body > .wp-block-media-text .article--body > .wp-block-pullquote p, .article--body > .wp-block-pullquote .article--body > .wp-block-media-text p, .article--body > .wp-block-media-text .block-highlight-image .highlight-image--text, .article--body > .wp-block-media-text h3 {
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .article--body > .wp-block-media-text .h4, .article--body > .wp-block-media-text ol li:before, .article--body > .wp-block-media-text .article--body > .wp-block-pullquote p, .article--body > .wp-block-pullquote .article--body > .wp-block-media-text p, .article--body > .wp-block-media-text .block-highlight-image .highlight-image--text, .article--body > .wp-block-media-text h3 {
    margin-bottom: 7.2463768116vw;
  }
}
.article--body > h2, .article--body > h3 {
  border-top: 1px solid var(--borderColor);
  padding-top: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .article--body > h2, .article--body > h3 {
    padding-top: 4.8309178744vw;
  }
}
.article--body > h2:not(:last-child), .article--body > h3:not(:last-child) {
  margin-bottom: 3.4722222222vw;
}
@media (max-width: 63.99em) {
  .article--body > h2:not(:last-child), .article--body > h3:not(:last-child) {
    margin-bottom: 12.077294686vw;
  }
}
.article--body h4 {
  position: absolute;
  left: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: var(--semibold);
}
@media (max-width: 63.99em) {
  .article--body h4 {
    position: relative;
  }
}
.article--body > .block-highlight {
  padding: 2.0833333333vw 4.1666666667vw 3.4722222222vw 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .article--body > .block-highlight {
    width: 100vw;
    padding: 7.2463768116vw 4.8309178744vw 12.077294686vw 4.8309178744vw;
    margin-left: -4.8309178744vw;
  }
}
.article--body > .block-highlight:not(:first-child) {
  margin-top: 3.4722222222vw;
}
@media (max-width: 63.99em) {
  .article--body > .block-highlight:not(:first-child) {
    margin-top: 12.077294686vw;
  }
}
.article--body > .block-highlight:not(:last-child) {
  margin-bottom: 3.4722222222vw;
}
@media (max-width: 63.99em) {
  .article--body > .block-highlight:not(:last-child) {
    margin-bottom: 12.077294686vw;
  }
}
.article--body .block-highlight-image {
  position: relative;
  padding: 2.4305555556vw 0;
}
@media (max-width: 63.99em) {
  .article--body .block-highlight-image {
    padding: 4.8309178744vw 0 14.4927536232vw;
  }
}
.article--body .block-highlight-image:not(:first-child) {
  margin-top: 3.4722222222vw;
}
.article--body .block-highlight-image:not(:last-child) {
  margin-bottom: 4.8611111111vw;
}
.article--body .block-highlight-image:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2.4305555556vw;
  background-color: var(--tertiary);
  width: 100vw;
  z-index: -1;
}
@media (max-width: 63.99em) {
  .article--body .block-highlight-image:before {
    left: -4.8309178744vw;
  }
}
.article--body .block-highlight-image .wp-block-columns {
  align-items: center;
  margin: 0;
}
@media (max-width: 63.99em) {
  .article--body .block-highlight-image .wp-block-columns {
    flex-direction: column;
  }
}
.article--body .block-highlight-image .wp-block-column:first-child {
  flex-basis: calc(120px + ((100% - 330px) / 12 * 4)) !important;
}
@media (max-width: 63.99em) {
  .article--body .block-highlight-image .wp-block-column:first-child {
    flex-basis: 100% !important;
  }
}
.article--body .block-highlight-image .wp-block-column:first-child figure {
  margin-bottom: 0;
}
@media (max-width: 63.99em) {
  .article--body .block-highlight-image .wp-block-column:first-child figure {
    margin-bottom: 7.2463768116vw;
  }
}
.article--body .block-highlight-image .wp-block-column:last-child {
  flex-basis: calc(210px + ((100% - 330px) / 12 * 8)) !important;
  flex: none;
  padding-left: calc(((100% - 330px) / 12 * 1));
  padding-right: calc(30px + ((100% - 330px) / 12 * 1));
  margin-left: 0;
}
.article--body .block-highlight-image .highlight-image--text {
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 63.99em) {
  .article--body .block-highlight-image .highlight-image--text {
    margin-bottom: 7.2463768116vw;
  }
}
.article--body .block-highlight-image svg path {
  fill: var(--white);
}
.article--body > .wp-block-pullquote {
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
  padding: 2.7777777778vw 0;
  text-align: left;
}
@media (max-width: 63.99em) {
  .article--body > .wp-block-pullquote {
    padding: 9.6618357488vw 0;
  }
}
.article--body > .wp-block-pullquote:not(:first-child) {
  margin-top: 3.4722222222vw;
}
@media (max-width: 63.99em) {
  .article--body > .wp-block-pullquote:not(:first-child) {
    margin-top: 12.077294686vw;
  }
}
.article--body > .wp-block-pullquote:not(:last-child) {
  margin-bottom: 4.8611111111vw;
}
@media (max-width: 63.99em) {
  .article--body > .wp-block-pullquote:not(:last-child) {
    margin-bottom: 12.077294686vw;
  }
}
.article--body ol:not(:first-child), .article--body ul:not(:first-child) {
  margin-top: 3.4722222222vw;
}
@media (max-width: 63.99em) {
  .article--body ol:not(:first-child), .article--body ul:not(:first-child) {
    margin-top: 12.077294686vw;
  }
}
.article--body ol:not(:last-child), .article--body ul:not(:last-child) {
  margin-bottom: 3.4722222222vw;
}
@media (max-width: 63.99em) {
  .article--body ol:not(:last-child), .article--body ul:not(:last-child) {
    margin-bottom: 12.077294686vw;
  }
}
.article--body ol {
  counter-reset: count-list;
}
.article--body ol li {
  counter-increment: count-list;
}
.article--body ol li:before {
  content: "0" counter(count-list) ".";
  margin-right: 0.6944444444vw;
  display: inline-block;
  width: 2.5694444444vw;
}
@media (max-width: 63.99em) {
  .article--body ol li:before {
    margin-right: 2.4154589372vw;
    width: 8.9371980676vw;
  }
}
.article--body ol li:nth-child(n+10):before {
  content: counter(count-list) ".";
}
.article--body .block-custom-carousel {
  border-top: 1px solid var(--borderColor);
  padding-top: 4.1666666667vw;
  width: calc(240px + ((100% - 330px) / 12 * 9));
  margin-left: calc(90px + ((100% - 330px) / 12 * 3));
}
@media (max-width: 63.99em) {
  .article--body .block-custom-carousel {
    padding-top: 9.6618357488vw;
    width: calc(100% + 4.8309178744vw);
    margin-left: 0;
  }
}
.article--body .block-custom-carousel:not(:first-child) {
  margin-top: 4.8611111111vw;
}
@media (max-width: 63.99em) {
  .article--body .block-custom-carousel:not(:first-child) {
    margin-top: 14.4927536232vw;
  }
}
.article--body .block-custom-carousel:not(:last-child) {
  margin-bottom: 4.8611111111vw;
}
@media (max-width: 63.99em) {
  .article--body .block-custom-carousel:not(:last-child) {
    margin-bottom: 19.3236714976vw;
  }
}
.article--body > .block-custom-readalso {
  border-top: 1px solid var(--borderColor);
  padding-top: 4.1666666667vw;
}
.article--body > .block-custom-readalso .section--fiches {
  padding: 0;
}
@media (max-width: 63.99em) {
  .article--body .block-custom-carousel .swiper {
    margin-top: 9.6618357488vw;
  }
}
.article--body .block-custom-carousel .swiper-slide {
  height: auto;
}
@media (max-width: 63.99em) {
  .article--body .block-custom-carousel .swiper-slide {
    width: calc(90px + ((100% - 110px) / 12 * 9));
    margin-right: calc(((100% - 110px) / 12 * 1));
  }
}
.article--body .block-custom-carousel .swiper-slide > .media-image {
  margin-bottom: 1.7361111111vw;
}
@media (max-width: 63.99em) {
  .article--body .block-custom-carousel .swiper-slide > .media-image {
    margin-bottom: 4.8309178744vw;
  }
}
.article--body .block-custom-carousel .swiper-slide > span {
  display: block;
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .article--body .block-custom-carousel .swiper-slide > span {
    margin-bottom: 4.8309178744vw;
  }
}
@media (max-width: 63.99em) {
  .article--body .block-custom-readalso .fiches--listing {
    margin-top: 9.6618357488vw;
  }
}
.list--disc li:before, .article--body ul li:before {
  content: "";
  display: inline-block;
  margin-right: 1.3888888889vw;
  width: 0.6944444444vw;
  height: 0.6944444444vw;
  border-radius: 100%;
  background-color: var(--quintery);
}
@media (max-width: 63.99em) {
  .list--disc li:before, .article--body ul li:before {
    width: 2.4154589372vw;
    height: 2.4154589372vw;
    margin-right: 4.8309178744vw;
  }
}

.content--with-share {
  position: relative;
}

.section--home-title {
  padding: 0;
}
.section--home-title .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 63.99em) {
  .section--home-title .container {
    flex-direction: column-reverse;
  }
}
.section--home-title h1 {
  margin-left: calc(30px + ((100% - 330px) / 12 * 2));
  height: 100%;
  display: flex;
  align-items: center;
}
.section--home-title h1 > p {
  position: absolute;
  width: calc(120px + ((100% - 330px) / 12 * 5));
}
@media (max-width: 63.99em) {
  .section--home-title h1 > p {
    position: relative;
    width: 100%;
    margin-top: -16.9082125604vw;
  }
}
@media (max-width: 63.99em) {
  .section--home-title h1 {
    width: 100%;
    margin-left: 0;
  }
}
.section--home-title .home-title--illustration {
  position: relative;
  align-self: flex-end;
  top: -3.4722222222vw;
  right: -2.0833333333vw;
  z-index: -1;
}
@media (max-width: 63.99em) {
  .section--home-title .home-title--illustration {
    overflow: hidden;
    right: -4.8309178744vw;
    width: calc(100% - 7.2463768116vw);
  }
}

.section--find {
  padding: 2.7777777778vw 0 5.5555555556vw;
}
.section--find:first-child {
  margin-top: 5.5555555556vw;
}
@media (max-width: 63.99em) {
  .section--find {
    margin-top: 10.8695652174vw;
    padding: 6.038647343vw 0 7.2463768116vw;
  }
}

@media (max-width: 63.99em) {
  .form--doctor {
    padding-right: calc(((100% - 110px) / 12 * 1));
  }
}
.form--doctor .form--title {
  display: flex;
  align-items: center;
  width: calc(90px + ((100% - 330px) / 12 * 3));
}
@media (max-width: 63.99em) {
  .form--doctor .form--title {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 3.6231884058vw;
    width: 100%;
  }
}
.form--doctor .form--title svg {
  margin-right: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .form--doctor .form--title svg {
    margin-right: 0;
  }
}
.form--doctor label {
  width: calc(60px + ((100% - 330px) / 12 * 2));
  margin-right: 1.3888888889vw;
}
@media (max-width: 63.99em) {
  .form--doctor label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2.4154589372vw;
  }
  .form--doctor label:last-of-type {
    margin-bottom: 4.8309178744vw;
  }
}

.section--home-join {
  padding: 3.125vw 0 3.4722222222vw;
}
@media (max-width: 63.99em) {
  .section--home-join {
    padding: 10.8695652174vw 0 12.077294686vw;
  }
}

.home-join--content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 63.99em) {
  .home-join--content {
    flex-direction: column;
  }
}
.home-join--content h1 {
  padding-right: calc(30px + ((100% - 240px) / 9 * 0.5));
  width: calc(180px + ((100% - 240px) / 9 * 6));
}
@media (max-width: 63.99em) {
  .home-join--content h1 {
    width: 100%;
    padding-right: 0;
  }
}
.home-join--content .button--wrapper {
  position: relative;
  width: calc(90px + ((100% - 240px) / 9 * 3));
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 63.99em) {
  .home-join--content .button--wrapper {
    width: 100%;
    justify-content: flex-start;
    margin: 27.7777777778vw 0;
  }
}
.home-join--content .button--wrapper a {
  z-index: 1;
}
.home-join--content .button--wrapper svg {
  position: absolute;
  right: 0;
  z-index: 0;
}
@media (max-width: 63.99em) {
  .home-join--content .button--wrapper svg {
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}

.section--404 {
  padding-bottom: 15.625vw;
}
@media (max-width: 63.99em) {
  .section--404 {
    padding-bottom: 36.231884058vw;
  }
}
.section--404 h1 {
  font-size: 5.8333333333vw;
  line-height: 1;
  width: calc(120px + ((100% - 330px) / 12 * 4));
  margin-left: calc(30px + ((100% - 330px) / 12 * 2));
}
@media (max-width: 63.99em) {
  .section--404 h1 {
    margin-left: 0;
    font-size: 14.4927536232vw;
    width: 100%;
  }
}
.section--404 svg {
  position: absolute;
  top: -2.0833333333vw;
  right: 2.0833333333vw;
  z-index: -1;
}
@media (max-width: 63.99em) {
  .section--404 svg {
    width: 100%;
    top: 12.077294686vw;
    transform: rotate(-15deg);
  }
}

/*# sourceMappingURL=style.css.map*/