.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: Raleway, ui-sans-serif, 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 */
  /* raleway-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    src: url(/decidim-packs/media/images/raleway-v36-latin-regular-0e0a96423fd742218c61.woff2) format("woff2"), url(/decidim-packs/media/images/raleway-v36-latin-regular-0fe9b1a278273559ddf6.ttf) format("truetype");
  }
  /* raleway-italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Raleway";
    font-style: italic;
    font-weight: 400;
    src: url(/decidim-packs/media/images/raleway-v36-latin-italic-3acb9513b702f03c42d1.woff2) format("woff2"), url(/decidim-packs/media/images/raleway-v36-latin-italic-4a3aef2ffa8459dea620.ttf) format("truetype");
  }
  /* raleway-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700;
    src: url(/decidim-packs/media/images/raleway-v36-latin-700-0dc1cddacdc68e26257c.woff2) format("woff2"), url(/decidim-packs/media/images/raleway-v36-latin-700-d2044dc0611b06add856.ttf) format("truetype");
  }
  /* raleway-700italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Raleway";
    font-style: italic;
    font-weight: 700;
    src: url(/decidim-packs/media/images/raleway-v36-latin-700italic-fa9bb781a3bf7c31b086.woff2) format("woff2"), url(/decidim-packs/media/images/raleway-v36-latin-700italic-652ecd0941771e8fcc0a.ttf) format("truetype");
  }
  /* raleway-900 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Raleway";
    font-style: normal;
    font-weight: 800;
    src: url(/decidim-packs/media/images/raleway-v36-latin-900-a96d61ec3d11adbda543.woff2) format("woff2"), url(/decidim-packs/media/images/raleway-v36-latin-900-0629a0f7c46c5c78288a.ttf) format("truetype");
  }
  /* raleway-900italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Raleway";
    font-style: italic;
    font-weight: 800;
    src: url(/decidim-packs/media/images/raleway-v36-latin-900italic-a77d47176d8d46423fe6.woff2) format("woff2"), url(/decidim-packs/media/images/raleway-v36-latin-900italic-f03b013b2aca33c3fedb.ttf) format("truetype");
  }
  /* biorhyme-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "BioRhyme";
    font-style: normal;
    font-weight: 700;
    src: url(/decidim-packs/media/images/biorhyme-v20-latin-700-736c625bfd49cfb941b2.woff2) format("woff2"), url(/decidim-packs/media/images/biorhyme-v20-latin-700-637e7a4520c047a05873.ttf) format("truetype");
  }
  /* biorhyme-800 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "BioRhyme";
    font-style: normal;
    font-weight: 800;
    src: url(/decidim-packs/media/images/biorhyme-v20-latin-800-0a1e5ec95bc4f1a393f8.woff2) format("woff2"), url(/decidim-packs/media/images/biorhyme-v20-latin-800-b42019bdad8c8cc1786f.ttf) format("truetype");
  }
  .h1 {
  font-family: BioRhyme, serif;
  font-size: 36px;
  line-height: 47px;
  font-weight: 700;
}
  @media (min-width: 768px) {

  .h1 {
    font-size: 48px;
    line-height: 62px;
  }
}
  .h2 {
  font-family: BioRhyme, serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}
  @media (min-width: 768px) {

  .h2 {
    font-size: 36px;
    line-height: 47px;
  }
}
  .h3 {
  font-family: BioRhyme, serif;
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
}
  @media (min-width: 768px) {

  .h3 {
    font-size: 28px;
    line-height: 36px;
  }
}
  .h4 {
  font-family: BioRhyme, serif;
  font-size: 22px;
  line-height: 29px;
  font-weight: 700;
}
  @media (min-width: 768px) {

  .h4 {
    font-size: 24px;
    line-height: 31px;
  }
}
  .h5 {
  font-family: Raleway, ui-sans-serif, sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
  @media (min-width: 768px) {

  .h5 {
    font-size: 22px;
    line-height: 29px;
  }
}
  .h6 {
  font-family: Raleway, ui-sans-serif, sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
}
  .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: BioRhyme, serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}
  @media (min-width: 768px) {

  .title-decorator {
    font-size: 36px;
    line-height: 47px;
  }
}
  .title-decorator {
  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: "";
  border-radius: 0px;
  content: "";
  content: var(--tw-content);
  background-color: transparent;
}
  @media (min-width: 768px) {
  .title-decorator {
    font-family: BioRhyme, serif;
    font-size: 36px;
    line-height: 47px;
    font-weight: 700;
  }
  @media (min-width: 768px) {

    .title-decorator {
      font-size: 48px;
      line-height: 62px;
    }
  }
}
  /* 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: 700;
}
  .editor-content :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 700;
}
  .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-inline-start: 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-inline-start: 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: 700;
  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: 700;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 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: 800;
  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: 700;
  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: 700;
  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(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
  .editor-content :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  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-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
  .editor-content :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 700;
  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-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 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;
  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: 700;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 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(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
  .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(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-inline-start: 0.375em;
}
  .editor-content :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 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 > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
  .editor-content :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
  .editor-content :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
  .editor-content :where(.prose > ol > li > p: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-inline-start: 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-inline-start: 0;
}
  .editor-content :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
  .editor-content :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
  .editor-content :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
  .editor-content :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 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;
}
  .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%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

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

  .container {
    max-width: 1202px;
  }
}
.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: 700;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 700;
}
.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-inline-start: 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-inline-start: 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: 700;
  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: 700;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 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: 800;
  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: 700;
  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: 700;
  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(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  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-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 700;
  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-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 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;
  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: 700;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 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(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.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(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-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 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 > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p: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-inline-start: 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-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 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;
  }
}
@media (min-width: 1202px) {

  .layout-1col {
    max-width: 1202px;
  }
}
.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;
  }
}
@media (min-width: 1202px) {

  .layout-2col {
    max-width: 1202px;
  }
}
.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;
  }
}
@media (min-width: 1202px) {

  .layout-item {
    max-width: 1202px;
  }
}
.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;
}
a.\!button {
  text-decoration-line: none;
}
a.button {
  text-decoration-line: none;
}
.\!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: 700;
  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 {
  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: 700;
  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: 26px;
}
.button__xl:not([class*="button\_\_text"]) {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.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__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__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[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[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[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);
}
@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.is-hover, .button:not([disabled]):not([class*=button__text]):not(label):hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@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.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)) !important;
}
@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.is-hover, .button:not([disabled]):not([class*=button__text]):not(label):hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), rgb(var(--secondary-rgb));
  }
.\!button.is-hover, .\!button:not([disabled]):not([class*=button__text]):not(label):hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), rgb(var(--secondary-rgb)) !important;
  }
.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: 17px;
  --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: 700;
    --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.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(255 255 255 / 1);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  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(255 255 255 / 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));
}
.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: 21px;
  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: 700;
}
.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: 0.25rem;
  display: block;
  width: 100%;
}
.form__wrapper input[type=checkbox],
  .form__wrapper input[type=radio] {
  margin-top: 0.25rem;
}
.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: 17px;
  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: 50%;
  margin-top: -0.25rem;
}
.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(245 245 245 / 1);
  padding-top: 0px;
  padding-bottom: 0px;
}
@supports (color: rgb(0 0 0 / 0)) {
[id*=dropdown-menu] {
    border-color: rgb(245 245 245 / 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;
}
@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: 700;
  --tw-text-opacity: 1;
  color: rgb(var(--secondary-rgb) / 1);
  color: rgb(var(--secondary-rgb) / var(--tw-text-opacity));
}
[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;
}
[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(245 245 245 / 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(245 245 245 / 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(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(245 245 245 / 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(245 245 245 / 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: 22px;
  line-height: 29px;
  font-weight: 700;
}
.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: 700;
  --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.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, 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, 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].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;
}
.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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.vertical-tabs__list > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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: 700;
}
@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(245 245 245 / 1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.vertical-tabs [id*=dropdown-menu] {
    border-color: rgb(245 245 245 / 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;
}
@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: 700;
  --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;
}
.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: 700;
}
.flash__message {
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  --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: 21px;
  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 .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;
}
.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: 700;
  --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: 17px;
  --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;
}
.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: 700;
  --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: 22px;
  line-height: 29px;
  --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: 22px;
  line-height: 29px;
  font-weight: 700;
  --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;
  }
}
a.share-modal__list > * {
  text-decoration-line: none;
}
.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: 700;
  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: 21px;
  --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;
  }
}
.submenu-element .share-modal__list > * {
  width: 100%;
  justify-content: flex-start;
  padding: 1rem;
}
.submenu-element .share-modal__list > * > span {
  text-align: left;
}
.share-modal__list > * {
  border-radius: 0px;
}
.share-modal__list > * svg {
  fill: currentColor;
}
a.share-modal__list > *:hover {
  text-decoration-line: none;
}
a.share-modal__list > *:focus {
  text-decoration-line: none;
}
.share-modal__list > *.is-hover,.share-modal__list > *.is-focus,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):focus {
  background-image: none;
}
.share-modal__list > *.is-hover.button__transparent-secondary,.share-modal__list > *.is-focus.button__transparent-secondary,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.share-modal__list > *.is-hover.button__transparent-secondary,.share-modal__list > *.is-focus.button__transparent-secondary,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.share-modal__list > *.is-hover.button__transparent-secondary svg,.share-modal__list > *.is-focus.button__transparent-secondary svg,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary svg,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary svg {
  fill: #fff;
}
.share-modal__list > *.is-hover.button__secondary,.share-modal__list > *.is-focus.button__secondary,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
  border-color: var(--primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  color: var(--primary);
}
@supports (color: rgb(0 0 0 / 0)) {
.share-modal__list > *.is-hover.button__secondary,.share-modal__list > *.is-focus.button__secondary,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.share-modal__list > *.is-hover.button__secondary svg,.share-modal__list > *.is-focus.button__secondary svg,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary svg,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary svg {
  fill: var(--primary);
}
.share-modal__list > *.is-hover.budget__card__prevote-explore-button,.share-modal__list > *.is-focus.budget__card__prevote-explore-button,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.share-modal__list > *.is-hover.budget__card__prevote-explore-button,.share-modal__list > *.is-focus.budget__card__prevote-explore-button,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.share-modal__list > *.is-hover.budget__card__prevote-explore-button svg,.share-modal__list > *.is-focus.budget__card__prevote-explore-button svg,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button svg,.share-modal__list > *:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button svg {
  fill: #fff;
}
.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: 26px;
  font-weight: 700;
  --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: 700;
}
.modal__report-text {
  margin-top: 1rem;
  font-size: 18px;
  line-height: 23px;
  font-weight: 700;
  --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: 21px;
  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: 700;
}
.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: 21px;
  font-weight: 700;
  --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;
}
.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: 700;
  --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: 700;
}
.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: 700;
}
.upload-modal__dropzone [data-filename] img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
a.upload-modal__dropzone [data-filename] button {
  text-decoration-line: none;
}
.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: 700;
  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;
  }
}
.submenu-element .upload-modal__dropzone [data-filename] button {
  width: 100%;
  justify-content: flex-start;
  padding: 1rem;
}
.submenu-element .upload-modal__dropzone [data-filename] button > span {
  text-align: left;
}
.upload-modal__dropzone [data-filename] button {
  border-radius: 0px;
}
.upload-modal__dropzone [data-filename] button svg {
  fill: currentColor;
}
a.upload-modal__dropzone [data-filename] button:hover {
  text-decoration-line: none;
}
a.upload-modal__dropzone [data-filename] button:focus {
  text-decoration-line: none;
}
.upload-modal__dropzone [data-filename] button.is-hover,.upload-modal__dropzone [data-filename] button.is-focus,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):focus {
  background-image: none;
}
.upload-modal__dropzone [data-filename] button.is-hover.button__transparent-secondary,.upload-modal__dropzone [data-filename] button.is-focus.button__transparent-secondary,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone [data-filename] button.is-hover.button__transparent-secondary,.upload-modal__dropzone [data-filename] button.is-focus.button__transparent-secondary,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.upload-modal__dropzone [data-filename] button.is-hover.button__transparent-secondary svg,.upload-modal__dropzone [data-filename] button.is-focus.button__transparent-secondary svg,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary svg,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary svg {
  fill: #fff;
}
.upload-modal__dropzone [data-filename] button.is-hover.button__secondary,.upload-modal__dropzone [data-filename] button.is-focus.button__secondary,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
  border-color: var(--primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  color: var(--primary);
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone [data-filename] button.is-hover.button__secondary,.upload-modal__dropzone [data-filename] button.is-focus.button__secondary,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.upload-modal__dropzone [data-filename] button.is-hover.button__secondary svg,.upload-modal__dropzone [data-filename] button.is-focus.button__secondary svg,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary svg,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary svg {
  fill: var(--primary);
}
.upload-modal__dropzone [data-filename] button.is-hover.budget__card__prevote-explore-button,.upload-modal__dropzone [data-filename] button.is-focus.budget__card__prevote-explore-button,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.upload-modal__dropzone [data-filename] button.is-hover.budget__card__prevote-explore-button,.upload-modal__dropzone [data-filename] button.is-focus.budget__card__prevote-explore-button,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.upload-modal__dropzone [data-filename] button.is-hover.budget__card__prevote-explore-button svg,.upload-modal__dropzone [data-filename] button.is-focus.budget__card__prevote-explore-button svg,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button svg,.upload-modal__dropzone [data-filename] button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button svg {
  fill: #fff;
}
@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: 700;
}
.fingerprint-modal__code {
  display: block;
  max-height: 6rem;
  overflow: auto;
  word-break: break-all;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245 / 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(245 245 245 / 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: 21px;
  font-weight: 700;
}
.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: 24px;
  line-height: 31px;
  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: 700;
}
.content-block__description :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 700;
}
.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-inline-start: 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-inline-start: 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: 700;
  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: 700;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 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: 800;
  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: 700;
  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: 700;
  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(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.content-block__description :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  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-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.content-block__description :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 700;
  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-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 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;
  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: 700;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 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(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.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(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-inline-start: 0.375em;
}
.content-block__description :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 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 > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.content-block__description :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.content-block__description :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.content-block__description :where(.prose > ol > li > p: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-inline-start: 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-inline-start: 0;
}
.content-block__description :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.content-block__description :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.content-block__description :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.content-block__description :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 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, 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, 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;
}
.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: 700;
  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: 700;
  --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;
}
.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-offset-shadow), var(--tw-ring-shadow), 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-offset-shadow), var(--tw-ring-shadow), 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: BioRhyme, serif;
  font-size: 22px;
  line-height: 29px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .card__list-title {
    font-size: 24px;
    line-height: 31px;
  }
}
.card__list-title {
  --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: 17px;
  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: 22px;
  line-height: 29px;
  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: 17px;
  --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(245 245 245 / 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(245 245 245 / 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: #f5f5f5;
    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(--color) calc(var(--value) * 100%),#f5f5f5 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: 700;
  --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: 24px;
  line-height: 31px;
  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;
}
[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: 700;
  --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: 700;
  --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: 21px;
  --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: 17px;
  font-weight: 700;
  --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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.activity__container > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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: 700;
  --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(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(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(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(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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.\!author > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.author > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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: 17px;
  font-weight: 700;
  --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: 700;
  --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;
}
[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;
}
[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: 700;
}
.wizard-steps > *[aria-current] ~ *::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.wizard-steps > *[aria-current] ~ *::before {
    background-color: rgb(245 245 245 / var(--tw-bg-opacity));
  }
}
.wizard-steps > *[aria-current] ~ *::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.wizard-steps > *[aria-current] ~ *::after {
    background-color: rgb(245 245 245 / 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: 22px;
  line-height: 29px;
  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: 28px;
    line-height: 36px;
  }

  .progress-bar__number>*:only-child {
    font-size: 36px;
    line-height: 47px;
  }
}
.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 .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;
}
.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: 21px;
  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;
  }
}
@media (min-width: 1202px) {

  .hero {
    max-width: 1202px;
  }
}
.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: 22px;
  line-height: 29px;
  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: 36px;
    line-height: 47px;
  }
}
.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;
}
.actions__secondary .\!button {
  justify-content: flex-start;
}
.hashtags > label {
  margin-left: 1rem;
}
.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;
}
.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 !important;
}
.sticky {
  position: sticky;
}
.left-0 {
  left: 0px;
}
.top-0 {
  top: 0px;
}
.top-full {
  top: 100%;
}
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}
.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;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-9 {
  margin-bottom: 2.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-2\.5 {
  margin-left: 0.625rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-2\.5 {
  margin-right: 0.625rem;
}
.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-\[230px\] {
  margin-top: 230px;
}
.mt-px {
  margin-top: 1px;
}
.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-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-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\/6 {
  width: 33.333333%;
}
.w-20 {
  width: 5rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-4\/6 {
  width: 66.666667%;
}
.w-5 {
  width: 1.25rem;
}
.w-56 {
  width: 14rem;
}
.w-6 {
  width: 1.5rem;
}
.w-6\/12 {
  width: 50%;
}
.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;
}
.shrink {
  flex-shrink: 1;
}
.grow {
  flex-grow: 1;
}
.basis-1\/4 {
  flex-basis: 25%;
}
.basis-3\/4 {
  flex-basis: 75%;
}
.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));
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) 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));
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.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-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 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-content-center {
  place-content: center;
}
.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-start {
  justify-content: flex-start !important;
}
.justify-start {
  justify-content: flex-start;
}
.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-10 {
  gap: 2.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-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(1.25rem * calc(1 - 0)) !important;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(1.25rem * 0) !important;
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
}
.-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-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-7 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.75rem * calc(1 - 0));
  margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.75rem * 0);
  margin-bottom: calc(1.75rem * 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));
}
.space-y-9 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.25rem * calc(1 - 0));
  margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.25rem * 0);
  margin-bottom: calc(2.25rem * 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-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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.divide-gray-3 > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / var(--tw-divide-opacity));
  }
}
.place-self-center {
  place-self: center;
}
.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-words {
  overflow-wrap: break-word;
}
.break-all {
  word-break: break-all;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-none {
  border-radius: 0px;
}
.\!border-0 {
  border-width: 0px !important;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-l {
  border-left-width: 1px;
}
.border-l-0 {
  border-left-width: 0px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-0 {
  border-top-width: 0px;
}
.border-\[--primary\] {
  border-color: var(--primary);
}
.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-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-\[\#f2fcfd\] {
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-\[\#f2fcfd\] {
    background-color: rgb(242 252 253 / var(--tw-bg-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-3 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-gray-3 {
    background-color: rgb(245 245 245 / 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-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));
  }
}
.\!fill-white {
  fill: #fff !important;
}
.fill-\[--primary\] {
  fill: var(--primary);
}
.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));
}
.fill-white {
  fill: #fff;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.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-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.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-11 {
  padding-bottom: 2.75rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-9 {
  padding-bottom: 2.25rem;
}
.pl-0 {
  padding-left: 0px;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-7 {
  padding-top: 1.75rem;
}
.\!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;
}
.font-serif {
  font-family: BioRhyme, serif;
}
.\!text-sm {
  font-size: 14px !important;
  line-height: 18px !important;
}
.text-2xl {
  font-size: 22px;
  line-height: 29px;
}
.text-4xl {
  font-size: 28px;
  line-height: 36px;
}
.text-5xl {
  font-size: 36px;
  line-height: 47px;
}
.text-\[22px\] {
  font-size: 22px;
}
.text-\[24px\] {
  font-size: 24px;
}
.text-\[28px\] {
  font-size: 28px;
}
.text-lg {
  font-size: 18px;
  line-height: 23px;
}
.text-md {
  font-size: 16px;
  line-height: 21px;
}
.text-sm {
  font-size: 14px;
  line-height: 18px;
}
.text-xl {
  font-size: 20px;
  line-height: 26px;
}
.text-xs {
  font-size: 13px;
  line-height: 17px;
}
.font-bold {
  font-weight: 700;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 700;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.leading-relaxed {
  line-height: 1.625;
}
.text-\[--primary\] {
  color: var(--primary);
}
.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-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-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;
}
.underline-offset-2 {
  text-underline-offset: 2px;
}
.opacity-10 {
  opacity: 0.1;
}
.shadow-lg {
  --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);
}
.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;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}
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;
  }
}
@media (min-width: 1202px) {

  header .admin-bar {
    max-width: 1202px;
  }
}
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));
  }
}
@media (min-width: 768px) {

  header .admin-bar__title {
    display: block;
  }
}
aheader .admin-bar__button {
  text-decoration-line: none;
}
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: 700;
  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;
  }
}
.submenu-element header .admin-bar__button {
  width: 100%;
  justify-content: flex-start;
  padding: 1rem;
}
.submenu-element header .admin-bar__button > span {
  text-align: left;
}
header .admin-bar__button {
  border-radius: 0px;
}
header .admin-bar__button svg {
  fill: currentColor;
}
aheader .admin-bar__button:hover {
  text-decoration-line: none;
}
aheader .admin-bar__button:focus {
  text-decoration-line: none;
}
header .admin-bar__button.is-hover,header .admin-bar__button.is-focus,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):focus {
  background-image: none;
}
header .admin-bar__button.is-hover.button__transparent-secondary,header .admin-bar__button.is-focus.button__transparent-secondary,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .admin-bar__button.is-hover.button__transparent-secondary,header .admin-bar__button.is-focus.button__transparent-secondary,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
header .admin-bar__button.is-hover.button__transparent-secondary svg,header .admin-bar__button.is-focus.button__transparent-secondary svg,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary svg,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary svg {
  fill: #fff;
}
header .admin-bar__button.is-hover.button__secondary,header .admin-bar__button.is-focus.button__secondary,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
  border-color: var(--primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  color: var(--primary);
}
@supports (color: rgb(0 0 0 / 0)) {
header .admin-bar__button.is-hover.button__secondary,header .admin-bar__button.is-focus.button__secondary,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
header .admin-bar__button.is-hover.button__secondary svg,header .admin-bar__button.is-focus.button__secondary svg,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary svg,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary svg {
  fill: var(--primary);
}
header .admin-bar__button.is-hover.budget__card__prevote-explore-button,header .admin-bar__button.is-focus.budget__card__prevote-explore-button,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .admin-bar__button.is-hover.budget__card__prevote-explore-button,header .admin-bar__button.is-focus.budget__card__prevote-explore-button,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
header .admin-bar__button.is-hover.budget__card__prevote-explore-button svg,header .admin-bar__button.is-focus.budget__card__prevote-explore-button svg,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button svg,header .admin-bar__button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button svg {
  fill: #fff;
}
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;
  }
}
@media (min-width: 1202px) {

  header .main-bar {
    max-width: 1202px;
  }
}
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: 700;
}
header .main-bar__logo :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 700;
}
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-inline-start: 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-inline-start: 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: 700;
  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: 700;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 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: 800;
  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: 700;
  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: 700;
  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(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
header .main-bar__logo :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  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-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
header .main-bar__logo :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 700;
  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-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 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;
  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: 700;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 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(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
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(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-inline-start: 0.375em;
}
header .main-bar__logo :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 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 > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
header .main-bar__logo :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
header .main-bar__logo :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
header .main-bar__logo :where(.prose > ol > li > p: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-inline-start: 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-inline-start: 0;
}
header .main-bar__logo :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
header .main-bar__logo :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
header .main-bar__logo :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
header .main-bar__logo :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 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;
}
@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: 21px;
}
@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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__links-desktop > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / var(--tw-divide-opacity));
  }
}
header .main-bar__links-desktop {
  text-align: center;
}
@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;
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245 / 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)) {
header .main-bar__links-mobile__trigger {
    border-color: rgb(245 245 245 / var(--tw-border-opacity));
  }
}
@media (min-width: 768px) {

  header .main-bar__links-mobile__trigger {
    border-left-width: 1px;
    padding-left: 1rem;
  }
}
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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__links-mobile__account ul > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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: 21px;
}
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;
  }
}
@media (min-width: 1202px) {

  header .main-bar__links-mobile__search-block {
    max-width: 1202px;
  }
}
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__login {
  position: relative;
  display: flex;
  height: 100%;
  width: auto;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  padding-left: 0.5rem;
  padding-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-mobile__login svg {
  height: 2rem;
  width: 2rem;
  fill: currentColor;
}
header .main-bar__links-mobile__login svg + span {
  width: auto;
  font-size: 14px;
  line-height: 18px;
}
header .main-bar__links-mobile__login svg + span::first-letter {
  text-transform: uppercase;
}
header .main-bar__links-mobile__login svg + span {
  flex-shrink: 0;
}
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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__dropdown > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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;
  }
}
@media (min-width: 1202px) {

  header .menu-bar {
    max-width: 1202px;
  }
}
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;
}
@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;
}
@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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__main-dropdown > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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: 21px;
}
header .menu-bar__main-dropdown__bottom-right, header .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;
}
@media (min-width: 768px) {

  header .menu-bar__main-dropdown__bottom {
    display: flex;
  }
}
header .menu-bar__main-dropdown__title {
  font-family: BioRhyme, serif;
  font-size: 22px;
  line-height: 29px;
  font-weight: 700;
}
@media (min-width: 768px) {

  header .menu-bar__main-dropdown__title {
    font-size: 24px;
    line-height: 31px;
  }
}
header .menu-bar__main-dropdown__title {
  display: none;
}
@media (min-width: 768px) {
  header .menu-bar__main-dropdown__title {
    font-family: BioRhyme, serif;
    font-size: 24px;
    line-height: 31px;
    font-weight: 700;
  }
  @media (min-width: 768px) {

    header .menu-bar__main-dropdown__title {
      font-size: 28px;
      line-height: 36px;
    }
  }
  header .menu-bar__main-dropdown__title {
    display: flex;
  }
}
header .menu-bar__main-dropdown__subtitle {
  margin-top: 1.25rem;
  display: none;
  font-size: 16px;
  line-height: 21px;
  --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));
  }
}
@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(245 245 245 / 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(245 245 245 / 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: 700;
  --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: 21px;
}
@media (min-width: 768px) {

  header .menu-bar__secondary-dropdown__left {
    display: block;
  }
}
header .menu-bar__secondary-dropdown__title {
  font-family: BioRhyme, serif;
  font-size: 22px;
  line-height: 29px;
  font-weight: 700;
}
@media (min-width: 768px) {

  header .menu-bar__secondary-dropdown__title {
    font-family: BioRhyme, serif;
    font-size: 24px;
    line-height: 31px;
    font-weight: 700;
  }
  @media (min-width: 768px) {

    header .menu-bar__secondary-dropdown__title {
      font-size: 28px;
      line-height: 36px;
    }
  }
}
header .menu-bar__secondary-dropdown nav {
  width: 100%;
}
@media (min-width: 768px) {

  header .menu-bar__secondary-dropdown nav {
    width: 25%;
  }
}
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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .menu-bar__secondary-dropdown__menu > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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 {
    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: 700;
  --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;
  }
}
@media (min-width: 1202px) {

  footer .main-footer__top {
    max-width: 1202px;
  }
}
footer .main-footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1.75rem;
  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;
  }
}
@media (min-width: 1202px) {

  footer .main-footer__down {
    max-width: 1202px;
  }
}
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: 21px;
  font-weight: 700;
}
@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;
}
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;
  }
}
@media (min-width: 1202px) {

  footer .mini-footer__content {
    max-width: 1202px;
  }
}
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: 700;
  --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));
  }
}
a.login__omniauth-button {
  text-decoration-line: none;
}
.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: 700;
  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: 26px;
}
.login__omniauth-button:not([class*="button\_\_text"]) {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.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;
  }
}
.submenu-element .login__omniauth-button {
  width: 100%;
  justify-content: flex-start;
  padding: 1rem;
}
.submenu-element .login__omniauth-button > span {
  text-align: left;
}
.login__omniauth-button {
  border-radius: 0px;
}
.login__omniauth-button svg {
  fill: currentColor;
}
a.login__omniauth-button:hover {
  text-decoration-line: none;
}
a.login__omniauth-button:focus {
  text-decoration-line: none;
}
.login__omniauth-button.is-hover,.login__omniauth-button.is-focus,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):focus {
  background-image: none;
}
.login__omniauth-button.is-hover.button__transparent-secondary,.login__omniauth-button.is-focus.button__transparent-secondary,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.login__omniauth-button.is-hover.button__transparent-secondary,.login__omniauth-button.is-focus.button__transparent-secondary,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.login__omniauth-button.is-hover.button__transparent-secondary svg,.login__omniauth-button.is-focus.button__transparent-secondary svg,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary svg,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary svg {
  fill: #fff;
}
.login__omniauth-button.is-hover.button__secondary,.login__omniauth-button.is-focus.button__secondary,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
  border-color: var(--primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  color: var(--primary);
}
@supports (color: rgb(0 0 0 / 0)) {
.login__omniauth-button.is-hover.button__secondary,.login__omniauth-button.is-focus.button__secondary,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.login__omniauth-button.is-hover.button__secondary svg,.login__omniauth-button.is-focus.button__secondary svg,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary svg,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary svg {
  fill: var(--primary);
}
.login__omniauth-button.is-hover.budget__card__prevote-explore-button,.login__omniauth-button.is-focus.budget__card__prevote-explore-button,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.login__omniauth-button.is-hover.budget__card__prevote-explore-button,.login__omniauth-button.is-focus.budget__card__prevote-explore-button,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.login__omniauth-button.is-hover.budget__card__prevote-explore-button svg,.login__omniauth-button.is-focus.budget__card__prevote-explore-button svg,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button svg,.login__omniauth-button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button svg {
  fill: #fff;
}
.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: BioRhyme, serif;
  font-size: 22px;
  line-height: 29px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .page__accordion-trigger-title {
    font-size: 24px;
    line-height: 31px;
  }
}
.page__accordion-trigger-title {
  --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(245 245 245 / 1);
  padding-top: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.page__accordion-panel {
    border-color: rgb(245 245 245 / 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(245 245 245 / 1);
  padding-top: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.notification + .notification {
    border-color: rgb(245 245 245 / 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: 21px;
  }
}
.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: 700;
  --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: 17px;
  --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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__actions-main__dropdown > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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: 17px;
}
@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: 700;
  --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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__activity__container > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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: 21px;
  --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(--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: 700;
  --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: 700;
  --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: Raleway, ui-sans-serif, sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .profile__user-name {
    font-size: 22px;
    line-height: 29px;
  }
}
.profile__user-name {
  --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(245 245 245 / 1);
  padding-bottom: 3rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__group {
    border-color: rgb(245 245 245 / var(--tw-border-opacity));
  }
}
.profile__group p {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 21px;
  --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(245 245 245 / 1);
  padding-top: 2rem;
  font-weight: 700;
  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(245 245 245 / 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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__scaffold__top-content > *:nth-child(2) > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.profile__scaffold__bottom {
  border-color: rgb(245 245 245 / 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(245 245 245 / 1);
  padding-top: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.conversation__item + .conversation__item {
    border-color: rgb(245 245 245 / 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: 700;
}
.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: BioRhyme, serif;
  font-size: 22px;
  line-height: 29px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .conversation__title {
    font-size: 24px;
    line-height: 31px;
  }
}
.conversation__title {
  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: 17px;
  font-weight: 700;
  --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: 17px;
}
.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: 700;
  --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: 17px;
  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: 21px;
  font-weight: 700;
  --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: 700;
  --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;
  }
}
@media (min-width: 1202px) {

  .home__section,
.home .content-block {
    max-width: 1202px;
  }
}
.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(245 245 245 / 1);
  padding-bottom: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.home .activity__container:not(:last-child) .activity:last-child {
    border-color: rgb(245 245 245 / var(--tw-border-opacity));
  }
}
.home__section-content-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}
.home__section-title {
  font-family: BioRhyme, serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .home__section-title {
    font-size: 36px;
    line-height: 47px;
  }
}
.home__section-title {
  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: "";
  border-radius: 0px;
  content: "";
  content: var(--tw-content);
  background-color: transparent;
}
.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: BioRhyme, serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .home__section-content-banner__title {
    font-size: 36px;
    line-height: 47px;
  }
}
.home__section-content-banner__title {
  --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: BioRhyme, serif;
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .home__section-participate-grid__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.home__section-participate-grid__title {
  margin-bottom: 0.5rem;
  line-height: 1.5rem;
}
.home__section-participate-grid__text {
  font-size: 16px;
  line-height: 21px;
  --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;
}
@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: 700;
  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;
}
.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;
  }
}
@media (min-width: 1202px) {

  .cookies {
    max-width: 1202px;
  }
}
.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: BioRhyme, serif;
  font-size: 22px;
  line-height: 29px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .cookies__category-trigger-title {
    font-size: 24px;
    line-height: 31px;
  }
}
.cookies__category-trigger-title {
  --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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.cookies__category-panel > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(245 245 245 / 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: 17px;
  --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;
  }
}
@media (min-width: 1202px) {

  .participatory-space__hero-text {
    max-width: 1202px;
  }
}
.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: 700;
}
.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;
  }
}
@media (min-width: 1202px) {

  .participatory-space__container > :not([id^=html-block]):not([id^=hero]):not([id^=floating-helper]) {
    max-width: 1202px;
  }
}
.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: 700;
}
.participatory-space__container > [id^=html-block] :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 700;
}
.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-inline-start: 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-inline-start: 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: 700;
  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: 700;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 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: 800;
  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: 700;
  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: 700;
  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(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.participatory-space__container > [id^=html-block] :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  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-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 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: 700;
  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-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 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;
  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: 700;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 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(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.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(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-inline-start: 0.375em;
}
.participatory-space__container > [id^=html-block] :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 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 > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(.prose > ol > li > p: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-inline-start: 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-inline-start: 0;
}
.participatory-space__container > [id^=html-block] :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 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-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 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-inline-start: 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-inline-end: 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: 21px;
  --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: 700;
  --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: 21px;
  font-weight: 700;
  --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: 700;
  --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)));
}
@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(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__metadata-modal__list > *::before {
    background-color: rgb(245 245 245 / 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: 700;
}
.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: 17px;
  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;
  }
}
@media (min-width: 1202px) {

  .participatory-space__block-breadcrumb {
    max-width: 1202px;
  }
}
.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: 21px;
  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: 21px;
  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: 700;
  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: 21px;
  --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));
  }
}
/* css for decidim_budgets_booth */
#voting-help .voting-help-item {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {

  #voting-help .voting-help-item {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
