html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button,
[type="button"],
[type="file"],
[type="image"],
[type="password"],
[type="reset"],
[type="submit"],
[type="text"],
[type="date"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="search"],
[type="tel"],
[type="time"],
[type="url"],
[type="week"] {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  background: transparent;
  color: inherit;
  text-align: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body,
#root {
  min-height: 100dvh;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}
html > *,
body > *,
#root > * {
  flex-shrink: 0;
  width: 100%;
}

html,
body {
  --lh: 1;
  background: #f9f8f6;
  color: #2c3337;
  touch-action: manipulation;
  -webkit-overflow-scrolling: touch;
}

html {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  display: none; /* Don't use tables. */
}

::placeholder {
  color: #6c7275;
  opacity: 1;
}

[role="document"]:focus,
[role="dialog"]:focus {
  outline: 0;
}

:focus {
  outline: 0;
}

input::-ms-clear {
  display: none;
}

[role="button"] {
  user-select: none;
}
[role="button"]:not([disabled]):not(.cursor-default) {
  cursor: pointer;
}

:focus-visible {
  outline: 0.0625rem dotted #000000;
}

acronym,
applet,
basefont,
big,
center,
dir,
font,
frame,
frameset,
isindex,
s,
strike,
tt,
u,
[type="datetime"],
.do-not-use-deprecated-tags {
  outline: 8px dashed red;
}

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

textarea {
  resize: vertical;
  overflow: auto; /* Remove the default vertical scrollbar in IE 11. */
}

fieldset {
  min-width: 100%;
}
