*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: normal;
}
html {
  overflow-x: auto !important;
  overflow-y: auto !important;
}

@supports selector(::-webkit-scrollbar) {
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: inherit;
  }

  ::-webkit-scrollbar-track {
    background: inherit;
  }

  ::-webkit-scrollbar-thumb {
    background: #808080;
    border-radius: 3px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #a3a3a3;
  }
}

@supports (scrollbar-color: auto) {
  html {
    scrollbar-width: thin;
    scrollbar-color: #808080 transparent;
  }
}
