@charset "UTF-8";
/**
 * home/jbraun/Sites/halma-kickstart/src/css/libhalma/_reset.scss
 *
 * inspired by https://hankchizljaw.com/wrote/a-modern-css-reset/
 *
 * @author Johannes Braun <j.braun@agentur-halma.de>
 * @package libhalma
 * @version 2020-11-09
 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.35;
  text-rendering: optimizeSpeed;
}

main {
  text-rendering: optimizeLegibility;
}

img, picture, video {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

input, button, textarea, select {
  font: inherit;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**
 * _settings.scss
 *
 * Use Sass variables and custom properties as appropriate, both are possible
 */
/**********
 * Colors *
 **********/
/********
 * Typo *
 ********/
/************
 * Measures *
 ************/
/********************
 * Options/Switches *
 ********************/
/*****************
 *  Breakpoints  *
 *****************/
/**
 * src/css/libhalma/_classes.scss
 *
 * Predefined utility classes
 *
 * @author C.Coull <c.coull@agentur-halma.de>
 * @author J. Braun <j.braun@agentur-halma.de>
 * @package libhalma
 * @version 2021-05-27
 */
/**
 * src/css/libhalma/media-object.scss
 *
 * @author Johannes Braun <j.braun@agentur-halma.de>
 * @package libhalma
 * @version 2021-05-31
 */
/**
 * src/css/libhalma/_vertical_rhythm.scss
 *
 * @author Carsten Coull <c.coull@agentur-halma.de>
 * @package libhalma
 */
body {
  position: relative;
}

.debug-base-line-grid {
  background-image: linear-gradient(to bottom, transparent 0, transparent calc(1.55rem), rgba(255, 99, 71, 0.1) calc(1.55rem), rgba(255, 99, 71, 0.1));
  background-size: 100% 3.1rem;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: 32766;
  top: -16px;
}

/**
 * libhalma/_rwd.scss
 *
 * Breakpoints, media queries, responsive webdesign
 * See: https://medium.freecodecamp.org/the-100-correct-way-to-do-css-breakpoints-88d6a5ba1862
 *
 * @usage: @include for-size(tablet-landscape-up) { ... }
 *				 Use a pre devined size from $breakpoints with added '-up' or '-down' for direction.
 *
 * 				 @include for-size(1200px, up) { ... }
 *				 If second parameter is 'up' or 'down' it will be used as direction and a custom size can be used.
 *
 *
 * @author Johannes Braun <j.braun@agentur-halma.de>, Carsten Coull <c.coull@agebtur-halma.de>
 * @package libhalma
 */
/**
 * src/css/mixins/_utils.scss
 *
 * Utility mixins and functions
 *
 * @author Johannes Braun <j.braun@agentur-halma.de>
 * @package libhalma
 */
/**
 * strip-unit
 *
 * Returns the unitless number
 * From: https://css-tricks.com/snippets/sass/strip-unit-function/
 *
 * @param number
 * @return number
 */
/**
 * pow
 *
 * Return the number risen to the power of n
 * From: https://css-tricks.com/snippets/sass/power-function/
 *
 * @param number 	The operator
 * @param exp 		The exponent
 * @return number
 */
/**
 * Calculates the sRGB luma of a colour.
 *
 * From: https://lnikki.la/articles/sass-better-colour-based-on-brightness/
 *
 * Math nicked from a great Thoughtbot article by Reda Lemeden:
 * http://robots.thoughtbot.com/closer-look-color-lightness
 */
/*
 * Picks a colour from two options based on which one is more visible
 * on the given background colour.
 *
 * From: https://lnikki.la/articles/sass-better-colour-based-on-brightness/
 *
 * Usage: color-for-bg($bg-color, $color-1, $color-2)
 */
/*
 * @author Carsten Coull <c.coull@agentur-halma.de>
 *
 * Slope Utilits
 * sets a Graph to use for unit
 *
 * Needs a calc support
 */
/*
 * for fluid type to fit to screen;
 */
/*
 * Sets a fluid Unit between to Values
 *
 * $min-size: Minimum Value
 * $max-size: Maximum Value
 * $min-view: Size at which to use $min-size
 * $max-view: Size at which to use $max-size
 *
 * works best with px Unit
 */
/* Can be used with Custom Proporties */
/**
 * _ui.scss
 *
 * @author Johannes Braun <j.braun@agentur-halma.de>
 * @package libhalma
 */
/**
 * Reset button
 * See: https://fvsch.com/styling-buttons/
 */
/**
 * The Stack
 *
 * Spacing for vertically stacked blocks
 */
/**
 * From: EveryLayout
 */
/**
 * The Cluster
 *
 * https://every-layout.dev/demos/cluster-ctas/
 *
 * We can use `gap` now on flexbox items, so it gets really easy now :-)
 */
/**
 * src/css/libhalma/_libhalma.scss
 *
 * Libhalma: A simple, solid and accessible basic library for css
 *
 * @author Johannes Braun <j.braun@agentur-halma.de>
 * @package libhalma
 * @version 2020-11-09
 */
