@charset "UTF-8";
/*!
 * Pico CSS ✨ v2.1.1 (https://picocss.com)
 * Copyright 2019-2025 - Licensed under MIT
 */
/**
 * Styles
 */
:root,
:host {
    --pico-font-family-emoji:
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --pico-font-family-sans-serif:
        system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica,
        Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
    --pico-font-family-monospace:
        ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
        "Liberation Mono", monospace, var(--pico-font-family-emoji);
    --pico-font-family: var(--pico-font-family-sans-serif);
    --pico-line-height: 1.5;
    --pico-font-weight: 400;
    --pico-font-size: 100%;
    --pico-text-underline-offset: 0.1rem;
    --pico-border-radius: 0.25rem;
    --pico-border-width: 0.0625rem;
    --pico-outline-width: 0.125rem;
    --pico-transition: 0.2s ease-in-out;
    --pico-spacing: 1rem;
    --pico-typography-spacing-vertical: 1rem;
    --pico-block-spacing-vertical: var(--pico-spacing);
    --pico-block-spacing-horizontal: var(--pico-spacing);
    --pico-form-element-spacing-vertical: 0.75rem;
    --pico-form-element-spacing-horizontal: 1rem;
    --pico-group-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    --pico-group-box-shadow-focus-with-button: 0 0 0 var(--pico-outline-width)
        var(--pico-primary-focus);
    --pico-group-box-shadow-focus-with-input: 0 0 0 0.0625rem
        var(--pico-form-element-border-color);
    --pico-nav-element-spacing-vertical: 1rem;
    --pico-nav-element-spacing-horizontal: 2rem;
    --pico-nav-link-spacing-vertical: 0.5rem;
    --pico-nav-link-spacing-horizontal: 2rem;
    --pico-nav-breadcrumb-divider: ">";
}
@media (min-width: 576px) {
    :root,
    :host {
        --pico-font-size: 106.25%;
    }
}
@media (min-width: 768px) {
    :root,
    :host {
        --pico-font-size: 112.5%;
    }
}
@media (min-width: 1024px) {
    :root,
    :host {
        --pico-font-size: 118.75%;
    }
}
@media (min-width: 1280px) {
    :root,
    :host {
        --pico-font-size: 125%;
    }
}
@media (min-width: 1536px) {
    :root,
    :host {
        --pico-font-size: 131.25%;
    }
}

a {
    --pico-text-decoration: underline;
}

small {
    --pico-font-size: 0.875em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    --pico-font-weight: 700;
}

h1 {
    --pico-font-size: 2rem;
    --pico-line-height: 1.125;
    --pico-typography-spacing-top: 3rem;
}

h2 {
    --pico-font-size: 1.75rem;
    --pico-line-height: 1.15;
    --pico-typography-spacing-top: 2.625rem;
}

h3 {
    --pico-font-size: 1.5rem;
    --pico-line-height: 1.175;
    --pico-typography-spacing-top: 2.25rem;
}

h4 {
    --pico-font-size: 1.25rem;
    --pico-line-height: 1.2;
    --pico-typography-spacing-top: 1.874rem;
}

h5 {
    --pico-font-size: 1.125rem;
    --pico-line-height: 1.225;
    --pico-typography-spacing-top: 1.6875rem;
}

h6 {
    --pico-font-size: 1rem;
    --pico-line-height: 1.25;
    --pico-typography-spacing-top: 1.5rem;
}

thead th,
thead td,
tfoot th,
tfoot td {
    --pico-font-weight: 600;
    --pico-border-width: 0.1875rem;
}

pre,
code,
kbd,
samp {
    --pico-font-family: var(--pico-font-family-monospace);
}

kbd {
    --pico-font-weight: bolder;
}

input:not(
    [type="submit"],
    [type="button"],
    [type="reset"],
    [type="checkbox"],
    [type="radio"],
    [type="file"]
),
:where(select, textarea) {
    --pico-outline-width: 0.0625rem;
}

[type="search"] {
    --pico-border-radius: 5rem;
}

[role="search"] {
    --pico-border-radius: 5rem;
}

[role="search"] button,
[role="search"] [type="submit"],
[role="search"] [type="button"],
[role="search"] [role="button"],
[role="group"] button,
[role="group"] [type="submit"],
[role="group"] [type="button"],
[role="group"] [role="button"] {
    --pico-form-element-spacing-horizontal: 2rem;
}

/**
 * Color schemes
 */
