/* Modern reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  min-width: 0;
}

html,
body {
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

ul:not([role="list"]),
ol:not([role="list"]) {
  padding-left: 1.25rem;
}

li {
  margin: 0;
}

img,
picture,
svg,
canvas,
video {
  display: block;
  max-width: 100%;
}

img,
picture,
video,
canvas {
  height: auto;
}

svg {
  flex-shrink: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
[role="button"] {
  cursor: pointer;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

input,
textarea,
select {
  border-radius: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
}

textarea {
  resize: vertical;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

[hidden] {
  display: none !important;
}

:where(button, a, input, select, textarea, summary) {
  -webkit-tap-highlight-color: transparent;
}