:root {
  --tusk-primary-color: #4ADCB1;
  --tusk-primary-color-100: white;
  --tusk-primary-color-200: #b5f1df;
  --tusk-primary-color-300: #75e4c3;
  --tusk-primary-color-400: #4ADCB1;
  --tusk-primary-color-500: #27cc9b;
  --tusk-primary-color-600: #1fa17b;
  --tusk-primary-color-700: #17765a;
  --tusk-primary-color-800: #0f4b3a;
  --tusk-primary-color-900: black;
  --tusk-secondary-color: #89a4ef;
  --tusk-secondary-color-100: white;
  --tusk-secondary-color-200: #f9fbfe;
  --tusk-secondary-color-300: #b6c7f5;
  --tusk-secondary-color-400: #89a4ef;
  --tusk-secondary-color-500: #5c81e9;
  --tusk-secondary-color-600: #2f5fe3;
  --tusk-secondary-color-700: #1b48c4;
  --tusk-secondary-color-800: #153797;
  --tusk-secondary-color-900: #08163e;
  --tusk-background-color: #837c7c;
  --tusk-background-color-100: white;
  --tusk-background-color-200: #c1bebe;
  --tusk-background-color-300: #9c9696;
  --tusk-background-color-400: #837c7c;
  --tusk-background-color-500: #696363;
  --tusk-background-color-600: #4f4a4a;
  --tusk-background-color-700: #343232;
  --tusk-background-color-800: #1a1919;
  --tusk-background-color-900: black;
  --tusk-contrast-color: #F9F9F9;
  --tusk-contrast-color-100: white;
  --tusk-contrast-color-200: white;
  --tusk-contrast-color-300: white;
  --tusk-contrast-color-400: #F9F9F9;
  --tusk-contrast-color-500: #e0e0e0;
  --tusk-contrast-color-600: #c6c6c6;
  --tusk-contrast-color-700: #adadad;
  --tusk-contrast-color-800: #939393;
  --tusk-contrast-color-900: #606060;
  --tusk-text-color: #0c0e26;
  --tusk-text-color-100: #777ed4;
  --tusk-text-color-200: #2b3287;
  --tusk-text-color-300: #181c4d;
  --tusk-text-color-400: #0c0e26;
  --tusk-text-color-500: black;
  --tusk-text-color-600: black;
  --tusk-text-color-700: black;
  --tusk-text-color-800: black;
  --tusk-text-color-900: black;
  --tusk-primary: var(--tusk-primary-color) !important;
  --tusk-primary-hover: var(--tusk-primary-color-500) !important;
  --tusk-primary-focus: var(--tusk-primary-color-200) !important;
  --tusk-margin: 2rem;
  --tusk-margin-200: 0.5rem;
  --tusk-margin-300: 1rem;
  --tusk-margin-400: 2rem;
  --tusk-margin-500: 4rem;
  --tusk-margin-600: 6rem;
  --tusk-margin-800: 9rem;
  --tusk-margin-900: 12rem;
  --tusk-border-width: 2px;
  --tusk-border-radius: 0.5rem;
  --tusk-border-color: currentColor;
  --tusk-border-type: solid;
  --tusk-border: var(--tusk-border-color) var(--tusk-border-width) var(--tusk-border-type) var(--tusk-border-radius);
  --tusk-gutter: 1rem;
  --tusk-vertical-unit: 1.55rem;
  --tusk-outer-bound: 2rem;
  --tusk-inner-bound-width: 52rem;
  --tusk-outer-bound-width: 64rem;
  --tusk-header-height: clamp(5rem, (100vw * 0.0076923077) - -4.8461538462rem, 6.5rem);
  --tusk-screen-height: 100vh;
}

.margin--tusk- {
  margin-bottom: var(--tusk-margin);
}

.margin--tusk-200 {
  margin-bottom: var(--tusk-margin-200);
}

.margin-bottom--tusk-200 {
  margin-bottom: var(--tusk-margin-200);
}

.margin-top--tusk-200 {
  margin-top: var(--tusk-margin-200);
}

.gap--tusk-200 {
  gap: var(--tusk-margin-200);
}

.stack--tusk-200 > * + * {
  margin-top: var(--tusk-margin-200);
}

.margin--tusk-300 {
  margin-bottom: var(--tusk-margin-300);
}

.margin-bottom--tusk-300 {
  margin-bottom: var(--tusk-margin-300);
}

.margin-top--tusk-300 {
  margin-top: var(--tusk-margin-300);
}

.gap--tusk-300 {
  gap: var(--tusk-margin-300);
}

.stack--tusk-300 > * + * {
  margin-top: var(--tusk-margin-300);
}

.margin--tusk-400 {
  margin-bottom: var(--tusk-margin-400);
}

.margin-bottom--tusk-400 {
  margin-bottom: var(--tusk-margin-400);
}

.margin-top--tusk-400 {
  margin-top: var(--tusk-margin-400);
}

.gap--tusk-400 {
  gap: var(--tusk-margin-400);
}

.stack--tusk-400 > * + * {
  margin-top: var(--tusk-margin-400);
}

.margin--tusk-500 {
  margin-bottom: var(--tusk-margin-500);
}

.margin-bottom--tusk-500 {
  margin-bottom: var(--tusk-margin-500);
}

.margin-top--tusk-500 {
  margin-top: var(--tusk-margin-500);
}

.gap--tusk-500 {
  gap: var(--tusk-margin-500);
}

.stack--tusk-500 > * + * {
  margin-top: var(--tusk-margin-500);
}

.margin--tusk-600 {
  margin-bottom: var(--tusk-margin-600);
}

.margin-bottom--tusk-600 {
  margin-bottom: var(--tusk-margin-600);
}

.margin-top--tusk-600 {
  margin-top: var(--tusk-margin-600);
}

.gap--tusk-600 {
  gap: var(--tusk-margin-600);
}

.stack--tusk-600 > * + * {
  margin-top: var(--tusk-margin-600);
}

.margin--tusk-800 {
  margin-bottom: var(--tusk-margin-800);
}

.margin-bottom--tusk-800 {
  margin-bottom: var(--tusk-margin-800);
}

.margin-top--tusk-800 {
  margin-top: var(--tusk-margin-800);
}

.gap--tusk-800 {
  gap: var(--tusk-margin-800);
}

.stack--tusk-800 > * + * {
  margin-top: var(--tusk-margin-800);
}

.margin--tusk-900 {
  margin-bottom: var(--tusk-margin-900);
}

.margin-bottom--tusk-900 {
  margin-bottom: var(--tusk-margin-900);
}

.margin-top--tusk-900 {
  margin-top: var(--tusk-margin-900);
}