#voting-help .voting-help-item .circle {
  position: relative;
  left: 20%;
  display: block;
  height: "150px";
  width: "150px";
  border-radius: 9999px;
  border-width: 2px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
#voting-help .voting-help-item .circle {
    border-color: rgb(2 2 3 / var(--tw-border-opacity));
  }
}
@media (min-width: 768px) {

  #voting-help .voting-help-item .circle {
    left: 0.625rem;
  }
}
#voting-help .voting-help-item .circle.active {
  border-width: 4px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(145 145 145 / 1);
  fill: #919191;
}
@supports (color: rgb(0 0 0 / 0)) {
#voting-help .voting-help-item .circle.active {
    border-color: rgb(145 145 145 / var(--tw-border-opacity));
  }
}
#voting-help .voting-help-item .circle.active svg {
  fill: #919191;
}
#voting-help .voting-help-item .circle svg {
  position: relative;
  top: 23px;
  left: 22px;
  display: block;
  height: 100px;
  width: 100px;
  fill: #919191;
}
#voting-help .voting-help-item .help-description {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(145 145 145 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
#voting-help .voting-help-item .help-description {
    color: rgb(145 145 145 / var(--tw-text-opacity));
  }
}
#voting-help .voting-help-item .help-description span.strong {
  font-weight: 800;
}
#voting-help .voting-help-item .help-description.active {
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
#voting-help .voting-help-item .help-description.active {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
#voting-help .card.card--secondary .filters__section:first-child {
  display: none;
}
@media (min-width: 768px) {

  #voting-help .card.card--secondary .filters__section:first-child {
    display: block;
  }
}
.card--list__icon {
  margin-right: 0px;
}
.spaced-bottom {
  margin-bottom: 0.3rem;
}
.flex-column {
  flex-direction: column;
}
@media (min-width: 768px) {

  .flex-column {
    flex-direction: column;
  }
}
.card.budget-summary {
  display: flex;
  flex-direction: column;
}
.card.budget-summary a {
  margin-top: 1rem;
  margin-right: 0px;
  margin-bottom: 0px;
}
.customized-budget {
  margin: auto;
}
.font-customizer h2,
.font-customizer h3 {
  font-size: 1.1rem;
}
.voted-budget {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) grayscale(100%) 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);
}
.flex-digits {
  display: flex;
  justify-content: space-between;
}
.flex-digits .flex-digits-input {
  display: flex;
  flex: none;
}
.flex-digits .flex-digits-input input {
  margin-left: auto;
  margin-right: auto;
  height: 2.5rem;
  width: 2.5rem;
  text-align: center;
}
@media (min-width: 640px) {

  .flex-digits .flex-digits-input input {
    height: 3rem;
    width: 3rem;
  }
}
.zip-code-errors .form-error {
  margin-top: 1rem;
}
.booth-zipcode.thumbnail {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
.booth-zipcode.maximum-width {
  max-width: 430px;
}
#affirm-checkbox {
  margin-top: 1rem;
  font-weight: 700;
}
.budget-summary {
  text-align: center;
}
.budget-summary__progressbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 1280px) {

  .budget-summary__progressbox {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }
}
a.progress-ready-button {
  text-decoration-line: none;
}
.progress-ready-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: 700;
  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;
}
.progress-ready-button:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.progress-ready-button>span {
  overflow-wrap: break-word;
  text-align: center;
}
.progress-ready-button>svg {
  flex: none;
  fill: currentColor;
}
.progress-ready-button {
  gap: 0.5rem;
  font-size: 18px;
  line-height: 23px;
}
.progress-ready-button:not([class*="button\_\_text"]) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.progress-ready-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);
}
@supports (color: rgb(0 0 0 / 0)) {
.progress-ready-button {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.progress-ready-button:focus {
  outline-color: rgb(var(--secondary-rgb));
}
.progress-ready-button[disabled],.progress-ready-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)) {
.progress-ready-button[disabled],.progress-ready-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));
  }
}
.progress-ready-button.is-hover,.progress-ready-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)) {
.progress-ready-button.is-hover,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):hover {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.upload-modal__dropzone.is-disabled label.progress-ready-button {
  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.progress-ready-button {
    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));
  }
}
[id*=dropdown-menu].order-by .progress-ready-button {
  align-items: flex-end;
  justify-content: flex-end;
}
.actions__secondary .progress-ready-button {
  justify-content: flex-start;
}
.progress-ready-button {
  display: flex;
  height: 3rem;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .home__section-header .progress-ready-button {
    margin-left: auto;
  }
}
.submenu-element .progress-ready-button {
  width: 100%;
  justify-content: flex-start;
  padding: 1rem;
}
.submenu-element .progress-ready-button > span {
  text-align: left;
}
.progress-ready-button {
  border-radius: 0px;
}
.progress-ready-button svg {
  fill: currentColor;
}
a.progress-ready-button:hover {
  text-decoration-line: none;
}
a.progress-ready-button:focus {
  text-decoration-line: none;
}
.progress-ready-button.is-hover,.progress-ready-button.is-focus,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):hover,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):focus {
  background-image: none;
}
.progress-ready-button.is-hover.button__transparent-secondary,.progress-ready-button.is-focus.button__transparent-secondary,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.progress-ready-button.is-hover.button__transparent-secondary,.progress-ready-button.is-focus.button__transparent-secondary,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.progress-ready-button.is-hover.button__transparent-secondary svg,.progress-ready-button.is-focus.button__transparent-secondary svg,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary svg,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary svg {
  fill: #fff;
}
.progress-ready-button.is-hover.button__secondary,.progress-ready-button.is-focus.button__secondary,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
  border-color: var(--primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  color: var(--primary);
}
@supports (color: rgb(0 0 0 / 0)) {
.progress-ready-button.is-hover.button__secondary,.progress-ready-button.is-focus.button__secondary,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.button.is-hover.progress-ready-button,
.button.is-focus.progress-ready-button,
.button:not([disabled]):not([class*=button__text]):not(label):hover.progress-ready-button,
.button:not([disabled]):not([class*=button__text]):not(label):focus.progress-ready-button {
  border-color: var(--primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  color: var(--primary);
}
@supports (color: rgb(0 0 0 / 0)) {
.button.is-hover.progress-ready-button,
.button.is-focus.progress-ready-button,
.button:not([disabled]):not([class*=button__text]):not(label):hover.progress-ready-button,
.button:not([disabled]):not([class*=button__text]):not(label):focus.progress-ready-button {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.progress-ready-button.is-hover.button__secondary svg,.progress-ready-button.is-focus.button__secondary svg,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary svg,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary svg {
  fill: var(--primary);
}
.button.is-hover.progress-ready-button svg,
.button.is-focus.progress-ready-button svg,
.button:not([disabled]):not([class*=button__text]):not(label):hover.progress-ready-button svg,
.button:not([disabled]):not([class*=button__text]):not(label):focus.progress-ready-button svg {
  fill: var(--primary);
}
.progress-ready-button.is-hover.budget__card__prevote-explore-button,.progress-ready-button.is-focus.budget__card__prevote-explore-button,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.progress-ready-button.is-hover.budget__card__prevote-explore-button,.progress-ready-button.is-focus.budget__card__prevote-explore-button,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.progress-ready-button.is-hover.budget__card__prevote-explore-button svg,.progress-ready-button.is-focus.budget__card__prevote-explore-button svg,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button svg,.progress-ready-button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button svg {
  fill: #fff;
}
@media (min-width: 768px) {

  .progress-ready-button {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (min-width: 1280px) {

  .progress-ready-button {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.budget__list--header {
  margin-left: 0.875rem;
  margin-right: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.budget-list a:hover {
  text-decoration-line: none;
}
.budget-list a :hover h3 {
  text-decoration-line: underline;
}
.budget-list__data {
  justify-content: center;
}
.budget-list__item {
  margin-bottom: 2rem;
  display: flex;
  width: 100%;
  flex-direction: column;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.budget-list__item {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
@media (min-width: 768px) {

  .budget-list__item {
    margin-bottom: 0px;
  }
}
@media (min-width: 1024px) {

  .budget-list__item {
    flex-direction: row;
    justify-content: space-between;
  }
}
.budget-list__item .explore-link {
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.budget-list__item .explore-link {
    background-color: rgb(242 252 253 / var(--tw-bg-opacity));
  }
}
@media (min-width: 1024px) {

  .budget-list__item .explore-link {
    width: 13rem;
    flex-shrink: 0;
  }
}
.budget-list__item .selected-project {
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(225 250 232 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.budget-list__item .selected-project {
    background-color: rgb(225 250 232 / var(--tw-bg-opacity));
  }
}
@media (min-width: 1024px) {

  .budget-list__item .selected-project {
    width: 13rem;
    flex-shrink: 0;
  }
}
.budget__card__prevote {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 1024px) {

  .budget__card__prevote {
    display: block;
  }

  .budget__card__prevote > :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));
  }
}
.budget__card__prevote .budget__card__highlight-prevote__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.budget__card__prevote .budget__card__highlight-prevote__header > :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: 1024px) {

  .budget__card__prevote .budget__card__highlight-prevote__header {
    align-items: center;
  }
}
.budget__card__prevote .budget__card__highlight-prevote__header .budget__card__highlight-prevote__text {
  font-size: 16px;
  line-height: 21px;
}
.budget__card__prevote .budget__card__highlight-prevote__header .budget__card__highlight-prevote__number {
  font-size: 28px;
  font-weight: 700;
}
.budget__card__prevote .budget__card__prevote-explore-button {
  font-size: 18px;
  line-height: 23px;
}
@media (min-width: 1024px) {

  .budget__card__prevote .budget__card__prevote-explore-button {
    margin-top: 0.5rem;
  }
}
.budget__card__prevote .budget__card__prevote-explore-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pre-voting-budget-summary {
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.pre-voting-budget-summary {
    background-color: rgb(242 252 253 / var(--tw-bg-opacity));
  }
}
.collection-sort-controls {
  display: flex;
  align-items: flex-start;
}
.voting-rules {
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 66.666667%;
  font-size: 20px;
  line-height: 26px;
}
.voting-rules .link {
  font-size: 18px;
  line-height: 23px;
  font-weight: 700;
  color: var(--primary);
}
.voting-rules svg {
  fill: var(--primary);
  padding-top: 0px;
}
.projects-link {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

  .projects-link {
    max-width: 1024px;
  }
}
@media (min-width: 1202px) {

  .projects-link {
    max-width: 1202px;
  }
}
.projects-link {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding-top: 1.5rem;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: var(--primary);
}
.projects-link a {
  grid-column: 1 / -1;
}
.project-info {
  height: -moz-min-content;
  height: min-content;
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.project-info {
    background-color: rgb(242 252 253 / var(--tw-bg-opacity));
  }
}
.project-info .definition-data__title {
  text-align: center;
  font-size: 16px;
  line-height: 21px;
}
.project-info .definition-data__number {
  margin-bottom: 1rem;
  font-size: 28px;
  font-weight: 700;
}
.project-info span.success {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 23px;
}
.progress-background {
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.progress-background {
    background-color: rgb(242 252 253 / var(--tw-bg-opacity));
  }
}
.vote-progress-container {
  z-index: 50;
}
@media (max-width: 767px) {

  .vote-progress-container {
    --tw-bg-opacity: 1;
    background-color: rgb(242 252 253 / 1);
  }

@supports (color: rgb(0 0 0 / 0)) {
.vote-progress-container {
      background-color: rgb(242 252 253 / var(--tw-bg-opacity));
    }
}
}
.vote-progress-content {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

  .vote-progress-content {
    max-width: 1024px;
  }
}
@media (min-width: 1202px) {

  .vote-progress-content {
    max-width: 1202px;
  }
}
.vote-progress-content {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.no-top {
  padding-top: 0px;
}
.budget-summary__selected-item > div:nth-child(1) {
  width: 50%;
}
@media (min-width: 768px) {

  .budget-summary__selected-item > div > div:nth-child(1),
.budget-summary__selected-item > div > div:nth-child(2) {
    width: 50%;
  }
}
.project-vote-button-container {
  fill: var(--primary);
}
#budget-confirm[data-dialog] [data-dialog-container] > :last-child {
  grid-column: span 2 / span 2;
  grid-column-start: 1;
}
#budget-confirm[data-dialog] [data-dialog-container] > :last-child .budget-confirm__selected-number {
  font-size: 18px;
  line-height: 23px;
  font-weight: 700;
}
@media (min-width: 768px) {

  #budget-confirm[data-dialog] [data-dialog-container] > :last-child .budget-confirm__selected-number {
    font-size: 24px;
    line-height: 31px;
  }
}
.start-vote-button {
  width: 100%;
}
@media (min-width: 1024px) {

  .start-vote-button {
    width: -moz-fit-content;
    width: fit-content;
  }
}
#budgets.card__list-list {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 1024px) {

  #budgets.card__list-list {
    width: 60%;
  }
}
@media (min-width: 1280px) {

  #budgets.card__list-list {
    margin-bottom: 0px;
  }

  #budgets.card__list-list > :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));
  }
}
#budgets.card__list-list a :hover p {
  text-decoration-line: underline;
}
#budgets.card__list-list .card__highlight {
  display: flex;
  flex-direction: column;
}
#budgets.card__list-list .card__highlight > :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));
}
#budgets.card__list-list .card__highlight {
  border-radius: 0px;
  --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
