@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.m-cart-drawer {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  --color-secondary-border: #92AFAB;
  --swiper-pagination-color: #09443D;
  --swiper-pagination-bullet-size: 0.4rem;
}
.m-cart-drawer.is-loading .m-cart-drawer__inner {
  position: relative;
}
.m-cart-drawer.is-loading .m-cart-drawer__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.m-cart-drawer.is-loading .m-cart-drawer__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #09443D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 11;
}
.m-cart-drawer.animate .m-cart-drawer__inner {
  transition: transform var(--default-transition-timing) var(--default-transition-easing), opacity var(--default-transition-timing) var(--default-transition-easing), visibility 0s var(--default-transition-timing) var(--default-transition-easing);
}
.m-cart-drawer.animate .m-cart-drawer__underlay {
  transition: opacity var(--default-transition-timing) var(--default-transition-easing), visibility 0s var(--default-transition-timing) var(--default-transition-easing);
}
.m-cart-drawer.active {
  pointer-events: auto;
}
.m-cart-drawer.active .m-cart-drawer__inner {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
  transition: transform var(--default-transition-timing) var(--default-transition-easing), opacity var(--default-transition-timing) var(--default-transition-easing), visibility 0s;
}
.m-cart-drawer.active .m-cart-drawer__underlay {
  visibility: visible;
  opacity: 0.4;
  transition-duration: 0.3s, 0s;
  transition-delay: 0.1s, 0s;
  transition: opacity var(--default-transition-timing) var(--default-transition-easing), visibility 0s;
}
.m-cart-drawer.is-empty .m-cart-drawer__items,
.m-cart-drawer.is-empty .m-cart-drawer__footer {
  display: none;
}
.m-cart-drawer__inner {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3000;
  height: 100%;
  width: 45rem;
  max-width: 100vw;
  transform: translate(100%);
  visibility: hidden;
  opacity: 0;
}
.m-cart-drawer__inner--has-extra {
  width: 72rem;
}
@media screen and (max-width: 768px) {
  .m-cart-drawer__inner--has-extra {
    width: 45rem;
  }
}
.m-cart-drawer__sidebar {
  background-color: white;
  overflow: hidden;
  flex-direction: column;
  flex: 1;
}
.m-cart-drawer__sidebar-extra {
  width: 27rem;
  height: 100%;
  background-color: white;
  padding: 1.3rem 2.5rem;
  border-right: 1px solid var(--color-secondary-border);
}
@media screen and (max-width: 768px) {
  .m-cart-drawer__sidebar-extra {
    display: none;
  }
}
.m-cart-drawer__sidebar-extra-heading {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 2rem;
}
.m-cart-drawer__sidebar-extra-items .m-product-card:not(:last-child) {
  border-bottom: 1px solid var(--color-secondary-border);
}
.m-cart-drawer__sidebar-extra-items .m-product-card {
  padding: 1.5rem 0;
}
.m-cart-drawer__underlay {
  position: fixed;
  z-index: 2400;
  visibility: hidden;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  background: var(--color-black);
}
.m-cart-drawer__header {
  justify-content: space-between;
  margin: 0rem 2.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--color-secondary-border);
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .m-cart-drawer__header {
    margin: 0rem 1.5rem;
  }
}
.m-cart-drawer__header.grid {
  width: auto;
}
.m-cart-drawer__header-actions {
  display: flex;
  align-items: center;
  gap: 3.1rem;
}
.m-cart-drawer__heading, .m-cart-drawer__total-label {
  margin-bottom: 0;
}
.m-cart-drawer__cart-count {
  display: flex;
  align-items: center;
  position: relative;
}
.m-cart-drawer__cart-count svg {
  width: 2.4rem;
  height: auto;
}
.m-cart-drawer__cart-count .cart-count-bubble {
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 1.2rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.m-cart-drawer__cart-count .cart-count-bubble-amount {
  line-height: 1.4;
}
.m-cart-drawer__close {
  padding: 0;
}
.m-cart-drawer__close .icon {
  display: block;
}
.m-cart-drawer__reassurance.swiper {
  margin: 0rem 2.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--color-secondary-border);
}
@media screen and (max-width: 768px) {
  .m-cart-drawer__reassurance.swiper {
    margin: 0rem 1.5rem;
  }
}
.m-cart-drawer__reassurance-item.swiper-slide {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  gap: 0.6rem;
  padding: 0rem 4.8rem 0rem 1.2rem;
}
.m-cart-drawer__reassurance-image {
  width: 2.5rem;
  height: auto;
  object-fit: contain;
}
.m-cart-drawer__reassurance-text {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.m-cart-drawer__reassurance-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto;
  right: 0;
  left: auto;
  display: flex;
  align-items: center;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
}
.m-cart-drawer__items {
  display: flex;
  flex-direction: column;
}
.m-cart-drawer__items, .m-cart-drawer__empty {
  flex: 1;
  overflow: auto;
}
.m-cart-drawer__items::-webkit-scrollbar, .m-cart-drawer__empty::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.m-cart-drawer__items::-webkit-scrollbar-track, .m-cart-drawer__empty::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.m-cart-drawer__items::-webkit-scrollbar-thumb, .m-cart-drawer__empty::-webkit-scrollbar-thumb {
  background-color: #d3d3d3;
  border: 2px solid white;
  border-radius: 10px;
}
.m-cart-drawer__items::-webkit-scrollbar-thumb:hover, .m-cart-drawer__empty::-webkit-scrollbar-thumb:hover {
  background-color: #b8b8b8;
}
.m-cart-drawer__items, .m-cart-drawer__empty {
  /* Pour Firefox */
  scrollbar-width: thin;
  scrollbar-color: #d3d3d3 transparent;
}
.m-cart-drawer .cart-drawer__form {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .m-cart-drawer .cart-drawer__form {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.m-cart-drawer__upsell {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .m-cart-drawer__upsell--extra {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .m-cart-drawer__upsell:not(.m-cart-drawer__upsell--extra) {
    display: none;
  }
}
.m-cart-drawer__upsell .m-product-card--simple {
  height: auto;
}
.m-cart-drawer__upsell .m-product-card--simple .m-product-card__url {
  height: 100%;
}
.m-cart-drawer__upsell-heading {
  padding-bottom: 1rem;
  font-weight: 500;
  padding: 0 2.5rem 1rem;
}
@media screen and (max-width: 768px) {
  .m-cart-drawer__upsell-heading {
    padding: 0 1.5rem 1rem;
  }
}
.m-cart-drawer__upsell-items.swiper {
  position: relative;
  margin: 0 2.5rem;
  padding: 0 2px;
}
@media screen and (max-width: 768px) {
  .m-cart-drawer__upsell-items.swiper {
    margin: 0 1.5rem;
  }
}
.m-cart-drawer__upsell-items-wrapper {
  position: relative;
  overflow: hidden;
}
.m-cart-drawer__upsell-items-wrapper .m-swiper__controllers {
  margin: 2.4rem 2.5rem 0;
}
.m-cart-drawer__upsell-items-wrapper .swiper-slide.m-product-card {
  height: auto !important;
}
@media screen and (max-width: 768px) {
  .m-cart-drawer__upsell-items-wrapper .m-swiper__arrow--prev {
    left: -5px;
  }
  .m-cart-drawer__upsell-items-wrapper .m-swiper__arrow--next {
    right: -5px;
  }
}
.m-cart-drawer__footer > div:first-child {
  border-top: 1px solid var(--color-secondary-border);
}
.m-cart-drawer__note .m-cart-note__icon {
  padding: 0.5rem;
  border-radius: 100%;
  background-color: rgb(var(--rgb-tertiary-bg));
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-cart-drawer__note .m-cart-note__icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.m-cart-drawer__tax-note {
  margin-top: 1rem;
}
.m-cart-drawer__totals {
  color: var(--color-primary-text);
  margin: 9.5rem 2.5rem 0;
  border: 1px solid var(--color-secondary-border);
}
@media screen and (max-width: 768px) {
  .m-cart-drawer__totals {
    margin: 7.5rem 1.5rem 0;
  }
}
.m-cart-drawer__totals-header {
  padding: 0.8rem 1.6rem;
  border-bottom: 1px solid var(--color-secondary-border);
}
.m-cart-drawer__totals-title {
  font-size: 1.8rem;
  line-height: 2.1rem;
  font-weight: 500;
  margin-bottom: 0;
}
.m-cart-drawer__total {
  justify-content: space-between;
}
.m-cart-drawer__total > .grid {
  justify-content: space-between;
}
.m-cart-drawer__total-items {
  padding: 1.3rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.m-cart-drawer__total-label {
  font-size: 1.4rem;
  line-height: 1;
}
.m-cart-drawer__total-value {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.m-cart-drawer__total-value-gift {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0 0.5rem;
}
.m-cart-drawer__total-value-gift img {
  width: 2rem;
}
.m-cart-drawer__total-value-gift p {
  margin-bottom: 0;
  text-align: right;
}
.m-cart-drawer__total-value-jars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0 0.5rem;
}
.m-cart-drawer__total-value-discount {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: white;
  padding-left: 0.5rem;
  border: 1px solid var(--color-secondary-border);
}
.m-cart-drawer__total-value-discount-error {
  color: var(--color-state-error);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 0.5rem !important;
  max-width: 185px;
}
.m-cart-drawer__total-value-input {
  border: none;
  background-color: transparent;
  font-size: 1.2rem;
  line-height: 2.5;
  font-weight: 500;
  width: 105px;
}
.m-cart-drawer__total-value-input::placeholder {
  color: #83A5A1;
}
.m-cart-drawer__total-value-input:focus {
  outline: none;
}
.m-cart-drawer__total-value-button {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-primary-text);
}
.m-cart-drawer__total-value-discounts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.m-cart-drawer__total-value-discounts:empty {
  display: none;
}
.m-cart-drawer__total-value-discount-item {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.m-cart-drawer__total-value-discount-item button {
  padding-right: 0;
}
.m-cart-drawer__actions .a-btn {
  width: 100%;
  display: block;
}
.m-cart-drawer__error {
  color: var(--color-state-error);
}
.m-cart-drawer__footer {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .m-cart-drawer__footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.m-cart-drawer__subscription-message {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.m-cart-drawer__subscription-message p {
  margin-bottom: 0;
}
.m-cart-drawer__accordion.m-accordion {
  margin-top: 0;
  border-top: none;
}
.m-cart-drawer__accordion.m-accordion .a-input__textarea {
  font-size: var(--body-fs-xs);
}
.m-cart-drawer__checkout-button {
  font-weight: 500;
  padding: 1.2rem;
  font-size: 1.5rem;
}
.m-cart-drawer__checkout-button s {
  margin-right: 1rem;
  font-size: 1.3rem;
  font-weight: 400;
}
