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

html {
  -ms-overflow-style: scrollbar;

  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
    'Helvetica Neue', sans-serif;

  /* font size of the body remains at 16px */
  font-size: 16px;

  /* Removes double-tap zoom and the delay of click events on touch devices.
   * https://developer.mozilla.org/en-US/docs/Web/CSS/touch-action
   */
  touch-action: manipulation;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.iframe-context ul {
  margin-top: 1em;
  margin-bottom: 1em;
  list-style: initial;
  padding-left: 4rem;
}

.iframe-context li {
  list-style: initial;
}

a {
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

/* Hides clear & eye icons in IE11 & Edge. */
input::-ms-reveal,
input::-ms-clear {
  display: none;
}