.gap--tusk-900 {
  gap: var(--tusk-margin-900);
}

.stack--tusk-900 > * + * {
  margin-top: var(--tusk-margin-900);
}

/**
 * src/css/partials/_typography.scss
 *
 * Typography related styles
 *
 */
/************
 * Webfonts *
 ************/
/**
 * @example
 *
 * @include font-face('FontName', '../fonts/FontName-Regular', normal, normal, $file-types: woff2);
 * @include font-face('FontName', '../fonts/FontName-Bold', bold, normal, $file-types: woff2);
 * @include font-face('FontName', '../fonts/FontName-Italic', normal, italic, $file-types: woff2);
 */
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 1rem;
  letter-spacing: -0.1px;
}
@media (max-width: 1200px) {
  html {
    font-size: clamp(0.85rem, (100vw * 0.0015) - -0.82rem, 1rem);
  }
}
@media (min-width: 1200px) {
  html {
    font-size: clamp(1rem, (100vw * 0.0066666667) - -0.2rem, 1.2rem);
  }
}

body {
  font-size: 1rem;
  line-height: 1.55em;
  margin-bottom: 0rem;
  color: var(--tusk-text-color);
  font-family: "Manrope", sans-serif;
}

.headline--big, h1 {
  font-size: 1.8020324707rem;
  line-height: 1.2902098257em;
  margin-bottom: 0rem;
  font-weight: 900;
}

.headline--default, h2 {
  font-size: 1.6018066406rem;
  line-height: 1.451486054em;
  margin-bottom: 0rem;
  font-weight: 800;
}

.headline--small, h3 {
  font-size: 1.265625rem;
  line-height: 1.224691358em;
  margin-bottom: 0rem;
}

.headline, h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (min-width: 900px) {
  .headline, h1, h2, h3, h4, h5, h6 {
    -webkit-hyphens: manual;
            hyphens: manual;
  }
}

.body-text h1, .body-text h2, .body-text h3, .body-text h4, .body-text h5, .body-text h6 {
  margin-bottom: var(--tusk-vertical-unit);
}
.body-text p {
  margin-bottom: 0;
}

.small {
  font-size: 0.7901234568rem;
  line-height: 1.96171875em;
  margin-bottom: 0rem;
}

/**
* partials/_common.scss
*
* Common styles, like e.g. resets, basic styles...
*/
html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.main-content {
  flex: 1;
  width: 100%;
}
.main-content > *:first-of-type > *:first-child:not(.full-width) {
  margin-top: var(--tusk-header-height);
  padding-top: var(--tusk-margin-400);
}
.main-content h1 + .body-text, .main-content h2 + .body-text, .main-content h3 + .body-text, .main-content h4 + .body-text, .main-content h5 + .body-text, .main-content h6 + .body-text {
  margin-top: var(--tusk-margin-200);
}

.hidden {
  display: none;
}

.box {
  /* ↓ Padding set to the first point on the modular scale */
  padding: 2rem;
  border: 0 none solid;
  /* ↓ Always apply the transparent outline, for high contrast mode */
  outline: 0 transparent;
  outline-offset: calc(0 * -1);
  color: var(--tusk-text-color);
  background-color: var(--tusk-background-color);
  border-radius: var(--tusk-border-radius);
}
.box * {
  /* ↓ Force colors to inherit from the parent
  and honor inversion (below) */
  color: inherit;
}

.box--inverted {
  /* ↓ Padding set to the first point on the modular scale */
  padding: 2rem;
  border: 0 #837c7c solid;
  /* ↓ Always apply the transparent outline, for high contrast mode */
  outline: 0 transparent;
  outline-offset: calc(0 * -1);
  color: #837c7c;
  background-color: #89a4ef;
  border-radius: var(--tusk-border-radius);
}
.box--inverted * {
  /* ↓ Force colors to inherit from the parent
  and honor inversion (below) */
  color: inherit;
}

.inverted {
  --primary-color: #89a4ef;
  --secondary-color: #4ADCB1;
  --background-color: #F9F9F9;
  --text-color: #837c7c;
  --contrast-color: #0c0e26;
}

.cluster {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.cluster-end {
  justify-content: flex-end;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stack > * + * {
  margin-top: var(--tusk-margin-400);
}

.icon {
  display: inline-block;
  height: 100%;
}
.icon svg {
  display: inline-block;
  height: 100%;
  width: auto;
  vertical-align: text-top;
  margin: 1px;
  overflow: visible;
}

.with-icon {
  /* ↓ Set the `inline-flex` context,  which eliminates the word space */
  display: inline-flex;
  align-items: center;
  gap: var(--tusk-space, 0.5rem);
}

.cover {
  object-position: center;
  object-fit: cover;
  height: 100%;
}

.sr-only {
  display: inline-block;
  opacity: 0;
  background: none;
  position: absolute;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  width: 2px;
  height: 2px;
  margin: -1px;
}
.sr-only:focus, .sr-only:active {
  opacity: 1;
  font-size: inherit;
  line-height: inherit;
  width: auto;
  width: max-content;
  height: auto;
  height: max-content;
  margin: 0;
  z-index: 1;
}

.outer-bound {
  box-sizing: content-box;
  max-width: var(--tusk-outer-bound-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--tusk-outer-bound);
  padding-right: var(--tusk-outer-bound);
}

.inner-bound {
  box-sizing: content-box;
  max-width: var(--tusk-inner-bound-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--tusk-outer-bound);
  padding-right: var(--tusk-outer-bound);
}

.full-width {
  --half-screen-width: calc((100vw - var(--tusk-scrollbarWidth)) / 2);
  margin-left: calc(50% - var(--tusk-half-screen-width));
  margin-right: calc(50% - var(--tusk-half-screen-width));
}

.list-style-none {
  list-style: none;
}
.list-style-none li {
  position: static;
  padding: 0;
}
.list-style-none li::before {
  content: none;
  display: none;
}

img {
  width: 100%;
}

.background {
  background-color: var(--tusk-background-color);
  color: var(--tusk-contrast-color);
}

a, button, input, select, textarea {
  font: inherit;
  cursor: pointer;
  color: inherit;
}
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: none;
}

input, textarea, select {
  background-color: var(--tusk-contrast-color);
  color: var(--tusk-text-color);
  border: var(--tusk-border-width) var(--tusk-border-type) var(--tusk-border-color);
  border-radius: var(--tusk-border-radius);
  font-size: 1rem;
  line-height: 1.55em;
  margin-bottom: 0rem;
  padding: 0.25em 0.5em;
}

input[type=text], textarea {
  cursor: text;
}

label {
  font-weight: 600;
}

.input {
  display: flex;
  flex-direction: column;
  min-width: 28ex;
  width: -moz-fit-content;
  width: fit-content;
}

.icon-button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  height: 2.7em;
}

