@charset "UTF-8";
/* ===============================
   MOBILE MODE
   =============================== */
@media (max-width: 768px) {
  #header .header__inner .navigation {
    border-bottom: none !important;
  }
  #header .header__inner .navigation .menu-toggle {
    display: block;
    color: #316094;
    font-size: 2rem;
  }
  #header .header__inner #nav.is-open {
    transform: translateX(0);
    display: block;
  }
  #header .header__inner #nav ul {
    flex-direction: column;
  }
  #header .header__inner #nav ul li .nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    background: 0 0;
    border: 0;
  }
  #logo img {
    max-height: 50px;
  }
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 80%;
    height: calc(100vh - 100%);
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    overflow-y: auto;
  }
  form#views-exposed-form-page-de-recherche-page-1 {
    display: flex;
    margin-left: 2rem;
    align-items: center;
  }
  form#views-exposed-form-page-de-recherche-page-1 .form-item-search {
    width: 100%;
  }
  form#views-exposed-form-page-de-recherche-page-1 .form-item-search .form-text {
    margin: 0;
    background: var(--ice-blue, #F0F4F5);
    box-shadow: 0px 2px 6px 0px rgba(49, 96, 148, 0.25) inset;
    padding: 1rem;
    width: 100%;
  }
}
/* ===============================
   HEADER GLOBAL
   =============================== */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}
#header::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 50px;
  background-image: url(/themes/custom/boutique/dist/img/bg_menu.svg);
  background-position: center top;
  background-size: contain;
  background-repeat: repeat-x;
  z-index: 1;
}
#header .header__inner {
  position: relative;
}
#header .header__inner .navigation {
  background-color: #fff;
  padding: 15px 5vw;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #243746;
}
#header .header__inner .navigation #logo a {
  text-decoration: none;
}
#header .header__inner .navigation #logo a span {
  display: block;
  font-weight: 300;
  font-size: 53px;
  line-height: 1.3;
  color: var(--blue-color);
  text-transform: uppercase;
  text-decoration: none;
}
#header .header__inner .navigation #views-exposed-form-page-de-recherche-page-1 {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  align-items: center;
  border-right: 1px solid #000;
}
#header .header__inner .navigation #views-exposed-form-page-de-recherche-page-1 .form-item-search .form-text {
  margin: 0;
  width: 100%;
  border: none;
  height: 30px;
  outline: none;
  border-bottom: 1px solid #ddd;
}
#header .header__inner .navigation #views-exposed-form-page-de-recherche-page-1 .close-search {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding-right: 1rem;
}
#header .header__inner .navigation #search {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 0 15px 0;
}
#header .header__inner .navigation #search .input-group {
  justify-content: flex-end;
}
#header .header__inner .navigation #search .input-group input {
  width: calc(100% - 80px);
  border: none;
}
#header .header__inner .navigation #search .input-group button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-right: 1px solid #243746;
  padding-right: 20px;
}
#header .header__inner .navigation #search .input-group button img {
  width: 14px;
}
#header .header__inner .navigation #links {
  display: flex;
  align-items: flex-end;
  margin: 0 0 5px;
}
#header .header__inner .navigation #links ul.links_account,
#header .header__inner .navigation #links ul.account_menu {
  display: flex;
  margin: 0;
  gap: 1rem;
  list-style: none;
  padding-left: 0;
}
#header .header__inner .navigation #links li.account #client_menu li a {
  text-decoration: none;
  color: #007ca4;
}
#header .header__inner .navigation #links li.account #client_menu li a:hover {
  text-decoration: underline;
}
#header .header__inner #nav {
  overflow-x: auto;
  overflow-y: visible;
  background: white;
  border-top: 1px solid #ddd;
  padding: 15px 0 8px;
  display: flex;
  flex-wrap: wrap;
}
#header .header__inner #nav ul {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  list-style: none;
  padding: 0 1rem;
  margin: 1rem;
  flex-wrap: wrap;
}
#header .header__inner #nav ul li .nav-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  color: #243746;
  letter-spacing: 0.6px;
}
#header .header__inner #nav ul li .nav-link:hover {
  text-decoration: underline;
}
#header .header__inner #nav ul li .nav-link:focus-visible {
  outline: 3px solid var(--black-color);
}
#header .header__inner #nav ul li:nth-child(3) .nav-link, #header .header__inner #nav ul li:nth-child(2) .nav-link {
  font-weight: 600;
  color: var(--blue-color);
}
#header .header-right {
  display: flex;
  gap: 1rem;
}

/* ===============================
   MENU TOGGLE
   =============================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
.menu-toggle .bar {
  display: block;
  background-color: #316094;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  transition: all 300ms ease-in-out;
}
.menu-toggle[aria-expanded=true] .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded=true] .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.menu-toggle[aria-expanded=true] .bar:nth-child(2) {
  opacity: 0;
}

/* ===============================
   ACCOUNT MENU
   =============================== */
.account {
  position: relative;
}
.account__button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.account__menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background-color: #fff;
  border: 1px solid #000;
  flex-direction: column;
  z-index: 1000;
  min-width: 200px;
  padding: 0;
}
.account__menu li {
  padding: 0;
  list-style: none;
}
.account__menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
}
.account__menu li a:hover, .account__menu li a:focus {
  background-color: #f0f0f0;
}
.account.open .account__menu {
  display: block;
}

/* ===============================
   SEARCH MOBILE
   =============================== */
#search-mobile {
  display: block;
}

button#edit-submit-page-de-recherche,
button#edit-submit-page-de-recherche--2 {
  background-color: rgba(0, 0, 0, 0);
  font-size: 0;
  color: rgba(0, 0, 0, 0);
  border: none;
  background-image: url(/themes/custom/boutique/dist/img/loop.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 17px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  background-color: #243746;
  position: relative;
  width: 100%;
  min-width: auto;
  margin: 0;
  border-color: rgba(0, 0, 0, 0);
  border-image: initial;
  letter-spacing: 0.2px;
}
footer #footer-wrapper {
  position: relative;
  color: #fff;
  padding: 0.625rem 1.25rem 1.875rem;
  background: #243746;
  min-height: 250px;
}
footer #footer-wrapper:before {
  position: absolute;
  left: 0;
  width: 100%;
  content: "";
  top: -5.0625rem;
  height: 5.125rem;
  background: url(/themes/custom/boutique/dist/img/footer_top.svg) repeat-x;
  transform: rotate(180deg);
}
footer #footer-wrapper a:focus-visible {
  outline: 3px solid var(--body-color);
}
@media (min-width: 992px) {
  footer #footer-wrapper {
    padding: 1.875rem 7.125rem 5.125rem;
  }
  footer #footer-wrapper .block--icon-poste {
    order: 1;
  }
  footer #footer-wrapper .block--social-links {
    float: right;
    margin: 15px -20px auto auto;
  }
}
footer #footer-wrapper .region-footer {
  position: relative;
  display: flex;
  flex-flow: row wrap;
}
footer #footer-wrapper .region-footer .footer-top {
  position: relative;
  width: 100%;
}
footer #footer-wrapper .region-footer .footer-top .block--newsletter {
  width: 100%;
}
footer #footer-wrapper .region-footer .footer-top .block--newsletter h2 {
  font: 500 1rem Barlow, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}
