html {
  height: auto;
}

/* -- Global -- */

@media (min-width: 990px) {
  :root {
    --size: 1600;
  }

  html {
    height: auto !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* font-size: calc(17.75 * 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;
  }
}

:root {
  --all-transitions: all 400ms cubic-bezier(0.77, 0, 0.175, 1);
  --parallax-strength: 10%;
  --parallax-height: 4%;
}

/* -- Media -- */

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

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

@media only screen and (max-width: 991px) {
  .mc_avail-list_item:last-child {
    padding-bottom: 0rem !important;
    border-bottom: 0px solid transparent !important;
  }
}

@media only screen and (max-width: 767px) {
  .mc_cproblem-list_item:last-child {
    padding-bottom: 0rem !important;
    border-bottom: 0px solid transparent !important;
  }

  .mc_toxins-list_item:last-child {
    border-bottom: 1px solid transparent !important;
  }
}

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

/* -- Keyframe Animations -- */

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

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

.swiper-pagination-bullet {
  cursor: pointer;
  transition: var(--all-transitions);
}

/* -- Card Hover On Animations -- */

.swiper-wrapper.is--prod_gallery .mc_image-wrapper img {
  clip-path: inset(0rem);
  transition: all 400ms cubic-bezier(0.77, 0, 0.175, 1);
}

.swiper-cover.is--invite .mc_image-wrapper img {
  clip-path: inset(0rem);
  transition: all 400ms cubic-bezier(0.77, 0, 0.175, 1);
}

.swiper-wrapper.is--prod_gallery .mc_image-wrapper:hover img {
  clip-path: inset(0.75rem);
}

.swiper-cover.is--invite .mc_image-wrapper:hover img {
  clip-path: inset(0.75rem);
}

/* -- Side Card Styling -- */

.maison_commerce-cart_box-conent::-webkit-scrollbar {
  display: none;
}

[display="hidden"],
[action-cart="cart"] {
  display: none;
}

[action-cart="call"] .mc_nav-text {
  pointer-events: none;
}

[action-menu="toggle"] .mc_nav-text {
  pointer-events: none;
}

.cart-active {
  overflow: hidden;
}

.menu-active {
  overflow: hidden;
}

/* -- Marquee Animatios -- */

.mc_marquee-line {
  animation: marquee 20s linear infinite !important;
}

/* -- Nav Items -- */

.mc_footer-col_link {
  position: relative;
  transition: var(--all-transitions);
}

.mc_footer-col_link::before {
  content: "";
  position: absolute;
  bottom: -0.075em;
  left: 0;
  width: 100%;
  height: 0.0675em;
  background-color: currentColor;
  transition: var(--all-transitions);
  transform-origin: center;
  transform: scaleX(0) rotate(0.001deg);
}

.mc_footer-col_link:hover::before {
  transform-origin: center;
  transform: scaleX(1) rotate(0.001deg);
}

/* -- Parallax Animations -- */

[data-parallax-strength] [data-parallax-target] {
  position: relative;
  height: calc(100% + (var(--parallax-height) * 2));
  max-height: calc(100% + (var(--parallax-height) * 2));
  top: calc(var(--parallax-height) * -1);
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 0;
  rotate: 0.001deg;
}
