/**
 * Styles specifically for the news app within the broader project
 */

/* ---- Search News Articles ----------------------------------------------------------- */
/* NOTE: In the long term this should probably be moved to the news app css.*/

.site-search {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 2.125rem;
    padding: 0 0.25rem 0 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

/* md breakpoint in tailwind */
@media (min-width: 768px) {
    .site-search {
        /* Pushes the box to the far right; the tags stay packed against the left. */
        margin-right: 0;
        margin-left: auto;
    }
}

.site-search:focus-within {
    border-color: #ffffff;
}

.site-search-input {
    width: 11rem;
    height: 100%;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.85rem;
    color: #ffffff;
}

.site-search-input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

/*
 * `<input type="search">` is not a plain text box: WebKit/Blink (Safari, Chrome,
 * Edge) inject two extra UI parts into the field's shadow DOM that we cannot
 * reach any other way. Both are non-standard vendor pseudo-elements - Firefox
 * implements neither, so these two rules are simply inert there.
 *
 *   ::-webkit-search-cancel-button  the small grey "x" that appears at the right
 *                                   of the field once it has text. We drop it
 *                                   because it would sit between our text and
 *                                   the lens button, giving the pill two
 *                                   competing icons.
 *   ::-webkit-search-decoration     a legacy Safari spacer reserved at the left
 *                                   edge of the field. It renders as a few stray
 *                                   pixels that break our left padding.
 *
 * `-webkit-appearance: none` is what actually strips a native control's built-in
 * rendering; the unprefixed `appearance` has no effect on a -webkit- pseudo-
 * element, so the prefixed property is the one doing the work here.
 */
.site-search-input::-webkit-search-cancel-button,
.site-search-input::-webkit-search-decoration {
    -webkit-appearance: none;
}

.site-search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 0.375rem;
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}

.site-search-button .material-icons {
    font-size: 20px;
}

/*
 * Article listings and the article page.
 *
 * The front page opens with a hero block - one lead story beside a stack of
 * secondary stories - and continues into a grid of cards. Tag and search
 * listings reuse the same card and skip the hero.
 *
 * Colours, fonts and metrics come from styles.css; nothing here declares
 * a colour of its own.
 */

/* ---- Page shells ------------------------------------------------------ */

.news-index {
    padding: 2rem 0 4rem;
}

/*
 * The width every listing is held to. The article page uses the narrower
 * `--gp-measure` instead, since a page of running text reads better in a
 * column than a grid of cards does.
 */
.site-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 var(--gp-gutter);
    box-sizing: border-box;
}

/*
 * The article page is a sheet of white laid on the newsprint background, held
 * to a comfortable reading measure rather than the full container width.
 */
.article-detail {
    max-width: calc(var(--gp-measure) + 2 * var(--gp-gutter));
    margin: 2.5rem auto 4rem;
    padding: 2.5rem var(--gp-gutter) 3.5rem;
    background-color: var(--gp-card);
    border: 1px solid var(--gp-rule);
    box-sizing: border-box;
}

/* ---- Section headings ------------------------------------------------- */

/*
 * Used above a tag or search listing, and to divide the hero from the grid that
 * follows it. The rule runs the full width with the label sitting on top of it.
 */
.section-heading {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 0 0 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--gp-ink);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-heading-query {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gp-muted);
}

.hero + .section-heading {
    margin-top: 3rem;
}

/* ---- Card ------------------------------------------------------------- */

/*
 * One card serves the hero lead, the two secondary stories and the grid below;
 * the blocks that use it only change its proportions, never its anatomy.
 *
 * Each is a query container so its headline can be sized against the card it
 * sits in rather than against the viewport.
 */
.card {
    display: flex;
    flex-direction: column;
    background-color: var(--gp-card);
    border: 1px solid var(--gp-rule);
    container-type: inline-size;
}

.card-image {
    display: block;
    /* Anchors the image's aspect ratio so the grid does not reflow as each
       rendition arrives. */
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--gp-rule);
}

.card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-image:hover img {
    transform: scale(1.03);
}

.card-body {
    display: flex;
    flex-direction: column;
    /* Pushes the byline to the bottom edge so cards in a row align on it. */
    flex: 1;
    padding: 1.25rem 1.25rem 1.5rem;
}

.card-kickers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

/*
 * Two lines is the budget every headline is held to. Without it a long title is
 * free to set the height of the block it sits in - in the hero that height is
 * shared with the column opposite, so a third line there is paid for by both
 * columns and comes off the images. The `clamp()` floor is the size the cards
 * have always used, so only cards wider than about 430px scale up from it.
 */
.card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 5cqi, 1.6rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-wrap: balance;
}

.card-title a {
    color: var(--gp-ink);
    text-decoration: none;
}

.card-title a:hover {
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.card-intro {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gp-muted);
}

.card-meta {
    margin-top: auto;
    font-size: 0.78rem;
    color: var(--gp-muted);
}

.card-meta .byline {
    font-weight: 600;
    color: var(--gp-ink);
}

/* ---- Hero ------------------------------------------------------------- */

/*
 * The lead beside the stack of secondary stories, both columns exactly as tall
 * as each other. Nothing here states a height: the grid row is sized to
 * whichever column is naturally taller, both columns stretch to meet it, and
 * inside each card the image absorbs whatever slack that leaves. So the block
 * re-balances itself when the type, the padding or the container width change,
 * with no measurement anywhere to keep in step with them.
 *
 * `minmax(0, …)` on both tracks stops a long unbroken headline from pushing a
 * column past its share of the row, which the default `auto` minimum allows.
 */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
    gap: 1.5rem;
}

/* With nothing to sit beside it, the lead takes the whole row. */
.hero.is-lead-only {
    grid-template-columns: minmax(0, 1fr);
}

/*
 * Two rows always, whether or not there are two stories to fill them: a lone
 * secondary card then sits in the top row at exactly the height it would have
 * had beside a sibling, and the hero keeps the height it has on a full day.
 *
 * Plain `1fr` rather than `minmax(0, 1fr)` is deliberate - the `auto` minimum
 * that `1fr` carries is what lets the cards' own heights size the row, and so
 * the hero, in the first place. A `0` minimum would collapse the stack.
 */
.hero-secondary {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

/*
 * `.hero-lead` stretches to the row as a grid item, but a plain block child
 * would not inherit that height; making it a grid container in turn hands the
 * full height down to the card.
 */
.hero-lead {
    display: grid;
}

/*
 * Where the slack between the two columns goes. The body is pinned to its
 * content height - overriding the `flex: 1` the grid cards below want - and the
 * image grows into what is left, cropping through `object-fit`. `aspect-ratio`
 * still gives each image its preferred size, so it decides the shape the block
 * settles into; it just no longer fixes it.
 */
.hero .card-image {
    flex: 1 1 auto;
    min-height: 0;
}

.hero .card-body {
    flex: 0 0 auto;
}

.hero-lead .card {
    border: none;
    background-color: transparent;
}

.hero-lead .card-image {
    aspect-ratio: 4.6 / 2;
}

/*
 * The lead's text sits on a white card pulled up over the foot of its image,
 * inset from the left edge - the overlap is what separates the lead from the
 * cards beside it at a glance.
 */
.hero-lead .card-body {
    position: relative;
    margin: -3.5rem 2.5rem 0 3rem;
    padding: 1.75rem 2rem 1.5rem;
    background-color: var(--gp-card);
}

/* The lead is wide enough to carry a third line without unbalancing the row. */
.hero-lead .card-title {
    font-size: clamp(1.75rem, 5cqi, 2.5rem);
    font-weight: 700;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.hero-lead .card-intro {
    font-size: 1.05rem;
}

/*
 * The hero row is as tall as its tallest column, so everything the secondary
 * cards carry is paid for twice - once per stacked card - while the lead pays
 * for it once. Their intros are what tips that balance: with them the stack
 * wants roughly 950px against the lead's 700 and the lead's image has to
 * stretch to nearly square to keep up. Without them the two columns land within
 * about 70px of each other and the lead settles at a natural 4:3.
 *
 * Only in the two-column hero - once it collapses below, the secondary cards
 * are wide enough to carry an intro again.
 */
@media (width > 900px) {
    .hero-secondary .card-intro {
        display: none;
    }
}

/* ---- Grid of remaining articles --------------------------------------- */

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
    gap: 1.5rem;
}

.no-articles {
    margin: 0;
    padding: 3rem 0;
    color: var(--gp-muted);
    font-style: italic;
}

/* ---- Pagination -------------------------------------------------------- */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.pagination-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gp-accent-dark);
    text-decoration: none;
}

.pagination-link:hover {
    text-decoration: underline;
}