footer #footer-wrapper .region-footer .footer-top .block--newsletter .webform-submission-form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row wrap;
  width: 100%;
  max-width: 800px;
}
footer #footer-wrapper .region-footer .footer-top .block--newsletter .webform-submission-form input#edit-email::placeholder {
  color: white;
}
footer #footer-wrapper .region-footer .footer-top .block--newsletter .form-email {
  width: 100%;
  max-width: 100%;
  height: 2.1875rem;
  padding-left: 0.75rem;
  color: #d6dadb;
  font-size: 1.125rem;
  background: transparent;
  border: 1px solid #7b868c;
  margin-top: 0;
}
footer #footer-wrapper .region-footer .footer-top .block--newsletter .form-actions {
  margin: 0;
  padding-top: 0;
}
footer #footer-wrapper .region-footer .footer-top .block--newsletter .form-actions .form-submit {
  display: inline-flex;
  margin: 0;
  padding: 0 1.5625rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  justify-content: center;
  width: 100%;
  height: 2.1875rem;
  line-height: 1rem;
  font-size: 1rem;
  font-weight: 700;
  transition-duration: 0.4s;
  color: #1c355e;
  background-color: #f7be00;
  border-color: transparent;
}
footer #footer-wrapper .region-footer .footer-top .block--newsletter .form-actions .form-submit:hover {
  background-color: #c89211;
}
footer #footer-wrapper .region-footer .footer-top .block--newsletter .form-text::placeholder, footer #footer-wrapper .region-footer .footer-top .block--newsletter .form-text::-moz-placeholder {
  color: #d6dadb;
}
footer #footer-wrapper .region-footer .footer-top .block--newsletter :focus {
  outline: thin solid var(--body-color);
}
@media (min-width: sm) {
  footer #footer-wrapper .region-footer .footer-top .block--newsletter .form-item {
    width: 100%;
  }
  footer #footer-wrapper .region-footer .footer-top .block--newsletter .form-actions {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: lg) {
  footer #footer-wrapper .region-footer .footer-top .block--newsletter {
    margin-bottom: 25px;
    width: 55%;
  }
  footer #footer-wrapper .region-footer .footer-top .block--newsletter .webform-submission-form {
    flex-flow: row nowrap;
  }
  footer #footer-wrapper .region-footer .footer-top .block--newsletter .form-actions {
    max-width: 132px;
  }
}
@media (min-width: xl) {
  footer #footer-wrapper .region-footer .footer-top .block--newsletter {
    margin-bottom: 25px;
    width: 75%;
  }
}
@media (min-width: 992px) {
  footer #footer-wrapper .region-footer .footer-top .block--menu-footer {
    position: absolute;
    top: 1.875rem;
    right: 0;
    margin: 0;
    padding: 0;
  }
}
footer #footer-wrapper .region-footer .footer-top .block--adresse {
  color: #fff;
  min-height: 90px;
  max-width: 245px;
  margin-bottom: 40px;
}
footer #footer-wrapper .region-footer .footer-top .block--adresse .title,
footer #footer-wrapper .region-footer .footer-top .block--adresse p {
  flex: 1 1 100%;
  font-weight: 500;
}
footer #footer-wrapper .region-footer .footer-top .block--adresse .title {
  width: 300px;
  order: 1;
  margin-bottom: 0.25rem;
  font-size: 1.875rem;
  line-height: 2.1875rem;
  color: #fff;
}
footer #footer-wrapper .region-footer .footer-top .block--adresse p {
  order: 2;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  color: #fff;
}
footer #footer-wrapper .region-footer .footer-top .block--menu-footer {
  padding: 0;
  text-align: right;
  list-style: none;
}
footer #footer-wrapper .region-footer .footer-top .block--menu-footer li a {
  margin-bottom: 0.5625rem;
  padding: 0;
  color: #fff;
  font-size: 0.9375rem;
}
footer #footer-wrapper .region-footer .footer-top .block--menu-footer li a:hover {
  text-decoration: underline;
}
@media (max-width: xl) {
  footer #footer-wrapper .region-footer .footer-top .block--menu-footer {
    margin-top: 0.9375rem;
    text-align: left;
  }
}
footer #footer-wrapper .region-footer .footer-links {
  flex: 1 1 100%;
  order: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: 1.5625rem;
  padding-bottom: 2rem;
  flex: 1 1 100%;
  margin-top: 4rem;
  padding-bottom: 1rem;
}
@media (min-width: lg) {
  footer #footer-wrapper .region-footer .footer-links {
    margin-top: 10px;
  }
}
footer #footer-wrapper .region-footer .footer-links a:focus-visible {
  outline: 3px solid var(--body-color);
}
footer #footer-wrapper .region-footer .footer-links .block--icon-poste {
  display: block;
  width: 2.875rem;
  height: 2.1875rem;
  margin-right: 0;
  background: url(/themes/custom/boutique/dist/img/logo_footer.svg) no-repeat;
}
footer #footer-wrapper .region-footer .footer-links .block--social-links {
  display: flex;
  margin: 0;
  padding-left: 0;
}
footer #footer-wrapper .region-footer .footer-links .block--social-links li {
  list-style: none;
  padding: 0;
}
footer #footer-wrapper .region-footer .footer-links .block--social-links li a {
  float: left;
  display: block;
  padding: 0;
  color: #fff;
  font-size: 0.9375rem;
  margin-right: 1.375rem;
  text-decoration: none;
}
footer #footer-wrapper .region-footer .footer-links .block--social-links li a:hover {
  text-decoration: none;
}
footer #footer-wrapper .region-footer .footer-links .block--social-links li [class*=link] {
  font-size: 1.5625rem;
  font-family: "mlp-others", sans-serif;
}
footer #footer-wrapper .region-footer .footer-links .block--social-links li .link-facebook:before {
  content: "\e90e";
}
footer #footer-wrapper .region-footer .footer-links .block--social-links li .link-twitter:before {
  content: "\e901";
}
footer #footer-wrapper .region-footer .footer-links .block--social-links li .link-instagram:before {
  content: "\e910";
}
footer #footer-wrapper .region-footer .footer-links .block--social-links li .link-museelaposte {
  border-left: 1px solid;
  background: url(/themes/custom/boutique/dist/img/logo_label_musee-de-France-blanc.svg) no-repeat;
  background-position-x: 1.375rem;
  height: 100%;
  width: 180px;
  background-size: 141px;
  display: block;
}

:root {
  --body-color: #eff3f4;
  --blue-color: #00769c;
  --green-color: #008164;
  --grey-color: #545353;
  --black-color: #070707;
}

@font-face {
  font-family: "mlp-others";
  src: url(/themes/custom/boutique/dist/fonts/mlp-others.woff) format("woff"), url(/themes/custom/boutique/dist/fonts/mlp-others.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Barlow";
  src: url(/themes/custom/boutique/dist/fonts/Barlow-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  background-color: var(--body-color);
  overflow-x: hidden;
  font-weight: 300;
}

body .page_category .slide {
  padding-top: 25%;
  margin-bottom: 5vh;
}

#breadcrumb {
  padding: 40px 0 0;
}

#breadcrumb ul {
  padding: 0;
  margin: 0;
  display: flex;
}

#breadcrumb ul li {
  list-style: none;
  color: var(--blue-color);
  margin: 0 10px 0 0;
}

#breadcrumb ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
  color: #243746;
}

#breadcrumb ul li a:hover {
  text-decoration: underline;
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 30px 0;
  list-style-type: none;
}

.slick-dots li {
  margin: 0 10px;
}

.slick-dots li.slick-active button {
  opacity: 1;
}

.slick-dots button {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #d22c33;
  opacity: 0.3;
  color: transparent;
}

.slick-dots .controls {
  width: 28px;
  height: 28px;
  margin: 0;
  background-image: url(/themes/custom/boutique/dist/img/arrow-side.svg);
  background-size: 40%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}

.slick-dots .controls.prev-btn {
  transform: scale(-1, 1);
}

#main {
  position: relative;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 768px) {
  #main {
    position: relative;
  }
}
#main #slider {
  flex-direction: row;
  flex-wrap: nowrap;
}

#main #infos {
  padding: 5vw 0;
}

#main #infos .title {
  margin: 0 0 15px 0;
  font-size: 44px;
}

#main #infos p {
  line-height: 1.6;
  font-size: 22px;
}

#main #infos #my-video {
  max-width: 100%;
}

#main #new_products .title-new {
  padding: 1rem;
  font-size: 44px;
  color: var(--blue-color);
  font-weight: 300;
  margin-top: 2rem;
}

#main .slick-track {
  display: flex !important;
}

#main .slick-slide {
  height: inherit !important;
}

#main #products.product_liste {
  padding: 5vw 0;
}

#main #products.product_liste .spacer {
  min-width: 320px;
}

#main #products.product_liste .product {
  min-width: 280px;
}

#main #collection {
  padding: 5vw 0;
  position: relative;
}

#main #collection .title {
  font-size: 44px;
}

#main #collection:after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--blue-color);
  z-index: -1;
}

#main #categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  position: relative;
  padding: 3vh 0;
}

#main #categories .title {
  font-size: 44px;
}

#main #categories > div {
  flex-basis: 30%;
}

#main #categories .category {
  margin: 30px 0;
}

.title {
  color: var(--teal-blue, var(--blue-color));
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

p {
  font-size: 16px;
  line-height: 1.2;
  color: #000;
}

#hero {
  position: relative;
}

#hero .slide {
  margin: 0;
}

#hero > .content {
  display: block;
  background: #fff;
  width: 80%;
  padding: 15px 30px;
  margin: -70px auto 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

#hero > .content .title {
  font-weight: 300;
  font-size: 48px;
  line-height: 1.3;
  color: #243746;
  padding: 0 0 12px;
}

#hero > .content .description {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  padding: 8px 0 32px;
  color: #000;
}

#hero > .content .description p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

.slide {
  width: 100%;
  padding-top: 30%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  background-image: url(/themes/custom/boutique/dist/img/slider.jpg);
}

.slide .content {
  display: block;
  background: #fff;
  position: absolute;
  left: 5%;
  /* top: 55%; */
  opacity: 0;
  transform: translate(0, -50%);
  padding: 25px 60px;
  transition: all 0.8s;
}

.slide .content.animated {
  top: 50%;
  opacity: 1;
}

.slide .content .title {
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  color: #316094;
  padding: 0 0 12px;
  text-align: center;
}

.slide .content .description {
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: #316094;
  padding: 8px 0 32px;
  text-align: center;
}

.slide .content .description p {
  font-size: 26px;
  color: #316094;
}

.slide .content a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  padding: 10px 20px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
}

.inboarding {
  width: 100%;
  padding-top: 30%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  background-image: url(/themes/custom/boutique/dist/img/slider.jpg);
  margin-bottom: 140px;
}