[data-theme="light"],
:root:not([data-theme="dark"]),
:host(:not([data-theme="dark"])) {
    color-scheme: light;
    --pico-background-color: #fff;
    --pico-color: #373c44;
    --pico-text-selection-color: rgba(183, 136, 0, 0.25);
    --pico-muted-color: #646b79;
    --pico-muted-border-color: rgb(231, 234, 239.5);
    --pico-primary: #876400;
    --pico-primary-background: #ffbf00;
    --pico-primary-border: var(--pico-primary-background);
    --pico-primary-underline: rgba(135, 100, 0, 0.5);
    --pico-primary-hover: #694d00;
    --pico-primary-hover-background: #e8ae01;
    --pico-primary-hover-border: var(--pico-primary-hover-background);
    --pico-primary-hover-underline: var(--pico-primary-hover);
    --pico-primary-focus: rgba(183, 136, 0, 0.5);
    --pico-primary-inverse: #000;
    --pico-secondary: #5d6b89;
    --pico-secondary-background: #525f7a;
    --pico-secondary-border: var(--pico-secondary-background);
    --pico-secondary-underline: rgba(93, 107, 137, 0.5);
    --pico-secondary-hover: #48536b;
    --pico-secondary-hover-background: #48536b;
    --pico-secondary-hover-border: var(--pico-secondary-hover-background);
    --pico-secondary-hover-underline: var(--pico-secondary-hover);
    --pico-secondary-focus: rgba(93, 107, 137, 0.25);
    --pico-secondary-inverse: #fff;
    --pico-contrast: #181c25;
    --pico-contrast-background: #181c25;
    --pico-contrast-border: var(--pico-contrast-background);
    --pico-contrast-underline: rgba(24, 28, 37, 0.5);
    --pico-contrast-hover: #000;
    --pico-contrast-hover-background: #000;
    --pico-contrast-hover-border: var(--pico-contrast-hover-background);
    --pico-contrast-hover-underline: var(--pico-secondary-hover);
    --pico-contrast-focus: rgba(93, 107, 137, 0.25);
    --pico-contrast-inverse: #fff;
    --pico-box-shadow:
        0.0145rem 0.029rem 0.174rem rgba(129, 145, 181, 0.01698),
        0.0335rem 0.067rem 0.402rem rgba(129, 145, 181, 0.024),
        0.0625rem 0.125rem 0.75rem rgba(129, 145, 181, 0.03),
        0.1125rem 0.225rem 1.35rem rgba(129, 145, 181, 0.036),
        0.2085rem 0.417rem 2.502rem rgba(129, 145, 181, 0.04302),
        0.5rem 1rem 6rem rgba(129, 145, 181, 0.06),
        0 0 0 0.0625rem rgba(129, 145, 181, 0.015);
    --pico-h1-color: #2d3138;
    --pico-h2-color: #373c44;
    --pico-h3-color: #424751;
    --pico-h4-color: #4d535e;
    --pico-h5-color: #5c6370;
    --pico-h6-color: #646b79;
    --pico-mark-background-color: rgb(252.5, 230.5, 191.5);
    --pico-mark-color: #0f1114;
    --pico-ins-color: rgb(28.5, 105.5, 84);
    --pico-del-color: rgb(136, 56.5, 53);
    --pico-blockquote-border-color: var(--pico-muted-border-color);
    --pico-blockquote-footer-color: var(--pico-muted-color);
    --pico-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    --pico-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    --pico-table-border-color: var(--pico-muted-border-color);
    --pico-table-row-stripped-background-color: rgba(111, 120, 135, 0.0375);
    --pico-code-background-color: rgb(243, 244.5, 246.75);
    --pico-code-color: #646b79;
    --pico-code-kbd-background-color: var(--pico-color);
    --pico-code-kbd-color: var(--pico-background-color);
}