.pagination-link.is-disabled {
    color: #b3b0a8;
    pointer-events: none;
}

.pagination-status {
    font-size: 0.85rem;
    color: var(--gp-muted);
}

/* ---- Article page ------------------------------------------------------ */

.article-kickers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

/*
 * A tag, above the headline it is filed under. Shared by the cards and the
 * article page, which is why it is not scoped to either of the rows above.
 */
.kicker {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gp-accent-dark);
    text-decoration: none;
}

.kicker:hover {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.article-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 2.9rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.85rem;
}

.article-intro {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--gp-muted);
    margin: 0 0 1.25rem;
}

.article-meta {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gp-rule);
    font-size: 0.85rem;
    color: var(--gp-muted);
}

.article-meta .byline {
    font-weight: 600;
    color: var(--gp-ink);
}

/*
 * The hero image is allowed to run out to the sheet's edges, past the reading
 * measure the surrounding text is held to.
 */
.article-hero {
    margin: 1.75rem calc(-1 * var(--gp-gutter)) 0.6rem;
}

.article-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.article-body {
    margin-top: 1.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.article-body h2,
.article-body h3 {
    font-family: var(--font-serif);
    line-height: 1.25;
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.75rem 0 0.5rem;
}

.article-body p {
    margin: 0 0 1.15rem;
}

.article-body a {
    color: var(--gp-accent-dark);
}

.article-body img {
    max-width: 100%;
    height: auto;
}

.article-body blockquote {
    margin: 1.5rem 0;
    padding-left: 1.25rem;
    border-left: 3px solid var(--gp-accent);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--gp-ink);
}

/* ---- Narrower screens -------------------------------------------------- */

/*
 * The hero's two columns stop working long before the phone breakpoint - the
 * secondary cards get too narrow to hold a headline - so it collapses first.
 */
@media (max-width: 900px) {
    .hero,
    .hero.is-lead-only {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-secondary {
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        grid-template-rows: none;
    }
}

@media (max-width: 600px) {
    /* Below this width there is no room either side for the overlap, so the
       lead's text block returns to sitting squarely under its image. */
    .hero-lead .card-body {
        margin: 0;
        padding: 1.25rem 1.25rem 1.5rem;
        border: 1px solid var(--gp-rule);
        border-top: none;
    }

    .hero-lead .card-image {
        aspect-ratio: 16 / 9;
    }

    .article-detail {
        margin: 1.25rem auto 2.5rem;
        padding: 1.75rem var(--gp-gutter) 2.5rem;
    }
}

*, ::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: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::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: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.19 | 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: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, 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]) {
  text-decoration: underline;
  -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 */
  letter-spacing: 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,
input:where([type='button']),
input:where([type='reset']),
input:where([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]:where(:not([hidden="until-found"])) {
  display: none;
}

input:where([type='text']),input:where(:not([type])),input:where([type='email']),input:where([type='url']),input:where([type='password']),input:where([type='number']),input:where([type='date']),input:where([type='datetime-local']),input:where([type='month']),input:where([type='search']),input:where([type='tel']),input:where([type='time']),input:where([type='week']),select:where([multiple]),textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 rgba(0,0,0,0);
}

input:where([type='text']):focus, input:where(:not([type])):focus, input:where([type='email']):focus, input:where([type='url']):focus, input:where([type='password']):focus, input:where([type='number']):focus, input:where([type='date']):focus, input:where([type='datetime-local']):focus, input:where([type='month']):focus, input:where([type='search']):focus, input:where([type='tel']):focus, input:where([type='time']):focus, input:where([type='week']):focus, select:where([multiple]):focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}

::-webkit-datetime-edit {
  display: inline-flex;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

select:where([multiple]),select:where([size]:not([size="1"])) {
  background-image: none;
  background-image: initial;
  background-position: 0 0;
  background-position: initial;
  background-repeat: repeat;
  background-repeat: initial;
  background-size: auto auto;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: inherit;
          print-color-adjust: inherit;
}

input:where([type='checkbox']),input:where([type='radio']) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 rgba(0,0,0,0);
}

input:where([type='checkbox']) {
  border-radius: 0px;
}

input:where([type='radio']) {
  border-radius: 100%;
}

input:where([type='checkbox']):focus,input:where([type='radio']):focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --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: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

input:where([type='checkbox']):checked,input:where([type='radio']):checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