@media only screen and (max-width: 768px) {
  .slide {
    width: 100%;
    padding-top: 30%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    background-image: url(/themes/custom/boutique/dist/img/slider.jpg);
    height: 400px;
  }
  #slider .content {
    display: block;
    background: #fff;
    position: relative;
    left: 5%;
    /* top: 55%; */
    /* opacity: 0; */
    transform: translate(0, -50%);
    padding: 25px 60px;
    transition: all 0.8s;
    width: 90%;
  }
  #slider .content a {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    padding: 10px 20px;
    text-transform: uppercase;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    text-align: center;
  }
  #slider .content .title {
    font-weight: 300;
    font-size: 44px;
    line-height: 1;
    color: #316094;
    padding: 0 0 12px;
    text-align: center;
  }
  #slider .content .description {
    font-weight: 500;
    font-size: 26px;
    line-height: 1;
    color: #316094;
    padding: 8px 0 32px;
    text-align: center;
  }
  #slider .content .description p {
    font-size: 26px;
    color: #316094;
  }
  .inboarding {
    width: 100%;
    padding-top: 30%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    background-image: url(/themes/custom/boutique/dist/img/slider.jpg);
    margin-bottom: 140px;
    height: 300px;
  }
  .inboarding .content {
    display: block;
    background: #fff;
    position: absolute;
    opacity: 0;
    transform: translate(0, -50%);
    padding: 25px 20px !important;
    transition: all 0.8s;
    margin-top: 125px;
    width: 90%;
  }
  .taxons_all_product {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}
.inboarding .content {
  display: block;
  background: #fff;
  position: absolute;
  /* left: 5%; */
  /* top: 55%; */
  opacity: 0;
  transform: translate(0, -50%);
  padding: 25px 60px;
  transition: all 0.8s;
}

.inboarding .content.animated {
  opacity: 1;
}

.inboarding .content .title {
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  color: #316094;
  padding: 0 0 12px;
  text-align: center;
}

.inboarding .content .description {
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: #316094;
  padding: 8px 0 32px;
  text-align: center;
}

.inboarding .content .description p {
  font-size: 26px;
  color: #316094;
}

.inboarding .content a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  padding: 10px 20px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.button {
  color: #fff;
  background-color: var(--blue-color);
  display: flex;
  padding: 6px 15px;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--blue-color);
  transition: all 0.3s;
  text-decoration: none;
  margin: 15px auto;
}

.button_disabled {
  color: #fff;
  background-color: var(--blue-color) 60;
  display: flex;
  padding: 6px 15px;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--blue-color) 60;
  transition: all 0.3s;
  text-decoration: none;
}

.button img {
  margin: 0 5px 0 0;
  transition: all 0.3s;
}

.button:hover img {
  content: url(/themes/custom/boutique/dist/img/cart_w.svg);
}

.products-wrapper {
  padding: 1.5rem 2.2rem;
}

.product_slider .slick-slide .product-card {
  height: 100%;
  padding: 1rem;
}
.product_slider .slick-slide .product {
  height: 100%;
  display: flex;
  width: 100%;
}

.product-card {
  display: flex;
  width: 100%;
  height: 100%;
}
.product-card .product {
  display: flex;
  width: 100%;
}
.product-card .product .content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 0.5px solid #007da5;
  background-color: #fff;
  width: 100%;
}
.product-card .product .content .image-wrapper {
  position: relative;
}
.product-card .product .content .image-wrapper .whishlist-product {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
}
.product-card .product .content .image-wrapper img {
  display: block;
  width: 100%;
}
.product-card .product .content .bottom-block {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-card .product .content .bottom-block a.button.add-to-cart {
  width: 100%;
  padding: 10px 20px;
  margin-top: auto;
  font-size: 0.875rem;
  margin-bottom: 0;
}
@media (min-width: 480px) and (max-width: 1200px) {
  .product-card .product .content .bottom-block a.button.add-to-cart {
    padding: 2px;
  }
}

.product .favoris:hover img {
  content: url(/themes/custom/boutique/dist/img/favoris_g.svg);
}

.product .title {
  font-size: 21px;
  line-height: 1.2;
  margin: 0;
}

.product .title a {
  text-decoration: none;
  color: inherit;
}

.product .price {
  font-weight: 500;
  font-size: 19px;
  line-height: 1;
  color: #007ca4;
  margin: 0;
}

.price_promotion_price {
  color: #D22C33;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.price_promotion {
  padding: 4px 10px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 5px;
  background: var(--lipstick, #D22C33);
  color: #fff;
}

.product .price ul {
  padding: 0;
  margin: 0;
}

.product .price ul li {
  list-style: none;
}

.product .price ul li div {
  font-weight: 500;
  font-size: 19px;
  line-height: 1;
  color: #007ca4;
}

.product .price + ul {
  padding: 0;
  margin: 0;
}

.product .price + ul li {
  list-style: none;
}

.product .button {
  width: 100%;
  padding: 10px 20px;
  margin-top: auto;
}

.product .button_disabled {
  width: 100%;
  padding: 10px 20px;
  margin-top: 20px;
}

.product-right form.qte-cart-add-to-cart-ajax-link input[type=submit] {
  background-image: url("/themes/custom/boutique/img/Basket-mini.svg");
  width: 100%;
  padding-left: 3rem;
  text-align: center;
  background-repeat: no-repeat;
  background-position: calc(50% - 3.5rem) center;
}

.category {
  position: relative;
  margin: 0 15px;
  padding: 0px 50px;
}

.category .image {
  /* width: 100%;
    height: 0; */
  padding-top: 75%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 208px;
}

.category .tag {
  position: absolute;
  left: 50px;
  top: 216px;
  color: var(--blue-color);
  padding: 5px 10px;
  background-color: #fff;
  border: 2px solid var(--blue-color);
  transform: translate(-21px, -50%);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
}

.category .tag:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 22px 22px 0;
  border-color: rgba(0, 0, 0, 0) #315f94 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  position: absolute;
  left: -2px;
  top: 100%;
}

.category .texte {
  background-color: #fff;
  padding: 30px;
  height: 150px;
}

.category .texte .description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 30px;
  color: #000;
}

.category .texte a {
  font-weight: 300;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  text-align: right;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #000;
  display: block;
}

.bloc {
  background-color: #fff;
  padding: 15px 30px;
  margin: 0 0 15px 0;
  font-weight: 300;
}
.bloc--register {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
  height: 100%;
}

.page_login h1 {
  font-weight: 300;
  font-size: 48px;
  line-height: 58px;
  text-align: center;
  color: #243746;
  padding: 10vh 0 5vh;
}

.page_login h2 {
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  color: var(--blue-color);
  margin: 0 0 15px 0;
}

.login_blocs {
  gap: 50px;
  display: flex;
  justify-content: space-around;
}
.login_blocs__bloc {
  display: flex;
  flex-basis: 33%;
  flex-direction: column;
}

#login_blocs #login .content,
#login_blocs #register .content {
  flex-grow: 1;
  font-weight: 300;
}

#login_blocs #login input,
#login_blocs #register input {
  width: 100%;
  padding: 8px 10px;
  margin: 10px 0;
  border: 0.5px solid rgba(0, 0, 0, 0.5);
}

#login_blocs #login input[type=submit],
#login_blocs #register input[type=submit] {
  width: 100%;
  padding: 8px 10px;
  margin: 10px 0;
  border: 0.5px solid var(--blue-color);
  text-transform: uppercase;
}

#login_blocs #login input::-moz-placeholder,
#login_blocs #register input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: rgba(0, 0, 0, 0.5);
}

#login_blocs #login input::placeholder,
#login_blocs #register input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: rgba(0, 0, 0, 0.5);
}

#login_blocs #login input[type=checkbox],
#login_blocs #register input[type=checkbox] {
  padding: 0;
  width: auto;
  border-radius: 0;
  margin: 0;
  width: 15px;
  height: 15px;
}

#login_blocs #login .forgot-password-link,
#login_blocs #register .forgot-password-link {
  display: block;
  color: var(--dark-grey-blue, #243746);
  text-align: right;
  font-size: 14px;
}

#login_blocs #login .remember_label,
#login_blocs #register .remember_label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin: 10px 0;
  color: #000;
  font-size: 14px;
}

#login_blocs #login .form-actions input,
#login_blocs #register .form-actions input {
  text-transform: uppercase;
  display: flex;
  height: 40px;
  padding: 10px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  margin: 15px 0 0;
}

#login_blocs #login .form-actions a,
#login_blocs #register .form-actions a {
  text-transform: uppercase;
  display: flex;
  height: 40px;
  padding: 10px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  margin: 15px 0 0;
}

#login_blocs #login ul,
#login_blocs #register ul {
  margin: 20px 0 10px;
}

#login_blocs #register_form {
  max-width: 800px;
}

#login_blocs #register_form #edit-status--wrapper,
#login_blocs #register_form #edit-roles--wrapper,
#login_blocs #register_form #edit-delete {
  display: none;
}