@media only screen and (prefers-color-scheme: dark) {
    :root:not([data-theme]),
    :host(:not([data-theme])) {
        color-scheme: dark;
        --pico-background-color: rgb(19, 22.5, 30.5);
        --pico-color: #c2c7d0;
        --pico-text-selection-color: rgba(199, 148, 0, 0.1875);
        --pico-muted-color: #7b8495;
        --pico-muted-border-color: #202632;
        --pico-primary: #c79400;
        --pico-primary-background: #ffbf00;
        --pico-primary-border: var(--pico-primary-background);
        --pico-primary-underline: rgba(199, 148, 0, 0.5);
        --pico-primary-hover: #e8ae01;
        --pico-primary-hover-background: #fecc63;
        --pico-primary-hover-border: var(--pico-primary-hover-background);
        --pico-primary-hover-underline: var(--pico-primary-hover);
        --pico-primary-focus: rgba(199, 148, 0, 0.375);
        --pico-primary-inverse: #000;
        --pico-secondary: #969eaf;
        --pico-secondary-background: #525f7a;
        --pico-secondary-border: var(--pico-secondary-background);
        --pico-secondary-underline: rgba(150, 158, 175, 0.5);
        --pico-secondary-hover: #b3b9c5;
        --pico-secondary-hover-background: #5d6b89;
        --pico-secondary-hover-border: var(--pico-secondary-hover-background);
        --pico-secondary-hover-underline: var(--pico-secondary-hover);
        --pico-secondary-focus: rgba(144, 158, 190, 0.25);
        --pico-secondary-inverse: #fff;
        --pico-contrast: #dfe3eb;
        --pico-contrast-background: #eff1f4;
        --pico-contrast-border: var(--pico-contrast-background);
        --pico-contrast-underline: rgba(223, 227, 235, 0.5);
        --pico-contrast-hover: #fff;
        --pico-contrast-hover-background: #fff;
        --pico-contrast-hover-border: var(--pico-contrast-hover-background);
        --pico-contrast-hover-underline: var(--pico-contrast-hover);
        --pico-contrast-focus: rgba(207, 213, 226, 0.25);
        --pico-contrast-inverse: #000;
        --pico-box-shadow:
            0.0145rem 0.029rem 0.174rem rgba(7, 8.5, 12, 0.01698),
            0.0335rem 0.067rem 0.402rem rgba(7, 8.5, 12, 0.024),
            0.0625rem 0.125rem 0.75rem rgba(7, 8.5, 12, 0.03),
            0.1125rem 0.225rem 1.35rem rgba(7, 8.5, 12, 0.036),
            0.2085rem 0.417rem 2.502rem rgba(7, 8.5, 12, 0.04302),
            0.5rem 1rem 6rem rgba(7, 8.5, 12, 0.06),
            0 0 0 0.0625rem rgba(7, 8.5, 12, 0.015);
        --pico-h1-color: #f0f1f3;
        --pico-h2-color: #e0e3e7;
        --pico-h3-color: #c2c7d0;
        --pico-h4-color: #b3b9c5;
        --pico-h5-color: #a4acba;
        --pico-h6-color: #8891a4;
        --pico-mark-background-color: #014063;
        --pico-mark-color: #fff;
        --pico-ins-color: #62af9a;
        --pico-del-color: rgb(205.5, 126, 123);
        --pico-blockquote-border-color: var(--pico-muted-border-color);
        --pico-blockquote-footer-color: var(--pico-muted-color);
        --pico-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        --pico-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        --pico-table-border-color: var(--pico-muted-border-color);
        --pico-table-row-stripped-background-color: rgba(111, 120, 135, 0.0375);
        --pico-code-background-color: rgb(26, 30.5, 40.25);
        --pico-code-color: #8891a4;
        --pico-code-kbd-background-color: var(--pico-color);
        --pico-code-kbd-color: var(--pico-background-color);
    }
}
[data-theme="dark"] {
    color-scheme: dark;
    --pico-background-color: rgb(19, 22.5, 30.5);
    --pico-color: #c2c7d0;
    --pico-text-selection-color: rgba(199, 148, 0, 0.1875);
    --pico-muted-color: #7b8495;
    --pico-muted-border-color: #202632;
    --pico-primary: #c79400;
    --pico-primary-background: #ffbf00;
    --pico-primary-border: var(--pico-primary-background);
    --pico-primary-underline: rgba(199, 148, 0, 0.5);
    --pico-primary-hover: #e8ae01;
    --pico-primary-hover-background: #fecc63;
    --pico-primary-hover-border: var(--pico-primary-hover-background);
    --pico-primary-hover-underline: var(--pico-primary-hover);
    --pico-primary-focus: rgba(199, 148, 0, 0.375);
    --pico-primary-inverse: #000;
    --pico-secondary: #969eaf;
    --pico-secondary-background: #525f7a;
    --pico-secondary-border: var(--pico-secondary-background);
    --pico-secondary-underline: rgba(150, 158, 175, 0.5);
    --pico-secondary-hover: #b3b9c5;
    --pico-secondary-hover-background: #5d6b89;
    --pico-secondary-hover-border: var(--pico-secondary-hover-background);
    --pico-secondary-hover-underline: var(--pico-secondary-hover);
    --pico-secondary-focus: rgba(144, 158, 190, 0.25);
    --pico-secondary-inverse: #fff;
    --pico-contrast: #dfe3eb;
    --pico-contrast-background: #eff1f4;
    --pico-contrast-border: var(--pico-contrast-background);
    --pico-contrast-underline: rgba(223, 227, 235, 0.5);
    --pico-contrast-hover: #fff;
    --pico-contrast-hover-background: #fff;
    --pico-contrast-hover-border: var(--pico-contrast-hover-background);
    --pico-contrast-hover-underline: var(--pico-contrast-hover);
    --pico-contrast-focus: rgba(207, 213, 226, 0.25);
    --pico-contrast-inverse: #000;
    --pico-box-shadow:
        0.0145rem 0.029rem 0.174rem rgba(7, 8.5, 12, 0.01698),
        0.0335rem 0.067rem 0.402rem rgba(7, 8.5, 12, 0.024),
        0.0625rem 0.125rem 0.75rem rgba(7, 8.5, 12, 0.03),
        0.1125rem 0.225rem 1.35rem rgba(7, 8.5, 12, 0.036),
        0.2085rem 0.417rem 2.502rem rgba(7, 8.5, 12, 0.04302),
        0.5rem 1rem 6rem rgba(7, 8.5, 12, 0.06),
        0 0 0 0.0625rem rgba(7, 8.5, 12, 0.015);
    --pico-h1-color: #f0f1f3;
    --pico-h2-color: #e0e3e7;
    --pico-h3-color: #c2c7d0;
    --pico-h4-color: #b3b9c5;
    --pico-h5-color: #a4acba;
    --pico-h6-color: #8891a4;
    --pico-mark-background-color: #014063;
    --pico-mark-color: #fff;
    --pico-ins-color: #62af9a;
    --pico-del-color: rgb(205.5, 126, 123);
    --pico-blockquote-border-color: var(--pico-muted-border-color);
    --pico-blockquote-footer-color: var(--pico-muted-color);
    --pico-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    --pico-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    --pico-table-border-color: var(--pico-muted-border-color);
    --pico-table-row-stripped-background-color: rgba(111, 120, 135, 0.0375);
    --pico-code-background-color: rgb(26, 30.5, 40.25);
    --pico-code-color: #8891a4;
    --pico-code-kbd-background-color: var(--pico-color);
    --pico-code-kbd-color: var(--pico-background-color);
}