.button, .button-container a, button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  padding: 0.5rem 1rem;
  color: var(--tusk-contrast-color);
  background-color: var(--tusk-primary-color);
  text-align: center;
  text-decoration: none;
  border-width: var(--tusk-border-width);
  border-style: solid;
  border-color: var(--tusk-primary-color);
  border-radius: 0;
  outline: none;
  display: inline-flex;
  align-items: baseline;
  font-weight: 600;
}
.button::-moz-focus-inner, .button-container a::-moz-focus-inner, button::-moz-focus-inner {
  border: none;
}
.button:active, .button-container a:active, button:active {
  transform: translateY(1px);
  filter: saturate(150%);
}
.button:hover, .button-container a:hover, .button:focus, .button-container a:focus, button:hover, button:focus {
  background-color: transparent;
  color: var(--tusk-primary-color);
  border-color: var(--tusk-primary-color);
}
.button > span + span, .button-container a > span + span, button > span + span {
  margin-left: 0.5ch;
}

.alt-button, .alt-button-container a {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  padding: 0.5rem 1rem;
  color: var(--tusk-contrast-color);
  background-color: var(--tusk-secondary-color);
  text-align: center;
  text-decoration: none;
  border-width: var(--tusk-border-width);
  border-style: solid;
  border-color: var(--tusk-secondary-color);
  border-radius: 0;
  outline: none;
  display: inline-flex;
  align-items: baseline;
  font-weight: 600;
}
.alt-button::-moz-focus-inner, .alt-button-container a::-moz-focus-inner {
  border: none;
}
.alt-button:active, .alt-button-container a:active {
  transform: translateY(1px);
  filter: saturate(150%);
}
.alt-button:hover, .alt-button-container a:hover, .alt-button:focus, .alt-button-container a:focus {
  background-color: transparent;
  color: var(--tusk-secondary-color);
  border-color: var(--tusk-secondary-color);
}
.alt-button > span + span, .alt-button-container a > span + span {
  margin-left: 0.5ch;
}

.body-text a {
  color: var(--tusk-primary-color);
  font-weight: 600;
}
.body-text a:hover, .body-text a:focus {
  color: var(--tusk-primary-color-500);
}
.body-text a:focus {
  outline: 2px solid var(--tusk-primary-color-500);
  outline-offset: 2px;
}
.body-text a:active {
  color: var(--tusk-primary-color-800);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 50%;
  transform: translate(-50%, -200%);
  transition: transform 300ms ease-in-out;
}
.skip-link:focus {
  transform: translate(-50%, 0%);
}

.editor {
  box-shadow: 0 0 2rem #ddd;
  border-radius: var(--tusk-tusk-border-radius);
  padding: var(--tusk-tusk-margin-200) var(--tusk-tusk-margin-500);
  min-height: 300px;
}
.editor .codex-editor {
  height: 100%;
}

.table-wrapper {
  position: relative;
  max-width: 100%;
}
.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  overscroll-behavior: contain;
}
.table-wrapper thead {
  overflow-x: auto;
  position: sticky;
  top: 0;
  z-index: 200;
}
.table-wrapper th,
.table-wrapper td,
.table-wrapper caption {
  padding: 0.1rem 0.75rem;
  text-align: left;
}
.table-wrapper th,
.table-wrapper caption {
  font-weight: 600;
  color: var(--tusk-text-color) !important;
}
.table-wrapper caption {
  padding: var(--tusk-margin-300) var(--tusk-margin-300);
  background-color: var(--tusk-primary-color);
  color: var(--tusk-contrast-color);
  font-weight: 800;
  font-size: 1.265625rem;
  line-height: 1.224691358em;
  margin-bottom: 0rem;
}
.table-wrapper th {
  background-color: var(--tusk-primary-color-200);
  color: var(--tusk-contrast-color);
  font-weight: 800;
}
.table-wrapper tr {
  background-color: var(--tusk-contrast-color-300);
}
.table-wrapper tr:nth-of-type(2n + 2) {
  background-color: var(--tusk-contrast-color-400);
}
.table-wrapper td {
  min-width: max-content;
  color: var(--tusk-color);
  font-weight: var(--tusk-font-weight);
  font-size: var(--tusk-font-size);
}
.table-wrapper [align=center] {
  text-align: center;
}
.table-wrapper [align=right] {
  text-align: right;
}
.table-wrapper [align=left] {
  text-align: left;
}
.table-wrapper [data-cell=Id] {
  opacity: 0.5;
}
.table-wrapper [data-cell=Actions] .cluster {
  flex-wrap: nowrap;
  justify-content: right;
}
@media (max-width: 900px) {
  .table-wrapper caption {
    overflow-x: auto;
    position: sticky;
    top: 0;
    z-index: 200;
  }
  .table-wrapper th {
    display: none;
  }
  .table-wrapper td {
    width: 100%;
    display: grid;
    justify-content: space-between;
    grid-template-columns: 15ch auto;
    padding-left: var(--tusk-margin-300);
    padding-right: var(--tusk-margin-300);
  }
  .table-wrapper td::before {
    content: attr(data-cell) ": ";
    font-weight: 800;
  }
  .table-wrapper td:first-child {
    padding-top: var(--tusk-margin-300);
  }
  .table-wrapper td:last-child {
    padding-bottom: var(--tusk-margin-300);
  }
}