#login_blocs #register_form.active {
  display: block;
}

#login_blocs #register_form #edit-field-genre {
  display: flex;
  margin: 10px 0 10px;
  gap: 15px;
}

#login_blocs #register_form fieldset legend {
  display: none;
}

#login_blocs #register_form .field--type-string .js-form-item > label {
  /* display: none */
  font-size: 18px;
  font-weight: 600;
}

#login_blocs #register_form .js-form-item label {
  /* display: none */
  font-size: 18px;
  font-weight: 600;
}

#login_blocs #register_form #edit-simplenews .js-form-item label,
#login_blocs #register_form #edit-field-terms-and-conditions-wrapper .js-form-item label {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#login_blocs #register_form #edit-simplenews .js-form-item input,
#login_blocs #register_form #edit-field-terms-and-conditions-wrapper .js-form-item input {
  width: 21px;
  height: 21px;
  border: 1px solid #808080;
}

#login_blocs #register_form #edit-simplenews .js-form-item,
#login_blocs #register_form #edit-field-terms-and-conditions-wrapper .js-form-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

#login_blocs #register_form #edit-simplenews,
#login_blocs #register_form #edit-field-terms-and-conditions-wrapper {
  margin-block: 20px;
}

#login_blocs #register_form #edit-simplenews #edit-simplenews--description {
  display: none;
}

#login_blocs #register_form .js-form-item.js-form-type-radio label {
  display: inline-block;
}

#login_blocs #register_form input[type=text],
#login_blocs #register_form input[type=email],
#login_blocs #register_form input[type=password] {
  width: 100%;
  padding: 8px 10px;
  margin: 10px 0;
  border: 0.5px solid rgba(0, 0, 0, 0.5);
  height: 52px;
}

#login_blocs #register_form input[type=text]::-moz-placeholder,
#login_blocs #register_form input[type=email]::-moz-placeholder,
#login_blocs #register_form input[type=password]::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: rgba(0, 0, 0, 0.5);
}

#login_blocs #register_form input[type=checkbox]::-moz-placeholder {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

#login_blocs #register_form input[type=text]::placeholder,
#login_blocs #register_form input[type=email]::placeholder,
#login_blocs #register_form input[type=password]::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: rgba(0, 0, 0, 0.5);
}

#login_blocs #register_form #edit-login-register-field-genre {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0;
  gap: 10px;
}

#login_blocs #register_form input[type=submit] {
  color: #fff;
  background-color: var(--blue-color);
  display: flex;
  padding: 6px 15px;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--blue-color);
  transition: all 0.3s;
  text-decoration: none;
  padding: 10px 35px;
  margin: 25px auto 10px;
}

#login_blocs #register_form input[type=submit]:disabled {
  color: #fff;
  background-color: var(--grey-color);
  display: flex;
  padding: 6px 15px;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--grey-color);
  transition: all 0.3s;
  text-decoration: none;
  padding: 10px 35px;
  margin: 25px auto 10px;
}

#login_blocs #register_form input[type=submit] img {
  margin: 0 5px 0 0;
  transition: all 0.3s;
}

#login_blocs #register_form input[type=submit]:hover {
  background-color: #fff;
  color: var(--blue-color);
}

#login_blocs #register_form input[type=submit]:hover:disabled {
  background-color: var(--grey-color);
  color: white;
}

#login_blocs #register_form input[type=submit]:hover img {
  content: url(/themes/custom/boutique/dist/img/cart_g.svg);
}

#login_blocs #register_form #show_login {
  display: block;
  text-align: center;
  margin: 15px auto;
}

.user-register-form {
  display: flex;
  flex-direction: column;
}

.back-to-top-container {
  padding-bottom: 6rem;
  padding-top: 8.125rem;
  background-color: #f0f4f5;
  display: flex;
  justify-content: space-around;
}

.back-to-top-container .back-to-top-link {
  color: #243746;
  font-weight: 500;
  line-height: 1rem;
  font-size: 0.875rem;
  text-align: center;
  width: auto;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
  font-weight: 300;
}

.back-to-top-container .back-to-top-link:hover {
  text-decoration: none;
}

.back-to-top-container .back-to-top-link svg {
  z-index: 10;
  display: inline-block;
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: var(--blue-color);
  border-radius: 3.125rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px;
  content: "";
  padding: 15px;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .back-to-top-container .back-to-top-link:before {
    transition-duration: 0.4s;
  }
  .back-to-top-container .back-to-top-link:hover:before {
    background-color: #316094;
  }
}
#register_errors ul,
#login_errors ul,
div ul {
  margin: 0;
}

#register_errors em.placeholder,
#login_errors em.placeholder,
div em.placeholder {
  cursor: auto;
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
  vertical-align: baseline;
}