progress,
[type="checkbox"],
[type="radio"],
[type="range"] {
    accent-color: var(--pico-primary);
}

/**
 * Document
 * Content-box & Responsive typography
 */
*,
*::before,
*::after {
    box-sizing: border-box;
    background-repeat: no-repeat;
}

::before,
::after {
    text-decoration: inherit;
    vertical-align: inherit;
}

:where(:root),
:where(:host) {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background-color: var(--pico-background-color);
    color: var(--pico-color);
    font-weight: var(--pico-font-weight);
    font-size: var(--pico-font-size);
    line-height: var(--pico-line-height);
    font-family: var(--pico-font-family);
    text-underline-offset: var(--pico-text-underline-offset);
    text-rendering: optimizeLegibility;
    overflow-wrap: break-word;
    tab-size: 4;
}

/**
 * Landmarks
 */
body {
    width: 100%;
    margin: 0;
}

main {
    display: block;
}

body > header,
body > main,
body > footer {
    padding-block: var(--pico-block-spacing-vertical);
}

/**
 * Section
 */
section {
    margin-bottom: var(--pico-block-spacing-vertical);
}

/**
 * Typography
 */
b,
strong {
    font-weight: bolder;
}

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

address,
blockquote,
dl,
ol,
p,
pre,
table,
ul {
    margin-top: 0;
    margin-bottom: var(--pico-typography-spacing-vertical);
    color: var(--pico-color);
    font-style: normal;
    font-weight: var(--pico-font-weight);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: var(--pico-typography-spacing-vertical);
    color: var(--pico-color);
    font-weight: var(--pico-font-weight);
    font-size: var(--pico-font-size);
    line-height: var(--pico-line-height);
    font-family: var(--pico-font-family);
}

h1 {
    --pico-color: var(--pico-h1-color);
}

h2 {
    --pico-color: var(--pico-h2-color);
}

h3 {
    --pico-color: var(--pico-h3-color);
}

h4 {
    --pico-color: var(--pico-h4-color);
}

h5 {
    --pico-color: var(--pico-h5-color);
}

h6 {
    --pico-color: var(--pico-h6-color);
}

:where(article, address, blockquote, dl, figure, form, ol, p, pre, table, ul)
    ~ :is(h1, h2, h3, h4, h5, h6) {
    margin-top: var(--pico-typography-spacing-top);
}

p {
    margin-bottom: var(--pico-typography-spacing-vertical);
}

hgroup {
    margin-bottom: var(--pico-typography-spacing-vertical);
}
hgroup > * {
    margin-top: 0;
    margin-bottom: 0;
}
hgroup > *:not(:first-child):last-child {
    --pico-color: var(--pico-muted-color);
    --pico-font-weight: unset;
    font-size: 1rem;
}

:where(ol, ul) li {
    margin-bottom: calc(var(--pico-typography-spacing-vertical) * 0.25);
}

:where(dl, ol, ul) :where(dl, ol, ul) {
    margin: 0;
    margin-top: calc(var(--pico-typography-spacing-vertical) * 0.25);
}

ul li {
    list-style: square;
}