body:not(.cmt-layout) .element-margin--none + * {
  margin-top: 0 !important;
}
body:not(.cmt-layout) .element-margin--small.background {
  padding-bottom: var(--tusk-margin-400);
}
body:not(.cmt-layout) .element-margin--small.background + *:not(.background) {
  padding-top: var(--tusk-margin-400);
}
body:not(.cmt-layout) .element-margin--small.background + .background {
  padding-top: var(--tusk-margin-400);
  margin-top: calc(var(--tusk-margin-400) * -1) !important;
}
body:not(.cmt-layout) .element-margin--small:not(.background) + *.background {
  margin-top: var(--tusk-margin-400);
  padding-top: var(--tusk-margin-400);
}
body:not(.cmt-layout) .element-margin--small:not(.background) + *:not(.background) {
  margin-top: var(--tusk-margin-400);
}
body:not(.cmt-layout) .element-margin--default.background {
  padding-bottom: var(--tusk-margin-500);
}
body:not(.cmt-layout) .element-margin--default.background + *:not(.background) {
  padding-top: var(--tusk-margin-500);
}
body:not(.cmt-layout) .element-margin--default.background + .background {
  padding-top: var(--tusk-margin-500);
  margin-top: calc(var(--tusk-margin-500) * -1) !important;
}
body:not(.cmt-layout) .element-margin--default:not(.background) + *.background {
  margin-top: var(--tusk-margin-500);
  padding-top: var(--tusk-margin-500);
}
body:not(.cmt-layout) .element-margin--default:not(.background) + *:not(.background) {
  margin-top: var(--tusk-margin-500);
}
body:not(.cmt-layout) .element-margin--medium.background {
  padding-bottom: var(--tusk-margin-600);
}
body:not(.cmt-layout) .element-margin--medium.background + *:not(.background) {
  padding-top: var(--tusk-margin-600);
}
body:not(.cmt-layout) .element-margin--medium.background + .background {
  padding-top: var(--tusk-margin-600);
  margin-top: calc(var(--tusk-margin-600) * -1) !important;
}
body:not(.cmt-layout) .element-margin--medium:not(.background) + *.background {
  margin-top: var(--tusk-margin-600);
  padding-top: var(--tusk-margin-600);
}
body:not(.cmt-layout) .element-margin--medium:not(.background) + *:not(.background) {
  margin-top: var(--tusk-margin-600);
}
body:not(.cmt-layout) .element-margin--large.background {
  padding-bottom: var(--tusk-margin-800);
}
body:not(.cmt-layout) .element-margin--large.background + *:not(.background) {
  padding-top: var(--tusk-margin-800);
}
body:not(.cmt-layout) .element-margin--large.background + .background {
  padding-top: var(--tusk-margin-800);
  margin-top: calc(var(--tusk-margin-800) * -1) !important;
}
body:not(.cmt-layout) .element-margin--large:not(.background) + *.background {
  margin-top: var(--tusk-margin-800);
  padding-top: var(--tusk-margin-800);
}
body:not(.cmt-layout) .element-margin--large:not(.background) + *:not(.background) {
  margin-top: var(--tusk-margin-800);
}
body:not(.cmt-layout) .element-margin--huge.background {
  padding-bottom: var(--tusk-margin-900);
}
body:not(.cmt-layout) .element-margin--huge.background + *:not(.background) {
  padding-top: var(--tusk-margin-900);
}
body:not(.cmt-layout) .element-margin--huge.background + .background {
  padding-top: var(--tusk-margin-900);
  margin-top: calc(var(--tusk-margin-900) * -1) !important;
}
body:not(.cmt-layout) .element-margin--huge:not(.background) + *.background {
  margin-top: var(--tusk-margin-900);
  padding-top: var(--tusk-margin-900);
}
body:not(.cmt-layout) .element-margin--huge:not(.background) + *:not(.background) {
  margin-top: var(--tusk-margin-900);
}
body:not(.cmt-layout) #main .element-margin--default.element-headline + *[class~=element] {
  padding-top: var(--tusk-vertical-unit);
  margin-top: 0;
}
body:not(.cmt-layout) #main .element-margin--default.element-paragraph + .element-paragraph {
  padding-top: var(--tusk-vertical-unit);
  margin-top: 0;
}
body:not(.cmt-layout) #main .element-margin--default.element-paragraph + .element-html {
  padding-top: var(--tusk-vertical-unit);
  margin-top: 0;
}
body:not(.cmt-layout) #main .element-margin--default:not(.background) + .footer-margin {
  margin-top: var(--tusk-margin-800);
}
body:not(.cmt-layout) #main .element-margin--default.background + .footer-margin {
  padding-top: 0;
  margin-top: 0;
}

.footer-margin {
  opacity: 0;
  height: 0;
  background-color: none;
  border: none;
}

*:not(.element) + .footer-margin {
  margin-top: var(--tusk-margin-800);
}

