@charset "UTF-8";

/* scss/app.scss */
:root {
  --color-primary-50: rgb(242, 246, 249);
  --color-primary-100: rgb(159, 180, 198);
  --color-primary-200: rgb(102, 153, 255);
  --color-primary-300: rgb(61, 102, 184);
  --color-primary-400: rgb(45, 53, 96);
  --color-primary-500: rgb(0, 50, 82);
  --color-primary-700: rgb(5, 28, 63);
  --color-primary-900: rgb(1, 38, 58);
  --color-neutral-0: rgb(254, 254, 254);
  --color-neutral-50: rgb(253, 247, 248);
  --color-neutral-100: rgb(248, 248, 248);
  --color-neutral-200: rgb(218, 225, 235);
  --color-neutral-300: rgb(212, 217, 220);
  --color-neutral-900: rgb(10, 10, 10);
  --color-secondary-50: rgb(0, 147, 60);
  --text-primary: var(--color-primary-500);
  --text-secondary: var(--color-secondary-500);
  --text-accent: var(--color-accent-500);
  --text-light: var(--color-neutral-0);
  --text-dark: var(--color-neutral-900);
  --svg-primary: var(--color-primary-500);
  --svg-default: var(--color-neutral-0);
  --heading-primary: var(--color-primary-500);
  --heading-secondary: var(--color-secondary-500);
  --heading-accent: var(--color-accent-500);
  --heading-light: var(--color-neutral-0);
  --heading-dark: var(--color-neutral-900);
  --surface-page: var(--color-primary-50);
  --surface-login: var(--color-primary-500);
  --surface-left: var(--color-primary-500);
  --surface-dark: var(--color-primary-900);
  --surface-light: var(--color-primary-100);
  --surface-modal: var(--color-neutral-0);
  --surface-white: var(--color-neutral-0);
  --border-primary: var(--color-neutral-100);
  --border-secondary: var(--color-primary-400);
  --border-light: var(--color-neutral-100);
  --border-accent: var(--color-accent-500);
  --surface-login-card: var(--color-primary-900);
  --nav-surface: var(--color-neutral-0);
  --nav-surface-active: var(--color-primary-300);
  --nav-text: var(--color-neutral-0);
  --nav-text-hover: var(--color-neutral-0);
  --nav-text-active: var(--color-neutral-0);
  --nav-mobile-text: var(--color-neutral-0);
  --nav-mobile-hover: var(--color-accent-500);
  --nav-mobile-active: var(--color-neutral-0);
  --nav-burger-color: var(--color-neutral-0);
  --nav-burger-hover: var(--color-primary-200);
  --dropdown-surface: var(--color-secondary-500);
  --dropdown-text: var(--color-neutral-0);
  --dropdown-text-hover: var(--color-accent-500);
  --header-surface: var(--color-neutral-0);
  --header-border: rgb(248, 200, 208);
  --header-icon: var(--color-secondary-500);
  --footer-surface: var(--color-neutral-50);
  --footer-text: var(--color-primary-700);
  --link-default: var(--color-primary-300);
  --link-hover: var(--color-primary-500);
  --link-active: var(--color-primary-300);
  --button-primary-surface: var(--color-primary-300);
  --button-primary-surface-hover: var(--color-primary-500);
  --button-primary-text: var(--color-neutral-0);
  --button-radius: 8px;
  --button-padding-top: 10px;
  --button-padding-bottom: 12px;
  --button-padding-left: 20px;
  --button-padding-right: 20px;
  --form-border-color: var(--color-neutral-200);
  --form-label-color: var(--color-primary-500);
  --list-surface: var(--color-neutral-0);
  --list-border: var(--color-accent-500);
  --list-sector-surface: rgb(248, 200, 208);
  --pagination-text: var(--color-primary-500);
  --pagination-text-active: var(--color-neutral-0);
  --pagination-text-hover: var(--color-neutral-0);
  --pagination-surface: var(--color-neutral-0);
  --pagination-surface-active: var(--color-primary-300);
  --modal-close: var(--color-primary-300);
  --tab-text: var(--color-primary-500);
  --tab-text-active: var(--color-primary-300);
  --tab-surface-hover: transparent;
  --tab-surface-content: var(--color-neutral-0);
  --tab-border-active: var(--color-primary-300);
}
:root {
  --width-xs: 20rem;
  --width-sm: 30rem;
  --width-md: 45rem;
  --width-lg: 60rem;
  --width-xl: 75rem;
  --width-2xl: 90rem;
  --width-login: 70.625rem;
}
.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 38px;
  line-height: 36px;
  outline: none;
  padding-left: 1rem;
  padding-right: 13rem;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: rgb(219.25, 219.25, 219.25);
}
.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  transform: rotate(-135deg);
}
.nice-select.open .nice-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: rgb(237.1, 237.1, 237.1);
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .nice-select-dropdown {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .nice-select-dropdown {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .nice-select-dropdown {
  margin-top: 4px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(19px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  opacity: 0;
}
.nice-select .list {
  border-radius: 5px;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  max-height: 210px;
  overflow-y: auto;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  outline: none;
  padding-left: 1rem;
  padding-right: 12rem;
  text-align: left;
  transition: all 0.2s;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.nice-select .extra {
  float: right;
}
.nice-select .optgroup {
  font-weight: bold;
}
.no-csspointerevents .nice-select .nice-select-dropdown {
  display: none;
}
.no-csspointerevents .nice-select.open .nice-select-dropdown {
  display: block;
}
.nice-select .list::-webkit-scrollbar {
  width: 0;
}
.nice-select .has-multiple {
  white-space: inherit;
  height: auto;
  padding: 7px 12px;
  min-height: 36px;
  line-height: 22px;
}
.nice-select .has-multiple span.current {
  border: 1px solid #CCC;
  background: #EEE;
  padding: 0 10px;
  border-radius: 3px;
  display: inline-block;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 3px;
  margin-right: 3px;
}
.nice-select .has-multiple .multiple-options {
  display: block;
  line-height: 24px;
  padding: 0;
}
.nice-select .nice-select-search-box {
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
  pointer-events: none;
  border-radius: 5px 5px 0 0;
}
.nice-select .nice-select-search {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  color: #444;
  display: inline-block;
  vertical-align: middle;
  padding: 7px 12px;
  margin: 0 10px 0 0;
  width: 100%;
  min-height: 36px;
  line-height: 22px;
  height: auto;
  outline: 0 !important;
  font-size: 14px;
}
@font-face {
  font-family: "Libre Franklin";
  src: url(../../files/theme/fonts/libre-franklin/LibreFranklin-Regular.woff2) format("woff2"), url(../../files/theme/fonts/libre-franklin/LibreFranklin-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Libre Franklin";
  src: url(../../files/theme/fonts/libre-franklin/LibreFranklin-Medium.woff2) format("woff2"), url(../../files/theme/fonts/libre-franklin/LibreFranklin-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Libre Franklin";
  src: url(../../files/theme/fonts/libre-franklin/LibreFranklin-SemiBold.woff2) format("woff2"), url(../../files/theme/fonts/libre-franklin/LibreFranklin-SemiBold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Libre Franklin";
  src: url(../../files/theme/fonts/libre-franklin/LibreFranklin-Bold.woff2) format("woff2"), url(../../files/theme/fonts/libre-franklin/LibreFranklin-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: 0;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
[data-whatintent=mouse] *,
[data-whatintent=mouse] *:focus,
[data-whatintent=touch] *,
[data-whatintent=touch] *:focus,
[data-whatinput=mouse] *,
[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *,
[data-whatinput=touch] *:focus {
  outline: none;
}
[draggable=false] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
.foundation-mq {
  font-family: "small=0em&medium=47.5em&large=62em&xlarge=75em";
}
html {
  box-sizing: border-box;
  font-size: 1rem;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: var(--surface-page);
  font-family:
    "Libre Franklin",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    "Noto Sans",
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}
select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}
button {
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput=mouse] button {
  outline: 0;
}
pre {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}
.is-visible {
  display: block !important;
}
.is-hidden {
  display: none !important;
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}
em,
i {
  font-style: italic;
  line-height: inherit;
}
strong,
b {
  font-weight: bold;
  line-height: inherit;
}
small {
  font-size: 80%;
  line-height: inherit;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family:
    "Libre Franklin",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    "Noto Sans",
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  font-style: normal;
  font-weight: normal;
  color: var(--headline-primary);
  text-rendering: optimizeLegibility;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small {
  line-height: 0;
  color: #cacaca;
}
h1,
.h1 {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
}
h2,
.h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
}
h3,
.h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
}
h4,
.h4 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
}
h5,
.h5 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
}
h6,
.h6 {
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 47.5em) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
  h2,
  .h2 {
    font-size: 1.75rem;
  }
  h3,
  .h3 {
    font-size: 1.75rem;
  }
  h4,
  .h4 {
    font-size: 1.375rem;
  }
  h5,
  .h5 {
    font-size: 1.375rem;
  }
  h6,
  .h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: var(--link-default);
  text-decoration: none;
  cursor: pointer;
}
a:hover,
a:focus {
  color: var(--link-hover);
}
a img {
  border: 0;
}
hr {
  clear: both;
  max-width: 200rem;
  height: 0;
  margin: 0 auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}
ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}
li {
  font-size: inherit;
}
ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}
ol {
  margin-left: 1.25rem;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}
blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}
blockquote,
blockquote p {
  line-height: 1.4;
  color: #8a8a8a;
}
abbr,
abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none;
}
figure {
  margin: 0;
}
kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family:
    Consolas,
    "Liberation Mono",
    Courier,
    monospace;
  color: #0a0a0a;
}
a {
  display: inline-block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  width: inherit;
  font-weight: 600;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
h1 {
  line-height: 1.3;
}
hr {
  border: none;
  margin-top: 2.8125rem;
  height: 0.0625rem;
  width: 90%;
}
strong {
  font-weight: 600;
}
svg {
  fill: var(--svg-default);
}
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
header,
main,
footer {
  display: table-row;
  height: 1px;
}
html,
body {
  height: 100%;
  max-width: 200rem;
  margin-left: auto;
  margin-right: auto;
}
main {
  height: 100%;
}
main {
  position: relative;
  z-index: 1;
}
body:before {
  content: "small";
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  left: 0;
}
@media screen and (min-width: 31.25em) {
  body:before {
    content: "medium";
  }
}
@media print, screen and (min-width: 62em) {
  body:before {
    content: "large";
  }
}
[type=text],
[type=password],
[type=date],
[type=datetime],
[type=datetime-local],
[type=month],
[type=week],
[type=email],
[type=number],
[type=search],
[type=tel],
[type=time],
[type=url],
[type=color],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid var(--form-border-color);
  border-radius: 8px;
  background-color: #fefefe;
  box-shadow: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
[type=text]:focus,
[type=password]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=month]:focus,
[type=week]:focus,
[type=email]:focus,
[type=number]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=time]:focus,
[type=url]:focus,
[type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 8px rgb(218, 225, 235);
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}
input:disabled,
input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
[type=submit],
[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: var(--button-radius);
}
input[type=search] {
  box-sizing: border-box;
}
::-moz-placeholder {
  color: rgb(138, 161, 182);
}
::placeholder {
  color: rgb(138, 161, 182);
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}
.fieldset {
  margin: 1.25rem 0;
  padding: 0;
  border: none;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}
