@charset "UTF-8";
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  margin: 0;
  padding: 0;
  width: 100vw;
}
body {
  position: relative;
  margin: 0;
  padding: 0;
}
body.noscroll {
  overflow: hidden;
  /* Désactive le défilement */
  overscroll-behavior: none;
}
.desktop_only {
  display: block !important;
}
.desktop_only_flex {
  display: flex !important;
}
.mobile_only, .mobile_only_flex {
  display: none !important;
}
header, main {
  max-width: 1720px;
  width: 96vw;
  margin: 0 auto !important;
  z-index: 100;
  position: relative;
}
main {
  z-index: 10000000;
}
@media (max-width: 660px) {
  body {
    width: 100vw !important;
    margin: 0 auto !important;
  }
  header, main {
    width: 100vw !important;
  }
  body.noscroll {
    overflow: hidden;
    /* Désactive le défilement */
    overscroll-behavior: none;
  }
  .desktop_only, .desktop_only_flex {
    display: none !important;
  }
  .mobile_only {
    display: block !important;
  }
  .mobile_only_flex {
    display: flex !important;
  }
}