.element-size--fill-screen {
  height: var(--tusk-screen-height);
}
.element-size--fill-screen img, .element-size--fill-screen video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.element-size--half-screen {
  height: calc(var(--tusk-screen-height) / 2);
}
.element-size--half-screen img, .element-size--half-screen video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.element-size--third-screen {
  height: calc(var(--tusk-screen-height) / 3);
}
.element-size--third-screen img, .element-size--third-screen video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.element-size--two-third-screen {
  height: calc(var(--tusk-screen-height) / 3 * 2);
}
.element-size--two-third-screen img, .element-size--two-third-screen video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (min-width: 900px) {
  .element-size--16x9 {
    aspect-ratio: 16/9;
    padding: 0;
  }
}
.element-size--16x9 img, .element-size--16x9 video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (min-width: 900px) {
  .element-size--4x3 {
    aspect-ratio: 4/3;
    padding: 0;
  }
}
.element-size--4x3 img, .element-size--4x3 video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (min-width: 900px) {
  .element-size--1x1 {
    aspect-ratio: 1/1;
    padding: 0;
  }
}
.element-size--1x1 img, .element-size--1x1 video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

body:not(.cmt-layout) .loading-screen {
  position: fixed;
  z-index: 800;
  inset: 0;
  background: var(--tusk-contrast-color-600);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 500ms ease-in-out;
}

.page-has-loaded .loading-screen {
  opacity: 0;
  pointer-events: none;
}
.page-has-loaded .loading-screen__animation {
  animation-play-state: paused;
}

body.is-loading .loading-screen {
  opacity: 1;
  pointer-events: all;
}
body.is-loading .loading-screen__animation {
  animation-play-state: running;
}

@keyframes load-spinner {
  to {
    transform: rotate(1turn);
  }
}
@keyframes load-dots {
  20% {
    background-position: top;
  }
  40% {
    background-position: bottom;
  }
  60% {
    background-position: center;
  }
}
@keyframes load-bars {
  0% {
    background-size: 20% 100%, 20% 100%, 20% 100%;
  }
  33% {
    background-size: 20% 10%, 20% 100%, 20% 100%;
  }
  50% {
    background-size: 20% 100%, 20% 10%, 20% 100%;
  }
  66% {
    background-size: 20% 100%, 20% 100%, 20% 10%;
  }
  100% {
    background-size: 20% 100%, 20% 100%, 20% 100%;
  }
}
.loading-screen__animation {
  width: 120px;
  padding: 1rem;
  background: var(--tusk-primary-color);
  aspect-ratio: 1;
  border-radius: 50%;
  --_m:
  	conic-gradient(#0000, #000),
  	linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--tusk-_m);
  mask: var(--tusk-_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  box-sizing: border-box;
  animation: load-spinner 1s linear infinite;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav__list li {
  position: static;
  padding: 0;
}
.nav__list li::before {
  content: none;
  display: none;
}

.nav--menu {
  border: none;
  color: inherit;
  align-items: center;
  justify-content: center;
  place-self: center;
  place-content: center;
  place-items: center;
  background: none;
  display: grid;
  place-items: center;
  height: auto;
  width: auto;
  max-height: min-content;
}
.nav--menu svg {
  width: calc(var(--tusk-header-height) - var(--tusk-gutter) * 3);
  height: calc(var(--tusk-header-height) - var(--tusk-gutter) * 3);
  fill: currentColor;
}
.nav--menu .cross,
.nav--menu .bars {
  grid-column: 1/1;
  grid-row: 1/1;
  line-height: 0;
  transition: opacity 200ms ease-in-out;
}
.nav--menu .cross {
  opacity: 0;
}
.nav--menu[aria-expanded=true] .cross {
  opacity: 1;
}
.nav--menu[aria-expanded=true] .bars {
  opacity: 0;
}

.subnav {
  display: none;
}

[aria-expanded=true] + .subnav {
  display: flex;
}

@media (max-width: 900px) {
  #main-nav.nav {
    position: fixed;
    right: 0;
    top: var(--tusk-header-height);
    bottom: 0;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 2rem 1rem;
    text-align: right;
    background-color: var(--tusk-background-color);
    box-shadow: -1rem 0 1rem -0.5rem rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }
  #main-nav.nav:not(.nav--open) {
    display: none;
  }
  #main-nav .nav__list {
    font-size: 1.265625rem;
    line-height: 1.224691358em;
    margin-bottom: 0rem;
    flex-flow: column;
    margin: auto;
  }
  #main-nav .subnav {
    margin: 1rem 0;
    padding: 1rem;
    width: calc(100% + 2rem);
    transform: translateX(-1rem);
  }
  #main-nav.nav {
    min-width: max-content;
    width: max(40%, 16rem);
    max-width: 100%;
  }
}
@media (min-width: 900px) {
  .nav {
    position: relative;
  }
  .nav__list {
    align-items: center;
  }
  .nav--menu {
    display: none;
  }
  .mobile-nav__footer,
  .mobile-nav__header {
    display: none;
  }
  .subnav {
    position: absolute;
    bottom: -2rem;
    transform: translate(-1rem, 100%);
    flex-flow: column;
    justify-content: stretch;
    align-items: stretch;
    padding: 0.5rem 0;
    gap: 0;
    border-radius: var(--tusk-border-radius);
  }
  .subnav .nav__item {
    width: 100%;
    padding: 0.5rem 1rem;
  }
  .subnav .nav__item a {
    width: 100%;
  }
}
@media (max-width: 319px) {
  #main-nav.nav {
    width: 100%;
  }
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  place-items: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--tusk-contrast-color);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}
.overlay__wrapper {
  max-width: var(--tusk-outer-bound-width);
}
.overlay__wrapper > *:not(.overlay--target) {
  display: none;
}
.overlay--open {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
.overlay__close {
  cursor: pointer;
  display: block;
  position: absolute;
  z-index: 1000;
  background: none;
  border: none;
  font-size: 1.8020324707rem;
  line-height: 1.2902098257em;
  margin-bottom: 0rem;
  margin: 0;
  right: calc(var(--tusk-outer-bound));
  top: calc(var(--tusk-outer-bound));
  color: inherit;
}
.overlay__close svg {
  display: block;
  height: 1em;
  width: 1em;
  fill: currentColor;
}

.flash-messages {
  position: sticky;
  top: 0;
  z-index: 10;
  font-weight: 800;
}
.flash-messages + * {
  margin-top: 0;
}
.flash-messages .message {
  color: var(--tusk-text-color);
  background-color: skyblue;
  transition: 350ms ease-out;
  transition-property: max-height, opacity;
  max-height: 4rem;
  overflow: hidden;
  max-width: var(--tusk-outer-bound-width);
  margin: auto;
}
.flash-messages .message .icon {
  font-size: 2rem;
}
.flash-messages .message__wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 1rem;
}
.flash-messages .message__dismiss {
  font-size: 1.6018066406rem;
  line-height: 1.451486054em;
  margin-bottom: 0rem;
}
.flash-messages .message--error {
  color: var(--tusk-background-color);
  background-color: red;
}
.flash-messages .message--warning {
  color: var(--tusk-text-color);
  background-color: yellow;
}
.flash-messages .message--success {
  color: var(--tusk-background-color);
  background-color: green;
}
.flash-messages .message--dismissed {
  pointer-events: none;
  max-height: 0;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  inset: 0;
}
.hero__foreground {
  display: flex;
  flex-flow: column;
  height: 100%;
}
.hero img {
  object-position: center;
  object-fit: cover;
  height: 100%;
}
.hero__caption {
  z-index: 1;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: var(--tusk-margin-600);
  padding-bottom: var(--tusk-margin-600);
}
@media (min-width: 900px) {
  .hero__caption {
    width: 50%;
    margin: auto auto auto 12.5%;
  }
}
@media (min-width: 1200px) {
  .hero__caption {
    width: 64ch;
  }
}

