<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  HIERARCHIE SCSS :         
                            Du PLUS GLOBAL et PLUS PETIT  -&gt;  au PLUS SPÉCIFIQUE et PLUS GRAND
                                                 ( ORDRE IMPORTANT ! )


/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  1 : PARAMETERS ( ORDRE IMPORTANT ! )
//                              * Main parameters
/**/
.nice-select {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
          box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
          transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}

.layout-maxed {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 380px) minmax(20px, 1fr);
  grid-template-columns: minmax(20px, 1fr) minmax(auto, 380px) minmax(20px, 1fr);
}
@media (min-width: 576px) {
  .layout-maxed {
    -ms-grid-columns: minmax(20px, 1fr) minmax(auto, 576px) minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 576px) minmax(20px, 1fr);
  }
}
@media (min-width: 1200px) {
  .layout-maxed {
    -ms-grid-columns: minmax(35px, 1fr) minmax(auto, 1200px) minmax(35px, 1fr);
    grid-template-columns: minmax(35px, 1fr) minmax(auto, 1200px) minmax(35px, 1fr);
  }
}
@media (min-width: 1440px) {
  .layout-maxed {
    -ms-grid-columns: minmax(50px, 1fr) minmax(auto, 1440px) minmax(50px, 1fr);
    grid-template-columns: minmax(50px, 1fr) minmax(auto, 1440px) minmax(50px, 1fr);
  }
}
.layout-maxed &gt; * {
  -ms-grid-column: 2;
  grid-column: 2;
}

.layout-hero {
  grid-column: 1/-1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: inherit;
  grid-template-columns: inherit;
}
.layout-hero &gt; * {
  -ms-grid-column: 2;
  grid-column: 2;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.text-10 {
  font-size: 10px;
}

.text-11 {
  font-size: 11px;
}

.secondary-title {
  font-size: 40px;
  font-weight: 600;
  font-family: "Montserrat", serif;
  text-transform: uppercase;
}

.tertiary-title {
  font-size: 25px;
  font-weight: 600;
  font-family: "Montserrat", serif;
  text-transform: uppercase;
}

.fourth-title {
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", serif;
  color: black;
}

.text-primary {
  color: black !important;
}

.text-secondary {
  color: rgb(236, 116, 27) !important;
}

.text-white {
  color: white !important;
}

.text-black {
  color: black !important;
}

.text-black10 {
  color: rgba(0, 0, 0, 0.1) !important;
}

.text-autre-menu-bg {
  color: rgb(249, 251, 252) !important;
}

.bg-primary {
  background-color: black;
}

.bg-secondary {
  background-color: rgb(236, 116, 27);
}

.bg-white {
  background-color: white;
}

.bg-black {
  background-color: black;
}

.bg-black10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.bg-autre-menu-bg {
  background-color: rgb(249, 251, 252);
}

.btn,
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 14px;
  font-weight: 400;
  padding: 18px 22px;
  border-radius: 5px;
  gap: 15px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transition-property: background-color, color, border, -webkit-box-shadow;
  transition-property: background-color, color, border, -webkit-box-shadow;
  transition-property: box-shadow, background-color, color, border;
  transition-property: box-shadow, background-color, color, border, -webkit-box-shadow;
  text-decoration: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: "Montserrat", serif;
}
.btn:focus,
.button:focus {
  -webkit-tap-highlight-color: transparent;
  background-color: inherit;
}
.btn:focus-visible,
.button:focus-visible {
  outline: none;
}

.btn-primary, .site-header:not(.header--white) .button-container .btn:nth-child(2) {
  color: color-yiq(black);
  background-color: black !important;
  border: 2px solid black;
}
.btn-primary svg, .site-header:not(.header--white) .button-container .btn:nth-child(2) svg {
  color: color-yiq(black);
}
.btn-primary:focus, .site-header:not(.header--white) .button-container .btn:focus:nth-child(2), .btn-primary:active, .site-header:not(.header--white) .button-container .btn:active:nth-child(2), .btn-primary.nice-select.open, .site-header:not(.header--white) .button-container .nice-select.open.btn:nth-child(2), .btn-primary:hover, .site-header:not(.header--white) .button-container .btn:hover:nth-child(2) {
  background-color: black;
}

.btn-secondary {
  color: color-yiq(rgb(236, 116, 27));
  background-color: rgb(236, 116, 27) !important;
  border: 2px solid rgb(236, 116, 27);
}
.btn-secondary svg {
  color: color-yiq(rgb(236, 116, 27));
}
.btn-secondary:focus, .btn-secondary:active, .btn-secondary.nice-select.open, .btn-secondary:hover {
  background-color: #b1540f;
}

.btn-white, .site-header.header--white .button-container .btn:nth-child(2) {
  color: color-yiq(white);
  background-color: white !important;
  border: 2px solid white;
}
.btn-white svg, .site-header.header--white .button-container .btn:nth-child(2) svg {
  color: color-yiq(white);
}
.btn-white:focus, .site-header.header--white .button-container .btn:focus:nth-child(2), .btn-white:active, .site-header.header--white .button-container .btn:active:nth-child(2), .btn-white.nice-select.open, .site-header.header--white .button-container .nice-select.open.btn:nth-child(2), .btn-white:hover, .site-header.header--white .button-container .btn:hover:nth-child(2) {
  background-color: #dbdbdb;
}

.btn-black {
  color: color-yiq(black);
  background-color: black !important;
  border: 2px solid black;
}
.btn-black svg {
  color: color-yiq(black);
}
.btn-black:focus, .btn-black:active, .btn-black.nice-select.open, .btn-black:hover {
  background-color: black;
}

