html,
body,
#root,
#root > div {
  width: 100%;
  height: 100%;
}

html, body {
  /* disable auto hiding url bar on android chrome */
  /* TODO: CL-12467 Handle full screen sizing properly and restore address bar auto hiding */
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  scrollbar-width: thin !important;
}

::-webkit-scrollbar {
  width: 3px;
  border-radius: 2px;
  background-color: transparent
}

::-webkit-scrollbar-thumb{
  background-color: rgba(255, 255, 255, 0.2);
  height: 200px;
}

::-webkit-scrollbar-track{
  display: none;
  background-color: transparent
}

::-webkit-scrollbar-track-piece{
  display: none;
  background-color: transparent
}

.StripeElement--webkit-autofill{
  background-color: transparent !important;
}
