html {
  font-size: 90%;
}
body {
  margin: 0;
  background-color: var(--body_background_color);
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Ubuntu, "Helvetica Neue",
    Arial, sans-serif;
  background-image: linear-gradient(200deg,
    var(--body_gradient_background_color) 0%,
    var(--body_gradient_background_color) 10vh,
    var(--body_background_color) 100vh);
  overflow-x: hidden;
}
#header {
  max-width: 100vw;
  overflow: hidden;
  min-height: 100vh;
  box-sizing: border-box;
  margin-bottom: 1em;
}
#header.landing {
  background: var(--landing_background_color);
  background-image: url("../assets/bg.png"), linear-gradient(315deg,
    var(--landing_background_color) 0%,
    var(--landing_gradient_background_color) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--landing_header_foreground_color);
}
#header.short {
 min-height: 10rem;
}
#subheader {
  width: 100%;
  padding: 0.5em 10%;
  vertical-align: middle;
  margin: 0;
  box-sizing: border-box;
}
#subheader p {
  line-height: 1.5em;
}
h1 {
  font-size: 3.5rem;
  font-weight: 200;
}
h2 {
  font-size: 2.5rem;
  font-weight: 300;
}
h3 {
  font-size: 2rem;
  font-weight: 300;
}
h4 {
  font-size: 1.5rem;
  font-weight: 300;
}
.logo_heading {
  display: flex;
  align-items: flex-end;
  gap: 0.5em;
  justify-content: center;
}
.logo_heading img {
  display: block;
  height: 1em;
}
.logo_heading.align_middle {
  align-items: center;
}
#content {
  width: 100%;
  margin: 0;
}
.content, .special_content {
  padding: 2em 10%;
  line-height: 2em;
  box-sizing: border-box;
}
.special_content {
  background-color: var(--special_content_background_color);
}
.content p.footnotes {
  font-size: 0.8em;
}
.left, .right {
  display: inline-block;
  width: 50%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  vertical-align: middle;
}
.left.size_1_2,
.right.size_1_2 {
  width: calc(100% / 2);
}
.left.size_1_3,
.right.size_1_3 {
  width: calc(100% / 3);
}
.left.size_2_3,
.right.size_2_3 {
  width: calc(2 * 100% / 3);
}
a {
  text-decoration-style: solid;
  color: var(--link_foreground_color);
}
img {
  max-width: 100%;
}
.horizontal_box {
  display: flex;
  align-items: center;
}
.horizontal_box.wrap {
  flex-wrap: wrap;
}
.horizontal_box .item {
  margin: 0 1em;
}
.horizontal_box .item.size_1_2 {
  width: calc(100% / 2);
}
.horizontal_box .item.size_1_3 {
  width: calc(100% / 3);
}
.horizontal_box .item.size_2_3 {
  width: calc(2 * 100% / 3);
}
.horizontal_box.align_top {
  align-items: start;
}
.horizontal_box.align_bottom {
  align-items: end;
}
.align_left {
  text-align: left;
}
.align_right {
  text-align: right;
}
.align_center {
  text-align: center;
}
.continue_below {
  background-image: url("../assets/continue_below.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 7em;
  width: 5em;
  opacity: 0.75;
}
.highlight {
  color: var(--highlight_foreground_color);
  background-color: unset;
  font-weight: bold;
}
.round_shadow_element {
  border-radius: 4em;
  box-shadow: 2em 2em 2em rgba(0, 0, 0, 0.35);
}
img.round_shadow_side_image {
  border-radius: 4em;
  box-shadow: 2em 2em 2em rgba(0, 0, 0, 0.35);
}
ul.checklist li {
  list-style-type: "\2714";
  padding-left: 1em;
}
form {
  width: 100%;
  padding: 3em;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
form .field {
  padding: 0.5em 0;
}
form .field label, form .field input, form .field textarea, form .field select {
  display: block;
  width: 100%;
}
form .action button {
  max-width: 25%;
  vertical-align: top;
}
form .action button span, .action button i {
  display: inline-block;
  vertical-align: middle;
}
form .action button i {
  margin-left: 0.5em;
}
form .result {
  display: inline-block;
  font-weight: bold;
  color: red;
  width: 75%;
}
form .result.success {
  color: green;
}
input[type=text], input[type=password], textarea {
  border: none;
  border-bottom: 2px solid var(--input_border_color);
  padding: 0.25em;
  background-color: rgba(0, 0, 0, 0);
}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
  border-color: var(--input_border_focus_color);
  outline: none;
}
input[type=text]:disabled, input[type=password]:disabled, textarea:disabled {
  border-color: var(--input_border_color);
}
textarea {
  border-left: 2px solid var(--input_border_color);
}
select {
  border: 2px solid var(--input_border_color);
  background-color: rgba(0, 0, 0, 0);
  padding: 0.5em;
}
select:focus {
  border-color: var(--input_border_focus_color);
}
.required:after {
  margin-left: 0.25em;
  content: '*';
  color: red;
}
.group {
  margin-left: 2em;
  padding-left: 2em;
  border-left: 8px solid transparent;
  border-style: solid;
  border-image: linear-gradient(to bottom, #ff7e5f, #feb47b);
  border-image-slice: 1;
  border-image-width: 0 0 0 8px;
  border-image-outset: 0;
}
.nowrap {
  white-space: nowrap;
  display: inline-block;
}
