/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
  ## Elements
  ## Forms
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  box-sizing: border-box;
}

*, *:after, *:before {
  box-sizing: inherit;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
  width: 100%;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

h1, h2, h3, h4, h5, h6, p, a, textarea, blockquote {
  text-rendering: optimizeLegibility;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: var(--yellow-85);
  color: var(--grey-5);
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  position: relative;
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: var(--code-font);
  font-size: 1rem;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

select {
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, black 50%), linear-gradient(135deg, black 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(100% - 50%), calc(100% - 15px) calc(100% - 50%), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid var(--grey-95);
  margin: 0 2px;
  padding: 0.5em 1em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

tr {
  line-height: 1.5rem;
  font-size: .75rem;
}

td, th {
  padding: .5rem;
  border-bottom: 1px solid var(--grey-95);
  min-width: 3rem;
}

tr:last-of-type td, tr:last-of-type th {
  border: none;
}

tr:only-child > td, tr:only-child > th {
  border-bottom: 1px solid var(--grey-95);
}

th {
  text-align: left;
  min-width: 6rem;
}

:focus {
  outline: 1px dashed var(--grey-70);
}

@media (max-width: 600px) {
  tr {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

hr {
  background-color: var(--grey-95);
  border: 0;
  height: 1px;
  margin-bottom: 2.5em;
  margin-top: 2.5em;
}

ul, ol {
  padding-left: 1.05em;
  line-height: 1.5;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li>ul, li>ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  max-width: 100%;
}

table {
  margin: 0;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

button, input[type="button"], input[type="reset"], input[type="submit"] {
  transition: all .25s ease-in-out;
  border: 2px solid var(--grey-5);
  border-radius: 3px;
  background: var(--grey-5);
  color: var(--white-pure);
  font-size: 1em;
  line-height: 1;
  padding: .75em 1em;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
  border-color: var(--grey-50);
  background: var(--grey-50);
}

input[type="reset"] {
  background: transparent;
  color: var(--grey-5);
}

input[type="reset"]:hover {
  background: transparent;
  color: var(--grey-50);
}

input[type="text"], input[type="email"],
input[type="url"], input[type="password"],
input[type="search"], input[type="number"],
input[type="tel"], input[type="range"],
input[type="date"], input[type="month"],
input[type="week"], input[type="time"],
input[type="datetime"], input[type="datetime-local"],
input[type="color"], textarea, select {
  color: var(--grey-50);
  border: 1px solid var(--grey-95);
  border-radius: 3px;
  padding: .5em;
}

input[type="text"]:focus, input[type="email"]:focus,
input[type="url"]:focus, input[type="password"]:focus,
input[type="search"]:focus, input[type="number"]:focus,
input[type="tel"]:focus, input[type="range"]:focus,
input[type="date"]:focus, input[type="month"]:focus,
input[type="week"]:focus, input[type="time"]:focus,
input[type="datetime"]:focus, input[type="datetime-local"]:focus,
input[type="color"]:focus, textarea:focus {
  color: var(--grey-5);
}

select {
  border: 1px solid var(--grey-95);
}

textarea {
  width: 100%;
}
