.autoComplete_wrapper {
  display: inline-block;
  position: relative;
}

.autoComplete_wrapper > input {
  width: 370px;
  height: 40px;
  padding-left: 10px;
  font-size: 1rem;
  color: rgb(116, 116, 116);
  border-radius: 4px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  outline: none;
}

.autoComplete_wrapper > input::-moz-placeholder {
  color: rgba(123, 123, 123, 0.5);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.autoComplete_wrapper > input::placeholder {
  color: rgba(123, 123, 123, 0.5);
  transition: all 0.3s ease;
}

.autoComplete_wrapper > ul {
  position: absolute;
  max-height: 226px;
  overflow-y: scroll;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0.5rem 0 0 0;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid rgba(33, 33, 33, 0.1);
  z-index: 1000;
  outline: none;
}

.autoComplete_wrapper > ul > li {
  padding: 10px 20px;
  list-style: none;
  text-align: left;
  font-size: 16px;
  color: #212121;
  transition: all 0.1s ease-in-out;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}

.autoComplete_wrapper > ul > li::-moz-selection {
  color: rgba(#ffffff, 0);
  background-color: rgba(#ffffff, 0);
}

.autoComplete_wrapper > ul > li::selection {
  color: rgba(#ffffff, 0);
  background-color: rgba(#ffffff, 0);
}

.autoComplete_wrapper > ul > li:hover {
  cursor: pointer;
  background-color: rgba(123, 123, 123, 0.1);
}

.autoComplete_wrapper > ul > li mark {
  background-color: transparent;
  color: rgba(255, 122, 122, 1);
  font-weight: bold;
}

.autoComplete_wrapper > ul > li mark::-moz-selection {
  color: rgba(#ffffff, 0);
  background-color: rgba(#ffffff, 0);
}

.autoComplete_wrapper > ul > li mark::selection {
  color: rgba(#ffffff, 0);
  background-color: rgba(#ffffff, 0);
}

.autoComplete_wrapper > ul > li[aria-selected="true"] {
  background-color: rgba(123, 123, 123, 0.1);
}

@media only screen and (max-width: 600px) {
  .autoComplete_wrapper > input {
    width: 18rem;
  }
}

/*
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
  /* Generated using: https://gwfh.mranftl.com/fonts */
  /* source-sans-pro-regular - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 400;
    src: url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-regular-c02412e60fcbe90fd912.eot); /* IE9 Compat Modes */
    src: url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-regular-c02412e60fcbe90fd912.eot?#iefix) format("embedded-opentype"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-regular-52243f82a35bab260a88.woff2) format("woff2"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-regular-1882629b5eaf2ec74fbf.woff) format("woff"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-regular-a5357cc4e5d4eeb42793.ttf) format("truetype"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-regular-3fbfd22398bab24893f5.svg#SourceSansPro) format("svg"); /* Legacy iOS */
  }
  /* source-sans-pro-600 - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 600;
    src: url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-600-c9897a50434a63883e42.eot); /* IE9 Compat Modes */
    src: url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-600-c9897a50434a63883e42.eot?#iefix) format("embedded-opentype"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-600-0e5413e43371301c41e7.woff2) format("woff2"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-600-dc404c2900bb751a6d7c.woff) format("woff"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-600-a8dc1b60c9ad609f0b4a.ttf) format("truetype"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-600-4fafa7fabd4829f58fc0.svg#SourceSansPro) format("svg"); /* Legacy iOS */
  }
  /* source-sans-pro-700 - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 700;
    src: url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-700-6a1e26f02922ac392926.eot); /* IE9 Compat Modes */
    src: url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-700-6a1e26f02922ac392926.eot?#iefix) format("embedded-opentype"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-700-68b3568e4089093f400b.woff2) format("woff2"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-700-fc594703b14b8a869dfc.woff) format("woff"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-700-4a6e47d1db848f5e8218.ttf) format("truetype"), url(/decidim-packs/media/images/source-sans-pro-v21-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-700-b065b37b1088eb287719.svg#SourceSansPro) format("svg"); /* Legacy iOS */
  }
  .h1 {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 36px;
  line-height: 45px;
  font-weight: 700;
}
  .h2 {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
  .h3 {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
  .h4 {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}
  .h5 {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
}
  .h6 {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
  .decorator {
  position: relative;
}
  .decorator::after {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0px;
  height: 0.25rem;
  width: 2.5rem;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--tertiary-rgb) / 1);
  background-color: rgb(var(--tertiary-rgb) / var(--tw-bg-opacity));
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
  .title-decorator {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  position: relative;
}
  .title-decorator::after {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0px;
  height: 0.25rem;
  width: 2.5rem;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--tertiary-rgb) / 1);
  background-color: rgb(var(--tertiary-rgb) / var(--tw-bg-opacity));
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
  @media (min-width: 768px) {
  .title-decorator {
    font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
    font-size: 36px;
    line-height: 45px;
    font-weight: 700;
  }
}
  /* default styles for those dynamic text blocks */
  .editor-content {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
  .editor-content :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
  .editor-content :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
  .editor-content :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
  .editor-content :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
  .editor-content :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
  .editor-content :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
  .editor-content :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
  .editor-content :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
  .editor-content :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
  .editor-content :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
  .editor-content :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
  .editor-content :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
  .editor-content :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
  .editor-content :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
  .editor-content :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
  .editor-content :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
  .editor-content :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
  .editor-content :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
  .editor-content :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
  .editor-content :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
  .editor-content :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
  .editor-content :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
  .editor-content :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
  .editor-content :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
  .editor-content :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
  .editor-content :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
  .editor-content :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
  .editor-content :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
  .editor-content :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
  .editor-content :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
  .editor-content :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
  .editor-content :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
  .editor-content :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
  .editor-content :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
  .editor-content :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
  .editor-content :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}
  .editor-content :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
  .editor-content :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
  .editor-content :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
  .editor-content :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
  .editor-content :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
  .editor-content :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
  .editor-content :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
  .editor-content :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
  .editor-content :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
  .editor-content :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
  .editor-content :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
  .editor-content :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
  .editor-content :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
  .editor-content :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
  .editor-content :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
  .editor-content :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
  .editor-content :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
  .editor-content :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
  .editor-content :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
  .editor-content :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
  .editor-content :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
  .editor-content :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
  .editor-content :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
  .editor-content :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
  .editor-content {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
  .editor-content :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
  .editor-content :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
  .editor-content :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
  .editor-content :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
  .editor-content :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
  .editor-content :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
  .editor-content :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
  .editor-content :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
  .editor-content :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
  .editor-content :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
  .editor-content :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
  .editor-content :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
  .editor-content :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}
  .editor-content :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
  .editor-content :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
  .editor-content :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
  .editor-content :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
  .editor-content :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
  .editor-content :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
  .editor-content :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
  .editor-content :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
  .editor-content :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
  .editor-content :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
  .editor-content :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
  .editor-content :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
  .editor-content {
  max-width: 100%;
  overflow-wrap: break-word;
  font-size: 18px;
  line-height: 23px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
  @supports (color: rgb(0 0 0 / 0)) {
.editor-content {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
  .editor-content :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
  .editor-content :is(:where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  padding-left: 1rem;
}
  .editor-content {
    /* The editor-library adds an empty <p>. */
    /* stylelint-disable selector-pseudo-class-no-unknown */
  }
  .editor-content iframe {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: 450px;
  max-height: 70vh;
  width: 100%;
  max-width: 600px;
}
  .editor-content p {
  margin-top: 0px;
  margin-bottom: 0px;
}
  .editor-content p:not(:empty) + p,
  .editor-content :where(h2, h3, h4, h5, h6) + span {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
  .editor-content h2,
  .editor-content h3,
  .editor-content h4,
  .editor-content h5,
  .editor-content h6 {
  margin-top: 0px;
}
  .editor-content p:not(:empty) + h2 {
  margin-top: 2rem;
}
  .editor-content p:not(:empty) + h3 {
  margin-top: 1.5rem;
}
  .editor-content p:not(:empty) + h4 {
  margin-top: 1rem;
}
  .editor-content p:not(:empty) + h5,
  .editor-content p:not(:empty) + h6 {
  margin-top: 0.5rem;
}
  .editor-content :where(h2, h3, h4, h5, h6) br {
  display: none;
}
  .focus .focus__step.editor-content :where(h2, h3, h4, h5, h6) br {
  display: none;
}
  .rich-text-display ul,
  .rich-text-display ol {
  margin-bottom: 1rem;
}
  .rich-text-display .editor-content-videoEmbed {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
  .rich-text-display ul ul,
  .rich-text-display ul ol,
  .rich-text-display ol ol,
  .rich-text-display ol ul,
  .rich-text-display li p,
  .editor-container .editor-input .ProseMirror ul ul,
  .editor-container .editor-input .ProseMirror ul ol,
  .editor-container .editor-input .ProseMirror ol ol,
  .editor-container .editor-input .ProseMirror ol ul,
  .editor-container .editor-input .ProseMirror li p {
  margin-bottom: 0px;
}
  .rich-text-display ol[data-type=a],
  .editor-container .editor-input .ProseMirror ol[data-type=a] {
  list-style-type: lower-alpha;
}
  .rich-text-display ol[data-type=A],
  .editor-container .editor-input .ProseMirror ol[data-type=A] {
  list-style-type: upper-alpha;
}
  .rich-text-display ol[data-type=i],
  .editor-container .editor-input .ProseMirror ol[data-type=i] {
  list-style-type: lower-roman;
}
  .rich-text-display ol[data-type=I],
  .editor-container .editor-input .ProseMirror ol[data-type=I] {
  list-style-type: upper-roman;
}
  .rich-text-display .editor-content-videoEmbed,
  .editor-container .editor-input .ProseMirror .editor-content-videoEmbed {
  max-width: 640px;
}
  .rich-text-display .editor-content-videoEmbed > div,
  .editor-container .editor-input .ProseMirror .editor-content-videoEmbed > div {
  position: relative;
  height: 0px;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
}
  .rich-text-display .editor-content-videoEmbed iframe,
  .editor-container .editor-input .ProseMirror .editor-content-videoEmbed iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  width: 100%;
}
  .rich-text-display .editor-indent-1,
  .editor-container .editor-input .ProseMirror .editor-indent-1 {
  margin-left: 1rem;
}
  .rich-text-display .editor-indent-2,
  .editor-container .editor-input .ProseMirror .editor-indent-2 {
  margin-left: 2rem;
}
  .rich-text-display .editor-indent-3,
  .editor-container .editor-input .ProseMirror .editor-indent-3 {
  margin-left: 3rem;
}
  .rich-text-display .editor-indent-4,
  .editor-container .editor-input .ProseMirror .editor-indent-4 {
  margin-left: 4rem;
}
  .rich-text-display .editor-indent-5,
  .editor-container .editor-input .ProseMirror .editor-indent-5 {
  margin-left: 5rem;
}
  .rich-text-display .editor-indent-6,
  .editor-container .editor-input .ProseMirror .editor-indent-6 {
  margin-left: 6rem;
}
  .rich-text-display .editor-indent-7,
  .editor-container .editor-input .ProseMirror .editor-indent-7 {
  margin-left: 7rem;
}
  .rich-text-display .editor-indent-8,
  .editor-container .editor-input .ProseMirror .editor-indent-8 {
  margin-left: 8rem;
}
  .rich-text-display .editor-indent-9,
  .editor-container .editor-input .ProseMirror .editor-indent-9 {
  margin-left: 9rem;
}
  .rich-text-display .editor-indent-10,
  .editor-container .editor-input .ProseMirror .editor-indent-10 {
  margin-left: 10rem;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.\!container {
  width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .\!container {
    max-width: 640px !important;
  }

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .\!container {
    max-width: 768px !important;
  }

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .\!container {
    max-width: 1024px !important;
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .container {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  .\!container {
    max-width: 1280px !important;
  }

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .\!container {
    max-width: 1536px !important;
  }

  .container {
    max-width: 1536px;
  }
}
.prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.layout-container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.layout-container__skip {
  position: absolute;
  left: 0px;
  z-index: 10;
  --tw-translate-x: -100%;
  transform: translate(-100%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  cursor: pointer;
  border-bottom-right-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)) {
.layout-container__skip {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.layout-container__skip:focus {
  --tw-translate-x: 0px;
  transform: translate(0px, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.layout-container [data-content] {
  position: relative;
  display: flex;
  flex-direction: column;
}
.layout-1col {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .layout-1col {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .layout-1col {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .layout-1col {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  .layout-1col {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .layout-1col {
    max-width: 1536px;
  }
}
.layout-1col {
  margin-bottom: 3rem;
  display: grid;
  flex-grow: 1;
  grid-auto-rows: max-content;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: max-content;
}
.layout-1col.cols-6 > * {
  grid-column: span 12 / span 12;
  align-self: flex-start;
}
@media (min-width: 768px) {

  .layout-1col.cols-6 > * {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
  }
}
@media (min-width: 1024px) {

  .layout-1col.cols-6 > * {
    grid-column: span 6 / span 6;
    grid-column-start: 4;
  }
}
.layout-1col.cols-8 > * {
  grid-column: span 12 / span 12;
  align-self: flex-start;
}
@media (min-width: 768px) {

  .layout-1col.cols-8 > * {
    grid-column: span 10 / span 10;
    grid-column-start: 2;
  }
}
@media (min-width: 1024px) {

  .layout-1col.cols-8 > * {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
  }
}
.layout-1col.cols-10 > * {
  grid-column: span 12 / span 12;
  align-self: flex-start;
}
@media (min-width: 1024px) {

  .layout-1col.cols-10 > * {
    grid-column: span 10 / span 10;
    grid-column-start: 2;
  }
}
.layout-1col footer {
  margin-bottom: 3rem;
}
.layout-2col {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .layout-2col {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .layout-2col {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .layout-2col {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  .layout-2col {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .layout-2col {
    max-width: 1536px;
  }
}
.layout-2col {
  flex-grow: 1;
  grid-auto-rows: max-content;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
@media (min-width: 768px) {

  .layout-2col {
    display: grid;
  }
}
.layout-2col__aside {
  grid-column: span 4 / span 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.layout-2col__aside::before {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -10;
  height: 100%;
  width: 50%;
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@media (min-width: 768px) {

  .layout-2col__aside {
    justify-content: flex-start;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-right: 4rem;
  }

  .layout-2col__aside::before {
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 247 / 1);
  }

@supports (color: rgb(0 0 0 / 0)) {
.layout-2col__aside::before {
      background-color: rgb(243 244 247 / var(--tw-bg-opacity));
    }
}
}
@media (min-width: 1024px) {

  .layout-2col__aside {
    grid-column: span 3 / span 3;
  }
}
.layout-2col__main {
  grid-column: span 8 / span 8;
  min-height: 60vh;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.layout-2col__main {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
@media (min-width: 768px) {

  .layout-2col__main {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1024px) {

  .layout-2col__main {
    grid-column: span 9 / span 9;
  }
}
.layout-2col__reverse .layout-2col__aside {
  order: 9999;
  padding-right: 0px;
}
.layout-2col__reverse .layout-2col__aside::before {
  left: 100%;
  content: var(--tw-content);
  --tw-translate-x: -100%;
  transform: translate(-100%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.layout-2col__reverse .layout-2col__main {
  padding-left: 0px;
}
@media (min-width: 768px) {

  .layout-2col__reverse .layout-2col__main {
    padding-right: 4rem;
  }
}
.layout-item {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .layout-item {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .layout-item {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .layout-item {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  .layout-item {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .layout-item {
    max-width: 1536px;
  }
}
.layout-item {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 3rem;
  gap: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 1024px) {

  .layout-item {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    -moz-column-gap: 0px;
         column-gap: 0px;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.layout-item__main {
  position: relative;
}
@media (min-width: 1024px) {

  .layout-item__main {
    grid-column: span 8 / span 8;
  }
}
@media (min-width: 1280px) {

  .layout-item__main {
    grid-column: span 7 / span 7;
    grid-column-start: 2;
  }
}
@media (min-width: 1024px) {

  .layout-item__aside {
    grid-column: span 3 / span 3;
    grid-column-start: 10;
  }
}
@media (min-width: 1280px) {

  .layout-item__aside {
    grid-column: span 2 / span 2;
    grid-column-start: 10;
  }
}
.layout-item__arrow {
  position: fixed;
  top: 50%;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.layout-item__arrow {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.layout-item__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 4rem;
  width: 4rem;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 9999px;
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@media (min-width: 768px) {

  .layout-item__arrow::before {
    height: 24rem;
    content: var(--tw-content);
    width: 24rem;
  }
}
.layout-item__arrow.prev {
  left: 0px;
  --tw-translate-x: -50%;
  transform: translate(-50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  padding-left: 1rem;
  padding-right: 0px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.layout-item__arrow.prev::before {
  content: var(--tw-content);
  --tw-translate-x: -50%;
  transform: translate(-50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.layout-item__arrow.prev:hover {
  --tw-translate-x: -25%;
  transform: translate(-25%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 768px) {

  .layout-item__arrow.prev {
    --tw-translate-x: 0px;
    transform: translate(0px, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    padding-right: 0.25rem;
  }

  .layout-item__arrow.prev::before {
    content: var(--tw-content);
    --tw-translate-x: -75%;
    transform: translate(-75%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
.layout-item__arrow.next {
  right: 0px;
  --tw-translate-x: 50%;
  transform: translate(50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  padding-right: 1rem;
  padding-left: 0px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.layout-item__arrow.next::before {
  content: var(--tw-content);
  --tw-translate-x: -50%;
  transform: translate(-50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.layout-item__arrow.next:hover {
  --tw-translate-x: 25%;
  transform: translate(25%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 768px) {

  .layout-item__arrow.next {
    --tw-translate-x: 0px;
    transform: translate(0px, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    padding-left: 0.25rem;
  }

  .layout-item__arrow.next::before {
    content: var(--tw-content);
    --tw-translate-x: -25%;
    transform: translate(-25%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
.layout-item__arrow svg {
  height: 2rem;
  width: 2rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.layout-main__section + .layout-main__section,
  .layout-aside__section + .layout-aside__section,
  .layout-item__aside--footer > * + * {
    --vertical-spacing: 2.5rem;
    margin-top: 2.5rem;
    margin-top: var(--vertical-spacing);
  }
.layout-main__heading > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - 0));
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * 0);
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.layout-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.layout-aside__buttons > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.layout-main__buttons {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
.button {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: transparent;
  text-align: center;
  font-weight: 600;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.button:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.button>span {
  overflow-wrap: break-word;
  text-align: center;
}
.button>svg {
  flex: none;
  fill: currentColor;
}
.button__xs {
  gap: 0.25rem;
  font-size: 14px;
  line-height: 18px;
}
.button__xs:not([class*="button\_\_text"]) {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.button__sm {
  gap: 0.375rem;
  font-size: 14px;
  line-height: 18px;
}
.button__sm:not([class*="button\_\_text"]) {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.button__lg {
  gap: 0.5rem;
  font-size: 18px;
  line-height: 23px;
}
.button__lg:not([class*="button\_\_text"]) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.button__xl {
  gap: 1rem;
  font-size: 20px;
  line-height: 25px;
}
.button__xl:not([class*="button\_\_text"]) {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.button__primary {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.button__primary {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.button__primary:focus {
  outline-color: rgb(var(--primary-rgb));
}
.button__secondary {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.button__secondary {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.button__secondary:focus {
  outline-color: rgb(var(--secondary-rgb));
}
.button__tertiary {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--tertiary-rgb) / 1);
  background-color: rgb(var(--tertiary-rgb) / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.button__tertiary {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.button__tertiary:focus {
  outline-color: rgb(var(--tertiary-rgb));
}
.button__transparent {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.button__transparent {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.button__transparent-primary {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(var(--primary-rgb) / 1);
  border-color: rgb(var(--primary-rgb) / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(var(--primary-rgb) / 1);
  color: rgb(var(--primary-rgb) / var(--tw-text-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.button__transparent-primary {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.button__transparent-primary:focus {
  outline-color: rgb(var(--primary-rgb));
}
.button__transparent-secondary {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(var(--secondary-rgb) / 1);
  border-color: rgb(var(--secondary-rgb) / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.button__transparent-secondary {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.button__transparent-secondary:focus {
  outline-color: rgb(var(--secondary-rgb));
}
.button__transparent-tertiary {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(var(--tertiary-rgb) / 1);
  border-color: rgb(var(--tertiary-rgb) / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(var(--tertiary-rgb) / 1);
  color: rgb(var(--tertiary-rgb) / var(--tw-text-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.button__transparent-tertiary {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.button__transparent-tertiary:focus {
  outline-color: rgb(var(--tertiary-rgb));
}
.button__text {
  border-width: 0px;
  background-color: transparent;
  padding: 0px;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.button__text {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.button__text:hover {
  text-decoration-line: underline;
}
.button__text-primary {
  border-width: 0px;
  background-color: transparent;
  padding: 0px;
  --tw-text-opacity: 1;
  color: rgb(var(--primary-rgb) / 1);
  color: rgb(var(--primary-rgb) / var(--tw-text-opacity));
}
.button__text-primary:hover {
  text-decoration-line: underline;
}
.button__text-secondary {
  border-width: 0px;
  background-color: transparent;
  padding: 0px;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.button__text-secondary:hover {
  text-decoration-line: underline;
}
.button__text-tertiary {
  border-width: 0px;
  background-color: transparent;
  padding: 0px;
  --tw-text-opacity: 1;
  color: rgb(var(--tertiary-rgb) / 1);
  color: rgb(var(--tertiary-rgb) / var(--tw-text-opacity));
}
.button__text-tertiary:hover {
  text-decoration-line: underline;
}
.button[disabled], .button.disabled {
  cursor: not-allowed;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(62 76 92 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / 1);
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.button[disabled], .button.disabled {
    border-color: rgb(62 76 92 / var(--tw-border-opacity));
    background-color: rgb(239 239 239 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.button.is-hover, .button:not([disabled]):not([class*=button__text]):not(label):hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), rgb(var(--secondary-rgb));
}
@supports (color: rgb(0 0 0 / 0)) {
.button.is-hover, .button:not([disabled]):not([class*=button__text]):not(label):hover {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.button__pill {
  margin-left: 0px;
  margin-right: 0px;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(246 248 250 / 1);
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.button__pill {
    background-color: rgb(246 248 250 / var(--tw-bg-opacity));
  }
}
.button__pill:not(:last-child) {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.button__pill + .button__pill {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.button__pill--active {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.button__pill--active {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.button__pill--active .button__pill--count {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.button__pill--active .button__pill--count {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.button__pill--count {
  margin-left: 0.5rem;
  display: inline-grid;
  height: 18px;
  width: 18px;
  place-items: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
  font-size: 13px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.button__pill--count {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.label {
    --success: #16592e;
    --bg-success: #c4ecd0;
    --alert: #b9081b;
    --bg-alert: #ffdee3;
    --warning: #ad4910;
    --bg-warning: #ffeebd;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 0.25rem;
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 247 / 1);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(62 76 92 / 1);
  }
@supports (color: rgb(0 0 0 / 0)) {
.label {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.label.success {
  background-color: var(--bg-success);
  color: var(--success);
}
.label.\!success {
  background-color: var(--bg-success);
  color: var(--success);
}
.label.alert {
  background-color: var(--bg-alert);
  color: var(--alert);
}
.label.warning {
  background-color: var(--bg-warning);
  color: var(--warning);
}
.label.reverse {
  --tw-bg-opacity: 1;
  background-color: rgb(62 76 92 / 1);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.label.reverse {
    background-color: rgb(62 76 92 / var(--tw-bg-opacity));
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.form-defaults {
    /* text-like inputs */
    /* option-like inputs */
  }
.form-defaults input[type=date],
  .form-defaults input[type=datetime-local],
  .form-defaults input[type=email],
  .form-defaults input[type=month],
  .form-defaults input[type=number],
  .form-defaults input[type=password],
  .form-defaults input[type=search],
  .form-defaults input[type=tel],
  .form-defaults input[type=text],
  .form-defaults input[type=time],
  .form-defaults input[type=url],
  .form-defaults input[type=week],
  .form-defaults select,
  .form-defaults textarea {
    /* read-only can be applied only to input and textarea, otherwise selects will be set as readonly */
  }
.form-defaults input[type=date]:not(.reset-defaults),
  .form-defaults input[type=datetime-local]:not(.reset-defaults),
  .form-defaults input[type=email]:not(.reset-defaults),
  .form-defaults input[type=month]:not(.reset-defaults),
  .form-defaults input[type=number]:not(.reset-defaults),
  .form-defaults input[type=password]:not(.reset-defaults),
  .form-defaults input[type=search]:not(.reset-defaults),
  .form-defaults input[type=tel]:not(.reset-defaults),
  .form-defaults input[type=text]:not(.reset-defaults),
  .form-defaults input[type=time]:not(.reset-defaults),
  .form-defaults input[type=url]:not(.reset-defaults),
  .form-defaults input[type=week]:not(.reset-defaults),
  .form-defaults select:not(.reset-defaults),
  .form-defaults textarea:not(.reset-defaults) {
  display: inline-block;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: #6B7280CC;
  --tw-bg-opacity: 1;
  background-color: rgb(250 251 252 / 1);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
  outline-style: solid;
  outline-width: 1px;
  outline-color: transparent;
}
@supports (color: rgb(0 0 0 / 0)) {
.form-defaults input[type=date]:not(.reset-defaults),
  .form-defaults input[type=datetime-local]:not(.reset-defaults),
  .form-defaults input[type=email]:not(.reset-defaults),
  .form-defaults input[type=month]:not(.reset-defaults),
  .form-defaults input[type=number]:not(.reset-defaults),
  .form-defaults input[type=password]:not(.reset-defaults),
  .form-defaults input[type=search]:not(.reset-defaults),
  .form-defaults input[type=tel]:not(.reset-defaults),
  .form-defaults input[type=text]:not(.reset-defaults),
  .form-defaults input[type=time]:not(.reset-defaults),
  .form-defaults input[type=url]:not(.reset-defaults),
  .form-defaults input[type=week]:not(.reset-defaults),
  .form-defaults select:not(.reset-defaults),
  .form-defaults textarea:not(.reset-defaults) {
    background-color: rgb(250 251 252 / var(--tw-bg-opacity));
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.form-defaults input[type=date]:not(.reset-defaults)::-moz-placeholder, .form-defaults input[type=datetime-local]:not(.reset-defaults)::-moz-placeholder, .form-defaults input[type=email]:not(.reset-defaults)::-moz-placeholder, .form-defaults input[type=month]:not(.reset-defaults)::-moz-placeholder, .form-defaults input[type=number]:not(.reset-defaults)::-moz-placeholder, .form-defaults input[type=password]:not(.reset-defaults)::-moz-placeholder, .form-defaults input[type=search]:not(.reset-defaults)::-moz-placeholder, .form-defaults input[type=tel]:not(.reset-defaults)::-moz-placeholder, .form-defaults input[type=text]:not(.reset-defaults)::-moz-placeholder, .form-defaults input[type=time]:not(.reset-defaults)::-moz-placeholder, .form-defaults input[type=url]:not(.reset-defaults)::-moz-placeholder, .form-defaults input[type=week]:not(.reset-defaults)::-moz-placeholder, .form-defaults select:not(.reset-defaults)::-moz-placeholder, .form-defaults textarea:not(.reset-defaults)::-moz-placeholder {
  color: #6B7280CC;
}
.form-defaults input[type=date]:not(.reset-defaults)::placeholder,
  .form-defaults input[type=datetime-local]:not(.reset-defaults)::placeholder,
  .form-defaults input[type=email]:not(.reset-defaults)::placeholder,
  .form-defaults input[type=month]:not(.reset-defaults)::placeholder,
  .form-defaults input[type=number]:not(.reset-defaults)::placeholder,
  .form-defaults input[type=password]:not(.reset-defaults)::placeholder,
  .form-defaults input[type=search]:not(.reset-defaults)::placeholder,
  .form-defaults input[type=tel]:not(.reset-defaults)::placeholder,
  .form-defaults input[type=text]:not(.reset-defaults)::placeholder,
  .form-defaults input[type=time]:not(.reset-defaults)::placeholder,
  .form-defaults input[type=url]:not(.reset-defaults)::placeholder,
  .form-defaults input[type=week]:not(.reset-defaults)::placeholder,
  .form-defaults select:not(.reset-defaults)::placeholder,
  .form-defaults textarea:not(.reset-defaults)::placeholder {
  color: #6B7280CC;
}
.form-defaults input[type=date]:not(.reset-defaults):focus,
  .form-defaults input[type=datetime-local]:not(.reset-defaults):focus,
  .form-defaults input[type=email]:not(.reset-defaults):focus,
  .form-defaults input[type=month]:not(.reset-defaults):focus,
  .form-defaults input[type=number]:not(.reset-defaults):focus,
  .form-defaults input[type=password]:not(.reset-defaults):focus,
  .form-defaults input[type=search]:not(.reset-defaults):focus,
  .form-defaults input[type=tel]:not(.reset-defaults):focus,
  .form-defaults input[type=text]:not(.reset-defaults):focus,
  .form-defaults input[type=time]:not(.reset-defaults):focus,
  .form-defaults input[type=url]:not(.reset-defaults):focus,
  .form-defaults input[type=week]:not(.reset-defaults):focus,
  .form-defaults select:not(.reset-defaults):focus,
  .form-defaults textarea:not(.reset-defaults):focus {
  outline-width: 2px;
  outline-color: rgb(var(--secondary-rgb));
}
.form-defaults input[type=date]:not(.reset-defaults):disabled,
  .form-defaults input[type=datetime-local]:not(.reset-defaults):disabled,
  .form-defaults input[type=email]:not(.reset-defaults):disabled,
  .form-defaults input[type=month]:not(.reset-defaults):disabled,
  .form-defaults input[type=number]:not(.reset-defaults):disabled,
  .form-defaults input[type=password]:not(.reset-defaults):disabled,
  .form-defaults input[type=search]:not(.reset-defaults):disabled,
  .form-defaults input[type=tel]:not(.reset-defaults):disabled,
  .form-defaults input[type=text]:not(.reset-defaults):disabled,
  .form-defaults input[type=time]:not(.reset-defaults):disabled,
  .form-defaults input[type=url]:not(.reset-defaults):disabled,
  .form-defaults input[type=week]:not(.reset-defaults):disabled,
  .form-defaults select:not(.reset-defaults):disabled,
  .form-defaults textarea:not(.reset-defaults):disabled {
  cursor: not-allowed;
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / 1);
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.form-defaults input[type=date]:not(.reset-defaults):disabled,
  .form-defaults input[type=datetime-local]:not(.reset-defaults):disabled,
  .form-defaults input[type=email]:not(.reset-defaults):disabled,
  .form-defaults input[type=month]:not(.reset-defaults):disabled,
  .form-defaults input[type=number]:not(.reset-defaults):disabled,
  .form-defaults input[type=password]:not(.reset-defaults):disabled,
  .form-defaults input[type=search]:not(.reset-defaults):disabled,
  .form-defaults input[type=tel]:not(.reset-defaults):disabled,
  .form-defaults input[type=text]:not(.reset-defaults):disabled,
  .form-defaults input[type=time]:not(.reset-defaults):disabled,
  .form-defaults input[type=url]:not(.reset-defaults):disabled,
  .form-defaults input[type=week]:not(.reset-defaults):disabled,
  .form-defaults select:not(.reset-defaults):disabled,
  .form-defaults textarea:not(.reset-defaults):disabled {
    background-color: rgb(239 239 239 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.form-defaults input[type=date]:not(.reset-defaults).sm,
  .form-defaults input[type=datetime-local]:not(.reset-defaults).sm,
  .form-defaults input[type=email]:not(.reset-defaults).sm,
  .form-defaults input[type=month]:not(.reset-defaults).sm,
  .form-defaults input[type=number]:not(.reset-defaults).sm,
  .form-defaults input[type=password]:not(.reset-defaults).sm,
  .form-defaults input[type=search]:not(.reset-defaults).sm,
  .form-defaults input[type=tel]:not(.reset-defaults).sm,
  .form-defaults input[type=text]:not(.reset-defaults).sm,
  .form-defaults input[type=time]:not(.reset-defaults).sm,
  .form-defaults input[type=url]:not(.reset-defaults).sm,
  .form-defaults input[type=week]:not(.reset-defaults).sm,
  .form-defaults select:not(.reset-defaults).sm,
  .form-defaults textarea:not(.reset-defaults).sm {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-size: 14px;
  line-height: 18px;
}
.form-defaults input[type=date]:not(.reset-defaults).sm-icon,
  .form-defaults input[type=datetime-local]:not(.reset-defaults).sm-icon,
  .form-defaults input[type=email]:not(.reset-defaults).sm-icon,
  .form-defaults input[type=month]:not(.reset-defaults).sm-icon,
  .form-defaults input[type=number]:not(.reset-defaults).sm-icon,
  .form-defaults input[type=password]:not(.reset-defaults).sm-icon,
  .form-defaults input[type=search]:not(.reset-defaults).sm-icon,
  .form-defaults input[type=tel]:not(.reset-defaults).sm-icon,
  .form-defaults input[type=text]:not(.reset-defaults).sm-icon,
  .form-defaults input[type=time]:not(.reset-defaults).sm-icon,
  .form-defaults input[type=url]:not(.reset-defaults).sm-icon,
  .form-defaults input[type=week]:not(.reset-defaults).sm-icon,
  .form-defaults select:not(.reset-defaults).sm-icon,
  .form-defaults textarea:not(.reset-defaults).sm-icon {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  padding-right: 0.25rem;
  padding-left: 1.5rem;
  font-size: 14px;
  line-height: 18px;
}
.form-defaults input[type=date]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults input[type=datetime-local]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults input[type=email]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults input[type=month]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults input[type=number]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults input[type=password]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults input[type=search]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults input[type=tel]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults input[type=text]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults input[type=time]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults input[type=url]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults input[type=week]:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults select:not(.reset-defaults).is-invalid-input:not(:focus),
  .form-defaults textarea:not(.reset-defaults).is-invalid-input:not(:focus) {
  outline-width: 2px;
  outline-color: rgb(var(--alert-rgb));
}
.form-defaults input[type=date]:not(select):-moz-read-only, .form-defaults input[type=datetime-local]:not(select):-moz-read-only, .form-defaults input[type=email]:not(select):-moz-read-only, .form-defaults input[type=month]:not(select):-moz-read-only, .form-defaults input[type=number]:not(select):-moz-read-only, .form-defaults input[type=password]:not(select):-moz-read-only, .form-defaults input[type=search]:not(select):-moz-read-only, .form-defaults input[type=tel]:not(select):-moz-read-only, .form-defaults input[type=text]:not(select):-moz-read-only, .form-defaults input[type=time]:not(select):-moz-read-only, .form-defaults input[type=url]:not(select):-moz-read-only, .form-defaults input[type=week]:not(select):-moz-read-only, .form-defaults select:not(select):-moz-read-only, .form-defaults textarea:not(select):-moz-read-only {
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
.form-defaults input[type=date]:not(select):read-only,
  .form-defaults input[type=datetime-local]:not(select):read-only,
  .form-defaults input[type=email]:not(select):read-only,
  .form-defaults input[type=month]:not(select):read-only,
  .form-defaults input[type=number]:not(select):read-only,
  .form-defaults input[type=password]:not(select):read-only,
  .form-defaults input[type=search]:not(select):read-only,
  .form-defaults input[type=tel]:not(select):read-only,
  .form-defaults input[type=text]:not(select):read-only,
  .form-defaults input[type=time]:not(select):read-only,
  .form-defaults input[type=url]:not(select):read-only,
  .form-defaults input[type=week]:not(select):read-only,
  .form-defaults select:not(select):read-only,
  .form-defaults textarea:not(select):read-only {
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.form-defaults input[type=date]:not(select):-moz-read-only, .form-defaults input[type=datetime-local]:not(select):-moz-read-only, .form-defaults input[type=email]:not(select):-moz-read-only, .form-defaults input[type=month]:not(select):-moz-read-only, .form-defaults input[type=number]:not(select):-moz-read-only, .form-defaults input[type=password]:not(select):-moz-read-only, .form-defaults input[type=search]:not(select):-moz-read-only, .form-defaults input[type=tel]:not(select):-moz-read-only, .form-defaults input[type=text]:not(select):-moz-read-only, .form-defaults input[type=time]:not(select):-moz-read-only, .form-defaults input[type=url]:not(select):-moz-read-only, .form-defaults input[type=week]:not(select):-moz-read-only, .form-defaults select:not(select):-moz-read-only, .form-defaults textarea:not(select):-moz-read-only {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
.form-defaults input[type=date]:not(select):read-only,
  .form-defaults input[type=datetime-local]:not(select):read-only,
  .form-defaults input[type=email]:not(select):read-only,
  .form-defaults input[type=month]:not(select):read-only,
  .form-defaults input[type=number]:not(select):read-only,
  .form-defaults input[type=password]:not(select):read-only,
  .form-defaults input[type=search]:not(select):read-only,
  .form-defaults input[type=tel]:not(select):read-only,
  .form-defaults input[type=text]:not(select):read-only,
  .form-defaults input[type=time]:not(select):read-only,
  .form-defaults input[type=url]:not(select):read-only,
  .form-defaults input[type=week]:not(select):read-only,
  .form-defaults select:not(select):read-only,
  .form-defaults textarea:not(select):read-only {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.form-defaults input[type=checkbox]:not(.reset-defaults),
  .form-defaults input[type=radio]:not(.reset-defaults) {
  margin-right: 0.5rem;
  display: inline-block;
}
.form-defaults select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 12 8%27%3e%3cpath fill=%27%233E4C5C%27 d=%27M5.99962 4.97656L10.1246 0.851562L11.303 2.0299L5.99962 7.33323L0.696289 2.0299L1.87462 0.851562L5.99962 4.97656Z%27/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 0.75rem;
}
.form-defaults select:not(.reset-defaults) {
  padding-right: 2rem;
}
.form-error {
  margin-top: 0.5rem;
  display: none;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(var(--alert-rgb) / 1);
  color: rgb(var(--alert-rgb) / var(--tw-text-opacity));
}
.focus .focus__step.form-error {
  display: none;
}
.form-error.is-visible {
  display: block;
}
.help-text {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.help-text {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.help-text :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
  text-decoration-line: underline;
}
.form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.form__wrapper:last-child {
  padding-bottom: 0px;
}
.form__wrapper-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.form__wrapper-block {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.form__wrapper-block:last-child {
  padding-bottom: 0px;
}
.form__wrapper-block *:only-child {
  margin-left: auto;
}
.form__wrapper-block p {
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.form__wrapper-block p {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.form__wrapper-checkbox-label {
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.form__wrapper-checkbox-label {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.form__wrapper-checkbox-label :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
  text-decoration-line: underline;
}
.form__wrapper-checkbox-label + .form__wrapper-checkbox-label {
  display: block;
}
.form__wrapper label:not(.form__wrapper-checkbox-label), .form__wrapper-block label:not(.form__wrapper-checkbox-label) {
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
}
.form__wrapper .help-text {
  margin-top: 1rem;
}
.form__wrapper input[type=date],
  .form__wrapper input[type=datetime-local],
  .form__wrapper input[type=email],
  .form__wrapper input[type=month],
  .form__wrapper input[type=number],
  .form__wrapper input[type=password],
  .form__wrapper input[type=search],
  .form__wrapper input[type=tel],
  .form__wrapper input[type=text],
  .form__wrapper input[type=time],
  .form__wrapper input[type=url],
  .form__wrapper input[type=week],
  .form__wrapper select,
  .form__wrapper textarea {
  margin-top: 1rem;
  display: block;
  width: 100%;
}
.form__wrapper input[type=checkbox],
  .form__wrapper input[type=radio] {
  margin-top: 1rem;
}
.input-character-counter {
  position: relative;
  margin-top: 1rem;
  display: block;
}
.input-character-counter input[type=date],
  .input-character-counter input[type=datetime-local],
  .input-character-counter input[type=email],
  .input-character-counter input[type=month],
  .input-character-counter input[type=number],
  .input-character-counter input[type=password],
  .input-character-counter input[type=search],
  .input-character-counter input[type=tel],
  .input-character-counter input[type=text],
  .input-character-counter input[type=time],
  .input-character-counter input[type=url],
  .input-character-counter input[type=week],
  .input-character-counter select,
  .input-character-counter textarea {
  margin-top: 0px;
}
.input-character-counter__container {
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), -100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.input-character-counter__text {
  float: right;
  margin-top: 0.25rem;
  display: inline-block;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.input-character-counter__text {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.input-group__password {
  position: relative;
  width: 100%;
}
.input-group__password input {
  width: 100%;
}
.input-group__password button {
  position: absolute;
  right: 0.5rem;
  top: 2rem;
}
.emoji__container {
  position: relative;
}
.emoji__trigger {
  position: relative;
  display: block;
}
.emoji__button {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  cursor: pointer;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.emoji__button {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.emoji__button svg {
    width: 1em;
  }
.emoji__reference {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: block;
}
.emoji__decidim {
  z-index: 50;
  max-width: 100%;
}
input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }
.autoComplete_wrapper {
    display: block;
  }
.old-password__wrapper {
  border-radius: 0.25rem;
  border-width: 2px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(var(--secondary-rgb) / 1);
  border-color: rgb(var(--secondary-rgb) / var(--tw-border-opacity));
  padding: 2.5rem;
    background-color: rgb(var(--secondary-rgb)/0.05);
}
[id*=dropdown-menu] {
  margin-left: 0.875rem;
  margin-right: 0.875rem;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  border-top-width: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  padding-top: 0px;
  padding-bottom: 0px;
}
@supports (color: rgb(0 0 0 / 0)) {
[id*=dropdown-menu] {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
  }
}
@media (min-width: 768px) {

  [id*=dropdown-menu] {
    margin-left: 0px;
    margin-right: 0px;
  }
}
[id*=dropdown-menu][aria-hidden=true] {
  display: none;
}
.focus .focus__step[id*=dropdown-menu][aria-hidden=true] {
  display: none;
}
@media (min-width: 768px) {

  [id*=dropdown-menu][aria-hidden=true] {
    display: flex;
  }
}
[data-target*=dropdown] {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem;
}
@media (min-width: 768px) {

  [data-target*=dropdown] {
    display: none;
  }
}
[data-target*=dropdown]>svg:first-of-type {
  display: block;
}
[data-target*=dropdown]>svg:last-of-type {
  display: none;
}
[data-target*=dropdown] > span {
  display: none;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.focus .focus__step[data-target*=dropdown] > span {
  display: none;
}
[data-target*=dropdown] > span:only-of-type, [data-target*=dropdown] > span.is-active {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
[data-target*=dropdown] > span:only-of-type svg, [data-target*=dropdown] > span.is-active svg {
  fill: currentColor;
}
[data-target*=dropdown] > svg {
  height: 2rem;
  width: 2rem;
  flex: none;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
[data-target*=dropdown][aria-expanded=false] > svg:last-of-type, [data-target*=dropdown][aria-expanded=true] > svg:first-of-type {
  display: none;
}
.focus .focus__step[data-target*=dropdown][aria-expanded=false] > svg:last-of-type,.focus .focus__step [data-target*=dropdown][aria-expanded=true] > svg:first-of-type {
  display: none;
}
[data-target*=dropdown][aria-expanded=true] > svg:last-of-type, [data-target*=dropdown][aria-expanded=false] > svg:first-of-type {
  display: block;
}
.dropdown {
  position: absolute;
  z-index: 10;
  min-width: -moz-max-content;
  min-width: max-content;
  border-radius: 0.25rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  padding: 1rem;
  text-align: left;
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    /*
      NOTE: the calculated value is the sum of the arrow offset position plus the half of the arrow size:
      - offset position: 20%
      - arrow size: 1.5rem
    */
    --arrow-offset: 20%;
    --arrow-size: 1.5rem;
    --arrow-visible-size: var(--arrow-size) * 0.5;
}
@supports (color: rgb(0 0 0 / 0)) {
.dropdown {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
  }
}
.dropdown > * {
  position: relative;
  z-index: 10;
  padding: 0.875rem;
}
.dropdown > *:first-child {
  padding-top: 0.375rem;
}
.dropdown > *:last-child {
  padding-bottom: 0.375rem;
}
.dropdown__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
    font-size: 14px;
}
.dropdown__item > svg {
  height: 1rem;
  width: 1rem;
  flex: none;
  fill: currentColor;
  color: #6B7280CC;
}
.dropdown__item:hover {
  text-decoration-line: underline;
}
.dropdown__item:hover>svg {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.dropdown__bottom {
  top: 100%;
  right: 0px;
  margin-top: 0.75rem;
  --tw-translate-x: calc(var(--arrow-offset) - var(--arrow-visible-size));
  transform: translate(calc(var(--arrow-offset) - var(--arrow-visible-size)), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.dropdown__bottom::before {
  position: absolute;
  right: var(--arrow-offset);
  top: -0.5rem;
  height: var(--arrow-size);
  width: var(--arrow-size);
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 0.25rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
.dropdown__bottom::before {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.dropdown__bottom::after {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
.dropdown__bottom::after {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.login__box {
  display: flex;
  width: 100%;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 0.25rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding: 1.5rem;
  text-align: left;
}
@supports (color: rgb(0 0 0 / 0)) {
.login__box {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
@media (min-width: 768px) {

  .login__box {
    width: 50%;
  }
}
.login__box-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {

  .login__box-container {
    flex-direction: row;
    gap: 3rem;
  }
}
.login__box-icon {
  height: 2rem;
  width: 2rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(var(--tertiary-rgb) / 1);
  color: rgb(var(--tertiary-rgb) / var(--tw-text-opacity));
}
.login__box-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
.login__box-description {
  font-size: 18px;
  line-height: 23px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.login__box-description {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.login__box-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.login__box:hover {
  --tw-border-opacity: 1;
  border-color: rgb(var(--tertiary-rgb) / 1);
  border-color: rgb(var(--tertiary-rgb) / var(--tw-border-opacity));
}
.login__box:hover .login__box-link {
  text-decoration-line: underline;
}
.callout > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.callout {
  border-radius: 0.25rem;
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(var(--secondary-rgb) / 1);
  border-color: rgb(var(--secondary-rgb) / var(--tw-border-opacity));
  background-color: rgb(var(--secondary-rgb) / 0.05);
  padding: 1rem;
}
.callout.success {
  --tw-border-opacity: 1;
  border-color: rgb(var(--success-rgb) / 1);
  border-color: rgb(var(--success-rgb) / var(--tw-border-opacity));
  background-color: rgb(var(--success-rgb) / 0.05);
}
.callout.\!success {
  --tw-border-opacity: 1;
  border-color: rgb(var(--success-rgb) / 1);
  border-color: rgb(var(--success-rgb) / var(--tw-border-opacity));
  background-color: rgb(var(--success-rgb) / 0.05);
}
.callout.alert {
  --tw-border-opacity: 1;
  border-color: rgb(var(--alert-rgb) / 1);
  border-color: rgb(var(--alert-rgb) / var(--tw-border-opacity));
  background-color: rgb(var(--alert-rgb) / 0.05);
}
.callout.warning {
  --tw-border-opacity: 1;
  border-color: rgb(var(--warning-rgb) / 1);
  border-color: rgb(var(--warning-rgb) / var(--tw-border-opacity));
  background-color: rgb(var(--warning-rgb) / 0.05);
}
.callout + * {
  margin-top: 1rem;
}
.callout a {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.callout[data-component=accordion] [id*=panel][aria-hidden=true] {
  position: relative;
  display: block;
  max-height: 3.5rem;
  overflow: hidden;
}
.callout[data-component=accordion] [id*=panel][aria-hidden=true]::before {
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, transparent var(--tw-gradient-from-position), #fff var(--tw-gradient-to-position));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
.callout[data-component=accordion] [id*=panel][aria-hidden=true]::after {
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, transparent var(--tw-gradient-from-position), rgb(var(--secondary-rgb) / 0.05) var(--tw-gradient-to-position));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: rgb(var(--secondary-rgb) / 0.05) var(--tw-gradient-to-position);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
.callout[data-component=accordion].success [id*=panel][aria-hidden=true]::after {
  content: var(--tw-content);
  --tw-gradient-to: rgb(var(--success-rgb) / 0.05) var(--tw-gradient-to-position);
}
.callout[data-component=accordion].\!success [id*=panel][aria-hidden=true]::after {
  content: var(--tw-content);
  --tw-gradient-to: rgb(var(--success-rgb) / 0.05) var(--tw-gradient-to-position);
}
.callout[data-component=accordion].alert [id*=panel][aria-hidden=true]::after {
  content: var(--tw-content);
  --tw-gradient-to: rgb(var(--alert-rgb) / 0.05) var(--tw-gradient-to-position);
}
.callout[data-component=accordion].warning [id*=panel][aria-hidden=true]::after {
  content: var(--tw-content);
  --tw-gradient-to: rgb(var(--warning-rgb) / 0.05) var(--tw-gradient-to-position);
}
.callout[data-component=accordion] [aria-expanded=false] > svg:last-of-type,
  .callout[data-component=accordion] [aria-expanded=false] > span:last-of-type,
  .callout[data-component=accordion] [aria-expanded=true] > span:first-of-type,
  .callout[data-component=accordion] [aria-expanded=true] > svg:first-of-type {
  display: none;
}
.focus .focus__step.callout[data-component=accordion] [aria-expanded=false] > svg:last-of-type,.focus .focus__step
  .callout[data-component=accordion] [aria-expanded=false] > span:last-of-type,.focus .focus__step
  .callout[data-component=accordion] [aria-expanded=true] > span:first-of-type,.focus .focus__step
  .callout[data-component=accordion] [aria-expanded=true] > svg:first-of-type {
  display: none;
}
.callout[data-component=accordion] [aria-expanded=true] > svg:last-of-type,
  .callout[data-component=accordion] [aria-expanded=true] > span:last-of-type,
  .callout[data-component=accordion] [aria-expanded=false] > span:first-of-type,
  .callout[data-component=accordion] [aria-expanded=false] > svg:first-of-type {
  display: block;
}
[data-component=accordion] [id*=panel][aria-hidden=true] {
    display: none;
  }
[data-component=accordion] [id*=comment][class=comment-reply][aria-hidden=true] {
    display: none;
  }
[data-component=accordion] [id*=comment][class=comment-reply][aria-hidden=false] {
    display: block;
  }
.tos {
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: #6B7280CC;
  padding: 1rem;
}
.tos__buttons {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.vertical-tabs {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-rows: max-content;
  grid-gap: 2.5rem;
  gap: 2.5rem;
}
@media (min-width: 768px) {

  .vertical-tabs {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {

  .vertical-tabs {
    gap: 5rem;
  }
}
.vertical-tabs>*:first-child {
  grid-column: 1 / -1;
}
.vertical-tabs>*:last-child {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {

  .vertical-tabs>*:first-child {
    grid-column: span 3 / span 3;
  }

  .vertical-tabs>*:last-child {
    grid-column: span 7 / span 7;
  }
}
.vertical-tabs__list > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(0px * calc(1 - 0));
  border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(0px * 0);
  border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.vertical-tabs__list > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
.vertical-tabs__list {
  border-radius: 0.25rem;
}
@media (min-width: 768px) {

  .vertical-tabs__list > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - 0));
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * 0);
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  }

  .vertical-tabs__list {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 247 / 1);
  }

@supports (color: rgb(0 0 0 / 0)) {
.vertical-tabs__list {
      background-color: rgb(243 244 247 / var(--tw-bg-opacity));
    }
}
}
.vertical-tabs__list a {
  display: block;
  height: 100%;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.vertical-tabs__list a:hover {
  text-decoration-line: underline;
}
@media (min-width: 768px) {

  .vertical-tabs__list a {
    padding: 1rem;
  }
}
.vertical-tabs__list li.is-active a {
  border-left-width: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(var(--primary-rgb) / 1);
  border-color: rgb(var(--primary-rgb) / var(--tw-border-opacity));
  font-weight: 600;
}
@media (min-width: 768px) {

  .vertical-tabs__list li.is-active a {
    border-left-width: 4px;
  }
}
.vertical-tabs nav {
  align-self: flex-start;
  border-radius: 0.25rem;
  border-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.vertical-tabs nav {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
@media (min-width: 768px) {

  .vertical-tabs nav {
    border-width: 0px;
  }
}
.vertical-tabs [id*=dropdown-menu] {
  margin-left: 0.875rem;
  margin-right: 0.875rem;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.vertical-tabs [id*=dropdown-menu] {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
  }
}
@media (min-width: 768px) {

  .vertical-tabs [id*=dropdown-menu] {
    margin-left: 0px;
    margin-right: 0px;
    border-top-width: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.vertical-tabs [id*=dropdown-menu][aria-hidden=true] {
  display: none;
}
.focus .focus__step.vertical-tabs [id*=dropdown-menu][aria-hidden=true] {
  display: none;
}
@media (min-width: 768px) {

  .vertical-tabs [id*=dropdown-menu][aria-hidden=true] {
    display: flex;
  }
}
.vertical-tabs [data-target*=dropdown] {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem;
}
@media (min-width: 768px) {

  .vertical-tabs [data-target*=dropdown] {
    display: none;
  }
}
.vertical-tabs [data-target*=dropdown]>svg:first-of-type {
  display: block;
}
.vertical-tabs [data-target*=dropdown]>svg:last-of-type {
  display: none;
}
.vertical-tabs [data-target*=dropdown] > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.vertical-tabs [data-target*=dropdown] > span svg {
  fill: currentColor;
}
.vertical-tabs [data-target*=dropdown] > svg {
  height: 2rem;
  width: 2rem;
  flex: none;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.vertical-tabs [data-target*=dropdown][aria-expanded=false] > svg:last-of-type, .vertical-tabs [data-target*=dropdown][aria-expanded=true] > svg:first-of-type {
  display: none;
}
.focus .focus__step.vertical-tabs [data-target*=dropdown][aria-expanded=false] > svg:last-of-type,.focus .focus__step .vertical-tabs [data-target*=dropdown][aria-expanded=true] > svg:first-of-type {
  display: none;
}
.vertical-tabs [data-target*=dropdown][aria-expanded=true] > svg:last-of-type, .vertical-tabs [data-target*=dropdown][aria-expanded=false] > svg:first-of-type {
  display: block;
}
.flash {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(var(--secondary-rgb) / 1);
  border-color: rgb(var(--secondary-rgb) / var(--tw-border-opacity));
  background-color: rgb(var(--secondary-rgb) / 0.05);
  padding: 1rem;
}
.flash__icon svg {
  height: 3rem;
  width: 3rem;
  flex: none;
  fill: currentColor;
}
.flash__title {
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
}
.flash__message {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.flash__message {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.flash__message a {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
  text-decoration-line: underline;
}
.flash__message a svg {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.flash__message p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  line-height: 1.5rem;
}
.flash__message ul {
  margin-left: 1rem;
}
.flash__message ul li {
  list-style-type: disc;
}
.flash__message-body {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.flash__message-body {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.flash__message-body :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
  text-decoration-line: underline;
}
.flash .close-button {
  margin-left: auto;
  align-self: flex-start;
}
.flash .close-button svg {
  height: 1.25rem;
  width: 1.25rem;
  fill: currentColor;
}
.flash.primary svg {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.flash.secondary .flash__icon, .flash.info .flash__icon {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.flash.success {
  --tw-border-opacity: 1;
  border-color: rgb(var(--success-rgb) / 1);
  border-color: rgb(var(--success-rgb) / var(--tw-border-opacity));
  background-color: rgb(var(--success-rgb) / 0.05);
}
.flash.\!success {
  --tw-border-opacity: 1;
  border-color: rgb(var(--success-rgb) / 1);
  border-color: rgb(var(--success-rgb) / var(--tw-border-opacity));
  background-color: rgb(var(--success-rgb) / 0.05);
}
.flash.success .flash__icon {
  --tw-text-opacity: 1;
  color: rgb(var(--success-rgb) / 1);
  color: rgb(var(--success-rgb) / var(--tw-text-opacity));
}
.flash.\!success .flash__icon {
  --tw-text-opacity: 1;
  color: rgb(var(--success-rgb) / 1);
  color: rgb(var(--success-rgb) / var(--tw-text-opacity));
}
.flash.alert {
  --tw-border-opacity: 1;
  border-color: rgb(var(--alert-rgb) / 1);
  border-color: rgb(var(--alert-rgb) / var(--tw-border-opacity));
  background-color: rgb(var(--alert-rgb) / 0.05);
}
.flash.alert .flash__icon {
  --tw-text-opacity: 1;
  color: rgb(var(--alert-rgb) / 1);
  color: rgb(var(--alert-rgb) / var(--tw-text-opacity));
}
.flash.warning {
  --tw-border-opacity: 1;
  border-color: rgb(var(--warning-rgb) / 1);
  border-color: rgb(var(--warning-rgb) / var(--tw-border-opacity));
  background-color: rgb(var(--warning-rgb) / 0.05);
}
.flash.warning .flash__icon {
  --tw-text-opacity: 1;
  color: rgb(var(--warning-rgb) / 1);
  color: rgb(var(--warning-rgb) / var(--tw-text-opacity));
}
.static-map {
  cursor: pointer;
  overflow: hidden;
}
.static-map img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.static-map__container {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.5rem;
}
@media (min-width: 768px) {

  .static-map__container {
    flex-direction: row;
    align-items: center;
  }
}
.static-map__container>* {
  width: 100%;
}
.static-map__container>*:last-child {
  height: 120px;
  flex-grow: 1;
}
@media (min-width: 768px) {

  .static-map__container>* {
    width: 50%;
  }
}
.static-map__admin {
  display: flex;
  justify-content: center;
}
.static-map__admin img {
  width: 13rem;
}
.filter {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.25rem;
  padding: 0.375rem;
}
.filter-container {
  border-radius: 0.25rem;
  border-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.filter-container {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
@media (min-width: 768px) {

  .filter-container {
    border-width: 0px;
  }
}
.filter-container [id*=dropdown-menu] {
  gap: 0.25rem;
}
.filter-container [data-controls*=panel] {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.375rem;
}
.filter-container [data-controls*=panel]>svg:first-of-type {
  display: block;
}
.filter-container [data-controls*=panel]>svg:last-of-type {
  display: none;
}
.filter-container [data-controls*=panel] > span {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.filter-container [data-controls*=panel] > span {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.filter-container [data-controls*=panel] > svg {
  height: 0.875rem;
  width: 0.875rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.filter-container [data-controls*=panel] > svg {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.filter-container [data-controls*=panel][aria-expanded=false] > svg:last-of-type, .filter-container [data-controls*=panel][aria-expanded=true] > svg:first-of-type {
  display: none;
}
.focus .focus__step.filter-container [data-controls*=panel][aria-expanded=false] > svg:last-of-type,.focus .focus__step .filter-container [data-controls*=panel][aria-expanded=true] > svg:first-of-type {
  display: none;
}
.filter-container [data-controls*=panel][aria-expanded=true] > svg:last-of-type, .filter-container [data-controls*=panel][aria-expanded=false] > svg:first-of-type {
  display: block;
}
.filter-container input[type=checkbox],
  .filter-container input[type=radio] {
  position: relative;
  z-index: 10;
  height: 0.875rem;
  width: 0.875rem;
}
.filter-container input[type=checkbox]:checked, .filter-container input[type=checkbox]:indeterminate,
  .filter-container input[type=radio]:checked,
  .filter-container input[type=radio]:indeterminate {
  accent-color: rgb(var(--secondary-rgb));
}
.filter-container input[type=checkbox]:checked + span,
  .filter-container input[type=radio]:checked + span {
  position: relative;
  z-index: 10;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.filter-container input[type=checkbox]:checked + span + span,
  .filter-container input[type=radio]:checked + span + span {
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 0.25rem;
  background-color: #E4EEFF99;
}
.filter-container [id*=panel] [id*=panel] {
  margin-left: 1.5rem;
}
.filter-container + .filter-container {
  margin-top: 1rem;
}
@media (min-width: 768px) {

  .filter-container + .filter-container {
    margin-top: 2rem;
  }
}
.filter-skip {
  position: absolute;
  left: 0px;
  z-index: 10;
  --tw-translate-x: -100%;
  transform: translate(-100%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  cursor: pointer;
  border-bottom-right-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)) {
.filter-skip {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.filter-skip:focus {
  --tw-translate-x: 0px;
  transform: translate(0px, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.filter-help {
  margin-bottom: 1rem;
  font-size: 13px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.filter-help {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.filter-search {
  position: relative;
  width: 100%;
}
.filter-search input {
  width: 100%;
}
.filter-search button {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  right: 0.5rem;
}
.filter svg {
  height: 1rem;
  width: 1rem;
  flex: none;
  fill: currentColor;
  color: #6B7280CC;
}
.filter span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.filter span {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.filter span::first-letter {
  text-transform: uppercase;
}
.filter [data-controls*=panel] {
  margin-left: auto;
  border-radius: 0.25rem;
  padding: 0px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.filter [data-controls*=panel]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.filter [data-controls*=panel]:hover {
    background-color: rgb(62 76 92 / var(--tw-bg-opacity));
  }
}
.filter [data-controls*=panel]>svg:first-of-type {
  display: block;
}
.filter [data-controls*=panel]>svg:last-of-type {
  display: none;
}
.filter [data-controls*=panel]>svg:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.filter [data-controls*=panel]>svg:hover {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.filter [data-controls*=panel][aria-expanded=false] > svg:last-of-type, .filter [data-controls*=panel][aria-expanded=true] > svg:first-of-type {
  display: none;
}
.focus .focus__step.filter [data-controls*=panel][aria-expanded=false] > svg:last-of-type,.focus .focus__step .filter [data-controls*=panel][aria-expanded=true] > svg:first-of-type {
  display: none;
}
.filter [data-controls*=panel][aria-expanded=true] > svg:last-of-type, .filter [data-controls*=panel][aria-expanded=false] > svg:first-of-type {
  display: block;
}
.filter-container [type=radio]:checked + .filter, .filter-container [type=checkbox]:checked + .filter, .filter-container [id*=dropdown-menu] .is-active, .filter:hover {
  background-color: #E4EEFF99;
}
.filter-container [type=radio]:checked + .filter svg, .filter-container [type=checkbox]:checked + .filter svg, .filter-container [id*=dropdown-menu] .is-active svg, .filter-container [type=checkbox]:indeterminate + .filter svg {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.filter-container [type=radio]:checked + .filter span, .filter-container [type=checkbox]:checked + .filter span, .filter-container [id*=dropdown-menu] .is-active span, .filter-container [type=checkbox]:indeterminate + .filter span {
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
/* overwrite default dropdowns */
[data-target=dropdown-menu-filters] {
  justify-content: flex-start;
  padding-left: 0px;
  padding-right: 0px;
}
[data-target=dropdown-menu-filters]>span {
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
[data-target=dropdown-menu-filters]>span {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
[data-target=dropdown-menu-filters] > svg {
  height: 1rem;
  width: 1rem;
  color: #6B7280CC;
}
[data-target=dropdown-menu-filters] + [id=dropdown-menu-filters] {
  margin-left: 0px;
  margin-right: 0px;
}
.\!tag {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.\!tag:hover {
  text-decoration-line: underline;
}
.tag {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.tag:hover {
  text-decoration-line: underline;
}
.tag-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.tag-container {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.\!tag svg {
  height: 0.875rem;
  width: 0.875rem;
  fill: currentColor;
  color: #6B7280CC;
}
.tag svg {
  height: 0.875rem;
  width: 0.875rem;
  fill: currentColor;
  color: #6B7280CC;
}
.tab-x {
  display: flex;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom-width: 2px;
  border-color: #6B7280CC;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.tab-x {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.tab-x-container {
  display: flex;
  gap: 0.25rem;
}
.tab-x-container>* {
  flex-grow: 1;
}
.tab-x[aria-expanded=true], .tab-x:hover {
  --tw-border-opacity: 1;
  border-color: rgb(var(--secondary-rgb) / 1);
  border-color: rgb(var(--secondary-rgb) / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.tab-x[aria-expanded=true] svg, .tab-x:hover svg {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.tabs-1 {
    pointer-events: none;
  }
.metadata__container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {

  .metadata__container {
    flex-direction: row;
    gap: 0px;
  }
}
.metadata__item {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.metadata__item {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.metadata__item:first-child {
  border-left-width: 0px;
  padding-left: 0px;
}
.metadata__item:last-child {
  border-right-width: 0px;
  padding-right: 0px;
}
@media (min-width: 768px) {

  .metadata__item {
    border-left-width: 1px;
    border-right-width: 1px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.metadata__item strong {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.metadata__item strong {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.metadata__item button,
  .metadata__item a {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
  text-decoration-line: underline;
}
.metadata__item button::first-letter,
  .metadata__item a::first-letter {
  text-transform: uppercase;
}
[data-dialog] {
  visibility: hidden;
  position: fixed;
  inset: 0px;
  z-index: 50;
  background-color: rgba(0,0,0,0.25);
  opacity: 0;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
[data-dialog] > * {
  position: absolute;
  inset: 50%;
  z-index: 50;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 95vh;
  width: 90%;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  transform: translate(-50%, -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  overflow-y: auto;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 1.5rem;
  --tw-shadow: 0 4px 6px rgba(211,211,211,0.25);
  --tw-shadow-colored: 0 4px 6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px rgba(211,211,211,0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)) {
[data-dialog] > * {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
@media (min-width: 1024px) {

  [data-dialog] > * {
    max-width: 900px;
  }
}
[data-dialog] > * > svg:only-child {
  margin-left: auto;
  margin-right: auto;
  height: 2rem;
  width: 2rem;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
[data-dialog] > * > svg:only-child {
  animation: spin 1s linear infinite;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
[data-dialog] > * > svg:only-child {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
[data-dialog][aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}
[data-dialog] [data-dialog-closable] {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 24px;
  line-height: 30px;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
[data-dialog] [data-dialog-container] {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  text-align: left;
}
@media (min-width: 768px) {

  [data-dialog] [data-dialog-container] {
    align-items: center;
  }
}
[data-dialog] [data-dialog-container] > svg {
  height: 1.5rem;
  width: 1.5rem;
  flex: none;
  fill: currentColor;
  color: #6B7280CC;
}
[data-dialog] [data-dialog-container] > :last-child {
  grid-column: span 2 / span 2;
}
@media (min-width: 768px) {

  [data-dialog] [data-dialog-container] > :last-child {
    grid-column: span 1 / span 1;
    grid-column-start: 2;
  }
}
[data-dialog] [data-dialog-title] {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
[data-dialog] [data-dialog-title] {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
[data-dialog] [data-dialog-title]:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
[data-dialog] [data-dialog-actions] {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
@media (min-width: 768px) {

  [data-dialog] [data-dialog-actions] {
    gap: 1rem;
  }
}
[data-dialog] [data-dialog-actions]>*:last-child {
  margin-left: auto;
}
[data-dialog] [data-dialog-actions] {
    /* 3 or more items spans the full width for mobile */
  }
[data-dialog] [data-dialog-actions] > *:first-child:nth-last-child(n+3), [data-dialog] [data-dialog-actions] > *:first-child:nth-last-child(n+3) ~ * {
  width: 100%;
}
@media (min-width: 768px) {

  [data-dialog] [data-dialog-actions] > *:first-child:nth-last-child(n+3), [data-dialog] [data-dialog-actions] > *:first-child:nth-last-child(n+3) ~ * {
    width: auto;
  }

  .share-modal {
    padding-bottom: 4rem;
    padding-right: 4rem;
  }
}
.share-modal__list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 0.75rem;
  gap: 0.75rem;
}
@media (min-width: 768px) {

  .share-modal__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.share-modal__list > * {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: transparent;
  text-align: center;
  font-weight: 600;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.share-modal__list > *:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.share-modal__list > *>span {
  overflow-wrap: break-word;
  text-align: center;
}
.share-modal__list > *>svg {
  flex: none;
  fill: currentColor;
}
.share-modal__list > * {
  gap: 0.5rem;
  font-size: 18px;
  line-height: 23px;
}
.share-modal__list > *:not([class*="button\_\_text"]) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.share-modal__list > *[disabled],.share-modal__list > *.disabled {
  cursor: not-allowed;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(62 76 92 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / 1);
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.share-modal__list > *[disabled],.share-modal__list > *.disabled {
    border-color: rgb(62 76 92 / var(--tw-border-opacity));
    background-color: rgb(239 239 239 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.share-modal__list > *.is-hover,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), rgb(var(--secondary-rgb));
}
@supports (color: rgb(0 0 0 / 0)) {
.share-modal__list > *.is-hover,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
[id*=dropdown-menu].order-by .share-modal__list > * {
  align-items: flex-end;
  justify-content: flex-end;
}
.actions__secondary .share-modal__list > * {
  justify-content: flex-start;
}
.share-modal__list > * {
  gap: 0.5rem;
  border-width: 1px;
  border-color: #6B7280CC;
  font-size: 16px;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
  --tw-shadow: 0 4px 6px rgba(211,211,211,0.25);
  --tw-shadow-colored: 0 4px 6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px rgba(211,211,211,0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)) {
.share-modal__list > * {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .home__section-header .share-modal__list > * {
    margin-left: auto;
  }
}
.focus__footer .share-modal__list > * {
  margin-bottom: 0px;
}
.share-modal__list > *:hover {
  --tw-border-opacity: 1;
  border-color: rgb(var(--tertiary-rgb) / 1);
  border-color: rgb(var(--tertiary-rgb) / var(--tw-border-opacity));
}
.share-modal__list > * img,
  .share-modal__list > * svg {
  height: 1.5rem;
  width: 1.5rem;
  flex: none;
  fill: currentColor;
}
.share-modal__input {
  position: relative;
  margin-top: 2rem;
  width: 100%;
}
.share-modal__input #urlShareLink {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 2.5rem;
}
.share-modal__input > button {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  right: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.share-modal__input > button>svg {
  fill: currentColor;
}
.flag-modal__form {
  gap: 0.25rem;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
.flag-modal__form-description {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.flag-modal__form-description {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.flag-modal__form-reason {
  margin-top: 1.5rem;
  font-size: 18px;
  line-height: 23px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.flag-modal__form-reason {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.flag-modal__form-textarea-label {
  margin-top: 2rem;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.flag-modal__form-textarea-label {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.modal__report-container__radio {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: min-content 1fr;
  align-content: flex-start;
}
.modal__report-container__radio label {
  margin-bottom: 0.5rem;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
}
.modal__report-text {
  margin-top: 1rem;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.modal__report-text {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.modal__report fieldset label {
  margin-bottom: 0px;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.modal__report legend {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
  font-size: 18px;
  line-height: 23px;
}
.identities-modal__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.identities-modal__list button {
  display: flex;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.25rem;
  border-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.identities-modal__list button {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.identities-modal__list button.is-selected {
  border-color: transparent;
  background-color: rgb(var(--success-rgb) / 0.1);
}
.identities-modal__list button.is-selected svg {
  visibility: visible;
}
.identities-modal__list button:focus, .identities-modal__list button:focus-visible, .identities-modal__list button:hover {
  --tw-border-opacity: 1;
  border-color: rgb(var(--tertiary-rgb) / 1);
  border-color: rgb(var(--tertiary-rgb) / var(--tw-border-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.identities-modal__list button svg {
  visibility: hidden;
  height: 1.5rem;
  width: 1.5rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(var(--success-rgb) / 1);
  color: rgb(var(--success-rgb) / var(--tw-text-opacity));
}
.authorization-modal {
  padding-bottom: 4rem;
  padding-right: 4rem;
}
.authorization-modal__verification p {
  font-size: 18px;
  line-height: 23px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.authorization-modal__verification p {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.authorization-modal__verification p + * {
  margin-top: 2rem;
}
.authorization-modal__verification li {
  font-weight: 600;
}
.authorization-modal__verification-container {
  margin-top: 2rem;
}
.authorization-modal__verification-container > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - 0));
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * 0);
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.upload-modal__dropzone {
  max-height: 50vh;
  overflow-y: auto;
  border-radius: 0.25rem;
  border-width: 2px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.upload-modal__dropzone[hidden] + .upload-modal__dropzone:last-child {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.upload-modal__dropzone.is-disabled label.button__secondary {
  cursor: not-allowed;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(62 76 92 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / 1);
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone.is-disabled label.button__secondary {
    border-color: rgb(62 76 92 / var(--tw-border-opacity));
    background-color: rgb(239 239 239 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.upload-modal__dropzone-container {
  margin-top: 1rem;
}
.upload-modal__dropzone-container > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
@media (min-width: 768px) {

  .upload-modal__dropzone-container {
    margin-top: 3rem;
  }
}
.upload-modal__dropzone-placeholder {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone-placeholder {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .upload-modal__dropzone-placeholder {
    flex-direction: row;
  }
}
.upload-modal__dropzone-placeholder>span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.upload-modal__dropzone.is-dragover:not(.is-disabled):last-child {
  border-width: 2px;
  border-style: dashed;
  --tw-border-opacity: 1;
  border-color: rgb(var(--secondary-rgb) / 1);
  border-color: rgb(var(--secondary-rgb) / var(--tw-border-opacity));
  background-color: #E4EEFF99;
}
.upload-modal__dropzone.is-dragover:not(.is-disabled):last-child * {
  pointer-events: none;
}
.upload-modal__dropzone [data-filename] {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
}
.upload-modal__dropzone [data-filename] [data-template] {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
@media (min-width: 768px) {

  .upload-modal__dropzone [data-filename] [data-template] {
    flex-direction: row;
  }
}
.upload-modal__dropzone [data-filename] [data-template] > *:first-child {
  display: flex;
  width: 6rem;
  flex: none;
  justify-content: center;
}
.upload-modal__dropzone [data-filename] [data-template] img[src="data:,"] {
  display: none;
}
.focus .focus__step.upload-modal__dropzone [data-filename] [data-template] img[src="data:,"] {
  display: none;
}
.upload-modal__dropzone [data-filename] [data-template] span {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone [data-filename] [data-template] span {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.upload-modal__dropzone [data-filename] [data-template=error] svg {
  height: 4rem;
  width: 4rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(var(--primary-rgb) / 1);
  color: rgb(var(--primary-rgb) / var(--tw-text-opacity));
}
.upload-modal__dropzone [data-filename] [data-template=error] span:nth-child(2) {
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--primary-rgb) / 1);
  color: rgb(var(--primary-rgb) / var(--tw-text-opacity));
}
.upload-modal__dropzone [data-filename] [data-template=error] li {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone [data-filename] [data-template=error] li {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.upload-modal__dropzone [data-filename] [data-template=error] div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.upload-modal__dropzone [data-filename] [data-template=error] div:not(:first-child) label {
  font-weight: 600;
}
.upload-modal__dropzone [data-filename] [data-template=titled] div:not(:first-child) {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.5rem;
}
@media (min-width: 768px) {

  .upload-modal__dropzone [data-filename] [data-template=titled] div:not(:first-child) {
    flex-direction: row;
    gap: 3rem;
  }
}
.upload-modal__dropzone [data-filename] [data-template=titled] div:not(:first-child)>div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.upload-modal__dropzone [data-filename] [data-template=titled] div:not(:first-child)>input {
  margin-top: 0px;
}
.upload-modal__dropzone [data-filename] [data-template=titled] div:not(:first-child) label {
  font-weight: 600;
}
.upload-modal__dropzone [data-filename] img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.upload-modal__dropzone [data-filename] button {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: transparent;
  text-align: center;
  font-weight: 600;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.upload-modal__dropzone [data-filename] button:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.upload-modal__dropzone [data-filename] button>span {
  overflow-wrap: break-word;
  text-align: center;
}
.upload-modal__dropzone [data-filename] button>svg {
  flex: none;
  fill: currentColor;
}
.upload-modal__dropzone [data-filename] button {
  gap: 0.375rem;
  font-size: 14px;
  line-height: 18px;
}
.upload-modal__dropzone [data-filename] button:not([class*="button\_\_text"]) {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.upload-modal__dropzone [data-filename] button {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(var(--primary-rgb) / 1);
  border-color: rgb(var(--primary-rgb) / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(var(--primary-rgb) / 1);
  color: rgb(var(--primary-rgb) / var(--tw-text-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone [data-filename] button {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.upload-modal__dropzone [data-filename] button:focus {
  outline-color: rgb(var(--primary-rgb));
}
.upload-modal__dropzone [data-filename] button[disabled],.upload-modal__dropzone [data-filename] button.disabled {
  cursor: not-allowed;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(62 76 92 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / 1);
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone [data-filename] button[disabled],.upload-modal__dropzone [data-filename] button.disabled {
    border-color: rgb(62 76 92 / var(--tw-border-opacity));
    background-color: rgb(239 239 239 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.upload-modal__dropzone [data-filename] button.is-hover,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), rgb(var(--secondary-rgb));
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone [data-filename] button.is-hover,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
[id*=dropdown-menu].order-by .upload-modal__dropzone [data-filename] button {
  align-items: flex-end;
  justify-content: flex-end;
}
.actions__secondary .upload-modal__dropzone [data-filename] button {
  justify-content: flex-start;
}
.upload-modal__dropzone [data-filename] button {
  width: 100%;
}
@media (min-width: 768px) {

  .home__section-header .upload-modal__dropzone [data-filename] button {
    margin-left: auto;
  }
}
.focus__footer .upload-modal__dropzone [data-filename] button {
  margin-bottom: 0px;
}
@media (min-width: 768px) {

  .upload-modal__dropzone [data-filename] button {
    margin-left: auto;
    width: auto;
  }
}
.upload-modal__dropzone [data-filename] progress {
  height: 0.25rem;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: hidden;
  border-radius: 9999px;
}
.upload-modal__dropzone [data-filename] progress::-webkit-progress-value {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--success-rgb) / 1);
  background-color: rgb(var(--success-rgb) / var(--tw-bg-opacity));
}
.upload-modal__dropzone [data-filename] progress::-webkit-progress-bar {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone [data-filename] progress::-webkit-progress-bar {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.upload-modal__dropzone [data-filename] progress::-moz-progress-bar {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--success-rgb) / 1);
  background-color: rgb(var(--success-rgb) / var(--tw-bg-opacity));
}
.upload-modal__dropzone [data-filename] [data-template=error] + progress::-webkit-progress-value {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--alert-rgb) / 1);
  background-color: rgb(var(--alert-rgb) / var(--tw-bg-opacity));
}
.upload-modal__dropzone [data-filename] [data-template=error] + progress::-moz-progress-bar {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--alert-rgb) / 1);
  background-color: rgb(var(--alert-rgb) / var(--tw-bg-opacity));
}
.upload-modal__dropzone [data-filename] + [data-filename] {
  margin-top: 1.5rem;
}
.upload-modal__dropzone [data-filename]:only-child progress {
  height: 1rem;
  border-radius: 0.25rem;
}
.upload-modal__text {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__text {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.upload-modal__text ul,
  .upload-modal__text ol {
  list-style-type: disc;
  padding-left: 1rem;
}
.upload-modal__files {
  margin-top: 0.25rem;
}
.upload-modal__files > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.upload-modal__files {
    /* It does not use regular class names, because it could come from javascript also. Avoid binds among css and js */
  }
.upload-modal__files-container > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - 0));
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * 0);
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
.upload-modal__files-container label {
  margin-bottom: 1rem;
  display: block;
}
.upload-modal__files > * {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.upload-modal__files > * div {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__files > * div {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.upload-modal__files > * div img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.upload-modal__files > * span {
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__files > * span {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.tos-refuse {
    /* Overwrite default modal styles */
  }
.tos-refuse [data-dialog-actions] {
  flex-wrap: nowrap;
}
.fingerprint-modal__container > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.fingerprint-modal__span {
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
}
.fingerprint-modal__code {
  display: block;
  max-height: 6rem;
  overflow: auto;
  word-break: break-all;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.fingerprint-modal__code {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.fingerprint-modal a {
  cursor: pointer;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.address > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.address {
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.address {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.address__container {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}
.address__container > svg {
  margin-top: 0.125rem;
  flex: none;
  fill: currentColor;
  color: #6B7280CC;
}
.address__location {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.address__address, .address__hints {
  overflow-wrap: break-word;
  font-size: 14px;
  line-height: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.statistic {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  border-radius: 0.25rem;
  border-width: 3px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.statistic {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.statistic__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}
@media (min-width: 768px) {

  .statistic__container {
    grid-template-columns: repeat(auto-fit,minmax(0,120px));
  }
}
.statistic__title {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.statistic__title {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.statistic__number {
  width: 100%;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.statistic__number {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.content-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {

  .content-block {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.content-block__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.content-block__title>a:last-child {
  margin-left: auto;
}
.content-block__description {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.content-block__description :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.content-block__description :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.content-block__description :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.content-block__description :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.content-block__description :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.content-block__description :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.content-block__description :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.content-block__description :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.content-block__description :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.content-block__description :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.content-block__description :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.content-block__description :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.content-block__description :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.content-block__description :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.content-block__description :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.content-block__description :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.content-block__description :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.content-block__description :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.content-block__description :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.content-block__description :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.content-block__description :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.content-block__description :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.content-block__description :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
.content-block__description :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.content-block__description :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.content-block__description :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.content-block__description :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.content-block__description :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.content-block__description :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.content-block__description :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.content-block__description :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.content-block__description :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.content-block__description :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.content-block__description :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.content-block__description :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.content-block__description :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}
.content-block__description :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.content-block__description :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.content-block__description :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.content-block__description :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.content-block__description :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.content-block__description :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.content-block__description :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.content-block__description :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.content-block__description :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.content-block__description :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.content-block__description :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.content-block__description :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.content-block__description :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.content-block__description :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.content-block__description :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.content-block__description :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.content-block__description :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.content-block__description :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.content-block__description :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.content-block__description :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.content-block__description :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.content-block__description :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.content-block__description :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.content-block__description :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.content-block__description {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.content-block__description :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.content-block__description :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.content-block__description :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.content-block__description :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.content-block__description :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.content-block__description :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.content-block__description :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.content-block__description :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.content-block__description :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.content-block__description :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.content-block__description :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.content-block__description :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.content-block__description :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}
.content-block__description :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.content-block__description :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.content-block__description :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.content-block__description :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.content-block__description :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.content-block__description :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.content-block__description :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.content-block__description :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.content-block__description :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.content-block__description :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.content-block__description :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.content-block__description :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.content-block__description {
  max-width: 42rem;
  font-size: 18px;
  line-height: 23px;
}
.content-block__description[data-component=accordion] [id*=panel][aria-hidden=true] {
  position: relative;
  display: block;
  max-height: 10rem;
  overflow: hidden;
}
.content-block__description[data-component=accordion] [id*=panel][aria-hidden=true]::before {
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, transparent var(--tw-gradient-from-position), #fff var(--tw-gradient-to-position));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
.content-block__description[data-component=accordion] [id*=panel][aria-hidden=true]::after {
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, transparent var(--tw-gradient-from-position), #fff var(--tw-gradient-to-position));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
.content-block__description[data-component=accordion] [id*=panel][aria-hidden=true] *:first-child {
  margin-top: 0px;
}
.content-block__description[data-component=accordion] [aria-expanded=false] > svg:last-of-type,
  .content-block__description[data-component=accordion] [aria-expanded=false] > span:last-of-type,
  .content-block__description[data-component=accordion] [aria-expanded=true] > span:first-of-type,
  .content-block__description[data-component=accordion] [aria-expanded=true] > svg:first-of-type {
  display: none;
}
.focus .focus__step.content-block__description[data-component=accordion] [aria-expanded=false] > svg:last-of-type,.focus .focus__step
  .content-block__description[data-component=accordion] [aria-expanded=false] > span:last-of-type,.focus .focus__step
  .content-block__description[data-component=accordion] [aria-expanded=true] > span:first-of-type,.focus .focus__step
  .content-block__description[data-component=accordion] [aria-expanded=true] > svg:first-of-type {
  display: none;
}
.content-block__description[data-component=accordion] [aria-expanded=true] > svg:last-of-type,
  .content-block__description[data-component=accordion] [aria-expanded=true] > span:last-of-type,
  .content-block__description[data-component=accordion] [aria-expanded=false] > span:first-of-type,
  .content-block__description[data-component=accordion] [aria-expanded=false] > svg:first-of-type {
  display: block;
}
.content-block__span {
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.content-block__span {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.content-block ~ .content-block {
  border-top-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.content-block ~ .content-block {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.documents__container > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.documents__container > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(243 244 247 / var(--tw-divide-opacity));
  }
}
.documents__container>* {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.documents__container>*:first-child {
  padding-top: 0px;
}
.documents__container>*:last-child {
  padding-bottom: 0px;
}
.documents__container > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.documents__collection-trigger {
  margin-top: 2rem;
  display: flex;
  width: 100%;
  gap: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  font-size: 18px;
  line-height: 23px;
}
@supports (color: rgb(0 0 0 / 0)) {
.documents__collection-trigger {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
@media (min-width: 768px) {

  .documents__collection-trigger {
    max-width: 50%;
  }
}
.documents__collection-trigger > span {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.documents__collection-trigger > span {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.documents__collection-trigger > svg {
  height: 1rem;
  width: 1rem;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.documents__collection-trigger > svg {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.documents__collection-trigger__icon svg {
  fill: currentColor;
  color: #6B7280CC;
}
.documents__collection-trigger[aria-expanded=true] {
  border-radius: 0.25rem;
  background-color: #E4EEFF99;
}
.documents__collection-trigger[aria-expanded=true] > span, .documents__collection-trigger[aria-expanded=true] .documents__collection-trigger__icon svg {
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.documents__collection-trigger[aria-expanded=false] .documents__collection-trigger__icon > svg:last-of-type, .documents__collection-trigger[aria-expanded=true] .documents__collection-trigger__icon > svg:first-of-type {
  display: none;
}
.focus .focus__step.documents__collection-trigger[aria-expanded=false] .documents__collection-trigger__icon > svg:last-of-type,.focus .focus__step .documents__collection-trigger[aria-expanded=true] .documents__collection-trigger__icon > svg:first-of-type {
  display: none;
}
.documents__collection-trigger[aria-expanded=true] .documents__collection-trigger__icon > svg:last-of-type, .documents__collection-trigger[aria-expanded=false] .documents__collection-trigger__icon > svg:first-of-type {
  display: block;
}
.documents__collection-content {
  margin-top: 1rem;
  width: 100%;
  border-top-width: 0px;
  border-color: #E4EEFF99;
}
@media (min-width: 768px) {

  .documents__collection-content {
    border-left-width: 4px;
    padding-left: 2rem;
  }

  .documents__collection-content[aria-hidden=true] {
    display: none;
  }
}
.documents__collection-content .documents__container {
  margin-top: 1rem;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding-top: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.documents__collection-content .documents__container {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.documents__container .card__list-text {
  font-size: 14px;
  line-height: 18px;
}
[data-floating-help] {
  position: absolute;
  top: 1.25rem;
  right: 0px;
  z-index: 10;
}
@media (min-width: 768px) {

  [data-floating-help] {
    top: 2.5rem;
  }
}
[data-floating-help] button {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
[data-floating-help] button {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
[data-floating-help] svg {
  fill: currentColor;
  color: #6B7280CC;
}
[data-floating-help]:hover button {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  text-decoration-line: none;
}
@supports (color: rgb(0 0 0 / 0)) {
[data-floating-help]:hover button {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
[data-floating-help]:hover svg {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
[data-floating-help]:hover svg {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.card {
    /* shared styles */
    /* shared styles */
    /* shared styles */
  }
.card__highlight {
  display: flex;
  flex-direction: column;
  border-radius: 0.25rem;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) rgb(243 244 247 / 1), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 244 247 / var(--tw-ring-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.card__highlight:hover {
  cursor: pointer;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(var(--tertiary-rgb) / var(--tw-ring-opacity));
}
@media (min-width: 768px) {

  .card__highlight {
    flex-direction: row;
  }
}
.card__highlight-img {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
@media (min-width: 768px) {

  .card__highlight-img {
    width: 50%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
}
.card__highlight-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__highlight-text {
  display: flex;
  width: 100%;
  flex-direction: column;
  row-gap: 0.5rem;
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.card__highlight-text {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .card__highlight-text {
    width: 50%;
    row-gap: 1rem;
  }
}
.card__highlight:hover .card__highlight-text h3 {
  text-decoration-line: underline;
}
.card__grid {
  display: flex;
  flex-direction: column;
  border-radius: 0.25rem;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) rgb(243 244 247 / 1), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 244 247 / var(--tw-ring-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.card__grid:hover {
  cursor: pointer;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(var(--tertiary-rgb) / var(--tw-ring-opacity));
}
.card__grid-grid {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}
@media (min-width: 768px) {

  .card__grid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
}
.card__grid-home {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}
@media (min-width: 768px) {

  .card__grid-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
}
.card__grid-img {
  aspect-ratio: 21/9;
  overflow: hidden;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.card__grid-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__grid-text {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  row-gap: 0.5rem;
  overflow-wrap: break-word;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.card__grid-text {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .card__grid-text {
    row-gap: 1rem;
  }
}
.card__grid:hover .card__grid-text h3 {
  text-decoration-line: underline;
}
.card__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  overflow: hidden;
  border-radius: 0.25rem;
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding-left: 1rem;
  padding-right: 1rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)) {
.card__list {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.card__list:hover {
  --tw-border-opacity: 1;
  border-color: rgb(var(--tertiary-rgb) / 1);
  border-color: rgb(var(--tertiary-rgb) / var(--tw-border-opacity));
}
.card__list:focus-visible {
  --tw-border-opacity: 1;
  border-color: rgb(var(--tertiary-rgb) / 1);
  border-color: rgb(var(--tertiary-rgb) / var(--tw-border-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
}
@media (min-width: 768px) {

  .card__list {
    flex-direction: row;
    gap: 1rem;
  }
}
.card__list-list > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - 0));
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * 0);
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
.card__list-content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.card__list-title {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.card__list-image {
  aspect-ratio: 1.5;
  width: 100%;
  flex: none;
  overflow: hidden;
  border-radius: 0.25rem;
}
@media (min-width: 768px) {

  .card__list-image {
    margin-left: calc(calc(1rem + 4px) * -1);
    width: 20%;
  }
}
.card__list-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__list-text {
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
@supports (color: rgb(0 0 0 / 0)) {
.card__list-text {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.card__list + .card__list {
  margin-top: 1.5rem;
}
.card__list:focus .card__list-title, .card__list:hover .card__list-title {
  text-decoration-line: underline;
}
.card__search {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.card__search-title {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.card__search + .card__search {
  margin-top: 1.5rem;
}
.card__search:focus .card__search-title, .card__search:hover .card__search-title {
  text-decoration-line: underline;
}
.card__calendar {
  display: flex;
  width: 3.5rem;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  text-align: center;
    /* overwrite defaults */
}
@supports (color: rgb(0 0 0 / 0)) {
.card__calendar {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.card__calendar-list__reset {
  flex-direction: row;
  align-items: flex-start;
  border-width: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
.card__calendar-list__reset>*:first-child {
  flex: none;
}
.card__calendar-month {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.card__calendar-month {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .card__calendar-month {
    border-top-right-radius: 0px;
  }
}
.card__calendar-day {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.card__calendar-day {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.card__calendar-year {
  font-size: 13px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.card__calendar-year {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.card__calendar-month, .card__calendar-day, .card__calendar-year {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
}
.card__calendar-month>div:empty, .card__calendar-day>div:empty, .card__calendar-year>div:empty {
  display: none;
}
.card__search-metadata, .card__list-metadata {
  margin-top: auto;
  display: inline-flex;
  flex-wrap: wrap;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (min-width: 768px) {

  .card__search-metadata, .card__list-metadata {
    gap: 0px;
  }
}
.card__search-metadata > div, .card__list-metadata > div {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-width: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  padding-left: 0px;
  padding-right: 0px;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.card__search-metadata > div, .card__list-metadata > div {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.card__search-metadata > div:first-child, .card__list-metadata > div:first-child {
  padding-left: 0px;
}
.card__search-metadata > div:last-child, .card__list-metadata > div:last-child {
  border-right-width: 0px;
  padding-right: 0px;
}
@media (min-width: 768px) {

  .card__search-metadata > div, .card__list-metadata > div {
    border-right-width: 1px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.card__search-metadata > div > svg, .card__list-metadata > div > svg {
  height: 0.875rem;
  width: 0.875rem;
  fill: currentColor;
  color: #6B7280CC;
}
.card__search-metadata [data-author] + [data-author], .card__list-metadata [data-author] + [data-author] {
  margin-left: -1rem;
}
.card__highlight-metadata, .card__grid-metadata {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.card__highlight-metadata, .card__grid-metadata {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.card__highlight-metadata>*, .card__grid-metadata>* {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.card__highlight-metadata>*:first-child, .card__grid-metadata>*:first-child {
  flex: none;
}
.card__highlight-metadata svg, .card__grid-metadata svg {
  flex: none;
  fill: currentColor;
  color: #6B7280CC;
}
.card__highlight-loader, .card__grid-loader {
    --color: var(--primary);
    --inner: #F3F4F7;
    --outer: #E1E5EF;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    height: 0.875rem;
    width: 0.875rem;
    place-items: center;
    overflow: hidden;
    border-radius: 9999px;
    background-image: radial-gradient(farthest-side,#F3F4F7 60%,transparent 0 100%),conic-gradient(var(--primary) calc(var(--value) * 100%),#E1E5EF 0);
  }
@supports (background: radial-gradient(red, red 1px 2px, red 3px)) {
.card__highlight-loader, .card__grid-loader {
    background-image: radial-gradient(farthest-side,var(--inner) 60%,transparent 0 100%),conic-gradient(var(--color) calc(var(--value) * 100%),var(--outer) 0);
  }
}
.card__placeholder-l {
  position: absolute;
  top: calc(100% - 10rem);
  left: calc(100% - 11.5rem);
  z-index: 10;
  height: 11rem;
  width: 12rem;
  fill: rgb(var(--primary-rgb));
}
.card__placeholder-g {
  height: 100%;
  width: 100%;
  fill: rgb(var(--primary-rgb));
}
[data-floating-help] {
  position: absolute;
  top: 1.25rem;
  right: 0px;
  z-index: 10;
}
@media (min-width: 768px) {

  [data-floating-help] {
    top: 2.5rem;
  }
}
[data-floating-help] button {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
[data-floating-help] button {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
[data-floating-help] svg {
  fill: currentColor;
  color: #6B7280CC;
}
[data-floating-help]:hover button {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  text-decoration-line: none;
}
@supports (color: rgb(0 0 0 / 0)) {
[data-floating-help]:hover button {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
[data-floating-help]:hover svg {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
[data-floating-help]:hover svg {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.metric {
  display: flex;
  flex-direction: column;
  border-radius: 0.25rem;
  border-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.metric {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.metric__container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}
@media (min-width: 768px) {

  .metric__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}
.metric h3 {
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.metric h3 {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.metric p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.metric p {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.metric a {
  margin-top: auto;
  align-self: flex-end;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.metric svg {
  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow: visible;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.metric svg {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.metric .area {
  fill: rgb(var(--primary-rgb) / 0.05);
}
.metric .line {
  stroke: rgb(var(--primary-rgb) / 0.2);
  stroke-width: 2;
    fill: none;
}
.metric .circle {
  fill: rgb(var(--primary-rgb) / 0.2);
}
.metric .tick {
  opacity: 0.25;
}
.metric .dashed {
    stroke-dasharray: 1, 3;
  }
.metric .sum {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
[id$=metric-tooltip] {
  position: absolute;
  --tw-translate-x: -50%;
  transform: translate(-50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  overflow: visible;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-shadow: 0 0 20px 0;
  --tw-shadow-colored: 0 0 20px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 20px 0 #6B7280CC;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-shadow-color: #6B7280CC;
  --tw-shadow: var(--tw-shadow-colored);
}
@supports (color: rgb(0 0 0 / 0)) {
[id$=metric-tooltip] {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
[id$=metric-tooltip] > * {
  position: relative;
  padding: 0.5rem;
  font-size: 14px;
  line-height: 18px;
}
[id$=metric-tooltip] > *::after, [id$=metric-tooltip] > *::before {
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  height: 0px;
  width: 0px;
  border-color: transparent;
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
[id$=metric-tooltip] > *::after {
  top: calc(100% - 1px);
  margin-left: -10px;
  border-width: 10px;
  --tw-border-opacity: 1;
  border-top-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
[id$=metric-tooltip] > *::after {
    border-top-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
[id$=metric-tooltip] > *::before {
  margin-left: -11px;
  border-width: 11px;
}
[id*=dropdown-menu].order-by {
  justify-content: flex-start;
}
@media (min-width: 768px) {

  [id*=dropdown-menu].order-by {
    flex-direction: row;
    justify-content: flex-end;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
[id*=dropdown-menu].order-by .button {
  align-items: flex-end;
  justify-content: flex-end;
}
[data-target*=dropdown].order-by__button {
  justify-content: flex-end;
}
[data-target*=dropdown].order-by__button > svg {
  height: 1rem;
  width: 1rem;
  color: #6B7280CC;
}
.photo {
  cursor: pointer;
  text-align: left;
}
.photo:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.photo__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  place-items: start;
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}
@media (min-width: 768px) {

  .photo__container {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3rem;
  }
}
.photo__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.25rem;
  border-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.photo__img {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.photo__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo__title {
  margin-top: 1rem;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.photo__title {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.photo__description {
  margin-top: 0.5rem;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.photo__description {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.photo:hover .photo__img, .photo:focus .photo__img {
  --tw-border-opacity: 1;
  border-color: rgb(var(--tertiary-rgb) / 1);
  border-color: rgb(var(--tertiary-rgb) / var(--tw-border-opacity));
}
.photo:hover .photo__title, .photo:focus .photo__title {
  text-decoration-line: underline;
}
.photo-modal {
  padding-bottom: 4rem;
  padding-right: 4rem;
}
.photo-modal__img {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 0.25rem;
}
.photo-modal__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo-modal__title {
  margin-top: 2rem;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.photo-modal__title {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.photo-modal__description {
  font-size: 16px;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.photo-modal__description {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.endorsers-list {
  visibility: hidden;
  position: absolute;
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), -100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.endorsers-list > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - 0));
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * 0);
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.endorsers-list {
  opacity: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.endorsers-list__text {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.endorsers-list__text {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.endorsers-list__grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.75rem;
}
.endorsers-list__avatar, .endorsers-list__counter {
  display: inline-grid;
  height: 1.5rem;
  width: 1.5rem;
  overflow: hidden;
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.endorsers-list__avatar, .endorsers-list__counter {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
.endorsers-list__counter {
  place-items: center;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)) {
.endorsers-list__counter {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.endorsers-list__trigger {
  display: flex;
  justify-content: flex-start;
}
.endorsers-list__trigger > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-1rem * 0);
  margin-right: calc(-1rem * var(--tw-space-x-reverse));
  margin-left: calc(-1rem * calc(1 - 0));
  margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse)));
}
.endorsers-list__trigger:hover .endorsers-list__counter, .endorsers-list__trigger[aria-expanded=true] .endorsers-list__counter {
  --tw-border-opacity: 1;
  border-color: rgb(var(--secondary-rgb) / 1);
  border-color: rgb(var(--secondary-rgb) / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.endorsers-list__trigger:hover .endorsers-list__counter, .endorsers-list__trigger[aria-expanded=true] .endorsers-list__counter {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.endorsers-list__trigger[data-target*=dropdown] {
  width: auto;
  padding: 0px;
}
.endorsers-list__trigger[data-target*=dropdown] > span {
  display: inline-grid;
}
.endorsers-list[id*=dropdown-menu][aria-hidden=false] {
  visibility: visible;
  position: relative;
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  opacity: 1;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.activity {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.activity:first-child {
  padding-top: 0px;
}
.activity:last-child {
  padding-bottom: 0px;
}
@media (min-width: 768px) {

  .activity {
    grid-template-columns: calc(100% / 6) 1fr max-content;
    align-items: flex-start;
    gap: 3rem;
  }
}
.activity__container > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.activity__container > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
.activity__time {
  width: 100%;
  flex: none;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.activity__time {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.activity__content {
  order: -9999;
  grid-column: span 2 / span 2;
}
.activity__content > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
@media (min-width: 768px) {

  .activity__content {
    order: 0;
    grid-column: span 1 / span 1;
  }
}
.activity__content > span:first-child span {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.activity__content > span:first-child span {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.activity__content > span:first-child span svg {
  fill: currentColor;
  color: #6B7280CC;
}
.activity__content > span:first-child svg {
  display: inline-block;
}
.activity__content > span:first-child a {
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.activity__content > span:first-child a:hover {
  text-decoration-line: underline;
}
.activity__content > span:last-child:not(:only-child) {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.activity__content > span:last-child:not(:only-child) {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.activity__content > span:last-child:not(:only-child) svg {
  height: 0.875rem;
  width: 0.875rem;
  fill: currentColor;
  color: #6B7280CC;
}
.activity__content > span:last-child:not(:only-child) a {
  text-decoration-line: underline;
}
.activity__author {
  margin-left: auto;
  flex: none;
}
[role=tooltip] {
  position: absolute;
  z-index: 10;
  width: -moz-max-content;
  width: max-content;
  max-width: 20rem;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(2 2 3 / 1);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
    /*
      NOTE: the calculated value is the sum of the arrow offset position plus the half of the arrow size:
      - offset position: 20%
      - arrow size: 16px
    */
    --arrow-offset: 20%;
    --arrow-size: 16px;
    --arrow-visible-size: var(--arrow-size) * 0.5;
    --arrow-margin: var(--arrow-visible-size) * 1.4142135623730951;
}
@supports (color: rgb(0 0 0 / 0)) {
[role=tooltip] {
    background-color: rgb(2 2 3 / var(--tw-bg-opacity));
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
[role=tooltip] > * {
  position: relative;
  z-index: 20;
}
[role=tooltip][aria-hidden=false] {
    animation-name: fadeIn;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
  }
[role=tooltip][aria-hidden=true] {
    animation-name: fadeOut;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
  }
@keyframes fadeIn {
    from {
      opacity: 0;
      visibility: hidden;
    }
    to {
      opacity: 1;
      visibility: visible;
    }
  }
@keyframes fadeOut {
    from {
      opacity: 1;
      visibility: visible;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
[role=tooltip].top {
  --tw-translate-x: calc(calc(100% - var(--arrow-offset)) * -1);
  --tw-translate-y: calc(calc(100% + var(--arrow-margin)) * -1);
  transform: translate(calc(calc(100% - var(--arrow-offset)) * -1), calc(calc(100% + var(--arrow-margin)) * -1)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
[role=tooltip].top::before {
  position: absolute;
  right: calc(var(--arrow-offset) - var(--arrow-visible-size));
  bottom: calc(var(--arrow-visible-size) * -1);
  z-index: -10;
  height: var(--arrow-size);
  width: var(--arrow-size);
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-bottom-right-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(2 2 3 / 1);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
[role=tooltip].top::before {
    background-color: rgb(2 2 3 / var(--tw-bg-opacity));
  }
}
[role=tooltip].right {
  --tw-translate-x: calc(var(--arrow-margin));
  --tw-translate-y: calc(calc(var(--arrow-offset) + var(--arrow-visible-size)) * -1);
  transform: translate(calc(var(--arrow-margin)), calc(calc(var(--arrow-offset) + var(--arrow-visible-size)) * -1)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
[role=tooltip].right::before {
  position: absolute;
  top: var(--arrow-offset);
  left: calc(var(--arrow-visible-size) * -1);
  z-index: -10;
  height: var(--arrow-size);
  width: var(--arrow-size);
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-bottom-left-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(2 2 3 / 1);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
[role=tooltip].right::before {
    background-color: rgb(2 2 3 / var(--tw-bg-opacity));
  }
}
[role=tooltip].bottom {
  --tw-translate-x: calc(calc(100% - var(--arrow-offset)) * -1);
  --tw-translate-y: calc(var(--arrow-margin));
  transform: translate(calc(calc(100% - var(--arrow-offset)) * -1), calc(var(--arrow-margin))) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
[role=tooltip].bottom::before {
  position: absolute;
  right: calc(var(--arrow-offset) - var(--arrow-visible-size));
  top: calc(var(--arrow-visible-size) * -1);
  z-index: -10;
  height: var(--arrow-size);
  width: var(--arrow-size);
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-top-left-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(2 2 3 / 1);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
[role=tooltip].bottom::before {
    background-color: rgb(2 2 3 / var(--tw-bg-opacity));
  }
}
[role=tooltip].left {
  --tw-translate-x: calc(calc(100% + var(--arrow-margin)) * -1);
  --tw-translate-y: calc(calc(var(--arrow-offset) + var(--arrow-visible-size)) * -1);
  transform: translate(calc(calc(100% + var(--arrow-margin)) * -1), calc(calc(var(--arrow-offset) + var(--arrow-visible-size)) * -1)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
[role=tooltip].left::before {
  position: absolute;
  top: var(--arrow-offset);
  right: calc(var(--arrow-visible-size) * -1);
  z-index: -10;
  height: var(--arrow-size);
  width: var(--arrow-size);
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-top-right-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(2 2 3 / 1);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
[role=tooltip].left::before {
    background-color: rgb(2 2 3 / var(--tw-bg-opacity));
  }
}
.\!author {
  display: flex;
  align-items: center;
}
.\!author > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * 0);
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - 0));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.\!author > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
.\!author {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.\!author {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.\!author>*:not(:first-child) {
  padding-left: 1.25rem;
}
.\!author>*:not(:last-child) {
  padding-right: 1.5rem;
}
.author {
  display: flex;
  align-items: center;
}
.author > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * 0);
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - 0));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.author > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
.author {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.author {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.author>*:not(:first-child) {
  padding-left: 1.25rem;
}
.author>*:not(:last-child) {
  padding-right: 1.5rem;
}
.author__container {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.author__container>*:first-child {
  flex: none;
}
.author__container > :last-child {
  display: flex;
  flex-direction: column;
}
.author__container > :last-child>* {
  flex-grow: 1;
}
.author__avatar {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author__avatar-container {
  display: inline-block;
  height: 1.5rem;
  width: 1.5rem;
  overflow: hidden;
  border-radius: 9999px;
  vertical-align: top;
}
.author__avatar-counter {
  margin-left: -1rem;
  display: inline-grid;
  height: 1.5rem;
  width: 1.5rem;
  place-items: center;
  overflow: hidden;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.author__avatar-counter {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.author__container.is-compact .author__avatar-container {
  height: 2rem;
  width: 2rem;
}
.author__container.is-compact .author__name {
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.author__metadata {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.author__metadata {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.author__metadata > svg {
  flex: none;
  fill: currentColor;
  color: #6B7280CC;
}
.author__tooltip {
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-gap: 1.5rem;
  gap: 1.5rem;
}
.author__tooltip>*:nth-child(odd) {
  place-self: start;
}
.author__tooltip>*:nth-child(even) {
  place-self: end;
}
.author__tooltip {
    /* overwrite default styles */
  }
.author__tooltip[role=tooltip] {
  max-width: -moz-max-content;
  max-width: max-content;
}
.author__tooltip-links {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-evenly;
  white-space: nowrap;
  font-size: 14px;
  line-height: 18px;
}
.author__tooltip-links>*:hover {
  text-decoration-line: underline;
}
.author__tooltip .author__avatar-container {
  height: 2.5rem;
  width: 2.5rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.author__tooltip .author__avatar-container {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
.author__tooltip .author__avatar-container:hover {
  --tw-border-opacity: 1;
  border-color: rgb(var(--tertiary-rgb) / 1);
  border-color: rgb(var(--tertiary-rgb) / var(--tw-border-opacity));
}
.author__tooltip .author__name {
  font-size: 18px;
  line-height: 23px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.author__tooltip .author__name {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.author__tooltip .author__name:hover {
  text-decoration-line: underline;
}
.author__coauthors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.author__coauthors[aria-hidden=false] + [id$=trigger] span:last-child, .author__coauthors[aria-hidden=true] + [id$=trigger] span:first-child {
  display: block;
}
.author__coauthors[aria-hidden=false] + [id$=trigger] span:last-child::first-letter, .author__coauthors[aria-hidden=true] + [id$=trigger] span:first-child::first-letter {
  text-transform: lowercase;
}
.author__coauthors[aria-hidden=false] + [id$=trigger] span:first-child, .author__coauthors[aria-hidden=true] + [id$=trigger] span:last-child {
  display: none;
}
.focus .focus__step.author__coauthors[aria-hidden=false] + [id$=trigger] span:first-child,.focus .focus__step .author__coauthors[aria-hidden=true] + [id$=trigger] span:last-child {
  display: none;
}
[id*=dropdown-menu].order-by {
  justify-content: flex-start;
}
@media (min-width: 768px) {

  [id*=dropdown-menu].order-by {
    flex-direction: row;
    justify-content: flex-end;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
[id*=dropdown-menu].order-by .button {
  align-items: flex-end;
  justify-content: flex-end;
}
[data-target*=dropdown].order-by__button {
  justify-content: flex-end;
}
[data-target*=dropdown].order-by__button > svg {
  height: 1rem;
  width: 1rem;
  color: #6B7280CC;
}
.wizard-steps {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: stretch;
}
.wizard-steps > * {
  position: relative;
  width: 25%;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.wizard-steps > * {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.wizard-steps > *::before {
  position: absolute;
  top: -0.75rem;
  left: -50%;
  height: 0.125rem;
  width: 100%;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-bg-opacity: 1;
  background-color: rgb(var(--success-rgb) / 1);
  background-color: rgb(var(--success-rgb) / var(--tw-bg-opacity));
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
.wizard-steps > *::after {
  position: absolute;
  top: -0.25rem;
  left: 50%;
  z-index: 10;
  height: 1rem;
  width: 1rem;
  --tw-translate-y: -100%;
  --tw-translate-x: -50%;
  transform: translate(-50%, -100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(var(--success-rgb) / 1);
  background-color: rgb(var(--success-rgb) / var(--tw-bg-opacity));
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
.wizard-steps > *::after {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
.wizard-steps > *:first-child::before {
  content: var(--tw-content);
  width: 0px;
}
.wizard-steps > *[aria-current] {
  font-weight: 600;
}
.wizard-steps > *[aria-current] ~ *::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.wizard-steps > *[aria-current] ~ *::before {
    background-color: rgb(225 229 239 / var(--tw-bg-opacity));
  }
}
.wizard-steps > *[aria-current] ~ *::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.wizard-steps > *[aria-current] ~ *::after {
    background-color: rgb(225 229 239 / var(--tw-bg-opacity));
  }
}
.progress-bar {
  margin-top: 0.25rem;
  height: 0.375rem;
  width: 100%;
  --tw-translate-x: 0px;
  transform: translate(0px, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  overflow: hidden;
  border-radius: 0.25rem;
  background-color: #6B7280CC;
}
.progress-bar>* {
  height: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--success-rgb) / 1);
  background-color: rgb(var(--success-rgb) / var(--tw-bg-opacity));
}
.progress-bar > * {
    animation-name: slideInLeft;
    animation-duration: 500ms;
  }
@keyframes slideInLeft {
    from {
      transform: translateX(-100%);
    }
  }
.progress-bar__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.progress-bar__number {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.progress-bar__number {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .progress-bar__number {
    font-size: 36px;
    line-height: 45px;
  }

  .progress-bar__number>*:only-child {
    font-size: 48px;
    line-height: 60px;
  }
}
.progress-bar__number > *:last-child:not(:only-child)::before {
  font-weight: 400;
  color: #6B7280CC;
  --tw-content: " / ";
  content: " / ";
  content: var(--tw-content);
}
.progress-bar__units {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.progress-bar__units {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.progress-bar__units::first-letter {
  text-transform: uppercase;
}
.progress-bar__sm {
  width: 4rem;
  padding-top: 0.5rem;
}
.progress-bar__sm .progress-bar__number {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.progress-bar__sm .progress-bar__number {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.progress-bar__sm .progress-bar__units {
  display: none;
}
.focus .focus__step.progress-bar__sm .progress-bar__units {
  display: none;
}
.spinner-container {
  position: relative;
  cursor: wait;
}
.spinner-container::after {
  position: absolute;
  inset: 0px;
  z-index: 10;
  height: 100%;
  width: 100%;
  background-color: rgb(255 255 255 / 0.8);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
.spinner-container::before {
  position: sticky;
  top: 50vh;
  z-index: 20;
  margin-left: 50%;
  margin-top: -1.5rem;
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.spinner-container::before {
  animation: spin 1s linear infinite;
  border-radius: 9999px;
  border-width: 4px;
  border-top-color: rgb(243 244 247 / 1);
  border-bottom-color: rgb(243 244 247 / 1);
  border-left-color: rgb(243 244 247 / 1);
  --tw-border-opacity: 1;
  border-right-color: rgb(var(--secondary-rgb) / 1);
  border-right-color: rgb(var(--secondary-rgb) / var(--tw-border-opacity));
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
.spinner-container::before {
    border-top-color: rgb(243 244 247 / var(--tw-border-opacity));
    border-bottom-color: rgb(243 244 247 / var(--tw-border-opacity));
    border-left-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
@media (min-width: 768px) {

  .spinner-container::before {
    margin-left: calc(50% - 4rem);
  }
}
.toggle__switch-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.toggle__switch-trigger > :last-child {
  display: flex;
  flex-grow: 1;
  align-items: center;
  gap: 0.5rem;
}
.toggle__switch-trigger > :first-child {
  flex: none;
}
.toggle__switch-trigger-text {
  margin-left: 3rem;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.toggle__switch-toggle {
  position: relative;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  border-radius: 9999px;
}
.toggle__switch-toggle > :first-child {
  position: relative;
  height: 1.5rem;
}
.toggle__switch-toggle input {
  height: 0px;
  width: 0px;
  opacity: 0;
}
.toggle__switch-toggle-content {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 3.5rem;
  border-radius: 9999px;
  background-color: rgb(var(--alert-rgb) / 0.1);
}
.toggle__switch-toggle-content::before {
  position: absolute;
  bottom: 0.125rem;
  left: 0.125rem;
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--alert-rgb) / 1);
  background-color: rgb(var(--alert-rgb) / var(--tw-bg-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
input:focus ~ .toggle__switch-toggle-content {
  outline-style: solid;
  outline-offset: 2px;
  outline-color: rgb(var(--alert-rgb));
  transition-property: none;
}
input:focus:checked ~ .toggle__switch-toggle-content {
  outline-color: rgb(var(--success-rgb));
}
input:checked ~ .toggle__switch-toggle-content {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--success-rgb) / 1);
  background-color: rgb(var(--success-rgb) / var(--tw-bg-opacity));
}
input:checked ~ .toggle__switch-toggle-content::before {
  --tw-translate-x: 2rem;
  transform: translate(2rem, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
input:checked ~ .toggle__switch-toggle-content::before {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
input:disabled ~ .toggle__switch-toggle-content {
  cursor: not-allowed;
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
input:disabled ~ .toggle__switch-toggle-content {
    background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  }
}
input:disabled ~ .toggle__switch-toggle-content::before {
  border-width: 1px;
  border-color: #6B7280CC;
  content: var(--tw-content);
  background-color: #6B7280CC;
}
.toggle__switch-toggle-icon {
  position: absolute;
  top: 50%;
  height: 1rem;
  width: 1rem;
  width: auto;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  fill: currentColor;
}
.toggle__switch-toggle-icon:first-of-type {
  left: 0.5rem;
  display: none;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.toggle__switch-toggle-icon:first-of-type {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.toggle__switch-toggle-icon:last-of-type {
  left: 2.25rem;
  display: block;
  --tw-text-opacity: 1;
  color: rgb(var(--alert-rgb) / 1);
  color: rgb(var(--alert-rgb) / var(--tw-text-opacity));
}
input:checked ~ .toggle__switch-toggle-icon:first-of-type {
  display: block;
}
input:checked ~ .toggle__switch-toggle-icon:last-of-type {
  display: none;
}
input:disabled ~ .toggle__switch-toggle-icon {
  cursor: not-allowed;
  color: #6B7280CC;
}
.hero {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .hero {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .hero {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .hero {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  .hero {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .hero {
    max-width: 1536px;
  }
}
.hero {
  display: flex;
  height: 60vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {

  .hero {
    height: 65vh;
    gap: 4rem;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.hero__container {
    /* stylelint-disable-next-line number-leading-zero */
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 21.88%, rgba(0, 0, 0, 0.46421) 60.94%, rgba(0, 0, 0, 0.105) 100%), var(--hero-image);
    background-size: cover;
    background-position: center;
  }
.hero__title {
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.hero__title {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .hero__title {
    font-size: 48px;
    line-height: 60px;
  }
}
.actions__secondary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
@media (min-width: 768px) {

  .actions__secondary {
    flex-direction: column;
    row-gap: 1rem;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
}
.actions__secondary .button {
  justify-content: flex-start;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.not-sr-only {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.left-0 {
  left: 0px;
}
.top-0 {
  top: 0px;
}
.z-10 {
  z-index: 10;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-7 {
  grid-column: span 7 / span 7;
}
.col-start-1 {
  grid-column-start: 1;
}
.col-end-2 {
  grid-column-end: 2;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.\!m-0 {
  margin: 0px !important;
}
.m-4 {
  margin: 1rem;
}
.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.mx-0\.5 {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.\!ml-0 {
  margin-left: 0px !important;
}
.-mt-2 {
  margin-top: -0.5rem;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-10 {
  margin-left: 2.5rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-2\.5 {
  margin-left: 0.625rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-2\.5 {
  margin-right: 0.625rem;
}
.mr-8 {
  margin-right: 2rem;
}
.mr-auto {
  margin-right: auto;
}
.mt-0 {
  margin-top: 0px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-2\.5 {
  margin-top: 0.625rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-9 {
  margin-top: 2.25rem;
}
.mt-\[230px\] {
  margin-top: 230px;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.\!hidden {
  display: none !important;
}
.hidden {
  display: none;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-2 {
  height: 0.5rem;
}
.h-20 {
  height: 5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-4 {
  height: 1rem;
}
.h-40 {
  height: 10rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-\[1\.5em\] {
  height: 1.5em;
}
.h-\[60dvh\] {
  height: 60dvh;
}
.h-\[60lvh\] {
  height: 60lvh;
}
.h-\[60vh\] {
  height: 60vh;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.max-h-16 {
  max-height: 4rem;
}
.max-h-8 {
  max-height: 2rem;
}
.min-h-\[160px\] {
  min-height: 160px;
}
.min-h-max {
  min-height: -moz-max-content;
  min-height: max-content;
}
.min-h-screen {
  min-height: 100vh;
}
.\!w-1\/2 {
  width: 50% !important;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/6 {
  width: 16.666667%;
}
.w-14 {
  width: 3.5rem;
}
.w-2 {
  width: 0.5rem;
}
.w-20 {
  width: 5rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-\[1\.5em\] {
  width: 1.5em;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.max-w-fit {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.max-w-full {
  max-width: 100%;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1;
}
.flex-none {
  flex: none;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink {
  flex-shrink: 1;
}
.grow {
  flex-grow: 1;
}
.border-separate {
  border-collapse: separate;
}
.border-spacing-2 {
  --tw-border-spacing-x: 0.5rem;
  --tw-border-spacing-y: 0.5rem;
  border-spacing: 0.5rem 0.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}
.-translate-y-full {
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), -100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.columns-3 {
  -moz-columns: 3;
       columns: 3;
}
.break-inside-avoid {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-\[70\%_30\%\] {
  grid-template-columns: 70% 30%;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.place-items-center {
  place-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-0 {
  gap: 0px;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-14 {
  gap: 3.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-2\.5 {
  gap: 0.625rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-1 {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.gap-x-3 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.gap-x-8 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.gap-y-10 {
  row-gap: 2.5rem;
}
.-space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.5rem * 0);
  margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - 0));
  margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * 0);
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - 0));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - 0));
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * 0);
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - 0));
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * 0);
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - 0));
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * 0);
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-16 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - 0));
  margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4rem * 0);
  margin-bottom: calc(4rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - 0));
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * 0);
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - 0));
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * 0);
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - 0));
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * 0);
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-x > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * 0);
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - 0));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}
.divide-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(2px * 0);
  border-right-width: calc(2px * var(--tw-divide-x-reverse));
  border-left-width: calc(2px * calc(1 - 0));
  border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse)));
}
.divide-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(4px * 0);
  border-right-width: calc(4px * var(--tw-divide-x-reverse));
  border-left-width: calc(4px * calc(1 - 0));
  border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse)));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.divide-gray-3 > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
.divide-white > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.divide-white > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(255 255 255 / var(--tw-divide-opacity));
  }
}
.place-self-center {
  place-self: center;
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.self-stretch {
  align-self: stretch;
}
.overflow-hidden {
  overflow: hidden;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.text-wrap {
  text-wrap: wrap;
}
.break-all {
  word-break: break-all;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-l-md {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.rounded-l-none {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.rounded-r {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.\!border-0 {
  border-width: 0px !important;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-l {
  border-left-width: 1px;
}
.border-r-0 {
  border-right-width: 0px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-alert {
  --tw-border-opacity: 1;
  border-color: rgb(var(--alert-rgb) / 1);
  border-color: rgb(var(--alert-rgb) / var(--tw-border-opacity));
}
.border-background {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-background {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-black {
    border-color: rgb(2 2 3 / var(--tw-border-opacity));
  }
}
.border-gray {
  border-color: #6B7280CC;
}
.border-secondary {
  --tw-border-opacity: 1;
  border-color: rgb(var(--secondary-rgb) / 1);
  border-color: rgb(var(--secondary-rgb) / var(--tw-border-opacity));
}
.border-transparent {
  border-color: transparent;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-white {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
.bg-background {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-background {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.bg-background-3 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-background-3 {
    background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  }
}
.bg-gray {
  background-color: #6B7280CC;
}
.bg-gray-3 {
  --tw-bg-opacity: 1;
  background-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-gray-3 {
    background-color: rgb(225 229 239 / var(--tw-bg-opacity));
  }
}
.bg-gray-5 {
  --tw-bg-opacity: 1;
  background-color: rgb(246 248 250 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-gray-5 {
    background-color: rgb(246 248 250 / var(--tw-bg-opacity));
  }
}
.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
}
.bg-primary\/10 {
  background-color: rgb(var(--primary-rgb) / 0.1);
}
.bg-success {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--success-rgb) / 1);
  background-color: rgb(var(--success-rgb) / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-white {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.bg-\[linear-gradient\(96deg\2c _var\(--primary\)_22\.02\%\2c _var\(--secondary\)_44\.83\%\)\] {
  background-image: linear-gradient(96deg, var(--primary) 22.02%, var(--secondary) 44.83%);
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.\!fill-white {
  fill: #fff !important;
}
.fill-alert {
  fill: rgb(var(--alert-rgb));
}
.fill-black {
  fill: #020203;
}
.fill-current {
  fill: currentColor;
}
.fill-gray {
  fill: #6B7280CC;
}
.fill-secondary {
  fill: rgb(var(--secondary-rgb));
}
.fill-success {
  fill: rgb(var(--success-rgb));
}
.fill-tertiary {
  fill: rgb(var(--tertiary-rgb));
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-2\.5 {
  padding: 0.625rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.\!px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.\!pr-8 {
  padding-right: 2rem !important;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.\!text-left {
  text-align: left !important;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.align-middle {
  vertical-align: middle;
}
.\!text-sm {
  font-size: 14px !important;
  line-height: 18px !important;
}
.text-2xl {
  font-size: 24px;
  line-height: 30px;
}
.text-3xl {
  font-size: 32px;
  line-height: 40px;
}
.text-4xl {
  font-size: 36px;
  line-height: 45px;
}
.text-5xl {
  font-size: 48px;
  line-height: 60px;
}
.text-\[72px\] {
  font-size: 72px;
}
.text-lg {
  font-size: 18px;
  line-height: 23px;
}
.text-md {
  font-size: 16px;
  line-height: 20px;
}
.text-sm {
  font-size: 14px;
  line-height: 18px;
}
.text-xl {
  font-size: 20px;
  line-height: 25px;
}
.text-xs {
  font-size: 13px;
  line-height: 16px;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.leading-\[90px\] {
  line-height: 90px;
}
.leading-relaxed {
  line-height: 1.625;
}
.text-alert {
  --tw-text-opacity: 1;
  color: rgb(var(--alert-rgb) / 1);
  color: rgb(var(--alert-rgb) / var(--tw-text-opacity));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-black {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.text-gray {
  color: #6B7280CC;
}
.text-gray-2 {
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-gray-2 {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.text-primary {
  --tw-text-opacity: 1;
  color: rgb(var(--primary-rgb) / 1);
  color: rgb(var(--primary-rgb) / var(--tw-text-opacity));
}
.text-secondary {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.text-success {
  --tw-text-opacity: 1;
  color: rgb(var(--success-rgb) / 1);
  color: rgb(var(--success-rgb) / var(--tw-text-opacity));
}
.text-tertiary {
  --tw-text-opacity: 1;
  color: rgb(var(--tertiary-rgb) / 1);
  color: rgb(var(--tertiary-rgb) / var(--tw-text-opacity));
}
.text-transparent {
  color: transparent;
}
.text-warning {
  --tw-text-opacity: 1;
  color: rgb(var(--warning-rgb) / 1);
  color: rgb(var(--warning-rgb) / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-white {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.underline {
  text-decoration-line: underline;
}
.\!no-underline {
  text-decoration-line: none !important;
}
.no-underline {
  text-decoration-line: none;
}
.opacity-10 {
  opacity: 0.1;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.blur {
  --tw-blur: blur(8px);
  filter: blur(8px) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) invert(100%) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
header .admin-bar {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  header .admin-bar {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  header .admin-bar {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  header .admin-bar {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  header .admin-bar {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  header .admin-bar {
    max-width: 1536px;
  }
}
header .admin-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 0.5rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
header .admin-bar__container {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--tertiary-rgb) / 1);
  background-color: rgb(var(--tertiary-rgb) / var(--tw-bg-opacity));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
header .admin-bar__title {
  display: none;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .admin-bar__title {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.focus header.focus__step .admin-bar__title {
  display: none;
}
@media (min-width: 768px) {

  header .admin-bar__title {
    display: block;
  }
}
header .admin-bar__button {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: transparent;
  text-align: center;
  font-weight: 600;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
header .admin-bar__button:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
header .admin-bar__button>span {
  overflow-wrap: break-word;
  text-align: center;
}
header .admin-bar__button>svg {
  flex: none;
  fill: currentColor;
}
header .admin-bar__button {
  gap: 0.25rem;
  font-size: 14px;
  line-height: 18px;
}
header .admin-bar__button:not([class*="button\_\_text"]) {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
header .admin-bar__button[disabled],header .admin-bar__button.disabled {
  cursor: not-allowed;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(62 76 92 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / 1);
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .admin-bar__button[disabled],header .admin-bar__button.disabled {
    border-color: rgb(62 76 92 / var(--tw-border-opacity));
    background-color: rgb(239 239 239 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
header .admin-bar__button.is-hover,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), rgb(var(--secondary-rgb));
}
@supports (color: rgb(0 0 0 / 0)) {
header .admin-bar__button.is-hover,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
[id*=dropdown-menu].order-by header .admin-bar__button {
  align-items: flex-end;
  justify-content: flex-end;
}
.actions__secondary header .admin-bar__button {
  justify-content: flex-start;
}
header .admin-bar__button {
  background-color: rgb(255 255 255 / 0.15);
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .admin-bar__button {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .home__section-header header .admin-bar__button {
    margin-left: auto;
  }
}
.focus__footer header .admin-bar__button {
  margin-bottom: 0px;
}
header .admin-bar__title + .admin-bar__button + .admin-bar__button {
  margin-left: 0px;
}
@media (min-width: 768px) {

  header .admin-bar__title + .admin-bar__button + .admin-bar__button {
    margin-left: auto;
  }
}
header .main-bar {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  header .main-bar {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  header .main-bar {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  header .main-bar {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  header .main-bar {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  header .main-bar {
    max-width: 1536px;
  }
}
header .main-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  grid-gap: 1rem;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {

  header .main-bar {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {

  header .main-bar {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
header .main-bar {
  /* overwrite default dropdown styles */
}
header .main-bar__container {
  position: relative;
  width: 100%;
}
header .main-bar__logo {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
header .main-bar__logo :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
header .main-bar__logo :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
header .main-bar__logo :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
header .main-bar__logo :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
header .main-bar__logo :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
header .main-bar__logo :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
header .main-bar__logo :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
header .main-bar__logo :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
header .main-bar__logo :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
header .main-bar__logo :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
header .main-bar__logo :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
header .main-bar__logo :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
header .main-bar__logo :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
header .main-bar__logo :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
header .main-bar__logo :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
header .main-bar__logo :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
header .main-bar__logo :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
header .main-bar__logo :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
header .main-bar__logo :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
header .main-bar__logo :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
header .main-bar__logo :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
header .main-bar__logo :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
header .main-bar__logo :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
header .main-bar__logo :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
header .main-bar__logo :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
header .main-bar__logo :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
header .main-bar__logo :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
header .main-bar__logo :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
header .main-bar__logo :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
header .main-bar__logo :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
header .main-bar__logo :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
header .main-bar__logo :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
header .main-bar__logo :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
header .main-bar__logo :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
header .main-bar__logo :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
header .main-bar__logo :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}
header .main-bar__logo :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
header .main-bar__logo :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
header .main-bar__logo :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
header .main-bar__logo :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
header .main-bar__logo :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
header .main-bar__logo :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
header .main-bar__logo :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
header .main-bar__logo :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
header .main-bar__logo :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
header .main-bar__logo :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
header .main-bar__logo :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
header .main-bar__logo :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
header .main-bar__logo :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
header .main-bar__logo :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
header .main-bar__logo :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
header .main-bar__logo :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
header .main-bar__logo :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
header .main-bar__logo :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
header .main-bar__logo :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
header .main-bar__logo :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
header .main-bar__logo :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
header .main-bar__logo :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
header .main-bar__logo :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
header .main-bar__logo :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
header .main-bar__logo {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
header .main-bar__logo :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
header .main-bar__logo :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
header .main-bar__logo :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
header .main-bar__logo :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
header .main-bar__logo :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
header .main-bar__logo :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
header .main-bar__logo :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
header .main-bar__logo :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
header .main-bar__logo :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
header .main-bar__logo :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
header .main-bar__logo :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
header .main-bar__logo :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
header .main-bar__logo :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}
header .main-bar__logo :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
header .main-bar__logo :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
header .main-bar__logo :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
header .main-bar__logo :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
header .main-bar__logo :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
header .main-bar__logo :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
header .main-bar__logo :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
header .main-bar__logo :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
header .main-bar__logo :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
header .main-bar__logo :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
header .main-bar__logo :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
header .main-bar__logo :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
header .main-bar__logo {
  grid-column: span 3 / span 3;
}
header .main-bar__logo :is(:where(img):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  margin-top: 0px;
  margin-bottom: 0px;
  max-height: 4rem;
}
@media (min-width: 1280px) {

  header .main-bar__logo {
    grid-column: span 2 / span 2;
  }
}
header .main-bar__search {
  grid-column: span 2 / span 2;
  grid-column-start: 5;
  display: none;
}
.focus header.focus__step .main-bar__search {
  display: none;
}
@media (min-width: 768px) {

  header .main-bar__search {
    display: block;
  }
}
@media (min-width: 1280px) {

  header .main-bar__search {
    grid-column-start: 4;
  }
}
header .main-bar__search form {
  position: relative;
  display: block;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  font-size: 16px;
  line-height: 20px;
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__search form {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
header .main-bar__search input[type=text] {
  display: block;
  width: 100%;
  background-color: transparent;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
header .main-bar__search button[type=submit] {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  right: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
header .main-bar__links-desktop,
header .main-bar > *:last-child {
  grid-column: span 1 / span 1;
  justify-self: end;
}
@media (min-width: 768px) {

  header .main-bar__links-desktop,
header .main-bar > *:last-child {
    grid-column-start: 8;
  }
}
@media (min-width: 1024px) {

  header .main-bar__links-desktop,
header .main-bar > *:last-child {
    grid-column: span 5 / span 5;
    grid-column-start: 8;
  }
}
header .main-bar__links-desktop {
  margin-left: auto;
  display: none;
  align-items: center;
  justify-content: space-between;
}
header .main-bar__links-desktop > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(2px * 0);
  border-right-width: calc(2px * var(--tw-divide-x-reverse));
  border-left-width: calc(2px * calc(1 - 0));
  border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse)));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__links-desktop > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
header .main-bar__links-desktop {
  text-align: center;
}
.focus header.focus__step .main-bar__links-desktop {
  display: none;
}
@media (min-width: 1024px) {

  header .main-bar__links-desktop {
    display: flex;
  }
}
header .main-bar__links-desktop>* {
  padding-left: 1rem;
  padding-right: 1rem;
}
header .main-bar__links-desktop>*:first-child {
  padding-left: 0px;
}
header .main-bar__links-desktop>*:last-child {
  padding-right: 0px;
}
@media (min-width: 1280px) {

  header .main-bar__links-desktop>* {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
header .main-bar__links-desktop {
  /* overwrite default dropdown styles */
}
header .main-bar__links-desktop__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
header .main-bar__links-desktop__item:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  text-decoration-line: underline;
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__links-desktop__item:hover {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
header .main-bar__links-desktop__item-wrapper {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (min-width: 1280px) {

  header .main-bar__links-desktop__item-wrapper {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
header .main-bar__links-desktop [data-target*=dropdown] > span:only-of-type {
  gap: 0px;
}
header .main-bar__links-desktop svg {
  height: 1.25rem;
  width: 1.25rem;
  fill: currentColor;
}
header .main-bar__links-desktop svg + span {
  font-size: 14px;
  line-height: 18px;
}
header .main-bar__links-desktop svg + span::first-letter {
  text-transform: uppercase;
}
header .main-bar__links-mobile {
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 40;
  display: flex;
  width: 100%;
  justify-content: space-between;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
  --tw-shadow: 0 -4px 6px rgba(198,198,198,0.25);
  --tw-shadow-colored: 0 -4px 6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 -4px 6px rgba(198,198,198,0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__links-mobile {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
header .main-bar__links-mobile__trigger {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
header .main-bar__links-mobile__trigger svg {
  height: 1.25rem;
  width: 1.25rem;
  fill: currentColor;
}
header .main-bar__links-mobile__trigger span {
  font-size: 14px;
  line-height: 18px;
}
header .main-bar__links-mobile__trigger span::first-letter {
  text-transform: uppercase;
}
header .main-bar__links-mobile__dropdown {
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 30;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__links-mobile__dropdown {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
header .main-bar__links-mobile__account {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 30;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__links-mobile__account {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
header .main-bar__links-mobile__account ul {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
header .main-bar__links-mobile__account ul > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__links-mobile__account ul > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
header .main-bar__links-mobile__account li {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
header .main-bar__links-mobile__account .dropdown__item {
  font-size: 16px;
  line-height: 20px;
}
header .main-bar__links-mobile__account .main-bar {
  border-bottom-width: 1px;
  border-color: #6B7280CC;
}
header .main-bar__links-mobile__account .main-bar__avatar {
  height: 3rem;
  width: 3rem;
}
header .main-bar__links-mobile__search {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 30;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__links-mobile__search {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
header .main-bar__links-mobile__search-block {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  header .main-bar__links-mobile__search-block {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  header .main-bar__links-mobile__search-block {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  header .main-bar__links-mobile__search-block {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  header .main-bar__links-mobile__search-block {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  header .main-bar__links-mobile__search-block {
    max-width: 1536px;
  }
}
header .main-bar__links-mobile__search-block {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
header .main-bar__links-mobile__search .main-bar {
  border-bottom-width: 1px;
  border-color: #6B7280CC;
}
header .main-bar__links-mobile__search label {
  margin-bottom: 1rem;
  display: block;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__links-mobile__search label {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
header .main-bar__links-mobile__search form {
  position: relative;
}
header .main-bar__links-mobile__item {
  position: relative;
  display: flex;
  width: 25%;
  flex-direction: column;
  align-items: center;
  /* overwrite default dropdown styles */
}
header .main-bar__links-mobile__item svg {
  height: 2rem;
  width: 2rem;
  fill: currentColor;
}
header .main-bar__links-mobile__item svg + span {
  font-size: 14px;
  line-height: 18px;
}
header .main-bar__links-mobile__item svg + span::first-letter {
  text-transform: uppercase;
}
header .main-bar__links-mobile__item[data-target*=dropdown] {
  gap: 0px;
  padding: 0px;
}
header .main-bar__links-mobile__item[data-target*=dropdown] > span {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
header .main-bar__links-mobile__item[data-target*=dropdown] > span::first-letter {
  text-transform: uppercase;
}
header .main-bar__dropdown {
  z-index: 20;
  width: 16rem;
}
header .main-bar__dropdown > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__dropdown > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
header .main-bar__dropdown-container {
  position: relative;
  cursor: pointer;
}
header .main-bar__dropdown-notification {
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
}
header .main-bar__dropdown-trigger {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
header .main-bar__notification {
  position: absolute;
  top: -0.125rem;
  right: 0px;
  display: block;
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
}
header .main-bar__avatar {
  display: block;
  height: 2rem;
  width: 2rem;
  overflow: hidden;
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(var(--secondary-rgb) / 1);
  border-color: rgb(var(--secondary-rgb) / var(--tw-border-opacity));
}
header .main-bar__avatar span {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 9999px;
}
header .main-bar__avatar img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .main-bar [id*=dropdown-menu] {
  margin-left: 0px;
  margin-right: 0px;
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (min-width: 768px) {

  header .main-bar [id*=dropdown-menu][aria-hidden=true] {
    display: none;
  }
}
header .main-bar [data-target*=dropdown]>svg:last-of-type {
  display: block;
}
header .menu-bar {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  header .menu-bar {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  header .menu-bar {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  header .menu-bar {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  header .menu-bar {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  header .menu-bar {
    max-width: 1536px;
  }
}
header .menu-bar {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {

  header .menu-bar {
    position: relative;
  }
}
header .menu-bar__container {
  position: relative;
  height: 3.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
}
header .menu-bar__breadcrumb-desktop {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}
.focus header.focus__step .menu-bar__breadcrumb-desktop {
  display: none;
}
@media (min-width: 1024px) {

  header .menu-bar__breadcrumb-desktop {
    display: flex;
  }
}
header .menu-bar__breadcrumb-desktop>* {
  font-size: 18px;
  line-height: 23px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__breadcrumb-desktop>* {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
header .menu-bar__breadcrumb-desktop {
  /* overwrite default dropdown styles */
}
header .menu-bar__breadcrumb-desktop__dropdown-trigger {
  z-index: 20;
  display: flex;
  border-radius: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
header .menu-bar__breadcrumb-desktop__dropdown-trigger:hover {
  position: relative;
  z-index: 10;
}
header .menu-bar__breadcrumb-desktop__dropdown-trigger:hover::before {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -10;
  height: 10rem;
  width: calc(100% + 3rem + 1px);
  min-width: 10rem;
  --tw-translate-x: -50%;
  --tw-translate-y: -25%;
  transform: translate(-50%, -25%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
header .menu-bar__breadcrumb-desktop__dropdown-trigger svg {
  height: 1.5rem;
  width: 1.5rem;
  fill: currentColor;
}
header .menu-bar__breadcrumb-desktop__dropdown-wrapper {
  display: flex;
  cursor: pointer;
  align-items: center;
  border-radius: 0.25rem;
}
header .menu-bar__breadcrumb-desktop__dropdown-wrapper:hover {
  --tw-backdrop-brightness: brightness(.75);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) brightness(.75) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) brightness(.75) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
header .menu-bar__breadcrumb-desktop__dropdown-wrapper:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-backdrop-brightness: brightness(.75);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) brightness(.75) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) brightness(.75) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
header .menu-bar__breadcrumb-desktop__dropdown-content {
  position: absolute;
  top: 100%;
  left: 2rem;
  z-index: 20;
  cursor: auto;
}
header .menu-bar__breadcrumb-desktop__dropdown-content-secondary {
  position: absolute;
  top: calc(100% + 12px);
  left: 0px;
  z-index: 20;
}
header .menu-bar__breadcrumb-desktop [id*=dropdown-menu] {
  cursor: auto;
}
header .menu-bar__breadcrumb-desktop [id*=dropdown-menu][aria-hidden=true].no-animation {
  visibility: hidden;
  opacity: 0;
}
header .menu-bar__breadcrumb-desktop [id*=dropdown-menu][aria-hidden=true]:not(.no-animation) {
  animation-name: fadeOut;
  animation-duration: 300ms;
  animation-delay: 300ms;
  animation-fill-mode: forwards;
}
header .menu-bar__breadcrumb-desktop [id*=dropdown-menu][aria-hidden=true]:not(.no-animation):hover {
  animation: none;
}
header .menu-bar__breadcrumb-desktop [id*=dropdown-menu][aria-hidden=false] {
  animation-name: fadeIn;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
header .menu-bar__breadcrumb-desktop [data-target*=dropdown] {
  display: flex;
  width: auto;
  align-items: center;
  gap: 0px;
  padding: 0px;
}
header .menu-bar__breadcrumb-desktop [data-target*=dropdown]>svg:last-of-type {
  display: block;
}
header .menu-bar__breadcrumb-desktop [data-target*=dropdown] > svg {
  height: 1.25rem;
  width: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__breadcrumb-desktop [data-target*=dropdown] > svg {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
header .menu-bar__breadcrumb-mobile {
  z-index: 20;
  display: block;
  width: 100%;
}
@media (min-width: 1024px) {

  header .menu-bar__breadcrumb-mobile {
    display: none;
  }
}
header .menu-bar__breadcrumb-mobile {
  /* overwrite default dropdown styles */
}
header .menu-bar__breadcrumb-mobile__dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__breadcrumb-mobile__dropdown-trigger {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
header .menu-bar__breadcrumb-mobile__dropdown-trigger span {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  overflow: hidden;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__breadcrumb-mobile__dropdown-trigger span {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  header .menu-bar__breadcrumb-mobile__dropdown-trigger span {
    flex-wrap: nowrap;
  }
}
header .menu-bar__breadcrumb-mobile__dropdown-trigger svg {
  height: 1.5rem;
  width: 1.5rem;
  fill: currentColor;
}
header .menu-bar__breadcrumb-mobile [id*=dropdown-menu] {
  margin-left: 0px;
  margin-right: 0px;
  border-width: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (min-width: 768px) {

  header .menu-bar__breadcrumb-mobile [id*=dropdown-menu][aria-hidden=true] {
    display: none;
  }
}
@media (min-width: 1024px) {

  header .menu-bar__breadcrumb-mobile [id*=dropdown-menu][aria-hidden=true] {
    display: flex;
  }
}
header .menu-bar__breadcrumb-mobile [data-target*=dropdown] {
  margin-left: auto;
  width: auto;
}
@media (min-width: 768px) {

  header .menu-bar__breadcrumb-mobile [data-target*=dropdown] {
    display: block;
  }
}
@media (min-width: 1024px) {

  header .menu-bar__breadcrumb-mobile [data-target*=dropdown] {
    display: none;
  }
}
header .menu-bar__breadcrumb-mobile [data-target*=dropdown]>svg:last-of-type {
  display: block;
}
header .menu-bar__breadcrumb-mobile [data-target*=dropdown] > svg {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__breadcrumb-mobile [data-target*=dropdown] > svg {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
header .menu-bar__actions {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.focus header.focus__step .menu-bar__actions {
  display: none;
}
@media (min-width: 1024px) {

  header .menu-bar__actions {
    display: flex;
  }
}
header .menu-bar__actions-mobile span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
header .menu-bar__actions-mobile svg {
  height: 1rem;
  width: 1rem;
}
header .menu-bar__main-dropdown {
  width: 100%;
}
header .menu-bar__main-dropdown > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__main-dropdown > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
header .menu-bar__main-dropdown {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__main-dropdown {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
@media (min-width: 1024px) {

  header .menu-bar__main-dropdown {
    width: 1280px;
  }
}
header .menu-bar__main-dropdown__bottom, header .menu-bar__main-dropdown__top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding: 1rem;
}
@media (min-width: 768px) {

  header .menu-bar__main-dropdown__bottom, header .menu-bar__main-dropdown__top {
    flex-direction: row;
    padding: 2rem;
  }
}
header .menu-bar__main-dropdown__bottom-left, header .menu-bar__main-dropdown__top-left {
  width: 100%;
}
@media (min-width: 768px) {

  header .menu-bar__main-dropdown__bottom-left, header .menu-bar__main-dropdown__top-left {
    width: 50%;
  }
}
header .menu-bar__main-dropdown__bottom-left, header .menu-bar__main-dropdown__top-left {
  /* Overwrite default size */
}
header .menu-bar__main-dropdown__bottom-left .card__highlight-text, header .menu-bar__main-dropdown__top-left .card__highlight-text {
  font-size: 16px;
  line-height: 20px;
}
header .menu-bar__main-dropdown__bottom-right, header .menu-bar__main-dropdown__top-right {
  display: none;
}
.focus header.focus__step .menu-bar__main-dropdown__bottom-right,.focus  header.focus__step .menu-bar__main-dropdown__top-right {
  display: none;
}
@media (min-width: 768px) {

  header .menu-bar__main-dropdown__bottom-right, header .menu-bar__main-dropdown__top-right {
    display: block;
    width: 50%;
  }
}
header .menu-bar__main-dropdown__bottom {
  display: none;
}
.focus header.focus__step .menu-bar__main-dropdown__bottom {
  display: none;
}
@media (min-width: 768px) {

  header .menu-bar__main-dropdown__bottom {
    display: flex;
  }
}
header .menu-bar__main-dropdown__title {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  display: none;
}
.focus header.focus__step .menu-bar__main-dropdown__title {
  display: none;
}
@media (min-width: 768px) {
  header .menu-bar__main-dropdown__title {
    font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    display: flex;
  }
}
header .menu-bar__main-dropdown__subtitle {
  margin-top: 1.25rem;
  display: none;
  font-size: 16px;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__main-dropdown__subtitle {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.focus header.focus__step .menu-bar__main-dropdown__subtitle {
  display: none;
}
@media (min-width: 768px) {

  header .menu-bar__main-dropdown__subtitle {
    display: flex;
    font-size: 18px;
    line-height: 23px;
  }
}
header .menu-bar__main-dropdown__menu {
  margin-top: 0px;
  display: grid;
  width: 100%;
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
@media (min-width: 768px) {

  header .menu-bar__main-dropdown__menu {
    width: 50%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
header .menu-bar__main-dropdown__menu > * {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__main-dropdown__menu > * {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
  }
}
header .menu-bar__main-dropdown__menu > *:last-child {
  border-width: 0px;
}
@media (min-width: 768px) {

  header .menu-bar__main-dropdown__menu > * {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }
}
header .menu-bar__main-dropdown__menu > * {
  /* since the grid has 2 columns, remove the border for these last 2 columns */
}
@media (min-width: 768px) {

  header .menu-bar__main-dropdown__menu > *:nth-last-child(-n+2) {
    border-width: 0px;
  }
}
header .menu-bar__main-dropdown__menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
header .menu-bar__main-dropdown__menu a span {
  min-width: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
header .menu-bar__main-dropdown__menu a svg {
  flex: none;
  fill: currentColor;
}
header .menu-bar__secondary-dropdown {
  position: absolute;
  top: 100%;
  left: 0px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__secondary-dropdown {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
@media (min-width: 1024px) {

  header .menu-bar__secondary-dropdown {
    position: relative;
    width: 1000px;
  }
}
header .menu-bar__secondary-dropdown__left {
  display: none;
  width: 75%;
  padding: 2rem;
  font-size: 16px;
  line-height: 20px;
}
.focus header.focus__step .menu-bar__secondary-dropdown__left {
  display: none;
}
@media (min-width: 768px) {

  header .menu-bar__secondary-dropdown__left {
    display: block;
  }
}
header .menu-bar__secondary-dropdown__title {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}
@media (min-width: 768px) {
  header .menu-bar__secondary-dropdown__title {
    font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
  }
}
header .menu-bar__secondary-dropdown__menu {
  width: 100%;
}
header .menu-bar__secondary-dropdown__menu > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__secondary-dropdown__menu > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
header .menu-bar__secondary-dropdown__menu {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0px;
  padding-bottom: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__secondary-dropdown__menu {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  header .menu-bar__secondary-dropdown__menu {
    width: 25%;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
header .menu-bar__secondary-dropdown__menu > * {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
@media (min-width: 768px) {

  header .menu-bar__secondary-dropdown__menu > * {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }
}
header .menu-bar__secondary-dropdown__menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__secondary-dropdown__menu a {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
header .menu-bar__secondary-dropdown__menu a span {
  min-width: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
header .menu-bar__secondary-dropdown__menu a svg {
  flex: none;
  fill: currentColor;
}
header .menu-bar__secondary-dropdown__metadata {
  display: flex;
  align-items: center;
}
header .menu-bar__secondary-dropdown__metadata > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * 0);
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - 0));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
header .menu-bar__secondary-dropdown__metadata {
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 14px;
  line-height: 18px;
}
header .menu-bar__secondary-dropdown__metadata > span {
  display: flex;
  align-items: center;
}
header .menu-bar__secondary-dropdown__metadata > span > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * 0);
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - 0));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
footer {
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {

  footer {
    margin-bottom: 0px;
  }
}
footer .main-footer {
  --tw-bg-opacity: 1;
  background-color: rgb(36 36 36 / 1);
  /* overwrite default dropdown styles */
  /* overwrite default dropdown styles */
}
@supports (color: rgb(0 0 0 / 0)) {
footer .main-footer {
    background-color: rgb(36 36 36 / var(--tw-bg-opacity));
  }
}
footer .main-footer__top {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  footer .main-footer__top {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  footer .main-footer__top {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  footer .main-footer__top {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  footer .main-footer__top {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  footer .main-footer__top {
    max-width: 1536px;
  }
}
footer .main-footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 1024px) {

  footer .main-footer__top {
    flex-direction: row;
  }
}
footer .main-footer__down {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  footer .main-footer__down {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  footer .main-footer__down {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  footer .main-footer__down {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  footer .main-footer__down {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  footer .main-footer__down {
    max-width: 1536px;
  }
}
footer .main-footer__down {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(2 2 3 / 1);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
footer .main-footer__down {
    border-color: rgb(2 2 3 / var(--tw-border-opacity));
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
footer .main-footer__language {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
footer .main-footer__language {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
footer .main-footer__language-container {
  position: relative;
}
footer .main-footer__language-trigger {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
@supports (color: rgb(0 0 0 / 0)) {
footer .main-footer__language-trigger {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
footer .main-footer [data-target*=dropdown] > svg {
  height: 1rem;
  width: 1rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
footer .main-footer [data-target*=dropdown] > svg {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
footer .main-footer [data-target*=dropdown] > svg:last-of-type {
  margin-left: auto;
  display: block;
}
footer .main-footer [data-target*=dropdown][aria-expanded=true] > svg:first-of-type {
  display: block;
}
footer .main-footer [data-target*=dropdown] > span {
  display: block;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
footer .main-footer [data-target*=dropdown] > span {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
footer .main-footer [id*=dropdown-menu] {
  margin-left: 0px;
  margin-right: 0px;
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (min-width: 768px) {

  footer .main-footer [id*=dropdown-menu][aria-hidden=true] {
    display: none;
  }
}
footer .mini-footer {
  --tw-bg-opacity: 1;
  background-color: rgb(2 2 3 / 1);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)) {
footer .mini-footer {
    background-color: rgb(2 2 3 / var(--tw-bg-opacity));
  }
}
footer .mini-footer__content {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  footer .mini-footer__content {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  footer .mini-footer__content {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  footer .mini-footer__content {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  footer .mini-footer__content {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  footer .mini-footer__content {
    max-width: 1536px;
  }
}
footer .mini-footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
footer .mini-footer__content {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.login__info {
  margin-bottom: 2.5rem;
}
.login__info > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.login__info {
  font-size: 18px;
  line-height: 23px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.login__info {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.login__info :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
  text-decoration-line: underline;
}
.login__info-required {
  margin-bottom: 2.5rem;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.login__info-required {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.login__info-separator {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.login__info-separator {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.login__omniauth {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.login__omniauth {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.login__omniauth-button {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: transparent;
  text-align: center;
  font-weight: 600;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.login__omniauth-button:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.login__omniauth-button>span {
  overflow-wrap: break-word;
  text-align: center;
}
.login__omniauth-button>svg {
  flex: none;
  fill: currentColor;
}
.login__omniauth-button {
  gap: 1rem;
  font-size: 20px;
  line-height: 25px;
}
.login__omniauth-button:not([class*="button\_\_text"]) {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.login__omniauth-button[disabled],.login__omniauth-button.disabled {
  cursor: not-allowed;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(62 76 92 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / 1);
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.login__omniauth-button[disabled],.login__omniauth-button.disabled {
    border-color: rgb(62 76 92 / var(--tw-border-opacity));
    background-color: rgb(239 239 239 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.login__omniauth-button.is-hover,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), rgb(var(--secondary-rgb));
}
@supports (color: rgb(0 0 0 / 0)) {
.login__omniauth-button.is-hover,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
[id*=dropdown-menu].order-by .login__omniauth-button {
  align-items: flex-end;
  justify-content: flex-end;
}
.actions__secondary .login__omniauth-button {
  justify-content: flex-start;
}
.login__omniauth-button {
  width: 100%;
  justify-content: flex-start;
  gap: 2rem;
  border-width: 1px;
  border-color: #6B7280CC;
  font-size: 18px;
  line-height: 23px;
  --tw-shadow: 0 4px 6px rgba(211,211,211,0.25);
  --tw-shadow-colored: 0 4px 6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px rgba(211,211,211,0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 768px) {

  .home__section-header .login__omniauth-button {
    margin-left: auto;
  }
}
.focus__footer .login__omniauth-button {
  margin-bottom: 0px;
}
.login__omniauth-button svg {
  height: 1.5rem;
  width: 1.5rem;
  flex: none;
  fill: currentColor;
}
.login__omniauth-separator {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.login__omniauth-separator::before {
  height: 1px;
  flex-grow: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
.login__omniauth-separator::before {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.login__omniauth-separator::after {
  height: 1px;
  flex-grow: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
.login__omniauth-separator::after {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.login__omniauth__horizontal {
  flex-direction: row;
  flex-wrap: wrap;
}
.login__omniauth__horizontal>a {
  width: auto;
}
.login__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.login__links {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.login__links a {
  width: -moz-fit-content;
  width: fit-content;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.login__links a:hover {
  text-decoration-line: underline;
}
.login__modal-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {

  .login__modal-links {
    flex-direction: row;
    align-items: center;
  }
}
.login__modal-links>a {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.login__modal [data-announcement] {
  margin-top: 1rem;
}
.login__modal .login__omniauth {
  margin-top: 1.5rem;
}
.login__modal .login__omniauth-separator:last-child {
  visibility: hidden;
  margin-top: 0px;
}
.page__accordion {
  border-radius: 0.25rem;
  border-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.page__accordion {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.page__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page__accordion-trigger > :first-child {
  flex-grow: 1;
}
.page__accordion-trigger > :last-child {
  flex: none;
}
.page__accordion-trigger-title {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.page__accordion-trigger-title:hover {
  text-decoration-line: underline;
}
.page__accordion-trigger-snippet {
  margin-top: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.page__accordion-trigger-snippet {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.page__accordion-trigger-arrow {
  height: 2rem;
  width: 2rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.page__accordion-trigger-arrow:first-child {
  display: block;
}
.page__accordion-trigger-arrow:last-child {
  display: none;
}
[role=button][aria-expanded=true] .page__accordion-trigger-arrow:first-child {
  display: none;
}
[role=button][aria-expanded=true] .page__accordion-trigger-arrow:last-child {
  display: block;
}
.page__accordion-panel {
  margin-top: 1rem;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  padding-top: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.page__accordion-panel {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
  }
}
.page__accordion-panel ul > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.page__accordion-panel a:hover {
  text-decoration-line: underline;
}
.page__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {

  .page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.notification {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.notification:last-child {
  padding-bottom: 0px;
}
.notification + .notification {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  padding-top: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.notification + .notification {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
  }
}
.notification__wrapper {
  display: flex;
  flex-grow: 1;
  flex-direction: column-reverse;
  gap: 0.5rem;
}
@media (min-width: 768px) {

  .notification__wrapper {
    flex-direction: row;
    gap: 1rem;
  }
}
.notification__time {
  width: 100%;
  flex: none;
  overflow-wrap: break-word;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.notification__time {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.notification__time::first-letter {
  text-transform: uppercase;
}
@media (min-width: 768px) {

  .notification__time {
    width: 16.666667%;
    font-size: 16px;
    line-height: 20px;
  }
}
.notification__snippet {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.notification__snippet > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - 0));
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * 0);
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.notification__snippet-title :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.notification__snippet-title :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))):hover {
  text-decoration-line: underline;
}
.notification__snippet-resource {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.notification__snippet-resource {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.notification__snippet-resource svg {
  fill: currentColor;
  color: #6B7280CC;
}
.notification__button {
  display: flex;
  flex: none;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 13px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)) {
.notification__button {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.notification__button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.notification__button:hover {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.profile__avatar {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__avatar {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
.profile__avatar img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile__avatar-container {
  position: relative;
  height: 6rem;
  width: 6rem;
}
.profile__avatar-badge {
  position: absolute;
  top: 100%;
  right: 0px;
  display: grid;
  height: 1.5rem;
  width: 1.5rem;
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), -100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  place-items: center;
  overflow: hidden;
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__avatar-badge {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
.profile__avatar-badge svg {
  height: 1rem;
  width: 1rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__avatar-badge svg {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.profile__details > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.profile__details {
  padding-bottom: 0.75rem;
}
.profile__details-data {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 1rem;
}
.profile__details-item {
  display: flex;
  align-items: center;
}
.profile__details-item > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.375rem * 0);
  margin-right: calc(0.375rem * var(--tw-space-x-reverse));
  margin-left: calc(0.375rem * calc(1 - 0));
  margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
}
.profile__details-item {
  white-space: nowrap;
}
.profile__details-item svg {
  height: 0.875rem;
  width: 0.875rem;
  fill: currentColor;
  color: #6B7280CC;
}
.profile__details-item span {
  max-width: 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 18px;
  text-transform: lowercase;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__details-item span {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.profile__description {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__description {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.profile__description:last-child {
  padding-bottom: 0px;
}
.profile__actions-main {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1.5rem;
}
@media (min-width: 768px) {

  .profile__actions-main {
    gap: 1rem;
  }
}
.profile__actions-main {
  /* overwrite default dropdown styles */
}
.profile__actions-main__dropdown {
  z-index: 20;
  width: 16rem;
}
.profile__actions-main__dropdown > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__actions-main__dropdown > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
.profile__actions-main__dropdown-container {
  position: relative;
}
.profile__actions-main__dropdown-trigger {
  display: flex;
  justify-content: center;
}
.profile__actions-main [id*=dropdown-menu] {
  margin-left: 0px;
  margin-right: 0px;
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (min-width: 768px) {

  .profile__actions-main [id*=dropdown-menu] {
    width: auto;
  }

  .profile__actions-main [id*=dropdown-menu][aria-hidden=true] {
    display: none;
  }
}
.profile__actions-main [data-target*=dropdown]>svg {
  height: auto;
  width: auto;
}
.profile__actions-main [data-target*=dropdown]>svg:last-of-type {
  display: block;
}
.profile__actions-main [data-target*=dropdown]:hover > svg, .profile__actions-main [data-target*=dropdown]:hover > span {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__actions-main [data-target*=dropdown]:hover > svg, .profile__actions-main [data-target*=dropdown]:hover > span {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.profile__actions-secondary {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 768px) {

  .profile__actions-secondary {
    justify-content: space-between;
  }
}
.profile__tab {
  flex-grow: 1;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.profile__tab.is-active {
  z-index: 10;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__tab.is-active {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.profile__tab-item {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem;
}
@media (min-width: 768px) {

  .profile__tab-item {
    flex-direction: row;
  }
}
.profile__tab-item svg {
  height: 1rem;
  width: 1rem;
  fill: currentColor;
}
.profile__activity {
  display: grid;
  align-items: flex-start;
  grid-gap: 1rem;
  gap: 1rem;
}
@media (min-width: 768px) {

  .profile__activity {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 3rem;
  }

  .profile__activity>*:first-child {
    grid-column: span 2 / span 2;
  }

  .profile__activity>*:last-child {
    grid-column: span 6 / span 6;
  }
}
.profile__activity__container > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__activity__container > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
.profile__badge {
  position: relative;
}
.profile__badge-banner {
  display: flex;
  gap: 0.75rem;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__badge-banner {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.profile__badge-banner>*:last-child > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.profile__badge-banner svg {
  height: 1.25rem;
  width: 1.25rem;
  flex: none;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(var(--tertiary-rgb) / 1);
  color: rgb(var(--tertiary-rgb) / var(--tw-text-opacity));
}
.profile__badge-banner p {
  font-size: 16px;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__badge-banner p {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.profile__badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {

  .profile__badge-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.profile__badge-outline {
  --color: var(--tertiary);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  height: 8rem;
  width: 8rem;
  place-items: center;
  overflow: hidden;
  border-radius: 9999px;
  background-image: radial-gradient(farthest-side,#F3F4F7 90%,transparent 0 100%),conic-gradient(var(--tertiary) calc(var(--value) * 100%),transparent 0);
}
@supports (background: radial-gradient(red, red 1px 2px, red 3px)) {
.profile__badge-outline {
  background-image: radial-gradient(farthest-side,#F3F4F7 90%,transparent 0 100%),conic-gradient(var(--color) calc(var(--value) * 100%),transparent 0);
}
}
.profile__badge-circle {
  margin: 5% auto;
  height: 90%;
  width: 90%;
  overflow: hidden;
  border-radius: 9999px;
}
.profile__badge-title {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 10;
  --tw-translate-y: -50%;
  --tw-translate-x: -50%;
  transform: translate(-50%, -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--primary-rgb) / 1);
  color: rgb(var(--primary-rgb) / var(--tw-text-opacity));
  box-shadow: 0 4px 6px 0 rgba(211, 211, 211, 0.25);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__badge-title {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.profile__badge-name {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__badge-name {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.profile__badge-description {
  margin-top: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__badge-description {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.profile__user {
  display: flex;
  align-items: center;
}
.profile__user > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.375rem * 0);
  margin-right: calc(0.375rem * var(--tw-space-x-reverse));
  margin-left: calc(0.375rem * calc(1 - 0));
  margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
}
.profile__user-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
@media (min-width: 768px) {

  .profile__user-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}
.profile__user-avatar {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__user-avatar {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
.profile__user-avatar img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile__user-avatar-container {
  position: relative;
  height: 3rem;
  width: 3rem;
  flex: none;
}
.profile__user-avatar-badge {
  position: absolute;
  top: 100%;
  right: 0px;
  display: grid;
  height: 1rem;
  width: 1rem;
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), -100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  place-items: center;
  overflow: hidden;
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__user-avatar-badge {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
.profile__user-avatar-badge svg {
  height: 0.625rem;
  width: 0.625rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__user-avatar-badge svg {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.profile__user-name {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.profile__user-nick {
  text-transform: lowercase;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__user-nick {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.profile__user:hover .profile__user-avatar {
  --tw-border-opacity: 1;
  border-color: rgb(var(--tertiary-rgb) / 1);
  border-color: rgb(var(--tertiary-rgb) / var(--tw-border-opacity));
}
.profile__user:hover .profile__user-name {
  text-decoration-line: underline;
}
.profile__group {
  margin-bottom: 3.5rem;
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  padding-bottom: 3rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__group {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
  }
}
.profile__group p {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__group p {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.profile__group__description {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-top-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  padding-top: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__group__description {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.profile__group__back {
  position: absolute;
  top: 1.5rem;
  right: 0px;
  display: grid;
  height: 1.5rem;
  width: 1.5rem;
  place-items: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__group__back {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
@media (min-width: 768px) {

  .profile__group__back {
    top: 3rem;
    left: -3rem;
  }
}
.profile__group__back>svg {
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.profile__group__list {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.profile__group__list:first-child {
  margin-top: 0px;
}
.profile__group__list:last-child {
  margin-bottom: 0px;
}
@media (min-width: 768px) {

  .profile__group__list {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: nowrap;
  }
}
.profile__group__list>*:nth-child(1) {
  width: 100%;
}
@media (min-width: 768px) {

  .profile__group__list>*:nth-child(1) {
    width: auto;
  }

  .profile__group__list>*:nth-child(2) {
    margin-left: auto;
  }
}
.profile__scaffold__top {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__scaffold__top {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.profile__scaffold__top>* {
  margin-bottom: 0px;
}
.profile__scaffold__top-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {

  .profile__scaffold__top-content {
    flex-direction: row;
    align-items: flex-start;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.profile__scaffold__top-content > *:nth-child(1) {
  flex: none;
}
.profile__scaffold__top-content > *:nth-child(2) {
  width: 100%;
  flex-grow: 1;
}
.profile__scaffold__top-content > *:nth-child(2) > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__scaffold__top-content > *:nth-child(2) > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
@media (min-width: 768px) {

  .profile__scaffold__top-content > *:nth-child(2) {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.profile__scaffold__top-content > *:nth-child(3) {
  display: inline-flex;
  max-width: 100%;
  flex: none;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {

  .profile__scaffold__top-content > *:nth-child(3) {
    width: 20%;
  }
}
.profile__scaffold__middle {
  overflow-x: auto;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__scaffold__middle {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.profile__scaffold__middle>* {
  margin-bottom: 0px;
}
.profile__scaffold__middle-content {
  display: flex;
  justify-content: space-between;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__scaffold__middle-content {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.profile__scaffold__bottom {
  /* stylelint-disable-next-line number-leading-zero */
  margin-top: -0.125rem;
  border-top-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__scaffold__bottom {
  border-color: rgb(225 229 239 / var(--tw-border-opacity));
}
}
.profile__scaffold__bottom>* {
  margin-bottom: 0px;
}
.profile__scaffold__bottom-content {
  position: relative;
  margin-bottom: 8rem;
  min-height: 200px;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {

  .profile__scaffold__bottom-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.conversation__aside {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {

  .conversation__aside {
    flex-direction: column;
    gap: 2rem;
  }
}
.conversation__aside-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {

  .conversation__aside-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.conversation__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
}
.conversation__item:last-child {
  padding-bottom: 0px;
}
.conversation__item + .conversation__item {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  padding-top: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.conversation__item + .conversation__item {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
  }
}
.conversation__item-avatar {
  display: grid;
  height: 2rem;
  width: 2rem;
  flex: none;
  place-items: center;
  overflow: hidden;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
@supports (color: rgb(0 0 0 / 0)) {
.conversation__item-avatar {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
.conversation__item-snippet {
  flex-grow: 1;
}
.conversation__item-snippet > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * calc(1 - 0));
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * 0);
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}
.conversation__item-snippet {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.conversation__item-snippet-title {
  display: flex;
  gap: 1rem;
}
.conversation__item-snippet-message {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.conversation__item-snippet-message {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.conversation__item-snippet-time {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.conversation__item-snippet-time {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.conversation__item-unread {
  width: 8.333333%;
  flex: none;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.conversation__item-unread {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.conversation__item-unread > * {
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  font-weight: 600;
}
.conversation__item:hover .conversation__item-avatar {
  --tw-border-opacity: 1;
  border-color: rgb(var(--tertiary-rgb) / 1);
  border-color: rgb(var(--tertiary-rgb) / var(--tw-border-opacity));
}
.conversation__item:hover .conversation__item-snippet-title {
  text-decoration-line: underline;
}
.conversation__title {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.conversation__participants {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.conversation__participants {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
@media (min-width: 768px) {

  .conversation__participants {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
.conversation__message {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 768px) {

  .conversation__message {
    width: 75%;
  }
}
.conversation__message-text {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.conversation__message-text > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.conversation__message-text {
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding: 1rem;
  padding-top: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.conversation__message-text {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.conversation__message-sender {
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.conversation__message-time {
  display: block;
  font-size: 13px;
  line-height: 16px;
}
.conversation__reply {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media (min-width: 768px) {

  .conversation__reply {
    width: 66.666667%;
  }
}
.conversation__reply-container {
  margin-top: 1.5rem;
  border-top-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.conversation__reply-container {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.conversation__reply textarea {
  width: 100%;
  border-radius: 0.5rem;
  border-width: 1px;
  border-color: #6B7280CC;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.conversation__modal-results {
  margin-bottom: 5rem;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1rem;
}
.conversation__modal [role=listbox] li, .conversation__modal-results li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.conversation__modal [role=listbox] img, .conversation__modal-results img {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}
.conversation__modal [role=listbox] span, .conversation__modal-results span {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.conversation__modal [role=listbox] small, .conversation__modal-results small {
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.conversation__modal [role=listbox] small, .conversation__modal-results small {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.conversation__modal [role=listbox] svg, .conversation__modal-results svg {
  height: 1rem;
  width: 1rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(var(--primary-rgb) / 1);
  color: rgb(var(--primary-rgb) / var(--tw-text-opacity));
}
.conversation__modal [role=listbox] .is-group, .conversation__modal-results .is-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.version__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding: 0.75rem;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.version__list {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.version__list>svg {
  display: none;
}
.version__list.is-active {
  background-color: #E4EEFF99;
  font-weight: 700;
}
.version__list.is-active>svg {
  display: block;
  fill: currentColor;
}
.version__list + .version__list {
  margin-top: 1rem;
}
.version__author {
  margin-top: 1rem;
}
.version__selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.version__selector-container {
  margin-top: 2rem;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.version__selector-container>* {
  flex-grow: 1;
}
.version__selector-container>*:last-child {
  flex: none;
}
.version__selector > label {
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.version__selector > label {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.version__diff > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.version__diff-container {
  margin-top: 2rem;
}
.version__diff-container > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - 0));
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * 0);
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.version__diff-split {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}
.version__diff-split>* {
  width: 50%;
}
.version__diff-split span {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.version__diff-split span {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.version__diff li {
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.version__diff li {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.version__diff li span {
  margin-right: 0.5rem;
}
.version__diff li strong {
  font-weight: 400;
}
.version__diff li.ins {
  background-color: rgb(var(--success-rgb) / 0.2);
}
.version__diff li.ins strong {
  background-color: rgb(var(--success-rgb) / 0.2);
}
.version__diff li.del {
  background-color: rgb(var(--alert-rgb) / 0.2);
}
.version__diff li.del strong {
  background-color: rgb(var(--alert-rgb) / 0.2);
}
.version__diff li > ins,
.version__diff li > del,
.version__diff li > * {
  overflow-wrap: break-word;
  text-decoration-line: none;
}
.version__diff li + li {
  margin-top: 1rem;
}
.home__section,
.home .content-block {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .home__section,
.home .content-block {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .home__section,
.home .content-block {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .home__section,
.home .content-block {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  .home__section,
.home .content-block {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .home__section,
.home .content-block {
    max-width: 1536px;
  }
}
.home__section,
.home .content-block {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {

  .home__section,
.home .content-block {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.home__section ~ .content-block,
.home .content-block ~ .content-block {
  border-width: 0px;
}
.home .activity__container:not(:last-child) .activity:last-child {
  margin-bottom: 1rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(225 229 239 / 1);
  padding-bottom: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.home .activity__container:not(:last-child) .activity:last-child {
    border-color: rgb(225 229 239 / var(--tw-border-opacity));
  }
}
.home__section-content-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}
.home__section-title {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  position: relative;
}
.home__section-title::after {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0px;
  height: 0.25rem;
  width: 2.5rem;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--tertiary-rgb) / 1);
  background-color: rgb(var(--tertiary-rgb) / var(--tw-bg-opacity));
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
.home__section-image {
  /* stylelint-disable-next-line number-leading-zero */
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 21.88%, rgba(0, 0, 0, 0.46421) 60.94%, rgba(0, 0, 0, 0.105) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
}
.home__section-header {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.5rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
@media (min-width: 768px) {

  .home__section-header {
    margin-bottom: 2rem;
    flex-direction: row;
    align-items: center;
    row-gap: 0px;
  }

  .home__section-header .button {
    margin-left: auto;
  }
}
.home__section-content-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {

  .home__section-content-banner {
    flex-direction: row;
  }
}
.home__section-content-banner__title {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.home__section-content-banner__title {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.home__section-content-banner .editor-content > * {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.home__section-content-banner .editor-content > * {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.home__section-participate-grid {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-row-gap: 1rem;
  row-gap: 1rem;
}
@media (min-width: 768px) {

  .home__section-participate-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.home__section-participate-grid__title {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.5rem;
}
.home__section-participate-grid__text {
  font-size: 16px;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.home__section-participate-grid__text {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.home__section-participate-grid__block {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
.home__section-participate-grid__icon {
  height: 1.5rem;
  width: 1.5rem;
  fill: rgb(var(--secondary-rgb));
}
.home__menu {
  display: none;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.focus .focus__step.home__menu {
  display: none;
}
@media (min-width: 768px) {

  .home__menu {
    display: block;
  }
}
.home__menu__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.home__menu-element {
  position: relative;
}
.home__menu-element::after {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  opacity: 0.6;
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
.home__menu-element::after {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.home__menu-element:last-child::before {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  opacity: 0.6;
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@supports (color: rgb(0 0 0 / 0)) {
.home__menu-element:last-child::before {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.home__menu-element--link {
  width: 100%;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  text-decoration-line: underline;
  text-decoration-color: transparent;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@supports (color: rgb(0 0 0 / 0)) {
.home__menu-element--link {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.home__menu-element--link:hover {
  text-decoration-color: #fff;
}
.home .initiatives__progress-bar .progress-bar__container {
  width: 4rem;
}
.home .initiatives__progress-bar .progress-bar__number {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.home .initiatives__progress-bar .progress-bar__number {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.home .initiatives__progress-bar .progress-bar__units {
  display: none;
}
.focus .focus__step.home .initiatives__progress-bar .progress-bar__units {
  display: none;
}
.search__filter {
  align-self: stretch;
}
.search__filter [id*=dropdown-menu] {
  cursor: auto;
  gap: 0px;
}
.search__filter [id*=dropdown-menu] > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(239 239 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.search__filter [id*=dropdown-menu] > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(239 239 239 / var(--tw-divide-opacity));
  }
}
.search__filter [id*=dropdown-menu]>* > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.search__filter [id*=dropdown-menu]>* {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.search__filter [id*=dropdown-menu]>*:first-child {
  padding-top: 0px;
}
.search__filter [id*=dropdown-menu]>*:last-child {
  padding-bottom: 0px;
}
.search__filter [id*=dropdown-menu] .is-empty {
  pointer-events: none;
  opacity: 0.25;
}
.search__result > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - 0));
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * 0);
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.search__result {
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.search__result {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.search__result:first-child {
  padding-top: 0px;
}
.search__result:last-child {
  border-width: 0px;
  padding-bottom: 0px;
}
.cookies {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .cookies {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .cookies {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .cookies {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  .cookies {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .cookies {
    max-width: 1536px;
  }
}
.cookies {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {

  .cookies {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }
}
.cookies__container {
  position: fixed;
  bottom: 0px;
  z-index: 50;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-shadow: 0 -4px 6px rgba(211,211,211,0.25);
  --tw-shadow-colored: 0 -4px 6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 -4px 6px rgba(211,211,211,0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  animation-name: slideInUp;
  animation-duration: 50ms;
}
@supports (color: rgb(0 0 0 / 0)) {
.cookies__container {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.cookies__left {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 768px) {

  .cookies__left {
    width: 80%;
    flex-direction: row;
    align-items: center;
  }
}
.cookies__left p {
  margin-top: 0.5rem;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.cookies__left p {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.cookies__right {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {

  .cookies__right {
    width: 20%;
  }
}
.cookies__category {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
  border-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.cookies__category {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.cookies__category:first-child {
  margin-top: 0px;
}
.cookies__category:last-child {
  margin-bottom: 0px;
}
.cookies__category-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.cookies__category-trigger > :last-child {
  display: flex;
  flex-grow: 1;
  align-items: center;
  gap: 0.5rem;
}
.cookies__category-trigger > :last-child>*:last-child {
  margin-left: auto;
}
.cookies__category-trigger > :first-child {
  flex: none;
}
.cookies__category-trigger-title {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.cookies__category-trigger-snippet {
  margin-top: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.cookies__category-trigger-snippet {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.cookies__category-trigger-arrow {
  height: 2rem;
  width: 2rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.cookies__category-trigger-arrow:first-child {
  display: block;
}
.cookies__category-trigger-arrow:last-child {
  display: none;
}
[role=button][aria-expanded=true] .cookies__category-trigger-arrow:first-child {
  display: none;
}
[role=button][aria-expanded=true] .cookies__category-trigger-arrow:last-child {
  display: block;
}
.cookies__category-panel > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.cookies__category-panel > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(225 229 239 / var(--tw-divide-opacity));
  }
}
.cookies__category-panel>* {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cookies__category-panel>p {
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.cookies__category-panel>p {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.cookies__category-panel__tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.25rem;
}
.cookies__category-panel__tr:first-of-type {
  background-color: #E4EEFF99;
}
.cookies__category-panel__th {
  width: 25%;
  background-color: #E4EEFF99;
  padding: 0.5rem;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.cookies__category-panel__th {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.cookies__category-panel__td {
  width: 25%;
  padding: 0.5rem;
  font-size: 13px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.cookies__category-panel__td {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.cookies__category-toggle {
  position: relative;
  display: inline-block;
  height: 1.5rem;
  width: 3.5rem;
  border-radius: 9999px;
}
.cookies__category-toggle input {
  height: 0px;
  width: 0px;
  opacity: 0;
}
.cookies__category-toggle-content {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  cursor: pointer;
  border-radius: 9999px;
  background-color: rgb(var(--alert-rgb) / 0.1);
}
.cookies__category-toggle-content::before {
  position: absolute;
  bottom: 0.125rem;
  left: 0.125rem;
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--alert-rgb) / 1);
  background-color: rgb(var(--alert-rgb) / var(--tw-bg-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
input:focus ~ .cookies__category-toggle-content {
  outline-style: solid;
  outline-width: 1px;
  outline-offset: 2px;
  outline-color: rgb(var(--tertiary-rgb));
  transition-property: none;
}
input:checked ~ .cookies__category-toggle-content {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--success-rgb) / 1);
  background-color: rgb(var(--success-rgb) / var(--tw-bg-opacity));
}
input:checked ~ .cookies__category-toggle-content::before {
  --tw-translate-x: 2rem;
  transform: translate(2rem, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
input:checked ~ .cookies__category-toggle-content::before {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
input:disabled ~ .cookies__category-toggle-content {
  cursor: not-allowed;
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
input:disabled ~ .cookies__category-toggle-content {
    background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  }
}
input:disabled ~ .cookies__category-toggle-content::before {
  border-width: 1px;
  border-color: #6B7280CC;
  content: var(--tw-content);
  background-color: #6B7280CC;
}
.cookies__category-toggle-icon {
  position: absolute;
  top: 50%;
  height: 1rem;
  width: 1rem;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  fill: currentColor;
}
.cookies__category-toggle-icon:first-of-type {
  left: 0.5rem;
  display: none;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.cookies__category-toggle-icon:first-of-type {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.cookies__category-toggle-icon:last-of-type {
  right: 0.5rem;
  display: block;
  --tw-text-opacity: 1;
  color: rgb(var(--alert-rgb) / 1);
  color: rgb(var(--alert-rgb) / var(--tw-text-opacity));
}
input:checked ~ .cookies__category-toggle-icon:first-of-type {
  display: block;
}
input:checked ~ .cookies__category-toggle-icon:last-of-type {
  display: none;
}
input:disabled ~ .cookies__category-toggle-icon {
  cursor: not-allowed;
  color: #6B7280CC;
}
.participatory-space__hero {
  --tw-backdrop-brightness: brightness(30%);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) brightness(30%) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) brightness(30%) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.participatory-space__hero-text {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .participatory-space__hero-text {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .participatory-space__hero-text {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .participatory-space__hero-text {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  .participatory-space__hero-text {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .participatory-space__hero-text {
    max-width: 1536px;
  }
}
.participatory-space__hero-text > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - 0));
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * 0);
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.participatory-space__hero-text {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__hero-text {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .participatory-space__hero-text {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .participatory-space__hero-text a + a {
    margin-left: 1.5rem;
  }
}
.participatory-space__hero-slogan {
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
}
.participatory-space__container > :not([id^=html-block]):not([id^=hero]):not([id^=floating-helper]) {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .participatory-space__container > :not([id^=html-block]):not([id^=hero]):not([id^=floating-helper]) {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .participatory-space__container > :not([id^=html-block]):not([id^=hero]):not([id^=floating-helper]) {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .participatory-space__container > :not([id^=html-block]):not([id^=hero]):not([id^=floating-helper]) {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  .participatory-space__container > :not([id^=html-block]):not([id^=hero]):not([id^=floating-helper]) {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .participatory-space__container > :not([id^=html-block]):not([id^=hero]):not([id^=floating-helper]) {
    max-width: 1536px;
  }
}
.participatory-space__container > [id^=html-block] {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.participatory-space__container > [id^=html-block] :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.participatory-space__container > [id^=html-block] :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.participatory-space__container > [id^=html-block] :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.participatory-space__container > [id^=html-block] :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.participatory-space__container > [id^=html-block] :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.participatory-space__container > [id^=html-block] :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.participatory-space__container > [id^=html-block] :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.participatory-space__container > [id^=html-block] :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.participatory-space__container > [id^=html-block] :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.participatory-space__container > [id^=html-block] :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.participatory-space__container > [id^=html-block] :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.participatory-space__container > [id^=html-block] :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.participatory-space__container > [id^=html-block] :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.participatory-space__container > [id^=html-block] :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.participatory-space__container > [id^=html-block] :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.participatory-space__container > [id^=html-block] :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.participatory-space__container > [id^=html-block] :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.participatory-space__container > [id^=html-block] :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.participatory-space__container > [id^=html-block] :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
.participatory-space__container > [id^=html-block] :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.participatory-space__container > [id^=html-block] :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.participatory-space__container > [id^=html-block] :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.participatory-space__container > [id^=html-block] :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.participatory-space__container > [id^=html-block] :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.participatory-space__container > [id^=html-block] :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.participatory-space__container > [id^=html-block] :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.participatory-space__container > [id^=html-block] :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.participatory-space__container > [id^=html-block] :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}
.participatory-space__container > [id^=html-block] :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.participatory-space__container > [id^=html-block] :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.participatory-space__container > [id^=html-block] :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.participatory-space__container > [id^=html-block] :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.participatory-space__container > [id^=html-block] :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.participatory-space__container > [id^=html-block] :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.participatory-space__container > [id^=html-block] :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.participatory-space__container > [id^=html-block] :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.participatory-space__container > [id^=html-block] :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.participatory-space__container > [id^=html-block] :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.participatory-space__container > [id^=html-block] :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.participatory-space__container > [id^=html-block] :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.participatory-space__container > [id^=html-block] :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.participatory-space__container > [id^=html-block] :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.participatory-space__container > [id^=html-block] :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.participatory-space__container > [id^=html-block] :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.participatory-space__container > [id^=html-block] :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.participatory-space__container > [id^=html-block] :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.participatory-space__container > [id^=html-block] :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.participatory-space__container > [id^=html-block] :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.participatory-space__container > [id^=html-block] {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.participatory-space__container > [id^=html-block] :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.participatory-space__container > [id^=html-block] :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.participatory-space__container > [id^=html-block] :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.participatory-space__container > [id^=html-block] :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.participatory-space__container > [id^=html-block] :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.participatory-space__container > [id^=html-block] :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.participatory-space__container > [id^=html-block] :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.participatory-space__container > [id^=html-block] :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}
.participatory-space__container > [id^=html-block] :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.participatory-space__container > [id^=html-block] :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.participatory-space__container > [id^=html-block] :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.participatory-space__container > [id^=html-block] :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.participatory-space__container > [id^=html-block] :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.participatory-space__container > [id^=html-block] :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.participatory-space__container > [id^=html-block] :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.participatory-space__container > [id^=html-block] :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.participatory-space__container > [id^=html-block] :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.participatory-space__container > [id^=html-block] :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.participatory-space__container > [id^=html-block] :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.participatory-space__container > [id^=html-block] :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.participatory-space__container > [id^=html-block] {
  width: 100%;
  max-width: none;
}
.participatory-space__container > [id^=html-block]+* {
  border-top-width: 0px;
}
.participatory-space__content-block {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 768px) {

  .participatory-space__content-block {
    flex-direction: row;
  }
}
.participatory-space__content-block>* {
  width: 100%;
}
@media (min-width: 768px) {

  .participatory-space__content-block > :first-child:not(:only-child) {
    width: 75%;
  }

  .participatory-space__content-block > :last-child:not(:only-child) {
    width: 25%;
  }
}
.participatory-space-group__content-block {
  display: grid;
  grid-auto-flow: row dense;
  align-items: flex-start;
  grid-gap: 1rem;
  gap: 1rem;
}
@media (min-width: 768px) {

  .participatory-space-group__content-block {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.participatory-space-group__content-block>* {
  grid-column: span 3 / span 3;
}
@media (min-width: 768px) {

  .participatory-space-group__content-block>*:first-child {
    grid-column: span 4 / span 4;
  }

  .participatory-space-group__content-block>*:last-child {
    grid-column: span 1 / span 1;
  }
}
.participatory-space-group__content-block-metadata {
  display: inline-flex;
  flex-wrap: wrap;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 1rem;
}
.participatory-space-group__content-block-metadata > span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 16px;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space-group__content-block-metadata > span {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.participatory-space-group__content-block-metadata > span > svg {
  height: 0.875rem;
  width: 0.875rem;
  fill: currentColor;
  color: #6B7280CC;
}
.participatory-space__nav > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__nav > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(255 255 255 / var(--tw-divide-opacity));
  }
}
.participatory-space__nav>li {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.participatory-space__nav>li:first-child {
  padding-top: 0px;
}
.participatory-space__nav>li:last-child {
  padding-bottom: 0px;
}
.participatory-space__nav-container {
  margin-left: 0px;
  width: 100%;
  align-self: flex-start;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
  padding: 0.75rem;
}
@media (min-width: 768px) {

  .participatory-space__nav-container {
    margin-left: 1.5rem;
    width: auto;
    padding: 1.5rem;
  }
}
.participatory-space__nav-container [id*=dropdown-menu] {
  margin-left: 0px;
  margin-right: 0px;
}
.participatory-space__nav-container [data-target*=dropdown] {
  padding: 0px;
}
.participatory-space__nav-container [data-target*=dropdown]>span {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__nav-container [data-target*=dropdown]>span {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.participatory-space__nav-container [data-target*=dropdown]>svg {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__nav-container [data-target*=dropdown]>svg {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.participatory-space__nav-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__nav-item {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.participatory-space__nav-item:hover {
  text-decoration-line: underline;
}
.participatory-space__nav-item>svg {
  fill: currentColor;
}
.participatory-space__metadata {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 768px) {

  .participatory-space__metadata {
    flex-direction: row;
    gap: 0px;
  }
}
.participatory-space__metadata-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-row-gap: 2rem;
  row-gap: 2rem;
}
@media (min-width: 768px) {

  .participatory-space__metadata-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.participatory-space__metadata-grid .participatory-space__metadata-item {
  border-width: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
.participatory-space__metadata-item {
  border-width: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(239 239 239 / 1);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__metadata-item {
    border-color: rgb(239 239 239 / var(--tw-border-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.participatory-space__metadata-item:first-child {
  padding-top: 0px;
}
.participatory-space__metadata-item:last-child {
  padding-bottom: 0px;
}
@media (min-width: 768px) {

  .participatory-space__metadata-item {
    border-left-width: 2px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .participatory-space__metadata-item:first-child {
    border-left-width: 0px;
    padding-left: 0px;
  }

  .participatory-space__metadata-item:last-child {
    padding-right: 0px;
  }
}
.participatory-space__metadata-item-title {
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__metadata-item-title {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.participatory-space__metadata-item-title>svg {
  fill: currentColor;
  color: #6B7280CC;
}
.participatory-space__metadata-item > a,
.participatory-space__metadata-item > button {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
  text-decoration-line: underline;
}
.participatory-space__metadata-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.participatory-space__metadata-link:hover {
  text-decoration-line: underline;
}
@media (min-width: 768px) {

  .participatory-space__metadata-link {
    margin-left: auto;
  }
}
.participatory-space__metadata-link-endorsers {
  display: none;
  align-items: center;
  justify-content: flex-start;
}
.participatory-space__metadata-link-endorsers > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.5rem * 0);
  margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - 0));
  margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.focus .focus__step.participatory-space__metadata-link-endorsers {
  display: none;
}
@media (min-width: 768px) {

  .participatory-space__metadata-link-endorsers {
    display: flex;
  }
}
.participatory-space__metadata-link-endorsers > span {
  display: inline-grid;
  height: 2rem;
  width: 2rem;
  overflow: hidden;
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__metadata-link-endorsers > span {
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
.participatory-space__metadata-modal {
  padding-bottom: 4rem;
  font-weight: 400;
}
.participatory-space__metadata-modal__list {
  position: relative;
}
.participatory-space__metadata-modal__list > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - 0));
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * 0);
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.participatory-space__metadata-modal__list-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.participatory-space__metadata-modal__list-container > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(239 239 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__metadata-modal__list-container > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(239 239 239 / var(--tw-divide-opacity));
  }
}
@media (min-width: 768px) {

  .participatory-space__metadata-modal__list-container {
    flex-direction: row;
    gap: 0px;
  }

  .participatory-space__metadata-modal__list-container > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * 0);
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - 0));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  }
}
.participatory-space__metadata-modal__list-container>*:first-child {
  padding-left: 0px;
}
.participatory-space__metadata-modal__list-container>*:last-child {
  padding-right: 0px;
}
@media (min-width: 768px) {

  .participatory-space__metadata-modal__list-container>* {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.participatory-space__metadata-modal__list > * {
  position: relative;
}
.participatory-space__metadata-modal__list > *::before {
  position: absolute;
  left: 18px;
  top: -18px;
  z-index: -10;
  height: calc(100% + 1.5rem);
  width: 1px;
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(225 229 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__metadata-modal__list > *::before {
    background-color: rgb(225 229 239 / var(--tw-bg-opacity));
  }
}
.participatory-space__metadata-modal__list > *:first-child::before {
  content: var(--tw-content);
  top: 18px;
}
.participatory-space__metadata-modal__list > *:last-child::before {
  content: var(--tw-content);
  height: 36px;
}
.participatory-space__metadata-modal__step {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-align: left;
}
.participatory-space__metadata-modal__step > :first-child {
  display: inline-grid;
  height: 2.25rem;
  width: 2.25rem;
  flex: none;
  place-items: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__metadata-modal__step > :first-child {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.participatory-space__metadata-modal__step > :last-child {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.participatory-space__metadata-modal__step-title {
  font-size: 18px;
  line-height: 23px;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.participatory-space__metadata-modal__step-dates {
  white-space: nowrap;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__metadata-modal__step-dates {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.participatory-space__metadata-modal__step-current {
  visibility: hidden;
  position: absolute;
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), -100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  font-size: 14px;
  line-height: 18px;
  font-style: italic;
}
.participatory-space__metadata-modal__step:hover > :first-child, .participatory-space__metadata-modal__step[aria-expanded=true] > :first-child {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__metadata-modal__step:hover > :first-child, .participatory-space__metadata-modal__step[aria-expanded=true] > :first-child {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.participatory-space__metadata-modal__step[aria-expanded=true] .participatory-space__metadata-modal__step-title {
  font-weight: 600;
}
.participatory-space__metadata-modal__step.is-active .participatory-space__metadata-modal__step-current {
  visibility: visible;
}
.participatory-space__block-grid {
  display: grid;
  grid-auto-rows: max-content;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {

  .participatory-space__block-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem;
  }
}
.participatory-space__block-reference {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__block-reference {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.participatory-space__block-reference.alert {
  background-color: rgb(var(--alert-rgb) / 0.25);
}
.participatory-space__block-breadcrumb {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .participatory-space__block-breadcrumb {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .participatory-space__block-breadcrumb {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .participatory-space__block-breadcrumb {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  .participatory-space__block-breadcrumb {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .participatory-space__block-breadcrumb {
    max-width: 1536px;
  }
}
.participatory-space__block-breadcrumb {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.participatory-space__block-breadcrumb>svg {
  fill: currentColor;
}
.participatory-space-about__aside {
  width: 100%;
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space-about__aside {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .participatory-space-about__aside {
    padding-left: 2.5rem;
  }
}
.participatory-space-about__aside-title {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.participatory-space-about__data {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.participatory-space-about__data:first-child {
  padding-top: 0px;
}
.participatory-space-about__data:last-child {
  padding-bottom: 0px;
}
.participatory-space-about__data-container {
  width: 100%;
}
.participatory-space-about__data-container > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(2px * calc(1 - 0));
  border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(2px * 0);
  border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(239 239 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space-about__data-container > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(239 239 239 / var(--tw-divide-opacity));
  }
}
.participatory-space-about__data-title {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.omnipresent-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(36 36 36 / 1);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  text-decoration-line: underline;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)) {
.omnipresent-banner {
    background-color: rgb(36 36 36 / var(--tw-bg-opacity));
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.omnipresent-banner:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.omnipresent-banner:hover {
    background-color: rgb(2 2 3 / var(--tw-bg-opacity));
  }
}
.omnipresent-banner:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.omnipresent-banner:focus {
    background-color: rgb(2 2 3 / var(--tw-bg-opacity));
  }
}
.omnipresent-banner>*:first-child {
  font-weight: 700;
}
.omnipresent-banner svg {
  flex: none;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.omnipresent-banner svg {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.voc-accordion {
  background-color: transparent;
}
.voc-accordion .accordion-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0px;
  border-width: 0px;
  padding-left: 1rem;
  color: inherit;
}
.voc-accordion .accordion-title span {
  cursor: move;
}
.voc-accordion .accordion-title:focus {
  background-color: transparent;
}
.voc-accordion .accordion-item:first-child > :first-child, .voc-accordion .accordion-item:last-child:not(.is-active) > .accordion-title {
  border-radius: 0px;
  border-width: 0px;
}
.voc-accordion .accordion-content {
  margin-top: 1rem;
  border-width: 0px;
}
.voc-accordion .accordion-content .tabs-title > a[aria-selected=true],
.voc-accordion .accordion-content .tabs-content {
  background-color: transparent;
}
.vote-wrapper {
  display: flex;
  flex-grow: 1;
}
.evote {
  padding: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {

  .evote {
    margin-top: 2rem;
    padding: 2rem;
  }
}
.evote .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.evote__grid .row {
  display: block;
  text-align: left;
}
.evote__content {
  margin: 1rem auto;
  width: 100%;
}
@media (min-width: 768px) {

  .evote__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.evote__options {
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  flex-grow: 1;
  text-align: left;
}
@media (min-width: 768px) {

  .evote__options {
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .evote__options--boolean {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
.evote__options--boolean > * {
  flex-basis: 200px;
  margin-left: 1rem;
  margin-right: 1rem;
}
.evote__card {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)) {
.evote__card {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.evote__card.is-disabled {
  cursor: not-allowed;
  --tw-bg-opacity: 1;
  background-color: rgb(36 36 36 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.evote__card.is-disabled {
    background-color: rgb(36 36 36 / var(--tw-bg-opacity));
  }
}
.evote__card.is-disabled > * {
  opacity: 0.5;
}
.evote__login {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 2rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.evote__login {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.evote__login input[type=text] {
  margin-top: 0px;
  margin-bottom: 0.5rem;
}
.evote__check {
  display: flex;
  cursor: pointer;
  align-items: center;
}
@media (min-width: 768px) {

  .evote__check {
    font-size: 18px;
    line-height: 23px;
  }
}
.evote__check input[type=checkbox],
.evote__check input[type=radio] {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  border-width: 0px;
  padding: 0px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}
.evote__check [aria-disabled=true] {
  pointer-events: none;
}
.evote__check-label {
  position: relative;
  padding-left: 1rem;
  line-height: 1.75rem;
}
input[type=radio] + .evote__check-label::before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 1rem;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  left: -0.7em;
  top: 0.2em;
  border-color: rgb(var(--secondary-rgb));
}
input[type=radio]:focus + .evote__check-label::before {
  outline: 1px dotted rgba(var(--secondary-rgb), 0.5);
  outline-offset: 0.1em;
}
input[type=radio]:checked + .evote__check-label::after {
  content: "";
  position: absolute;
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
  left: -0.55em;
  top: 0.35em;
}
input[type=checkbox] + .evote__check-label::before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 1rem;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  left: -0.7em;
  top: 0.2em;
  border-color: rgba(var(--secondary-rgb), 1);
}
input[type=checkbox]:focus + .evote__check-label::before {
  outline: 1px dotted rgba(var(--secondary-rgb), 0.5);
  outline-offset: 0.1em;
}
input[type=checkbox]:checked + .evote__check-label::before {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
}
input[type=checkbox]:checked + .evote__check-label::after {
  content: "";
  position: absolute;
  height: 0.75rem;
  width: 0.5rem;
  border-color: #fff;
  border-style: solid;
  border-width: 0 2px 2px 0;
  left: -0.5em;
  top: 0.15em;
  transform-origin: bottom left;
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.evote__check-extra {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.evote__check-extra button {
  font-size: inherit;
  text-transform: inherit;
  text-transform: uppercase;
}
.evote__counter {
  position: sticky;
  bottom: 2rem;
  right: 0px;
  margin-left: auto;
  border-radius: 4px;
  --tw-bg-opacity: 1;
  background-color: rgb(173 173 173 / 1);
  padding: 0.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: right;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.evote__counter {
    background-color: rgb(173 173 173 / var(--tw-bg-opacity));
  }
}
.evote__counter-num {
  font-size: 18px;
  line-height: 23px;
}
.evote__confirm {
  margin-top: 2rem;
  max-width: 64rem;
  text-align: left;
  line-height: 1.25rem;
}
.evote__confirm dt {
  font-weight: 600;
}
.evote__confirm dd:not(:last-child) {
  margin-bottom: 2rem;
}
.evote__confirm-label {
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.evote__edit-answer {
  text-transform: none;
  letter-spacing: 0em;
}
.evote__submitting, .evote__casting, .evote__confirming {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  height: 2.5rem;
  width: 12rem;
}
.evote__dot {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  background-color: var(--primary);
}
.evote__dot:nth-child(odd) {
  animation: dotTop 1s infinite ease-in-out;
}
.evote__dot:nth-child(even) {
  animation: dotBottom 1s infinite ease-in-out;
}
@media (prefers-reduced-motion) {
  .evote__dot {
    animation: none !important;
  }
}
@keyframes dotTop {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(-15px);
  }
}
@keyframes dotBottom {
  0% {
    transform: translateY(15px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(15px);
  }
}
.evote__poll-id {
  overflow-wrap: break-word;
}
.evote__preview .accordion-title::before {
  content: "";
  margin-top: -.75rem;
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  color: var(--anchor-color);
}
.evote__preview-question {
  border-radius: 0.25rem;
  border-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding: 1rem;
  font-weight: 600;
}
@supports (color: rgb(0 0 0 / 0)) {
.evote__preview-question {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.evote__preview-question .label {
  margin-left: 0.5rem;
}
.evote__preview-result {
  margin-bottom: 1rem;
  line-height: 1.25rem;
}
.evote__preview-option {
  margin-bottom: -1;
}
.evote__preview-bar {
  display: flex;
  align-items: center;
}
.evote__preview-bar .progress {
  margin-right: 1rem;
  flex-grow: 1;
}
.evote__preview-label {
  margin-top: -1;
  font-size: 14px;
  line-height: 18px;
}
.evote__preview-perc {
  width: 3rem;
  text-align: right;
  font-weight: 700;
}
.evote__vocdoni-logo__wrapper {
  margin-top: 4rem;
}
.evote .census__login-button {
  width: 100%;
}
.focus {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  --tw-bg-opacity: 1;
  background-color: rgb(246 248 250 / 1);
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.focus {
    background-color: rgb(246 248 250 / var(--tw-bg-opacity));
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.focus__top {
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0px;
  z-index: 10;
  display: flex;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.focus__top {
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
}
.focus__top a {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.focus__top_warning {
  background: rgb(var(--alert-rgb));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.focus__top_warning {
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
}
.focus__top_warning svg {
  margin-right: 0.5rem;
  fill: #fff;
  font-size: 20px;
  line-height: 25px;
}
.focus__brand {
  display: flex;
  align-items: center;
}
.focus__brand img {
  max-height: 20px;
}
.focus__user {
  margin-left: auto;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  padding-right: 0px;
}
.focus__exit {
  margin-top: -var(--top-padding);
  margin-bottom: -var(--top-padding);
  display: flex;
  align-items: center;
  border-left-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(62 76 92 / 1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 0.25rem;
  line-height: 1;
}
@supports (color: rgb(0 0 0 / 0)) {
.focus__exit {
    border-color: rgb(62 76 92 / var(--tw-border-opacity));
  }
}
.focus__x-icon {
  margin-right: 0.5rem;
  font-size: 24px;
  line-height: 30px;
}
a:hover .focus__x-icon {
  color: inherit;
}
.focus__header {
  --tw-bg-opacity: 1;
  background-color: rgb(36 36 36 / 1);
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.focus__header {
    background-color: rgb(36 36 36 / var(--tw-bg-opacity));
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.focus__header-title {
  margin-bottom: 0px;
}
.focus__step {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.focus .focus__step.hidden {
  display: none !important;
}
.focus__steps {
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6B7280CC;
}
.focus__content {
  display: flex;
  flex-grow: 1;
}
.focus__content .row {
  flex-grow: 1;
}
.focus__footer {
  margin-top: auto;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.focus__footer {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.focus__footer .row {
  display: flex;
  width: 100%;
  align-items: baseline;
}
.focus__footer .button {
  margin-bottom: 0px;
}
.focus__back {
  font-weight: 600;
}
.focus__back svg {
  margin-right: 0.25rem;
  vertical-align: middle;
  font-size: 13px;
  line-height: 16px;
}
.focus__next {
  margin-left: auto;
}
.focus__next svg {
  margin-left: 0.25rem;
  vertical-align: middle;
  font-size: 13px;
  line-height: 16px;
}
a img + .external-link-indicator {
  top: -10px;
  right: -15px;
}
.card__icondata ul li:not(:first-child) strong,
.card__block ul li:not(:first-child) strong {
  font-size: 100%;
}
@media (min-width: 768px) {
  .md\:h3 {
    font-family: Source Sans Pro, ui-sans-serif, system-ui, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
  }
  .md\:button__lg {
    gap: 0.5rem;
    font-size: 18px;
    line-height: 23px;
  }
  .md\:button__lg:not([class*="button\_\_text"]) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .md\:button__xl {
    gap: 1rem;
    font-size: 20px;
    line-height: 25px;
  }
  .md\:button__xl:not([class*="button\_\_text"]) {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .md\:button__text-secondary {
    border-width: 0px;
    background-color: transparent;
    padding: 0px;
    --tw-text-opacity: 1;
    color: rgb(var(--secondary-rgb) / 1);
    color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
  }
  .md\:button__text-secondary:hover {
    text-decoration-line: underline;
  }
}
.after\:mt-1::after {
  content: var(--tw-content);
  margin-top: 0.25rem;
}
.after\:mt-1\.5::after {
  content: var(--tw-content);
  margin-top: 0.375rem;
}
.after\:block::after {
  content: var(--tw-content);
  display: block;
}
.after\:h-2::after {
  content: var(--tw-content);
  height: 0.5rem;
}
.after\:w-20::after {
  content: var(--tw-content);
  width: 5rem;
}
.after\:rounded-b-xl::after {
  content: var(--tw-content);
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.after\:bg-primary::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
}
.after\:content-\[\'\'\]::after {
  --tw-content: '';
  content: '';
  content: var(--tw-content);
}
.first\:mt-0:first-child {
  margin-top: 0px;
}
.first\:rounded-l-md:first-child {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.first\:pl-0:first-child {
  padding-left: 0px;
}
.last\:rounded-r-md:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.last\:pb-0:last-child {
  padding-bottom: 0px;
}
.last\:pb-4:last-child {
  padding-bottom: 1rem;
}
.last\:pr-0:last-child {
  padding-right: 0px;
}
.only\:m-auto:only-child {
  margin: auto;
}
.first-of-type\:mt-0:first-of-type {
  margin-top: 0px;
}
.hover\:bg-background-3:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.hover\:bg-background-3:hover {
    background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  }
}
.hover\:bg-secondary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--secondary-rgb) / 1);
  background-color: rgb(var(--secondary-rgb) / var(--tw-bg-opacity));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-white:hover {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:opacity-50:hover {
  opacity: 0.5;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.prose-a\:text-secondary :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
@media (min-width: 640px) {

  .sm\:flex-wrap {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {

  .md\:not-sr-only {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .md\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .md\:-mt-4 {
    margin-top: -1rem;
  }

  .md\:mb-12 {
    margin-bottom: 3rem;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:mr-0 {
    margin-right: 0px;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-12 {
    margin-top: 3rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:w-1\/12 {
    width: 8.333333%;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-\[70\%\] {
    width: 70%;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:gap-12 {
    gap: 3rem;
  }

  .md\:self-start {
    align-self: flex-start;
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

  .md\:first-of-type\:-mt-4:first-of-type {
    margin-top: -1rem;
  }
}
@media (min-width: 1024px) {

  .lg\:hidden {
    display: none;
  }

  .lg\:w-1\/3 {
    width: 33.333333%;
  }

  .lg\:w-2\/3 {
    width: 66.666667%;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.\[\&\>\*\]\:grow>* {
  flex-grow: 1;
}
.\[\&\>\*\]\:py-4>* {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.first\:\[\&\>\*\]\:pt-0>*:first-child {
  padding-top: 0px;
}
.last\:\[\&\>\*\]\:pb-0>*:last-child {
  padding-bottom: 0px;
}
.\[\&\>a\]\:mt-4>a {
  margin-top: 1rem;
}
.\[\&\>a\]\:w-fit>a {
  width: -moz-fit-content;
  width: fit-content;
}
.\[\&\>a\]\:text-secondary>a {
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
.hover\:\[\&\>a\]\:underline>a:hover {
  text-decoration-line: underline;
}
.\[\&\>svg\]\:inline-block>svg {
  display: inline-block;
}
.last\:\[\&\>svg\]\:text-gray-2>svg:last-child {
  --tw-text-opacity: 1;
  color: rgb(62 76 92 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.last\:\[\&\>svg\]\:text-gray-2>svg:last-child {
    color: rgb(62 76 92 / var(--tw-text-opacity));
  }
}
.\[\&_\[data-activity\]\]\:gap-4 [data-activity] {
  gap: 1rem;
}
.\[\&_a\]\:underline a {
  text-decoration-line: underline;
}
.hover\:\[\&_a\]\:opacity-50 a:hover {
  opacity: 0.5;
}
.\[\&_ul\]\:list-disc ul {
  list-style-type: disc;
}
.\[\&_ul\]\:pl-4 ul {
  padding-left: 1rem;
}

/*# sourceMappingURL=decidim_core-b5ddf448.css.map*/