mark {
    padding: 0.125rem 0.25rem;
    background-color: var(--pico-mark-background-color);
    color: var(--pico-mark-color);
    vertical-align: baseline;
}

blockquote {
    display: block;
    margin: var(--pico-typography-spacing-vertical) 0;
    padding: var(--pico-spacing);
    border-right: none;
    border-left: 0.25rem solid var(--pico-blockquote-border-color);
    border-inline-start: 0.25rem solid var(--pico-blockquote-border-color);
    border-inline-end: none;
}
blockquote footer {
    margin-top: calc(var(--pico-typography-spacing-vertical) * 0.5);
    color: var(--pico-blockquote-footer-color);
}

abbr[title] {
    border-bottom: 1px dotted;
    text-decoration: none;
    cursor: help;
}

ins {
    color: var(--pico-ins-color);
    text-decoration: none;
}

del {
    color: var(--pico-del-color);
}

::selection {
    background-color: var(--pico-text-selection-color);
}

/**
 * Link
 */
:where(a:not([role="button"])),
[role="link"] {
    --pico-color: var(--pico-primary);
    --pico-background-color: transparent;
    --pico-underline: var(--pico-primary-underline);
    outline: none;
    background-color: var(--pico-background-color);
    color: var(--pico-color);
    text-decoration: var(--pico-text-decoration);
    text-decoration-color: var(--pico-underline);
    text-underline-offset: 0.125em;
    transition:
        background-color var(--pico-transition),
        color var(--pico-transition),
        text-decoration var(--pico-transition),
        box-shadow var(--pico-transition);
}
:where(a:not([role="button"])):is(
    [aria-current]:not([aria-current="false"]),
    :hover,
    :active,
    :focus
),
[role="link"]:is(
    [aria-current]:not([aria-current="false"]),
    :hover,
    :active,
    :focus
) {
    --pico-color: var(--pico-primary-hover);
    --pico-underline: var(--pico-primary-hover-underline);
    --pico-text-decoration: underline;
}
:where(a:not([role="button"])):focus-visible,
[role="link"]:focus-visible {
    box-shadow: 0 0 0 var(--pico-outline-width) var(--pico-primary-focus);
}

a[role="button"] {
    display: inline-block;
}

/**
 * Button
 */
button {
    margin: 0;
    overflow: visible;
    font-family: inherit;
    text-transform: none;
}

button,
[type="submit"],
[type="reset"],
[type="button"] {
    -webkit-appearance: button;
}