input:where([type='checkbox']):checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {

  input:where([type='checkbox']):checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

input:where([type='radio']):checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {

  input:where([type='radio']):checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

input:where([type='checkbox']):checked:hover,input:where([type='checkbox']):checked:focus,input:where([type='radio']):checked:hover,input:where([type='radio']):checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

input:where([type='checkbox']):indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (forced-colors: active)  {

  input:where([type='checkbox']):indeterminate {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

input:where([type='checkbox']):indeterminate:hover,input:where([type='checkbox']):indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

input:where([type='file']) {
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

input:where([type='file']):focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
    p {
  font-size: 1.4rem;
}

    input {
  margin: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
        border-width: 2px !important;
}

    input[type="file"] {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 247, 1);
  background-color: rgba(245, 245, 247, var(--tw-bg-opacity, 1));
}

    textarea {
  margin: 0.5rem;
  resize: none;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
        border-width: 2px !important;
}

    select {
  margin: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
        border-width: 2px !important;
}

    label {
  margin: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

    /* style list of errors appearing in a form. */
    .errorlist {
  list-style-type: none; /* ensure that errors are not numbered/in bullet points */
}
    .errorlist li {
        /* render errors in small, red text above field */
        margin: 0px;
        width: 100%;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-top: 0.5rem;
        text-align: left;
        font-size: 1rem;
        --tw-text-opacity: 1;
        color: rgba(207, 32, 38, 1);
        color: rgba(207, 32, 38, var(--tw-text-opacity, 1));
    }
.container {
  width: 100%;
}
@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: 1280px) {

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

  .container {
    max-width: 1536px;
  }
}
.form-input,.form-textarea,.form-select,.form-multiselect {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 rgba(0,0,0,0);
}
.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}
.form-input::placeholder,.form-textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}
.form-input::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
.form-input::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}
.form-input::-webkit-datetime-edit {
  display: inline-flex;
}
.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
.form-select:where([size]:not([size="1"])) {
  background-image: none;
  background-image: initial;
  background-position: 0 0;
  background-position: initial;
  background-repeat: repeat;
  background-repeat: initial;
  background-size: auto auto;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: inherit;
          print-color-adjust: inherit;
}
.form-checkbox,.form-radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 rgba(0,0,0,0);
}
.form-checkbox {
  border-radius: 0px;
}
.form-radio {
  border-radius: 100%;
}
.form-checkbox:focus,.form-radio:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --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: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.form-checkbox:checked,.form-radio:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.form-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e");
}
@media (forced-colors: active)  {

  .form-checkbox:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
.form-radio:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e");
}
@media (forced-colors: active)  {

  .form-radio:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
.form-checkbox:checked:hover,.form-checkbox:checked:focus,.form-radio:checked:hover,.form-radio:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}
.form-checkbox:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active)  {

  .form-checkbox:indeterminate {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
.form-checkbox:indeterminate:hover,.form-checkbox:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}
    /* Icon font styles
     *--------------------------------------------------------------
     */

    /* Copied verbatim from the stylesheet fonts.googleapis.com used to serve for
     * these two families, with the shared declarations hoisted out. The 'liga'
     * feature setting is what turns the glyph name in the span into the icon.
     * These live in @layer components so that the Tailwind size utilities used
     * alongside them in templates (text-xl, text-3xl) still win over the 24px.
     */
    .material-icons,
    .material-symbols-outlined {
        font-weight: normal;
        font-style: normal;
        font-size: 24px;
        line-height: 1;
        letter-spacing: normal;
        text-transform: none;
        display: inline-block;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        -webkit-font-feature-settings: 'liga';
        -webkit-font-smoothing: antialiased;
    }

    .material-icons {
        font-family: 'Material Icons';
    }

    .material-symbols-outlined {
        font-family: 'Material Symbols Outlined';
    }

    .link-light {
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
  text-decoration-line: underline;
}

    .link-light:hover {
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, 1);
  color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
}

    .link-medium-gray {
  --tw-text-opacity: 1;
  color: rgba(100, 116, 139, 1);
  color: rgba(100, 116, 139, var(--tw-text-opacity, 1));
  text-decoration-line: underline;
}

    .link-medium-gray:hover {
  --tw-text-opacity: 1;
  color: rgba(29, 29, 31, 1);
  color: rgba(29, 29, 31, var(--tw-text-opacity, 1));
}

    .link-dark-gray {
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
  text-decoration-line: underline;
}

    .link-dark-gray:hover {
  --tw-text-opacity: 1;
  color: rgba(29, 29, 31, 1);
  color: rgba(29, 29, 31, var(--tw-text-opacity, 1));
}

    .red-button {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-content: center;
  justify-items: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgba(207, 32, 38, 1);
  background-color: rgba(207, 32, 38, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
}

    .red-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(184, 39, 44, 1);
  background-color: rgba(184, 39, 44, var(--tw-bg-opacity, 1));
}

    .red-button:focus {
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(245, 245, 247, 1);
  border-color: rgba(245, 245, 247, var(--tw-border-opacity, 1));
}

    .md-red-button {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-content: center;
  justify-items: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgba(207, 32, 38, 1);
  background-color: rgba(207, 32, 38, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
}

    .md-red-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(184, 39, 44, 1);
  background-color: rgba(184, 39, 44, var(--tw-bg-opacity, 1));
}

    .md-red-button:focus {
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(245, 245, 247, 1);
  border-color: rgba(245, 245, 247, var(--tw-border-opacity, 1));
}

    .md-red-button {
  height: 5rem;
  width: 7rem;
  font-size: 1.4rem;
}

    .radio-button {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-content: center;
  justify-items: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgba(207, 32, 38, 1);
  background-color: rgba(207, 32, 38, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
}

    .radio-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(184, 39, 44, 1);
  background-color: rgba(184, 39, 44, var(--tw-bg-opacity, 1));
}

    .radio-button:focus {
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(245, 245, 247, 1);
  border-color: rgba(245, 245, 247, var(--tw-border-opacity, 1));
}

    .radio-button {
  height: 5rem;
  font-size: 1.4rem;
  width: 8rem;
  --tw-border-opacity: 1 !important;
  border-color: rgba(245, 245, 247, 1) !important;
  border-color: rgba(245, 245, 247, var(--tw-border-opacity, 1)) !important;
        border-width: 1px !important;
}

    .button-radio-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

    .accordion-group {
  width: 100%;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}

    .accordion-button {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 0.375rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

    .accordion-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, 1);
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity, 1));
}

    .accordion-button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --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: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity, 1));
  --tw-ring-offset-width: 2px;
}

    .accordion-button {
  text-align: left;
  font-size: 1.11rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

    .accordion-content {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem;
  font-size: 1.4rem;
  transition-property: height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

    /* Styles for home page and similar pages
     *--------------------------------------------------------------
     */
    .outer-content-container {
  display: flex;
  height: 100%;
  flex: 1 1 0%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 0.5rem;
}

    .content-container {
  margin: 0.25rem;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 80rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
}

    .feature-grid {
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 24rem;
  max-width: 80rem;
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 247, 1);
  background-color: rgba(245, 245, 247, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(29, 29, 31, 1);
  color: rgba(29, 29, 31, var(--tw-text-opacity, 1));
}

    @media (min-width: 1024px) {

  .feature-grid {
    margin-bottom: auto;
    width: 100%;
  }
}

    .feature-grid {
  display: grid;
  grid-auto-flow: row;
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

    @media (min-width: 1024px) {

  .feature-grid {
    grid-auto-flow: column;
    row-gap: 0px;
  }
}

    .feature-grid {
  justify-items: center;
}

    .feature-grid > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(2px * (1 - 0));
  border-top-width: calc(2px * (1 - var(--tw-divide-y-reverse)));
  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: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-divide-opacity, 1));
}

    .feature-grid {
  border-radius: 0.25rem;
}

    @media (min-width: 1024px) {

  .feature-grid > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(0px * (1 - 0));
    border-top-width: calc(0px * (1 - var(--tw-divide-y-reverse)));
    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));
  }
}

    .feature {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  justify-items: center;
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

    .feature-title {
  margin: 0px;
  height: 3.5rem;
  padding: 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

    .feature-text {
  margin: 0.5rem;
}

    @media (min-width: 1024px) {

  .feature-text {
    height: 12rem;
  }
}

    .feature-button {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-content: center;
  justify-items: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgba(207, 32, 38, 1);
  background-color: rgba(207, 32, 38, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
}

    .feature-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(184, 39, 44, 1);
  background-color: rgba(184, 39, 44, var(--tw-bg-opacity, 1));
}

    .feature-button:focus {
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(245, 245, 247, 1);
  border-color: rgba(245, 245, 247, var(--tw-border-opacity, 1));
}

    .feature-button {
  margin-bottom: 1rem;
  height: 3.5rem;
  width: 12rem;
  text-wrap: wrap;
  font-family: Oswald;
  font-size: 1.4rem;
}

    /* Navbar styles
     *---------------------------------------------------------------
     */

    .nav-logo {
  height: 3.5rem;
  width: 7rem;
}

    .nav-link {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
  color: rgba(245, 245, 247, 0.8);
}

    .nav-link:hover {
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
}

    .navbar-header {
  position: sticky;
  top: 0px;
  z-index: 50;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  flex-wrap: wrap;
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: 1.11rem;
}

    @media (min-width: 768px) {

  .navbar-header {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

    .footer {
  position: sticky;
  top: 0px;
  z-index: 50;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  --tw-bg-opacity: 1;
  background-color: rgba(29, 29, 31, 1);
  background-color: rgba(29, 29, 31, var(--tw-bg-opacity, 1));
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.11rem;
}

    @media (min-width: 768px) {

  .footer {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

    .navbar {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(29, 29, 31, 1);
  background-color: rgba(29, 29, 31, var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
}

    @media (min-width: 768px) {

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

    @media (min-width: 1024px) {

  .navbar {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

    /* Form styles
     *---------------------------------------------------------------
     */

    .form-outer-container {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

    .form-container {
  width: 100%;
  max-width: 36rem;
  border-radius: 0.25rem;
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}

    .form {
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: center;
}

    .form-title {
  text-align: center;
  font-size: 2.188rem;
  font-weight: 700;
}

    .form-button-group {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0.5rem;
}

    .form-button {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-content: center;
  justify-items: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgba(207, 32, 38, 1);
  background-color: rgba(207, 32, 38, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
}

    .form-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(184, 39, 44, 1);
  background-color: rgba(184, 39, 44, var(--tw-bg-opacity, 1));
}

    .form-button:focus {
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(245, 245, 247, 1);
  border-color: rgba(245, 245, 247, var(--tw-border-opacity, 1));
}

    .form-button {
  width: 100%;
  font-size: 1.4rem;
}

    .form p {
  font-size: 1rem;
}

    .form-link-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
}

    .form-link-group p {
  font-size: 1.11rem;
}

    .form select:invalid {
        color: rgb(107, 114, 128);
    }

    /* Toast (django messages) styles
     *---------------------------------------------------------------
     */

    .alert {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

    .hs-removing.alert {
  --tw-translate-x: 1.25rem;
  transform: translate(1.25rem, 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));
  opacity: 0;
}

    .alert {
  margin: 0.25rem;
  max-width: 20rem;
  border-radius: 0.375rem;
  border-width: 1px;
  text-align: left;
  font-size: 1.11rem;
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(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 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 20rem;
}

    @media (min-width: 768px) {

  .alert {
    margin-right: 0.5rem;
    margin-left: auto;
  }
}

    .alert-dismiss-button {
  display: inline-flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-size: 1.11rem;
  color: rgba(245, 245, 247, 0.5);
}

    .alert-dismiss-button:hover {
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
}

    .alert-danger {
  --tw-bg-opacity: 1;
  background-color: rgba(207, 32, 38, 1);
  background-color: rgba(207, 32, 38, var(--tw-bg-opacity, 1));
}

    .alert-warning {
  --tw-bg-opacity: 1;
  background-color: rgba(234, 179, 8, 1);
  background-color: rgba(234, 179, 8, var(--tw-bg-opacity, 1));
}

    .alert-success {
  --tw-bg-opacity: 1;
  background-color: rgba(34, 197, 94, 1);
  background-color: rgba(34, 197, 94, var(--tw-bg-opacity, 1));
}

    .alert-info {
  --tw-bg-opacity: 1;
  background-color: rgba(59, 130, 246, 1);
  background-color: rgba(59, 130, 246, var(--tw-bg-opacity, 1));
}

    .alert-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(29, 29, 31, 1);
  background-color: rgba(29, 29, 31, var(--tw-bg-opacity, 1));
}

    .alert-light {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 247, 1);
  background-color: rgba(245, 245, 247, var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgba(29, 29, 31, 1);
  color: rgba(29, 29, 31, var(--tw-text-opacity, 1));
}

    /* CSS-only tooltip: https://blog.logrocket.com/creating-beautiful-tooltips-with-only-css/ */
    .tooltip {
        position: relative; /* making the .tooltip span a container for the tooltip text */
    }

    .tooltip:before {
        content: attr(data-tooltip); /* here's the magic */
        position: absolute;

        /* basic styles */

        border-radius: 0.25rem;

        --tw-bg-opacity: 1;

        background-color: rgba(31, 41, 55, 1);

        background-color: rgba(31, 41, 55, var(--tw-bg-opacity, 1));

        padding: 0.25rem;

        padding-left: 0.5rem;

        padding-right: 0.5rem;

        font-size: 1.11rem;

        --tw-text-opacity: 1;

        color: rgba(245, 245, 247, 1);

        color: rgba(245, 245, 247, var(--tw-text-opacity, 1));

        opacity: 0;

        white-space: nowrap;

        text-align: center;

        display: none; /* hide by default */
    }

    .tooltip-top:before {
        /* Reset values which may interfere with positioning of tooltip
         * Useful when we use multiple tooltip-* classes with breakpoints.
         */
        top: auto;
        top: initial;
        right: auto;
        right: initial;
        margin: 0;
        margin: initial;

        /* horizontally center */
        left: 50%;
        transform: translateX(-50%);

        /* move to top */
        bottom: 100%;
        margin-bottom: 0.25rem;
    }

    .tooltip-left:before {
        /* Reset values which may interfere with positioning of tooltip
         * Useful when we use multiple tooltip-* classes with breakpoints.
         */
        bottom: auto;
        bottom: initial;
        left: auto;
        left: initial;
        margin: 0;
        margin: initial;

        /* vertically center */
        top: 50%;
        transform: translateY(-50%);

        /* move to left */
        right: 100%;
        margin-right: 0.25rem;
    }

    .tooltip-right:before {
        /* Reset values which may interfere with positioning of tooltip
         * Useful when we use multiple tooltip-* classes with breakpoints.
         */
        bottom: auto;
        bottom: initial;
        right: auto;
        right: initial;
        margin: 0;
        margin: initial;

        /* vertically center */
        top: 50%;
        transform: translateY(-50%);

        /* move to right */
        left: 100%;
        margin-left: 0.25rem;
    }

    .tooltip:hover:before {
        display: block;
        opacity: 1;
        transition-property: opacity;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
    }

    /* Styles for a list which has nested numbering for each item
     *--------------------------------------------------------------
     */
    .list-nested-decimal {
        counter-reset: item;
        list-style-type: none;
    }

    .list-nested-decimal > li {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
        counter-increment: item;
}

    /* this pseudo element is where the number gets inserted. */
    .list-nested-decimal > li::before {
        content: counters(item, '.') ' '
    }

    .list-nested-decimal-hidden {
        counter-reset: item;
        list-style-type: none;
    }

    .list-nested-decimal-hidden > li {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
        counter-increment: item;
}

    .list-nested-decimal-hidden > li::before {
        content: counters(item, '.') ' ';
        content: none
    }

    /* Animations
     * --------------------------------------------------------------
     */

    /* Animation for dropdowns to slide down out of dropdown button */
    @keyframes animateDropdown {
        from {
          transform: translate3d(0, -20px, 0);
          opacity: 0
        }
        to {
          transform: translate3d(0, 0, 0);
          opacity: 1
        }
    }

    /* Default class for a div that can dropdown */
    .dropdown {
        display: none;
        animation: animateDropdown .3s;
    }

    /* Animation for sliding in from the left */
    @keyframes animateSlideFromLeft {
        from {
          transform: translate3d(-20px, 0, 0);
          opacity: 0
        }
        to {
          transform: translate3d(0, 0, 0);
          opacity: 1
        }
    }

    .slide-in-from-left {
        display: none;
        animation: animateSlideFromLeft .3s;
    }

    /* Make background image/colour fade to transparent along a gradient (bottom is transparent)
     * https://stackoverflow.com/questions/19713813/fade-image-to-transparent-like-a-gradient
     */
    .bg-fade-to-transparent-at-b {
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), 95%, rgba(0,0,0,0));
                mask-image: linear-gradient(to bottom, rgba(0,0,0,1), 95%, rgba(0,0,0,0));
    }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.not-sr-only {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.\!fixed {
  position: fixed !important;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.\!relative {
  position: relative !important;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.-inset-1 {
  top: -0.25rem;
  right: -0.25rem;
  bottom: -0.25rem;
  left: -0.25rem;
}
.inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.end-1 {
  right: 0.25rem;
}
.left-0 {
  left: 0px;
}
.start-5 {
  left: 1.25rem;
}
.top-0 {
  top: 0px;
}
.isolate {
  isolation: isolate;
}
.isolation-auto {
  isolation: auto;
}
.z-50 {
  z-index: 50;
}
.z-\[60\] {
  z-index: 60;
}
.float-start {
  float: left;
}
.float-end {
  float: right;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.float-none {
  float: none;
}
.clear-start {
  clear: left;
}
.clear-end {
  clear: right;
}
.clear-left {
  clear: left;
}
.clear-right {
  clear: right;
}
.clear-both {
  clear: both;
}
.clear-none {
  clear: none;
}
.m-0 {
  margin: 0px;
}
.m-1 {
  margin: 0.25rem;
}
.m-2 {
  margin: 0.5rem;
}
.m-3 {
  margin: 0.75rem;
}
.m-4 {
  margin: 1rem;
}
.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.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-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-auto {
  margin-left: auto;
}
.mt-0 {
  margin-top: 0px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.box-border {
  box-sizing: border-box;
}
.box-content {
  box-sizing: content-box;
}
.line-clamp-none {
  overflow: visible;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-line-clamp: none;
}
.\!block {
  display: block !important;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.\!inline {
  display: inline !important;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.inline-table {
  display: inline-table;
}
.table-caption {
  display: table-caption;
}
.table-cell {
  display: table-cell;
}
.table-column {
  display: table-column;
}
.table-column-group {
  display: table-column-group;
}
.table-footer-group {
  display: table-footer-group;
}
.table-header-group {
  display: table-header-group;
}
.table-row-group {
  display: table-row-group;
}
.table-row {
  display: table-row;
}
.flow-root {
  display: flow-root;
}
.grid {
  display: grid;
}
.inline-grid {
  display: inline-grid;
}
.\!contents {
  display: contents !important;
}
.contents {
  display: contents;
}
.list-item {
  display: list-item;
}
.\!hidden {
  display: none !important;
}
.hidden {
  display: none;
}
.h-1 {
  height: 0.25rem;
}
.h-10 {
  height: 2.5rem;
}
.h-14 {
  height: 3.5rem;
}
.h-24 {
  height: 6rem;
}
.h-8 {
  height: 2rem;
}
.h-full {
  height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-2\/5 {
  width: 40%;
}
.w-24 {
  width: 6rem;
}
.w-28 {
  width: 7rem;
}
.w-3\/5 {
  width: 60%;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-48 {
  width: 12rem;
}
.w-8 {
  width: 2rem;
}
.w-80 {
  width: 20rem;
}
.w-96 {
  width: 24rem;
}
.w-\[1\/10\] {
  width: 1/10;
}
.w-\[9\/10\] {
  width: 9/10;
}
.w-\[this-is\\\\\] {
  width: this-is\\;
}
.w-\[this-is\] {
  width: this-is;
}
.w-\[weird-and-invalid\] {
  width: weird-and-invalid;
}
.w-full {
  width: 100%;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-none {
  flex: none;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink {
  flex-shrink: 1;
}
.flex-grow {
  flex-grow: 1;
}
.grow {
  flex-grow: 1;
}
.basis-full {
  flex-basis: 100%;
}
.table-auto {
  table-layout: auto;
}
.table-fixed {
  table-layout: fixed;
}
.caption-top {
  caption-side: top;
}
.caption-bottom {
  caption-side: bottom;
}
.border-collapse {
  border-collapse: collapse;
}
.border-separate {
  border-collapse: separate;
}
.-translate-y-full {
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), -100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\!transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.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));
}
.transform-cpu {
  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-gpu {
  transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) 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-none {
  transform: none;
}
.touch-auto {
  touch-action: auto;
}
.touch-none {
  touch-action: none;
}
.touch-pan-x {
  --tw-pan-x: pan-x;
  touch-action: pan-x var(--tw-pan-y) var(--tw-pinch-zoom);
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}
.touch-pan-left {
  --tw-pan-x: pan-left;
  touch-action: pan-left var(--tw-pan-y) var(--tw-pinch-zoom);
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}
.touch-pan-right {
  --tw-pan-x: pan-right;
  touch-action: pan-right var(--tw-pan-y) var(--tw-pinch-zoom);
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}
.touch-pan-y {
  --tw-pan-y: pan-y;
  touch-action: var(--tw-pan-x) pan-y var(--tw-pinch-zoom);
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}
.touch-pan-up {
  --tw-pan-y: pan-up;
  touch-action: var(--tw-pan-x) pan-up var(--tw-pinch-zoom);
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}
.touch-pan-down {
  --tw-pan-y: pan-down;
  touch-action: var(--tw-pan-x) pan-down var(--tw-pinch-zoom);
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}
.touch-pinch-zoom {
  --tw-pinch-zoom: pinch-zoom;
  touch-action: var(--tw-pan-x) var(--tw-pan-y) pinch-zoom;
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}
.touch-manipulation {
  touch-action: manipulation;
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.select-text {
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}
.select-all {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}
.select-auto {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.resize-none {
  resize: none;
}
.resize-y {
  resize: vertical;
}
.resize-x {
  resize: horizontal;
}
.resize {
  resize: both;
}
.snap-none {
  scroll-snap-type: none;
}
.snap-x {
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
}
.snap-y {
  scroll-snap-type: y var(--tw-scroll-snap-strictness);
}
.snap-both {
  scroll-snap-type: both var(--tw-scroll-snap-strictness);
}
.snap-mandatory {
  --tw-scroll-snap-strictness: mandatory;
}
.snap-proximity {
  --tw-scroll-snap-strictness: proximity;
}
.snap-start {
  scroll-snap-align: start;
}
.snap-end {
  scroll-snap-align: end;
}
.snap-center {
  scroll-snap-align: center;
}
.snap-align-none {
  scroll-snap-align: none;
}
.snap-normal {
  scroll-snap-stop: normal;
}
.snap-always {
  scroll-snap-stop: always;
}
.list-inside {
  list-style-position: inside;
}
.list-outside {
  list-style-position: outside;
}
.list-decimal {
  list-style-type: decimal;
}
.list-lower-alpha {
  list-style-type: lower-alpha;
}
.list-square {
  list-style-type: square;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.appearance-auto {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.break-before-auto {
  page-break-before: auto;
  -moz-column-break-before: auto;
       break-before: auto;
}
.break-before-avoid {
  page-break-before: avoid;
  -moz-column-break-before: avoid;
       break-before: avoid;
}
.break-before-all {
  page-break-before: all;
  -moz-column-break-before: all;
       break-before: all;
}
.break-before-avoid-page {
  page-break-before: avoid;
  -moz-column-break-before: avoid;
       break-before: avoid-page;
}
.break-before-page {
  page-break-before: always;
  -moz-column-break-before: page;
       break-before: page;
}
.break-before-left {
  page-break-before: left;
  -moz-column-break-before: left;
       break-before: left;
}
.break-before-right {
  page-break-before: right;
  -moz-column-break-before: right;
       break-before: right;
}
.break-before-column {
  -moz-column-break-before: column;
       break-before: column;
}
.break-inside-auto {
  page-break-inside: auto;
  -moz-column-break-inside: auto;
       break-inside: auto;
}
.break-inside-avoid {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.break-inside-avoid-page {
  page-break-inside: avoid;
  break-inside: avoid-page;
}
.break-inside-avoid-column {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}
.break-after-auto {
  page-break-after: auto;
  -moz-column-break-after: auto;
       break-after: auto;
}
.break-after-avoid {
  page-break-after: avoid;
  -moz-column-break-after: avoid;
       break-after: avoid;
}
.break-after-all {
  page-break-after: all;
  -moz-column-break-after: all;
       break-after: all;
}
.break-after-avoid-page {
  page-break-after: avoid;
  -moz-column-break-after: avoid;
       break-after: avoid-page;
}
.break-after-page {
  page-break-after: always;
  -moz-column-break-after: page;
       break-after: page;
}
.break-after-left {
  page-break-after: left;
  -moz-column-break-after: left;
       break-after: left;
}
.break-after-right {
  page-break-after: right;
  -moz-column-break-after: right;
       break-after: right;
}
.break-after-column {
  -moz-column-break-after: column;
       break-after: column;
}
.grid-flow-row {
  grid-auto-flow: row;
}
.grid-flow-col {
  grid-auto-flow: column;
}
.grid-flow-dense {
  grid-auto-flow: dense;
}
.grid-flow-row-dense {
  grid-auto-flow: row dense;
}
.grid-flow-col-dense {
  grid-auto-flow: column dense;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.place-content-center {
  align-content: center;
  justify-content: center;
  place-content: center;
}
.place-content-start {
  align-content: start;
  justify-content: start;
  place-content: start;
}
.place-content-end {
  align-content: end;
  justify-content: end;
  place-content: end;
}
.place-content-between {
  align-content: space-between;
  justify-content: space-between;
  place-content: space-between;
}
.place-content-around {
  align-content: space-around;
  justify-content: space-around;
  place-content: space-around;
}
.place-content-evenly {
  align-content: space-evenly;
  justify-content: space-evenly;
  place-content: space-evenly;
}
.place-content-baseline {
  align-content: baseline;
  justify-content: baseline;
  place-content: baseline;
}
.place-content-stretch {
  align-content: stretch;
  justify-content: stretch;
  place-content: stretch;
}
.place-items-start {
  align-items: start;
  justify-items: start;
  place-items: start;
}
.place-items-end {
  align-items: end;
  justify-items: end;
  place-items: end;
}
.place-items-center {
  align-items: center;
  justify-items: center;
  place-items: center;
}
.place-items-baseline {
  align-items: baseline;
  justify-items: baseline;
  place-items: baseline;
}
.place-items-stretch {
  align-items: stretch;
  justify-items: stretch;
  place-items: stretch;
}
.content-normal {
  align-content: normal;
}
.content-center {
  align-content: center;
}
.content-start {
  align-content: flex-start;
}
.content-end {
  align-content: flex-end;
}
.content-between {
  align-content: space-between;
}
.content-around {
  align-content: space-around;
}
.content-evenly {
  align-content: space-evenly;
}
.content-baseline {
  align-content: baseline;
}
.content-stretch {
  align-content: stretch;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-normal {
  justify-content: normal;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}
.justify-stretch {
  justify-content: stretch;
}
.justify-items-start {
  justify-items: start;
}
.justify-items-end {
  justify-items: end;
}
.justify-items-center {
  justify-items: center;
}
.justify-items-stretch {
  justify-items: stretch;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-x-0 {
  -moz-column-gap: 0px;
       column-gap: 0px;
}
.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-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-y-0 {
  row-gap: 0px;
}
.gap-y-1 {
  row-gap: 0.25rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.gap-y-4 {
  row-gap: 1rem;
}
.gap-y-6 {
  row-gap: 1.5rem;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * 0);
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * (1 - 0));
  margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.5rem * calc(1 - 0));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :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 * (1 - 0));
  margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1rem * calc(1 - 0));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-reverse > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 1;
}
.space-x-reverse > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
}
.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 * (1 - 0));
  border-left-width: calc(1px * (1 - 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 * (1 - 0));
  border-left-width: calc(2px * (1 - 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 * (1 - 0));
  border-top-width: calc(1px * (1 - var(--tw-divide-y-reverse)));
  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-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(2px * (1 - 0));
  border-top-width: calc(2px * (1 - var(--tw-divide-y-reverse)));
  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));
}
.divide-y-reverse > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 1;
}
.divide-x-reverse > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 1;
}
.divide-solid > :not([hidden]) ~ :not([hidden]) {
  border-style: solid;
}
.divide-dashed > :not([hidden]) ~ :not([hidden]) {
  border-style: dashed;
}
.divide-dotted > :not([hidden]) ~ :not([hidden]) {
  border-style: dotted;
}
.divide-double > :not([hidden]) ~ :not([hidden]) {
  border-style: double;
}
.divide-none > :not([hidden]) ~ :not([hidden]) {
  border-style: none;
}
.divide-black > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgba(29, 29, 31, 1);
  border-color: rgba(29, 29, 31, var(--tw-divide-opacity, 1));
}
.divide-dark-gray > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgba(31, 41, 55, 1);
  border-color: rgba(31, 41, 55, var(--tw-divide-opacity, 1));
}
.divide-gray > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-divide-opacity, 1));
}
.divide-medium-gray > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgba(100, 116, 139, 1);
  border-color: rgba(100, 116, 139, var(--tw-divide-opacity, 1));
}
.place-self-auto {
  align-self: auto;
  justify-self: auto;
  place-self: auto;
}
.place-self-start {
  align-self: start;
  justify-self: start;
  place-self: start;
}
.place-self-end {
  align-self: end;
  justify-self: end;
  place-self: end;
}
.place-self-center {
  align-self: center;
  justify-self: center;
  place-self: center;
}
.place-self-stretch {
  align-self: stretch;
  justify-self: stretch;
  place-self: stretch;
}
.self-auto {
  align-self: auto;
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.self-center {
  align-self: center;
}
.self-stretch {
  align-self: stretch;
}
.self-baseline {
  align-self: baseline;
}
.justify-self-auto {
  justify-self: auto;
}
.justify-self-start {
  justify-self: start;
}
.justify-self-end {
  justify-self: end;
}
.justify-self-center {
  justify-self: center;
}
.justify-self-stretch {
  justify-self: stretch;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-clip {
  overflow: clip;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overflow-x-clip {
  overflow-x: clip;
}
.overflow-y-clip {
  overflow-y: clip;
}
.overflow-x-visible {
  overflow-x: visible;
}
.overflow-y-visible {
  overflow-y: visible;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.overscroll-auto {
  overscroll-behavior: auto;
}
.overscroll-contain {
  overscroll-behavior: contain;
}
.overscroll-none {
  overscroll-behavior: none;
}
.overscroll-y-auto {
  overscroll-behavior-y: auto;
}
.overscroll-y-contain {
  overscroll-behavior-y: contain;
}
.overscroll-y-none {
  overscroll-behavior-y: none;
}
.overscroll-x-auto {
  overscroll-behavior-x: auto;
}
.overscroll-x-contain {
  overscroll-behavior-x: contain;
}
.overscroll-x-none {
  overscroll-behavior-x: none;
}
.scroll-auto {
  scroll-behavior: auto;
}
.scroll-smooth {
  scroll-behavior: smooth;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.overflow-ellipsis {
  text-overflow: ellipsis;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.text-clip {
  text-overflow: clip;
}
.hyphens-none {
  hyphens: none;
}
.hyphens-manual {
  hyphens: manual;
}
.hyphens-auto {
  hyphens: auto;
}
.whitespace-normal {
  white-space: normal;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre {
  white-space: pre;
}
.whitespace-pre-line {
  white-space: pre-line;
}
.whitespace-pre-wrap {
  white-space: pre-wrap;
}
.whitespace-break-spaces {
  white-space: break-spaces;
}
.text-wrap {
  text-wrap: wrap;
}
.text-nowrap {
  text-wrap: nowrap;
}
.text-balance {
  text-wrap: balance;
}
.text-pretty {
  text-wrap: pretty;
}
.break-normal {
  word-wrap: normal;
  word-break: normal;
}
.break-words {
  word-wrap: break-word;
}
.break-all {
  word-break: break-all;
}
.break-keep {
  word-break: keep-all;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.rounded-e {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.rounded-l {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.rounded-r {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.rounded-s {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.rounded-bl {
  border-bottom-left-radius: 0.25rem;
}
.rounded-br {
  border-bottom-right-radius: 0.25rem;
}
.rounded-ee {
  border-bottom-right-radius: 0.25rem;
}
.rounded-es {
  border-bottom-left-radius: 0.25rem;
}
.rounded-se {
  border-top-right-radius: 0.25rem;
}
.rounded-ss {
  border-top-left-radius: 0.25rem;
}
.rounded-tl {
  border-top-left-radius: 0.25rem;
}
.rounded-tr {
  border-top-right-radius: 0.25rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-x {
  border-left-width: 1px;
  border-right-width: 1px;
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-e {
  border-right-width: 1px;
}
.border-l {
  border-left-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-s {
  border-left-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-solid {
  border-style: solid;
}
.border-dashed {
  border-style: dashed;
}
.border-dotted {
  border-style: dotted;
}
.border-double {
  border-style: double;
}
.border-hidden {
  border-style: hidden;
}
.border-none {
  border-style: none;
}
.border-dark-gray {
  --tw-border-opacity: 1;
  border-color: rgba(31, 41, 55, 1);
  border-color: rgba(31, 41, 55, var(--tw-border-opacity, 1));
}
.bg-\[rgb\(255\2c 0\2c 0\)\] {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 0, 0, 1);
  background-color: rgba(255, 0, 0, var(--tw-bg-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(29, 29, 31, 1);
  background-color: rgba(29, 29, 31, var(--tw-bg-opacity, 1));
}
.bg-blue-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(191, 219, 254, 1);
  background-color: rgba(191, 219, 254, var(--tw-bg-opacity, 1));
}
.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgba(59, 130, 246, 1);
  background-color: rgba(59, 130, 246, var(--tw-bg-opacity, 1));
}
.bg-dark-gray {
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, 1);
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity, 1));
}
.bg-gray {
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, 1);
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity, 1));
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgba(34, 197, 94, 1);
  background-color: rgba(34, 197, 94, var(--tw-bg-opacity, 1));
}
.bg-red {
  --tw-bg-opacity: 1;
  background-color: rgba(207, 32, 38, 1);
  background-color: rgba(207, 32, 38, var(--tw-bg-opacity, 1));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 247, 1);
  background-color: rgba(245, 245, 247, var(--tw-bg-opacity, 1));
}
.bg-opacity-30 {
  --tw-bg-opacity: 0.3;
}
.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}
.bg-none {
  background-image: none;
}
.decoration-slice {
  -webkit-box-decoration-break: slice;
          box-decoration-break: slice;
}
.decoration-clone {
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.box-decoration-slice {
  -webkit-box-decoration-break: slice;
          box-decoration-break: slice;
}
.box-decoration-clone {
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.bg-cover {
  background-size: cover;
}
.bg-fixed {
  background-attachment: fixed;
}
.bg-local {
  background-attachment: local;
}
.bg-scroll {
  background-attachment: scroll;
}
.bg-clip-border {
  background-clip: border-box;
}
.bg-clip-padding {
  background-clip: padding-box;
}
.bg-clip-content {
  background-clip: content-box;
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.bg-repeat {
  background-repeat: repeat;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.bg-repeat-x {
  background-repeat: repeat-x;
}
.bg-repeat-y {
  background-repeat: repeat-y;
}
.bg-repeat-round {
  background-repeat: round;
}
.bg-repeat-space {
  background-repeat: space;
}
.bg-origin-border {
  background-origin: border-box;
}
.bg-origin-padding {
  background-origin: padding-box;
}
.bg-origin-content {
  background-origin: content-box;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-fill {
  -o-object-fit: fill;
     object-fit: fill;
}
.object-none {
  -o-object-fit: none;
     object-fit: none;
}
.object-scale-down {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-0\.5 {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pl-0\.5 {
  padding-left: 0.125rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-start {
  text-align: left;
}
.text-end {
  text-align: right;
}
.align-baseline {
  vertical-align: baseline;
}
.align-top {
  vertical-align: top;
}
.align-middle {
  vertical-align: middle;
}
.align-bottom {
  vertical-align: bottom;
}
.align-text-top {
  vertical-align: text-top;
}
.align-text-bottom {
  vertical-align: text-bottom;
}
.align-sub {
  vertical-align: sub;
}
.align-super {
  vertical-align: super;
}
.font-\[Oswald\] {
  font-family: Oswald;
}
.text-2xl {
  font-size: 2.188rem;
}
.text-3xl {
  font-size: 2.7342rem;
}
.text-4xl {
  font-size: 3.417rem;
}
.text-\[70px\] {
  font-size: 70px;
}
.text-base {
  font-size: 1.4rem;
}
.text-sm {
  font-size: 1.11rem;
}
.text-xl {
  font-size: 1.75rem;
}
.text-xs {
  font-size: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.normal-case {
  text-transform: none;
}
.italic {
  font-style: italic;
}
.not-italic {
  font-style: normal;
}
.normal-nums {
  font-variant-numeric: normal;
}
.ordinal {
  --tw-ordinal: ordinal;
  font-variant-numeric: 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) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.slashed-zero {
  --tw-slashed-zero: slashed-zero;
  font-variant-numeric: var(--tw-ordinal) slashed-zero var(--tw-numeric-figure) 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);
}
.lining-nums {
  --tw-numeric-figure: lining-nums;
  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);
}
.oldstyle-nums {
  --tw-numeric-figure: oldstyle-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) oldstyle-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);
}
.proportional-nums {
  --tw-numeric-spacing: proportional-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) proportional-nums 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);
}
.tabular-nums {
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) tabular-nums 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);
}
.diagonal-fractions {
  --tw-numeric-fraction: diagonal-fractions;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) diagonal-fractions;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.stacked-fractions {
  --tw-numeric-fraction: stacked-fractions;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) stacked-fractions;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.text-\[\#336699\]\/\[\.35\] {
  color: rgba(51, 102, 153, 0.35);
}
.text-black {
  --tw-text-opacity: 1;
  color: rgba(29, 29, 31, 1);
  color: rgba(29, 29, 31, var(--tw-text-opacity, 1));
}
.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, 1);
  color: rgba(59, 130, 246, var(--tw-text-opacity, 1));
}
.text-dark-gray {
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.text-gray {
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, 1);
  color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
}
.text-medium-gray {
  --tw-text-opacity: 1;
  color: rgba(100, 116, 139, 1);
  color: rgba(100, 116, 139, var(--tw-text-opacity, 1));
}
.text-red {
  --tw-text-opacity: 1;
  color: rgba(207, 32, 38, 1);
  color: rgba(207, 32, 38, var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
}
.text-white\/\[\.5\] {
  color: rgba(245, 245, 247, 0.5);
}
.text-white\/\[\.8\] {
  color: rgba(245, 245, 247, 0.8);
}
.underline {
  text-decoration-line: underline;
}
.overline {
  text-decoration-line: overline;
}
.line-through {
  text-decoration-line: line-through;
}
.no-underline {
  text-decoration-line: none;
}
.decoration-solid {
  text-decoration-style: solid;
}
.decoration-double {
  text-decoration-style: double;
}
.decoration-dotted {
  text-decoration-style: dotted;
}
.decoration-dashed {
  text-decoration-style: dashed;
}
.decoration-wavy {
  text-decoration-style: wavy;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.subpixel-antialiased {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.bg-blend-normal {
  background-blend-mode: normal;
}
.bg-blend-multiply {
  background-blend-mode: multiply;
}
.bg-blend-screen {
  background-blend-mode: screen;
}
.bg-blend-overlay {
  background-blend-mode: overlay;
}
.bg-blend-darken {
  background-blend-mode: darken;
}
.bg-blend-lighten {
  background-blend-mode: lighten;
}
.bg-blend-color-dodge {
  background-blend-mode: color-dodge;
}
.bg-blend-color-burn {
  background-blend-mode: color-burn;
}
.bg-blend-hard-light {
  background-blend-mode: hard-light;
}
.bg-blend-soft-light {
  background-blend-mode: soft-light;
}
.bg-blend-difference {
  background-blend-mode: difference;
}
.bg-blend-exclusion {
  background-blend-mode: exclusion;
}
.bg-blend-hue {
  background-blend-mode: hue;
}
.bg-blend-saturation {
  background-blend-mode: saturation;
}
.bg-blend-color {
  background-blend-mode: color;
}
.bg-blend-luminosity {
  background-blend-mode: luminosity;
}
.mix-blend-normal {
  mix-blend-mode: normal;
}
.mix-blend-multiply {
  mix-blend-mode: multiply;
}
.mix-blend-screen {
  mix-blend-mode: screen;
}
.mix-blend-overlay {
  mix-blend-mode: overlay;
}
.mix-blend-darken {
  mix-blend-mode: darken;
}
.mix-blend-lighten {
  mix-blend-mode: lighten;
}
.mix-blend-color-dodge {
  mix-blend-mode: color-dodge;
}
.mix-blend-color-burn {
  mix-blend-mode: color-burn;
}
.mix-blend-hard-light {
  mix-blend-mode: hard-light;
}
.mix-blend-soft-light {
  mix-blend-mode: soft-light;
}
.mix-blend-difference {
  mix-blend-mode: difference;
}
.mix-blend-exclusion {
  mix-blend-mode: exclusion;
}
.mix-blend-hue {
  mix-blend-mode: hue;
}
.mix-blend-saturation {
  mix-blend-mode: saturation;
}
.mix-blend-color {
  mix-blend-mode: color;
}
.mix-blend-luminosity {
  mix-blend-mode: luminosity;
}
.mix-blend-plus-darker {
  mix-blend-mode: plus-darker;
}
.mix-blend-plus-lighter {
  mix-blend-mode: plus-lighter;
}
.\!shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color) !important;
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow) !important;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(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 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.outline-dashed {
  outline-style: dashed;
}
.outline-dotted {
  outline-style: dotted;
}
.outline-double {
  outline-style: double;
}
.ring {
  --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.ring-inset {
  --tw-ring-inset: inset;
}
.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);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(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 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(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);
}
.grayscale {
  --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);
}
.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);
}
.sepia {
  --tw-sepia: sepia(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) sepia(100%) 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) !important;
}
.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);
}
.filter-none {
  filter: none;
}
.backdrop-blur {
  --tw-backdrop-blur: blur(8px);
  backdrop-filter: blur(8px) 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);
}
.backdrop-grayscale {
  --tw-backdrop-grayscale: grayscale(100%);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) grayscale(100%) 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);
}
.backdrop-invert {
  --tw-backdrop-invert: invert(100%);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) invert(100%) 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);
}
.backdrop-sepia {
  --tw-backdrop-sepia: sepia(100%);
  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) sepia(100%);
  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 {
  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-none {
  backdrop-filter: none;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[height\] {
  transition-property: height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.contain-none {
  contain: none;
}
.contain-content {
  contain: content;
}
.contain-strict {
  contain: strict;
}
.contain-size {
  --tw-contain-size: size;
  contain: size var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
  contain: var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
}
.contain-inline-size {
  --tw-contain-size: inline-size;
  contain: inline-size var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
  contain: var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
}
.contain-layout {
  --tw-contain-layout: layout;
  contain: var(--tw-contain-size) layout var(--tw-contain-paint) var(--tw-contain-style);
  contain: var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
}
.contain-paint {
  --tw-contain-paint: paint;
  contain: var(--tw-contain-size) var(--tw-contain-layout) paint var(--tw-contain-style);
  contain: var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
}
.contain-style {
  --tw-contain-style: style;
  contain: var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) style;
  contain: var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
}
.content-\[\'this-is-also-valid\]-weirdly-enough\'\] {
  --tw-content: 'this-is-also-valid]-weirdly-enough';
  content: 'this-is-also-valid]-weirdly-enough';
  content: var(--tw-content);
}
.forced-color-adjust-auto {
  forced-color-adjust: auto;
}
.forced-color-adjust-none {
  forced-color-adjust: none;
}
.\[chunkhash\:\<digest\>\] {
  chunkhash: <digest>;
}
.\[contenthash\:\<digest\>\] {
  contenthash: <digest>;
}
.\[contenthash\:base64\] {
  contenthash: base64;
}
.\[fullhash\:\<digest\>\] {
  fullhash: <digest>;
}
.\[hash\:\<digest\>\] {
  hash: <digest>;
}
.\[hash\:base64\] {
  hash: base64;
}
.\[kind\:arg\] {
  kind: arg;
}
.\[kind\:digest\] {
  kind: digest;
}
.\[kind\:length\] {
  kind: length;
}
.\[modulehash\:\<digest\>\] {
  modulehash: <digest>;
}

/* Main fonts used for text */
@font-face {
  font-family: 'Outfit';
  src: url("fonts/outfit-v15-latin-regular.9361ca49fa8244163822.fdf9c509a809.woff2") format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url("fonts/oswald-v57-latin-regular.e626a4120b15bb42a749.5f49329007f1.woff2") format('woff2');
  font-weight: 400;
  font-display: swap;
}

/* Icon fonts, self hosted, obtained from fonts.googleapis.com.
 * These are ligature fonts, so until the font loads the browser paints the raw
 * ligature text ("cloud_upload") instead of the icon. font-display: block hides
 * this text, which is why we use it.
 */
@font-face {
  font-family: 'Material Icons';
  src: url("fonts/material-icons-v145-regular.0c35d18bf06992036b69.53436aca8627.woff2") format('woff2');
  font-weight: 400;
  font-display: block;
}
@font-face {
  font-family: 'Material Symbols Outlined';
  src: url("fonts/material-symbols-outlined-v367-regular.dcd38c181f27a1a2ad02.c189a4e0b818.woff2") format('woff2');
  font-weight: 400;
  font-display: block;
}

/* Design tokens for the news pages.
 *
 * news.css lays out the article listings and the article page but declares no
 * colour, font or metric of its own; it reads them all from here, so the whole
 * section can be re-tuned without touching a single rule. Values are the ones
 * the rest of the site already uses - see the palette in tailwind.config.js.
 */
:root {
    /* Body copy and headlines. */
    --gp-ink: #1d1d1f;
    /* Bylines, datelines, intros: present but a step back from the ink. */
    --gp-muted: #64748b;
    /* The sheet a card or an article is printed on, against the off-white the
       body is painted with. */
    --gp-card: #ffffff;
    /* Hairlines: card edges, the rule under a section heading's siblings. */
    --gp-rule: #d1d5db;
    /* Union red, and the darker shade links use so they stay legible as text. */
    --gp-accent: #cf2026;
    --gp-accent-dark: #8c2a2d;

    /* The width a column of text is held to, and the padding either side of it. */
    --gp-measure: 44rem;
    --gp-gutter: 1.5rem;

    --font-sans: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
    /* Headlines are set in the condensed face the feature buttons already use. */
    --font-serif: 'Oswald', 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
}

/* For now we lump all styles into one file. */
@media (min-width: 640px) {

  .sm\:container {
    width: 100%;
  }

  @media (min-width: 640px) {

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

  @media (min-width: 768px) {

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

  @media (min-width: 1024px) {

    .sm\:container {
      max-width: 1024px;
    }
  }

  @media (min-width: 1280px) {

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

  @media (min-width: 1536px) {

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

    .xl\:tooltip-top:before {
        /* Reset values which may interfere with positioning of tooltip
         * Useful when we use multiple tooltip-* classes with breakpoints.
         */
        top: auto;
        top: initial;
        right: auto;
        right: initial;
        margin: 0;
        margin: initial;

        /* horizontally center */
        left: 50%;
        transform: translateX(-50%);

        /* move to top */
        bottom: 100%;
        margin-bottom: 0.25rem;
    }
}
.hover\:block:hover {
  display: block;
}
.hover\:bg-dark-red:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(184, 39, 44, 1);
  background-color: rgba(184, 39, 44, var(--tw-bg-opacity, 1));
}
.hover\:bg-gray:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, 1);
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity, 1));
}
.hover\:bg-white\/\[\.1\]:hover {
  background-color: rgba(245, 245, 247, 0.1);
}
.hover\:font-bold:hover {
  font-weight: 700;
}
.hover\:text-black:hover {
  --tw-text-opacity: 1;
  color: rgba(29, 29, 31, 1);
  color: rgba(29, 29, 31, var(--tw-text-opacity, 1));
}
.hover\:text-gray:hover {
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, 1);
  color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgba(245, 245, 247, 1);
  color: rgba(245, 245, 247, var(--tw-text-opacity, 1));
}
.before\:hover\:text-center:hover::before {
  content: var(--tw-content);
  text-align: center;
}
.hover\:before\:text-center:hover::before {
  content: var(--tw-content);
  text-align: center;
}
.focus\:border-2:focus {
  border-width: 2px;
}
.focus\:border-black:focus {
  --tw-border-opacity: 1;
  border-color: rgba(29, 29, 31, 1);
  border-color: rgba(29, 29, 31, var(--tw-border-opacity, 1));
}
.focus\:border-white:focus {
  --tw-border-opacity: 1;
  border-color: rgba(245, 245, 247, 1);
  border-color: rgba(245, 245, 247, var(--tw-border-opacity, 1));
}
.focus\:bg-white:focus {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 247, 1);
  background-color: rgba(245, 245, 247, var(--tw-bg-opacity, 1));
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring:focus {
  --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.focus\:ring-0:focus {
  --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(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.focus\:ring-1:focus {
  --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.focus\:ring-2:focus {
  --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: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.focus\:ring-black:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(29, 29, 31, var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity, 1));
}
.focus\:ring-opacity-50:focus {
  --tw-ring-opacity: 0.5;
}
.focus\:ring-offset-0:focus {
  --tw-ring-offset-width: 0px;
}
.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}
.focus\:ring-offset-white:focus {
  --tw-ring-offset-color: #f5f5f7;
}
.focus\:hover\:text-center:hover:focus {
  text-align: center;
}
.hover\:focus\:text-center:focus:hover {
  text-align: center;
}
.group:focus .group-focus\:block {
  display: block;
}
.group:focus .group-focus\:hidden {
  display: none;
}
.peer\/change-payment-interval-help:hover ~ .peer-hover\/change-payment-interval-help\:block {
  display: block;
}
.peer\/donate-help:hover ~ .peer-hover\/donate-help\:block {
  display: block;
}
.peer\/gpdr-help:hover ~ .peer-hover\/gpdr-help\:block {
  display: block;
}
.peer\/is-meia-joint-member-help:hover ~ .peer-hover\/is-meia-joint-member-help\:block {
  display: block;
}
.peer\/number-of-employees-help:hover ~ .peer-hover\/number-of-employees-help\:block {
  display: block;
}
.peer\/payment-interval-help:hover ~ .peer-hover\/payment-interval-help\:block {
  display: block;
}
.peer\/policy-fund-help:hover ~ .peer-hover\/policy-fund-help\:block {
  display: block;
}
.peer\/strike-fund-help:hover ~ .peer-hover\/strike-fund-help\:block {
  display: block;
}
.peer\/tenants-section-help:hover ~ .peer-hover\/tenants-section-help\:block {
  display: block;
}
.peer\/wants-full-coverage-help:hover ~ .peer-hover\/wants-full-coverage-help\:block {
  display: block;
}
.hs-removing.hs-removing\:translate-x-5 {
  --tw-translate-x: 1.25rem;
  transform: translate(1.25rem, 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));
}
.hs-removing.hs-removing\:opacity-0 {
  opacity: 0;
}
.hs-accordion.active.hs-accordion-active\:block {
  display: block;
}
.hs-accordion.active.hs-accordion-active\:hidden {
  display: none;
}
.hs-accordion.active > .hs-accordion-toggle .hs-accordion-active\:block {
  display: block;
}
.hs-accordion.active > .hs-accordion-toggle .hs-accordion-active\:hidden {
  display: none;
}
.hs-accordion.active > .hs-accordion-toggle.hs-accordion-active\:block {
  display: block;
}
.hs-accordion.active > .hs-accordion-toggle.hs-accordion-active\:hidden {
  display: none;
}
.hs-collapse.open .hs-collapse-open\:block {
  display: block;
}
.hs-collapse.open .hs-collapse-open\:hidden {
  display: none;
}
.hs-collapse.open.hs-collapse-open\:block {
  display: block;
}
.hs-collapse.open.hs-collapse-open\:hidden {
  display: none;
}
.hs-collapse-toggle.open .hs-collapse-open\:block {
  display: block;
}
.hs-collapse-toggle.open .hs-collapse-open\:hidden {
  display: none;
}
.hs-collapse-toggle.open.hs-collapse-open\:block {
  display: block;
}
.hs-collapse-toggle.open.hs-collapse-open\:hidden {
  display: none;
}
.open.hs-overlay-open\:mt-7 {
  margin-top: 1.75rem;
}
.open.hs-overlay-open\:opacity-100 {
  opacity: 1;
}
.open.hs-overlay-open\:duration-500 {
  transition-duration: 500ms;
}
.open .hs-overlay-open\:mt-7 {
  margin-top: 1.75rem;
}
.open .hs-overlay-open\:opacity-100 {
  opacity: 1;
}
.open .hs-overlay-open\:duration-500 {
  transition-duration: 500ms;
}
@media (min-width: 640px) {

  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

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

  .sm\:max-w-2xl {
    max-width: 42rem;
  }

  .sm\:max-w-md {
    max-width: 28rem;
  }

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

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

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

  .sm\:justify-end {
    justify-content: flex-end;
  }

  .sm\:underline {
    text-decoration-line: underline;
  }
}
@media (min-width: 768px) {

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mr-2 {
    margin-right: 0.5rem;
  }

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

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:max-w-4xl {
    max-width: 56rem;
  }

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

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

  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .md\:items-end {
    align-items: flex-end;
  }

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

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

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

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

  .md\:gap-x-7 {
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
  }

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

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

  .md\:pl-7 {
    padding-left: 1.75rem;
  }

  .md\:text-left {
    text-align: left;
  }
}
@media (min-width: 1024px) {

  .lg\:mb-auto {
    margin-bottom: auto;
  }

  .lg\:h-48 {
    height: 12rem;
  }

  .lg\:h-56 {
    height: 14rem;
  }

  .lg\:h-60 {
    height: 15rem;
  }

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

  .lg\:grid-flow-col {
    grid-auto-flow: column;
  }

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

  .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(0px * (1 - 0));
    border-top-width: calc(0px * (1 - var(--tw-divide-y-reverse)));
    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));
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1280px) {

  .xl\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
@media (prefers-color-scheme: dark) {

  .dark\:bg-opacity-80 {
    --tw-bg-opacity: 0.8;
  }

  @media (min-width: 1024px) {

    .dark\:lg\:hover\:\[paint-order\:markers\]:hover {
      paint-order: markers;
    }
  }
}