[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1rem;
}
[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}
label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.5rem;
}
[type=file] {
  width: 100%;
}
label {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--form-label-color);
}
label.middle {
  margin: 0 0 1rem;
  line-height: 1.2;
  padding: 0.5625rem 0;
}
select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--form-border-color);
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
}
@media screen and (min-width: 0\fffd) {
  select {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==);
  }
}
select:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 8px rgb(218, 225, 235);
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}
select,
input,
.submit {
  border-radius: var(--button-radius);
}
[type=file] {
  border-radius: 0;
}
.card {
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.625rem;
  background: var(--surface-white);
  box-shadow: 0 3px 10px var(--color-neutral-200);
  overflow: hidden;
  color: var(--text-primary);
}
.card > :last-child {
  margin-bottom: 0;
}
.card-divider {
  padding: 0.9375rem 0.9375rem;
  background: var(--surface-white);
}
.card-divider > :last-child {
  margin-bottom: 0;
}
.card-section {
  padding: 0.9375rem 0.9375rem;
}
.card-section > :last-child {
  margin-bottom: 0;
}
.card-image {
  min-height: 1px;
}
.card {
  position: relative;
  min-width: 0;
  max-width: 100%;
}
.card-divider {
  padding: 0.9375rem 0.9375rem 0;
}
.switch {
  position: relative;
  margin-bottom: 0;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fefefe;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  height: 1.75rem;
}
.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}
.switch-paddle {
  position: relative;
  display: block;
  width: 3.5rem;
  height: 1.75rem;
  border-radius: 0.875rem;
  background: rgb(138, 161, 182);
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  transform: translate3d(0, 0, 0);
  border-radius: 1.25rem;
  background: #fefefe;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: var(--color-secondary-50);
}
input:checked ~ .switch-paddle::after {
  left: 2rem;
}
input:focus-visible ~ .switch-paddle {
  background: rgb(118.2947368421, 145.1684210526, 169.7052631579);
}
input:focus-visible ~ .switch-paddle::after {
  background: #fefefe;
}
input:checked:focus-visible ~ .switch-paddle {
  background: rgb(19.55, 102.85, 158.1);
}
input:disabled ~ .switch-paddle {
  cursor: not-allowed;
  opacity: 0.5;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}
.switch-inactive,
.switch-active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}
.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}
.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}
.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}
.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}
.switch.large .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}
#wrapper.wrapper--login {
  display: table;
  width: 100%;
  height: 100%;
  overflow: visible;
  table-layout: fixed;
}
#wrapper.wrapper--member {
  display: grid;
  grid-template-columns: 15.3125rem 1fr;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  position: relative;
}
#wrapper.wrapper--member > .c-left {
  grid-row: 1/4;
  grid-column: 1;
  z-index: 100;
  transition: width 0.3s ease;
}
@media print, screen and (min-width: 47.5em) {
  #wrapper.wrapper--member > .c-left {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
#wrapper.wrapper--member > .c-header {
  grid-row: 1;
  grid-column: 2;
}
#wrapper.wrapper--member > .c-main {
  grid-row: 2;
  grid-column: 2;
}
@media print, screen and (min-width: 62em) {
  #wrapper.wrapper--member > .c-main {
    margin-left: 1.875rem;
    max-width: 112.5rem;
  }
}
#wrapper.wrapper--member > .c-footer {
  grid-row: 3;
  grid-column: 2;
}
@media print, screen and (max-width: 47.49875em) {
  #wrapper.wrapper--member {
    display: block;
  }
  #wrapper.wrapper--member > .c-left {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 16.25rem;
    transform: translateX(-100%);
    z-index: 1000;
  }
}
.nav-collapsed #wrapper.wrapper--member {
  grid-template-columns: 3.75rem 1fr;
}
.nav-collapsed #wrapper.wrapper--member > .c-header,
.nav-collapsed #wrapper.wrapper--member > .c-main,
.nav-collapsed #wrapper.wrapper--member > .c-footer {
  grid-column: 2/-1;
}
.grid-container {
  grid-template-columns: repeat(12, [col-start] 1fr);
  max-width: 200rem;
  width: 100%;
  display: grid;
  grid-auto-flow: dense;
  margin: 0 auto;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media print, screen and (min-width: 47.5em) {
  .grid-container {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
.grid-container > * {
  grid-column-end: span 12;
  display: flex;
  flex-direction: column;
}
.main .grid-container > * {
  position: relative;
}
.grid-container script {
  display: none !important;
}
.grid-container .grid-container {
  padding-left: 0;
  padding-right: 0;
}
.grid-x {
  grid-gap: 0.625rem 0;
}
@media screen and (min-width: 31.25em) {
  .grid-x {
    grid-gap: 0.9375rem;
  }
}
@media print, screen and (min-width: 47.5em) {
  .grid-x {
    row-gap: 0;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
  }
}
@media print, screen and (min-width: 47.5em) {
  .grid-y {
    row-gap: 1.875rem;
  }
}
.cell {
  display: grid;
  height: -moz-fit-content;
  height: fit-content;
}
.small-1 {
  grid-column-end: span 1;
}
.small-2 {
  grid-column-end: span 2;
}
.small-3 {
  grid-column-end: span 3;
}
.small-4 {
  grid-column-end: span 4;
}
.small-5 {
  grid-column-end: span 5;
}
.small-6 {
  grid-column-end: span 6;
}
.small-7 {
  grid-column-end: span 7;
}
.small-8 {
  grid-column-end: span 8;
}
.small-9 {
  grid-column-end: span 9;
}
.small-10 {
  grid-column-end: span 10;
}
.small-11 {
  grid-column-end: span 11;
}
.small-12 {
  grid-column-end: span 12;
}
@media print, screen and (min-width: 47.5em) {
  .medium-1 {
    grid-column-end: span 1;
  }
  .medium-2 {
    grid-column-end: span 2;
  }
  .medium-3 {
    grid-column-end: span 3;
  }
  .medium-4 {
    grid-column-end: span 4;
  }
  .medium-5 {
    grid-column-end: span 5;
  }
  .medium-6 {
    grid-column-end: span 6;
  }
  .medium-7 {
    grid-column-end: span 7;
  }
  .medium-8 {
    grid-column-end: span 8;
  }
  .medium-9 {
    grid-column-end: span 9;
  }
  .medium-10 {
    grid-column-end: span 10;
  }
  .medium-11 {
    grid-column-end: span 11;
  }
  .medium-12 {
    grid-column-end: span 12;
  }
}
@media print, screen and (min-width: 62em) {
  .large {
  }
  .large-1 {
    grid-column-end: span 1;
  }
  .large-2 {
    grid-column-end: span 2;
  }
  .large-3 {
    grid-column-end: span 3;
  }
  .large-4 {
    grid-column-end: span 4;
  }
  .large-5 {
    grid-column-end: span 5;
  }
  .large-6 {
    grid-column-end: span 6;
  }
  .large-7 {
    grid-column-end: span 7;
  }
  .large-8 {
    grid-column-end: span 8;
  }
  .large-9 {
    grid-column-end: span 9;
  }
  .large-10 {
    grid-column-end: span 10;
  }
  .large-11 {
    grid-column-end: span 11;
  }
  .large-12 {
    grid-column-end: span 12;
  }
  .large-offset-1 {
    margin-left: calc(8.3333333333% * 1);
  }
  .large-offset-2 {
    margin-left: calc(8.3333333333% * 2);
  }
  .large-offset-3 {
    margin-left: calc(8.3333333333% * 3);
  }
  .large-offset-4 {
    margin-left: calc(8.3333333333% * 4);
  }
  .large-offset-5 {
    margin-left: calc(8.3333333333% * 5);
  }
  .large-offset-6 {
    margin-left: calc(8.3333333333% * 6);
  }
  .large-offset-7 {
    margin-left: calc(8.3333333333% * 7);
  }
  .large-offset-8 {
    margin-left: calc(8.3333333333% * 8);
  }
  .large-offset-9 {
    margin-left: calc(8.3333333333% * 9);
  }
  .large-offset-10 {
    margin-left: calc(8.3333333333% * 10);
  }
  .large-offset-11 {
    margin-left: calc(8.3333333333% * 11);
  }
}
.block-grid {
  display: grid;
  grid-template-columns: inherit;
  grid-gap: 0.625rem 0;
  grid-auto-flow: inherit;
}
@media screen and (min-width: 31.25em) {
  .block-grid {
    grid-gap: 0.9375rem;
  }
}
@media print, screen and (min-width: 47.5em) {
  .block-grid {
    grid-gap: 1.875rem 1.875rem;
  }
  .block-grid.gap--large {
    grid-gap: 1.875rem 2.8125rem;
  }
}
@media print, screen and (min-width: 62em) {
  .block-grid.gap--large {
    grid-gap: 1.875rem 3.75rem;
  }
}
.block-grid > * {
  grid-column-end: span 12;
  grid-row-end: span 1;
  position: relative;
}
@media screen and (min-width: 40.625em) {
  .block-grid > * {
    grid-column-end: span 6;
    grid-row-end: span 1;
  }
}
@media print, screen and (min-width: 62em) {
  .block-grid > * {
    grid-column-end: span 3;
    grid-row-end: span 1;
  }
}
.block-grid.small-up-2 > * {
  grid-column-end: span 6;
}
@media print, screen and (min-width: 47.5em) {
  .block-grid.medium-up-2 > * {
    grid-column-end: span 6;
  }
  .block-grid.medium-up-3 > * {
    grid-column-end: span 4;
  }
  .block-grid.medium-up-4 > * {
    grid-column-end: span 3;
  }
}
@media print, screen and (min-width: 62em) {
  .block-grid.large-up-2 > * {
    grid-column-end: span 6;
  }
  .block-grid.large-up-3 > * {
    grid-column-end: span 4;
  }
  .block-grid.large-up-4 > * {
    grid-column-end: span 3;
  }
  .block-grid.large-up-5 > * {
    grid-column-end: span 2;
  }
}
.block-grid--2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(26.25rem, 1fr));
  row-gap: 0.3125rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}
@media screen and (min-width: 23.125em) {
  .block-grid--2 {
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  }
}
@media print, screen and (min-width: 47.5em) {
  .block-grid--2 {
    row-gap: 0.9375rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
  }
}
@media print, screen and (min-width: 62em) {
  .block-grid--2 {
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  }
}
@media screen and (min-width: 87.5em) {
  .block-grid--2 {
    grid-template-columns: 1.3fr 1fr;
  }
}
.block-grid--3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  row-gap: 0.3125rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}
@media screen and (min-width: 23.125em) {
  .block-grid--3 {
    grid-template-columns: repeat(auto-fill, minmax(21.875rem, 1fr));
  }
}
@media print, screen and (min-width: 47.5em) {
  .block-grid--3 {
    row-gap: 0.9375rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
  }
}
@media print, screen and (min-width: 62em) {
  .block-grid--3 {
    grid-template-columns: repeat(auto-fill, minmax(26.875rem, 1fr));
  }
}
.block-grid--6 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.375rem, 1fr));
  row-gap: 0.3125rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}