#budgets.card__list-list .card__highlight:hover {
  text-decoration-line: none;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 244 247 / var(--tw-ring-opacity));
}
@media (min-width: 1024px) {

  #budgets.card__list-list .card__highlight {
    flex-direction: row;
  }

  #budgets.card__list-list .card__highlight > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - 0));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * 0);
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
}
#budgets.card__list-list .card__highlight > :not([hidden]) ~ :not([hidden]) {
  margin-top: 2.5rem;
  padding: 1rem;
}
@media (max-width: 496px) {

  #budgets.card__list-list .card__highlight > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.625rem;
  }
}
@media (max-width: 391px) {

  #budgets.card__list-list .card__highlight > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0px;
  }
}
@media (min-width: 1024px) {

  #budgets.card__list-list .card__highlight > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0px;
  }
}
#budgets.card__list-list .card__highlight .budget__card__highlight-vote {
  margin-top: 0px;
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
  padding: 0px;
}
@supports (color: rgb(0 0 0 / 0)) {
#budgets.card__list-list .card__highlight .budget__card__highlight-vote {
    background-color: rgb(242 252 253 / var(--tw-bg-opacity));
  }
}
@media (min-width: 1024px) {

  #budgets.card__list-list .card__highlight .budget__card__highlight-vote {
    display: block;
    width: 33.333333%;
    text-align: center;
  }
}
#budgets.card__list-list .card__highlight .budget__card__highlight-vote__text {
  margin-bottom: 0.625rem;
  font-size: 16px;
  line-height: 21px;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
