* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--black-color);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Hauora", sans-serif;
  color: #333;
  background-color: var(--body-bg-color);
  font-size: 16px;
  line-height: 20px;
}

body .v-application {
  background-color: var(--v-background-base) !important;
  font-family: inherit;
}

@media only screen and (max-width: 1023px) {
  body {
    font-size: 14px;
  }
}

a {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: inherit;
  text-decoration: none;
}

a:active,
a:focus {
  color: inherit;
}

a:hover {
  -webkit-transition: none;
  transition: none;
}

b {
  font-weight: 600;
}

::-ms-clear {
  display: none;
}

h1,
.h1 {
  font-size: 64px;
  margin-bottom: 0.5em;
  font-family: "Mazzard L", sans-serif;
  line-height: 0.8125;
}

h2,
.h2 {
  font-size: 48px;
  font-family: "Mazzard L", sans-serif;
  line-height: 0.917;
  margin-bottom: 28px;
}

h3,
.h3 {
  font-size: 36px;
  line-height: 1;
  font-family: "Mazzard L", sans-serif;
  margin-bottom: 16px;
}

h4,
.h4 {
  font-size: 28px;
  line-height: 1.2em;
  font-family: "Mazzard L", sans-serif;
  margin-bottom: 0.5em;
}

p {
  line-height: 1.25;
}

h5 {
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-size: inherit;
  font-family: inherit;
}

label {
  cursor: pointer;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.page > main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.paragraph {
  margin-bottom: 20px;
  line-height: 20px;
}

.bold {
  font-weight: bold;
}

.error-message {
  color: var(--attention-error);
  font-size: 12px;
  line-height: 1.33;
}

@media only screen and (max-width: 1023px) {
  p {
    line-height: 1.667;
  }
  h1,
  .h1 {
    font-size: 40px;
    line-height: 0.8;
    margin-bottom: 16px;
  }
  h2,
  .h2 {
    font-size: 32px;
    line-height: 0.9375;
    margin-bottom: 16px;
  }
  h3,
  .h3 {
    font-size: 28px;
  }
  h4,
  .h4 {
    font-size: 20px;
    line-height: 1.2em;
  }
  .hide-for-md {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .hide-for-sm {
    display: none;
  }
}

@media only screen and (min-width: 767px) {
  .show-for-sm {
    display: none;
  }
}

/* disable all animations and transitions if reduced motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

.contents {
  display: contents;
}

#loading-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#start-error {
  background-color: #f5abbd;
  padding: 15px;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10000;
}

#start-error pre {
  overflow: hidden;
  overflow-wrap: anywhere;
  white-space: pre-line;
}