@media screen and (min-width: 23.125em) {
  .block-grid--6 {
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  }
}
@media print, screen and (min-width: 47.5em) {
  .block-grid--6 {
    row-gap: 0.9375rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
  }
}
@media print, screen and (min-width: 62em) {
  .block-grid--6 {
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  }
}
.ce_form .block-grid {
  row-gap: 0;
}
.flex-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2rem;
}
.flex-container--50 > * {
  flex: 1 1 50%;
  max-width: 50%;
}
.o-hyperlink--hidden {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}
.content-image {
  display: block;
  position: relative;
  overflow: hidden;
  width: initial;
  height: 100%;
}
.media.grid-x {
  grid-template-columns: repeat(12, [col-start] 1fr);
  display: grid;
}
.media--left > .cell:nth-child(1) {
  order: 2;
}
.media--left > .cell:nth-child(2) {
  order: 1;
}
.media--above figure {
  margin-bottom: 1.875rem;
}
.media--below {
  margin-top: 0.9375rem;
}
.content-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.content-player > iframe,
.content-player > object,
.content-player > embed,
.content-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2000;
  border: none;
  -o-object-fit: cover;
  object-fit: cover;
}
.tabs {
  margin: 0;
  border: 1px solid none;
  background: transparent;
  list-style-type: none;
}
.tabs::before,
.tabs::after {
  display: table;
  content: " ";
}
.tabs::after {
  clear: both;
}
.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}
.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}
.tabs.primary {
  background: #1779ba;
}
.tabs.primary > li > a {
  color: #fefefe;
}
.tabs.primary > li > a:hover,
.tabs.primary > li > a:focus {
  background: rgb(21.85, 114.95, 176.7);
}
.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1;
  color: #1779ba;
}
[data-whatinput=mouse] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: var(--tab-surface-hover);
  color: rgb(19.78, 104.06, 159.96);
}
.tabs-title > a:focus,
.tabs-title > a[aria-selected=true] {
  background: transparent;
  color: var(--tab-text-active);
}
.tabs-content {
  border: 1px solid none;
  border-top: 0;
  background: transparent;
  color: var(--text-primary);
  transition: all 0.5s ease;
}
.tabs-content.vertical {
  border: 1px solid none;
  border-left: 0;
}
.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}
.tabs {
  border: none;
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  width: auto;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}
.tabs-title {
  width: auto;
  margin-bottom: 0.625rem;
  margin-right: 0.625rem;
  flex: 0 1 auto;
  display: flex;
}
.tabs-title:last-child {
  margin-right: 0;
}
.tabs-title > label {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 3rem;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  border: 1px solid var(--tab-border-active);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--tab-surface-hover);
}
[data-whatinput=mouse] .tabs-title > label {
  outline: 0;
}
.tabs-title > label:hover,
.tabs-title > label:focus {
  background-color: var(--button-primary-surface);
  color: var(--button-primary-text);
}
.tabs-title.is-active > label {
  background-color: var(--button-primary-surface);
  color: var(--button-primary-text);
}
.tabs-content {
  margin-top: 0;
}
@media print, screen and (min-width: 47.5em) {
  .tabs-content {
    margin-top: 1.875rem;
  }
}
.tabs-panel {
  display: none;
  padding: 0;
  position: relative;
}
.tabs-panel__radio {
  display: none;
}
.tabs-panel__radio:checked + .tabs-panel {
  display: grid;
}
.tabs-content:not(:has(.tabs-panel__radio:checked)) .tabs-panel:first-of-type {
  display: grid;
}
@media print, screen and (min-width: 47.5em) {
  .tabs {
    flex-direction: row !important;
    flex-wrap: wrap;
  }
  .tabs-title {
    width: auto;
    margin-bottom: 0;
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }
  .tabs-title > label {
    background: transparent;
    border: none;
    border-bottom: 4px solid transparent;
    border-radius: 0;
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
    min-height: auto;
  }
  .tabs-title > label:hover,
  .tabs-title > label:focus {
    background: transparent;
    border-bottom-color: var(--tab-border-active);
    color: var(--tab-text-active);
  }
  .tabs-title.is-active > label {
    background: transparent;
    border-bottom-color: var(--tab-border-active);
    color: var(--tab-text-active);
  }
}
.c-button,
.ce_buttonHyperlink a,
.widget-submit button {
  display: inline-block;
  background-color: var(--button-primary-surface);
  color: var(--button-primary-text);
  border-radius: var(--button-radius);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  padding: var(--button-padding-top) var(--button-padding-right) var(--button-padding-bottom) var(--button-padding-left);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.c-button:hover,
.ce_buttonHyperlink a:hover,
.widget-submit button:hover {
  background-color: var(--button-primary-surface-hover);
  color: var(--button-primary-text);
}
.c-button--full,
.widget-submit button {
  width: 100%;
  text-align: center;
}
.c-button--small {
  padding: 0.625rem 0.9375rem;
  width: -moz-fit-content;
  width: fit-content;
}
.c-button--large {
  padding: 1.5625rem 2.5rem;
  font-size: 1.125rem;
}
.c-button--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.c-button--inline {
  display: inline-flex;
}
.c-button--cancel {
  background-color: var(--color-primary-50);
  color: var(--color-primary-300);
  border: 1px solid var(--color-primary-300);
}
.c-button--icon {
  cursor: pointer;
}
.c-button--label [type=checkbox] {
  display: none !important;
}
.c-button--label label {
  background-color: var(--button-primary-surface);
  font-weight: 400;
  color: var(--button-primary-text);
  border-radius: var(--button-radius);
  margin: 0.625rem 0;
  margin-left: 0 !important;
  padding: 0.1875rem 1.25rem 0.375rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  min-width: 18.75rem;
  text-align: center;
  font-weight: 400;
}
.content-text {
  position: relative;
}
.c-login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 47.5em) {
  .c-login {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
.c-login .grid-container {
  align-content: center;
  background-color: var(--surface-login-card);
  padding: 0.625rem;
  height: 100%;
}
@media screen and (min-width: 34.375em) {
  .c-login .grid-container {
    border-radius: 2rem;
    padding: 1.25rem;
  }
}
@media print, screen and (min-width: 47.5em) {
  .c-login .grid-container {
    max-height: 46.25rem;
  }
}
.c-login__wrapper {
  max-height: 43.75rem;
  height: 100vh;
}
.c-login .password-reset {
  margin-top: 1.25rem;
  text-align: center;
}
.c-login .password-reset a {
  text-decoration: underline;
}
.c-login--bg-image {
  height: 100%;
  position: relative;
}
.c-login--bg-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../files/theme/img/die-samariter-login.jpg);
  background-size: cover;
  background-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1rem 1rem 1rem 1rem;
  z-index: 0;
}
@media print, screen and (min-width: 47.5em) {
  .c-login--bg-image:before {
    border-radius: 0 1rem 1rem 0;
  }
}
.c-registration {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 47.5em) {
  .c-registration {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
.c-registration .u-width--login {
  align-content: center;
  background-color: var(--surface-login-card);
  border-radius: 0;
  padding: 0;
  height: 100%;
}
@media screen and (min-width: 34.375em) {
  .c-registration .u-width--login {
    border-radius: 2rem;
    padding: 1.25rem;
    margin-top: 1.875rem;
  }
}
.c-left {
  background-color: var(--surface-left);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease;
}
.c-left:after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  width: 15.3125rem;
  background:
    linear-gradient(
      to bottom,
      transparent,
      var(--surface-left) 65%,
      var(--surface-left));
  pointer-events: none;
}
.c-left__inside {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.c-left__top {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 47.5em) {
  .c-left__top {
    height: 4.375rem;
    justify-content: center;
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
    position: sticky;
    top: 0;
    z-index: 10;
  }
}
.c-left__top img {
  max-width: 11.25rem;
  width: 100%;
  height: auto;
}
.c-left__brand {
  border-bottom: 1px solid var(--border-secondary);
}
.c-left__brand img {
  max-width: 6.25rem;
  width: 100%;
  height: auto;
}
.c-left__brand figcaption {
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
}
.c-left__nav-toggle {
  margin-top: auto;
  padding-bottom: 5rem;
}
.nav-collapsed .c-left {
  width: 3.75rem;
  transition: width 0.6s ease-in-out;
}
.nav-collapsed .c-left:after {
  width: 3.75rem;
}
.nav-collapsed .c-left .c-left__top {
  padding-left: 0.625rem !important;
}
.nav-collapsed .c-left .c-left__top img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-position: 0 0;
  object-position: 0 0;
  clip-path: inset(0 0 0 0);
  -o-object-fit: cover;
  object-fit: cover;
}
.nav-collapsed .c-left .c-left__brand {
  margin-left: -0.4375rem;
  margin-right: -0.4375rem;
}
.nav-collapsed .c-left figcaption {
  display: none;
}
.show-left .c-left {
  transform: translateX(0) !important;
  top: 4rem !important;
}
@media print, screen and (max-width: 47.49875em) {
  .c-header {
    height: 4rem;
    background-color: var(--surface-dark);
    position: sticky;
    display: flex;
  }
}
@media print, screen and (min-width: 47.5em) {
  .c-header {
    height: 4.375rem;
    background-color: var(--surface-white);
    position: sticky;
    display: flex;
    box-shadow: 0 3px 10px var(--color-neutral-200);
    top: 0;
    z-index: 100;
  }
}
.c-header__inside {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 200rem;
  width: 100%;
  padding: 0.5rem 0.625rem;
}
.c-header__inside .c-header__checkbox {
  display: none;
}
.c-header__inside .c-header__checkbox:checked ~ .c-header__menu .c-header__menu-icon:before {
  transform: translateY(8px) rotate(135deg);
  background: var(-nav-burger-color);
}
.c-header__inside .c-header__checkbox:checked ~ .c-header__menu .c-header__menu-icon:after {
  transform: translateY(-12px) rotate(-135deg);
  background-color: var(-nav-burger-color);
}
.c-header__inside .c-header__checkbox:checked ~ .c-header__menu .c-header__menu-icon span {
  transform: scale(0);
}
.c-header__inside .c-header__checkbox:checked ~ .c-header__menu .c-header__menu-text {
  display: block;
}
.c-header__inside .c-header__checkbox:checked ~ .c-header__logo {
  display: none;
}
.c-header__inside .c-header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 0.9375rem;
  column-gap: 0.9375rem;
}
.c-header__inside .c-header__logo figcaption {
  display: none;
}
.c-header__inside .c-header__logo--second img {
  width: 3rem;
  height: auto;
}
.c-header__inside .c-header__menu {
  display: inline-block;
  z-index: 250;
  width: 1.875rem;
  cursor: pointer;
}
.c-header__inside .c-header__menu-icon:before,
.c-header__inside .c-header__menu-icon:after,
.c-header__inside .c-header__menu-icon span {
  background: var(--nav-burger-color);
  content: "";
  display: block;
  height: 3px;
  border-radius: 3px;
  margin: 7px 0;
  transition: 0.5s;
}
.c-header__inside .c-header__menu-text {
  display: none;
  position: absolute;
  left: 3.75rem;
  top: 0.75rem;
  color: var(--text-light);
  font-size: 1.125rem;
  font-weight: 700;
}
.c-header__inside .c-header__menu:hover .c-header__menu-icon:before,
.c-header__inside .c-header__menu:hover .c-header__menu-icon:after,
.c-header__inside .c-header__menu:hover .c-header__menu-icon span {
  background: var(--nav-burger-hover) !important;
}
.c-header__inside .c-header__profile {
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .c-header__inside {
    justify-content: flex-end;
  }
  .c-header__inside .c-header__profile {
    display: flex;
    padding-right: 1.875rem;
  }
}
.c-header__profile {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  position: relative;
}
.c-header__profile-container {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.c-header__profile-image img {
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0 0;
  object-position: 0 0;
  clip-path: inset(0 0 0 0);
}
.c-header__profile-info {
  display: flex;
  flex-direction: column;
}
.c-header__profile-name {
  font-weight: 700;
}
.c-header__profile .dropdown__checkbox {
  display: none;
}
.c-header__profile .dropdown__checkbox:checked ~ ul {
  display: flex;
}
.c-header__profile nav {
  margin-top: 0;
  position: absolute;
  width: 100%;
}
.c-header__profile nav ul {
  display: none;
  list-style: none;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 1.875rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  margin-top: 3.125rem;
  background-color: var(--surface-white);
  border-radius: 0.5rem;
  box-shadow: 0 3px 10px var(--color-neutral-200);
  row-gap: 0.4375rem;
}
.c-header__profile nav ul li,
.c-header__profile nav ul a,
.c-header__profile nav ul span {
  font-weight: 600;
}
.c-header__profile nav ul li:hover,
.c-header__profile nav ul a:hover,
.c-header__profile nav ul span:hover {
  color: var(--nav-burger-hover);
}
.c-header__profile nav ul span {
  display: flex;
  align-items: center;
}
.c-header__profile nav ul span svg {
  fill: var(--svg-primary);
}
.c-header__profile .dropdown__button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 100%;
  height: 2.5rem;
  margin: 0;
}
.c-header__profile .dropdown__icon {
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  background-image: url(../../files/theme/img/icon-caret-dark.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.c-left .mod_customnav ul,
.c-left .mod_navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.c-left .mod_customnav li,
.c-left .mod_navigation li {
  cursor: pointer;
  color: var(--nav-text);
  font-weight: 700;
  position: relative;
  line-height: 1.2;
}
.c-left .mod_customnav li > a,
.c-left .mod_customnav li > span,
.c-left .mod_navigation li > a,
.c-left .mod_navigation li > span {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.9375rem;
  display: flex;
  color: var(--nav-text);
}
.c-left .mod_customnav li > a.active,
.c-left .mod_customnav li > a:hover,
.c-left .mod_customnav li > a:focus,
.c-left .mod_customnav li > span.active,
.c-left .mod_customnav li > span:hover,
.c-left .mod_customnav li > span:focus,
.c-left .mod_navigation li > a.active,
.c-left .mod_navigation li > a:hover,
.c-left .mod_navigation li > a:focus,
.c-left .mod_navigation li > span.active,
.c-left .mod_navigation li > span:hover,
.c-left .mod_navigation li > span:focus {
  color: var(--nav-item-hover);
  background-color: var(--nav-surface-active);
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.c-left .mod_customnav li > a.active:before,
.c-left .mod_customnav li > a:hover:before,
.c-left .mod_customnav li > a:focus:before,
.c-left .mod_customnav li > span.active:before,
.c-left .mod_customnav li > span:hover:before,
.c-left .mod_customnav li > span:focus:before,
.c-left .mod_navigation li > a.active:before,
.c-left .mod_navigation li > a:hover:before,
.c-left .mod_navigation li > a:focus:before,
.c-left .mod_navigation li > span.active:before,
.c-left .mod_navigation li > span:hover:before,
.c-left .mod_navigation li > span:focus:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  background-color: var(--nav-surface-active);
}
.c-left .mod_customnav li span,
.c-left .mod_navigation li span {
  display: flex;
}
.c-left .mod_customnav .level_1,
.c-left .mod_navigation .level_1 {
  margin: 0 0 0 0;
  font-size: 1rem;
  flex-direction: column;
  justify-content: space-around;
  flex-wrap: nowrap;
  row-gap: 0.9375rem;
  margin-left: -0.9375rem;
}
.c-left .mod_customnav .level_2,
.c-left .mod_navigation .level_2 {
  display: none;
  row-gap: 0.9375rem;
  z-index: 10;
  margin-left: 3.125rem;
  margin-top: 0.625rem;
}
.c-left .mod_customnav .level_2 > li,
.c-left .mod_navigation .level_2 > li {
  font-weight: 400;
}
.c-left .mod_customnav .level_2 > li > a,
.c-left .mod_customnav .level_2 > li > span,
.c-left .mod_navigation .level_2 > li > a,
.c-left .mod_navigation .level_2 > li > span {
  padding-left: 0;
  margin-right: 1.875rem;
  padding-bottom: 0.625rem;
}
.c-left .mod_customnav .level_3,
.c-left .mod_navigation .level_3 {
  margin-left: 0;
  display: none;
  padding-top: 0.4375rem;
  row-gap: 0.4375rem;
  font-size: 1.125rem;
}
@media print, screen and (min-width: 47.5em) {
  .c-left .mod_customnav .level_3,
  .c-left .mod_navigation .level_3 {
    display: flex;
    margin-left: 0.625rem;
    font-size: 1.125rem;
  }
}
.c-left .mod_customnav .submenu__checkbox,
.c-left .mod_navigation .submenu__checkbox {
  display: none;
}
.c-left .mod_customnav .submenu__checkbox:checked ~ .level_2,
.c-left .mod_customnav .submenu__checkbox:checked ~ .level_3,
.c-left .mod_navigation .submenu__checkbox:checked ~ .level_2,
.c-left .mod_navigation .submenu__checkbox:checked ~ .level_3 {
  display: flex;
  opacity: 1;
  visibility: visible;
  position: relative;
}
.c-left .mod_customnav .submenu__button,
.c-left .mod_navigation .submenu__button {
  display: flex;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 2.4375rem;
  margin: 0;
}
.c-left .mod_customnav .submenu__icon,
.c-left .mod_navigation .submenu__icon {
  display: block;
  margin-top: 0.9375rem;
  width: 0.9375rem;
  height: 1.25rem;
  background-image: url(../../files/theme/img/icon-caret.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.c-left .mod_customnav .no-siblings .submenu__button,
.c-left .mod_navigation .no-siblings .submenu__button {
  display: none;
}
.nav-collapsed .c-left .nav-text,
.nav-collapsed .c-left .submenu__button,
.nav-collapsed .c-left .nav-toggle__label {
  display: none;
}
.nav-collapsed .c-left li {
  justify-content: center;
}
.nav-collapsed .c-left .nav-toggle__button {
  justify-content: center;
}
.nav-collapsed .c-left .nav-toggle__icon {
  transform: rotate(180deg);
}
.nav-toggle__button {
  background: none;
  border: none;
  color: var(--nav-text);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  gap: 1.25rem;
}
.nav-toggle__icon {
  display: inline-block;
  width: 0.9375rem;
  height: 1.25rem;
  background-image: url(../../files/theme/img/icon-double-chevron.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.nav-toggle__label {
  white-space: nowrap;
}
.c-newslist figure a {
  display: block;
}
.c-newslist figure img {
  width: 100%;
}
.c-list {
  list-style: none;
  margin-left: 0;
  padding: 0;
}
.c-list__item {
  display: flex;
  padding-bottom: 0.3125rem;
}
.c-list__label {
  font-weight: bold;
  margin-right: 0.4375rem;
}
.results-list {
  list-style: none !important;
  margin-left: 0 !important;
}
.results-list > li {
  margin-bottom: 0.9375rem;
}
.results-list .question-text p {
  margin-bottom: 0.4375rem;
}
.result-correct {
  background-color: #f0f9f0;
  border-radius: 4px;
  border: 1px solid #d0e9d0;
  padding: 0.3125rem;
}
.result-incorrect {
  background-color: #f9f0f0;
  border-radius: 4px;
  border: 1px solid #e9d0d0;
  padding: 0.3125rem;
}
.block-completed {
  position: relative;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background-color: #f0f9f0;
  border-radius: 4px;
  border: 1px solid #d0e9d0;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.checkmark {
  color: #2ecc71;
  font-size: 20px;
  font-weight: bold;
  margin-right: 8px;
}
.completed-text {
  color: #27ae60;
  font-size: 14px;
}
.block-blocked {
  position: relative;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background-color: #f9f0f0;
  border-radius: 4px;
  border: 1px solid #e9d0d0;
  width: -moz-fit-content;
  width: fit-content;
}
.lock-icon {
  color: #e74c3c;
  font-size: 20px;
  font-weight: bold;
  margin-right: 8px;
}
.blocked-text {
  color: #c0392b;
  font-size: 14px;
}
.c-download-archive figure {
  text-align: center;
}
.c-download-archive__icon {
  width: 100%;
}
.c-download-archive__file-name {
  min-width: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-download-archive__file-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.c-download-archive__file-type {
  font-size: 0.875rem;
  background-color: var(--color-neutral-200);
  padding: 0.1875rem 0.5rem 0.375rem;
  border-radius: 0.25rem;
}
.c-main .ce_form {
  display: block;
  overflow: hidden;
}
fieldset legend {
  display: none;
  font-weight: 600;
}
fieldset.radio_container legend {
  display: block;
  font-size: 1.125rem;
}
.widget {
  color: var(--text-primary);
}
.widget label {
  font-weight: 600;
}
.widget button {
  border-radius: 0.4375rem;
}
.widget-select--nice select {
  display: none;
}
.widget-select--nice ul {
  margin-left: 0;
}
.widget-select .nice-select {
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1rem;
  padding-left: 0.5rem;
  padding-right: 1.25rem;
  height: 2.4375rem;
  border-radius: 8px;
}
.widget-select .nice-select .current {
  display: block;
  overflow: hidden;
}
.widget-select .nice-select-dropdown {
  width: inherit;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 18.75rem;
}
.widget-select .nice-select-dropdown .disabled {
  display: none;
}
.widget-select .nice-select .list {
  max-height: 18.75rem;
}
.c-main .widget-explanation p {
  font-size: 1rem;
}
.widget-checkbox {
  margin-bottom: 0.9375rem;
}
.widget-checkbox input[type=checkbox] {
  display: table;
  float: left;
  margin-top: 0.5rem;
}
.widget-checkbox label {
  font-size: 1rem;
  display: table;
  margin-left: 1.25rem;
}
.widget-checkbox.mandatory label:after {
  content: "*";
  color: red;
}
.widget-radio span {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
}
.widget-textarea textarea {
  margin-bottom: 1.875rem;
}
.widget-submit {
  margin-top: 1.5625rem;
}
.mod_changePassword {
  max-width: 18.75rem;
}
.c-form__fieldset {
  display: none;
}
span.mandatory {
  color: red;
  margin-left: 0.1875rem;
  display: inline-block;
}
.readonly input {
  pointer-events: none;
  background-color: #f0f0f0;
  cursor: not-allowed;
}
.readonly label {
  pointer-events: none;
  cursor: not-allowed;
}
.readonly span.mandatory {
  display: none;
}
.readonly--hide input {
  pointer-events: auto;
  background-color: initial;
}
.readonly--hide span.mandatory {
  display: inline;
}
.block-grid fieldset[data-cff-condition] .widget-submit {
  margin-top: 0;
}
.c-team-list__search-export-wrapper {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.c-team-list__search {
  width: 100%;
  max-width: 18.75rem;
}
.c-team-list__active-filters {
  margin-top: 0.625rem;
}
.c-team-list__export {
  margin-top: 0.625rem;
  margin-left: auto;
}
.c-team-list__filter-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 0.9375rem;
  align-items: end;
}
@media print, screen and (max-width: 47.49875em) {
  .c-team-list__filter-controls {
    grid-template-columns: 1fr;
  }
}
.c-team-list__filter-controls select {
  margin-bottom: 0;
}
@media screen and (min-width: 75em) {
  .c-team-list__main {
    background-color: var(--surface-white);
    border-radius: 0.625rem;
    box-shadow: 0 3px 10px var(--color-neutral-200);
    padding: 0.9375rem 0.9375rem;
    margin-bottom: 0.9375rem;
    position: relative;
    min-width: 0;
    max-width: 100%;
  }
}
.c-team-list__header-row {
  display: none;
}
@media screen and (min-width: 75em) {
  .c-team-list__header-row {
    display: flex;
    -moz-column-gap: 0.3125rem;
    column-gap: 0.3125rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid #e6e6e6;
  }
}
.c-team-list__header-name {
  color: var(--color-primary-500);
  font-size: 1rem;
}
@media screen and (min-width: 96.875em) {
  .c-team-list__header-name {
    font-size: 1.125rem;
  }
}
.c-team-list .c-sort-icon {
  width: 1rem;
}
@media screen and (min-width: 75em) {
  .c-team-list__members {
    grid-template-columns: none;
    row-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
.c-team-list__col {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
  padding-bottom: 1rem;
  justify-content: space-between;
}
.c-team-list__col--name,
.c-team-list__col--postal {
  text-align: right;
}
.c-team-list__col--date,
.c-team-list__col--address,
.c-team-list__col--pickup,
.c-team-list__col--boxes {
  text-align: right;
}
.c-team-list__col--boxes .c-booking-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-team-list__col--boxes .c-booking-lines li {
  display: flex;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
}
.c-team-list__col--boxes .c-booking-lines li:last-child {
  margin-bottom: 0;
}
.c-team-list__col--boxes .c-booking-lines__label {
  flex-shrink: 0;
  font-weight: 700;
  margin-right: 0.3125rem;
  min-width: 4.0625rem;
}
.c-team-list__col--boxes .c-booking-lines__value {
  flex: 1;
  word-break: break-word;
}
@media screen and (min-width: 75em) {
  .c-team-list__col {
    padding-bottom: 0;
    justify-content: flex-start;
    min-width: 0;
    word-break: break-word;
  }
  .c-team-list__col--sortable {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 0.3125rem;
    column-gap: 0.3125rem;
    word-break: keep-all;
  }
  .c-team-list__col--sortable.c-team-list__col--published,
  .c-team-list__col--sortable.c-team-list__col--idcard,
  .c-team-list__col--sortable.c-team-list__col--status {
    justify-content: center;
  }
  .c-team-list__col--name {
    flex: 0 0 13%;
    text-align: left;
  }
  .c-team-list__col--role {
    flex: 0 0 14%;
  }
  .c-team-list__col--area {
    flex: 0 0 10%;
  }
  .c-team-list__col--postal {
    flex: 0 0 8%;
    text-align: left;
  }
  .c-team-list__col--published {
    flex: 0 0 16%;
    text-align: center;
    justify-content: center;
  }
  .c-team-list__col--idcard {
    flex: 0 0 11%;
    text-align: center;
    justify-content: center;
  }
  .c-team-list__col--status {
    flex: 0 0 10%;
    text-align: center;
    justify-content: center;
  }
  .c-team-list__col--note {
    flex: 0 0 15%;
    text-align: center;
    justify-content: center;
  }
  .c-team-list__col--date {
    flex: 0 0 20%;
    text-align: left;
  }
  .c-team-list__col--address {
    flex: 0 0 40%;
    text-align: left;
  }
  .c-team-list__col--pickup {
    flex: 0 0 15%;
    text-align: left;
  }
  .c-team-list__col--boxes {
    flex: 0 0 25%;
    text-align: left;
    justify-content: flex-start;
  }
}
.c-team-list__label-mobile {
  display: inline-block;
  font-weight: 700;
  color: var(--color-primary-500);
}
@media screen and (min-width: 75em) {
  .c-team-list__label-mobile {
    display: none;
  }
}
.c-team-list__member-row {
  background-color: var(--surface-white);
  border-radius: 0.625rem;
  box-shadow: 0 3px 10px var(--color-neutral-200);
  padding: 0.9375rem 0.9375rem;
  margin-bottom: 0.9375rem;
  position: relative;
  min-width: 0;
  max-width: 100%;
}
@media screen and (min-width: 75em) {
  .c-team-list__member-row {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    -moz-column-gap: 0.3125rem;
    column-gap: 0.3125rem;
    border-bottom: 1px solid #e6e6e6;
    transition: background-color 0.2s;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
  }
  .c-team-list__member-row:hover {
    background-color: rgba(23, 121, 186, 0.05);
  }
}
.c-team-list__member-row:last-child {
  border-bottom: none;
}
.c-team-list__member-name {
  display: flex;
  align-items: center;
}
.c-team-list__location-data {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.c-team-list__street {
  display: block;
  line-height: 1.3;
}
.c-team-list__city {
  display: block;
  line-height: 1.3;
}
.c-team-list__note-count {
  background-color: #1779ba;
  color: #fefefe;
  border-radius: 0.625rem;
  padding: 0.125rem 0.375rem;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}
.c-team-list__publish-status {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.c-team-list__empty {
  text-align: center;
  padding: 2.5rem;
  color: #cacaca;
}
.c-team-list--empty {
  text-align: center;
  padding: 3.75rem 1.25rem;
  background-color: #e6e6e6;
  border-radius: 0.5rem;
}
.c-team-list--empty p {
  margin: 0;
}
.c-notes-list {
  margin-bottom: 1.25rem;
}
.c-notes-list__item {
  padding: 0.9375rem;
  background-color: #e6e6e6;
  border-radius: 0.375rem;
  margin-bottom: 0.625rem;
}
.c-notes-list__item:last-child {
  margin-bottom: 0;
}
.c-notes-list__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: #cacaca;
}
.c-notes-list__content {
  color: #8a8a8a;
  line-height: 1.5;
}
.c-form-control {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #cacaca;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}
.c-form-control:focus {
  outline: none;
  border-color: #1779ba;
}
.c-form-control--status {
  max-width: 9.375rem;
}
.c-filter-tag__remove {
  color: #fefefe;
  cursor: pointer;
  padding-left: 0.5rem;
  font-size: 2rem;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-team-organigramm__controls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid #e6e6e6;
}
.c-team-organigramm__container {
  width: 100%;
  min-height: 12.5rem;
  overflow: auto;
  position: relative;
}
.c-team-organigramm__chart {
  width: 100%;
  height: 100%;
}
.c-team-coordinator__role-group {
  margin-bottom: 2rem;
}
.c-team-coordinator__role-title {
  text-transform: uppercase;
}
.c-team-coordinator__card-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
}
.c-team-coordinator__card-name span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  padding-top: 0.4375rem;
}
.c-team-coordinator__card-location {
  margin-bottom: 0.25rem;
}
.c-team-coordinator__card-location:before {
  content: "\1f4cd  ";
  margin-right: 0.25rem;
}
.c-team-coordinator__card-role-detail {
  display: inline-block;
  font-size: 0.875rem;
  background-color: var(--color-neutral-200);
  padding: 0.1875rem 0.5rem 0.375rem;
  border-radius: 0.25rem;
  margin-top: 0.4375rem;
}
.c-team-coordinator__card-contact {
  margin-top: 0.4375rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.c-team-coordinator__no-coordinators {
  text-align: center;
  padding: 3rem 1rem;
}
.c-team-coordinator__no-coordinators-icon {
  margin-bottom: 1rem;
}
.c-team-coordinator__no-coordinators-title {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}
.c-team-coordinator__no-coordinators-message {
  margin: 0;
  line-height: 1.5;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.c-faq {
  margin-bottom: 1.875rem;
}
.c-faq__category-title {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.c-faq__tab {
  border: 1px solid #e0e0e0;
  border-radius: 0.25rem;
  margin-bottom: 0.625rem;
  width: 100%;
  overflow: hidden;
}
.c-faq__tab:last-child {
  margin-bottom: 0;
}
.c-faq__input {
  display: none;
}
.c-faq__input:checked ~ .c-faq__label:after {
  content: "\2212";
}
.c-faq__input:checked ~ .c-faq__content {
  position: relative;
  display: block;
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  padding: 1.25rem 1.5625rem;
}
.c-faq__label {
  display: block;
  font-size: 1.125rem;
  margin-left: 0;
  padding: 1.25rem 3.75rem 1.25rem 1.5625rem;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  width: 100%;
}
.c-faq__label:after {
  content: "+";
  position: absolute;
  right: 1.5625rem;
  top: 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  width: 1.875rem;
  height: 1.875rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-faq__content {
  position: relative;
  opacity: 0;
  visibility: hidden;
  display: none;
  overflow: hidden;
  border-top: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  padding: 0 1.5625rem;
}
.c-faq__content p {
  margin-bottom: 0.9375rem;
}
.c-faq__content p:last-child {
  margin-bottom: 0;
}
.c-faq__content figure {
  margin: 0.9375rem 0;
}
.c-faq__content .enclosure {
  list-style: none;
  padding: 0;
  margin: 0.9375rem 0 0;
}
.c-faq__content .enclosure li {
  padding: 0.5rem 0;
}
.c-faq__content .enclosure li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.c-faq__content .enclosure li a .size {
  color: #666;
  font-size: 0.875rem;
}
.c-faq-list__empty {
  padding: 1.875rem;
  text-align: center;
  border-radius: 0.25rem;
}
@media print, screen and (max-width: 47.49875em) {
  .c-faq__tab {
    margin-bottom: 0.5rem;
  }
  .c-faq__label {
    padding: 0.9375rem 3.125rem 0.9375rem 1.25rem;
    font-size: 1rem;
  }
  .c-faq__label:after {
    right: 0.9375rem;
    font-size: 1.25rem;
    width: 1.5625rem;
    height: 1.5625rem;
  }
  .c-faq__content {
    padding: 0.9375rem 1.25rem;
  }
}
.c-image-form-overlay {
  background-color: var(--color-neutral-0);
  border-top-left-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
  padding: 0.9375rem;
}
.c-image-form-overlay__content h2 {
  color: rgb(0, 150, 47);
  font-weight: 400;
}
.c-image-form-overlay__value {
  background-color: transparent !important;
  border: none;
  margin-bottom: 0;
}
.content-member-information {
  display: flex;
  flex-direction: row;
  gap: 0.9375rem;
}
.c-member-information__injection {
  width: 18.75rem;
}
.c-member-information__injection figure {
  text-align: center;
}
.c-member-information__injection img {
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-member-information__injection .widget-upload label {
  display: none;
}
.c-member-information__info {
  max-height: 12.5rem;
  height: 100%;
  align-content: center;
}
.pagination {
  display: grid;
  grid-column-end: span 12 !important;
  width: 100%;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0;
}
.pagination p {
  margin: 0;
  margin-left: 1rem;
  font-size: 1.125rem;
}
.pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li {
  position: relative;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
}
.pagination li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--pagination-surface);
  border-radius: 0.375rem;
  color: var(--pagination-text);
}
.pagination li a.last,
.pagination li a.next {
  font-weight: 600;
}
.pagination li a:hover {
  color: var(--pagination-text-hover);
  background-color: var(--pagination-surface-active);
}
.pagination li .active {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  color: var(--pagination-text-active);
  position: absolute;
  background-color: var(--pagination-surface-active);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
}
.c-modal {
  text-align: left;
}
.c-modal h1,
.c-modal h2,
.c-modal h3 {
  padding-left: 0;
  line-height: 1;
}
.c-modal__checkbox {
  display: none;
}
.c-modal__checkbox:checked ~ .c-modal__background {
  z-index: 2000;
  display: block;
  opacity: 1;
  visibility: visible;
  overflow: auto;
}
.c-modal__background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10, 10, 10, 0.55);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 10, 10, 0.55);
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.c-modal__window {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: var(--surface-modal);
  position: relative;
  display: table;
  max-width: 45.625rem;
  margin: 0 auto;
  min-height: 0;
  height: auto;
  padding: 0;
  overflow-y: auto;
  top: 0;
}
[data-whatinput=mouse] .c-modal__window {
  outline: 0;
}
@media print, screen and (min-width: 47.5em) {
  .c-modal__window {
    min-height: 0;
  }
}
.c-modal__window .column {
  min-width: 0;
}
.c-modal__window > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 47.5em) {
  .c-modal__window {
    max-height: 90%;
    height: auto;
    margin: 3.125rem auto;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    border-radius: 15px;
    width: 100%;
    z-index: 9999;
  }
}
.c-modal__close {
  position: absolute;
  right: 0.625rem;
  top: 0;
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  color: var(--modal-close);
  z-index: 2000;
}
.c-modal__container {
  padding: 3.75rem 0 3.75rem;
  position: relative;
  overflow-y: auto;
  height: auto;
}
.c-modal__container p,
.c-modal__container strong {
  color: var(--font-color) !important;
}
.c-modal__container ul {
  list-style: disc;
  margin-left: 1.25rem;
}
.c-modal__container .column {
  padding: 0;
  position: relative;
}
.c-modal__container h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.c-modal__container p {
  margin-bottom: 2rem;
  line-height: 1.5;
}
.c-modal__container .c-modal__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.c-notes-list__items {
  max-height: 18.75rem;
  overflow-y: auto;
  margin-bottom: 1rem;
}
.c-note-item {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  background-color: #f9fafb;
}
.c-note-item:last-child {
  margin-bottom: 0;
}
.c-note-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.c-note-item__date {
  font-weight: 500;
}
.c-note-item__author {
  font-style: italic;
}
.c-note-item__title {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
}
.c-note-item__content {
  color: #4b5563;
  line-height: 1.5;
  white-space: pre-wrap;
}
.c-notes-form {
  margin-top: 1.5rem;
}
.c-notes-form .c-form-control {
  width: 100%;
  min-height: 6.25rem;
  resize: vertical;
}
.u-pt--0 {
  padding-top: 0;
}
.u-pb--0 {
  padding-bottom: 0;
}
.u-ph--0 {
  padding-left: 0;
  padding-right: 0;
}
.u-pv--0 {
  padding-top: 0;
  padding-bottom: 0;
}
.u-p--0 {
  padding: 0;
}
.u-mt--0 {
  margin-top: 0 !important;
}
.u-mb--0 {
  margin-bottom: 0 !important;
}
.u-mr--0 {
  margin-right: 0 !important;
}
.u-pt--8 {
  padding-top: 0.5rem;
}
.u-pb--8 {
  padding-bottom: 0.5rem;
}
.u-ph--8 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.u-pv--8 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.u-p--8 {
  padding: 0.5rem;
}
.u-mt--8 {
  margin-top: 0.5rem !important;
}
.u-mb--8 {
  margin-bottom: 0.5rem !important;
}
.u-mr--8 {
  margin-right: 0.5rem !important;
}
.u-pt--10 {
  padding-top: 0.625rem;
}
.u-pb--10 {
  padding-bottom: 0.625rem;
}
.u-ph--10 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.u-pv--10 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.u-p--10 {
  padding: 0.625rem;
}
.u-mt--10 {
  margin-top: 0.625rem !important;
}
.u-mb--10 {
  margin-bottom: 0.625rem !important;
}
.u-mr--10 {
  margin-right: 0.625rem !important;
}
.u-pt--15 {
  padding-top: 0.9375rem;
}
.u-pb--15 {
  padding-bottom: 0.9375rem;
}
.u-ph--15 {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
.u-pv--15 {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}
.u-p--15 {
  padding: 0.9375rem;
}
.u-mt--15 {
  margin-top: 0.9375rem !important;
}
.u-mb--15 {
  margin-bottom: 0.9375rem !important;
}
.u-mr--15 {
  margin-right: 0.9375rem !important;
}
.u-pt--30 {
  padding-top: 1.875rem;
}
.u-pb--30 {
  padding-bottom: 1.875rem;
}
.u-ph--30 {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
.u-pv--30 {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
.u-p--30 {
  padding: 1.875rem;
}
.u-mt--30 {
  margin-top: 1.875rem !important;
}
.u-mb--30 {
  margin-bottom: 1.875rem !important;
}
.u-mr--30 {
  margin-right: 1.875rem !important;
}
.u-pt--45 {
  padding-top: 2.8125rem;
}
.u-pb--45 {
  padding-bottom: 2.8125rem;
}
.u-ph--45 {
  padding-left: 2.8125rem;
  padding-right: 2.8125rem;
}
.u-pv--45 {
  padding-top: 2.8125rem;
  padding-bottom: 2.8125rem;
}
.u-p--45 {
  padding: 2.8125rem;
}
.u-mt--45 {
  margin-top: 2.8125rem !important;
}
.u-mb--45 {
  margin-bottom: 2.8125rem !important;
}
.u-mr--45 {
  margin-right: 2.8125rem !important;
}
.u-pt--60 {
  padding-top: 3.75rem;
}
.u-pb--60 {
  padding-bottom: 3.75rem;
}
.u-ph--60 {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}
.u-pv--60 {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.u-p--60 {
  padding: 3.75rem;
}
.u-mt--60 {
  margin-top: 3.75rem !important;
}
.u-mb--60 {
  margin-bottom: 3.75rem !important;
}
.u-mr--60 {
  margin-right: 3.75rem !important;
}
.u-pt--90 {
  padding-top: 5.625rem;
}
.u-pb--90 {
  padding-bottom: 5.625rem;
}
.u-ph--90 {
  padding-left: 5.625rem;
  padding-right: 5.625rem;
}
.u-pv--90 {
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
}
.u-p--90 {
  padding: 5.625rem;
}
.u-mt--90 {
  margin-top: 5.625rem !important;
}
.u-mb--90 {
  margin-bottom: 5.625rem !important;
}
.u-mr--90 {
  margin-right: 5.625rem !important;
}
@media print, screen and (max-width: 47.49875em) {
  .u-pt--0\@small {
    padding-top: 0;
  }
  .u-pb--0\@small {
    padding-bottom: 0;
  }
  .u-ph--0\@small {
    padding-left: 0;
    padding-right: 0;
  }
  .u-pv--0\@small {
    padding-left: 0;
    padding-right: 0;
  }
  .u-p--0\@small {
    padding: 0;
  }
  .u-mt--0\@small {
    margin-top: 0 !important;
  }
  .u-mb--0\@small {
    margin-bottom: 0 !important;
  }
  .u-pt--8\@small {
    padding-top: 0.5rem;
  }
  .u-pb--8\@small {
    padding-bottom: 0.5rem;
  }
  .u-ph--8\@small {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-pv--8\@small {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-p--8\@small {
    padding: 0.5rem;
  }
  .u-mt--8\@small {
    margin-top: 0.5rem !important;
  }
  .u-mb--8\@small {
    margin-bottom: 0.5rem !important;
  }
  .u-pt--10\@small {
    padding-top: 0.625rem;
  }
  .u-pb--10\@small {
    padding-bottom: 0.625rem;
  }
  .u-ph--10\@small {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .u-pv--10\@small {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .u-p--10\@small {
    padding: 0.625rem;
  }
  .u-mt--10\@small {
    margin-top: 0.625rem !important;
  }
  .u-mb--10\@small {
    margin-bottom: 0.625rem !important;
  }
  .u-pt--15\@small {
    padding-top: 0.9375rem;
  }
  .u-pb--15\@small {
    padding-bottom: 0.9375rem;
  }
  .u-ph--15\@small {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .u-pv--15\@small {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .u-p--15\@small {
    padding: 0.9375rem;
  }
  .u-mt--15\@small {
    margin-top: 0.9375rem !important;
  }
  .u-mb--15\@small {
    margin-bottom: 0.9375rem !important;
  }
  .u-pt--30\@small {
    padding-top: 1.875rem;
  }
  .u-pb--30\@small {
    padding-bottom: 1.875rem;
  }
  .u-ph--30\@small {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
  .u-pv--30\@small {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
  .u-p--30\@small {
    padding: 1.875rem;
  }
  .u-mt--30\@small {
    margin-top: 1.875rem !important;
  }
  .u-mb--30\@small {
    margin-bottom: 1.875rem !important;
  }
  .u-pt--45\@small {
    padding-top: 2.8125rem;
  }
  .u-pb--45\@small {
    padding-bottom: 2.8125rem;
  }
  .u-ph--45\@small {
    padding-left: 2.8125rem;
    padding-right: 2.8125rem;
  }
  .u-pv--45\@small {
    padding-left: 2.8125rem;
    padding-right: 2.8125rem;
  }
  .u-p--45\@small {
    padding: 2.8125rem;
  }
  .u-mt--45\@small {
    margin-top: 2.8125rem !important;
  }
  .u-mb--45\@small {
    margin-bottom: 2.8125rem !important;
  }
  .u-pt--60\@small {
    padding-top: 3.75rem;
  }
  .u-pb--60\@small {
    padding-bottom: 3.75rem;
  }
  .u-ph--60\@small {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .u-pv--60\@small {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .u-p--60\@small {
    padding: 3.75rem;
  }
  .u-mt--60\@small {
    margin-top: 3.75rem !important;
  }
  .u-mb--60\@small {
    margin-bottom: 3.75rem !important;
  }
  .u-pt--90\@small {
    padding-top: 5.625rem;
  }
  .u-pb--90\@small {
    padding-bottom: 5.625rem;
  }
  .u-ph--90\@small {
    padding-left: 5.625rem;
    padding-right: 5.625rem;
  }
  .u-pv--90\@small {
    padding-left: 5.625rem;
    padding-right: 5.625rem;
  }
  .u-p--90\@small {
    padding: 5.625rem;
  }
  .u-mt--90\@small {
    margin-top: 5.625rem !important;
  }
  .u-mb--90\@small {
    margin-bottom: 5.625rem !important;
  }
}
.u-p--40 {
  padding: 1.25rem;
}
@media print, screen and (min-width: 47.5em) {
  .u-p--40 {
    padding: 2.5rem;
  }
}
.no-js img.lazyload,
.no-js .o-media--lazyloading {
  display: none;
}
.c-main .lazyloaded,
.c-gallery-modal img {
  animation-name: scale-1-to-0;
  animation-duration: 900ms;
}
@keyframes scale-1-to-0 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.u-no-scroll,
.is-flickity-fullscreen {
  overflow: hidden;
  position: static;
}
.u-no-script ~ div {
  position: relative;
}
.js-equalizer__item {
  display: block;
}
.u-weight--bolder,
.u-weight--700 {
  font-weight: 700;
}
.u-weight--bold,
.u-weight--600 {
  font-weight: 600 !important;
}
.u-weight--regular,
.u-weight--400 {
  font-weight: 400;
}
.u-weight--light,
.u-weight--300 {
  font-weight: 300;
}
.u-size--14 {
  font-size: 0.875rem;
}
.u-size--14 a,
.u-size--14 p {
  font-size: 0.875rem !important;
}
.u-size--16 {
  font-size: 1rem;
}
.u-size--16 a,
.u-size--16 p {
  font-size: 1rem !important;
}
.u-size--18 {
  font-size: 1.125rem;
}
.u-size--18 a,
.u-size--18 p {
  font-size: 1.125rem !important;
}
.u-size--20 {
  font-size: 1.25rem;
}
.u-size--22 {
  font-size: 1.375rem;
}
.u-size--24 {
  font-size: 1.5rem;
}
.u-size--26 {
  font-size: 1.625rem;
}
.u-size--28 {
  font-size: 1.75rem;
}
.u-size--30 {
  font-size: 1.875rem;
}
.u-size--36 {
  font-size: 2.25rem;
}
.u-decoration--underline {
  text-decoration: underline;
}
.u-text--primary {
  color: var(--text-primary);
}
.u-text--secondary {
  color: var(--text-secondary);
}
.u-text--accent {
  color: var(--text-accent);
}
.u-text--light {
  color: var(--text-light);
}
.u-text--light a {
  color: inherit;
}
.u-text--light--heading-light h1,
.u-text--light--heading-light h2,
.u-text--light--heading-light h3,
.u-text--light--heading-light h4,
.u-text--light--heading-light h5,
.u-text--light--heading-light h6,
.u-text--light--heading-light .h1,
.u-text--light--heading-light .h2,
.u-text--light--heading-light .h3,
.u-text--light--heading-light .h4,
.u-text--light--heading-light .h5,
.u-text--light--heading-light .h6 {
  color: var(--heading-light);
}
.u-text--dark {
  color: var(--text-dark);
}
.u-surface--page {
  background-color: var(--surface-page);
}
.u-surface--login {
  background-color: var(--surface-login);
}
.u-surface--dark {
  background-color: var(--surface-dark);
}
.u-surface--modal {
  background-color: var(--surface-modal);
}
.u-surface--white {
  background-color: var(--surface-white);
}
.u-surface--primary-light {
  background-color: var(--color-primary-50);
}
.u-surface--primary {
  background-color: var(--color-primary-500);
}
.u-surface--primary-dark {
  background-color: var(--color-primary-900);
}
.u-surface--secondary-light {
  background-color: var(--color-secondary-300);
}
.u-surface--secondary {
  background-color: var(--color-secondary-500);
}
.u-surface--secondary-dark {
  background-color: var(--color-secondary-700);
}
.u-surface--accent-light {
  background-color: var(--color-accent-300);
}
.u-surface--accent {
  background-color: var(--color-accent-500);
}
.u-surface--accent-dark {
  background-color: var(--color-accent-700);
}
.u-nav--surface {
  background-color: var(--nav-surface);
}
.u-nav--text {
  color: var(--nav-text);
}
.u-nav--hover {
  color: var(--nav-text-hover);
}
.u-link--default {
  color: var(--link-default);
}
.u-link--hover {
  color: var(--link-hover);
}
.u-link--active {
  color: var(--link-active);
}
.is-hidden {
  display: none !important;
}
.is-invisible,
.invisible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  right: 0;
}
.hide {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
.visible {
  visibility: visible;
}
@media print, screen and (max-width: 47.49875em) {
  .hide-for-small-only {
    display: none !important;
  }
}
@media screen and (max-width: 0em), screen and (min-width: 47.5em) {
  .show-for-small-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 47.5em) {
  .hide-for-medium {
    display: none !important;
  }
}
@media screen and (max-width: 47.49875em) {
  .show-for-medium {
    display: none !important;
  }
}
@media print, screen and (min-width: 47.5em) and (max-width: 61.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}
@media screen and (max-width: 47.49875em), screen and (min-width: 62em) {
  .show-for-medium-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 62em) {
  .hide-for-large {
    display: none !important;
  }
}
@media screen and (max-width: 61.99875em) {
  .show-for-large {
    display: none !important;
  }
}
@media print, screen and (min-width: 62em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}
@media screen and (max-width: 61.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}
.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.show-on-focus:active,
.show-on-focus.nice-select.open,
.show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}
.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}
.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}
.show-for-dark-mode {
  display: none;
}
.hide-for-dark-mode {
  display: block;
}
@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }
  .hide-for-dark-mode {
    display: none !important;
  }
}
.show-for-ie {
  display: none;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }
  .hide-for-ie {
    display: none !important;
  }
}
.show-for-sticky {
  display: none;
}
.is-stuck .show-for-sticky {
  display: block;
}
.is-stuck .hide-for-sticky {
  display: none;
}
a.rsfh-delete {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}
.u-block {
  display: block;
}
.rte {
  width: 100%;
}
.u-width--100 {
  max-width: 100%;
  padding: 0;
}
.u-width--300 {
  max-width: 18.75rem;
  width: 100%;
}
.u-width--740 {
  max-width: 46.25rem;
  width: 100%;
}
@media print, screen and (min-width: 47.5em) {
  .u-width--50\%.widget {
    max-width: 50%;
    width: 100%;
    padding-right: 0.9375rem;
  }
}
.u-width--login {
  width: 100%;
  max-width: var(--width-login);
}
.u-align--center {
  text-align: center;
}
.u-align--left {
  text-align: left;
}
.u-align--left figure {
  text-align: inherit;
}
.u-align--right {
  text-align: right;
}
.u-align--right figure {
  text-align: inherit;
}
.u-align-content--center {
  align-content: center;
}
.u-align-content--start {
  align-content: flex-start;
}
.u-align-content--end {
  align-content: flex-end;
}
.u-align-content--between {
  align-content: space-between;
}
.u-align-content--around {
  align-content: space-around;
}
.u-align-content--evenly {
  align-content: space-evenly;
}
.u-align-content--stretch {
  align-content: stretch;
}
.u-align-self--center {
  align-self: center;
}
.u-align-self--start {
  align-self: flex-start;
}
.u-align-self--end {
  align-self: flex-end;
}
.u-align-self--stretch {
  align-self: stretch;
}
.u-align-self--baseline {
  align-self: baseline;
}
.u-align-main-content--center main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 36.25em) {
  .u-align-main-content--start\@small main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.u-radius--0 {
  border-radius: 0;
}
.u-radius-tl--0 {
  border-top-left-radius: 0;
}
.u-radius-tr--0 {
  border-top-right-radius: 0;
}
.u-radius-bl--0 {
  border-bottom-left-radius: 0;
}
.u-radius-br--0 {
  border-bottom-right-radius: 0;
}
.u-radius-top--0 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.u-radius-bottom--0 {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.u-radius-left--0 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.u-radius-right--0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.u-radius--4 {
  border-radius: 0.25rem;
}
.u-radius-tl--4 {
  border-top-left-radius: 0.25rem;
}
.u-radius-tr--4 {
  border-top-right-radius: 0.25rem;
}
.u-radius-bl--4 {
  border-bottom-left-radius: 0.25rem;
}
.u-radius-br--4 {
  border-bottom-right-radius: 0.25rem;
}
.u-radius-top--4 {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.u-radius-bottom--4 {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.u-radius-left--4 {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.u-radius-right--4 {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.u-radius--8 {
  border-radius: 0.5rem;
}
.u-radius-tl--8 {
  border-top-left-radius: 0.5rem;
}
.u-radius-tr--8 {
  border-top-right-radius: 0.5rem;
}
.u-radius-bl--8 {
  border-bottom-left-radius: 0.5rem;
}
.u-radius-br--8 {
  border-bottom-right-radius: 0.5rem;
}
.u-radius-top--8 {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.u-radius-bottom--8 {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.u-radius-left--8 {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.u-radius-right--8 {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.u-radius--10 {
  border-radius: 0.625rem;
}
.u-radius-tl--10 {
  border-top-left-radius: 0.625rem;
}
.u-radius-tr--10 {
  border-top-right-radius: 0.625rem;
}
.u-radius-bl--10 {
  border-bottom-left-radius: 0.625rem;
}
.u-radius-br--10 {
  border-bottom-right-radius: 0.625rem;
}
.u-radius-top--10 {
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}
.u-radius-bottom--10 {
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}
.u-radius-left--10 {
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
}
.u-radius-right--10 {
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}
.u-radius--16 {
  border-radius: 1rem;
}
.u-radius-tl--16 {
  border-top-left-radius: 1rem;
}
.u-radius-tr--16 {
  border-top-right-radius: 1rem;
}
.u-radius-bl--16 {
  border-bottom-left-radius: 1rem;
}
.u-radius-br--16 {
  border-bottom-right-radius: 1rem;
}
.u-radius-top--16 {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.u-radius-bottom--16 {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.u-radius-left--16 {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.u-radius-right--16 {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.u-radius--20 {
  border-radius: 1.25rem;
}
.u-radius-tl--20 {
  border-top-left-radius: 1.25rem;
}
.u-radius-tr--20 {
  border-top-right-radius: 1.25rem;
}
.u-radius-bl--20 {
  border-bottom-left-radius: 1.25rem;
}
.u-radius-br--20 {
  border-bottom-right-radius: 1.25rem;
}
.u-radius-top--20 {
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}
.u-radius-bottom--20 {
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
}
.u-radius-left--20 {
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
}
.u-radius-right--20 {
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
}
@media print, screen and (max-width: 47.49875em) {
  .u-radius--0\@small {
    border-radius: 0;
  }
  .u-radius--4\@small {
    border-radius: 0.25rem;
  }
  .u-radius--8\@small {
    border-radius: 0.5rem;
  }
  .u-radius--10\@small {
    border-radius: 0.625rem;
  }
  .u-radius--16\@small {
    border-radius: 1rem;
  }
  .u-radius--20\@small {
    border-radius: 1.25rem;
  }
}
.u-column-gap--0 {
  -moz-column-gap: 0 !important;
  column-gap: 0 !important;
}
.u-column-gap--0 > .grid-container {
  -moz-column-gap: inherit;
  column-gap: inherit;
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/*# sourceMappingURL=app.css.map */