.sort-order {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.sort-order label {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin-right: 8px;
}

.sort-order select {
  background-color: transparent;
  outline: none;
  border: none;
  width: auto;
  font-size: 14px;
  padding: 5px 27px 5px 5px;
}

.ui-dialog {
  z-index: 1999 !important;
  width: 600px !important;
}

.ui-dialog-titlebar {
  background-color: #fff !important;
  font-size: 28px !important;
}

.ui-dialog-titlebar span {
  color: #000 !important;
  font-size: 28px !important;
}

.ui-dialog-content {
  padding: 0 !important;
}

.ui-dialog-titlebar-close::before {
  content: "×";
  font-family: "Font Awesome 8 brands";
  font-weight: 600;
}

.top_modal_bg {
  background-color: #F0F4F5;
  padding: 30px !important;
}

.img_command {
  display: flex;
  width: 118px;
  height: 170px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  object-fit: contain;
}

.modal-content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.product-title-modal {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.ui-dialog-titlebar-close {
  border: none;
  display: inline-block;
  padding: 8px 16px;
  vertical-align: middle;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  color: #000 !important;
}

.product-title-modal {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.stock {
  color: var(--green-color);
  display: flex;
  padding: 10px 0px;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.select-product-number {
  padding: 5px 10px;
}

.price_product {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

.btn-continue {
  background-color: #fff;
  color: var(--blue-color);
  border: 1px solid var(--blue-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 15px;
  line-height: 1;
}

.btn-back {
  background-color: #fff;
  color: var(--blue-color);
  border: 1px solid var(--blue-color);
  font-style: normal;
  font-weight: 500;
  height: 40px;
  margin-top: 10px;
}

.btn-back:hover {
  background-color: var(--blue-color);
  color: #fff;
  border: 1px solid #fff;
  font-style: normal;
  font-weight: 500;
  height: 40px;
  margin-top: 10px;
}

.btn-disabled {
  pointer-events: none;
  cursor: none;
}

.border_bottom {
  border-bottom: 1px solid rgba(36, 55, 70, 0.5);
  padding: 10px 0;
}

/*
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 5px grey; */
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(36, 55, 70, 0.5);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 55, 70, 0.5);
}

.title_block {
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.accordion-button::after {
  position: absolute;
  right: 16px;
  top: 40px;
  display: none;
}

.accordion-button {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.accordeon-content-container {
  display: flex;
  flex-direction: row;
}

.accordion-button:not(.collapsed) {
  background-color: unset;
  box-shadow: none;
}

.accordion-body {
  padding-left: 50px;
  /* padding-right: 25px; */
}

.renseigner-votre-adresse,
.renseigner-votre-adresse-de-facture {
  position: relative;
  font-weight: 500;
}

.lieu-de-livraison-prix {
  /* width: 791px; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 29px;
  /* padding-right: 40px; */
}

.lieu-de-livraison {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.prix-de-livraison {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 10px;
}

.adresse-de-livraison,
.adresse-de-facturation {
  gap: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.renseigner-votre-adresse-wrapper {
  /* display: flex;
    flex-direction: row;
    padding: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    color: #000; */
  display: none;
}

.formulaire-parent {
  flex-direction: row;
  gap: 17px;
}

.formulaire1 {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.champ1 {
  align-self: stretch;
  background-color: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  height: 52px;
  flex-direction: row;
  padding: 16px;
  align-items: center;
  position: relative;
}

.valeur {
  align-self: stretch;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
}

.martin {
  flex: 1;
  position: relative;
}

.label {
  margin: 0 !important;
  position: absolute;
  top: 16.5px;
  left: 16px;
  flex-direction: row;
  align-items: flex-start;
  z-index: 1;
}

.prnom {
  position: relative;
}

.domicile-content,
.point-retrait-content,
.facture-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  align-self: stretch;
}

.domicile-code-postale-ville input,
.adresse-facture input {
  width: 49%;
  display: flex;
}

.domicile-code-postale-ville,
.adresse-facture {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.prix-de-livraison small {
  color: rgba(0, 0, 0, 0.5);
  /* Paragraphe 1 */
  font-size: 16px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.lieu-de-livraison div {
  color: #000;
  /* Titre 3 medium */
  font-size: 29px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.accordeon-content-checkbox {
  padding-right: 12px;
}

.accordeon-content-checkbox input {
  width: 21px;
  height: 21px;
}

.case-cocher-parent {
  display: flex;
}

.les-champs-marqus {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 9px 0 20px 0;
  color: #000;
  /* Paragraphe 2 */
  font-size: 14px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.case-cocher-parent input {
  margin-right: 8px;
  width: 21px;
  height: 21px;
}

.utiliser-mon-adresse {
  color: #000;
  /* Paragraphe 2 */
  font-size: 14px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.accordion-item {
  padding: 15px 10px 22px 15px;
}

.ms-n5 {
  margin-left: -40px;
}

.domicile-content input,
.point-retrait-content input,
.facture-content input {
  display: flex;
  height: 52px;
  padding: 16px;
  align-items: center;
  align-self: stretch;
  border-radius: 0 !important;
}

.rounded i {
  position: absolute;
  right: 18px;
  top: 18px;
}

.or-divider {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 13px;
  margin-bottom: 13px;
}

.or-divider::before {
  content: "";
  height: 1px;
  border-top: 1px solid rgba(36, 55, 70, 0.5019607843);
  flex: 1;
  margin: 0 0.25em 0 0;
}

.or-divider::after {
  content: "";
  height: 1px;
  border-top: 1px solid rgba(36, 55, 70, 0.5019607843);
  flex: 1;
  margin: 0 0 0 0.25em;
}

.point-de-retrait {
  border: 1px solid var(--grey-60, #666);
}

.point-de-retrait-content {
  padding: 30px;
  display: flex;
  justify-content: space-between;
}

.livre-content {
  color: #000;
  /* Titre 3 medium */
  font-size: 26px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.livre-date {
  color: #000;
  /* Paragraphe 1 medium */
  font-size: 16px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.livre-container {
  display: flex;
  flex-direction: column;
}

.livre-details a {
  color: rgba(36, 55, 70, 0.5);
  font-size: 14px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

.livre-details i {
  font-size: 12px;
  margin-right: 5px;
}

span.livre-adresse {
  width: 170px;
  line-height: 1;
  color: #000;
  /* Paragraphe 1 */
  font-size: 16px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.livre-container span {
  margin-bottom: 12px;
}

div#accordionExample {
  margin-bottom: 100px;
}

.accordion-item {
  margin-bottom: 32px;
}

.disabled {
  color: grey !important;
}

.adresse-de-facturation {
  padding: 15px 0 20px 0;
}

.facture-radios {
  display: flex;
  padding: 0 0 20px 0;
}

.facture-radios-content {
  padding: 8px 16px 8px 16px;
}

.facture-radios-content label {
  color: var(--grey-60, #666);
  /* Paragraphe 1 */
  font-size: 16px;
  font-family: Barlow;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.facture-radios-content input {
  padding: 10px;
}

.facture-content + .case-cocher-parent {
  padding-top: 14px;
}

.progress-nav {
  padding: 5vh 0 5vh;
  text-align: center;
}

.steps {
  margin: auto;
  padding: 0;
  display: flex;
  max-width: 90%;
  justify-content: space-between;
  position: relative;
}
.steps:after {
  content: "";
  position: absolute;
  width: 95%;
  height: 1px;
  background-color: #666;
  left: 4%;
  top: 30%;
  transform: translateY(-50%);
  z-index: -1;
}
.steps li {
  list-style: none;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #666;
  background-color: #eff3f4;
}
.steps li.desactive_step .step-number {
  background-color: #fff;
  border-color: var(--grey-color);
  color: var(--grey-color);
}
.steps li.desactive_step .step-label {
  color: var(--grey-color);
}
.steps li span.step-number {
  display: block;
  border: 1px solid var(--blue-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  line-height: 0;
  font-weight: 700;
  background-color: var(--blue-color);
  color: #fff;
}
.steps li span.step-label {
  color: var(--blue-color);
  background-color: transparent;
  border: 0px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  height: 0px;
}

.flex-1 {
  flex: 1 !important;
}

.theme_color {
  color: var(--blue-color) !important;
}

.title_style {
  color: var(--blue-color) !important;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.cart-empty-page {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
  margin-top: 100px;
}

.cart-empty-message {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
  margin-top: 100px;
}

#ajax-loader {
  display: none;
}

.ajax-loader {
  display: none;
}

.close_btn {
  font-size: 10px;
}

.ajax-progress-throbber {
  display: none;
}

.cardCommandPadding {
  padding: 30px;
}

.img_cart {
  display: flex;
  width: 118px;
  height: 170px;
  padding: 7.158px 4.968px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.cart_product_cart {
  display: flex;
}

.title_cart {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.content_cart {
  padding: 30px;
}

.remove .delete-order-item {
  border: 0;
  background-color: transparent;
  color: #243746;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  padding: 0;
}

.table_qty_cart, .qty_cart {
  width: 110px;
  display: flex;
  justify-content: center;
  padding-block: 20px 0px;
}

.table_price_cart, .price_cart {
  width: 110px;
  display: flex;
  justify-content: center;
  padding-block: 20px 0px;
  font-weight: 600;
}

.line_total {
  display: flex;
  justify-content: space-between;
}

#edit-submit #edit-checkout {
  display: none;
}

.order-total-line {
  display: none;
}

#edit-actions {
  /* position: absolute; */
  z-index: 11;
  top: 90%;
  right: 5%;
}

/* #edit-actions #edit-submit {
    display: none;
} */
.list_border_right {
  border-right: 1px solid;
  padding-right: 20px;
  margin-right: 20px;
}

.btn_commander {
  display: flex;
  height: 40px;
  padding: 10px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--blue-color);
}

.btn_disabled {
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #555;
  color: #fff;
  border: 1px solid #555;
}

.views-form {
  position: relative;
}

#layout-checkout-form {
  margin-top: 50px;
}

.checkout-pane {
  /* background-color: white; */
  padding: 20px;
}

.card_adresses {
  background-color: #fff;
  padding: 20px;
}

.card_adresses_text {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.card_adresses_btn {
  display: flex;
  height: 40px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--blue-color);
  background-color: var(--blue-color);
  color: #fff;
  text-decoration: none;
}

.card_adresses_btn_outlined {
  display: flex;
  height: 40px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--blue-color);
  background-color: #fff;
  color: var(--blue-color);
  text-decoration: none;
}

.message_error_text {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}

.message_error_text .placeholder {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}

.form_class [id^=edit-actions] {
  display: none;
}

.cart_products_number {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: red;
  top: -5px;
  right: -5px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
}

.payment_class .checkout-pane {
  width: 100% !important;
}

.payment_class #edit-actions {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row-reverse;
  margin-bottom: 30px;
  width: 100% !important;
}

.payment_class #edit-actions #edit-actions-next {
  height: 40px;
  padding: 10px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--blue-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.payment_class #edit-actions .link--previous,
.command_btn .link--previous {
  height: 40px;
  padding: 10px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--blue-color);
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--blue-color);
}

.table_header {
  padding: 0px 30px;
}

.table_header_text {
  color: var(--dark-grey-blue, #243746);
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}

.margin_top_recap {
  margin-top: 50px;
}

.top_cart_title {
  color: var(--blue-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.w-0 {
  width: 0 !important;
}

.cursor_default {
  cursor: default !important;
}

.heart_product_position {
  right: 6%;
  top: 1rem;
  z-index: 99;
  width: 30px;
  height: 30px;
}

.tag-gp-reserved {
  display: inline-flex;
  padding: 4px 8px;
  background-color: var(--blue-color);
  border: 2px solid var(--blue-color);
  flex-flow: row nowrap;
  align-items: center;
  gap: 4px;
  max-width: max-content;
}

span.tag_label {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  width: 100%;
}

.new_product {
  color: var(--blue-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 1px solid var(--teal-blue, var(--blue-color));
  background: #FFF;
  display: inline-flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  width: max-content;
  height: 35px;
}

.new_product_container {
  position: relative;
  left: -43px;
  display: flex;
  flex-direction: column;
  height: 50px;
}

.contact-message-e-boutique-form {
  display: block;
  margin: 5vw auto 0;
  width: fit-content;
}

.contact-message-e-boutique-form label {
  color: #7b868c;
  font-weight: 500;
}

.contact-message-e-boutique-form label.option {
  display: inline-block;
  margin: 10px 0;
}

.contact-message-e-boutique-form input[type=text],
.contact-message-e-boutique-form input[type=email],
.contact-message-e-boutique-form textarea {
  width: 100%;
  padding: 8px 10px;
  margin: 10px 0;
  border: 0.5px solid rgba(0, 0, 0, 0.5);
}

.contact-message-e-boutique-form .form-textarea {
  padding: 10px;
}

.contact-message-e-boutique-form #edit-preview {
  display: none;
}

.contact-message-e-boutique-form #edit-submit {
  margin: auto;
  padding: 10px 30px;
}

.command_btn [id*=edit-actions-next] {
  width: 100%;
  height: 40px;
  padding: 10px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.command_btn .disabled {
  width: 100%;
  height: 40px;
  padding: 10px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  background-color: #555 !important;
  border: 1px solid #555 !important;
  color: #fff !important;
  pointer-events: none;
  cursor: none;
}

.recap_text_bold {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.select_address {
  display: flex;
  flex-direction: row;
}

.select_address .js-form-item label {
  display: none;
}

.select_address .js-form-item {
  flex: 1;
}

.select_address .js-form-item select {
  width: 100%;
  height: 52px;
}

.select_city {
  display: flex;
  flex-direction: row;
}

.select_city .js-form-item label {
  display: none;
}

.select_city .js-form-item {
  flex: 1;
  height: 52px;
}

.select_city .js-form-item input {
  width: 100%;
  border: 1px solid #dee2e6;
}

.fix_design_livraison .checkout-pane legend {
  display: none;
}

.fix_design_livraison .checkout-pane [id*=edit-shipping-information-shipments] {
  display: none;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .js-form-item label:not(.option) {
  /* display: none; */
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile {
  display: flex;
  flex-direction: column;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .field--type-address [id*=edit-payment-information-add-payment-method-billing-information-address-0]:not(.address-container-inline),
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .field--type-address [id*=edit-shipping-information-shipping-profile-address-0]:not(.address-container-inline),
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .field--type-address [id*=edit-mlp-boutique-custom-commerce-checkout-pane-profile-address-0]:not(.address-container-inline),
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .field--type-address [id*=edit-mlp-boutiaue-checkout-pane-profile-address-0]:not(.address-container-inline) {
  display: flex;
  flex-direction: column;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .field--type-address .js-form-wrapper [id*=edit-payment-information-add-payment-method-billing-information-address-0-address-container0],
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .field--type-address .js-form-wrapper [id*=edit-shipping-information-shipping-profile-address-0-address-container0],
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .field--type-address .js-form-wrapper [id*=edit-mlp-boutique-custom-commerce-checkout-pane-profile-address-0-address-container0],
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .field--type-address .js-form-wrapper [id*=edit-mlp-boutiaue-checkout-pane-profile-address-0-address-container0] {
  order: 1;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .js-form-wrapper [id*=edit-payment-information-add-payment-method-billing-information-address-0-address-container0] .form-item,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .field--type-address .js-form-wrapper [id*=edit-shipping-information-shipping-profile-address-0-address-container0] .form-item,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .field--type-address .js-form-wrapper [id*=edit-mlp-boutique-custom-commerce-checkout-pane-profile-address-0-address-container0] .form-item,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .field--type-address .js-form-wrapper [id*=edit-mlp-boutiaue-checkout-pane-profile-address-0-address-container0] .form-item {
  width: 49%;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .field--type-address .js-form-wrapper [id*=edit-payment-information-add-payment-method-billing-information-address-0-address-container3],
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .field--type-address .js-form-wrapper [id*=edit-shipping-information-shipping-profile-address-0-address-container3],
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .field--type-address .js-form-wrapper [id*=edit-mlp-boutique-custom-commerce-checkout-pane-profile-address-0-address-container3],
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .field--type-address .js-form-wrapper [id*=edit-mlp-boutiaue-checkout-pane-profile-address-0-address-container3] {
  order: 4;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .field--type-address .js-form-wrapper [id*=edit-payment-information-add-payment-method-billing-information-address-0-address-container3] .form-item,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .field--type-address .js-form-wrapper [id*=edit-shipping-information-shipping-profile-address-0-address-container3] .form-item,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .field--type-address .js-form-wrapper [id*=edit-mlp-boutique-custom-commerce-checkout-pane-profile-address-0-address-container3] .form-item,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .field--type-address .js-form-wrapper [id*=edit-mlp-boutiaue-checkout-pane-profile-address-0-address-container3] .form-item {
  width: 49%;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .field--type-address .js-form-wrapper .js-form-item-payment-information-add-payment-method-billing-information-address-0-address-address-line1,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .field--type-address .js-form-wrapper .js-form-item-shipping-information-shipping-profile-address-0-address-address-line1,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .field--type-address .js-form-wrapper .js-form-item-mlp-boutique-custom-commerce-checkout-pane-profile-address-0-address-address-line1,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .field--type-address .js-form-wrapper .js-form-item-mlp-boutiaue-checkout-pane-profile-address-0-address-address-line1 {
  order: 2;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .field--type-address .js-form-wrapper .js-form-item-payment-information-add-payment-method-billing-information-address-0-address-address-line2,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .field--type-address .js-form-wrapper .js-form-item-shipping-information-shipping-profile-address-0-address-address-line2,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .field--type-address .js-form-wrapper .js-form-item-mlp-boutique-custom-commerce-checkout-pane-profile-address-0-address-address-line2,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .field--type-address .js-form-wrapper .js-form-item-mlp-boutiaue-checkout-pane-profile-address-0-address-address-line2 {
  order: 3;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .field--type-address .js-form-wrapper [id*=edit-payment-information-add-payment-method-billing-information-address-0-address-country-code],
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .field--type-address .js-form-wrapper [id*=edit-shipping-information-shipping-profile-address-0-address-country-code],
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .field--type-address .js-form-wrapper [id*=edit-mlp-boutique-custom-commerce-checkout-pane-profile-address-0-address-country-code],
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .field--type-address .js-form-wrapper [id*=edit-mlp-boutiaue-checkout-pane-profile-address-0-address-country-code] {
  order: 5;
}

.fix_design_livraison .js-form-type-textfield.form-item-shipping-information-shipping-profile-address-0-address-custom-entity-postal {
  order: 2 !important;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .js-form-item select:not(.country),
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .js-form-item select:not(.country),
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .js-form-item select:not(.country),
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .js-form-item select:not(.country) {
  width: 100%;
  height: 52px;
  margin-bottom: 10px;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .js-form-item .country,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .js-form-item .country,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .js-form-item .country,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .js-form-item .country {
  cursor: default;
  width: 100%;
  height: 52px;
  margin-bottom: 10px;
  user-select: none;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .form-item-payment-information-add-payment-method-billing-information-copy-to-address-book input,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .form-item-shipping-information-shipping-profile-copy-to-address-book input,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .form-item-mlp-boutique-custom-commerce-checkout-pane-profile-copy-to-address-book input,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .form-item-mlp-boutiaue-checkout-pane-profile-copy-to-address-book input {
  margin-right: 10px;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .js-form-item:not(.form-item-payment-information-add-payment-method-billing-information-copy-to-address-book) input,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .js-form-item:not(.form-item-shipping-information-shipping-profile-copy-to-address-book) input,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .js-form-item:not(.form-item-mlp-boutique-custom-commerce-checkout-pane-profile-copy-to-address-book) input,
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .js-form-item:not(.form-item-mlp-boutiaue-checkout-pane-profile-copy-to-address-book) input {
  height: 52px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
  padding-left: 10px;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-payment-information-add-payment-method-billing-information .js-form-item:not(.js-form-item-payment-information-add-payment-method-billing-information-copy-to-address-book),
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-shipping-information-shipping-profile .js-form-item:not(.js-form-item-shipping-information-shipping-profile-copy-to-address-book),
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutique-custom-commerce-checkout-pane-profile .js-form-item:not(.js-form-item-mlp-boutique-custom-commerce-checkout-pane-profile-copy-to-address-book),
.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-mlp-boutiaue-checkout-pane-profile .js-form-item:not(.js-form-item-mlp-boutiaue-checkout-pane-profile-copy-to-address-book) {
  display: flex;
  flex: 1;
  margin: 0 !important;
  flex-direction: column;
}

/* ajouter design pour dev livraison*/
.fix_design_livraison .checkout-pane legend {
  display: none;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .js-form-item label:not(.option) {
  /* display: none; */
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile {
  display: flex;
  flex-direction: column;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .field--type-address [id*=edit-billing-information-profile-address-0]:not(.address-container-inline) {
  display: flex;
  flex-direction: column;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .field--type-address .js-form-wrapper [id*=edit-billing-information-profile-address-0-address-container0] {
  order: 1;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .field--type-address .js-form-wrapper [id*=edit-billing-information-profile-address-0-address-container3] {
  order: 2;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .field--type-address .js-form-wrapper .js-form-item-billing-information-profile-address-0-address-address-line1 {
  order: 3;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .field--type-address .js-form-wrapper .js-form-item-billing-information-profile-address-0-address-address-line2 {
  order: 4;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .field--type-address .js-form-wrapper [id*=edit-billing-information-profile-address-0-address-country-code] {
  order: 5;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .js-form-item select:not(.country) {
  width: 100%;
  height: 52px;
  margin-bottom: 10px;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .js-form-item .country {
  cursor: default;
  width: 100%;
  height: 52px;
  margin-bottom: 10px;
  user-select: none;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .form-item-billing-information-profile-copy-to-address-book input {
  margin-right: 10px;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .js-form-item:not(.form-item-billing-information-profile-copy-to-address-book) input {
  height: 52px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
  padding-left: 10px;
}

.fix_design_livraison .checkout-pane .fieldset-wrapper #edit-billing-information-profile .js-form-item:not(.js-form-item-billing-information-profile-copy-to-address-book) {
  display: flex;
  flex: 1;
  margin: 0 !important;
  flex-direction: column;
}

.address-container-inline .js-form-item-payment-information-add-payment-method-billing-information-address-0-address-sorting-code,
.address-container-inline .js-form-item-shipping-information-shipping-profile-address-0-address-sorting-code,
.address-container-inline .js-form-item-shipping-information-shipping-profile-address-0-address-sorting-code {
  display: none !important;
}

.form-item-payment-information-add-payment-method-billing-information-copy-fields-enable {
  display: flex !important;
  justify-content: center;
  flex-direction: row !important;
  align-items: center !important;
  padding: 0px !important;
  margin: 0px !important;
}

.form-item-payment-information-add-payment-method-billing-information-copy-fields-enable input {
  display: flex;
}

/* end dev livraison design */
.address-container-inline {
  display: flex;
  gap: 10px;
}

.address-container-inline .js-form-item-mlp-boutique-custom-commerce-checkout-pane-profile-address-0-address-sorting-code,
.address-container-inline .js-form-item-mlp-boutiaue-checkout-pane-profile-address-0-address-sorting-code {
  display: none !important;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 summary {
  display: none;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] #edit-address-0-address {
  display: flex;
  flex-direction: column;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] #edit-address-0-address #edit-address-0-address-container0 {
  order: 1;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] #edit-address-0-address .js-form-item-address-0-address-address-line1 {
  order: 2;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] .form-item-address-0-address-custom-entity-postal {
  order: 2;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] #edit-address-0-address .js-form-item-address-0-address-address-line2 {
  order: 3;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] #edit-address-0-address #edit-address-0-address-country-code {
  order: 5;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] #edit-address-0-address #edit-address-0-address-container3 {
  order: 4;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] label {
  font-size: 16px;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] select {
  height: 52px;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] .js-form-item:not(.form-item-address-0-address-sorting-code) {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
}

.my_addresses #block-mainpagecontent .profile-form .field--name-field-entity-postal .js-form-item input {
  height: 52px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
}

.my_addresses #block-mainpagecontent .profile-form .field--name-field-entity-postal .js-form-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-telephone .js-form-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] .js-form-item input {
  height: 52px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-telephone .js-form-item input {
  height: 52px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
}

.my_addresses #block-mainpagecontent .profile-form .field--type-address #edit-address-0 [id^=address-0-address-ajax-wrapper] .form-wrapper .edit-address-0-address-container3 {
  background: var(--blue-color);
}

.my_addresses .form-item-address-0-address-sorting-code {
  display: none;
}

.alert em {
  margin-inline: 10px;
}

.my_addresses #block-mainpagecontent .profile-form #edit-actions input {
  height: 52px;
  width: 20%;
}

.my_addresses #block-mainpagecontent .profile-form #edit-actions a {
  display: none;
}

.my_addresses #block-mainpagecontent .profile-form #edit-actions {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}

.my_addresses #block-mainpagecontent {
  padding: 0px 100px;
}

.my_addresses #block-mainpagecontent form {
  background: #fff;
  padding: 30px 100px;
}

.check_circle {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  border: 1px solid var(--green-color);
}

.form-required:after {
  content: " *";
  color: red;
}

.mt-160 {
  margin-top: 160px !important;
}

.webform-submission-contact-form {
  margin-top: 150px;
  display: flex;
  flex-direction: row;
  padding: 30px;
  flex-wrap: wrap;
  align-items: end;
}

.webform-submission-contact-form .js-form-item {
  display: flex;
  flex-direction: column;
}

.webform-submission-contact-form .js-form-item input {
  height: 52px;
  border: 1px solid #dee2e6;
}

.webform-submission-contact-form .js-form-item textarea {
  border: 1px solid #dee2e6;
  width: 100%;
}

.webform-submission-contact-form .js-form-item label {
  font-size: 14px;
  font-weight: 300;
}

.webform-submission-contact-form .js-form-item-name {
  width: 50%;
  padding-right: 5px;
}

.webform-submission-contact-form .js-form-item-email {
  width: 50%;
  padding-left: 5px;
}

.webform-submission-contact-form .js-form-item-subject {
  width: 100%;
}

.webform-submission-contact-form .js-form-item-message {
  width: 100%;
}

.webform-submission-contact-form #edit-actions {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: end;
}

.webform-submission-contact-form #edit-actions input {
  width: 40%;
  padding: 10px 18px 10px 18px;
  gap: 10px;
}

/* input:required:invalid {
    border-color: #c00000 !important;
} */
.is-weak {
  background-color: red;
  border: 1px solid red;
}

.is-fair {
  background-color: orange;
  border: 1px solid orange;
}

.is-strong {
  background-color: green;
  border: 1px solid green;
}

.is-good {
  background-color: green;
  border: 1px solid green;
}

.country {
  /*cursor: none;
    pointer-events: none;
    background-color: #ededed;*/
}

.address input {
  height: 52px;
  border: 1px solid #dee2e6;
  background-color: #fff;
  margin-bottom: 8px;
}

.field_success {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--green-color);
}

.field_pass {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.transparent_border {
  border-color: transparent !important;
}

.password-suggestions,
.password-strength {
  display: none !important;
}

.user-register-form {
  display: flex;
  flex-direction: column;
}

.boutiqueList {
  width: fit-content;
}

.boutiqueList {
  width: fit-content;
}

.boutiqueList ul {
  padding: 0;
  margin: 0;
  display: flex;
}

.boutiqueList ul li {
  list-style: none;
  margin-bottom: 25px;
  line-height: 160%;
}

.boutiqueList ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  text-decoration: none;
  color: #000;
}

.boutiqueList ul li a:hover {
  text-decoration: underline;
}

.boutiqueList ul li a.active {
  text-decoration: underline;
  color: var(--blue-color);
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .boutiqueList {
    width: 100% !important;
  }
  .boutiqueList {
    width: fit-content;
  }
  .boutiqueList ul {
    padding: 0;
    margin-top: 20px;
    display: flex;
  }
  .boutiqueList ul li {
    list-style: none;
    margin-bottom: 25px;
    line-height: 160%;
  }
  .boutiqueList ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    text-decoration: none;
    color: #000;
    display: flex;
    padding: 15px;
    justify-content: space-between;
    align-items: center;
    background: #fff;
  }
  .boutiqueList ul li a:hover {
    text-decoration: none;
    color: #fff;
    background: var(--blue-color);
  }
  .boutiqueList ul li a.active {
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: var(--blue-color);
  }
}
.id_mobile_card {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.address_mobile_card {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.date_mobile_card {
  color: var(--blue-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.state_mobile_card {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media only screen and (max-width: 768px) {
  .facture_padding {
    padding: 10px;
  }
  .form-item-taxonomy-entity-index-tid-depth .bef-links ul,
  .form-item-category .bef-links ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    gap: 0px !important;
    border: 1px solid #fff;
    background-color: #fff;
  }
  .select-category li {
    display: none;
    cursor: pointer;
    padding: 5px 10px;
    border-top: 1px solid fff;
    min-width: 150px;
  }
  .form-item-taxonomy-entity-index-tid-depth .bef-links ul li a,
  .form-item-category .bef-links ul li a {
    color: #000 !important;
    text-decoration: none;
  }
  .form-item-taxonomy-entity-index-tid-depth .bef-links ul li,
  .form-item-category .bef-links ul li {
    font-size: 13px;
    line-height: 18px;
    color: #000 !important;
    padding: 8px 10px;
    background-color: #fff !important;
  }
  .actions_mobile {
    padding: 10px 15px 20px 7px !important;
  }
  .actions_mobile .delete {
    border: 1px solid var(--blue-color);
    padding: 10px 20px;
    background-color: #fff;
    color: var(--blue-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
  }
  .border_mobile {
    border-top: 1px solid rgba(97, 112, 123, 0.5019607843);
  }
  .ml-130 {
    margin-left: 0px !important;
  }
  .form-item-sort-order select {
    background-color: white !important;
    outline: none;
    border: 0 !important;
    height: 37px !important;
    font-size: 14px;
    padding: 5px 27px 5px 5px !important;
    width: 165px !important;
    border-radius: 0%;
  }
  .form-item-taxonomy-entity-index-tid-depth,
  .form-item-category {
    display: flex;
    flex-direction: row;
    justify-content: center !important;
    align-items: center;
    flex: 1;
  }
  .form-item-sort-order label {
    display: none;
  }
  .product {
    position: relative;
    width: auto !important;
  }
  .border_right_facturation {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(36, 55, 70, 0.5);
  }
  .accordion-item {
    padding: 0px;
  }
  .accordion-body {
    padding: 0px;
  }
}
.border_right_facturation {
  border-right: 1px solid rgba(36, 55, 70, 0.5);
}

.remove_style .delete .delete-order-item {
  border: 1px solid #007ca4;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--blue-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  background-color: #fff;
}

.remove_style {
  display: flex;
  padding: 10px 0px;
  align-items: center;
  gap: 19px;
  align-self: stretch;
}

.button_height {
  height: 40px;
}

.slick-list {
  height: max-content !important;
}

.user-form #edit-contact {
  display: none;
}

#select_filter [id^=edit-category] {
  display: flex;
  width: 165px;
  height: 37px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.product_list .form-item-sort-order label {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin-right: 8px;
}
.product_list .form-item-sort-order select {
  background-color: transparent;
  outline: none;
  border: none;
  width: auto;
  font-size: 14px;
  padding: 5px 27px 5px 5px;
}
.product_list .form-item-sort-order select:focus-visible {
  outline: 3px solid black;
}
.product_list .js-pager__items {
  list-style: none;
  margin-top: 50px;
  padding: 0px;
  display: flex;
  justify-content: center;
}
.product_list .more-link {
  display: none;
}

.ml-130 {
  margin-left: 130px;
}

.accueil_button .button {
  background-image: url(/themes/custom/boutique/dist/img/cart_w.svg);
  background-size: 20px;
  background-position: left center;
  background-repeat: no-repeat;
  background-origin: content-box;
}

.accueil_button .button:disabled {
  background-color: #555 !important;
  border: 1px solid #555 !important;
}

.credit-card-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-left: 20%;
  width: 60%;
  justify-content: space-between;
  padding: 20px 10px;
  border: 1px solid #dee2e6;
  border-radius: 10px;
}

.credit-card-form .form-item-payment-information-add-payment-method-payment-details-number {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.credit-card-form .form-item-payment-information-add-payment-method-payment-details-number input {
  height: 52px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
  padding: 0px 10px;
}

.credit-card-form .form-item-payment-information-add-payment-method-payment-details-security-code {
  display: flex;
  flex-direction: column;
  /* width: 50%; */
}

.credit-card-form .form-item-payment-information-add-payment-method-payment-details-security-code input {
  height: 52px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
  width: 100px;
  padding: 0px 10px;
}

.credit-card-form .credit-card-form__expiration {
  width: 50%;
}

.credit-card-form .credit-card-form__expiration select {
  height: 52px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
}

#edit-payment-information-add-payment-method-billing-information .form-item-payment-information-add-payment-method-billing-information-select-address select {
  height: 52px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
  width: 100%;
}

#edit-payment-information-add-payment-method-billing-information .form-submit {
  height: 52px;
  width: 100%;
}

.disabled-link {
  pointer-events: none !important;
  cursor: none !important;
}

select.available-profiles {
  height: 52px;
  margin-bottom: 10px;
}

#edit-login-returning-customer-forgot-password {
  text-align: right;
  color: #000;
}

.form-item-taxonomy-entity-index-tid-depth,
.form-item-category {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
}

.form-item-taxonomy-entity-index-tid-depth label,
.form-item-category label {
  font-size: 15px;
  line-height: 18px;
  margin-right: 8px;
}

.form-item-taxonomy-entity-index-tid-depth .bef-links,
.form-item-category .bef-links {
  background-color: transparent;
  outline: none;
  padding: 0;
  border: none;
  all: unset;
  width: auto;
}

.form-item-taxonomy-entity-index-tid-depth .bef-links-style,
.form-item-category .bef-links-style {
  background-color: transparent;
  outline: none;
  padding: 0;
  border: none;
  all: unset;
  gap: 4px;
  width: auto;
}

.form-item-taxonomy-entity-index-tid-depth .bef-links-style a,
.form-item-category .bef-links-style a {
  font-size: 13px;
  line-height: 18px;
  color: #fff;
  padding: 8px 10px;
  background-color: var(--blue-color);
  text-decoration: none;
}

.form-item-taxonomy-entity-index-tid-depth .bef-links ul,
.form-item-category .bef-links ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  gap: 4px;
}

.form-item-taxonomy-entity-index-tid-depth .bef-links ul li,
.form-item-category .bef-links ul li {
  font-size: 13px;
  line-height: 18px;
  color: #fff;
  padding: 8px 10px;
  background-color: var(--blue-color);
}

.form-item-taxonomy-entity-index-tid-depth .bef-links ul li a,
.form-item-category .bef-links ul li a {
  color: #fff;
  text-decoration: none;
}

.form-item-sort-by {
  display: none;
}

.form-item-sort-order label {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin-right: 8px;
}

.form-item-sort-order select {
  background-color: transparent;
  outline: none;
  border: none;
  width: auto;
  font-size: 14px;
  padding: 5px 27px 5px 5px;
}

.nonactive {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  color: #000;
  padding-right: 5px;
}

.active {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--blue-color);
  font-weight: 600;
  text-decoration: none;
}

#views-exposed-form-products-category-page-1 {
  display: flex;
  justify-content: space-between;
}

.select-category li {
  display: none;
  cursor: pointer;
  padding: 5px 10px;
  min-width: 150px;
}

.select-category li:first-child {
  display: block;
  border-top: 0px;
}

.select-category {
  display: inline-block;
  padding: 0;
  border-radius: 4px;
  position: relative;
}

.select-category li:hover {
  background-color: #ddd;
}

.select-category li:first-child:hover {
  background-color: transparent;
}

.select-category.open li {
  display: block;
}

.select-category span:before {
  position: absolute;
  top: 5px;
  right: 15px;
}

.title_colored {
  color: var(--teal-blue, var(--blue-color));
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding-bottom: 1rem;
}

.category .category-link {
  position: absolute;
  right: 20%;
  bottom: 0;
}

.category .category-link > a {
  text-align: center !important;
  color: #fff !important;
}

.checkout-pane.checkout-pane-payment-information .kr-embedded {
  width: 100% !important;
}

.checkout-pane.checkout-pane-payment-information .kr-iframe-wrapper {
  height: 100%;
}

.checkout-pane.checkout-pane-payment-information .kr-field-element {
  height: 52px !important;
}

.checkout-pane.checkout-pane-payment-information #inputField {
  height: 40px;
}

.checkout-pane.checkout-pane-payment-information .kr-payment-button {
  display: none;
}

#edit-review-shipping-information-summary-0,
#edit-shipping-information-recalculate-shipping {
  display: none;
}

@media only screen and (max-width: 768px) {
  #infos .card_adresses_btn_outlined {
    width: 100% !important;
    margin-bottom: 2rem;
  }
}
.page-error {
  padding: 6rem 7.0625rem 18.75rem;
}

.page-error .error-title {
  color: var(--blue-color);
  margin-bottom: 1.25rem;
  font-weight: 450;
  text-transform: uppercase;
  font-size: 3.125rem;
  line-height: 3.6875rem;
}

.page-error div {
  color: #415364;
  font-size: 1.3125rem;
  line-height: 1.75rem;
}

.login-errors__content a {
  display: inline-block;
  margin-top: 0.5rem;
}

.user-multi-regates-form .tabledrag-toggle-weight-wrapper {
  display: none !important;
}

.user-multi-regates-form #field-multi-regates-values .label {
  position: relative;
  top: unset !important;
  left: unset !important;
}

.user-multi-regates-form #field-multi-regates-values {
  width: 100%;
}

.user-multi-regates-form #field-multi-regates-values .form-text {
  width: 100%;
}

.btn_multi_regates {
  height: 40px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--blue-color);
  background-color: var(--blue-color);
  color: #fff;
  text-decoration: none;
}

.checkout-pane.checkout-pane-coupon-redemption .form-text {
  width: 100%;
  height: 52px;
  border: 1px solid #dee2e6;
  background-color: #fff;
  margin-bottom: 8px;
}

.checkout-pane.checkout-pane-coupon-redemption .form-submit {
  width: 100%;
}

.checkout-pane.checkout-pane-coupon-redemption .description {
  color: #D22C33;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.checkout-pane.checkout-pane-coupon-redemption label {
  font-weight: 600;
}

.checkout-pane.checkout-pane-coupon-redemption table {
  width: 100%;
}

.breadcrumb_boutique {
  display: flex;
  align-items: center;
  padding-top: 2rem;
}
.breadcrumb_boutique li a {
  color: black;
  text-decoration: none;
  padding-right: 0.3rem;
  font-size: 0.9rem;
  font-weight: 400;
  padding-left: 0.3rem;
}
.breadcrumb_boutique li a:hover {
  text-decoration: underline;
}
.breadcrumb_boutique li[aria-current=page] {
  font-size: 0.9rem;
  color: var(--blue-color);
  font-weight: 600;
  text-decoration: none;
  padding-left: 0.3rem;
}

.description_card, .carcteristique_card {
  padding: 2rem;
}

.cart-block input#edit-submit {
  width: 100%;
}

.form-required-info {
  font-size: 0.875rem;
  color: #555;
}
.form-required-info::before {
  content: "* ";
}

.login-errors-hidden {
  display: none;
}

.btn_cart_continue a:focus-visible,
.btn_cart_remove a:focus-visible {
  outline: 3px solid black;
  background: white;
}

/*# sourceMappingURL=main.min.css.map*/