/**
 * @param {string} $scheme - The color scheme of the button. Options are nothing, $scheme-light, $scheme-dark
 * if $scheme-dark is passed, the button will be black text and black outline
 * if $scheme-light is passed, the button will be white text and white outline
 * if no $scheme is passed, the button will depend on the background color via the bg-dark mixin
 *   - if ancestor DOES have bg-dark, then white text and white outline
 *   - if ancestor DOES NOT have bg-dark, then black text and black outline
 */
.client-only-view-loading[data-v-f5fb87fa] {
  min-height: 100vh;
}/**
 * @param {string} $scheme - The color scheme of the button. Options are nothing, $scheme-light, $scheme-dark
 * if $scheme-dark is passed, the button will be black text and black outline
 * if $scheme-light is passed, the button will be white text and white outline
 * if no $scheme is passed, the button will depend on the background color via the bg-dark mixin
 *   - if ancestor DOES have bg-dark, then white text and white outline
 *   - if ancestor DOES NOT have bg-dark, then black text and black outline
 */
.page-not-found {
  min-height: 60vh;
  text-align: center;
}
.page-not-found__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
}
.page-not-found--message {
  font-family: "DenimINK-Regular", Arial, sans-serif;
  font-style: normal;
  line-height: 1.2;
  font-size: 24px;
  letter-spacing: 0rem;
  text-transform: none;
}
@media (min-width: 768px) {
.page-not-found--message {
    font-size: 32px;
}
}
@media (min-width: 1025px) {
.page-not-found--message {
    font-size: 40px;
}
}
.page-not-found--message {
  color: #000000;
}
.-bg-dark .page-not-found--message, .-bg-section-dark .page-not-found--message, .-bg-page-dark .-bg-section-transparent .page-not-found--message {
  color: #ffffff;
  fill: #ffffff;
}
.page-not-found--message {
  letter-spacing: 0.02em;
}
.page-not-found--sub-text {
  padding-top: 36px;
  font-family: "DenimINK-Regular", Arial, sans-serif;
  font-style: normal;
  line-height: 1.4;
  font-size: 16px;
  letter-spacing: 0rem;
  text-transform: none;
  color: #000000;
}
.-bg-dark .page-not-found--sub-text, .-bg-section-dark .page-not-found--sub-text, .-bg-page-dark .-bg-section-transparent .page-not-found--sub-text {
  color: #ffffff;
  fill: #ffffff;
}
.page-not-found--sub-text a {
  color: #000000;
}
.-bg-dark .page-not-found--sub-text a, .-bg-section-dark .page-not-found--sub-text a, .-bg-page-dark .-bg-section-transparent .page-not-found--sub-text a {
  color: #ffffff;
  fill: #ffffff;
}