.btn-black10 {
  color: color-yiq(rgba(0, 0, 0, 0.1));
  background-color: rgba(0, 0, 0, 0.1) !important;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.btn-black10 svg {
  color: color-yiq(rgba(0, 0, 0, 0.1));
}
.btn-black10:focus, .btn-black10:active, .btn-black10.nice-select.open, .btn-black10:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.btn-autre-menu-bg {
  color: color-yiq(rgb(249, 251, 252));
  background-color: rgb(249, 251, 252) !important;
  border: 2px solid rgb(249, 251, 252);
}
.btn-autre-menu-bg svg {
  color: color-yiq(rgb(249, 251, 252));
}
.btn-autre-menu-bg:focus, .btn-autre-menu-bg:active, .btn-autre-menu-bg.nice-select.open, .btn-autre-menu-bg:hover {
  background-color: #c9dbe4;
}

.btn-outline-primary {
  color: black;
  border: 2px solid black;
}
.btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary.nice-select.open, .btn-outline-primary:hover {
  background-color: black;
  border: 2px solid black;
}

.btn-outline-secondary {
  color: rgb(236, 116, 27);
  border: 2px solid rgb(236, 116, 27);
}
.btn-outline-secondary:focus, .btn-outline-secondary:active, .btn-outline-secondary.nice-select.open, .btn-outline-secondary:hover {
  background-color: #b1540f;
  border: 2px solid #b1540f;
}

.btn-outline-white, .site-header.header--white .button-container .btn:first-child,
.site-header.header--white .button-container .btn:last-child {
  color: white;
  border: 2px solid white;
}
.btn-outline-white:focus, .site-header.header--white .button-container .btn:focus:first-child,
.site-header.header--white .button-container .btn:focus:last-child, .btn-outline-white:active, .site-header.header--white .button-container .btn:active:first-child,
.site-header.header--white .button-container .btn:active:last-child, .btn-outline-white.nice-select.open, .site-header.header--white .button-container .nice-select.open.btn:first-child,
.site-header.header--white .button-container .nice-select.open.btn:last-child, .btn-outline-white:hover, .site-header.header--white .button-container .btn:hover:first-child,
.site-header.header--white .button-container .btn:hover:last-child {
  background-color: #dbdbdb;
  border: 2px solid #dbdbdb;
}

.btn-outline-black {
  color: black;
  border: 2px solid black;
}
.btn-outline-black:focus, .btn-outline-black:active, .btn-outline-black.nice-select.open, .btn-outline-black:hover {
  background-color: black;
  border: 2px solid black;
}

.btn-outline-black10 {
  color: rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.btn-outline-black10:focus, .btn-outline-black10:active, .btn-outline-black10.nice-select.open, .btn-outline-black10:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-outline-autre-menu-bg {
  color: rgb(249, 251, 252);
  border: 2px solid rgb(249, 251, 252);
}
.btn-outline-autre-menu-bg:focus, .btn-outline-autre-menu-bg:active, .btn-outline-autre-menu-bg.nice-select.open, .btn-outline-autre-menu-bg:hover {
  background-color: #c9dbe4;
  border: 2px solid #c9dbe4;
}

.btn-tertiary, .site-header:not(.header--white) .button-container .btn:first-child,
.site-header:not(.header--white) .button-container .btn:last-child {
  color: black;
  border: 2px solid black;
}

/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  2 : COMPONENTS
//                              * CSS des composants (alerts, badges, dropdowns, progressbars, modals, well, ...)
/**/
.banner-default {
  height: 100vh;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, #EC4ABA 30%);
  font-family: "Poetsen One", serif;
  position: relative;
}
.banner-default .content-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  margin: 150px 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-default .content-container .container {
  position: relative;
}
.banner-default .content-container .container &gt; svg:first-of-type {
  top: -15vh;
  left: -15vh;
  position: absolute;
  width: 150px;
  height: 150px;
}
.banner-default .content-container .container &gt; svg:last-of-type {
  bottom: -5vh;
  right: -5vh;
  position: absolute;
  width: 150px;
  height: 150px;
}
.banner-default .content-container h1 {
  font-size: 60px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.banner-default .content-container img {
  width: 100%;
  height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: rotateZ(15deg);
          transform: rotateZ(15deg);
}
.banner-default .content-container .btn-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 25px;
}
.banner-default .content-container .btn-container .button-link {
  background-color: black;
  color: white;
  font-size: 18px;
  border-radius: 30px;
  padding: 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.banner-default .content-container .btn-container .button-link svg {
  fill: white;
  width: 15px;
  height: 15px;
}

/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  DEDICATED VARIABLES 
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  VARIOUS COMPONENTS 
/**/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* LIENS A HREF */
a[href]:not(.std-link) {
  text-decoration: none;
}

/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  CHECKBOXS
 * --------------------------------------------------------------------------------------------------------------
 */
/**/
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .child input {
  display: none;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .child span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .child span::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin-right: 5px;
  left: 0;
  top: 3px;
}

.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .child.active span, .page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .child:hover span {
  cursor: pointer;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .child.active span::before, .page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .child:hover span::before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  width: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 15px;
  border: 1px solid black;
  cursor: pointer;
  color: white;
  left: 0;
  top: 3px;
  background-color: #000;
}

.overlay {
  background-color: black;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.4;
}

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

*.opa70 {
  opacity: 0.7;
}

.breadcrumb-container .whited-filariane .dot-filariane {
  background: black !important;
}
.breadcrumb-container .whited-filariane li a {
  color: black !important;
}
.breadcrumb-container .whited-filariane li:hover a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 1 !important;
}
.breadcrumb-container .whited-filariane li:last-child {
  color: black !important;
}
.breadcrumb-container .whited-filariane li:last-child a {
  opacity: 1 !important;
  color: black !important;
}
.breadcrumb-container .fil-ariane-wrapper .fil-ariane-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb-container .fil-ariane-wrapper .fil-ariane-container li {
  list-style-type: none;
  font-size: 14px;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.breadcrumb-container .fil-ariane-wrapper .fil-ariane-container li a {
  opacity: 0.4;
}
.breadcrumb-container .fil-ariane-wrapper .fil-ariane-container li:hover a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  color: black;
}
.breadcrumb-container .fil-ariane-wrapper .fil-ariane-container li:last-child a {
  opacity: 1;
}
.breadcrumb-container .fil-ariane-wrapper .fil-ariane-container li:nth-last-child(2) .dot-filariane {
  opacity: 1;
}
.breadcrumb-container .fil-ariane-wrapper .fil-ariane-container .dot-filariane {
  content: "";
  width: 5px;
  height: 5px;
  background-color: black;
  display: block;
  border-radius: 50%;
  opacity: 0.4;
  margin-left: 10px;
  margin-right: 10px;
}

.cta-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: black;
  padding-bottom: 2px;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(black), to(black)), -webkit-gradient(linear, left top, left bottom, from(black), to(black));
  background-image: linear-gradient(black, black), linear-gradient(black, black);
  background-size: 0% 2px, 0 2px;
  background-position: 0 100%, 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s linear;
  transition: background-size 0.5s linear;
  border: none;
}
.cta-primary:hover {
  background-size: 0 2px, 100% 2px;
}

.cta-secondary {
  color: white !important;
  border: 1px solid white;
  padding: 17px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "DM Sans", sans-serif;
}
.cta-secondary.black {
  color: black !important;
  border: 1px solid black;
}

