* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   scroll-behavior: smooth;
  height: -webkit-fill-available;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-color-primary);
  -webkit-box-shadow: 0 0 0px 1000px var(--bg-secondary) inset;
  transition: background-color 5000s ease-in-out 0s;
}

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

button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
}

button:disabled {
  cursor: auto;
}

kbd {
  padding: inherit;
  font-size: inherit;
  color: inherit;
  background-color: inherit;
  border-radius: inherit;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  font-size: 0;
  object-fit: cover;
  user-select: none;
}

picture {
  display: flex;
  width: 100%;
}


svg *:not(.no-recolor) [stroke]:not(#map *):not([data-map] *),
svg *[stroke]:not(#map *):not([data-map] *):not(.no-recolor) {
  stroke: currentcolor;
}

svg *:not(.no-recolor) [fill]:not(#map *):not([data-map] *),
svg *[fill]:not(#map *):not([data-map] *):not(.no-recolor) {
  fill: currentcolor;
}

input[type='number'] {
  -moz-appearance: textfield;
}


body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

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

a,
input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

input[type='text']::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type='text']::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: inherit;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}