/**
 * @file
 * CSS for basic HTML elements.
 */




/**
 * ===== RESET =====
 */
* {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: top;
}




/**
 * ===== HTML =====
 */
html {
  font-size: 90%;
}

/* @media */
@media only screen and (min-width: 1200px) {
  html {
    font-size: 110%;
  }
}




/**
 * ===== BODY =====
 */
body {
  background-color: var(--custom-color-0-3);
  color: var(--custom-color-0-1);
  font-family: "Fira Sans", sans-serif;
  font-size: 1.0rem;
    -webkit-font-smoothing: antialiased !important;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility !important;
}


@media only screen and (max-width: 512px) {
  body {
    word-wrap: anywhere;
  }
}


/**
 * ===== HTML 5 =====
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}




/**
 * ===== IMG =====
 */
img {
  display: block;
  height: auto;
  max-width: 100%;
}




/**
 * ===== LINK =====
 */
a,
a:link,
a:visited,
a:hover {
  color: var(--custom-color-2-1);
  font-weight: 500;
  text-decoration: none;
}




/**
 * ===== TYPO =====
 */

/**/
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  line-height: 1.25;
  margin: 0.4rem 0;
}

h1 {
  font-size: 2.0rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.0rem;
}
h5 {
  font-size: 1.0rem;
}

/**/
p {
  margin-bottom: 1.5rem;
}
table p {
  margin-bottom: 0;
}
p.info {
  margin-bottom: 0;
}

/**/
address,
p.address {
  line-height: 1.5;
  margin: 0;
}

/**/
blockquote {
  font-style: italic;
}
blockquote p {}

/**/
q {
  font-style: italic;
}

/**/
em {
  font-style: italic;
  font-weight: 500;
}

/**/
strong {
  font-weight: bold;
}

/**/
hr {
  border: 0;
  border-bottom: 1px solid var(--custom-color-0-1);
  margin: 1.5rem 0;
}

/**/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5rem;
}

sub {
  bottom: -0.25rem;
}




/**
 * ===== LIST =====
 */

/**/
dl {}
dt {}
dd {}

/**/
ol {
  list-style-position: outside;
}
ol li {
  list-style: none;
}

/**/
ul {
  list-style-position: outside;
}
ul li {
  list-style: none;
}




/**
 * ===== TABLE =====
 */

/**/
caption {
  font-weight: bold;
  padding: 0.5rem;
}

/**/
table {
  background-color: transparent;
  border-width: 0;
  border-collapse: collapse;
  border-bottom: var(--custom-color-1-1) solid 0.2rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

table * {
  vertical-align: middle;
}

/**/
thead {}
thead th {
  background-color: var(--custom-color-1-2);
  color: var(--custom-color-1-1);
  font-weight: bold;
  padding: 0.4rem;
  text-align: left;
}

/**/
tbody {}
tbody tr:nth-child(even) {
  background-color: var(--custom-color-1-3);
}
tbody tr:nth-child(even).drag-previous {
  background-color: var(--custom-color-2-4);
}
tbody tr.drag-previous abbr {
  display: none;
}
tbody td {
  padding: 0 0.5rem;
}