.media-object {
  display: flex;
  gap: 2rem;
}
.media-object > :first-child {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 50%;
}
.media-object > :last-child {
  flex-basis: 50%;
  flex-shrink: 1;
  flex-grow: 1;
}
@media (max-width: 900px) {
  .media-object {
    flex-flow: column;
    gap: 1rem;
  }
}
@media (min-width: 900px) {
  .media-object--inverted {
    flex-direction: row-reverse;
  }
}
.media-object__image--fill-height {
  align-self: stretch;
  width: auto;
  height: auto;
}
.media-object__image--fill-height img, .media-object__image--fill-height video {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.media-object__image--fill-screen img, .media-object__image--fill-screen video {
  height: var(--tusk-screen-height);
  object-fit: cover;
  object-position: center;
}

.full-width.media-object .body-text > * {
  max-width: calc(var(--tusk-outer-bound-width) / 2);
  padding-right: 1rem;
}
.full-width.media-object--inverted .body-text > * {
  padding-left: 1rem;
  padding-right: 0;
}
@media (min-width: 900px) {
  .full-width.media-object--inverted .body-text > * {
    margin-left: auto;
  }
}

.quote {
  display: flex;
  flex-flow: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-top: var(--tusk-margin-800);
  padding-bottom: var(--tusk-margin-800);
}
.quote[style*=custom-background] {
  background-image: var(--tusk-custom-background);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--tusk-contrast-color);
}
.quote__block {
  margin-bottom: 0;
  font-size: 1.6018066406rem;
  line-height: 1.451486054em;
  margin-bottom: 0rem;
  font-weight: 600;
}
@media (min-width: 600px) {
  .quote__block {
    word-break: keep-all;
  }
}
.quote__author {
  font-size: 1.265625rem;
  line-height: 1.224691358em;
  margin-bottom: 0rem;
  font-weight: 800;
}
.quote__figure, .quote__figcaption {
  padding: 0 var(--tusk-gutter);
}
.quote > * + * {
  margin-top: var(--tusk-margin-400);
}

.splide__track, .splide__list, .splide__slide, .splide figure {
  height: 100%;
}
.splide img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.splide ul {
  list-style: none;
}
.splide ul li {
  position: static;
  padding: 0;
}
.splide ul li::before {
  content: none;
  display: none;
}

.slide__figure {
  position: relative;
}
.slide__caption {
  position: absolute;
  bottom: var(--tusk-margin-400);
  left: var(--tusk-margin-300);
  right: var(--tusk-margin-300);
  font-size: 1.6018066406rem;
  line-height: 1.451486054em;
  margin-bottom: 0rem;
  font-weight: 600;
  color: var(--tusk-background-color);
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--tusk-margin-300);
}

.tile {
  position: relative;
}
.tile img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tile__caption {
  position: absolute;
  bottom: var(--tusk-margin-200);
  left: var(--tusk-margin-300);
  right: var(--tusk-margin-300);
  font-size: 1.265625rem;
  line-height: 1.224691358em;
  margin-bottom: 0rem;
  font-weight: 600;
  color: var(--tusk-background-color);
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.expander .body-text {
  margin-top: var(--tusk-margin-300);
}

.cards {
  display: flex;
  flex-flow: row;
  gap: var(--tusk-margin-400);
}

.card {
  flex: 1 1 0;
}

.light-box {
  overflow: hidden;
}
.light-box figure {
  height: 100%;
  width: 100%;
}
.light-box img,
.light-box video {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
  max-height: 80vh;
}
.light-box figure {
  transition: 500ms ease-out;
  transform-origin: center;
  opacity: 0;
  transform: translateY(-10%);
}
.light-box--active {
  z-index: 10;
  opacity: 1;
}
.light-box--active figure {
  opacity: 1;
  transform: translateY(0);
}

.light-box__controlls {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.265625rem;
  line-height: 1.224691358em;
  margin-bottom: 0rem;
  font-variant-numeric: tabular-nums;
}
.light-box__controlls button {
  cursor: pointer;
  display: block;
  border: none;
  background: none;
  color: inherit;
}
.light-box__controlls svg {
  display: block;
  height: 2em;
  width: 2em;
  fill: currentColor;
}
.light-box__controlls .light-box--total::after {
  content: " | ";
}

.map .mapboxgl-marker svg path {
  fill: var(--tusk-primary-color, blue) !important;
}

body {
  display: grid;
  grid-template-columns: 100%;
}

.frame {
  display: flex;
}
.frame__sidebar {
  flex: 0 0 auto;
  display: flex;
  background-color: var(--tusk-contrast-color-400);
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  max-height: 100vh;
  position: relative;
  z-index: 800;
  overflow-y: auto;
  overflow-x: hidden;
}
.frame__sidebar .logo {
  margin: 6rem 3rem;
  margin-bottom: 2rem;
}
.frame__sidebar > *:last-child {
  margin-top: auto;
  margin-bottom: 1rem;
}
.frame__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: auto;
  max-height: 100vh;
  position: relative;
}

