*,
*::before,
*::after{
  box-sizing: border-box;
}

html,
body{
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip){
  html,
  body{
    overflow-x: hidden !important;
  }
}

body{
  position: relative;
  min-height: 100%;
}

img,
video,
svg,
canvas{
  max-width: 100%;
  height: auto;
  display: block;
}

html{
  scrollbar-gutter: stable;
}