.cta-third {
  color: white !important;
  padding-bottom: 2px;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 250, 250, 0.5019607843)), to(rgba(250, 250, 250, 0.5019607843))), -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  background-image: linear-gradient(rgba(250, 250, 250, 0.5019607843), rgba(250, 250, 250, 0.5019607843)), linear-gradient(white, white);
  background-size: 100% 1px, 0 1px;
  background-position: 0 100%, 0 100%;
  background-repeat: no-repeat;
  margin: 25px;
}
.cta-third:hover {
  background-size: 0 1px, 100% 1px;
}

.mouse-div {
  width: 100%;
  position: absolute;
  top: 80%;
  z-index: 2;
}
.mouse-div .cta-mouse {
  border: 1px solid white;
  width: 25px;
  height: 45px;
  border-radius: 15px;
  margin: auto;
  display: block;
}
.mouse-div .cta-mouse .arrow {
  content: "&gt;";
  display: block;
  margin: auto;
  height: 6px;
  width: 3px;
  border-radius: 45%;
  background-color: white;
  animation: 3s ease infinite scroll-indicator;
  -webkit-animation: 3s ease infinite scroll-indicator;
  -moz-animation: 3s ease infinite scroll-indicator;
}

@keyframes scroll-indicator {
  100% {
    margin-top: 30px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  0% {
    margin-top: 5px;
    opacity: 0;
  }
}
@-webkit-keyframes scroll-indicator {
  100% {
    margin-top: 30px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  0% {
    margin-top: 5px;
    opacity: 0;
  }
}
.cta-swiper-first {
  border: 1px solid white;
  color: white !important;
  padding: 15px;
  width: 20px !important;
  height: 20px !important;
  border-radius: 100%;
  margin: 60px;
}
.cta-swiper-first::after {
  font-size: 10px !important;
  padding: 20px;
  width: 20px !important;
  margin-top: 2px;
  border-radius: 100%;
}

.swiper-container:not(.disabled) {
  overflow: hidden;
}
.swiper-container.disabled {
  overflow: visible !important;
}

.isotope-pagination-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}
.isotope-pagination-container .isotope-pagination-item-prev .img-arrow,
.isotope-pagination-container .isotope-pagination-item-next .img-arrow {
  height: 10px;
  padding: 20px;
  border: 1px solid;
  border-radius: 54%;
}
.isotope-pagination-container .isotope-pagination-item-prev .img-arrow.left,
.isotope-pagination-container .isotope-pagination-item-next .img-arrow.left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.isotope-pagination-container .isotope-pagination-item-prev.disabled,
.isotope-pagination-container .isotope-pagination-item-next.disabled {
  opacity: 0.4;
  cursor: default;
}
.isotope-pagination-container .numbers-of-page-container {
  margin: auto 10px;
}
.isotope-pagination-container .numbers-of-page-container .nb-page-item {
  margin-left: 15px;
  margin-right: 15px;
  opacity: 0.4;
}
.isotope-pagination-container .numbers-of-page-container .nb-page-item:first-child {
  margin-left: 30px;
}
.isotope-pagination-container .numbers-of-page-container .nb-page-item:last-child {
  margin-right: 30px;
}
.isotope-pagination-container .numbers-of-page-container .nb-page-item.active {
  opacity: 1;
}

.swiper-next-cta, .swiper-prev-cta {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(calc(-50% + ptr(51, desktop)));
          transform: translateY(calc(-50% + ptr(51, desktop)));
  z-index: 2;
  cursor: pointer;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.swiper-next-cta::before, .swiper-prev-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: ptr(10, desktop);
  height: ptr(10, desktop);
  z-index: 1;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="6.684" height="10.845" viewBox="0 0 6.684 10.845"%3E%3Cpath id="Tracé_23035" data-name="Tracé 23035" d="M4.923,102.753a.687.687,0,0,1-.487-.2L.2,98.317a.689.689,0,0,1,.975-.975l3.746,3.746,3.746-3.746a.689.689,0,0,1,.975.975l-4.233,4.233A.687.687,0,0,1,4.923,102.753Z" transform="translate(-96.568 10.346) rotate(-90)" fill="%23000" stroke="%23000" stroke-width="1"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.swiper-next-cta:hover, .swiper-prev-cta:hover {
  background-color: #fafafa;
}
.swiper-next-cta.cta-disabled, .swiper-prev-cta.cta-disabled {
  opacity: 0;
  pointer-events: none;
  cursor: not-allowed;
}

.swiper-prev-cta {
  left: ptr(74, desktop);
}
.swiper-prev-cta::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.swiper-next-cta {
  right: ptr(74, desktop);
}

.carousel-controller {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(33, 39, 19)), color-stop(0%, rgb(43, 43, 32)), color-stop(100%, rgba(43, 43, 43, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgb(33, 39, 19) 0%, rgb(43, 43, 32) 0%, rgba(43, 43, 43, 0) 100%, rgba(0, 0, 0, 0) 100%);
}
.carousel-controller .swiper-pagination-bullet {
  background-color: white;
}
.carousel-controller .swiper-posts-nav {
  background-color: white;
  padding: 17.2px 16.2px;
  border-radius: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.3);
  top: -95%;
}

/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  DEDICATED VARIABLES 
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  DEDICATED FUNCTIONS 
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  DEDICATED CLASSES 
/**/
body:has(.popup-container:target) {
  overflow: hidden !important;
}
body .popup-container {
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 17, 17, 0.61);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* On click Popups */
}
body .popup-container.click {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
body .popup-container.click:target {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  top: 0;
  /* Adjust body's overflow when popup is visible */
}
body body .popup-container.click:target {
  overflow: hidden !important;
}
body .popup-container .popup-content {
  background-color: white;
  margin: auto;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.3764705882);
  width: 35%;
}
body .popup-container .popup-content a.close {
  color: rgba(0, 0, 0, 0.3764705882);
  float: right;
  font-size: 28px;
  font-weight: bold;
  background: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
body .popup-container .popup-content h3 {
  margin: 10px;
}
body .popup-container .popup-content p {
  font-size: 17px;
  padding: 10px;
  line-height: 20px;
}
body .popup-container .popup-content.image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body .popup-container .popup-content.image a.close {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  3 : CARDS
//                              * CSS des cards
/**/
/** contact-card **/
.produit-card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
}
.produit-card .img-container {
  overflow: hidden;
  aspect-ratio: 100/125;
  border-radius: 20px;
  position: relative;
}
.produit-card .img-container .product-attributes-little {
  bottom: 15px;
  left: 15px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.produit-card .img-container .product-attributes-little .attribute-images-little {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.produit-card .img-container .product-attributes-little .attribute-images-little img {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.produit-card .img-container .produit-card-out-of-stock {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  border-radius: 5px;
}
.produit-card .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 100/125;
  border-radius: 20px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.produit-card .img-container:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.produit-card .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.produit-card .content .produit-card-title {
  text-align: center;
}
.produit-card .content .produit-card-price {
  text-align: center;
  color: rgba(0, 0, 0, 0.7) !important;
}

/** **/
/** link pour card**/
.all-card-link {
  background-size: 20% 2px, 0 2px;
  cursor: pointer;
}
.all-card-link:hover {
  background-size: 0 2px, 100% 2px !important;
}

/** RESPONSIVE **/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  4 : BLOCKS
//                              * Les éléments (header, footer, menu, table, form, ...)
/**/
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  background-color: transparent;
  -webkit-box-shadow: rgba(27, 31, 35, 0) 0px 1px 0px, rgba(255, 255, 255, 0) 0px 1px 0px inset;
          box-shadow: rgba(27, 31, 35, 0) 0px 1px 0px, rgba(255, 255, 255, 0) 0px 1px 0px inset;
  font-family: proxima-nova, "helvetica neue", arial, helvetica, sans-serif;
}
.site-header .content-container .container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
}
.site-header .content-container .container .left-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .content-container .container .left-container .logo .logo-img {
  height: 40px;
}
.site-header .content-container .container .button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.site-header .content-container .container .button-container &gt; a, .site-header .content-container .container .button-container &gt; .btn {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  fill: white;
}
.site-header .content-container .container .button-container &gt; a svg, .site-header .content-container .container .button-container &gt; .btn svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  height: 20px;
  width: 20px;
}
.site-header.header--white .button-container.padding-landing &gt; a:first-child span {
  color: white !important;
}
.site-header.header--white .button-container.padding-landing &gt; a:last-child span, .site-header.header--white .button-container.padding-landing &gt; .btn:last-child span {
  color: black !important;
}
.site-header:not(.header--white) {
  background-color: #1d1d1d;
}
.site-header:not(.header--white) .content-container .container .left-container .logo {
  color: white;
}
.site-header:not(.header--white) .content-container .container .button-container &gt; a, .site-header:not(.header--white) .content-container .container .button-container &gt; .btn {
  color: white;
  fill: white;
}
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  DEDICATED VARIABLES 
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  FOOTER 
/* */
.site-footer {
  max-width: none !important;
  background-color: #1d1d1d;
  font-family: "DM Sans", sans-serif;
}
.site-footer a {
  color: white;
}
.site-footer .bottom-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid white;
  color: white;
}
.site-footer .bottom-navigation .left-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.site-footer .top-footer {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 200px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-footer .top-footer .left-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.site-footer .top-footer .left-container .logo {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  height: 60px;
}
.site-footer .top-footer .left-container .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer .top-footer .left-container .social-sharing-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.site-footer .top-footer .left-container .social-sharing-wrapper svg {
  width: 25px;
  height: 25px;
  color: white;
  fill: white;
}
.site-footer .top-footer .right-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
.site-footer .top-footer .right-container .menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.site-footer .top-footer .right-container .menu-container .menu-title {
  font-weight: 700;
  color: white;
}
.site-footer .top-footer .right-container .menu-container .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.site-footer .top-footer .right-container .menu-container .menu-list .menu-item {
  opacity: 0.7;
  -webkit-transition: opacity, 0.3s ease;
  transition: opacity, 0.3s ease;
}
.site-footer .top-footer .right-container .menu-container .menu-list .menu-item:hover {
  opacity: 1;
}

/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  DEDICATED VARIABLES 
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  BODY 
/**/
body {
  margin: auto;
  width: 100vw;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  SECTIONS 
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  SECTIONS HEADER
/**/
.padding-top-header,
.padding-histoire {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.padding-top-header video,
.padding-histoire video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.fade-section {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.fade-section.fade-in {
  opacity: 1;
}

.woocommerce-form-coupon-toggle {
  display: none;
}

.woocommerce-info {
  border-top-color: #1d1d1d;
}
.woocommerce-info::before {
  color: #1d1d1d;
}

.collection .container-img {
  border-radius: 20px;
  aspect-ratio: 100/125;
  overflow: hidden;
  cursor: pointer;
}
.collection .container-img img {
  border-radius: 5px;
  aspect-ratio: 100/125;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.collection .container-img:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.type-social-feed {
  display: none;
}

.collection-produit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.collection-produit .product-categories {
  z-index: 2;
}
.collection-produit .product-categories .product-category {
  background-color: white;
}
.collection-produit .product-categories .product-category a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.collection-produit .product-categories .product-category a img {
  width: 100%;
}
.collection-produit .product-categories .product-category a span {
  color: #1d1d1d;
  padding: 20px 0 0 0;
}

.type-b {
  display: -ms-grid;
  display: grid;
}
.type-b .right-container {
  background-color: rgba(223, 101, 49, 0.2509803922);
}
.type-b .right-container .image-container {
  height: 100%;
}
.type-b .right-container .image-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.type-b .left-container {
  position: relative;
}
.type-b .left-container form input,
.type-b .left-container form textarea {
  background-color: transparent !important;
  resize: none !important;
}
.type-b .left-container .secondary-navigation-button {
  margin-bottom: 150px;
}
@media (max-width: 1024px) {
  .type-b .left-container .secondary-navigation-button {
    margin-bottom: 50px;
  }
}
.type-b .left-container .secondary-navigation-button.contact li {
  background-color: #313131;
}
.type-b .left-container .secondary-navigation-button.contact li a {
  color: white !important;
}
.type-b .left-container .secondary-navigation-button.contact li:last-child {
  display: none;
}
.type-b .left-container .menu a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.type-b .left-container img {
  position: absolute;
  opacity: 0.1;
}

html {
  scroll-behavior: smooth;
}

.not-overflow-x {
  overflow-x: clip;
}

.wpforms-submit {
  background-color: #DF6531 !important;
}

.type-c {
  position: relative;
}
.type-c .swiper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.type-c .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
}
.type-c .swiper-slide &gt; div {
  text-align: center;
  display: none;
  opacity: 0;
}
.type-c .swiper-slide-active div {
  display: block;
  opacity: 1;
}
.type-c .swiper-slide h2 {
  font-size: 1.2rem;
  font-family: "Libre Baskerville", serif;
  position: relative;
}
@-webkit-keyframes line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.type-c .swiper-slide img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.25);
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .type-c .swiper-slide h2 {
    font-size: 2rem;
  }
}

.nouveaute {
  padding: ptr(160, desktop) 35px;
  position: relative;
}
.nouveaute .nouveaute-sec {
  position: relative;
  margin: auto;
  width: 80%;
}
.nouveaute .nouveaute-sec .circle {
  position: absolute;
  z-index: 2;
  width: 160px;
  height: 160px;
  top: -60px;
  left: -60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nouveaute .nouveaute-sec .circle .text {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: rotateText 20s linear infinite;
          animation: rotateText 20s linear infinite;
}
.nouveaute .nouveaute-sec .circle .text span {
  position: absolute;
  left: 50%;
  font-size: 1.2em;
  -webkit-transform-origin: 0 80px;
          transform-origin: 0 80px;
  color: #1d1d1d;
}
.nouveaute .nouveaute-sec .nouveaute-section {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 20vw 25px 20vw;
  grid-template-rows: repeat(2, 20vw);
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 25px;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.nouveaute .nouveaute-sec .nouveaute-section a {
  width: 100%;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; div:nth-child(1) {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; div:nth-child(2) {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; div:nth-child(3) {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; div:nth-child(4) {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; div:nth-child(5) {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
.nouveaute .nouveaute-sec .nouveaute-section &gt; div:nth-child(6) {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.nouveaute .nouveaute-sec .nouveaute-section .product {
  position: relative;
  cursor: pointer;
}
.nouveaute .nouveaute-sec .nouveaute-section .product p {
  display: block;
  position: absolute;
  bottom: 0;
  max-width: 80%;
  left: 20px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid white;
  margin-bottom: 10px;
}
.nouveaute .nouveaute-sec .nouveaute-section .product .product-image {
  width: 100%;
}
.nouveaute .nouveaute-sec .nouveaute-section .product .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}

.legal-section {
  padding: 100px 0;
}
.legal-section p {
  margin: 30px;
}

.reveal {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: 1s cubic-bezier(0.5, 0, 0, 1);
  transition: 1s cubic-bezier(0.5, 0, 0, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.reveal.in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.background-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 5;
}

.cart-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 100px 60px;
}
.cart-page .pages {
  width: 22.75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 3%;
  padding-top: 90px;
  padding: 2.855% 0;
  float: left;
}
.cart-page .pages a {
  margin-top: 0;
  margin-bottom: 10px !important;
  text-align: left;
  cursor: pointer;
}
.cart-page .woocommerce {
  width: 48.5%;
  margin-right: 3%;
  padding-top: 72px !important;
  padding-right: 6% !important;
  padding-left: 6% !important;
  padding: 5.82% 0;
  border-width: 0px 1px;
  border-color: rgba(55, 61, 75, 0.14);
  border: 0 solid #333;
}

.flex-row-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media (max-width: 1024px) {
  .flex-row-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 50px;
  }
}
.flex-row-column &gt; div {
  background-color: white;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
}
@media (max-width: 1024px) {
  .flex-row-column &gt; div {
    width: 100%;
  }
}
.flex-row-column &gt; div form {
  margin: 0 !important;
  border: none !important;
}
.flex-row-column &gt; div form button {
  background-color: #f7d8cb !important;
  width: 100%;
  padding: 20px !important;
}
.flex-row-column &gt; div form .lost_password {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 30px;
}
.flex-row-column &gt; div form .woocommerce-form-login__rememberme {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.flex-row-column &gt; div .woocommerce-privacy-policy-text {
  display: none;
}
.flex-row-column &gt; div h2 {
  text-align: center;
  color: #DF6531 !important;
}
@media (min-width: 768px) {
  .flex-row-column &gt; div h2 {
    margin: 40px 100px;
  }
}
@media (max-width: 1024px) {
  .flex-row-column &gt; div h2 {
    margin: 40px 40px 20px 40px;
  }
}
.flex-row-column &gt; div .password-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-row-column &gt; div .password-input span {
  top: auto;
}
.flex-row-column &gt; div input {
  height: 60px;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.cta-primary {
  background-color: #f7d8cb !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px !important;
}

.swiper-constraint {
  max-width: 100%;
}
.swiper-constraint .swiper-wrapper {
  height: 100%;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.swiper-constraint .swiper-wrapper .swiper-slide {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: auto;
}
.swiper-constraint .swiper-wrapper .swiper-slide.overflow-opacity {
  opacity: 0.3;
}
.swiper-constraint.overflow-visible {
  overflow: visible !important;
  padding: 0 !important;
  height: auto;
}

.swiper-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.swiper-btns .swiper-btn {
  position: relative !important;
  right: auto;
  left: auto;
  top: auto;
  bottom: auto;
  border-radius: 50%;
  z-index: 3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #E3E2DD;
}
.swiper-btns .swiper-btn::after {
  display: none;
}
.swiper-btns .swiper-btn:not(.swiper-button-disabled) {
  background-color: var(--theme-color-bg-fonce);
}

.app-presentation {
  background-color: #1d1d1d;
  font-family: "Poetsen One", serif;
  padding: 200px 0;
  position: relative;
}
.app-presentation .wave {
  position: absolute;
  width: 100%;
  fill: #EC4ABA;
}
.app-presentation .wave.top {
  top: 0;
}
.app-presentation .wave.bottom {
  bottom: 0;
  -webkit-transform: scaleY(-1) scaleX(-1);
          transform: scaleY(-1) scaleX(-1);
}
.app-presentation .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.app-presentation .content-container .section-title {
  margin-bottom: 20px;
  color: white;
  font-size: 40px;
  text-align: center;
}
.app-presentation .content-container .section-description {
  color: white;
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.8;
}
.app-presentation .content-container .features-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.app-presentation .content-container .features-list .feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.app-presentation .content-container .features-list .feature img {
  height: 200px;
  width: 200px;
}
.app-presentation .content-container .features-list .feature h3 {
  color: white;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
}

.how-it-works {
  background: -webkit-gradient(linear, left top, left bottom, from(#EC4ABA), color-stop(rgba(236, 74, 185, 0.3725490196)), to(#EC4ABA));
  background: linear-gradient(to bottom, #EC4ABA, rgba(236, 74, 185, 0.3725490196), #EC4ABA);
  font-family: "Poetsen One", serif;
  padding: 50px 0 100px 0;
}
.how-it-works .content-container .section-title {
  margin-bottom: 20px;
  color: #1d1d1d;
  font-size: 40px;
  text-align: center;
}
.how-it-works .content-container .section-description {
  color: #1d1d1d;
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
  opacity: 0.8;
}
.how-it-works .content-container .steps-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.how-it-works .content-container .steps-container &gt; svg {
  position: absolute;
  width: 100%;
  fill: #1d1d1d;
  bottom: 0;
  opacity: 0.1;
}
.how-it-works .content-container .steps-container .step:nth-child(odd) {
  margin-top: 100px;
}
.how-it-works .content-container .steps-container .step .step-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.how-it-works .content-container .steps-container .step .step-content h3, .how-it-works .content-container .steps-container .step .step-content p {
  text-align: center;
}
.how-it-works .content-container .steps-container .step .step-content img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.how-it-works .content-container .button-link {
  background-color: #1d1d1d;
  color: white;
  font-size: 18px;
  border-radius: 30px;
  padding: 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto;
}
.how-it-works .content-container .button-link svg {
  fill: white;
  width: 15px;
  height: 15px;
}

.waves {
  position: absolute;
  width: 100%;
  height: 100px;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 100px;
}

.parallax &gt; use {
  -webkit-animation: move-forever 30s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 30s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax &gt; use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
}

.parallax &gt; use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
}

.parallax &gt; use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
}

.parallax &gt; use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
}

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
.partners {
  font-family: "Poetsen One", serif;
  padding: 100px 0 50px 0;
  background-color: white;
  position: relative;
}
.partners .icon {
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 0;
}
.partners .icon-1 {
  top: 50%;
  left: 0;
}
.partners .icon-2 {
  top: -30%;
  right: 5%;
}
.partners .icon-3 {
  bottom: 70%;
  left: 15%;
}
.partners .icon-4 {
  bottom: 110%;
  right: 30%;
}
.partners .icon-5 {
  bottom: 90%;
  left: 35%;
}
.partners .icon-6 {
  top: 70%;
  right: 15%;
}
.partners .section-title {
  margin-bottom: 20px;
  color: #1d1d1d;
  font-size: 40px;
  text-align: center;
  z-index: 1;
  position: relative;
}
.partners .section-description {
  color: #1d1d1d;
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.8;
  z-index: 1;
}
.partners .partners-list {
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.partners .partners-list .partner-card {
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #1d1d1d;
  border-radius: 12px;
  border: 1px solid white;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.partners .partners-list .partner-card::before {
  position: absolute;
  content: " ";
  width: 100%;
  height: 160%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#EC4ABA), color-stop(#EC4ABA), color-stop(#EC4ABA), color-stop(#EC4ABA), to(transparent));
  background: linear-gradient(90deg, transparent, #EC4ABA, #EC4ABA, #EC4ABA, #EC4ABA, transparent);
  -webkit-animation: rotation_481 10s infinite linear;
          animation: rotation_481 10s infinite linear;
}
.partners .partners-list .partner-card .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 12px;
  width: 98%;
  height: 98%;
  background-color: #151515;
  z-index: 2;
  overflow: hidden;
}
.partners .partners-list .partner-card .content .img-container {
  position: relative;
}
.partners .partners-list .partner-card .content .img-container .shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 29, 29, 0)), to(rgb(29, 29, 29)));
  background: linear-gradient(to bottom, rgba(29, 29, 29, 0) 0%, rgb(29, 29, 29) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.partners .partners-list .partner-card .content .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 175px;
  position: relative;
}
.partners .partners-list .partner-card .content .partner-info {
  margin: 25px;
  color: white;
}
.partners .partners-list .partner-card .content .partner-info h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.partners .partners-list .partner-card .content .partner-info .status {
  margin-bottom: 10px;
}
.partners .partners-list .partner-card .content .partner-info .status.open {
  color: lawngreen;
}
.partners .partners-list .partner-card .content .partner-info .status.closed {
  color: red;
}
.partners .button-link {
  background-color: #1d1d1d;
  color: white;
  font-size: 18px;
  border-radius: 30px;
  padding: 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0 auto;
}
.partners .button-link svg {
  fill: white;
  width: 15px;
  height: 15px;
}

@-webkit-keyframes rotation_481 {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  0% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@keyframes rotation_481 {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  0% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}
.number-section {
  background: #EC4ABA;
  padding: 100px 0;
  font-family: "Poetsen One", serif;
}
@-webkit-keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 300px 300px;
  }
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 300px 300px;
  }
}
.number-section .number-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.number-section .number-content &gt; .title {
  margin-bottom: 50px;
  color: #1d1d1d;
  font-size: 40px;
  text-align: center;
  z-index: 1;
  position: relative;
}
.number-section .number-content .number-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  /* From Uiverse.io by jeremyssocial */
  /* Basic dimensions and centering */
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  /* Dark mode colors and gradient */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4392156863) 25%, #EC4ABA 25%, #EC4ABA 50%, rgba(255, 255, 255, 0.4392156863) 50%, rgba(255, 255, 255, 0.4392156863) 75%, #EC4ABA 75%, #EC4ABA);
  background-size: 300px 300px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 50px;
  /* Animation */
  -webkit-animation: move 14s linear infinite;
          animation: move 14s linear infinite;
}
.number-section .number-content .number-container svg {
  width: 50px;
  height: 50px;
  color: #1d1d1d;
  fill: #1d1d1d;
}
.number-section .number-content .number-container .number-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #1d1d1d;
  fill: #1d1d1d;
}
.number-section .number-content .number-container .number-item .title {
  font-size: 95px;
  text-align: center;
}
.number-section .number-content .number-container .number-item p {
  font-size: 20px;
  text-align: center;
}

.bde-section {
  padding: 100px 0;
  width: 100%;
  height: 100%;
  /* Add your background pattern here */
  background-color: rgba(236, 74, 185, 0.7843137255);
  background-image: linear-gradient(45deg, #EC4ABA 25%, transparent 25%), linear-gradient(-45deg, #EC4ABA 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #EC4ABA 75%), linear-gradient(-45deg, transparent 75%, #EC4ABA 75%);
  background-size: 200px 200px;
  background-position: 0 0, 0 100px, 100px -100px, -100px 0px;
  font-family: "Poetsen One", serif;
}
.bde-section .title {
  margin-bottom: 40px;
  color: #1d1d1d;
  font-size: 40px;
  text-align: center;
  z-index: 1;
  position: relative;
}
.bde-section .bde-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 3fr;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
  width: 100%;
}
.bde-section .bde-container .left-container {
  background-color: rgba(205, 214, 240, 0.8235294118);
  border-radius: 10px;
  padding: 40px 30px;
}
.bde-section .bde-container .left-container .title-total {
  margin-bottom: 20px;
  font-size: 18px;
}
.bde-section .bde-container .left-container .icons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.bde-section .bde-container .left-container .icons-container .image {
  background-color: white;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
}
.bde-section .bde-container .left-container .icons-container .image .item-img {
  height: 35px;
  width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.bde-section .bde-container .left-container .left-img {
  width: 100%;
}
.bde-section .bde-container .right-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.bde-section .bde-container .right-container .item-bde {
  background-color: rgba(227, 231, 243, 0.8235294118);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bde-section .bde-container .right-container .item-bde svg, .bde-section .bde-container .right-container .item-bde .item-img {
  height: 100px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.bde-section .bde-container .right-container .item-bde .title-item {
  font-size: 30px;
}

/* max-layout styles (your existing styles) */
.max-layout {
  /* ... your existing styles ... */
  padding-top: 100px;
  max-width: 1440px; /* Set maximum width */
  margin: 0 auto; /* Center the container (optional) */
  /* two-columns layout */
  /* contact details styles */
  /* Contact details styles */
}
.max-layout .two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .max-layout .two-columns {
    /* Responsive adjustments */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .max-layout .two-columns .left-column,
  .max-layout .two-columns .right-column {
    width: 100%;
  }
}
.max-layout .left-column {
  width: 50%;
  padding: 20px;
  background-color: #ffffff; /* Light gray background */
}
.max-layout .right-column {
  width: 50%;
  padding: 20px;
}
.max-layout .right-column .wpforms-container {
  /* Target the WPForms form */
  /* Add any specific styling for the form here */
}
.max-layout .contact-details {
  font-family: "Montserrat-Regular", sans-serif;
  padding: 75px 20px;
  /* ... other styles (h2, h3, p basic styles) ... */
}
.max-layout .contact-details h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}
.max-layout .contact-details .contact-info-block .horizontal-line,
.max-layout .contact-details .access-info-block .horizontal-line {
  border-top: 1px solid #dadada; /* Or your preferred color */
  margin: 10px 0; /* 5px margin top and bottom */
}
.max-layout .contact-details .contact-info-block h3,
.max-layout .contact-details .access-info-block h3 {
  font-size: 1.2em;
  margin: 10px 0; /* Space between h3 and the two-column section */
}
.max-layout .contact-details .contact-info-block:last-of-type,
.max-layout .contact-details .access-info-block:last-of-type {
  border-bottom: none;
}
.max-layout .contact-details .contact-info-block .two-columns,
.max-layout .contact-details .access-info-block .two-columns {
  /* Styles for the two-column layout (labels and values) */
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.8fr 10px 1.2fr;
  grid-template-columns: 0.8fr 1.2fr; /* Two equal columns */
  gap: 10px; /* Adjust gap between columns */
}
.max-layout .contact-details .contact-info-block p,
.max-layout .contact-details .access-info-block p {
  /* Styles for each label/value pair */
  display: contents; /* Makes &lt;p&gt; behave like it's not there for grid layout */
  -ms-grid-columns: auto 10px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin-bottom: 0; /* Remove default &lt;p&gt; margins within the grid */
}
.max-layout .contact-details .contact-info-block .label,
.max-layout .contact-details .access-info-block .label {
  /* Styles for the label */
  font-weight: lighter;
}
.max-layout .contact-details .contact-info-block .value,
.max-layout .contact-details .access-info-block .value {
  /* Styles for the value */
  text-align: left;
  font-weight: 600;
}

.reviews-section {
  background-color: #f9f7f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 100px 0;
}
.reviews-section .heading-reviews {
  color: #a89f98;
  margin: 50px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-family: proxima-nova, "helvetica neue", arial, helvetica, sans-serif;
  font-size: 15px;
}
.reviews-section .heading-reviews::before, .reviews-section .heading-reviews::after {
  content: "•";
  color: #d0d7d8;
  display: inline-block;
  margin: 0 0.5em;
}
.reviews-section .reviews-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.reviews-section .reviews-container .review-item {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #f1f2f2;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 30px 35px 25px 35px;
  font-family: proxima-nova, "helvetica neue", arial, helvetica, sans-serif;
  color: #666;
  line-height: 1.5;
}
.reviews-section .reviews-container .review-item .reviewer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.reviews-section .reviews-container .review-item .reviewer .city {
  font-size: 15px;
  color: #666;
}
.reviews-section .reviews-container .review-item .reviewer .reviewer-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews-section .reviews-container .review-item .reviewer .reviewer-name svg {
  width: 15px;
  height: 15px;
  fill: #666;
}
.reviews-section .reviews-container .review-item .rating {
  fill: orange;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 10px 0;
}
.reviews-section .reviews-container .review-item .rating::before {
  border: 0.1px solid rgba(0, 0, 0, 0.2);
  content: " ";
  position: absolute;
  width: 100%;
  top: 50%;
}
.reviews-section .reviews-container .review-item .rating svg {
  height: 30px;
  width: 100px;
  margin: auto;
  background: white;
  z-index: 3;
}
.reviews-section .reviews-container .review-item .title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}
.reviews-section .reviews-container .review-item .content {
  font-size: 15px;
}

.values-section {
  background-color: #f9f7f5;
}
.values-section .value-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(4, 1fr);
  font-family: proxima-nova, "helvetica neue", arial, helvetica, sans-serif;
  padding: 100px 0;
  gap: 50px;
}
.values-section .value-container .item-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  color: #666;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.values-section .value-container .item-value svg {
  width: 90px;
  height: 90px;
  fill: #c5b6aa;
}
.values-section .value-container .item-value .title {
  font-size: 20px;
  font-weight: 700;
}
.values-section .value-container .item-value .content {
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
}

.product-detail-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 100px;
  margin: 150px 0;
  font-family: proxima-nova, "helvetica neue", arial, helvetica, sans-serif;
  color: #666;
}
.product-detail-section.no-margin-top {
  margin-top: 0;
}
.product-detail-section.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.product-detail-section .left-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 0;
  width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-detail-section .left-container .secondary-title {
  text-align: center;
}
.product-detail-section .left-container .secondary-title span {
  font-style: italic;
}
.product-detail-section .left-container .p-description {
  text-align: center;
  line-height: 1.5;
}
.product-detail-section .left-container .cta-tertiary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black;
  margin: 0 auto;
  text-decoration: underline;
}
.product-detail-section .left-container .cta-tertiary svg {
  width: 20px;
  height: 20px;
}
.product-detail-section .right-container {
  width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-detail-section .right-container img {
  aspect-ratio: 16/9;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.last-product-section {
  margin: 150px 0 0 0;
  font-family: proxima-nova, "helvetica neue", arial, helvetica, sans-serif;
}
.last-product-section .title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.last-product-section .title-block .left-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.last-product-section .title-block .left-container .section-title {
  font-size: 18px;
  opacity: 0.4;
  font-weight: 500;
  cursor: pointer;
}
.last-product-section .title-block .left-container .section-title.active {
  opacity: 1;
}
.last-product-section .title-block .see-all {
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: black;
}
.last-product-section .title-block .see-all svg {
  width: 20px;
  height: 20px;
}
.last-product-section .product-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.last-product-section .product-container.hidden {
  display: none;
}
.last-product-section .product-container .product-item {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-left: none;
  border-right: none;
  padding: 40px 0;
}
.last-product-section .product-container .product-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.last-product-section .product-container .product-item a .fourth-title {
  margin: 30px 0;
  text-align: center;
}
.last-product-section .product-container .product-item a img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 250px;
}

.citation-section {
  width: 60%;
  margin: 100px auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: proxima-nova, "helvetica neue", arial, helvetica, sans-serif;
  color: #666;
}
.citation-section svg {
  opacity: 0.3;
  position: absolute;
  top: 40%;
  width: 90px;
  height: 90px;
  left: 0;
}
.citation-section .citation-content {
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  width: 70%;
  font-style: italic;
}
.citation-section .citation-title {
  font-size: 40px;
  width: 70%;
  text-align: center;
}
.citation-section .author {
  font-size: 15px;
  font-weight: 700;
}

.environment-section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  font-family: proxima-nova, "helvetica neue", arial, helvetica, sans-serif;
  margin-bottom: 100px;
}
.environment-section .right-container, .environment-section .left-container {
  position: relative;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
}
.environment-section .right-container::before, .environment-section .left-container::before {
  content: " ";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.environment-section .right-container img, .environment-section .left-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.environment-section .right-container .content, .environment-section .left-container .content {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
  width: 80%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.environment-section .right-container .content .subtitle, .environment-section .left-container .content .subtitle {
  font-weight: 500;
  margin-bottom: 10px;
}
.environment-section .right-container .content a, .environment-section .left-container .content a {
  color: white;
  margin-top: 20px;
  border-bottom: 2px solid white;
  padding-bottom: 4px;
}

/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  5 : MODELS
//                              * CSS exclusif à ces templates uniquement
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  DEDICATED VARIABLES 
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  POSTS ARCHIVE 
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  DEDICATED VARIABLES 
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  POST SINGLE 
/**/
.page-template-boutique .header-button {
  margin-top: 150px;
}
.page-template-boutique .filter-container {
  position: relative;
}
.page-template-boutique .filter-container .bkg-opacity {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.36);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters {
  margin-left: auto;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .header-filtre {
  padding: 60px 60px 50px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .header-filtre i {
  margin: auto 0;
  cursor: pointer;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity {
  position: relative;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.1)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0));
  z-index: 0;
  pointer-events: none;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container {
  margin: 0 60px 0 60px;
  max-height: 500px;
  overflow: scroll;
  position: relative;
  overflow-x: hidden;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div {
  display: -ms-grid;
  display: grid;
  position: relative;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .parent {
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .parent i {
  position: absolute;
  right: 0;
  margin-top: 3px;
  font-size: 12px;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .child {
  display: none;
  padding-bottom: 15px;
  cursor: pointer;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .child span {
  margin-left: 10px;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .bkg-bottom-opacity .tri_afficher-container .category-div .child:last-child {
  padding-bottom: 30px;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .totalProduct {
  padding: 27px 60px;
}
.page-template-boutique .filter-container .bkg-opacity .tab-filters .totalProduct button {
  cursor: pointer;
  padding: 15px 0;
  border: 1px solid black;
  color: black;
  background-color: transparent;
  width: 100%;
  border-radius: 25px;
}
.page-template-boutique .filter-container .bkg-opacity.show {
  display: block;
  opacity: 1;
}
.page-template-boutique .boutique-container {
  padding-top: 0;
}
.page-template-boutique .boutique-container .link-category-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.page-template-boutique .boutique-container .link-category-button a {
  padding: 16px 23px;
  margin-right: 15px;
  cursor: pointer;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 14px;
}
.page-template-boutique .boutique-container .link-category-button .all-filters a {
  margin: 0;
}
.page-template-boutique .boutique-container .product-list .card-item {
  position: relative !important;
}

.confirm-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
}

/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  6 : PAGES
 * --------------------------------------------------------------------------------------------------------------
//                              * CSS exclusif à ces pages uniquement
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  DEDICATED VARIABLES 
/**/
/**
 * --------------------------------------------------------------------------------------------------------------
 *                                                  CONTACT PAGE 
/**/
.boutique-container .isotope-button-container.charger-plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0;
}
.boutique-container .isotope-button-container.charger-plus button {
  padding: 15px 23px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 14px;
  border-color: black;
  border: 1px solid black;
  text-decoration: none;
  border-radius: 25px;
  background-color: transparent;
  cursor: pointer;
  color: black;
  position: relative;
  outline: 1px solid transparent;
}
.boutique-container .isotope-button-container.charger-plus button:hover {
  outline: 2px solid black;
  outline-offset: -1px;
}

.section-myaccount {
  margin: 200px 0;
  font-family: "Poetsen One", serif;
}
.section-myaccount .choose-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.section-myaccount .choose-container .modify-container, .section-myaccount .choose-container .create-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-myaccount .choose-container .modify-container p, .section-myaccount .choose-container .create-container p {
  text-align: center;
}
.section-myaccount .choose-container .modify-container img, .section-myaccount .choose-container .create-container img {
  height: 200px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-myaccount .choose-container .modify-container .button-link, .section-myaccount .choose-container .create-container .button-link {
  background-color: #1d1d1d;
  color: white;
  font-size: 18px;
  border-radius: 30px;
  padding: 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0 auto;
}
.section-myaccount .choose-container .modify-container .button-link svg, .section-myaccount .choose-container .create-container .button-link svg {
  fill: white;
  width: 15px;
  height: 15px;
}</pre></body></html>