#budgets.card__list-list .card__highlight .budget__card__highlight-vote__text {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
@media (min-width: 1024px) {

  #budgets.card__list-list .card__highlight .budget__card__highlight-vote__text {
    margin-left: auto;
    margin-right: auto;
  }
}
#budgets.card__list-list .card__highlight .budget__card__highlight-vote__number {
  font-size: 28px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
#budgets.card__list-list .card__highlight .budget__card__highlight-vote__number {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
#voted-budgets .budget__card__highlight-vote {
  margin-top: 0px;
}
#voted-budgets .card__highlight-text {
  gap: 0px;
  padding: 1rem;
  padding-bottom: 18px;
}
#voted-budgets a {
  padding-bottom: 0px;
}
.budget-progress {
  position: relative;
  display: flex;
  height: 3rem;
  width: 100%;
  align-items: center;
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.budget-progress {
    background-color: rgb(245 245 245 / var(--tw-bg-opacity));
  }
}
@media (min-width: 1280px) {

  .budget-progress {
    width: 83.333333%;
  }
}
.progress-meter.budget-progress__meter {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(88 164 145 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.progress-meter.budget-progress__meter {
    background-color: rgb(88 164 145 / var(--tw-bg-opacity));
  }
}
.progress-meter.budget-progress__meter > span {
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.progress-meter.budget-progress__meter > span {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.progress-meter-text.progress-meter-text--right {
  position: absolute;
  right: 1rem;
}
@media (max-width: 380px) {

  .progress-meter-text.progress-meter-text--right--fixed {
    display: none;
  }
}
@media (min-width: 1536px) {

  .progress-meter-text.progress-meter-text--right--fixed {
    position: absolute;
    right: 25%;
    padding-right: 5rem;
  }
}
.budget-summary__selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {

  .budget-summary__selected {
    justify-content: flex-start;
  }
}
@media (min-width: 1280px) {

  .budget-summary__selected {
    justify-content: flex-start;
    gap: 1.5rem;
  }
}
.budget-summary__selected h6 {
  color: var(--primary);
}
.budget-summary__selected svg {
  fill: var(--primary);
}
.budget-summary__selected button p {
  color: var(--primary);
}
.budget-summary__selected-number {
  font-size: 18px;
  line-height: 23px;
}
@media (min-width: 768px) {

  .budget-summary__selected-number {
    font-size: 22px;
    line-height: 29px;
  }
}
.budget-summary__total {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 18px;
  line-height: 23px;
}
@media (min-width: 1280px) {

  .budget-summary__total {
    text-align: left;
  }
}
.success-image {
  --success: #4a8d7c;
  width: 150px;
  height: 150px;
  margin: auto;
}
@media (max-width: 768px) {
  .success-image {
    width: 100px;
    height: 100px;
  }
}
.success-image .animation-success__checkmark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  stroke-width: 5;
  stroke: var(--success);
  stroke-miterlimit: 10;
  box-shadow: inset 0 0 0 #4bb71b;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.09s both;
  position: relative;
  top: 5px;
  right: 5px;
  margin: 0 auto;
}
.success-image .animation-success__checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 5;
  stroke-miterlimit: 10;
  stroke: var(--success);
  fill: #fff;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.success-image .animation-success__checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0 0 0 30 var(--success);
  }
}
.status-choices {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2.5rem;
  font-size: 22px;
  line-height: 29px;
  font-weight: 700;
  color: var(--primary);
}
.status-choices svg {
  margin-top: 0px;
  height: 1.5rem;
  width: 1.5rem;
  fill: var(--primary);
}
.filter label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter label [id^=dropdown-title-with_any_category_] {
  display: block;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form__wrapper-block .status-logout *:only-child {
  margin-left: 0px;
}
#status-summary #status-summary-content [data-dialog-actions] a > svg {
  margin-bottom: 0px;
}
@media (min-width: 1024px) {

  .voting-wrapper .layout-item__aside {
    grid-column: span 3 / span 3;
    grid-column-end: 13;
  }
}
.button--mpassid.button--social--mini .button--social__icon {
  padding: 0 0.4rem;
}
.button--mpassid .button--social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 3rem;
  padding: 0 0.3rem;
}
.button--mpassid .button--social__icon svg.mpass,
.button--mpassid .button--social__icon svg.mpassc {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button--mpassid .button--social__icon svg.mpass {
  fill: inherit;
}
.active-link {
  text-decoration-line: underline;
}
.active-link::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0.125rem;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
.active-locale {
  text-decoration-line: underline;
}
.menu-link:hover {
  text-decoration-line: underline;
}
.menu__bar {
  display: none;
  min-height: 3.41rem;
  border-top-width: 2px;
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.menu__bar {
    border-color: rgb(245 245 245 / var(--tw-border-opacity));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
@media (min-width: 1024px) {

  .menu__bar {
    display: block;
  }
}
.menu__bar-container {
  justify-content: center;
}
.menu__bar-element--link {
  font-size: 20px;
  line-height: 26px;
  color: var(--primary);
}
.menu__bar-mobile a {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
.menu__bar-element {
  position: relative;
  display: none;
  align-self: center;
}
@media (min-width: 640px) {

  @media not all and (min-width: 1024px) {

    .menu__bar-element {
      display: none;
    }
  }
}
@media (min-width: 1024px) {

  .menu__bar-element {
    display: inline;
  }
}
.menu__bar-mobile {
  position: relative;
  width: 100%;
}
.menu-element {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}
.menu-element-mobile {
  display: flex;
  height: 3rem;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  font-size: 18px;
  line-height: 23px;
}
@supports (color: rgb(0 0 0 / 0)) {
.menu-element-mobile {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.menu-element-mobile .menu-element-caret {
  position: relative;
  top: 0px;
  right: 0px;
  margin-top: 0px;
  display: flex;
  height: 47px;
  width: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  border-left-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.menu-element-mobile .menu-element-caret {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.menu-element-caret {
  position: absolute;
  right: 1.75rem;
  top: 50%;
  margin-top: -0.7em;
}
.menu-element-caret[aria-expanded=true] {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) 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));
}
.menu-element-caret svg {
  background-color: transparent;
  color: var(--primary);
}
.caret {
  height: 1.5rem;
  width: 1.5rem;
  flex: none;
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / 1);
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.caret {
    background-color: rgb(245 245 245 / var(--tw-bg-opacity));
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.mobile-caret {
  height: 1.5rem;
  width: 1.5rem;
}
.menu__bar-container {
  display: flex;
  flex-direction: row;
  gap: 1.75rem;
}
.menu__bar-element--link {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.75rem;
  padding-bottom: 0.7rem;
  font-size: 18px;
  line-height: 23px;
  --tw-text-opacity: 1;
  color: rgb(var(--primary-rgb) / 1);
  color: rgb(var(--primary-rgb) / var(--tw-text-opacity));
}
.menu__bar-element--link:hover::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0.125rem;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--primary-rgb) / 1);
  background-color: rgb(var(--primary-rgb) / var(--tw-bg-opacity));
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
.menu__bar-element[data-submenu=true] > .menu-element > .menu__bar-element--link {
  padding-right: 3.5rem;
}
.menu__bar-submenu {
  position: absolute;
  left: 0px;
  z-index: 50;
  display: none;
  min-width: 300px;
  border-top-width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --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);
}
@supports (color: rgb(0 0 0 / 0)) {
.menu__bar-submenu {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.menu__bar-submenu[data-state=open] {
  display: block;
}
.menu__bar-submenu .menu__bar-element--link {
  padding-left: 1px;
  padding-right: 1px;
}
.menu__bar-submenu-mobile {
  display: none;
  overflow: hidden;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.menu__bar-submenu-mobile[data-state=open] {
  display: block;
}
.submenu-element {
  position: relative;
  display: block;
  width: 100%;
  list-style-type: none;
  padding-left: 0px;
  text-align: center;
}
.submenu-element:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.submenu-element:hover {
    background-color: rgb(245 245 245 / var(--tw-bg-opacity));
  }
}
.submenu-element .button {
  width: 100%;
  justify-content: flex-start;
  padding: 1rem;
}
.submenu-element-mobile {
  width: 100%;
  border-bottom-width: 1px;
}
.submenu-element-mobile .menu__bar-element--link {
  width: 100%;
  justify-content: flex-start;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 400;
}
.menu__bar-actions {
  position: absolute;
  right: 14rem;
  display: block;
}
.menu__bar-actions .menu-link {
  --tw-border-opacity: 1;
  border-color: rgb(2 2 3 / 1);
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.menu__bar-actions .menu-link {
    border-color: rgb(2 2 3 / var(--tw-border-opacity));
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.mobile-menu {
  position: relative;
  left: 0px;
  z-index: 50;
  display: none;
  height: calc(100vh - 4rem);
  width: 100%;
  overflow: auto;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 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)) {
.mobile-menu {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.mobile-menu form {
  display: flex;
  justify-content: center;
}
.mobile-menu form input {
  flex-grow: 1;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
.toggle-mobile-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}
.toggle-mobile-menu svg {
  fill: var(--primary);
}
.mobile-language {
  display: flex;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.mobile-language {
    background-color: rgb(243 244 247 / var(--tw-bg-opacity));
  }
}
.mobile-search-container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.mobile-search-container form {
  height: 2.5rem;
  border-radius: 0px;
  border-width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.mobile-search-container form {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.mobile-search-container button[type=submit] {
  top: 0px;
  right: 0px;
  height: 2.5rem;
  width: 2.5rem;
  border-left-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(2 2 3 / 1);
  --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)) {
.mobile-search-container button[type=submit] {
    border-color: rgb(2 2 3 / var(--tw-border-opacity));
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.mobile-search-container button[type=submit] svg {
  display: inline;
  fill: #fff;
}
.mobile-search-container #input-search {
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.mobile-search-container #input-search {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.mobile-search {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
.dropdown-menu-account-mobile {
  position: relative;
  left: 0px;
  right: 0px;
  z-index: 50;
  display: none;
  height: calc(100vh - 4rem);
  overflow-y: auto;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.dropdown-menu-account-mobile {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.dropdown-menu-account-mobile > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dropdown-menu-account-mobile > ul li {
  width: 100%;
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.dropdown-menu-account-mobile > ul li {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.dropdown-menu-account-mobile > ul li a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
.dropdown-menu-account-mobile > ul li a svg {
  height: 1.5rem;
  width: 1.5rem;
  fill: var(--primary);
}
header .main-bar__search {
  grid-column: span 2 / span 2;
  grid-column-start: 5;
  display: none;
}
@media (min-width: 1024px) {

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

  header .main-bar__search {
    grid-column-start: 4;
  }
}
header .main-bar__logo {
  grid-column: span 4 / span 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 539px) {

  header .main-bar__logo {
    grid-column: span 5 / span 5;
  }
}
@media (max-width: 470px) {

  header .main-bar__logo {
    grid-column: span 6 / span 6;
  }
}
@media (max-width: 449px) {

  header .main-bar__logo {
    grid-column: span 7 / span 7;
  }
}
@media (min-width: 640px) {

  header .main-bar__logo {
    grid-column: span 3 / span 3;
  }
}
@media (min-width: 1024px) {

  header .main-bar__logo {
    grid-column: span 5 / span 5;
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
  }
}
@media (min-width: 1280px) {

  header .main-bar__logo {
    grid-column: span 4 / span 4;
  }
}
header .main-bar__dropdown-trigger {
  padding-left: 0px;
  padding-right: 0px;
}
header .main-bar__links-desktop__item {
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
}
.simple-locales-container .locale {
  color: var(--primary);
}
#mobile-buttons .toggle-mobile-menu,
#mobile-buttons .main-bar__links-desktop__item {
  font-weight: 700;
}
@media (min-width: 768px) {

  #mobile-buttons .toggle-mobile-menu,
#mobile-buttons .main-bar__links-desktop__item {
    font-size: 13px;
    line-height: 17px;
  }
}
#mobile-buttons .main-bar__links-desktop__item svg,
#mobile-buttons .toggle-mobile-menu svg {
  height: 2rem;
  width: 2rem;
  fill: var(--primary);
}
#mobile-buttons button .mobile-account-label,
#mobile-buttons button .mobile-menu-label {
  display: block;
}
#mobile-buttons button [data-state=active] {
  display: none;
}
header[data-navbar-active] {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 9999;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header[data-navbar-active] {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
header[data-navbar-active] #admin-bar {
  display: none;
}
header[data-navbar-active=mobile-menu] .mobile-menu {
  display: block;
}
@media (min-width: 1024px) {

  header[data-navbar-active=mobile-menu] .mobile-menu {
    display: none;
  }
}
header[data-navbar-active=mobile-menu] #mobile-buttons button[data-navbar-toggle=mobile-menu] [data-state=inactive] {
  display: none;
}
header[data-navbar-active=mobile-menu] #mobile-buttons button[data-navbar-toggle=mobile-menu] [data-state=active] {
  display: block;
}
header[data-navbar-active=mobile-account-menu] .dropdown-menu-account-mobile {
  display: block;
}
@media (min-width: 1024px) {

  header[data-navbar-active=mobile-account-menu] .dropdown-menu-account-mobile {
    display: none;
  }
}
header[data-navbar-active=mobile-account-menu] #mobile-buttons button[data-navbar-toggle=mobile-account-menu] .main-bar__notification {
  visibility: hidden;
}
header[data-navbar-active=mobile-account-menu] #mobile-buttons button[data-navbar-toggle=mobile-account-menu] [data-state=inactive] {
  display: none;
}
header[data-navbar-active=mobile-account-menu] #mobile-buttons button[data-navbar-toggle=mobile-account-menu] [data-state=active] {
  display: block;
}
/* css for decidim_privacy */
.private-icon {
  top: 5px;
  position: relative;
}
.decorator::after {
  border-radius: 0px;
  content: var(--tw-content);
  background-color: transparent;
}
.page__title {
  font-family: BioRhyme, serif;
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .page__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.page__title {
  margin-bottom: 1rem;
  font-size: 22px;
}
@media (min-width: 768px) {
  .page__title {
    font-family: BioRhyme, serif;
    font-size: 24px;
    line-height: 31px;
    font-weight: 700;
  }
  @media (min-width: 768px) {

    .page__title {
      font-size: 28px;
      line-height: 36px;
    }
  }
}
.page__container .editor-content {
  font-size: 16px;
  line-height: 21px;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.page__container .editor-content {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.read-more {
  padding-top: 1rem;
  font-weight: 700;
  color: var(--primary);
}
a.simple-card-button {
  text-decoration-line: none;
}
.simple-card-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: 700;
  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;
}
.simple-card-button:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.simple-card-button>span {
  overflow-wrap: break-word;
  text-align: center;
}
.simple-card-button>svg {
  flex: none;
  fill: currentColor;
}
.simple-card-button {
  gap: 0.5rem;
  font-size: 18px;
  line-height: 23px;
}
.simple-card-button:not([class*="button\_\_text"]) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.simple-card-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);
}
@supports (color: rgb(0 0 0 / 0)) {
.simple-card-button {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.simple-card-button:focus {
  outline-color: rgb(var(--secondary-rgb));
}
.simple-card-button[disabled],.simple-card-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)) {
.simple-card-button[disabled],.simple-card-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));
  }
}
.simple-card-button.is-hover,.simple-card-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)) {
.simple-card-button.is-hover,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):hover {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.upload-modal__dropzone.is-disabled label.simple-card-button {
  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.simple-card-button {
    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));
  }
}
[id*=dropdown-menu].order-by .simple-card-button {
  align-items: flex-end;
  justify-content: flex-end;
}
.actions__secondary .simple-card-button {
  justify-content: flex-start;
}
@media (min-width: 768px) {

  .home__section-header .simple-card-button {
    margin-left: auto;
  }
}
.submenu-element .simple-card-button {
  width: 100%;
  justify-content: flex-start;
  padding: 1rem;
}
.submenu-element .simple-card-button > span {
  text-align: left;
}
.simple-card-button {
  border-radius: 0px;
}
.simple-card-button svg {
  fill: currentColor;
}
a.simple-card-button:hover {
  text-decoration-line: none;
}
a.simple-card-button:focus {
  text-decoration-line: none;
}
.simple-card-button.is-hover,.simple-card-button.is-focus,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):hover,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):focus {
  background-image: none;
}
.simple-card-button.is-hover.button__transparent-secondary,.simple-card-button.is-focus.button__transparent-secondary,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.simple-card-button.is-hover.button__transparent-secondary,.simple-card-button.is-focus.button__transparent-secondary,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.simple-card-button.is-hover.button__transparent-secondary svg,.simple-card-button.is-focus.button__transparent-secondary svg,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary svg,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary svg {
  fill: #fff;
}
.simple-card-button.is-hover.button__secondary,.simple-card-button.is-focus.button__secondary,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
  border-color: var(--primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  color: var(--primary);
}
@supports (color: rgb(0 0 0 / 0)) {
.simple-card-button.is-hover.button__secondary,.simple-card-button.is-focus.button__secondary,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.button.is-hover.simple-card-button,
.button.is-focus.simple-card-button,
.button:not([disabled]):not([class*=button__text]):not(label):hover.simple-card-button,
.button:not([disabled]):not([class*=button__text]):not(label):focus.simple-card-button {
  border-color: var(--primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  color: var(--primary);
}
@supports (color: rgb(0 0 0 / 0)) {
.button.is-hover.simple-card-button,
.button.is-focus.simple-card-button,
.button:not([disabled]):not([class*=button__text]):not(label):hover.simple-card-button,
.button:not([disabled]):not([class*=button__text]):not(label):focus.simple-card-button {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.simple-card-button.is-hover.button__secondary svg,.simple-card-button.is-focus.button__secondary svg,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary svg,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary svg {
  fill: var(--primary);
}
.button.is-hover.simple-card-button svg,
.button.is-focus.simple-card-button svg,
.button:not([disabled]):not([class*=button__text]):not(label):hover.simple-card-button svg,
.button:not([disabled]):not([class*=button__text]):not(label):focus.simple-card-button svg {
  fill: var(--primary);
}
.simple-card-button.is-hover.budget__card__prevote-explore-button,.simple-card-button.is-focus.budget__card__prevote-explore-button,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.simple-card-button.is-hover.budget__card__prevote-explore-button,.simple-card-button.is-focus.budget__card__prevote-explore-button,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.simple-card-button.is-hover.budget__card__prevote-explore-button svg,.simple-card-button.is-focus.budget__card__prevote-explore-button svg,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button svg,.simple-card-button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button svg {
  fill: #fff;
}
header .main-bar {
  display: flex;
  grid-template-columns: none;
}
header .main-bar__search {
  grid-column: auto;
  margin-left: auto;
  width: 13.75rem;
  justify-self: end;
}
header .main-bar__search form {
  border-radius: 0px;
  border-width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
header .main-bar__search form {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
header .main-bar__search input[type=text] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  line-height: 1.75rem;
}
header .main-bar__search button[type=submit] {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2.25rem;
  border-left-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(2 2 3 / 1);
  --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)) {
header .main-bar__search button[type=submit] {
    border-color: rgb(2 2 3 / var(--tw-border-opacity));
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
header .main-bar__search button[type=submit] svg {
  display: inline;
  fill: #fff;
}
header .main-bar__links-desktop,
header .main-bar > *:last-child {
  grid-column: auto;
  justify-self: end;
}
@media (min-width: 768px) {

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

  header .main-bar__links-desktop,
header .main-bar > *:last-child {
    grid-column: auto;
  }
}
header .main-bar__links-desktop {
  margin-left: 0px;
}
footer {
  margin-bottom: 0px;
}
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;
  }
}
@media (min-width: 1202px) {

  footer .main-footer__down {
    max-width: 1202px;
  }
}
footer .main-footer__down {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  border-top-width: 0px;
  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 {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.layout-1col.cols-12 > * {
  grid-column: span 12 / span 12;
  align-self: flex-start;
}
.layout-2col {
  display: block;
}
.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;
  }
}
@media (min-width: 1202px) {

  .layout-item {
    max-width: 1202px;
  }
}
.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: 1;
  }
}
.layout-item__aside {
  height: -moz-min-content;
  height: min-content;
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.layout-item__aside {
    background-color: rgb(242 252 253 / var(--tw-bg-opacity));
  }
}
@media (min-width: 1024px) {

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

  .layout-item__aside {
    grid-column: span 3 / span 3;
    grid-column-end: 13;
  }
}
.layout-item__aside [id^=proposal-][id$=vote-button] {
  display: flex;
  justify-content: center;
}
.layout-item__aside [id^=proposal-][id$=vote-button] button {
  width: -moz-min-content;
  width: min-content;
}
.layout-main__section.layout-main__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {

  .layout-main__section.layout-main__buttons {
    flex-direction: row;
    justify-content: space-between;
    gap: 0px;
  }
}
.topic-container {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245 / 1);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.topic-container {
    border-color: rgb(245 245 245 / var(--tw-border-opacity));
  }
}
.participatory-space__container .content-block {
  border-top-width: 0px;
}
.one-col {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

  .one-col {
    max-width: 1024px;
  }
}
@media (min-width: 1202px) {

  .one-col {
    max-width: 1202px;
  }
}
.one-col {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.double-col {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

  .double-col {
    max-width: 1024px;
  }
}
@media (min-width: 1202px) {

  .double-col {
    max-width: 1202px;
  }
}
.double-col {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {

  .double-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.double-col_off {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

  .double-col_off {
    max-width: 1024px;
  }
}
@media (min-width: 1202px) {

  .double-col_off {
    max-width: 1202px;
  }
}
.double-col_off {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {

  .double-col_off {
    grid-template-columns: 23fr 73fr;
    gap: 2.75rem;
  }
}
.double-col_off_reverse {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

  .double-col_off_reverse {
    max-width: 1024px;
  }
}
@media (min-width: 1202px) {

  .double-col_off_reverse {
    max-width: 1202px;
  }
}
.double-col_off_reverse {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {

  .double-col_off_reverse {
    grid-template-columns: 73fr 23fr;
    gap: 2.75rem;
  }
}
.layout-aside__section + .layout-aside__section {
  --vertical-spacing: 0;
}
.process-banner {
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
  padding: 0px;
}
@supports (color: rgb(0 0 0 / 0)) {
.process-banner {
    background-color: rgb(242 252 253 / var(--tw-bg-opacity));
  }
}
#content {
  flex-grow: 1;
  padding-bottom: 4rem;
}
#content.no-padding {
  padding-bottom: 0px;
}
header .main-bar__links-desktop svg {
  height: 2.25rem;
  width: 2.25rem;
}
header .main-bar__links-desktop svg + span {
  margin-top: 0.25rem;
  font-weight: 700;
}
.participatory-space__nav-item {
  height: 3.5rem;
  width: 100%;
  background-color: var(--primary);
  padding: 0.5rem;
  padding-left: 1rem;
  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)) {
.participatory-space__nav-item {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
@media (min-width: 1280px) {

  .participatory-space__nav-item {
    width: 50%;
  }
}
.participatory-space__nav-item svg {
  height: 1.5rem;
  width: 1.5rem;
}
.submenu-element {
  text-align: left;
}
.submenu-element .button > span {
  text-align: left;
}
.menu__bar-submenu {
  --tw-border-opacity: 1;
  border-top-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.menu__bar-submenu {
    border-top-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.active-link {
  color: var(--primary);
}
.active-caret svg {
  fill: var(--primary);
}
.menu-element-caret-mobile svg {
  fill: var(--primary);
}
.submenu-element-mobile {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.submenu-element-mobile {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
[data-dialog] [data-dialog-actions] {
  flex-wrap: nowrap;
}
[data-dialog] [data-dialog-title] {
  display: inline;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  --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;
}
@media (min-width: 768px) {

  [data-dialog] [data-dialog-title] {
    font-size: 36px;
    line-height: 47px;
  }
}
[data-dialog] [data-dialog-container] {
  display: block;
}
[data-dialog] [data-dialog-container] > svg {
  margin-bottom: 1rem;
  margin-inline-end: 0.625rem;
  display: inline;
}
#highlighted-processes .card__highlight {
  margin-bottom: 2rem;
}
#highlighted-processes .card__highlight:hover {
  --tw-ring-color: var(--primary);
}
#highlighted-processes .card__highlight-text {
  font-size: 16px;
  line-height: 21px;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
#highlighted-processes .card__highlight-text {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
#processes-grid a.card__grid:hover {
  --tw-ring-color: var(--primary);
}
.page__grid .page__title {
  color: var(--primary);
}
.page__grid .page__accordion-trigger-snippet {
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.page__grid .page__accordion-trigger-snippet {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.page__grid .read-more {
  font-family: Raleway, ui-sans-serif, sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
}
.card__list {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding-left: 0px;
  padding-right: 0px;
}
@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(243 244 247 / 1);
  text-decoration-line: none;
}
@supports (color: rgb(0 0 0 / 0)) {
.card__list:hover {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.card__list-content {
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media (min-width: 768px) {

  .card__list-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
a.card__list[id^=accountability__result_] {
  gap: 0px;
}
#blogs .card__list {
  width: 100%;
}
@media (min-width: 768px) {

  #blogs .card__list {
    width: 66.666667%;
  }
}
.simple-tabs {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.simple-tabs h1 {
  overflow-wrap: break-word;
}
.simple-tabs .vertical-tabs {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

  .simple-tabs .vertical-tabs {
    max-width: 1024px;
  }
}
@media (min-width: 1202px) {

  .simple-tabs .vertical-tabs {
    max-width: 1202px;
  }
}
.simple-tabs .vertical-tabs {
  margin-top: 3rem;
  gap: 2rem;
}
@media (min-width: 768px) {

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

  .simple-tabs .vertical-tabs {
    gap: 2rem;
  }
}
.simple-tabs .vertical-tabs nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: 18px;
  line-height: 23px;
}
@supports (color: rgb(0 0 0 / 0)) {
.simple-tabs .vertical-tabs nav {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.simple-tabs .vertical-tabs nav h3 {
  margin-bottom: 0.25rem;
}
.simple-tabs .vertical-tabs nav .is-active {
  text-decoration-line: underline;
}
.simple-tabs .vertical-tabs nav p {
  font-family: Raleway, ui-sans-serif, sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  color: var(--primary);
}
.simple-tabs .vertical-tabs > *:first-child {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {

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

  .simple-tabs .vertical-tabs > *:last-child {
    grid-column: span 4 / span 4;
    grid-column-start: 9;
  }
}
.vertical-tabs .editor-content .rich-text-display {
  font-size: 16px;
  line-height: 21px;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.vertical-tabs .editor-content .rich-text-display {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.button {
  border-radius: 0px;
}
.button svg {
  fill: currentColor;
}
a.button:hover {
  text-decoration-line: none;
}
a.button:focus {
  text-decoration-line: none;
}
.button.is-hover,
.button.is-focus,
.button:not([disabled]):not([class*=button__text]):not(label):hover,
.button:not([disabled]):not([class*=button__text]):not(label):focus {
  background-image: none;
}
.button.is-hover.button__transparent-secondary,
.button.is-focus.button__transparent-secondary,
.button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,
.button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.button.is-hover.button__transparent-secondary,
.button.is-focus.button__transparent-secondary,
.button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary,
.button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.button.is-hover.button__transparent-secondary svg,
.button.is-focus.button__transparent-secondary svg,
.button:not([disabled]):not([class*=button__text]):not(label):hover.button__transparent-secondary svg,
.button:not([disabled]):not([class*=button__text]):not(label):focus.button__transparent-secondary svg {
  fill: #fff;
}
.button.is-hover.button__secondary,
.button.is-focus.button__secondary,
.button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,
.button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
  border-color: var(--primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  color: var(--primary);
}
@supports (color: rgb(0 0 0 / 0)) {
.button.is-hover.button__secondary,
.button.is-focus.button__secondary,
.button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary,
.button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.button.is-hover.button__secondary svg,
.button.is-focus.button__secondary svg,
.button:not([disabled]):not([class*=button__text]):not(label):hover.button__secondary svg,
.button:not([disabled]):not([class*=button__text]):not(label):focus.button__secondary svg {
  fill: var(--primary);
}
.button.is-hover.budget__card__prevote-explore-button,
.button.is-focus.budget__card__prevote-explore-button,
.button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,
.button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
  background-color: var(--primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.button.is-hover.budget__card__prevote-explore-button,
.button.is-focus.budget__card__prevote-explore-button,
.button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button,
.button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.button.is-hover.budget__card__prevote-explore-button svg,
.button.is-focus.budget__card__prevote-explore-button svg,
.button:not([disabled]):not([class*=button__text]):not(label):hover.budget__card__prevote-explore-button svg,
.button:not([disabled]):not([class*=button__text]):not(label):focus.budget__card__prevote-explore-button svg {
  fill: #fff;
}
.button--social {
  display: flex;
  width: 100%;
  align-items: stretch;
  font-size: 14px;
  line-height: 18px;
}
@media (min-width: 640px) {

  .button--social {
    font-size: 16px;
    line-height: 21px;
  }
}
@media (min-width: 768px) {

  .button--social {
    font-size: 18px;
    line-height: 23px;
  }
}
.button--social__icon {
  display: flex;
  width: 4.4rem;
  align-items: center;
  border-right-width: 1px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.button--social__icon svg {
  margin-left: auto;
  margin-right: auto;
  height: 1.5rem;
  width: 1.5rem;
}
@media (min-width: 640px) {

  .button--social__icon svg {
    height: 2.25rem;
    width: 2.25rem;
  }
}
.button--social__text {
  flex-grow: 1;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.button--social.button--mpassid .button--social__icon {
  max-width: none;
  padding-left: 1rem;
  padding-right: 1rem;
}
.label-required {
  margin-inline-start: 0.5rem;
}
[type=search] {
  outline-offset: 0px;
}
.form-defaults {
  /* text-like inputs */
}
.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) {
  border-radius: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(2 2 3 / 1);
}
@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) {
    border-color: rgb(2 2 3 / var(--tw-border-opacity));
  }
}
.form-defaults input[type=search]:not(.reset-defaults) {
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.form-defaults input[type=search]:not(.reset-defaults) {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
#accordion-panel-filters {
  height: -moz-min-content;
  height: min-content;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
#accordion-panel-filters {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
#accordion-panel-filters input {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
#accordion-panel-filters input {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
#accordion-panel-filters.no-border {
  border-width: 0px;
}
#accordion-trigger-filters {
  border-style: none;
}
@media (min-width: 768px) {

  #accordion-trigger-filters {
    display: none;
  }
}
#accordion-trigger-filters span {
  color: var(--primary);
}
#accordion-trigger-filters svg {
  fill: var(--primary);
}
.accountability__filters-simple {
  height: -moz-min-content;
  height: min-content;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.accountability__filters-simple {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.accountability__filters-simple .filter-container {
  margin-top: 2rem;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.accountability__filters-simple .filter-container {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.accountability__filters-simple .filter-container-search {
  border-radius: 0px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(2 2 3 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.accountability__filters-simple .filter-container-search {
    border-color: rgb(2 2 3 / var(--tw-border-opacity));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.filter span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.filter span {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.filter span::first-letter {
  text-transform: uppercase;
}
.filter-search {
  border-radius: 0px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(2 2 3 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.filter-search {
    border-color: rgb(2 2 3 / var(--tw-border-opacity));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.filter-container {
  margin-top: 0.5rem;
  border-radius: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.filter-container {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
  }
}
.filter-container__title {
  font-family: Raleway, ui-sans-serif, sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: block;
}
.filter-container [data-controls*=panel] > span {
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.filter-container [data-controls*=panel] > span {
    color: rgb(2 2 3 / 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: transparent;
}
.datefilter-dropdown {
  position: relative;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(2 2 3 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 0.25rem;
  font-size: 16px;
  line-height: 21px;
}
@supports (color: rgb(0 0 0 / 0)) {
.datefilter-dropdown {
    border-color: rgb(2 2 3 / var(--tw-border-opacity));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
@media (min-width: 768px) {

  .datefilter-dropdown {
    justify-content: center;
  }
}
.active-filter {
  margin-right: 0.25rem;
}
.dropdown-menu-process-date {
  position: absolute;
  top: 100%;
  z-index: 50;
  width: 14rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.dropdown-menu-process-date {
    border-color: rgb(243 244 247 / var(--tw-border-opacity));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.dropdown-menu-process-date .filter label {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 14px;
  line-height: 18px;
  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: 200ms;
}
.dropdown-menu-process-date .filter input:checked + span {
  font-weight: 700;
  text-decoration-line: underline;
}
.dropdown-menu-process-date .filter span + span {
  display: none;
}
.dropdown-menu-process-date .filter input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.accordion-trigger button[aria-expanded=true] .accordion-trigger-arrow {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) 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));
}
.accordion-trigger-arrow {
  margin-left: 0.75rem;
  height: 1.5rem;
  width: 1.5rem;
}
.register__separator {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  line-height: 26px;
}
.register__separator__text {
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .register__separator__text {
    font-size: 18px;
    line-height: 23px;
  }
}
.register__separator svg {
  height: 2rem;
  width: 2rem;
  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-bottom: 0.25rem;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
#session_new_user .form__wrapper label:not(.form__wrapper-checkbox-label),
#session_new_user .form__wrapper-block label:not(.form__wrapper-checkbox-label) {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}
#session_new_user .form__wrapper {
  gap: 1.5rem;
}
#session_new_user .form__wrapper input {
  border-radius: 0px;
}
#session_new_user .form__wrapper-block {
  border-style: none;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
#session_new_user .form__wrapper-block button {
  --tw-bg-opacity: 1;
  background-color: rgb(0 43 160 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
#session_new_user .form__wrapper-block button {
    background-color: rgb(0 43 160 / var(--tw-bg-opacity));
  }
}
#session_new_user .login__links {
  border-style: none;
}
.comment__opinion-container {
  flex-direction: column;
}
@media (min-width: 768px) {

  .comment__opinion-container {
    flex-direction: row;
  }
}
.add-comment {
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
  padding: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.add-comment {
    background-color: rgb(242 252 253 / var(--tw-bg-opacity));
  }
}
.homepage-content_block:nth-child(even) {
  --tw-bg-opacity: 1;
  background-color: rgb(246 248 250 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.homepage-content_block:nth-child(even) {
    background-color: rgb(246 248 250 / var(--tw-bg-opacity));
  }
}
.homepage-content_block.custom-hero {
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
  padding-bottom: 3rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.homepage-content_block.custom-hero {
    background-color: rgb(242 252 253 / var(--tw-bg-opacity));
  }
}
@media (min-width: 768px) {

  .homepage-content_block.custom-hero {
    padding-top: 1.25rem;
    padding-bottom: 2.25rem;
  }
}
.homepage-content_block.py-homepage {
  padding-top: 3.65rem;
  padding-bottom: 3.65rem;
}
.participatory-space__container .content-block + .content-block {
  padding-bottom: 0px;
}
.intro-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {

  .intro-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 640px) {

    .intro-container {
      max-width: 640px;
    }
  }

  @media (min-width: 768px) {

    .intro-container {
      max-width: 768px;
    }
  }

  @media (min-width: 1024px) {

    .intro-container {
      max-width: 1024px;
    }
  }

  @media (min-width: 1202px) {

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

  .intro-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 1280px) {

  .intro-container {
    align-items: center;
  }
}
.intro-text {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

  .intro-text {
    max-width: 1024px;
  }
}
@media (min-width: 1202px) {

  .intro-text {
    max-width: 1202px;
  }
}
.intro-text > :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));
}
@media (min-width: 768px) {

  .intro-text {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 1024px) {

  .intro-text {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1280px) {

  .intro-text {
    margin-top: 1rem;
  }
}
.intro-image {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {

  .intro-image {
    margin-bottom: 0px;
  }
}
.intro-image img {
  width: 100%;
}
@media (min-width: 768px) {

  .intro-image img {
    max-width: 100%;
  }
}
.content-block__description.editor-content .rich-text-display p {
  font-size: 16px;
  line-height: 21px;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.content-block__description.editor-content .rich-text-display p {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.instructions {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {

  .instructions {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
  }
}
@media (min-width: 1280px) {

  .instructions {
    margin-bottom: 3rem;
  }
}
.instructions .instructions__item {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {

  .instructions .instructions__item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    flex-basis: 50%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {

  .instructions .instructions__item {
    flex-basis: 25%;
  }
}
.instructions .instructions__item__title {
  font-family: BioRhyme, serif;
  font-size: 22px;
  line-height: 29px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .instructions .instructions__item__title {
    font-size: 24px;
    line-height: 31px;
  }
}
.instructions .instructions__item__title {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  text-align: center;
}
.infolift {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

  .infolift {
    max-width: 1024px;
  }
}
@media (min-width: 1202px) {

  .infolift {
    max-width: 1202px;
  }
}
.infolift__content {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.infolift__content :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.infolift__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;
}
.infolift__content :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 700;
}
.infolift__content :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 700;
}
.infolift__content :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.infolift__content :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.infolift__content :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.infolift__content :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.infolift__content :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.infolift__content :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.infolift__content :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.infolift__content :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.infolift__content :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.infolift__content :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.infolift__content :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.infolift__content :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.infolift__content :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.infolift__content :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.infolift__content :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.infolift__content :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.infolift__content :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  margin-top: 1.25em;
}
.infolift__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;
}
.infolift__content :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}
.infolift__content :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.infolift__content :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.infolift__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;
}
.infolift__content :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.infolift__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;
}
.infolift__content :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.infolift__content :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.infolift__content :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.infolift__content :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.infolift__content :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.infolift__content :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.infolift__content :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.infolift__content :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.infolift__content :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  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-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.infolift__content :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 700;
  font-size: 0.875em;
}
.infolift__content :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.infolift__content :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.infolift__content :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.infolift__content :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.infolift__content :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.infolift__content :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.infolift__content :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.infolift__content :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.infolift__content :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.infolift__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-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.infolift__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;
}
.infolift__content :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.infolift__content :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.infolift__content :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.infolift__content :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.infolift__content :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.infolift__content :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.infolift__content :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.infolift__content :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.infolift__content :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.infolift__content :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.infolift__content :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.infolift__content :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.infolift__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;
}
.infolift__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;
}
.infolift__content :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.infolift__content :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.infolift__content :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.infolift__content :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.infolift__content :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.infolift__content :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.infolift__content :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.infolift__content :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.infolift__content :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.infolift__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;
}
.infolift__content :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.infolift__content :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.infolift__content :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.infolift__content :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.infolift__content :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.infolift__content :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.infolift__content :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.infolift__content :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.infolift__content :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.infolift__content :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.infolift__content :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.infolift__content :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.infolift__content :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.infolift__content :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.infolift__content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) {

  .infolift__content {
    max-width: 34rem;
  }
}
.participatory-space__hero {
  --tw-backdrop-brightness: brightness(1);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) brightness(1) 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(1) 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);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

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

  .participatory-space__hero {
    max-width: 1202px;
  }
}
.participatory-space__hero {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {

  .participatory-space__hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.participatory-space__hero-text {
  width: 100%;
}
.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-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 1rem;
  text-align: left;
}
@media (min-width: 768px) {

  .participatory-space__hero-text a + a {
    margin-left: 1.5rem;
  }
}
.participatory-space__hero-slogan {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.participatory-space__hero-slogan {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.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;
  }
}
@media (min-width: 1202px) {

  .participatory-space__container > :not([id^=html-block]):not([id^=hero]):not([id^=floating-helper]) {
    max-width: 1202px;
  }
}
.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: 700;
}
.participatory-space__container > [id^=html-block] :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 700;
}
.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-inline-start: 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-inline-start: 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: 700;
  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: 700;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 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: 800;
  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: 700;
  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: 700;
  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(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.participatory-space__container > [id^=html-block] :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  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-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 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: 700;
  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-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 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;
  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: 700;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 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(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.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(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-inline-start: 0.375em;
}
.participatory-space__container > [id^=html-block] :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 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 > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.participatory-space__container > [id^=html-block] :where(.prose > ol > li > p: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-inline-start: 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-inline-start: 0;
}
.participatory-space__container > [id^=html-block] :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 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-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 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-inline-start: 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-inline-end: 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: 21px;
  --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: 700;
  --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;
}
#dropdown-menu-participatory-space {
  margin-left: 0px;
  margin-right: 0px;
}
@media (min-width: 768px) {

  #dropdown-menu-participatory-space {
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }
}
#floating-helper-tip {
  display: none;
}
.component-background {
  margin-bottom: 2.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@supports (color: rgb(0 0 0 / 0)) {
.component-background {
    background-color: rgb(242 252 253 / var(--tw-bg-opacity));
  }
}
.component-background-color {
  --tw-bg-opacity: 1;
  background-color: rgb(242 252 253 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.component-background-color {
    background-color: rgb(242 252 253 / var(--tw-bg-opacity));
  }
}
.accountability__project-aside {
  background-color: transparent !important;
}
.accountability__status-simple_title {
  font-size: 20px;
  line-height: 26px;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.accountability__status-simple_title {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.accountability__status-simple_value {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.accountability__status-simple_value {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .meeting-list__map {
    margin-top: 0px;
    margin-left: 0px;
  }
}
.simple-map {
  aspect-ratio: 1 / 1;
}
@media (min-width: 768px) {

  .simple-map {
    aspect-ratio: 21/9;
  }
}
.simple-map+* {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {

  .simple-map+* {
    margin-top: 3rem;
  }
}
.simple-map>* {
  height: 100%;
}
.record-action-container {
  margin-left: 2rem;
  margin-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.record-action-container > * {
  width: 100%;
}
.record-action-container a {
  gap: 0.5rem;
  font-size: 18px;
  line-height: 23px;
}
.record-action-container a:not([class*="button\_\_text"]) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.record-action-container a {
  margin-top: 0px;
}
.action-divider {
  position: relative;
}
.action-divider::before {
  position: absolute;
  left: 0px;
  right: 0px;
  height: 1px;
  --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)) {
.action-divider::before {
    background-color: rgb(2 2 3 / var(--tw-bg-opacity));
  }
}
.listing-back-link {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

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

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

  .listing-back-link {
    max-width: 1024px;
  }
}
@media (min-width: 1202px) {

  .listing-back-link {
    max-width: 1202px;
  }
}
.listing-back-link {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding-top: 1.5rem;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: var(--primary);
}
.listing-back-link a {
  grid-column: 1 / -1;
}
.steps {
  --step-color: #cacaca;
}
.steps h2 {
  margin-top: 0px;
}
.steps__list {
  position: relative;
  margin-top: 0px;
  list-style-type: none;
}
.steps__list-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.steps__list-container > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(239 239 239 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.steps__list-container > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(239 239 239 / var(--tw-divide-opacity));
  }
}
@media (min-width: 768px) {

  .steps__list-container {
    flex-direction: row;
    gap: 0px;
  }

  .steps__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)));
  }
}
.steps__list-container>*:first-child {
  padding-left: 0px;
}
.steps__list-container>*:last-child {
  padding-right: 0px;
}
@media (min-width: 768px) {

  .steps__list-container>* {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.steps__list > li {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-inline-start: 0px;
}
.steps__list > li:last-child .steps__step {
  padding-bottom: 0px;
}
.steps__list > li:last-child .steps__step::before {
  display: none;
}
.steps__step {
  display: flex;
  padding-bottom: 1.25rem;
}
.steps__step::before {
  position: absolute;
  left: 1.5rem;
  height: 100%;
  width: 1px;
  background-color: var(--step-color);
  --tw-content: "";
  content: "";
  content: var(--tw-content);
}
@media (min-width: 768px) {

  .steps__step::before {
    left: 2.2rem;
  }
}
.steps__step__number {
  z-index: 10;
  display: flex;
  height: 3rem;
  width: 3rem;
  flex: 0 1 auto;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 2px;
  border-color: var(--step-color);
  background-color: var(--step-color);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  --tw-numeric-figure: lining-nums;
  font-feature-settings: var(--tw-ordinal) var(--tw-slashed-zero) lining-nums var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  font-feature-settings: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) lining-nums var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.steps__step__number {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .steps__step__number {
    height: 4.4rem;
    width: 4.4rem;
    font-size: 2rem;
  }
}
.steps__step__content {
  margin-left: 1rem;
  display: block;
}
@media (min-width: 640px) {

  .steps__step__content {
    margin-left: 1.75rem;
  }
}
.steps__step__content .editor-content {
  margin-top: 0.75rem;
  font-size: 16px;
  line-height: 21px;
}
.steps__step__title .heading {
  font-family: BioRhyme, serif;
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
}
@media (min-width: 768px) {

  .steps__step__title .heading {
    font-size: 28px;
    line-height: 36px;
  }
}
.steps__step__title .heading {
  margin-top: 0px;
  margin-bottom: 0px;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.steps__step__title .heading {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.steps__step__dates {
  white-space: nowrap;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(2 2 3 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.steps__step__dates {
    color: rgb(2 2 3 / var(--tw-text-opacity));
  }
}
.steps__step__note {
  font-size: 14px;
  line-height: 18px;
  font-style: italic;
}
.steps__step.is-active .steps__step__number {
  border-color: var(--primary);
  background-color: var(--primary);
  font-size: 32px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.steps__step.is-active .steps__step__number {
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.steps__step.is-active .steps__step__content {
  margin-top: 0px;
}
.steps__step.is-future .steps__step__number {
  border-color: var(--primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}
@supports (color: rgb(0 0 0 / 0)) {
.steps__step.is-future .steps__step__number {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
.layout-main__section .proposal-list__map {
  margin-left: 0px;
  margin-top: 0px;
}
@media (min-width: 768px) {
  .md\:h1 {
    font-family: BioRhyme, serif;
    font-size: 36px;
    line-height: 47px;
    font-weight: 700;
  }
  @media (min-width: 768px) {

    .md\:h1 {
      font-size: 48px;
      line-height: 62px;
    }
  }
  .md\:h2 {
    font-family: BioRhyme, serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
  }
  @media (min-width: 768px) {

    .md\:h2 {
      font-size: 36px;
      line-height: 47px;
    }
  }
  .md\:h3 {
    font-family: BioRhyme, serif;
    font-size: 24px;
    line-height: 31px;
    font-weight: 700;
  }
  @media (min-width: 768px) {

    .md\:h3 {
      font-size: 28px;
      line-height: 36px;
    }
  }
  .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: 26px;
  }
  .md\:button__xl:not([class*="button\_\_text"]) {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .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;
  }
}
@media (min-width: 1024px) {
  .lg\:button__lg {
    gap: 0.5rem;
    font-size: 18px;
    line-height: 23px;
  }
  .lg\:button__lg:not([class*="button\_\_text"]) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.first\:mt-0:first-child {
  margin-top: 0px;
}
.first\:pl-0:first-child {
  padding-left: 0px;
}
.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;
}
.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 (max-width: 439px) {

  .max-\[439px\]\:flex-col {
    flex-direction: column;
  }

  .max-\[439px\]\:gap-2 {
    gap: 0.5rem;
  }
}
@media (max-width: 391px) {

  .max-\[391px\]\:pb-1\.5 {
    padding-bottom: 0.375rem;
  }
}
@media (min-width: 640px) {

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

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:text-lg {
    font-size: 18px;
    line-height: 23px;
  }

  @media not all and (min-width: 1024px) {

    .sm\:max-lg\:hidden {
      display: none;
    }
  }
}
@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\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-start-2 {
    grid-column-start: 2;
  }

  .md\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .md\:mx-3\.5 {
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

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

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

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

  .md\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .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\:inline {
    display: inline;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-6 {
    height: 1.5rem;
  }

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

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

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

  .md\:w-3\/6 {
    width: 50%;
  }

  .md\:w-4\/6 {
    width: 66.666667%;
  }

  .md\:w-6 {
    width: 1.5rem;
  }

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

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

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

  .md\:w-full {
    width: 100%;
  }

  .md\:w-min {
    width: -moz-min-content;
    width: min-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\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

  .md\:flex-col {
    flex-direction: column;
  }

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

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

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

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-0 {
    gap: 0px;
  }

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

  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - 0));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * 0);
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .md\: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));
  }

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

  .md\:break-normal {
    overflow-wrap: normal;
    word-break: normal;
  }

  .md\:border-r {
    border-right-width: 1px;
  }

  .md\:p-0 {
    padding: 0px;
  }

  .md\:p-4 {
    padding: 1rem;
  }

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

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

  .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\:text-left {
    text-align: left;
  }

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

  .md\:text-2xl {
    font-size: 22px;
    line-height: 29px;
  }

  .md\:text-5xl {
    font-size: 36px;
    line-height: 47px;
  }

  .md\:text-\[28px\] {
    font-size: 28px;
  }

  .md\:text-lg {
    font-size: 18px;
    line-height: 23px;
  }

  .md\:text-md {
    font-size: 16px;
    line-height: 21px;
  }

  .md\:text-xl {
    font-size: 20px;
    line-height: 26px;
  }

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

  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

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

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

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

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

  .lg\:w-4\/6 {
    width: 66.666667%;
  }

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

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

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

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

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:gap-10 {
    gap: 2.5rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - 0));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * 0);
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:text-center {
    text-align: center;
  }
}
@media (min-width: 1280px) {

  .xl\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.\[\&\>\*\]\: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-\[--primary\]>a {
  color: var(--primary);
}
.\[\&\>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-dce3ac57.css.map*/