body {
  margin: 0;
  font-family: "Roboto", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

/* 
  Class to be applied on as most-outer as possible components to work in
  CSS border-box manner without introducing UI regressions in other parts of the application
*/
.jugl__border-box-component,
.jugl__border-box-component * {
  box-sizing: border-box;
}
/* 
  Hide container's scrollbar
*/
/* Chrome, Safari, Opera, and other WebKit-based browsers */
.jugl__hidden-scrollbar::-webkit-scrollbar {
  display: none;
}
.jugl__hidden-scrollbar {
  /* IE (Internet Explorer) and Edge */
  -ms-overflow-style: none;

  /* Firefox */
  scrollbar-width: none;
}
.jugl__focusable-outline:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #63B4F6;
}


/*# sourceMappingURL=main.css.map*/