.nav-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-block__label {
  padding: 0 2rem;
  font-weight: 600;
  font-size: 0.8888888889rem;
  line-height: 1.74375em;
  margin-bottom: 0rem;
  color: var(--tusk-background-color-300);
}
.nav-block__list {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
}
.nav-block__item a, .nav-block__item summary {
  background-color: transparent;
  border-color: transparent;
  color: var(--tusk-text-color);
  width: 100%;
  padding: 0.75rem 2rem;
  line-height: 1;
  font-weight: 600;
}
.nav-block__item a[aria-current]:hover, .nav-block__item summary[aria-current]:hover {
  color: var(--tusk-text-color);
}
.nav-block__item a:hover, .nav-block__item summary:hover {
  border-color: transparent;
}
.nav-block__item a[aria-current] {
  background-color: var(--tusk-primary-color);
}
.nav-block__item summary[aria-current] {
  background-color: var(--tusk-primary-color-200);
}
.nav-block__item summary::after {
  content: "▼";
  display: block;
  margin-left: auto;
  align-self: center;
  font-size: 0.7em;
}
.nav-block__item details[open] ul {
  border-left: solid var(--tusk-primary-color-200) 1rem;
  list-style: none;
}
.nav-block__item details[open] li::marker {
  color: transparent;
}
.nav-block__item details[open] summary {
  background-color: var(--tusk-primary-color-200);
  color: var(--tusk-text-color);
}
.nav-block__item details[open] summary::after {
  transform: rotate(180deg);
}
.nav-block__item .button--icon {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.75em;
}
.nav-block__item .button--icon svg {
  height: 1.2em;
  width: auto;
  margin-top: 0.2%;
  margin-bottom: -0.2%;
}

.login {
  background-color: var(--tusk-text-color);
}
.login .main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login .login-logo svg {
  width: 100%;
  height: auto;
}

.pages .page-list {
  list-style: none;
}
.pages .page-list .page-item {
  padding: 0.5rem 0 0 1rem;
  background-color: var(--tusk-contrast-color);
}
.pages .page-list .page-item__body {
  display: flex;
  justify-content: space-between;
}
.pages .page-list .page-item .page-item {
  margin-left: 1rem;
}
.pages .page-list li:nth-of-type(2n - 1) {
  background-color: var(--tusk-primary-color-200);
}
.pages .page-list li:nth-of-type(2n - 1) li:nth-of-type(2n - 1) {
  background-color: var(--tusk-contrast-color);
}
.pages .page-list li:nth-of-type(2n - 1) li:nth-of-type(2n - 1) li:nth-of-type(2n - 1) {
  background-color: var(--tusk-primary-color-200);
}
.pages .page-list li:nth-of-type(2n - 1) li:nth-of-type(2n - 1) li:nth-of-type(2n - 1) li:nth-of-type(2n - 1) {
  background-color: var(--tusk-contrast-color);
}
.pages .page-list li:nth-of-type(2n - 1) li:nth-of-type(2n - 1) li:nth-of-type(2n - 1) li:nth-of-type(2n - 1) li:nth-of-type(2n - 1) {
  background-color: var(--tusk-primary-color-200);
}
.pages .page-list ul {
  list-style: none;
}

.layout-element {
  border: solid 4px var(--tusk-primary-color) !important;
}

#close-modal {
  background-color: unset;
  border: none;
  display: block;
  height: 2rem;
  padding: 0.4rem;
  color: currentColor;
}
#close-modal svg {
  fill: currentColor;
  display: block;
  width: auto;
  height: 1rem;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  min-width: 42rem;
  max-width: 100vw;
  resize: both;
  overflow: auto;
  border-radius: 0.25rem;
  border: none;
}
.modal::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  background-color: black;
  color: #FFF;
  padding-left: 0.5rem;
  font-weight: 600;
}
.modal-main {
  padding: 1rem;
  justify-self: stretch;
  align-self: stretch;
}
.modal-form {
  display: grid;
  gap: 2rem;
}
.modal-form legend {
  display: none;
}

.main-header {
  background-color: var(--tusk-text-color);
  color: var(--tusk-contrast-color);
  padding: 1rem;
  display: flex;
}
.main-header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#main-nav {
  transition: transform 250ms ease-in-out;
}
@media (max-width: 1200px) {
  #main-nav {
    transform: translateX(-100%);
    position: absolute;
    top: 0;
    bottom: 0;
  }
  #main-nav.nav--open {
    transform: translateX(0);
  }
}

#menu-button {
  position: relative;
}
@media (min-width: 1200px) {
  #menu-button {
    display: none;
  }
}
#menu-button .icon {
  position: absolute;
  right: 0;
}
#menu-button .cross {
  opacity: 0;
}

.mobile-nav-is-open #menu-button .cross {
  opacity: 1;
}
.mobile-nav-is-open #menu-button .menu {
  opacity: 0;
}

#home:focus {
  filter: brightness(0.8);
}

/**
 * main.scss
 */
/*# sourceMappingURL=main.css.map */