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




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




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

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




/**
 * ===== BODY =====
 */
body {
  background-color: var(--site--body--back-color--01);
  color: var(--site--body--text-color--01);
  font-family: "DIN-W05", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 1.5;
}




/**
 * ===== 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(--site--body--link-color--01);
  text-decoration: none;
}




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

/**/
h1,
h2,
h3,
h4,
h5 {
  color: var(--site--main--color--06-03);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.75rem 0;
  margin: 0.25rem 0;
}

h1 {
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
h2 {
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.0rem;
}

/**/
p {
  margin: 0 0 0.75rem 0;
}

/**/
address {}

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

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

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

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

/**/
hr {
  border: 0;
  border-bottom: 1px solid var(--site--body--text-color--01);
  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;
}


/* @media */
@media only screen and (min-width: 768px) {
  /**/
  h1 {
    font-size: 2.0rem;
    line-height: 1.15;
  }
  h2 {
    font-size: 2.0rem;
    line-height: 1.15;
  }
}


/* @media */
@media only screen and (min-width: 1024px) {
  /**/
  h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  h2 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
}


/* @media */
@media only screen and (min-width: 1200px) {
  /**/
  h1 {
    font-size: 3.0rem;
  }
  h2 {
    font-size: 3.0rem;
  }
}


/* media */
@media (prefers-color-scheme:dark) {
  /**/
  /*
  h1,
  h2,
  h3,
  h4,
  h5 {
    color: var(--site--main--color--06-03);
    color: var(--site--body--text-color--01);
  }
  */
}




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

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

/**/
ol {
  list-style-position: inside;
  list-style-type: decimal-leading-zero;
}
ol li {}

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




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

/**/
caption {
  color: var(--site--main--color--06-03);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.025rem;
  padding: 1.0rem;
  text-align: left;
  text-transform: uppercase;
}

/**/
table {
  background-color: transparent;
  border: 1px solid var(--site--main--color-06-03);
  border-width: 0;
  border-collapse: collapse;
  border-width: 0;
  width: 100%;
}

/**/
table a,
table a:link,
table a:visited {}
table a:hover {}

/**/
tr {}

/**/
thead {}
thead th {
  background-color: #EEEEEE;
  border: 1px solid var(--site--main--color--06-03);
  border-width: 1px;
  font-weight: 600;
  letter-spacing: 0.025rem;
  padding: 0.5rem;
  text-align: left;
  text-transform: uppercase;
  vertical-align: bottom;
}

/**/
tbody {}
tbody tr:nth-child(odd) {
  background-color: var(--site--body--back-color--02);
}
tbody td {
  border: 1px solid var(--site--main--color--06-03);
  border-width: 1px;
  padding: 0.5rem;
}
