html {
  height: auto;
}

:root {
  --animation-default-fast: 0.4s cubic-bezier(0.425, 0, 0, 1);
  --animation-default: 0.8s cubic-bezier(0.425, 0, 0, 1);
  --animation-default-speedup: 0.175s ease;
  --animation-default-contact: 0.8s cubic-bezier(0.625, 0.05, 0, 1);
  --border-radius-m: 1.125rem;
  --animation-default-fast-contact: 0.4s cubic-bezier(0.625, 0.05, 0, 1);
}

/* -- Global -- */

/* @media (min-width: 990px) {
        :root {
          --size: 1600;
        }
      
        html {
          height: auto !important;
          -ms-overflow-style: none;
          scrollbar-width: none;
          font-size: calc(15.8 * 100vw / var(--size));
          -webkit-text-size-adjust: none;
          -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
        }
      } */

/* -- Media -- */

@media only screen and (max-width: 1900px) {
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 479px) {
}

/* -- Keyframe Animations -- */

@keyframes marquee {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes marqueeRev {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

@media only screen and (max-width: 991px) {
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes marqueeRev {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(100%);
    }
  }
}

/*  */

.maison_commerce-button_inner_cell {
  transition: all 350ms ease;
}

.maison_commerce-button:hover .maison_commerce-button_inner_cell.is--1st {
  transform: translate(200%, -100%) rotate(-90deg) !important;
}

.maison_commerce-button:hover .maison_commerce-button_inner_cell.is--2nd {
  transform: translate(0%, 0px) rotate(0deg);
}

/*  */

.lp_faq_icon-wrappper {
  transition: all 250ms ease;
}

.lp_faq_accordion {
}

.lp_faq_accordion.expanded .lp_faq_icon-wrappper {
  transform: translate(0%, 0%) rotate(-90deg) !important;
}

/*  */

.maison_commerce_nav-item,
.footer9_link {
  position: relative;
  transition: all var(--animation-default);
}

.maison_commerce_nav-item::before {
  content: "";
  position: absolute;
  bottom: -0.075em;
  left: 0;
  width: 100%;
  height: 0.0675em;
  background-color: currentColor;
  transition: transform var(--animation-default);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
}

.footer9_link::before {
  content: "";
  position: absolute;
  bottom: -0.175em;
  left: 0;
  width: 100%;
  height: 0.0675em;
  background-color: currentColor;
  transition: transform var(--animation-default);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
}

.maison_commerce_nav-item:hover::before,
.footer9_link:hover::before {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg);
}