button,
[type="submit"],
[type="reset"],
[type="button"],
[type="file"]::file-selector-button,
[role="button"] {
    --pico-background-color: var(--pico-primary-background);
    --pico-border-color: var(--pico-primary-border);
    --pico-color: var(--pico-primary-inverse);
    --pico-box-shadow: var(--pico-button-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
    padding: var(--pico-form-element-spacing-vertical)
        var(--pico-form-element-spacing-horizontal);
    border: var(--pico-border-width) solid var(--pico-border-color);
    border-radius: var(--pico-border-radius);
    outline: none;
    background-color: var(--pico-background-color);
    box-shadow: var(--pico-box-shadow);
    color: var(--pico-color);
    font-weight: var(--pico-font-weight);
    font-size: 1rem;
    line-height: var(--pico-line-height);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition:
        background-color var(--pico-transition),
        border-color var(--pico-transition),
        color var(--pico-transition),
        box-shadow var(--pico-transition);
}
button:is([aria-current]:not([aria-current="false"])),
button:is(:hover, :active, :focus),
[type="submit"]:is([aria-current]:not([aria-current="false"])),
[type="submit"]:is(:hover, :active, :focus),
[type="reset"]:is([aria-current]:not([aria-current="false"])),
[type="reset"]:is(:hover, :active, :focus),
[type="button"]:is([aria-current]:not([aria-current="false"])),
[type="button"]:is(:hover, :active, :focus),
[type="file"]::file-selector-button:is(
        [aria-current]:not([aria-current="false"])
    ),
[type="file"]::file-selector-button:is(:hover, :active, :focus),
[role="button"]:is([aria-current]:not([aria-current="false"])),
[role="button"]:is(:hover, :active, :focus) {
    --pico-background-color: var(--pico-primary-hover-background);
    --pico-border-color: var(--pico-primary-hover-border);
    --pico-box-shadow: var(
        --pico-button-hover-box-shadow,
        0 0 0 rgba(0, 0, 0, 0)
    );
    --pico-color: var(--pico-primary-inverse);
}
button:focus,
button:is([aria-current]:not([aria-current="false"])):focus,
[type="submit"]:focus,
[type="submit"]:is([aria-current]:not([aria-current="false"])):focus,
[type="reset"]:focus,
[type="reset"]:is([aria-current]:not([aria-current="false"])):focus,
[type="button"]:focus,
[type="button"]:is([aria-current]:not([aria-current="false"])):focus,
[type="file"]::file-selector-button:focus,
[type="file"]::file-selector-button:is(
        [aria-current]:not([aria-current="false"])
    ):focus,
[role="button"]:focus,
[role="button"]:is([aria-current]:not([aria-current="false"])):focus {
    --pico-box-shadow:
        var(--pico-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
        0 0 0 var(--pico-outline-width) var(--pico-primary-focus);
}

[type="submit"],
[type="reset"],
[type="button"] {
    margin-bottom: var(--pico-spacing);
}

[type="reset"],
[type="file"]::file-selector-button {
    --pico-background-color: var(--pico-secondary-background);
    --pico-border-color: var(--pico-secondary-border);
    --pico-color: var(--pico-secondary-inverse);
    cursor: pointer;
}
[type="reset"]:is(
    [aria-current]:not([aria-current="false"]),
    :hover,
    :active,
    :focus
),
[type="file"]::file-selector-button:is(
        [aria-current]:not([aria-current="false"]),
        :hover,
        :active,
        :focus
    ) {
    --pico-background-color: var(--pico-secondary-hover-background);
    --pico-border-color: var(--pico-secondary-hover-border);
    --pico-color: var(--pico-secondary-inverse);
}
[type="reset"]:focus,
[type="file"]::file-selector-button:focus {
    --pico-box-shadow:
        var(--pico-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
        0 0 0 var(--pico-outline-width) var(--pico-secondary-focus);
}

:where(
    button,
    [type="submit"],
    [type="reset"],
    [type="button"],
    [role="button"]
)[disabled],
:where(fieldset[disabled])
    :is(
        button,
        [type="submit"],
        [type="button"],
        [type="reset"],
        [role="button"]
    ) {
    opacity: 0.5;
    pointer-events: none;
}

/**
 * Table
 */
:where(table) {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    text-indent: 0;
}

th,
td {
    padding: calc(var(--pico-spacing) / 2) var(--pico-spacing);
    border-bottom: var(--pico-border-width) solid var(--pico-table-border-color);
    background-color: var(--pico-background-color);
    color: var(--pico-color);
    font-weight: var(--pico-font-weight);
    text-align: left;
    text-align: start;
}

tfoot th,
tfoot td {
    border-top: var(--pico-border-width) solid var(--pico-table-border-color);
    border-bottom: 0;
}

table.striped tbody tr:nth-child(odd) th,
table.striped tbody tr:nth-child(odd) td {
    background-color: var(--pico-table-row-stripped-background-color);
}

/**
 * Embedded content
 */
:where(audio, canvas, iframe, img, svg, video) {
    vertical-align: middle;
}

audio,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

:where(iframe) {
    border-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-style: none;
}

:where(svg:not([fill])) {
    fill: currentColor;
}

svg:not(:root),
svg:not(:host) {
    overflow: hidden;
}

/**
 * Code
 */
pre,
code,
kbd,
samp {
    font-size: 0.875em;
    font-family: var(--pico-font-family);
}

pre code,
pre samp {
    font-size: inherit;
    font-family: inherit;
}

pre {
    -ms-overflow-style: scrollbar;
    overflow: auto;
}

pre,
code,
kbd,
samp {
    border-radius: var(--pico-border-radius);
    background: var(--pico-code-background-color);
    color: var(--pico-code-color);
    font-weight: var(--pico-font-weight);
    line-height: initial;
}

code,
kbd,
samp {
    display: inline-block;
    padding: 0.375rem;
}

pre {
    display: block;
    margin-bottom: var(--pico-spacing);
    overflow-x: auto;
}
pre > code,
pre > samp {
    display: block;
    padding: var(--pico-spacing);
    background: none;
    line-height: var(--pico-line-height);
}

kbd {
    background-color: var(--pico-code-kbd-background-color);
    color: var(--pico-code-kbd-color);
    vertical-align: baseline;
}

/**
 * Figure
 */
figure {
    display: block;
    margin: 0;
    padding: 0;
}
figure figcaption {
    padding: calc(var(--pico-spacing) * 0.5) 0;
    color: var(--pico-muted-color);
}

/**
 * Misc
 */
hr {
    height: 0;
    margin: var(--pico-typography-spacing-vertical) 0;
    border: 0;
    border-top: 1px solid var(--pico-muted-border-color);
    color: inherit;
}

[hidden],
template {
    display: none !important;
}

canvas {
    display: inline-block;
}

/**
 * Group ([role="group"], [role="search"])
 */
[role="search"],
[role="group"] {
    display: inline-flex;
    position: relative;
    width: 100%;
    margin-bottom: var(--pico-spacing);
    border-radius: var(--pico-border-radius);
    box-shadow: var(--pico-group-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
    vertical-align: middle;
    transition: box-shadow var(--pico-transition);
}
[role="search"] > *,
[role="search"] input:not([type="checkbox"], [type="radio"]),
[role="search"] select,
[role="group"] > *,
[role="group"] input:not([type="checkbox"], [type="radio"]),
[role="group"] select {
    position: relative;
    flex: 1 1 auto;
    margin-bottom: 0;
}
[role="search"] > *:not(:first-child),
[role="search"] input:not([type="checkbox"], [type="radio"]):not(:first-child),
[role="search"] select:not(:first-child),
[role="group"] > *:not(:first-child),
[role="group"] input:not([type="checkbox"], [type="radio"]):not(:first-child),
[role="group"] select:not(:first-child) {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
[role="search"] > *:not(:last-child),
[role="search"] input:not([type="checkbox"], [type="radio"]):not(:last-child),
[role="search"] select:not(:last-child),
[role="group"] > *:not(:last-child),
[role="group"] input:not([type="checkbox"], [type="radio"]):not(:last-child),
[role="group"] select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
[role="search"] > *:focus,
[role="search"] input:not([type="checkbox"], [type="radio"]):focus,
[role="search"] select:focus,
[role="group"] > *:focus,
[role="group"] input:not([type="checkbox"], [type="radio"]):focus,
[role="group"] select:focus {
    z-index: 2;
}
[role="search"] button:not(:first-child),
[role="search"] [type="submit"]:not(:first-child),
[role="search"] [type="reset"]:not(:first-child),
[role="search"] [type="button"]:not(:first-child),
[role="search"] [role="button"]:not(:first-child),
[role="search"] input:not([type="checkbox"], [type="radio"]):not(:first-child),
[role="search"] select:not(:first-child),
[role="group"] button:not(:first-child),
[role="group"] [type="submit"]:not(:first-child),
[role="group"] [type="reset"]:not(:first-child),
[role="group"] [type="button"]:not(:first-child),
[role="group"] [role="button"]:not(:first-child),
[role="group"] input:not([type="checkbox"], [type="radio"]):not(:first-child),
[role="group"] select:not(:first-child) {
    margin-left: calc(var(--pico-border-width) * -1);
}
[role="search"] button,
[role="search"] [type="submit"],
[role="search"] [type="reset"],
[role="search"] [type="button"],
[role="search"] [role="button"],
[role="group"] button,
[role="group"] [type="submit"],
[role="group"] [type="reset"],
[role="group"] [type="button"],
[role="group"] [role="button"] {
    width: auto;
}
@supports selector(:has(*)) {
    [role="search"]:has(
        button:focus,
        [type="submit"]:focus,
        [type="button"]:focus,
        [role="button"]:focus
    ),
    [role="group"]:has(
        button:focus,
        [type="submit"]:focus,
        [type="button"]:focus,
        [role="button"]:focus
    ) {
        --pico-group-box-shadow: var(--pico-group-box-shadow-focus-with-button);
    }
    [role="search"]:has(
            button:focus,
            [type="submit"]:focus,
            [type="button"]:focus,
            [role="button"]:focus
        )
        input:not([type="checkbox"], [type="radio"]),
    [role="search"]:has(
            button:focus,
            [type="submit"]:focus,
            [type="button"]:focus,
            [role="button"]:focus
        )
        select,
    [role="group"]:has(
            button:focus,
            [type="submit"]:focus,
            [type="button"]:focus,
            [role="button"]:focus
        )
        input:not([type="checkbox"], [type="radio"]),
    [role="group"]:has(
            button:focus,
            [type="submit"]:focus,
            [type="button"]:focus,
            [role="button"]:focus
        )
        select {
        border-color: transparent;
    }
    [role="search"]:has(
        input:not([type="submit"], [type="button"]):focus,
        select:focus
    ),
    [role="group"]:has(
        input:not([type="submit"], [type="button"]):focus,
        select:focus
    ) {
        --pico-group-box-shadow: var(--pico-group-box-shadow-focus-with-input);
    }
    [role="search"]:has(
            input:not([type="submit"], [type="button"]):focus,
            select:focus
        )
        button,
    [role="search"]:has(
            input:not([type="submit"], [type="button"]):focus,
            select:focus
        )
        [type="submit"],
    [role="search"]:has(
            input:not([type="submit"], [type="button"]):focus,
            select:focus
        )
        [type="button"],
    [role="search"]:has(
            input:not([type="submit"], [type="button"]):focus,
            select:focus
        )
        [role="button"],
    [role="group"]:has(
            input:not([type="submit"], [type="button"]):focus,
            select:focus
        )
        button,
    [role="group"]:has(
            input:not([type="submit"], [type="button"]):focus,
            select:focus
        )
        [type="submit"],
    [role="group"]:has(
            input:not([type="submit"], [type="button"]):focus,
            select:focus
        )
        [type="button"],
    [role="group"]:has(
            input:not([type="submit"], [type="button"]):focus,
            select:focus
        )
        [role="button"] {
        --pico-button-box-shadow: 0 0 0 var(--pico-border-width)
            var(--pico-primary-border);
        --pico-button-hover-box-shadow: 0 0 0 var(--pico-border-width)
            var(--pico-primary-hover-border);
    }
    [role="search"] button:focus,
    [role="search"] [type="submit"]:focus,
    [role="search"] [type="reset"]:focus,
    [role="search"] [type="button"]:focus,
    [role="search"] [role="button"]:focus,
    [role="group"] button:focus,
    [role="group"] [type="submit"]:focus,
    [role="group"] [type="reset"]:focus,
    [role="group"] [type="button"]:focus,
    [role="group"] [role="button"]:focus {
        box-shadow: none;
    }
}

[role="search"] > *:first-child {
    border-top-left-radius: 5rem;
    border-bottom-left-radius: 5rem;
}
[role="search"] > *:last-child {
    border-top-right-radius: 5rem;
    border-bottom-right-radius: 5rem;
}

/**
 * Nav
 */
:where(nav li)::before {
    float: left;
    content: "​";
}

nav,
nav ul {
    display: flex;
}

nav {
    justify-content: space-between;
    overflow: visible;
}
nav ol,
nav ul {
    align-items: center;
    margin-bottom: 0;
    padding: 1rem;
    list-style: none;
}
nav ol:first-of-type,
nav ul:first-of-type {
    margin-left: calc(var(--pico-nav-element-spacing-horizontal) * -1);
}
nav ol:last-of-type,
nav ul:last-of-type {
    margin-right: calc(var(--pico-nav-element-spacing-horizontal) * -1);
}
nav li {
    display: inline-block;
    margin: 0;
    padding: var(--pico-nav-element-spacing-vertical)
        var(--pico-nav-element-spacing-horizontal);
}
nav li :where(a, [role="link"]) {
    display: inline-block;
    margin: calc(var(--pico-nav-link-spacing-vertical) * -1)
        calc(var(--pico-nav-link-spacing-horizontal) * -1);
    padding: var(--pico-nav-link-spacing-vertical)
        var(--pico-nav-link-spacing-horizontal);
    border-radius: var(--pico-border-radius);
}
nav li :where(a, [role="link"]):not(:hover) {
    text-decoration: none;
}
nav li button,
nav li [role="button"],
nav li [type="button"],
nav
    li
    input:not([type="checkbox"], [type="radio"], [type="range"], [type="file"]),
nav li select {
    height: auto;
    margin-right: inherit;
    margin-bottom: 0;
    margin-left: inherit;
    padding: calc(
            var(--pico-nav-link-spacing-vertical) - var(--pico-border-width) * 2
        )
        var(--pico-nav-link-spacing-horizontal);
}
nav[aria-label="breadcrumb"] {
    align-items: center;
    justify-content: start;
}
nav[aria-label="breadcrumb"] ul li:not(:first-child) {
    margin-inline-start: var(--pico-nav-link-spacing-horizontal);
}
nav[aria-label="breadcrumb"] ul li a {
    margin: calc(var(--pico-nav-link-spacing-vertical) * -1) 0;
    margin-inline-start: calc(var(--pico-nav-link-spacing-horizontal) * -1);
}
nav[aria-label="breadcrumb"] ul li:not(:last-child)::after {
    display: inline-block;
    position: absolute;
    width: calc(var(--pico-nav-link-spacing-horizontal) * 4);
    margin: 0 calc(var(--pico-nav-link-spacing-horizontal) * -1);
    content: var(--pico-nav-breadcrumb-divider);
    color: var(--pico-muted-color);
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}
nav[aria-label="breadcrumb"] a[aria-current]:not([aria-current="false"]) {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    pointer-events: none;
}

aside nav,
aside ol,
aside ul,
aside li {
    display: block;
}
aside li {
    padding: calc(var(--pico-nav-element-spacing-vertical) * 0.5)
        var(--pico-nav-element-spacing-horizontal);
}
aside li a {
    display: block;
}
aside li [role="button"] {
    margin: inherit;
}

[dir="rtl"] nav[aria-label="breadcrumb"] ul li:not(:last-child) ::after {
    content: "\\";
}

h1 {
    color: orange;
}

img {
    display: block;
    max-width: 70%;
    margin: 0 auto;
}

body {
    margin: 0;
    padding: 0;
    text-align: center;
}

nav,
body > header,
body > main,
body > footer {
    width: 70%;
    text-align: left;
    margin: 0 auto;
}

/*# sourceMappingURL=solarpowered.pico.css.map */
