@unabridged/midwest 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Controller } from '@hotwired/stimulus';
|
|
2
|
+
|
|
3
|
+
class Card extends Controller {
|
|
4
|
+
static targets = ["back", "front"];
|
|
5
|
+
static values = {
|
|
6
|
+
originalHeight: { type: Number, default: 0 },
|
|
7
|
+
backHeight: { type: Number, default: 0 }
|
|
8
|
+
};
|
|
9
|
+
connect() {
|
|
10
|
+
this.applyReady();
|
|
11
|
+
}
|
|
12
|
+
get flippable() {
|
|
13
|
+
return this.element.classList.contains("flippable");
|
|
14
|
+
}
|
|
15
|
+
async applyReady() {
|
|
16
|
+
if (this.flippable) {
|
|
17
|
+
this.originalHeightValue = this.frontTarget.offsetHeight;
|
|
18
|
+
this.backHeightValue = this.backTarget.offsetHeight;
|
|
19
|
+
this.element.classList.add("flip-ready");
|
|
20
|
+
window.addEventListener("resize", () => {
|
|
21
|
+
this.originalHeightValue = this.frontTarget.offsetHeight;
|
|
22
|
+
this.backHeightValue = this.backTarget.offsetHeight;
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
originalHeightValueChanged() {
|
|
27
|
+
this.element.style.setProperty("--min-height", `${this.originalHeightValue}px`);
|
|
28
|
+
}
|
|
29
|
+
backHeightValueChanged() {
|
|
30
|
+
this.element.style.setProperty("--flipped-min-height", `${this.backHeightValue}px`);
|
|
31
|
+
}
|
|
32
|
+
flip() {
|
|
33
|
+
this.element.classList.toggle("flipped");
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function registerMidwestControllers(application) {
|
|
38
|
+
application.register("midwest-card", Card);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export { Card, registerMidwestControllers };
|
|
42
|
+
//# sourceMappingURL=midwest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"midwest.js","sources":["../../components/midwest/card_component/card_component_controller.ts","midwest/index.ts"],"sourcesContent":["import { Controller } from \"@hotwired/stimulus\";\n\nexport default class Card extends Controller<HTMLFormElement> {\n static targets = [\"back\", \"front\"];\n static values = {\n originalHeight: { type: Number, default: 0 },\n backHeight: { type: Number, default: 0 },\n };\n\n declare readonly hasBackTarget: boolean;\n declare readonly hasFrontTarget: boolean;\n declare readonly backTarget: HTMLInputElement;\n declare readonly backTargets: HTMLInputElement[];\n declare readonly frontTarget: HTMLInputElement;\n declare readonly frontTargets: HTMLInputElement[];\n\n declare originalHeightValue: number;\n declare backHeightValue: number;\n declare readonly hasOriginalHeightValue: boolean;\n declare readonly hasBackHeightValue: boolean;\n\n connect() {\n this.applyReady();\n }\n\n get flippable() {\n return this.element.classList.contains(\"flippable\");\n }\n\n async applyReady() {\n if (this.flippable) {\n this.originalHeightValue = this.frontTarget.offsetHeight;\n this.backHeightValue = this.backTarget.offsetHeight;\n this.element.classList.add(\"flip-ready\");\n\n window.addEventListener(\"resize\", () => {\n this.originalHeightValue = this.frontTarget.offsetHeight;\n this.backHeightValue = this.backTarget.offsetHeight;\n });\n }\n }\n\n originalHeightValueChanged() {\n this.element.style.setProperty(\"--min-height\", `${this.originalHeightValue}px`);\n }\n\n backHeightValueChanged() {\n this.element.style.setProperty(\"--flipped-min-height\", `${this.backHeightValue}px`);\n }\n\n flip() {\n this.element.classList.toggle(\"flipped\");\n }\n}\n","import Card from \"../../../components/midwest/card_component/card_component_controller\";\n/* IMPORTS */\n\nexport { Card };\n\nexport function registerMidwestControllers(application: any) {\n application.register(\"midwest-card\", Card);\n /* EXPORTS */\n}\n"],"names":[],"mappings":";;AAEA,MAAqB,aAAa,UAA4B,CAAA;AAAA,EAC5D,OAAO,OAAA,GAAU,CAAC,MAAA,EAAQ,OAAO,CAAA,CAAA;AAAA,EACjC,OAAO,MAAS,GAAA;AAAA,IACd,cAAgB,EAAA,EAAE,IAAM,EAAA,MAAA,EAAQ,SAAS,CAAE,EAAA;AAAA,IAC3C,UAAY,EAAA,EAAE,IAAM,EAAA,MAAA,EAAQ,SAAS,CAAE,EAAA;AAAA,GACzC,CAAA;AAAA,EAcA,OAAU,GAAA;AACR,IAAA,IAAA,CAAK,UAAW,EAAA,CAAA;AAAA,GAClB;AAAA,EAEA,IAAI,SAAY,GAAA;AACd,IAAA,OAAO,IAAK,CAAA,OAAA,CAAQ,SAAU,CAAA,QAAA,CAAS,WAAW,CAAA,CAAA;AAAA,GACpD;AAAA,EAEA,MAAM,UAAa,GAAA;AACjB,IAAA,IAAI,KAAK,SAAW,EAAA;AAClB,MAAK,IAAA,CAAA,mBAAA,GAAsB,KAAK,WAAY,CAAA,YAAA,CAAA;AAC5C,MAAK,IAAA,CAAA,eAAA,GAAkB,KAAK,UAAW,CAAA,YAAA,CAAA;AACvC,MAAK,IAAA,CAAA,OAAA,CAAQ,SAAU,CAAA,GAAA,CAAI,YAAY,CAAA,CAAA;AAEvC,MAAO,MAAA,CAAA,gBAAA,CAAiB,UAAU,MAAM;AACtC,QAAK,IAAA,CAAA,mBAAA,GAAsB,KAAK,WAAY,CAAA,YAAA,CAAA;AAC5C,QAAK,IAAA,CAAA,eAAA,GAAkB,KAAK,UAAW,CAAA,YAAA,CAAA;AAAA,OACxC,CAAA,CAAA;AAAA,KACH;AAAA,GACF;AAAA,EAEA,0BAA6B,GAAA;AAC3B,IAAA,IAAA,CAAK,QAAQ,KAAM,CAAA,WAAA,CAAY,cAAgB,EAAA,CAAA,EAAG,KAAK,mBAAuB,CAAA,EAAA,CAAA,CAAA,CAAA;AAAA,GAChF;AAAA,EAEA,sBAAyB,GAAA;AACvB,IAAA,IAAA,CAAK,QAAQ,KAAM,CAAA,WAAA,CAAY,sBAAwB,EAAA,CAAA,EAAG,KAAK,eAAmB,CAAA,EAAA,CAAA,CAAA,CAAA;AAAA,GACpF;AAAA,EAEA,IAAO,GAAA;AACL,IAAK,IAAA,CAAA,OAAA,CAAQ,SAAU,CAAA,MAAA,CAAO,SAAS,CAAA,CAAA;AAAA,GACzC;AACF;;AChDO,SAAS,2BAA2B,WAAkB,EAAA;AAC3D,EAAY,WAAA,CAAA,QAAA,CAAS,gBAAgB,IAAI,CAAA,CAAA;AAE3C;;;;"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
@layer tailwindcss.base{
|
|
2
|
-
/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,select:focus,textarea:focus{--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);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}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}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .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}[multiple]{background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#2563eb;display:inline-block;flex-shrink:0;height:1rem;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{--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:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}[type=checkbox]:checked,[type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:#0000}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=checkbox]:indeterminate,[type=radio]:checked:focus,[type=radio]:checked:hover{background-color:currentColor;border-color:#0000}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:#0000}[type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,::backdrop,:after,:before{--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-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:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }}@layer tailwindcss.components{.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where([class~=lead]):not(:where([class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose :where(a):not(:where([class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.prose :where(strong):not(:where([class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.prose :where(ol>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(hr):not(:where([class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.prose :where(blockquote):not(:where([class~=not-prose] *)){border-left-color:var(--tw-prose-quote-borders);border-left-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose :where(h1 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.prose :where(h2 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.prose :where(h3 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.prose :where(h4 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose :where(figcaption):not(:where([class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose :where(code):not(:where([class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(h1 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding:.8571429em 1.1428571em}.prose :where(pre code):not(:where([class~=not-prose] *)){background-color:initial;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.prose :where(pre code):not(:where([class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}.prose :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.prose :where(thead th):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}.prose :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose] *)){vertical-align:initial}.prose :where(tfoot):not(:where([class~=not-prose] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.prose :where(tfoot td):not(:where([class~=not-prose] *)){vertical-align:top}.prose{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:#00000080;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.prose :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.prose :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-sm :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-base :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-lg :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.prose-xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-2xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8333333em;margin-top:.8333333em}.prose-2xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-2xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}}@layer midwest.color-system{:root{--black:rgb(0,0,0,var(--tw-opacity,1));--white:rgb(255,255,255,var(--tw-opacity,1));--gray-0:rgb(246,246,247,var(--tw-opacity,1));--gray-1:rgb(216,219,221,var(--tw-opacity,1));--gray-2:rgb(187,191,195,var(--tw-opacity,1));--gray-3:rgb(158,163,169,var(--tw-opacity,1));--gray-4:rgb(129,135,142,var(--tw-opacity,1));--gray-5:rgb(101,108,115,var(--tw-opacity,1));--gray-6:rgb(73,80,87,var(--tw-opacity,1));--gray-7:rgb(61,67,74,var(--tw-opacity,1));--gray-8:rgb(48,55,61,var(--tw-opacity,1));--gray-9:rgb(37,42,48,var(--tw-opacity,1));--gray-10:rgb(25,29,34,var(--tw-opacity,1));--gray-11:rgb(14,17,19,var(--tw-opacity,1));--gray-12:rgb(3,4,5,var(--tw-opacity,1));--red-0:rgb(255,242,242,var(--tw-opacity,1));--red-1:rgb(255,202,202,var(--tw-opacity,1));--red-2:rgb(255,162,162,var(--tw-opacity,1));--red-3:rgb(255,121,121,var(--tw-opacity,1));--red-4:rgb(252,86,86,var(--tw-opacity,1));--red-5:rgb(238,60,60,var(--tw-opacity,1));--red-6:rgb(220,38,38,var(--tw-opacity,1));--red-7:rgb(198,19,19,var(--tw-opacity,1));--red-8:rgb(171,5,5,var(--tw-opacity,1));--red-9:rgb(134,0,0,var(--tw-opacity,1));--red-10:rgb(94,0,0,var(--tw-opacity,1));--red-11:rgb(53,0,0,var(--tw-opacity,1));--red-12:rgb(13,0,0,var(--tw-opacity,1));--orange-0:rgb(255,246,242,var(--tw-opacity,1));--orange-1:rgb(255,219,202,var(--tw-opacity,1));--orange-2:rgb(255,193,162,var(--tw-opacity,1));--orange-3:rgb(255,169,121,var(--tw-opacity,1));--orange-4:rgb(255,146,81,var(--tw-opacity,1));--orange-5:rgb(255,124,40,var(--tw-opacity,1));--orange-6:rgb(247,103,7,var(--tw-opacity,1));--orange-7:rgb(215,83,0,var(--tw-opacity,1));--orange-8:rgb(174,65,0,var(--tw-opacity,1));--orange-9:rgb(134,48,0,var(--tw-opacity,1));--orange-10:rgb(94,32,0,var(--tw-opacity,1));--orange-11:rgb(53,17,0,var(--tw-opacity,1));--orange-12:rgb(13,4,0,var(--tw-opacity,1));--gold-0:rgb(255,252,242,var(--tw-opacity,1));--gold-1:rgb(255,241,202,var(--tw-opacity,1));--gold-2:rgb(255,229,162,var(--tw-opacity,1));--gold-3:rgb(255,214,121,var(--tw-opacity,1));--gold-4:rgb(255,198,81,var(--tw-opacity,1));--gold-5:rgb(255,179,40,var(--tw-opacity,1));--gold-6:rgb(245,159,0,var(--tw-opacity,1));--gold-7:rgb(215,139,0,var(--tw-opacity,1));--gold-8:rgb(174,117,0,var(--tw-opacity,1));--gold-9:rgb(134,93,0,var(--tw-opacity,1));--gold-10:rgb(94,67,0,var(--tw-opacity,1));--gold-11:rgb(53,40,0,var(--tw-opacity,1));--gold-12:rgb(13,10,0,var(--tw-opacity,1));--yellow-0:rgb(255,255,242,var(--tw-opacity,1));--yellow-1:rgb(255,253,202,var(--tw-opacity,1));--yellow-2:rgb(255,247,162,var(--tw-opacity,1));--yellow-3:rgb(255,239,121,var(--tw-opacity,1));--yellow-4:rgb(255,228,81,var(--tw-opacity,1));--yellow-5:rgb(255,213,46,var(--tw-opacity,1));--yellow-6:rgb(252,196,25,var(--tw-opacity,1));--yellow-7:rgb(215,173,5,var(--tw-opacity,1));--yellow-8:rgb(174,147,0,var(--tw-opacity,1));--yellow-9:rgb(134,118,0,var(--tw-opacity,1));--yellow-10:rgb(94,86,0,var(--tw-opacity,1));--yellow-11:rgb(53,51,0,var(--tw-opacity,1));--yellow-12:rgb(13,13,0,var(--tw-opacity,1));--lime-0:rgb(250,255,242,var(--tw-opacity,1));--lime-1:rgb(232,255,202,var(--tw-opacity,1));--lime-2:rgb(213,255,162,var(--tw-opacity,1));--lime-3:rgb(193,249,121,var(--tw-opacity,1));--lime-4:rgb(173,238,82,var(--tw-opacity,1));--lime-5:rgb(152,222,54,var(--tw-opacity,1));--lime-6:rgb(130,201,30,var(--tw-opacity,1));--lime-7:rgb(112,181,13,var(--tw-opacity,1));--lime-8:rgb(92,157,1,var(--tw-opacity,1));--lime-9:rgb(72,128,0,var(--tw-opacity,1));--lime-10:rgb(51,94,0,var(--tw-opacity,1));--lime-11:rgb(30,53,0,var(--tw-opacity,1));--lime-12:rgb(7,13,0,var(--tw-opacity,1));--green-0:rgb(242,254,245,var(--tw-opacity,1));--green-1:rgb(202,248,214,var(--tw-opacity,1));--green-2:rgb(162,239,184,var(--tw-opacity,1));--green-3:rgb(121,225,155,var(--tw-opacity,1));--green-4:rgb(81,208,127,var(--tw-opacity,1));--green-5:rgb(49,188,100,var(--tw-opacity,1));--green-6:rgb(22,163,74,var(--tw-opacity,1));--green-7:rgb(9,147,60,var(--tw-opacity,1));--green-8:rgb(0,127,46,var(--tw-opacity,1));--green-9:rgb(0,104,34,var(--tw-opacity,1));--green-10:rgb(0,77,23,var(--tw-opacity,1));--green-11:rgb(0,46,12,var(--tw-opacity,1));--green-12:rgb(0,0,0,var(--tw-opacity,1));--teal-0:rgb(242,255,250,var(--tw-opacity,1));--teal-1:rgb(202,255,234,var(--tw-opacity,1));--teal-2:rgb(162,250,216,var(--tw-opacity,1));--teal-3:rgb(121,240,196,var(--tw-opacity,1));--teal-4:rgb(81,226,175,var(--tw-opacity,1));--teal-5:rgb(42,208,153,var(--tw-opacity,1));--teal-6:rgb(16,185,129,var(--tw-opacity,1));--teal-7:rgb(2,168,113,var(--tw-opacity,1));--teal-8:rgb(0,146,95,var(--tw-opacity,1));--teal-9:rgb(0,119,75,var(--tw-opacity,1));--teal-10:rgb(0,89,54,var(--tw-opacity,1));--teal-11:rgb(0,53,32,var(--tw-opacity,1));--teal-12:rgb(0,13,8,var(--tw-opacity,1));--cyan-0:rgb(242,254,255,var(--tw-opacity,1));--cyan-1:rgb(202,249,255,var(--tw-opacity,1));--cyan-2:rgb(162,240,254,var(--tw-opacity,1));--cyan-3:rgb(121,229,247,var(--tw-opacity,1));--cyan-4:rgb(88,214,235,var(--tw-opacity,1));--cyan-5:rgb(61,197,219,var(--tw-opacity,1));--cyan-6:rgb(38,176,199,var(--tw-opacity,1));--cyan-7:rgb(21,156,179,var(--tw-opacity,1));--cyan-8:rgb(8,133,154,var(--tw-opacity,1));--cyan-9:rgb(0,108,126,var(--tw-opacity,1));--cyan-10:rgb(0,79,93,var(--tw-opacity,1));--cyan-11:rgb(0,47,53,var(--tw-opacity,1));--cyan-12:rgb(0,12,13,var(--tw-opacity,1));--blue-0:rgb(242,249,255,var(--tw-opacity,1));--blue-1:rgb(202,229,255,var(--tw-opacity,1));--blue-2:rgb(162,209,255,var(--tw-opacity,1));--blue-3:rgb(121,189,255,var(--tw-opacity,1));--blue-4:rgb(81,168,248,var(--tw-opacity,1));--blue-5:rgb(51,147,234,var(--tw-opacity,1));--blue-6:rgb(28,126,214,var(--tw-opacity,1));--blue-7:rgb(11,107,193,var(--tw-opacity,1));--blue-8:rgb(0,87,167,var(--tw-opacity,1));--blue-9:rgb(0,68,134,var(--tw-opacity,1));--blue-10:rgb(0,47,94,var(--tw-opacity,1));--blue-11:rgb(0,27,53,var(--tw-opacity,1));--blue-12:rgb(0,7,13,var(--tw-opacity,1));--indigo-0:rgb(242,245,255,var(--tw-opacity,1));--indigo-1:rgb(202,216,255,var(--tw-opacity,1));--indigo-2:rgb(162,189,255,var(--tw-opacity,1));--indigo-3:rgb(121,163,255,var(--tw-opacity,1));--indigo-4:rgb(84,140,255,var(--tw-opacity,1));--indigo-5:rgb(58,119,252,var(--tw-opacity,1));--indigo-6:rgb(37,99,235,var(--tw-opacity,1));--indigo-7:rgb(17,78,212,var(--tw-opacity,1));--indigo-8:rgb(3,59,174,var(--tw-opacity,1));--indigo-9:rgb(0,42,134,var(--tw-opacity,1));--indigo-10:rgb(0,27,94,var(--tw-opacity,1));--indigo-11:rgb(0,14,53,var(--tw-opacity,1));--indigo-12:rgb(0,3,13,var(--tw-opacity,1));--violet-0:rgb(250,242,255,var(--tw-opacity,1));--violet-1:rgb(233,202,255,var(--tw-opacity,1));--violet-2:rgb(217,162,255,var(--tw-opacity,1));--violet-3:rgb(200,124,255,var(--tw-opacity,1));--violet-4:rgb(182,95,255,var(--tw-opacity,1));--violet-5:rgb(165,71,250,var(--tw-opacity,1));--violet-6:rgb(147,51,234,var(--tw-opacity,1));--violet-7:rgb(124,30,210,var(--tw-opacity,1));--violet-8:rgb(102,14,174,var(--tw-opacity,1));--violet-9:rgb(78,3,134,var(--tw-opacity,1));--violet-10:rgb(55,0,94,var(--tw-opacity,1));--violet-11:rgb(31,0,53,var(--tw-opacity,1));--violet-12:rgb(8,0,13,var(--tw-opacity,1));--magenta-0:rgb(253,242,255,var(--tw-opacity,1));--magenta-1:rgb(246,203,255,var(--tw-opacity,1));--magenta-2:rgb(236,167,252,var(--tw-opacity,1));--magenta-3:rgb(224,135,245,var(--tw-opacity,1));--magenta-4:rgb(209,107,234,var(--tw-opacity,1));--magenta-5:rgb(193,83,219,var(--tw-opacity,1));--magenta-6:rgb(174,62,201,var(--tw-opacity,1));--magenta-7:rgb(152,42,179,var(--tw-opacity,1));--magenta-8:rgb(129,27,153,var(--tw-opacity,1));--magenta-9:rgb(103,14,124,var(--tw-opacity,1));--magenta-10:rgb(74,6,91,var(--tw-opacity,1));--magenta-11:rgb(44,1,53,var(--tw-opacity,1));--magenta-12:rgb(11,0,13,var(--tw-opacity,1));--pink-0:rgb(255,242,246,var(--tw-opacity,1));--pink-1:rgb(255,202,220,var(--tw-opacity,1));--pink-2:rgb(255,162,195,var(--tw-opacity,1));--pink-3:rgb(255,127,171,var(--tw-opacity,1));--pink-4:rgb(246,97,149,var(--tw-opacity,1));--pink-5:rgb(232,72,128,var(--tw-opacity,1));--pink-6:rgb(214,51,108,var(--tw-opacity,1));--pink-7:rgb(192,32,88,var(--tw-opacity,1));--pink-8:rgb(165,16,68,var(--tw-opacity,1));--pink-9:rgb(134,5,50,var(--tw-opacity,1));--pink-10:rgb(94,0,34,var(--tw-opacity,1));--pink-11:rgb(53,0,18,var(--tw-opacity,1));--pink-12:rgb(13,0,4,var(--tw-opacity,1));--theme-0:var(--blue-0);--theme-1:var(--blue-1);--theme-2:var(--blue-2);--theme-3:var(--blue-3);--theme-4:var(--blue-4);--theme-5:var(--blue-5);--theme-6:var(--blue-6);--theme-7:var(--blue-7);--theme-8:var(--blue-8);--theme-9:var(--blue-9);--theme-10:var(--blue-10);--theme-11:var(--blue-11);--theme-12:var(--blue-12);--complement-0:var(--indigo-0);--complement-1:var(--indigo-1);--complement-2:var(--indigo-2);--complement-3:var(--indigo-3);--complement-4:var(--indigo-4);--complement-5:var(--indigo-5);--complement-6:var(--indigo-6);--complement-7:var(--indigo-7);--complement-8:var(--indigo-8);--complement-9:var(--indigo-9);--complement-10:var(--indigo-10);--complement-11:var(--indigo-11);--complement-12:var(--indigo-12)}*{accent-color:var(--theme-6)}.theme-gray{--theme-0:var(--gray-0);--theme-1:var(--gray-1);--theme-2:var(--gray-2);--theme-3:var(--gray-3);--theme-4:var(--gray-4);--theme-5:var(--gray-5);--theme-6:var(--gray-6);--theme-7:var(--gray-7);--theme-8:var(--gray-8);--theme-9:var(--gray-9);--theme-10:var(--gray-10);--theme-11:var(--gray-11);--theme-12:var(--gray-12)}.theme-red{--theme-0:var(--red-0);--theme-1:var(--red-1);--theme-2:var(--red-2);--theme-3:var(--red-3);--theme-4:var(--red-4);--theme-5:var(--red-5);--theme-6:var(--red-6);--theme-7:var(--red-7);--theme-8:var(--red-8);--theme-9:var(--red-9);--theme-10:var(--red-10);--theme-11:var(--red-11);--theme-12:var(--red-12)}.theme-orange{--theme-0:var(--orange-0);--theme-1:var(--orange-1);--theme-2:var(--orange-2);--theme-3:var(--orange-3);--theme-4:var(--orange-4);--theme-5:var(--orange-5);--theme-6:var(--orange-6);--theme-7:var(--orange-7);--theme-8:var(--orange-8);--theme-9:var(--orange-9);--theme-10:var(--orange-10);--theme-11:var(--orange-11);--theme-12:var(--orange-12)}.theme-gold{--theme-0:var(--gold-0);--theme-1:var(--gold-1);--theme-2:var(--gold-2);--theme-3:var(--gold-3);--theme-4:var(--gold-4);--theme-5:var(--gold-5);--theme-6:var(--gold-6);--theme-7:var(--gold-7);--theme-8:var(--gold-8);--theme-9:var(--gold-9);--theme-10:var(--gold-10);--theme-11:var(--gold-11);--theme-12:var(--gold-12)}.theme-yellow{--theme-0:var(--yellow-0);--theme-1:var(--yellow-1);--theme-2:var(--yellow-2);--theme-3:var(--yellow-3);--theme-4:var(--yellow-4);--theme-5:var(--yellow-5);--theme-6:var(--yellow-6);--theme-7:var(--yellow-7);--theme-8:var(--yellow-8);--theme-9:var(--yellow-9);--theme-10:var(--yellow-10);--theme-11:var(--yellow-11);--theme-12:var(--yellow-12)}.theme-lime{--theme-0:var(--lime-0);--theme-1:var(--lime-1);--theme-2:var(--lime-2);--theme-3:var(--lime-3);--theme-4:var(--lime-4);--theme-5:var(--lime-5);--theme-6:var(--lime-6);--theme-7:var(--lime-7);--theme-8:var(--lime-8);--theme-9:var(--lime-9);--theme-10:var(--lime-10);--theme-11:var(--lime-11);--theme-12:var(--lime-12)}.theme-green{--theme-0:var(--green-0);--theme-1:var(--green-1);--theme-2:var(--green-2);--theme-3:var(--green-3);--theme-4:var(--green-4);--theme-5:var(--green-5);--theme-6:var(--green-6);--theme-7:var(--green-7);--theme-8:var(--green-8);--theme-9:var(--green-9);--theme-10:var(--green-10);--theme-11:var(--green-11);--theme-12:var(--green-12)}.theme-teal{--theme-0:var(--teal-0);--theme-1:var(--teal-1);--theme-2:var(--teal-2);--theme-3:var(--teal-3);--theme-4:var(--teal-4);--theme-5:var(--teal-5);--theme-6:var(--teal-6);--theme-7:var(--teal-7);--theme-8:var(--teal-8);--theme-9:var(--teal-9);--theme-10:var(--teal-10);--theme-11:var(--teal-11);--theme-12:var(--teal-12)}.theme-cyan{--theme-0:var(--cyan-0);--theme-1:var(--cyan-1);--theme-2:var(--cyan-2);--theme-3:var(--cyan-3);--theme-4:var(--cyan-4);--theme-5:var(--cyan-5);--theme-6:var(--cyan-6);--theme-7:var(--cyan-7);--theme-8:var(--cyan-8);--theme-9:var(--cyan-9);--theme-10:var(--cyan-10);--theme-11:var(--cyan-11);--theme-12:var(--cyan-12)}.theme-blue{--theme-0:var(--blue-0);--theme-1:var(--blue-1);--theme-2:var(--blue-2);--theme-3:var(--blue-3);--theme-4:var(--blue-4);--theme-5:var(--blue-5);--theme-6:var(--blue-6);--theme-7:var(--blue-7);--theme-8:var(--blue-8);--theme-9:var(--blue-9);--theme-10:var(--blue-10);--theme-11:var(--blue-11);--theme-12:var(--blue-12)}.theme-indigo{--theme-0:var(--indigo-0);--theme-1:var(--indigo-1);--theme-2:var(--indigo-2);--theme-3:var(--indigo-3);--theme-4:var(--indigo-4);--theme-5:var(--indigo-5);--theme-6:var(--indigo-6);--theme-7:var(--indigo-7);--theme-8:var(--indigo-8);--theme-9:var(--indigo-9);--theme-10:var(--indigo-10);--theme-11:var(--indigo-11);--theme-12:var(--indigo-12)}.theme-violet{--theme-0:var(--violet-0);--theme-1:var(--violet-1);--theme-2:var(--violet-2);--theme-3:var(--violet-3);--theme-4:var(--violet-4);--theme-5:var(--violet-5);--theme-6:var(--violet-6);--theme-7:var(--violet-7);--theme-8:var(--violet-8);--theme-9:var(--violet-9);--theme-10:var(--violet-10);--theme-11:var(--violet-11);--theme-12:var(--violet-12)}.theme-magenta{--theme-0:var(--magenta-0);--theme-1:var(--magenta-1);--theme-2:var(--magenta-2);--theme-3:var(--magenta-3);--theme-4:var(--magenta-4);--theme-5:var(--magenta-5);--theme-6:var(--magenta-6);--theme-7:var(--magenta-7);--theme-8:var(--magenta-8);--theme-9:var(--magenta-9);--theme-10:var(--magenta-10);--theme-11:var(--magenta-11);--theme-12:var(--magenta-12)}.theme-pink{--theme-0:var(--pink-0);--theme-1:var(--pink-1);--theme-2:var(--pink-2);--theme-3:var(--pink-3);--theme-4:var(--pink-4);--theme-5:var(--pink-5);--theme-6:var(--pink-6);--theme-7:var(--pink-7);--theme-8:var(--pink-8);--theme-9:var(--pink-9);--theme-10:var(--pink-10);--theme-11:var(--pink-11);--theme-12:var(--pink-12)}.complement-gray{--complement-0:var(--gray-0);--complement-1:var(--gray-1);--complement-2:var(--gray-2);--complement-3:var(--gray-3);--complement-4:var(--gray-4);--complement-5:var(--gray-5);--complement-6:var(--gray-6);--complement-7:var(--gray-7);--complement-8:var(--gray-8);--complement-9:var(--gray-9);--complement-10:var(--gray-10);--complement-11:var(--gray-11);--complement-12:var(--gray-12)}.complement-red{--complement-0:var(--red-0);--complement-1:var(--red-1);--complement-2:var(--red-2);--complement-3:var(--red-3);--complement-4:var(--red-4);--complement-5:var(--red-5);--complement-6:var(--red-6);--complement-7:var(--red-7);--complement-8:var(--red-8);--complement-9:var(--red-9);--complement-10:var(--red-10);--complement-11:var(--red-11);--complement-12:var(--red-12)}.complement-orange{--complement-0:var(--orange-0);--complement-1:var(--orange-1);--complement-2:var(--orange-2);--complement-3:var(--orange-3);--complement-4:var(--orange-4);--complement-5:var(--orange-5);--complement-6:var(--orange-6);--complement-7:var(--orange-7);--complement-8:var(--orange-8);--complement-9:var(--orange-9);--complement-10:var(--orange-10);--complement-11:var(--orange-11);--complement-12:var(--orange-12)}.complement-gold{--complement-0:var(--gold-0);--complement-1:var(--gold-1);--complement-2:var(--gold-2);--complement-3:var(--gold-3);--complement-4:var(--gold-4);--complement-5:var(--gold-5);--complement-6:var(--gold-6);--complement-7:var(--gold-7);--complement-8:var(--gold-8);--complement-9:var(--gold-9);--complement-10:var(--gold-10);--complement-11:var(--gold-11);--complement-12:var(--gold-12)}.complement-yellow{--complement-0:var(--yellow-0);--complement-1:var(--yellow-1);--complement-2:var(--yellow-2);--complement-3:var(--yellow-3);--complement-4:var(--yellow-4);--complement-5:var(--yellow-5);--complement-6:var(--yellow-6);--complement-7:var(--yellow-7);--complement-8:var(--yellow-8);--complement-9:var(--yellow-9);--complement-10:var(--yellow-10);--complement-11:var(--yellow-11);--complement-12:var(--yellow-12)}.complement-lime{--complement-0:var(--lime-0);--complement-1:var(--lime-1);--complement-2:var(--lime-2);--complement-3:var(--lime-3);--complement-4:var(--lime-4);--complement-5:var(--lime-5);--complement-6:var(--lime-6);--complement-7:var(--lime-7);--complement-8:var(--lime-8);--complement-9:var(--lime-9);--complement-10:var(--lime-10);--complement-11:var(--lime-11);--complement-12:var(--lime-12)}.complement-green{--complement-0:var(--green-0);--complement-1:var(--green-1);--complement-2:var(--green-2);--complement-3:var(--green-3);--complement-4:var(--green-4);--complement-5:var(--green-5);--complement-6:var(--green-6);--complement-7:var(--green-7);--complement-8:var(--green-8);--complement-9:var(--green-9);--complement-10:var(--green-10);--complement-11:var(--green-11);--complement-12:var(--green-12)}.complement-teal{--complement-0:var(--teal-0);--complement-1:var(--teal-1);--complement-2:var(--teal-2);--complement-3:var(--teal-3);--complement-4:var(--teal-4);--complement-5:var(--teal-5);--complement-6:var(--teal-6);--complement-7:var(--teal-7);--complement-8:var(--teal-8);--complement-9:var(--teal-9);--complement-10:var(--teal-10);--complement-11:var(--teal-11);--complement-12:var(--teal-12)}.complement-cyan{--complement-0:var(--cyan-0);--complement-1:var(--cyan-1);--complement-2:var(--cyan-2);--complement-3:var(--cyan-3);--complement-4:var(--cyan-4);--complement-5:var(--cyan-5);--complement-6:var(--cyan-6);--complement-7:var(--cyan-7);--complement-8:var(--cyan-8);--complement-9:var(--cyan-9);--complement-10:var(--cyan-10);--complement-11:var(--cyan-11);--complement-12:var(--cyan-12)}.complement-blue{--complement-0:var(--blue-0);--complement-1:var(--blue-1);--complement-2:var(--blue-2);--complement-3:var(--blue-3);--complement-4:var(--blue-4);--complement-5:var(--blue-5);--complement-6:var(--blue-6);--complement-7:var(--blue-7);--complement-8:var(--blue-8);--complement-9:var(--blue-9);--complement-10:var(--blue-10);--complement-11:var(--blue-11);--complement-12:var(--blue-12)}.complement-indigo{--complement-0:var(--indigo-0);--complement-1:var(--indigo-1);--complement-2:var(--indigo-2);--complement-3:var(--indigo-3);--complement-4:var(--indigo-4);--complement-5:var(--indigo-5);--complement-6:var(--indigo-6);--complement-7:var(--indigo-7);--complement-8:var(--indigo-8);--complement-9:var(--indigo-9);--complement-10:var(--indigo-10);--complement-11:var(--indigo-11);--complement-12:var(--indigo-12)}.complement-violet{--complement-0:var(--violet-0);--complement-1:var(--violet-1);--complement-2:var(--violet-2);--complement-3:var(--violet-3);--complement-4:var(--violet-4);--complement-5:var(--violet-5);--complement-6:var(--violet-6);--complement-7:var(--violet-7);--complement-8:var(--violet-8);--complement-9:var(--violet-9);--complement-10:var(--violet-10);--complement-11:var(--violet-11);--complement-12:var(--violet-12)}.complement-magenta{--complement-0:var(--magenta-0);--complement-1:var(--magenta-1);--complement-2:var(--magenta-2);--complement-3:var(--magenta-3);--complement-4:var(--magenta-4);--complement-5:var(--magenta-5);--complement-6:var(--magenta-6);--complement-7:var(--magenta-7);--complement-8:var(--magenta-8);--complement-9:var(--magenta-9);--complement-10:var(--magenta-10);--complement-11:var(--magenta-11);--complement-12:var(--magenta-12)}.complement-pink{--complement-0:var(--pink-0);--complement-1:var(--pink-1);--complement-2:var(--pink-2);--complement-3:var(--pink-3);--complement-4:var(--pink-4);--complement-5:var(--pink-5);--complement-6:var(--pink-6);--complement-7:var(--pink-7);--complement-8:var(--pink-8);--complement-9:var(--pink-9);--complement-10:var(--pink-10);--complement-11:var(--pink-11);--complement-12:var(--pink-12)}}@layer midwest.responsive{html{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto;font-size:.625rem!important;font-variant-numeric:tabular-nums;letter-spacing:.02em;scroll-behavior:smooth;scroll-padding:4rem}@media (min-width:400px){html{font-size:.6875rem!important}}@media (min-width:600px){html{font-size:.75rem!important}}@media (min-width:800px){html{font-size:.8125rem!important}}@media (min-width:1000px){html{font-size:.875rem!important}}@media (min-width:1200px){html{font-size:.9375rem}}@media (min-width:1400px){html{font-size:1rem}}}@layer midwest.dark-mode{html{background-color:var(--gray-0);color:var(--gray-10)}.dark html{background-color:var(--gray-12);color:var(--gray-2)}html.dark{background-color:var(--gray-12)!important;color:var(--gray-2)!important}h1,h2,h3,h4,h5,h6,label,p{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dark h1,.dark h2,.dark h3,.dark h4,.dark h5,.dark h6,.dark label,.dark p{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}p{color:var(--gray-10)}.dark p{color:var(--gray-2)}}@layer midwest.typography{h1{font-size:3.75rem}h1,h2{font-weight:700;letter-spacing:.025em;line-height:1}h2{font-size:3rem}h3{font-size:2.25rem;line-height:2.5rem;line-height:1}h3,h4{font-weight:700;letter-spacing:.025em}h4{font-size:1.875rem;line-height:2.25rem;line-height:1}h5{font-size:1.5rem;letter-spacing:.025em;line-height:2rem;line-height:1}h5,h6,label{font-weight:700}h6,label{font-size:1.25rem;letter-spacing:.05em;line-height:1.75rem;line-height:1;text-transform:uppercase}p{font-size:1.125rem;line-height:1.75rem;line-height:1.375}}@layer midwest.badge{.midwest-badge{background:var(--theme-7,var(--gray-7));border:1px solid var(--theme-7,var(--gray-7));border-radius:1.5rem;color:var(--theme-0,var(--gray-0));display:inline-flex;font-size:.875rem;font-weight:700;letter-spacing:.05em;line-height:1.25rem;line-height:1.375;padding:2px .75em;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.midwest-badge.has-support{gap:.5rem;padding:2px .75em 2px 2px}.midwest-badge.has-support>.support{background:var(--theme-0,var(--gray-0));border-bottom-left-radius:1.5rem;border-top-left-radius:1.5rem;color:var(--theme-12,var(--gray-12));padding:0 .25rem 0 .5rem}.midwest-badge.theme-lime,.midwest-badge.theme-yellow,:is(.theme-yellow,.theme-lime) .midwest-badge{background:var(--theme-6,var(--gray-6));border:1px solid var(--theme-6,var(--gray-6));color:var(--theme-11,var(--gray-11))}.midwest-badge.size-sm{font-size:.75rem;line-height:1rem}.midwest-badge.size-lg{font-size:1rem;line-height:1.5rem}}@layer midwest.card{.midwest-card{container-type:inline-size;container-name:midwest-card;--border:1px solid var(--gray-1);--background:var(--white);--background-active:var(--theme-0);--flipped-background:var(--white);--flipped-min-height:var(--flipped-min-height,20rem);--flipped-transition:none;--border-radius:0.5rem;--padding:2rem;--min-height:10rem;--card-width:auto;-webkit-appearance:none;border-radius:var(--border-radius);display:block;height:auto}.midwest-card,.midwest-card>.wrap{-moz-appearance:none;appearance:none;background:var(--background)}.midwest-card>.wrap{-webkit-appearance:none!important;border:var(--border)!important;border-radius:var(--border-radius);color:inherit;display:grid;font-size:inherit;grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto;height:100%;min-height:var(--min-height);outline:none;padding:0;text-align:inherit;text-decoration:none;width:var(--card-width)}.midwest-card>.wrap footer,.midwest-card>.wrap header{border-bottom:var(--border)!important;border-radius:var(--border-radius) var(--border-radius) 0 0;grid-area:header!important;max-width:calc(var(--card-width) - 2px);padding:1rem var(--padding);width:calc(var(--card-width) - 2px)}.midwest-card>.wrap footer.flex,.midwest-card>.wrap header.flex{align-items:center;gap:1rem;justify-content:space-between}.midwest-card>.wrap footer.flush,.midwest-card>.wrap header.flush{border-bottom:0!important;padding-bottom:0}.midwest-card>.wrap footer.sticky,.midwest-card>.wrap header.sticky{position:sticky;top:0;z-index:999999}.midwest-card>.wrap :is(.wrap,.front,.back) :not(.wrap,.front,.back),.midwest-card>.wrap section{grid-area:section;max-width:calc(var(--card-width) - var(--padding)*2)}.midwest-card>.wrap :is(.wrap,.front,.back) :not(.wrap,.front,.back).flush,.midwest-card>.wrap section.flush{grid-column:1/span 3;grid-row:2/span 3;max-width:100%!important;padding:1rem;width:100%!important}.midwest-card>.wrap footer{border-bottom:0!important;border-radius:0 0 var(--border-radius) var(--border-radius);border-top:var(--border)!important;grid-area:footer!important}.midwest-card.horizontal>.wrap{grid-auto-flow:row;overflow:hidden}.midwest-card.horizontal>.wrap,.midwest-card.horizontal>.wrap>.back,.midwest-card.horizontal>.wrap>.front{grid-template-areas:"header . . ." "header . . ." "header . section ." "header . . ." "footer footer footer footer";grid-template-columns:var(--header-width,auto) var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.horizontal header{border-bottom:0!important;border-radius:var(--border-radius) 0 0 var(--border-radius);width:100%}.midwest-card.horizontal header.flush{padding:0!important}.midwest-card.horizontal section{margin:auto;width:100%}.midwest-card.flippable{background:#0000;perspective:3000px}.midwest-card.flippable.flip-ready>.wrap{transition:all .5s var(--ease,ease-in-out) 0s,background-color 0s ease 0s}.midwest-card.flippable>.wrap{background:var(--background);display:block}.midwest-card.flippable>.wrap>.back,.midwest-card.flippable>.wrap>.front{display:grid;grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto;height:auto;min-height:var(--min-height);padding:0}.midwest-card.flippable>.wrap>.front{-webkit-backface-visibility:hidden;backface-visibility:hidden;height:100%;opacity:1;z-index:1}.midwest-card.flippable>.wrap>.back{height:-moz-min-content;height:min-content;left:0;opacity:0;overflow-y:none;pointer-events:none;position:absolute;top:0;transform:rotateY(180deg);width:100%;z-index:0}.midwest-card.flippable>.wrap>.back *{-webkit-backface-visibility:hidden;backface-visibility:hidden}.midwest-card.flippable>.wrap>.back section{height:calc(100% + var(--padding))}.midwest-card.flippable.horizontal.flippable>.wrap>.back,.midwest-card.flippable.horizontal.flippable>.wrap>.front{grid-template-areas:"header . . ." "header . . ." "header . section ." "header . . ." "footer footer footer footer";grid-template-columns:var(--header-width,auto) var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.flippable.flip-ready>.wrap>.front{transition:min-height .35s linear 0s,opacity .15s linear .3s!important}.midwest-card.flippable.flip-ready>.wrap>.back{transition:min-height .35s linear 0s,opacity .15s linear 0s!important}.midwest-card.flippable.flipped{--background:var(--flipped-background,#fff)!important;--min-height:var(--flipped-min-height)!important;z-index:1}.midwest-card.flippable.flipped>.wrap{min-height:var(--min-height);transform:rotateY(180deg)}.midwest-card.flippable.flipped>.wrap>.back,.midwest-card.flippable.flipped>.wrap>.front{min-height:var(--min-height)}.midwest-card.flippable.flipped>.wrap>.front{opacity:0;pointer-events:none;transition:min-height .35s linear 0s,opacity .15s linear 0s!important}.midwest-card.flippable.flipped>.wrap>.back{opacity:1;overflow-y:initial;pointer-events:auto;transition:min-height .35s linear 0s,opacity .15s linear .3s!important}:is(.dark) .midwest-card{--border:1px solid var(--gray-9);--background:var(--gray-11);--background-active:var(--gray-11);--flipped-background:var(--gray-11)}@media screen and (prefers-reduced-motion:reduce){.midwest-card.flippable.flip-ready>.wrap{transition:none}.midwest-card.flippable.flip-ready.flipped>.wrap>.front,.midwest-card.flippable.flip-ready>.wrap>.back,.midwest-card.flippable.flip-ready>.wrap>.front{transition:none!important}}@container midwest-card (max-width: 350px){.midwest-card>.wrap{--padding:1rem!important}.midwest-card>.wrap footer.flex,.midwest-card>.wrap header.flex{flex-direction:column}.midwest-card.horizontal>.wrap,.midwest-card.horizontal>.wrap .back,.midwest-card.horizontal>.wrap .front{grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.horizontal>header{border-radius:var(--border-radius) var(--border-radius) 0 0}}}@layer midwest.icon{.midwest-icon{fill:currentColor;box-sizing:initial!important;color:currentColor;contain:strict;content-visibility:auto;display:inline-block;font-size:1rem;height:1em;width:1em}.midwest-icon>.icon-inner,.midwest-icon>.icon-inner>svg{display:block;height:100%;width:100%}}@layer midwest.grid{.midwest-grid{display:flex;display:grid;flex-wrap:wrap;position:relative}@layer midwest.card{.midwest-card>.wrap footer.midwest-grid,.midwest-card>.wrap header.midwest-grid{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer.midwest-grid,.midwest-card>.wrap header.midwest-grid{flex-direction:column}}}.midwest-grid{--grid-width:200px;--grid-gap:2rem;grid-gap:var(--grid-gap);grid-template-columns:repeat(auto-fit,minmax(var(--grid-width),1fr))}.midwest-grid.padding-match-gap{padding:var(--grid-gap)}}@layer midwest.layout{.midwest-layout{container-type:inline-size;container-name:midwest-layout;--layout-grid-gap:1rem;--layout-padding:2rem;--layout-width:calc(100% - var(--layout-grid-gap)*2);--xs-layout:420px;--sm-layout:800px;--md-layout:1024px;--lg-layout:1200px;display:grid;position:relative}.midwest-layout>.wrapper{grid-gap:var(--layout-grid-gap,2rem);display:grid;grid-template-columns:var(--layout,1fr);margin:0 auto;max-width:var(--md-layout);min-height:0;min-width:0;padding:var(--layout-padding) 0;width:var(--layout-width)}.midwest-layout>.wrapper>*{min-width:0}.midwest-layout.size-xs>.wrapper{max-width:var(--xs-layout)}.midwest-layout.size-sm>.wrapper{max-width:var(--sm-layout)}.midwest-layout.size-lg>.wrapper{max-width:var(--lg-layout)}.midwest-layout.size-full>.wrapper{max-width:100%}.midwest-layout.size-flush>.wrapper{max-width:100%;width:100%}.midwest-layout.padding-none{--layout-padding:0;--layout-grid-gap:0}.midwest-layout.padding-xs{--layout-padding:0.5rem;--layout-grid-gap:0.25rem}.midwest-layout.padding-sm{--layout-padding:1rem;--layout-grid-gap:0.5rem}.midwest-layout.padding-lg{--layout-padding:3rem;--layout-grid-gap:6rem}.midwest-layout.has-nav>.wrapper{padding-bottom:0}.midwest-layout.has-nav>.wrapper>nav{margin-top:calc(var(--layout-padding)/2)}.midwest-layout[class*=-flipped] aside{order:9999}@container midwest-layout (min-width: 700px){.type-default>.wrapper{--layout:1fr!important}.type-one-third>.wrapper{--layout:1fr 2fr!important}.type-one-third-flipped>.wrapper{--layout:2fr 1fr!important}.type-sidebar>.wrapper{--layout:1fr 4fr!important}.type-sidebar-flipped>.wrapper{--layout:4fr 1fr!important}.type-locked-sidebar>.wrapper{--layout:var(--layout-sidebar-width,16rem) 1fr!important}.type-locked-sidebar-flipped>.wrapper{--layout:1fr var(--layout-sidebar-width,16rem)!important}.type-supporting-content>.wrapper{--layout:4fr 6fr!important}.type-supporting-content-flipped>.wrapper{--layout:6fr 4fr!important}.type-half>.wrapper{--layout:1fr 1fr!important}}}@layer midwest.prose{.midwest-prose{display:block;text-align:left}.dark .midwest-prose a,.midwest-prose a{color:var(--theme-6)}.midwest-prose>*{margin-bottom:.125em!important}.midwest-prose>h1+p,.midwest-prose>h2+p,.midwest-prose>h3+p,.midwest-prose>h4+p,.midwest-prose>h5+p,.midwest-prose>h6+p{margin-top:.5rem!important}.midwest-prose>p+h1,.midwest-prose>p+h2,.midwest-prose>p+h3,.midwest-prose>p+h4,.midwest-prose>p+h5,.midwest-prose>p+h6{margin-top:2rem!important}.midwest-prose>:last-child{margin-bottom:0!important}.midwest-prose>.midwest-button,.midwest-prose>dl{margin-top:1rem!important}blockquote{border-color:var(--theme-6)}blockquote p{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dark blockquote p{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.midwest-prose[clamp]{-webkit-line-clamp:var(--clamp,3);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}}@layer midwest.input{.midwest-input :is(input,textarea){--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);border-color:var(--gray-1);border-radius:.375rem;border-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:block;width:100%}.midwest-input :is(input,textarea):focus{--tw-ring-color:var(--theme-6);border-color:var(--theme-6)}.dark .midwest-input :is(input,textarea){--tw-text-opacity:1;background-color:var(--gray-10);border-color:var(--gray-9);color:rgb(255 255 255/var(--tw-text-opacity))}.dark .midwest-input :is(input,textarea)::-moz-placeholder{color:var(--gray-4)}.dark .midwest-input :is(input,textarea)::placeholder{color:var(--gray-4)}.dark .midwest-input :is(input,textarea):focus{--tw-ring-color:var(--theme-7);border-color:var(--theme-7)}@media (min-width:640px){.midwest-input :is(input,textarea){font-size:1.125rem;line-height:1.75rem}}.midwest-input :is(input,textarea):disabled{background-color:var(--gray-1);border-color:var(--gray-2);color:var(--gray-6);cursor:not-allowed}.dark .midwest-input :is(input,textarea):disabled{background-color:var(--gray-12);border-color:var(--gray-10);color:var(--gray-6)}.midwest-input__bottom,.midwest-input__top{display:flex;flex-wrap:wrap;gap:.25rem;justify-content:space-between;width:100%}@layer midwest.card{.midwest-card>.wrap footer .midwest-input__bottom,.midwest-card>.wrap footer.midwest-input__top,.midwest-card>.wrap header .midwest-input__bottom,.midwest-card>.wrap header.midwest-input__top{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer .midwest-input__bottom,.midwest-card>.wrap footer.midwest-input__top,.midwest-card>.wrap header .midwest-input__bottom,.midwest-card>.wrap header.midwest-input__top{flex-direction:column}}}.midwest-input__top{margin-bottom:.25rem}.midwest-input__bottom{margin-top:.25rem}.midwest-input.has-error :is(input,textarea){border-color:var(--theme-6);color:var(--theme-8)}.dark .midwest-input.has-error :is(input,textarea){border-color:var(--theme-6);color:var(--theme-4)}.midwest-input.inline :is(input,textarea){--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;border-color:var(--gray-2);border-radius:0;border-width:0 0 2px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.midwest-input.inline :is(input,textarea):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(var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:var(--theme-6);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.midwest-input.type-hidden{display:contents}}@layer midwest.label{.midwest-label{align-items:center;color:var(--gray-12);display:flex;font-size:1rem;font-weight:700;gap:.5rem;letter-spacing:.05em;line-height:1.5rem}@layer midwest.card{.midwest-card>.wrap footer.midwest-label,.midwest-card>.wrap header.midwest-label{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer.midwest-label,.midwest-card>.wrap header.midwest-label{flex-direction:column}}}.dark .midwest-label{color:var(--gray-0)}.midwest-label.description{color:var(--gray-4);font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1rem;text-transform:none}.dark .midwest-label.description{color:var(--gray-4)}.midwest-label.error{color:var(--theme-6)}.midwest-label.error .midwest-icon{color:var(--theme-7);font-size:1.125rem;line-height:1.75rem}}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.pointer-events-none{pointer-events:none}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.bottom-0{bottom:0}.right-0{right:0}.top-0{top:0}.left-0{left:0}.z-10{z-index:10}.order-last{order:9999}.order-3{order:3}.col-span-full{grid-column:1/-1}.m-8{margin:2rem}.m-auto{margin:auto}.-m-3{margin:-.75rem}.-my-2{margin-bottom:-.5rem;margin-top:-.5rem}.mx-auto{margin-left:auto;margin-right:auto}.mb-0{margin-bottom:0}.mb-4{margin-bottom:1rem}.-mr-2{margin-right:-.5rem}.ml-2{margin-left:.5rem}.ml-8{margin-left:2rem}.mt-6{margin-top:1.5rem}.ml-3{margin-left:.75rem}.mt-5{margin-top:1.25rem}.mr-4{margin-right:1rem}.ml-4{margin-left:1rem}.mb-2{margin-bottom:.5rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.ml-5{margin-left:1.25rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-full{height:100%}.h-fit{height:-moz-fit-content;height:fit-content}.h-32{height:8rem}.h-48{height:12rem}.h-8{height:2rem}.h-6{height:1.5rem}.h-16{height:4rem}.h-5{height:1.25rem}.min-h-screen{min-height:100vh}.w-full{width:100%}.w-32{width:8rem}.w-36{width:9rem}.w-96{width:24rem}.w-auto{width:auto}.w-6{width:1.5rem}.w-5{width:1.25rem}.w-0{width:0}.min-w-full{min-width:100%}.max-w-6xl{max-width:72rem}.max-w-0{max-width:0}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.origin-top-right{transform-origin:top right}.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))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.place-content-center{place-content:center}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-4{gap:1rem}.gap-8{gap:2rem}.gap-y-8{row-gap:2rem}.gap-y-4{row-gap:1rem}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.space-x-10>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2.5rem*var(--tw-space-x-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.divide-y-2>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(2px*var(--tw-divide-y-reverse));border-top-width:calc(2px*(1 - var(--tw-divide-y-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-theme-8>:not([hidden])~:not([hidden]){border-color:var(--theme-8)}.divide-gray-2>:not([hidden])~:not([hidden]){border-color:var(--gray-2)}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.rounded-md{border-radius:.375rem}.rounded{border-radius:.25rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-transparent{border-color:#0000}.border-theme-0{border-color:var(--theme-0)}.border-theme-1{border-color:var(--theme-1)}.border-theme-2{border-color:var(--theme-2)}.border-theme-3{border-color:var(--theme-3)}.border-theme-4{border-color:var(--theme-4)}.border-theme-5{border-color:var(--theme-5)}.border-theme-6{border-color:var(--theme-6)}.border-theme-7{border-color:var(--theme-7)}.border-theme-8{border-color:var(--theme-8)}.border-theme-9{border-color:var(--theme-9)}.border-theme-10{border-color:var(--theme-10)}.border-theme-11{border-color:var(--theme-11)}.border-theme-12{border-color:var(--theme-12)}.border-gray-2{border-color:var(--gray-2)}.border-gray-3{border-color:var(--gray-3)}.bg-theme-0{background-color:var(--theme-0)}.bg-theme-6{background-color:var(--theme-6)}.bg-theme-1{background-color:var(--theme-1)}.bg-theme-2{background-color:var(--theme-2)}.bg-theme-3{background-color:var(--theme-3)}.bg-theme-4{background-color:var(--theme-4)}.bg-theme-5{background-color:var(--theme-5)}.bg-theme-7{background-color:var(--theme-7)}.bg-theme-8{background-color:var(--theme-8)}.bg-theme-9{background-color:var(--theme-9)}.bg-theme-10{background-color:var(--theme-10)}.bg-theme-11{background-color:var(--theme-11)}.bg-theme-12{background-color:var(--theme-12)}.bg-complement-0{background-color:var(--complement-0)}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bg-complement-1{background-color:var(--complement-1)}.bg-complement-2{background-color:var(--complement-2)}.bg-complement-3{background-color:var(--complement-3)}.bg-complement-4{background-color:var(--complement-4)}.bg-complement-5{background-color:var(--complement-5)}.bg-complement-6{background-color:var(--complement-6)}.bg-complement-7{background-color:var(--complement-7)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-complement-8{background-color:var(--complement-8)}.bg-complement-9{background-color:var(--complement-9)}.bg-complement-10{background-color:var(--complement-10)}.bg-complement-11{background-color:var(--complement-11)}.bg-complement-12{background-color:var(--complement-12)}.bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--tw-gradient-stops))}.bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--tw-gradient-stops))}.from-theme-6{--tw-gradient-from:var(--theme-6);--tw-gradient-to:#fff0;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.to-complement-6{--tw-gradient-to:var(--complement-6)}.fill-gray-0{fill:var(--gray-0)}.fill-theme-8{fill:var(--theme-8)}.fill-theme-2{fill:var(--theme-2)}.fill-theme-4{fill:var(--theme-4)}.fill-theme-6{fill:var(--theme-6)}.fill-theme-10{fill:var(--theme-10)}.fill-theme-3{fill:var(--theme-3)}.fill-theme-5{fill:var(--theme-5)}.fill-complement-6{fill:var(--complement-6)}.fill-complement-5{fill:var(--complement-5)}.stroke-gray-1{stroke:var(--gray-1)}.stroke-theme-12{stroke:var(--theme-12)}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.p-2{padding:.5rem}.p-8{padding:2rem}.p-3{padding:.75rem}.p-1{padding:.25rem}.p-4{padding:1rem}.px-4{padding-left:1rem;padding-right:1rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-0{padding-bottom:0;padding-top:0}.pl-4{padding-left:1rem}.pr-8{padding-right:2rem}.pt-5{padding-top:1.25rem}.pb-6{padding-bottom:1.5rem}.pb-4{padding-bottom:1rem}.pt-6{padding-top:1.5rem}.pl-8{padding-left:2rem}.pr-3{padding-right:.75rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-sm{font-size:.875rem;line-height:1.25rem}.text-6xl{font-size:3.75rem;line-height:1}.text-base{font-size:1rem;line-height:1.5rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-xs{font-size:.75rem;line-height:1rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.font-medium{font-weight:500}.font-bold{font-weight:700}.font-semibold{font-weight:600}.capitalize{text-transform:capitalize}.leading-6{line-height:1.5rem}.text-theme-7{color:var(--theme-7)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-theme-12{color:var(--theme-12)}.text-theme-0{color:var(--theme-0)}.text-complement-12{color:var(--complement-12)}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-theme-1{color:var(--theme-1)}.text-theme-2{color:var(--theme-2)}.text-theme-3{color:var(--theme-3)}.text-theme-4{color:var(--theme-4)}.text-theme-5{color:var(--theme-5)}.text-complement-0{color:var(--complement-0)}.text-theme-6{color:var(--theme-6)}.text-theme-8{color:var(--theme-8)}.text-theme-9{color:var(--theme-9)}.text-theme-10{color:var(--theme-10)}.text-theme-11{color:var(--theme-11)}.text-gray-5{color:var(--gray-5)}.text-gray-6{color:var(--gray-6)}.text-gray-3{color:var(--gray-3)}.text-gray-12{color:var(--gray-12)}.text-gray-4{color:var(--gray-4)}.text-gray-9{color:var(--gray-9)}.text-gray-7{color:var(--gray-7)}.underline{text-decoration-line:underline}.no-underline{text-decoration-line:none}.placeholder-gray-5::-moz-placeholder{color:var(--gray-5)}.placeholder-gray-5::placeholder{color:var(--gray-5)}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-lg,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.outline-theme-0{outline-color:var(--theme-0)}.outline-theme-1{outline-color:var(--theme-1)}.outline-theme-2{outline-color:var(--theme-2)}.outline-theme-3{outline-color:var(--theme-3)}.outline-theme-4{outline-color:var(--theme-4)}.outline-theme-5{outline-color:var(--theme-5)}.outline-theme-6{outline-color:var(--theme-6)}.outline-theme-7{outline-color:var(--theme-7)}.outline-theme-8{outline-color:var(--theme-8)}.outline-theme-9{outline-color:var(--theme-9)}.outline-theme-10{outline-color:var(--theme-10)}.outline-theme-11{outline-color:var(--theme-11)}.outline-theme-12{outline-color:var(--theme-12)}.ring-1{--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:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgb(0 0 0/var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity:0.05}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.focus-within\:text-gray-6:focus-within{color:var(--gray-6)}.hover\:bg-theme-1:hover{background-color:var(--theme-1)}.hover\:bg-theme-6:hover{background-color:var(--theme-6)}.hover\:bg-gray-1:hover{background-color:var(--gray-1)}.hover\:bg-theme-8:hover{background-color:var(--theme-8)}.hover\:bg-theme-7:hover{background-color:var(--theme-7)}.hover\:text-gray-6:hover{color:var(--gray-6)}.hover\:text-gray-12:hover{color:var(--gray-12)}.hover\:text-gray-8:hover{color:var(--gray-8)}.hover\:text-theme-6:hover{color:var(--theme-6)}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:text-gray-5:hover{color:var(--gray-5)}.hover\:text-theme-9:hover{color:var(--theme-9)}.focus\:border-transparent:focus{border-color:#0000}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.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)}.focus\:ring-0:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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(var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-inset:focus{--tw-ring-inset:inset}.focus\:ring-theme-6:focus{--tw-ring-color:var(--theme-6)}.focus\:ring-theme-5:focus{--tw-ring-color:var(--theme-5)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.group:hover .group-hover\:text-gray-4{color:var(--gray-4)}.group:hover .group-hover\:text-gray-5{color:var(--gray-5)}.group:hover .group-hover\:text-gray-9{color:var(--gray-9)}.dark .dark\:border-gray-9{border-color:var(--gray-9)}.dark .dark\:bg-theme-11{background-color:var(--theme-11)}.dark .dark\:bg-gray-11{background-color:var(--gray-11)}.dark .dark\:bg-gray-12{background-color:var(--gray-12)}.dark .dark\:text-theme-5{color:var(--theme-5)}.dark .dark\:text-gray-1{color:var(--gray-1)}.dark .dark\:placeholder-gray-2::-moz-placeholder{color:var(--gray-2)}.dark .dark\:placeholder-gray-2::placeholder{color:var(--gray-2)}.dark .dark\:hover\:bg-theme-10:hover{background-color:var(--theme-10)}@media (min-width:640px){.sm\:mt-1{margin-top:.25rem}.sm\:mr-6{margin-right:1.5rem}.sm\:mt-0{margin-top:0}.sm\:block{display:block}.sm\:hidden{display:none}.sm\:h-10{height:2.5rem}.sm\:flex-row{flex-direction:row}.sm\:flex-wrap{flex-wrap:wrap}.sm\:justify-end{justify-content:flex-end}.sm\:rounded-lg{border-radius:.5rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media (min-width:768px){.md\:ml-0{margin-left:0}.md\:ml-6{margin-left:1.5rem}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:flex-1{flex:1 1 0%}.md\:justify-start{justify-content:flex-start}.md\:space-x-10>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2.5rem*var(--tw-space-x-reverse))}}@media (min-width:1024px){.lg\:hidden{display:none}.lg\:w-0{width:0}.lg\:flex-1{flex:1 1 0%}.lg\:border-t{border-top-width:1px}.lg\:border-none{border-style:none}.lg\:border-gray-2{border-color:var(--gray-2)}.lg\:px-8{padding-left:2rem;padding-right:2rem}}
|
|
2
|
+
/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,select:focus,textarea:focus{--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);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}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}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .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}[multiple]{background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#2563eb;display:inline-block;flex-shrink:0;height:1rem;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{--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:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}[type=checkbox]:checked,[type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:#0000}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=checkbox]:indeterminate,[type=radio]:checked:focus,[type=radio]:checked:hover{background-color:currentColor;border-color:#0000}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:#0000}[type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,::backdrop,:after,:before{--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-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:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }}@layer tailwindcss.components{.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where([class~=lead]):not(:where([class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose :where(a):not(:where([class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.prose :where(strong):not(:where([class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.prose :where(ol>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(hr):not(:where([class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.prose :where(blockquote):not(:where([class~=not-prose] *)){border-left-color:var(--tw-prose-quote-borders);border-left-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose :where(h1 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.prose :where(h2 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.prose :where(h3 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.prose :where(h4 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose :where(figcaption):not(:where([class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose :where(code):not(:where([class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(h1 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding:.8571429em 1.1428571em}.prose :where(pre code):not(:where([class~=not-prose] *)){background-color:initial;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.prose :where(pre code):not(:where([class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}.prose :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.prose :where(thead th):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}.prose :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose] *)){vertical-align:initial}.prose :where(tfoot):not(:where([class~=not-prose] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.prose :where(tfoot td):not(:where([class~=not-prose] *)){vertical-align:top}.prose{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:#00000080;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.prose :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.prose :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-sm :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-base :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-lg :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.prose-xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-2xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8333333em;margin-top:.8333333em}.prose-2xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-2xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}}@layer midwest.color-system{:root{--black:rgb(0,0,0,var(--tw-opacity,1));--white:rgb(255,255,255,var(--tw-opacity,1));--gray-0:rgb(246,246,247,var(--tw-opacity,1));--gray-1:rgb(216,219,221,var(--tw-opacity,1));--gray-2:rgb(187,191,195,var(--tw-opacity,1));--gray-3:rgb(158,163,169,var(--tw-opacity,1));--gray-4:rgb(129,135,142,var(--tw-opacity,1));--gray-5:rgb(101,108,115,var(--tw-opacity,1));--gray-6:rgb(73,80,87,var(--tw-opacity,1));--gray-7:rgb(61,67,74,var(--tw-opacity,1));--gray-8:rgb(48,55,61,var(--tw-opacity,1));--gray-9:rgb(37,42,48,var(--tw-opacity,1));--gray-10:rgb(25,29,34,var(--tw-opacity,1));--gray-11:rgb(14,17,19,var(--tw-opacity,1));--gray-12:rgb(3,4,5,var(--tw-opacity,1));--red-0:rgb(255,242,242,var(--tw-opacity,1));--red-1:rgb(255,202,202,var(--tw-opacity,1));--red-2:rgb(255,162,162,var(--tw-opacity,1));--red-3:rgb(255,121,121,var(--tw-opacity,1));--red-4:rgb(252,86,86,var(--tw-opacity,1));--red-5:rgb(238,60,60,var(--tw-opacity,1));--red-6:rgb(220,38,38,var(--tw-opacity,1));--red-7:rgb(198,19,19,var(--tw-opacity,1));--red-8:rgb(171,5,5,var(--tw-opacity,1));--red-9:rgb(134,0,0,var(--tw-opacity,1));--red-10:rgb(94,0,0,var(--tw-opacity,1));--red-11:rgb(53,0,0,var(--tw-opacity,1));--red-12:rgb(13,0,0,var(--tw-opacity,1));--orange-0:rgb(255,246,242,var(--tw-opacity,1));--orange-1:rgb(255,219,202,var(--tw-opacity,1));--orange-2:rgb(255,193,162,var(--tw-opacity,1));--orange-3:rgb(255,169,121,var(--tw-opacity,1));--orange-4:rgb(255,146,81,var(--tw-opacity,1));--orange-5:rgb(255,124,40,var(--tw-opacity,1));--orange-6:rgb(247,103,7,var(--tw-opacity,1));--orange-7:rgb(215,83,0,var(--tw-opacity,1));--orange-8:rgb(174,65,0,var(--tw-opacity,1));--orange-9:rgb(134,48,0,var(--tw-opacity,1));--orange-10:rgb(94,32,0,var(--tw-opacity,1));--orange-11:rgb(53,17,0,var(--tw-opacity,1));--orange-12:rgb(13,4,0,var(--tw-opacity,1));--gold-0:rgb(255,252,242,var(--tw-opacity,1));--gold-1:rgb(255,241,202,var(--tw-opacity,1));--gold-2:rgb(255,229,162,var(--tw-opacity,1));--gold-3:rgb(255,214,121,var(--tw-opacity,1));--gold-4:rgb(255,198,81,var(--tw-opacity,1));--gold-5:rgb(255,179,40,var(--tw-opacity,1));--gold-6:rgb(245,159,0,var(--tw-opacity,1));--gold-7:rgb(215,139,0,var(--tw-opacity,1));--gold-8:rgb(174,117,0,var(--tw-opacity,1));--gold-9:rgb(134,93,0,var(--tw-opacity,1));--gold-10:rgb(94,67,0,var(--tw-opacity,1));--gold-11:rgb(53,40,0,var(--tw-opacity,1));--gold-12:rgb(13,10,0,var(--tw-opacity,1));--yellow-0:rgb(255,255,242,var(--tw-opacity,1));--yellow-1:rgb(255,253,202,var(--tw-opacity,1));--yellow-2:rgb(255,247,162,var(--tw-opacity,1));--yellow-3:rgb(255,239,121,var(--tw-opacity,1));--yellow-4:rgb(255,228,81,var(--tw-opacity,1));--yellow-5:rgb(255,213,46,var(--tw-opacity,1));--yellow-6:rgb(252,196,25,var(--tw-opacity,1));--yellow-7:rgb(215,173,5,var(--tw-opacity,1));--yellow-8:rgb(174,147,0,var(--tw-opacity,1));--yellow-9:rgb(134,118,0,var(--tw-opacity,1));--yellow-10:rgb(94,86,0,var(--tw-opacity,1));--yellow-11:rgb(53,51,0,var(--tw-opacity,1));--yellow-12:rgb(13,13,0,var(--tw-opacity,1));--lime-0:rgb(250,255,242,var(--tw-opacity,1));--lime-1:rgb(232,255,202,var(--tw-opacity,1));--lime-2:rgb(213,255,162,var(--tw-opacity,1));--lime-3:rgb(193,249,121,var(--tw-opacity,1));--lime-4:rgb(173,238,82,var(--tw-opacity,1));--lime-5:rgb(152,222,54,var(--tw-opacity,1));--lime-6:rgb(130,201,30,var(--tw-opacity,1));--lime-7:rgb(112,181,13,var(--tw-opacity,1));--lime-8:rgb(92,157,1,var(--tw-opacity,1));--lime-9:rgb(72,128,0,var(--tw-opacity,1));--lime-10:rgb(51,94,0,var(--tw-opacity,1));--lime-11:rgb(30,53,0,var(--tw-opacity,1));--lime-12:rgb(7,13,0,var(--tw-opacity,1));--green-0:rgb(242,254,245,var(--tw-opacity,1));--green-1:rgb(202,248,214,var(--tw-opacity,1));--green-2:rgb(162,239,184,var(--tw-opacity,1));--green-3:rgb(121,225,155,var(--tw-opacity,1));--green-4:rgb(81,208,127,var(--tw-opacity,1));--green-5:rgb(49,188,100,var(--tw-opacity,1));--green-6:rgb(22,163,74,var(--tw-opacity,1));--green-7:rgb(9,147,60,var(--tw-opacity,1));--green-8:rgb(0,127,46,var(--tw-opacity,1));--green-9:rgb(0,104,34,var(--tw-opacity,1));--green-10:rgb(0,77,23,var(--tw-opacity,1));--green-11:rgb(0,46,12,var(--tw-opacity,1));--green-12:rgb(0,0,0,var(--tw-opacity,1));--teal-0:rgb(242,255,250,var(--tw-opacity,1));--teal-1:rgb(202,255,234,var(--tw-opacity,1));--teal-2:rgb(162,250,216,var(--tw-opacity,1));--teal-3:rgb(121,240,196,var(--tw-opacity,1));--teal-4:rgb(81,226,175,var(--tw-opacity,1));--teal-5:rgb(42,208,153,var(--tw-opacity,1));--teal-6:rgb(16,185,129,var(--tw-opacity,1));--teal-7:rgb(2,168,113,var(--tw-opacity,1));--teal-8:rgb(0,146,95,var(--tw-opacity,1));--teal-9:rgb(0,119,75,var(--tw-opacity,1));--teal-10:rgb(0,89,54,var(--tw-opacity,1));--teal-11:rgb(0,53,32,var(--tw-opacity,1));--teal-12:rgb(0,13,8,var(--tw-opacity,1));--cyan-0:rgb(242,254,255,var(--tw-opacity,1));--cyan-1:rgb(202,249,255,var(--tw-opacity,1));--cyan-2:rgb(162,240,254,var(--tw-opacity,1));--cyan-3:rgb(121,229,247,var(--tw-opacity,1));--cyan-4:rgb(88,214,235,var(--tw-opacity,1));--cyan-5:rgb(61,197,219,var(--tw-opacity,1));--cyan-6:rgb(38,176,199,var(--tw-opacity,1));--cyan-7:rgb(21,156,179,var(--tw-opacity,1));--cyan-8:rgb(8,133,154,var(--tw-opacity,1));--cyan-9:rgb(0,108,126,var(--tw-opacity,1));--cyan-10:rgb(0,79,93,var(--tw-opacity,1));--cyan-11:rgb(0,47,53,var(--tw-opacity,1));--cyan-12:rgb(0,12,13,var(--tw-opacity,1));--blue-0:rgb(242,249,255,var(--tw-opacity,1));--blue-1:rgb(202,229,255,var(--tw-opacity,1));--blue-2:rgb(162,209,255,var(--tw-opacity,1));--blue-3:rgb(121,189,255,var(--tw-opacity,1));--blue-4:rgb(81,168,248,var(--tw-opacity,1));--blue-5:rgb(51,147,234,var(--tw-opacity,1));--blue-6:rgb(28,126,214,var(--tw-opacity,1));--blue-7:rgb(11,107,193,var(--tw-opacity,1));--blue-8:rgb(0,87,167,var(--tw-opacity,1));--blue-9:rgb(0,68,134,var(--tw-opacity,1));--blue-10:rgb(0,47,94,var(--tw-opacity,1));--blue-11:rgb(0,27,53,var(--tw-opacity,1));--blue-12:rgb(0,7,13,var(--tw-opacity,1));--indigo-0:rgb(242,245,255,var(--tw-opacity,1));--indigo-1:rgb(202,216,255,var(--tw-opacity,1));--indigo-2:rgb(162,189,255,var(--tw-opacity,1));--indigo-3:rgb(121,163,255,var(--tw-opacity,1));--indigo-4:rgb(84,140,255,var(--tw-opacity,1));--indigo-5:rgb(58,119,252,var(--tw-opacity,1));--indigo-6:rgb(37,99,235,var(--tw-opacity,1));--indigo-7:rgb(17,78,212,var(--tw-opacity,1));--indigo-8:rgb(3,59,174,var(--tw-opacity,1));--indigo-9:rgb(0,42,134,var(--tw-opacity,1));--indigo-10:rgb(0,27,94,var(--tw-opacity,1));--indigo-11:rgb(0,14,53,var(--tw-opacity,1));--indigo-12:rgb(0,3,13,var(--tw-opacity,1));--violet-0:rgb(250,242,255,var(--tw-opacity,1));--violet-1:rgb(233,202,255,var(--tw-opacity,1));--violet-2:rgb(217,162,255,var(--tw-opacity,1));--violet-3:rgb(200,124,255,var(--tw-opacity,1));--violet-4:rgb(182,95,255,var(--tw-opacity,1));--violet-5:rgb(165,71,250,var(--tw-opacity,1));--violet-6:rgb(147,51,234,var(--tw-opacity,1));--violet-7:rgb(124,30,210,var(--tw-opacity,1));--violet-8:rgb(102,14,174,var(--tw-opacity,1));--violet-9:rgb(78,3,134,var(--tw-opacity,1));--violet-10:rgb(55,0,94,var(--tw-opacity,1));--violet-11:rgb(31,0,53,var(--tw-opacity,1));--violet-12:rgb(8,0,13,var(--tw-opacity,1));--magenta-0:rgb(253,242,255,var(--tw-opacity,1));--magenta-1:rgb(246,203,255,var(--tw-opacity,1));--magenta-2:rgb(236,167,252,var(--tw-opacity,1));--magenta-3:rgb(224,135,245,var(--tw-opacity,1));--magenta-4:rgb(209,107,234,var(--tw-opacity,1));--magenta-5:rgb(193,83,219,var(--tw-opacity,1));--magenta-6:rgb(174,62,201,var(--tw-opacity,1));--magenta-7:rgb(152,42,179,var(--tw-opacity,1));--magenta-8:rgb(129,27,153,var(--tw-opacity,1));--magenta-9:rgb(103,14,124,var(--tw-opacity,1));--magenta-10:rgb(74,6,91,var(--tw-opacity,1));--magenta-11:rgb(44,1,53,var(--tw-opacity,1));--magenta-12:rgb(11,0,13,var(--tw-opacity,1));--pink-0:rgb(255,242,246,var(--tw-opacity,1));--pink-1:rgb(255,202,220,var(--tw-opacity,1));--pink-2:rgb(255,162,195,var(--tw-opacity,1));--pink-3:rgb(255,127,171,var(--tw-opacity,1));--pink-4:rgb(246,97,149,var(--tw-opacity,1));--pink-5:rgb(232,72,128,var(--tw-opacity,1));--pink-6:rgb(214,51,108,var(--tw-opacity,1));--pink-7:rgb(192,32,88,var(--tw-opacity,1));--pink-8:rgb(165,16,68,var(--tw-opacity,1));--pink-9:rgb(134,5,50,var(--tw-opacity,1));--pink-10:rgb(94,0,34,var(--tw-opacity,1));--pink-11:rgb(53,0,18,var(--tw-opacity,1));--pink-12:rgb(13,0,4,var(--tw-opacity,1));--theme-0:var(--blue-0);--theme-1:var(--blue-1);--theme-2:var(--blue-2);--theme-3:var(--blue-3);--theme-4:var(--blue-4);--theme-5:var(--blue-5);--theme-6:var(--blue-6);--theme-7:var(--blue-7);--theme-8:var(--blue-8);--theme-9:var(--blue-9);--theme-10:var(--blue-10);--theme-11:var(--blue-11);--theme-12:var(--blue-12);--complement-0:var(--indigo-0);--complement-1:var(--indigo-1);--complement-2:var(--indigo-2);--complement-3:var(--indigo-3);--complement-4:var(--indigo-4);--complement-5:var(--indigo-5);--complement-6:var(--indigo-6);--complement-7:var(--indigo-7);--complement-8:var(--indigo-8);--complement-9:var(--indigo-9);--complement-10:var(--indigo-10);--complement-11:var(--indigo-11);--complement-12:var(--indigo-12)}*{accent-color:var(--theme-6)}.theme-gray{--theme-0:var(--gray-0);--theme-1:var(--gray-1);--theme-2:var(--gray-2);--theme-3:var(--gray-3);--theme-4:var(--gray-4);--theme-5:var(--gray-5);--theme-6:var(--gray-6);--theme-7:var(--gray-7);--theme-8:var(--gray-8);--theme-9:var(--gray-9);--theme-10:var(--gray-10);--theme-11:var(--gray-11);--theme-12:var(--gray-12)}.theme-red{--theme-0:var(--red-0);--theme-1:var(--red-1);--theme-2:var(--red-2);--theme-3:var(--red-3);--theme-4:var(--red-4);--theme-5:var(--red-5);--theme-6:var(--red-6);--theme-7:var(--red-7);--theme-8:var(--red-8);--theme-9:var(--red-9);--theme-10:var(--red-10);--theme-11:var(--red-11);--theme-12:var(--red-12)}.theme-orange{--theme-0:var(--orange-0);--theme-1:var(--orange-1);--theme-2:var(--orange-2);--theme-3:var(--orange-3);--theme-4:var(--orange-4);--theme-5:var(--orange-5);--theme-6:var(--orange-6);--theme-7:var(--orange-7);--theme-8:var(--orange-8);--theme-9:var(--orange-9);--theme-10:var(--orange-10);--theme-11:var(--orange-11);--theme-12:var(--orange-12)}.theme-gold{--theme-0:var(--gold-0);--theme-1:var(--gold-1);--theme-2:var(--gold-2);--theme-3:var(--gold-3);--theme-4:var(--gold-4);--theme-5:var(--gold-5);--theme-6:var(--gold-6);--theme-7:var(--gold-7);--theme-8:var(--gold-8);--theme-9:var(--gold-9);--theme-10:var(--gold-10);--theme-11:var(--gold-11);--theme-12:var(--gold-12)}.theme-yellow{--theme-0:var(--yellow-0);--theme-1:var(--yellow-1);--theme-2:var(--yellow-2);--theme-3:var(--yellow-3);--theme-4:var(--yellow-4);--theme-5:var(--yellow-5);--theme-6:var(--yellow-6);--theme-7:var(--yellow-7);--theme-8:var(--yellow-8);--theme-9:var(--yellow-9);--theme-10:var(--yellow-10);--theme-11:var(--yellow-11);--theme-12:var(--yellow-12)}.theme-lime{--theme-0:var(--lime-0);--theme-1:var(--lime-1);--theme-2:var(--lime-2);--theme-3:var(--lime-3);--theme-4:var(--lime-4);--theme-5:var(--lime-5);--theme-6:var(--lime-6);--theme-7:var(--lime-7);--theme-8:var(--lime-8);--theme-9:var(--lime-9);--theme-10:var(--lime-10);--theme-11:var(--lime-11);--theme-12:var(--lime-12)}.theme-green{--theme-0:var(--green-0);--theme-1:var(--green-1);--theme-2:var(--green-2);--theme-3:var(--green-3);--theme-4:var(--green-4);--theme-5:var(--green-5);--theme-6:var(--green-6);--theme-7:var(--green-7);--theme-8:var(--green-8);--theme-9:var(--green-9);--theme-10:var(--green-10);--theme-11:var(--green-11);--theme-12:var(--green-12)}.theme-teal{--theme-0:var(--teal-0);--theme-1:var(--teal-1);--theme-2:var(--teal-2);--theme-3:var(--teal-3);--theme-4:var(--teal-4);--theme-5:var(--teal-5);--theme-6:var(--teal-6);--theme-7:var(--teal-7);--theme-8:var(--teal-8);--theme-9:var(--teal-9);--theme-10:var(--teal-10);--theme-11:var(--teal-11);--theme-12:var(--teal-12)}.theme-cyan{--theme-0:var(--cyan-0);--theme-1:var(--cyan-1);--theme-2:var(--cyan-2);--theme-3:var(--cyan-3);--theme-4:var(--cyan-4);--theme-5:var(--cyan-5);--theme-6:var(--cyan-6);--theme-7:var(--cyan-7);--theme-8:var(--cyan-8);--theme-9:var(--cyan-9);--theme-10:var(--cyan-10);--theme-11:var(--cyan-11);--theme-12:var(--cyan-12)}.theme-blue{--theme-0:var(--blue-0);--theme-1:var(--blue-1);--theme-2:var(--blue-2);--theme-3:var(--blue-3);--theme-4:var(--blue-4);--theme-5:var(--blue-5);--theme-6:var(--blue-6);--theme-7:var(--blue-7);--theme-8:var(--blue-8);--theme-9:var(--blue-9);--theme-10:var(--blue-10);--theme-11:var(--blue-11);--theme-12:var(--blue-12)}.theme-indigo{--theme-0:var(--indigo-0);--theme-1:var(--indigo-1);--theme-2:var(--indigo-2);--theme-3:var(--indigo-3);--theme-4:var(--indigo-4);--theme-5:var(--indigo-5);--theme-6:var(--indigo-6);--theme-7:var(--indigo-7);--theme-8:var(--indigo-8);--theme-9:var(--indigo-9);--theme-10:var(--indigo-10);--theme-11:var(--indigo-11);--theme-12:var(--indigo-12)}.theme-violet{--theme-0:var(--violet-0);--theme-1:var(--violet-1);--theme-2:var(--violet-2);--theme-3:var(--violet-3);--theme-4:var(--violet-4);--theme-5:var(--violet-5);--theme-6:var(--violet-6);--theme-7:var(--violet-7);--theme-8:var(--violet-8);--theme-9:var(--violet-9);--theme-10:var(--violet-10);--theme-11:var(--violet-11);--theme-12:var(--violet-12)}.theme-magenta{--theme-0:var(--magenta-0);--theme-1:var(--magenta-1);--theme-2:var(--magenta-2);--theme-3:var(--magenta-3);--theme-4:var(--magenta-4);--theme-5:var(--magenta-5);--theme-6:var(--magenta-6);--theme-7:var(--magenta-7);--theme-8:var(--magenta-8);--theme-9:var(--magenta-9);--theme-10:var(--magenta-10);--theme-11:var(--magenta-11);--theme-12:var(--magenta-12)}.theme-pink{--theme-0:var(--pink-0);--theme-1:var(--pink-1);--theme-2:var(--pink-2);--theme-3:var(--pink-3);--theme-4:var(--pink-4);--theme-5:var(--pink-5);--theme-6:var(--pink-6);--theme-7:var(--pink-7);--theme-8:var(--pink-8);--theme-9:var(--pink-9);--theme-10:var(--pink-10);--theme-11:var(--pink-11);--theme-12:var(--pink-12)}.complement-gray{--complement-0:var(--gray-0);--complement-1:var(--gray-1);--complement-2:var(--gray-2);--complement-3:var(--gray-3);--complement-4:var(--gray-4);--complement-5:var(--gray-5);--complement-6:var(--gray-6);--complement-7:var(--gray-7);--complement-8:var(--gray-8);--complement-9:var(--gray-9);--complement-10:var(--gray-10);--complement-11:var(--gray-11);--complement-12:var(--gray-12)}.complement-red{--complement-0:var(--red-0);--complement-1:var(--red-1);--complement-2:var(--red-2);--complement-3:var(--red-3);--complement-4:var(--red-4);--complement-5:var(--red-5);--complement-6:var(--red-6);--complement-7:var(--red-7);--complement-8:var(--red-8);--complement-9:var(--red-9);--complement-10:var(--red-10);--complement-11:var(--red-11);--complement-12:var(--red-12)}.complement-orange{--complement-0:var(--orange-0);--complement-1:var(--orange-1);--complement-2:var(--orange-2);--complement-3:var(--orange-3);--complement-4:var(--orange-4);--complement-5:var(--orange-5);--complement-6:var(--orange-6);--complement-7:var(--orange-7);--complement-8:var(--orange-8);--complement-9:var(--orange-9);--complement-10:var(--orange-10);--complement-11:var(--orange-11);--complement-12:var(--orange-12)}.complement-gold{--complement-0:var(--gold-0);--complement-1:var(--gold-1);--complement-2:var(--gold-2);--complement-3:var(--gold-3);--complement-4:var(--gold-4);--complement-5:var(--gold-5);--complement-6:var(--gold-6);--complement-7:var(--gold-7);--complement-8:var(--gold-8);--complement-9:var(--gold-9);--complement-10:var(--gold-10);--complement-11:var(--gold-11);--complement-12:var(--gold-12)}.complement-yellow{--complement-0:var(--yellow-0);--complement-1:var(--yellow-1);--complement-2:var(--yellow-2);--complement-3:var(--yellow-3);--complement-4:var(--yellow-4);--complement-5:var(--yellow-5);--complement-6:var(--yellow-6);--complement-7:var(--yellow-7);--complement-8:var(--yellow-8);--complement-9:var(--yellow-9);--complement-10:var(--yellow-10);--complement-11:var(--yellow-11);--complement-12:var(--yellow-12)}.complement-lime{--complement-0:var(--lime-0);--complement-1:var(--lime-1);--complement-2:var(--lime-2);--complement-3:var(--lime-3);--complement-4:var(--lime-4);--complement-5:var(--lime-5);--complement-6:var(--lime-6);--complement-7:var(--lime-7);--complement-8:var(--lime-8);--complement-9:var(--lime-9);--complement-10:var(--lime-10);--complement-11:var(--lime-11);--complement-12:var(--lime-12)}.complement-green{--complement-0:var(--green-0);--complement-1:var(--green-1);--complement-2:var(--green-2);--complement-3:var(--green-3);--complement-4:var(--green-4);--complement-5:var(--green-5);--complement-6:var(--green-6);--complement-7:var(--green-7);--complement-8:var(--green-8);--complement-9:var(--green-9);--complement-10:var(--green-10);--complement-11:var(--green-11);--complement-12:var(--green-12)}.complement-teal{--complement-0:var(--teal-0);--complement-1:var(--teal-1);--complement-2:var(--teal-2);--complement-3:var(--teal-3);--complement-4:var(--teal-4);--complement-5:var(--teal-5);--complement-6:var(--teal-6);--complement-7:var(--teal-7);--complement-8:var(--teal-8);--complement-9:var(--teal-9);--complement-10:var(--teal-10);--complement-11:var(--teal-11);--complement-12:var(--teal-12)}.complement-cyan{--complement-0:var(--cyan-0);--complement-1:var(--cyan-1);--complement-2:var(--cyan-2);--complement-3:var(--cyan-3);--complement-4:var(--cyan-4);--complement-5:var(--cyan-5);--complement-6:var(--cyan-6);--complement-7:var(--cyan-7);--complement-8:var(--cyan-8);--complement-9:var(--cyan-9);--complement-10:var(--cyan-10);--complement-11:var(--cyan-11);--complement-12:var(--cyan-12)}.complement-blue{--complement-0:var(--blue-0);--complement-1:var(--blue-1);--complement-2:var(--blue-2);--complement-3:var(--blue-3);--complement-4:var(--blue-4);--complement-5:var(--blue-5);--complement-6:var(--blue-6);--complement-7:var(--blue-7);--complement-8:var(--blue-8);--complement-9:var(--blue-9);--complement-10:var(--blue-10);--complement-11:var(--blue-11);--complement-12:var(--blue-12)}.complement-indigo{--complement-0:var(--indigo-0);--complement-1:var(--indigo-1);--complement-2:var(--indigo-2);--complement-3:var(--indigo-3);--complement-4:var(--indigo-4);--complement-5:var(--indigo-5);--complement-6:var(--indigo-6);--complement-7:var(--indigo-7);--complement-8:var(--indigo-8);--complement-9:var(--indigo-9);--complement-10:var(--indigo-10);--complement-11:var(--indigo-11);--complement-12:var(--indigo-12)}.complement-violet{--complement-0:var(--violet-0);--complement-1:var(--violet-1);--complement-2:var(--violet-2);--complement-3:var(--violet-3);--complement-4:var(--violet-4);--complement-5:var(--violet-5);--complement-6:var(--violet-6);--complement-7:var(--violet-7);--complement-8:var(--violet-8);--complement-9:var(--violet-9);--complement-10:var(--violet-10);--complement-11:var(--violet-11);--complement-12:var(--violet-12)}.complement-magenta{--complement-0:var(--magenta-0);--complement-1:var(--magenta-1);--complement-2:var(--magenta-2);--complement-3:var(--magenta-3);--complement-4:var(--magenta-4);--complement-5:var(--magenta-5);--complement-6:var(--magenta-6);--complement-7:var(--magenta-7);--complement-8:var(--magenta-8);--complement-9:var(--magenta-9);--complement-10:var(--magenta-10);--complement-11:var(--magenta-11);--complement-12:var(--magenta-12)}.complement-pink{--complement-0:var(--pink-0);--complement-1:var(--pink-1);--complement-2:var(--pink-2);--complement-3:var(--pink-3);--complement-4:var(--pink-4);--complement-5:var(--pink-5);--complement-6:var(--pink-6);--complement-7:var(--pink-7);--complement-8:var(--pink-8);--complement-9:var(--pink-9);--complement-10:var(--pink-10);--complement-11:var(--pink-11);--complement-12:var(--pink-12)}}@layer midwest.responsive{html{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto;font-size:.625rem!important;font-variant-numeric:tabular-nums;letter-spacing:.02em;scroll-behavior:smooth;scroll-padding:4rem}@media (min-width:400px){html{font-size:.6875rem!important}}@media (min-width:600px){html{font-size:.75rem!important}}@media (min-width:800px){html{font-size:.8125rem!important}}@media (min-width:1000px){html{font-size:.875rem!important}}@media (min-width:1200px){html{font-size:.9375rem}}@media (min-width:1400px){html{font-size:1rem}}}@layer midwest.dark-mode{html{background-color:var(--gray-0);color:var(--gray-10)}.dark html{background-color:var(--gray-12);color:var(--gray-2)}html.dark{background-color:var(--gray-12)!important;color:var(--gray-2)!important}h1,h2,h3,h4,h5,h6,label,p{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dark h1,.dark h2,.dark h3,.dark h4,.dark h5,.dark h6,.dark label,.dark p{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}p{color:var(--gray-10)}.dark p{color:var(--gray-2)}}@layer midwest.typography{h1{font-size:3.75rem}h1,h2{font-weight:700;letter-spacing:.025em;line-height:1}h2{font-size:3rem}h3{font-size:2.25rem;line-height:2.5rem;line-height:1}h3,h4{font-weight:700;letter-spacing:.025em}h4{font-size:1.875rem;line-height:2.25rem;line-height:1}h5{font-size:1.5rem;letter-spacing:.025em;line-height:2rem;line-height:1}h5,h6,label{font-weight:700}h6,label{font-size:1.25rem;letter-spacing:.05em;line-height:1.75rem;line-height:1;text-transform:uppercase}p{font-size:1.125rem;line-height:1.75rem;line-height:1.375}}@layer midwest.badge{.midwest-badge{background:var(--theme-7,var(--gray-7));border:1px solid var(--theme-7,var(--gray-7));border-radius:1.5rem;color:var(--theme-0,var(--gray-0));display:inline-flex;font-size:.875rem;font-weight:700;letter-spacing:.05em;line-height:1.25rem;line-height:1.375;padding:2px .75em;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.midwest-badge.has-support{gap:.5rem;padding:2px .75em 2px 2px}.midwest-badge.has-support>.support{background:var(--theme-0,var(--gray-0));border-bottom-left-radius:1.5rem;border-top-left-radius:1.5rem;color:var(--theme-12,var(--gray-12));padding:0 .25rem 0 .5rem}.midwest-badge.theme-lime,.midwest-badge.theme-yellow,:is(.theme-yellow,.theme-lime) .midwest-badge{background:var(--theme-6,var(--gray-6));border:1px solid var(--theme-6,var(--gray-6));color:var(--theme-11,var(--gray-11))}.midwest-badge.size-sm{font-size:.75rem;line-height:1rem}.midwest-badge.size-lg{font-size:1rem;line-height:1.5rem}}@layer midwest.card{.midwest-card{container-type:inline-size;container-name:midwest-card;--border:1px solid var(--gray-1);--background:var(--white);--background-active:var(--theme-0);--flipped-background:var(--white);--flipped-min-height:var(--flipped-min-height,20rem);--flipped-transition:none;--border-radius:0.5rem;--padding:2rem;--min-height:10rem;--card-width:auto;-webkit-appearance:none;border-radius:var(--border-radius);display:block;height:auto}.midwest-card,.midwest-card>.wrap{-moz-appearance:none;appearance:none;background:var(--background)}.midwest-card>.wrap{-webkit-appearance:none!important;border:var(--border)!important;border-radius:var(--border-radius);color:inherit;display:grid;font-size:inherit;grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto;height:100%;min-height:var(--min-height);outline:none;padding:0;text-align:inherit;text-decoration:none;width:var(--card-width)}.midwest-card>.wrap footer,.midwest-card>.wrap header{border-bottom:var(--border)!important;border-radius:var(--border-radius) var(--border-radius) 0 0;grid-area:header!important;max-width:calc(var(--card-width) - 2px);padding:1rem var(--padding);width:calc(var(--card-width) - 2px)}.midwest-card>.wrap footer.flex,.midwest-card>.wrap header.flex{align-items:center;gap:1rem;justify-content:space-between}.midwest-card>.wrap footer.flush,.midwest-card>.wrap header.flush{border-bottom:0!important;padding-bottom:0}.midwest-card>.wrap footer.sticky,.midwest-card>.wrap header.sticky{position:sticky;top:0;z-index:999999}.midwest-card>.wrap :is(.wrap,.front,.back) :not(.wrap,.front,.back),.midwest-card>.wrap section{grid-area:section;max-width:calc(var(--card-width) - var(--padding)*2)}.midwest-card>.wrap :is(.wrap,.front,.back) :not(.wrap,.front,.back).flush,.midwest-card>.wrap section.flush{grid-column:1/span 3;grid-row:2/span 3;max-width:100%!important;padding:1rem;width:100%!important}.midwest-card>.wrap footer{border-bottom:0!important;border-radius:0 0 var(--border-radius) var(--border-radius);border-top:var(--border)!important;grid-area:footer!important}.midwest-card.horizontal>.wrap{grid-auto-flow:row;overflow:hidden}.midwest-card.horizontal>.wrap,.midwest-card.horizontal>.wrap>.back,.midwest-card.horizontal>.wrap>.front{grid-template-areas:"header . . ." "header . . ." "header . section ." "header . . ." "footer footer footer footer";grid-template-columns:var(--header-width,auto) var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.horizontal header{border-bottom:0!important;border-radius:var(--border-radius) 0 0 var(--border-radius);width:100%}.midwest-card.horizontal header.flush{padding:0!important}.midwest-card.horizontal section{margin:auto;width:100%}.midwest-card.flippable{background:#0000;perspective:3000px}.midwest-card.flippable.flip-ready>.wrap{transition:all .5s var(--ease,ease-in-out) 0s,background-color 0s ease 0s}.midwest-card.flippable>.wrap{background:var(--background);display:block}.midwest-card.flippable>.wrap>.back,.midwest-card.flippable>.wrap>.front{display:grid;grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto;height:auto;min-height:var(--min-height);padding:0}.midwest-card.flippable>.wrap>.front{-webkit-backface-visibility:hidden;backface-visibility:hidden;height:100%;opacity:1;z-index:1}.midwest-card.flippable>.wrap>.back{height:-moz-min-content;height:min-content;left:0;opacity:0;overflow-y:none;pointer-events:none;position:absolute;top:0;transform:rotateY(180deg);width:100%;z-index:0}.midwest-card.flippable>.wrap>.back *{-webkit-backface-visibility:hidden;backface-visibility:hidden}.midwest-card.flippable>.wrap>.back section{height:calc(100% + var(--padding))}.midwest-card.flippable.horizontal.flippable>.wrap>.back,.midwest-card.flippable.horizontal.flippable>.wrap>.front{grid-template-areas:"header . . ." "header . . ." "header . section ." "header . . ." "footer footer footer footer";grid-template-columns:var(--header-width,auto) var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.flippable.flip-ready>.wrap>.front{transition:min-height .35s linear 0s,opacity .15s linear .3s!important}.midwest-card.flippable.flip-ready>.wrap>.back{transition:min-height .35s linear 0s,opacity .15s linear 0s!important}.midwest-card.flippable.flipped{--background:var(--flipped-background,#fff)!important;--min-height:var(--flipped-min-height)!important;z-index:1}.midwest-card.flippable.flipped>.wrap{min-height:var(--min-height);transform:rotateY(180deg)}.midwest-card.flippable.flipped>.wrap>.back,.midwest-card.flippable.flipped>.wrap>.front{min-height:var(--min-height)}.midwest-card.flippable.flipped>.wrap>.front{opacity:0;pointer-events:none;transition:min-height .35s linear 0s,opacity .15s linear 0s!important}.midwest-card.flippable.flipped>.wrap>.back{opacity:1;overflow-y:initial;pointer-events:auto;transition:min-height .35s linear 0s,opacity .15s linear .3s!important}:is(.dark) .midwest-card{--border:1px solid var(--gray-9);--background:var(--gray-11);--background-active:var(--gray-11);--flipped-background:var(--gray-11)}@media screen and (prefers-reduced-motion:reduce){.midwest-card.flippable.flip-ready>.wrap{transition:none}.midwest-card.flippable.flip-ready.flipped>.wrap>.front,.midwest-card.flippable.flip-ready>.wrap>.back,.midwest-card.flippable.flip-ready>.wrap>.front{transition:none!important}}@container midwest-card (max-width: 350px){.midwest-card>.wrap{--padding:1rem!important}.midwest-card>.wrap footer.flex,.midwest-card>.wrap header.flex{flex-direction:column}.midwest-card.horizontal>.wrap,.midwest-card.horizontal>.wrap .back,.midwest-card.horizontal>.wrap .front{grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.horizontal>header{border-radius:var(--border-radius) var(--border-radius) 0 0}}}@layer midwest.icon{.midwest-icon{fill:currentColor;box-sizing:initial!important;color:currentColor;contain:strict;content-visibility:auto;display:inline-block;font-size:1rem;height:1em;width:1em}.midwest-icon>.icon-inner,.midwest-icon>.icon-inner>svg{display:block;height:100%;width:100%}}@layer midwest.grid{.midwest-grid{display:flex;display:grid;flex-wrap:wrap;position:relative}@layer midwest.card{.midwest-card>.wrap footer.midwest-grid,.midwest-card>.wrap header.midwest-grid{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer.midwest-grid,.midwest-card>.wrap header.midwest-grid{flex-direction:column}}}.midwest-grid{--grid-width:200px;--grid-gap:2rem;grid-gap:var(--grid-gap);grid-template-columns:repeat(auto-fit,minmax(var(--grid-width),1fr))}.midwest-grid.padding-match-gap{padding:var(--grid-gap)}}@layer midwest.layout{.midwest-layout{container-type:inline-size;container-name:midwest-layout;--layout-grid-gap:1rem;--layout-padding:2rem;--layout-width:calc(100% - var(--layout-grid-gap)*2);--xs-layout:420px;--sm-layout:800px;--md-layout:1024px;--lg-layout:1200px;display:grid;position:relative}.midwest-layout>.wrapper{grid-gap:var(--layout-grid-gap,2rem);display:grid;grid-template-columns:var(--layout,1fr);margin:0 auto;max-width:var(--md-layout);min-height:0;min-width:0;padding:var(--layout-padding) 0;width:var(--layout-width)}.midwest-layout>.wrapper>*{min-width:0}.midwest-layout.size-xs>.wrapper{max-width:var(--xs-layout)}.midwest-layout.size-sm>.wrapper{max-width:var(--sm-layout)}.midwest-layout.size-lg>.wrapper{max-width:var(--lg-layout)}.midwest-layout.size-full>.wrapper{max-width:100%}.midwest-layout.size-flush>.wrapper{max-width:100%;width:100%}.midwest-layout.padding-none{--layout-padding:0;--layout-grid-gap:0}.midwest-layout.padding-xs{--layout-padding:0.5rem;--layout-grid-gap:0.25rem}.midwest-layout.padding-sm{--layout-padding:1rem;--layout-grid-gap:0.5rem}.midwest-layout.padding-lg{--layout-padding:3rem;--layout-grid-gap:6rem}.midwest-layout.has-nav>.wrapper{padding-bottom:0}.midwest-layout.has-nav>.wrapper>nav{margin-top:calc(var(--layout-padding)/2)}.midwest-layout[class*=-flipped] aside{order:9999}@container midwest-layout (min-width: 700px){.type-default>.wrapper{--layout:1fr!important}.type-one-third>.wrapper{--layout:1fr 2fr!important}.type-one-third-flipped>.wrapper{--layout:2fr 1fr!important}.type-sidebar>.wrapper{--layout:1fr 4fr!important}.type-sidebar-flipped>.wrapper{--layout:4fr 1fr!important}.type-locked-sidebar>.wrapper{--layout:var(--layout-sidebar-width,16rem) 1fr!important}.type-locked-sidebar-flipped>.wrapper{--layout:1fr var(--layout-sidebar-width,16rem)!important}.type-supporting-content>.wrapper{--layout:4fr 6fr!important}.type-supporting-content-flipped>.wrapper{--layout:6fr 4fr!important}.type-half>.wrapper{--layout:1fr 1fr!important}}}@layer midwest.prose{.midwest-prose{display:block;text-align:left}.dark .midwest-prose a,.midwest-prose a{color:var(--theme-6)}.midwest-prose>*{margin-bottom:.125em!important}.midwest-prose>h1+p,.midwest-prose>h2+p,.midwest-prose>h3+p,.midwest-prose>h4+p,.midwest-prose>h5+p,.midwest-prose>h6+p{margin-top:.5rem!important}.midwest-prose>p+h1,.midwest-prose>p+h2,.midwest-prose>p+h3,.midwest-prose>p+h4,.midwest-prose>p+h5,.midwest-prose>p+h6{margin-top:2rem!important}.midwest-prose>:last-child{margin-bottom:0!important}.midwest-prose>.midwest-button,.midwest-prose>dl{margin-top:1rem!important}blockquote{border-color:var(--theme-6)}blockquote p{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dark blockquote p{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.midwest-prose[clamp]{-webkit-line-clamp:var(--clamp,3);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}}@layer midwest.input{.midwest-input :is(input,textarea){--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);border-color:var(--gray-1);border-radius:.375rem;border-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:block;width:100%}.midwest-input :is(input,textarea):focus{--tw-ring-color:var(--theme-6);border-color:var(--theme-6)}.dark .midwest-input :is(input,textarea){--tw-text-opacity:1;background-color:var(--gray-10);border-color:var(--gray-9);color:rgb(255 255 255/var(--tw-text-opacity))}.dark .midwest-input :is(input,textarea)::-moz-placeholder{color:var(--gray-4)}.dark .midwest-input :is(input,textarea)::placeholder{color:var(--gray-4)}.dark .midwest-input :is(input,textarea):focus{--tw-ring-color:var(--theme-7);border-color:var(--theme-7)}@media (min-width:640px){.midwest-input :is(input,textarea){font-size:1.125rem;line-height:1.75rem}}.midwest-input :is(input,textarea):disabled{background-color:var(--gray-1);border-color:var(--gray-2);color:var(--gray-6);cursor:not-allowed}.dark .midwest-input :is(input,textarea):disabled{background-color:var(--gray-12);border-color:var(--gray-10);color:var(--gray-6)}.midwest-input__bottom,.midwest-input__top{display:flex;flex-wrap:wrap;gap:.25rem;justify-content:space-between;width:100%}@layer midwest.card{.midwest-card>.wrap footer .midwest-input__bottom,.midwest-card>.wrap footer.midwest-input__top,.midwest-card>.wrap header .midwest-input__bottom,.midwest-card>.wrap header.midwest-input__top{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer .midwest-input__bottom,.midwest-card>.wrap footer.midwest-input__top,.midwest-card>.wrap header .midwest-input__bottom,.midwest-card>.wrap header.midwest-input__top{flex-direction:column}}}.midwest-input__top{margin-bottom:.25rem}.midwest-input__bottom{margin-top:.25rem}.midwest-input.has-error :is(input,textarea){border-color:var(--theme-6);color:var(--theme-8)}.dark .midwest-input.has-error :is(input,textarea){border-color:var(--theme-6);color:var(--theme-4)}.midwest-input.inline :is(input,textarea){--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;border-color:var(--gray-2);border-radius:0;border-width:0 0 2px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.midwest-input.inline :is(input,textarea):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(var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:var(--theme-6);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.midwest-input.type-hidden{display:contents}}@layer midwest.label{.midwest-label{align-items:center;color:var(--gray-12);display:flex;font-size:1rem;font-weight:700;gap:.5rem;letter-spacing:.05em;line-height:1.5rem}@layer midwest.card{.midwest-card>.wrap footer.midwest-label,.midwest-card>.wrap header.midwest-label{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer.midwest-label,.midwest-card>.wrap header.midwest-label{flex-direction:column}}}.dark .midwest-label{color:var(--gray-0)}.midwest-label.description{color:var(--gray-4);font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1rem;text-transform:none}.dark .midwest-label.description{color:var(--gray-4)}.midwest-label.error{color:var(--theme-6)}.midwest-label.error .midwest-icon{color:var(--theme-7);font-size:1.125rem;line-height:1.75rem}}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.pointer-events-none{pointer-events:none}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.bottom-0{bottom:0}.right-0{right:0}.top-0{top:0}.left-0{left:0}.z-10{z-index:10}.order-last{order:9999}.order-3{order:3}.col-span-full{grid-column:1/-1}.m-8{margin:2rem}.m-auto{margin:auto}.-m-3{margin:-.75rem}.-my-2{margin-bottom:-.5rem;margin-top:-.5rem}.mx-auto{margin-left:auto;margin-right:auto}.mb-0{margin-bottom:0}.mb-4{margin-bottom:1rem}.-mr-2{margin-right:-.5rem}.ml-2{margin-left:.5rem}.ml-8{margin-left:2rem}.mt-6{margin-top:1.5rem}.ml-3{margin-left:.75rem}.mt-5{margin-top:1.25rem}.mr-4{margin-right:1rem}.ml-4{margin-left:1rem}.mb-2{margin-bottom:.5rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.ml-5{margin-left:1.25rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-full{height:100%}.h-fit{height:-moz-fit-content;height:fit-content}.h-32{height:8rem}.h-48{height:12rem}.h-8{height:2rem}.h-6{height:1.5rem}.h-16{height:4rem}.h-5{height:1.25rem}.min-h-screen{min-height:100vh}.w-full{width:100%}.w-32{width:8rem}.w-36{width:9rem}.w-96{width:24rem}.w-auto{width:auto}.w-6{width:1.5rem}.w-5{width:1.25rem}.w-0{width:0}.min-w-full{min-width:100%}.max-w-6xl{max-width:72rem}.max-w-0{max-width:0}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.origin-top-right{transform-origin:top right}.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))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.place-content-center{place-content:center}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-4{gap:1rem}.gap-8{gap:2rem}.gap-y-8{row-gap:2rem}.gap-y-4{row-gap:1rem}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.space-x-10>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2.5rem*var(--tw-space-x-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.divide-y-2>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(2px*var(--tw-divide-y-reverse));border-top-width:calc(2px*(1 - var(--tw-divide-y-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-theme-8>:not([hidden])~:not([hidden]){border-color:var(--theme-8)}.divide-gray-2>:not([hidden])~:not([hidden]){border-color:var(--gray-2)}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.rounded-md{border-radius:.375rem}.rounded{border-radius:.25rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-transparent{border-color:#0000}.border-theme-0{border-color:var(--theme-0)}.border-theme-1{border-color:var(--theme-1)}.border-theme-2{border-color:var(--theme-2)}.border-theme-3{border-color:var(--theme-3)}.border-theme-4{border-color:var(--theme-4)}.border-theme-5{border-color:var(--theme-5)}.border-theme-6{border-color:var(--theme-6)}.border-theme-7{border-color:var(--theme-7)}.border-theme-8{border-color:var(--theme-8)}.border-theme-9{border-color:var(--theme-9)}.border-theme-10{border-color:var(--theme-10)}.border-theme-11{border-color:var(--theme-11)}.border-theme-12{border-color:var(--theme-12)}.border-gray-2{border-color:var(--gray-2)}.border-gray-3{border-color:var(--gray-3)}.bg-theme-0{background-color:var(--theme-0)}.bg-theme-6{background-color:var(--theme-6)}.bg-theme-1{background-color:var(--theme-1)}.bg-theme-2{background-color:var(--theme-2)}.bg-theme-3{background-color:var(--theme-3)}.bg-theme-4{background-color:var(--theme-4)}.bg-theme-5{background-color:var(--theme-5)}.bg-theme-7{background-color:var(--theme-7)}.bg-theme-8{background-color:var(--theme-8)}.bg-theme-9{background-color:var(--theme-9)}.bg-theme-10{background-color:var(--theme-10)}.bg-theme-11{background-color:var(--theme-11)}.bg-theme-12{background-color:var(--theme-12)}.bg-complement-0{background-color:var(--complement-0)}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bg-complement-1{background-color:var(--complement-1)}.bg-complement-2{background-color:var(--complement-2)}.bg-complement-3{background-color:var(--complement-3)}.bg-complement-4{background-color:var(--complement-4)}.bg-complement-5{background-color:var(--complement-5)}.bg-complement-6{background-color:var(--complement-6)}.bg-complement-7{background-color:var(--complement-7)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-complement-8{background-color:var(--complement-8)}.bg-complement-9{background-color:var(--complement-9)}.bg-complement-10{background-color:var(--complement-10)}.bg-complement-11{background-color:var(--complement-11)}.bg-complement-12{background-color:var(--complement-12)}.bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--tw-gradient-stops))}.bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--tw-gradient-stops))}.from-theme-6{--tw-gradient-from:var(--theme-6);--tw-gradient-to:#fff0;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.to-complement-6{--tw-gradient-to:var(--complement-6)}.fill-gray-0{fill:var(--gray-0)}.fill-theme-8{fill:var(--theme-8)}.fill-theme-2{fill:var(--theme-2)}.fill-theme-4{fill:var(--theme-4)}.fill-theme-6{fill:var(--theme-6)}.fill-theme-10{fill:var(--theme-10)}.fill-theme-3{fill:var(--theme-3)}.fill-theme-5{fill:var(--theme-5)}.fill-complement-6{fill:var(--complement-6)}.fill-complement-5{fill:var(--complement-5)}.stroke-gray-1{stroke:var(--gray-1)}.stroke-theme-12{stroke:var(--theme-12)}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.p-2{padding:.5rem}.p-8{padding:2rem}.p-3{padding:.75rem}.p-1{padding:.25rem}.p-4{padding:1rem}.px-4{padding-left:1rem;padding-right:1rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-0{padding-bottom:0;padding-top:0}.pl-4{padding-left:1rem}.pr-8{padding-right:2rem}.pt-5{padding-top:1.25rem}.pb-6{padding-bottom:1.5rem}.pb-4{padding-bottom:1rem}.pt-6{padding-top:1.5rem}.pl-8{padding-left:2rem}.pr-3{padding-right:.75rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-sm{font-size:.875rem;line-height:1.25rem}.text-6xl{font-size:3.75rem;line-height:1}.text-base{font-size:1rem;line-height:1.5rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-xs{font-size:.75rem;line-height:1rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.font-medium{font-weight:500}.font-bold{font-weight:700}.font-semibold{font-weight:600}.capitalize{text-transform:capitalize}.leading-6{line-height:1.5rem}.text-theme-7{color:var(--theme-7)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-theme-12{color:var(--theme-12)}.text-theme-0{color:var(--theme-0)}.text-complement-12{color:var(--complement-12)}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-theme-1{color:var(--theme-1)}.text-theme-2{color:var(--theme-2)}.text-theme-3{color:var(--theme-3)}.text-theme-4{color:var(--theme-4)}.text-theme-5{color:var(--theme-5)}.text-complement-0{color:var(--complement-0)}.text-theme-6{color:var(--theme-6)}.text-theme-8{color:var(--theme-8)}.text-theme-9{color:var(--theme-9)}.text-theme-10{color:var(--theme-10)}.text-theme-11{color:var(--theme-11)}.text-gray-5{color:var(--gray-5)}.text-gray-6{color:var(--gray-6)}.text-gray-3{color:var(--gray-3)}.text-gray-12{color:var(--gray-12)}.text-gray-4{color:var(--gray-4)}.text-gray-9{color:var(--gray-9)}.text-gray-7{color:var(--gray-7)}.underline{text-decoration-line:underline}.no-underline{text-decoration-line:none}.placeholder-gray-5::-moz-placeholder{color:var(--gray-5)}.placeholder-gray-5::placeholder{color:var(--gray-5)}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-lg,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.outline-theme-0{outline-color:var(--theme-0)}.outline-theme-1{outline-color:var(--theme-1)}.outline-theme-2{outline-color:var(--theme-2)}.outline-theme-3{outline-color:var(--theme-3)}.outline-theme-4{outline-color:var(--theme-4)}.outline-theme-5{outline-color:var(--theme-5)}.outline-theme-6{outline-color:var(--theme-6)}.outline-theme-7{outline-color:var(--theme-7)}.outline-theme-8{outline-color:var(--theme-8)}.outline-theme-9{outline-color:var(--theme-9)}.outline-theme-10{outline-color:var(--theme-10)}.outline-theme-11{outline-color:var(--theme-11)}.outline-theme-12{outline-color:var(--theme-12)}.ring-1{--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:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgb(0 0 0/var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity:0.05}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.focus-within\:text-gray-6:focus-within{color:var(--gray-6)}.hover\:bg-theme-1:hover{background-color:var(--theme-1)}.hover\:bg-theme-6:hover{background-color:var(--theme-6)}.hover\:bg-gray-1:hover{background-color:var(--gray-1)}.hover\:bg-theme-8:hover{background-color:var(--theme-8)}.hover\:bg-theme-7:hover{background-color:var(--theme-7)}.hover\:text-gray-6:hover{color:var(--gray-6)}.hover\:text-gray-12:hover{color:var(--gray-12)}.hover\:text-gray-8:hover{color:var(--gray-8)}.hover\:text-theme-6:hover{color:var(--theme-6)}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:text-gray-5:hover{color:var(--gray-5)}.hover\:text-theme-9:hover{color:var(--theme-9)}.focus\:border-transparent:focus{border-color:#0000}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.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)}.focus\:ring-0:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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(var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-inset:focus{--tw-ring-inset:inset}.focus\:ring-theme-6:focus{--tw-ring-color:var(--theme-6)}.focus\:ring-theme-5:focus{--tw-ring-color:var(--theme-5)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.group:hover .group-hover\:text-gray-4{color:var(--gray-4)}.group:hover .group-hover\:text-gray-5{color:var(--gray-5)}.group:hover .group-hover\:text-gray-9{color:var(--gray-9)}.dark .dark\:border-gray-9{border-color:var(--gray-9)}.dark .dark\:bg-theme-11{background-color:var(--theme-11)}.dark .dark\:bg-gray-11{background-color:var(--gray-11)}.dark .dark\:bg-gray-12{background-color:var(--gray-12)}.dark .dark\:text-theme-5{color:var(--theme-5)}.dark .dark\:text-gray-1{color:var(--gray-1)}.dark .dark\:placeholder-gray-2::-moz-placeholder{color:var(--gray-2)}.dark .dark\:placeholder-gray-2::placeholder{color:var(--gray-2)}.dark .dark\:hover\:bg-theme-10:hover{background-color:var(--theme-10)}@media (min-width:640px){.sm\:mt-1{margin-top:.25rem}.sm\:mr-6{margin-right:1.5rem}.sm\:mt-0{margin-top:0}.sm\:block{display:block}.sm\:hidden{display:none}.sm\:h-10{height:2.5rem}.sm\:flex-row{flex-direction:row}.sm\:flex-wrap{flex-wrap:wrap}.sm\:justify-end{justify-content:flex-end}.sm\:rounded-lg{border-radius:.5rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media (min-width:768px){.md\:ml-0{margin-left:0}.md\:ml-6{margin-left:1.5rem}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:flex-1{flex:1 1 0%}.md\:justify-start{justify-content:flex-start}.md\:space-x-10>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2.5rem*var(--tw-space-x-reverse))}}@media (min-width:1024px){.lg\:hidden{display:none}.lg\:w-0{width:0}.lg\:flex-1{flex:1 1 0%}.lg\:border-t{border-top-width:1px}.lg\:border-none{border-style:none}.lg\:border-gray-2{border-color:var(--gray-2)}.lg\:px-8{padding-left:2rem;padding-right:2rem}}
|
package/dist/css/midwest.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
@layer tailwindcss.base{
|
|
2
|
-
/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,select:focus,textarea:focus{--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);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}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}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .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}[multiple]{background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#2563eb;display:inline-block;flex-shrink:0;height:1rem;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{--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:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}[type=checkbox]:checked,[type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:#0000}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=checkbox]:indeterminate,[type=radio]:checked:focus,[type=radio]:checked:hover{background-color:currentColor;border-color:#0000}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:#0000}[type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,::backdrop,:after,:before{--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-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:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }}@layer tailwindcss.components{.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where([class~=lead]):not(:where([class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose :where(a):not(:where([class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.prose :where(strong):not(:where([class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.prose :where(ol>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(hr):not(:where([class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.prose :where(blockquote):not(:where([class~=not-prose] *)){border-left-color:var(--tw-prose-quote-borders);border-left-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose :where(h1 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.prose :where(h2 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.prose :where(h3 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.prose :where(h4 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose :where(figcaption):not(:where([class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose :where(code):not(:where([class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(h1 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding:.8571429em 1.1428571em}.prose :where(pre code):not(:where([class~=not-prose] *)){background-color:initial;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.prose :where(pre code):not(:where([class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}.prose :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.prose :where(thead th):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}.prose :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose] *)){vertical-align:initial}.prose :where(tfoot):not(:where([class~=not-prose] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.prose :where(tfoot td):not(:where([class~=not-prose] *)){vertical-align:top}.prose{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:#00000080;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.prose :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.prose :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-sm :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-base :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-lg :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.prose-xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-2xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8333333em;margin-top:.8333333em}.prose-2xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-2xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}}@layer midwest.color-system{:root{--black:rgb(0,0,0,var(--tw-opacity,1));--white:rgb(255,255,255,var(--tw-opacity,1));--gray-0:rgb(246,246,247,var(--tw-opacity,1));--gray-1:rgb(216,219,221,var(--tw-opacity,1));--gray-2:rgb(187,191,195,var(--tw-opacity,1));--gray-3:rgb(158,163,169,var(--tw-opacity,1));--gray-4:rgb(129,135,142,var(--tw-opacity,1));--gray-5:rgb(101,108,115,var(--tw-opacity,1));--gray-6:rgb(73,80,87,var(--tw-opacity,1));--gray-7:rgb(61,67,74,var(--tw-opacity,1));--gray-8:rgb(48,55,61,var(--tw-opacity,1));--gray-9:rgb(37,42,48,var(--tw-opacity,1));--gray-10:rgb(25,29,34,var(--tw-opacity,1));--gray-11:rgb(14,17,19,var(--tw-opacity,1));--gray-12:rgb(3,4,5,var(--tw-opacity,1));--red-0:rgb(255,242,242,var(--tw-opacity,1));--red-1:rgb(255,202,202,var(--tw-opacity,1));--red-2:rgb(255,162,162,var(--tw-opacity,1));--red-3:rgb(255,121,121,var(--tw-opacity,1));--red-4:rgb(252,86,86,var(--tw-opacity,1));--red-5:rgb(238,60,60,var(--tw-opacity,1));--red-6:rgb(220,38,38,var(--tw-opacity,1));--red-7:rgb(198,19,19,var(--tw-opacity,1));--red-8:rgb(171,5,5,var(--tw-opacity,1));--red-9:rgb(134,0,0,var(--tw-opacity,1));--red-10:rgb(94,0,0,var(--tw-opacity,1));--red-11:rgb(53,0,0,var(--tw-opacity,1));--red-12:rgb(13,0,0,var(--tw-opacity,1));--orange-0:rgb(255,246,242,var(--tw-opacity,1));--orange-1:rgb(255,219,202,var(--tw-opacity,1));--orange-2:rgb(255,193,162,var(--tw-opacity,1));--orange-3:rgb(255,169,121,var(--tw-opacity,1));--orange-4:rgb(255,146,81,var(--tw-opacity,1));--orange-5:rgb(255,124,40,var(--tw-opacity,1));--orange-6:rgb(247,103,7,var(--tw-opacity,1));--orange-7:rgb(215,83,0,var(--tw-opacity,1));--orange-8:rgb(174,65,0,var(--tw-opacity,1));--orange-9:rgb(134,48,0,var(--tw-opacity,1));--orange-10:rgb(94,32,0,var(--tw-opacity,1));--orange-11:rgb(53,17,0,var(--tw-opacity,1));--orange-12:rgb(13,4,0,var(--tw-opacity,1));--gold-0:rgb(255,252,242,var(--tw-opacity,1));--gold-1:rgb(255,241,202,var(--tw-opacity,1));--gold-2:rgb(255,229,162,var(--tw-opacity,1));--gold-3:rgb(255,214,121,var(--tw-opacity,1));--gold-4:rgb(255,198,81,var(--tw-opacity,1));--gold-5:rgb(255,179,40,var(--tw-opacity,1));--gold-6:rgb(245,159,0,var(--tw-opacity,1));--gold-7:rgb(215,139,0,var(--tw-opacity,1));--gold-8:rgb(174,117,0,var(--tw-opacity,1));--gold-9:rgb(134,93,0,var(--tw-opacity,1));--gold-10:rgb(94,67,0,var(--tw-opacity,1));--gold-11:rgb(53,40,0,var(--tw-opacity,1));--gold-12:rgb(13,10,0,var(--tw-opacity,1));--yellow-0:rgb(255,255,242,var(--tw-opacity,1));--yellow-1:rgb(255,253,202,var(--tw-opacity,1));--yellow-2:rgb(255,247,162,var(--tw-opacity,1));--yellow-3:rgb(255,239,121,var(--tw-opacity,1));--yellow-4:rgb(255,228,81,var(--tw-opacity,1));--yellow-5:rgb(255,213,46,var(--tw-opacity,1));--yellow-6:rgb(252,196,25,var(--tw-opacity,1));--yellow-7:rgb(215,173,5,var(--tw-opacity,1));--yellow-8:rgb(174,147,0,var(--tw-opacity,1));--yellow-9:rgb(134,118,0,var(--tw-opacity,1));--yellow-10:rgb(94,86,0,var(--tw-opacity,1));--yellow-11:rgb(53,51,0,var(--tw-opacity,1));--yellow-12:rgb(13,13,0,var(--tw-opacity,1));--lime-0:rgb(250,255,242,var(--tw-opacity,1));--lime-1:rgb(232,255,202,var(--tw-opacity,1));--lime-2:rgb(213,255,162,var(--tw-opacity,1));--lime-3:rgb(193,249,121,var(--tw-opacity,1));--lime-4:rgb(173,238,82,var(--tw-opacity,1));--lime-5:rgb(152,222,54,var(--tw-opacity,1));--lime-6:rgb(130,201,30,var(--tw-opacity,1));--lime-7:rgb(112,181,13,var(--tw-opacity,1));--lime-8:rgb(92,157,1,var(--tw-opacity,1));--lime-9:rgb(72,128,0,var(--tw-opacity,1));--lime-10:rgb(51,94,0,var(--tw-opacity,1));--lime-11:rgb(30,53,0,var(--tw-opacity,1));--lime-12:rgb(7,13,0,var(--tw-opacity,1));--green-0:rgb(242,254,245,var(--tw-opacity,1));--green-1:rgb(202,248,214,var(--tw-opacity,1));--green-2:rgb(162,239,184,var(--tw-opacity,1));--green-3:rgb(121,225,155,var(--tw-opacity,1));--green-4:rgb(81,208,127,var(--tw-opacity,1));--green-5:rgb(49,188,100,var(--tw-opacity,1));--green-6:rgb(22,163,74,var(--tw-opacity,1));--green-7:rgb(9,147,60,var(--tw-opacity,1));--green-8:rgb(0,127,46,var(--tw-opacity,1));--green-9:rgb(0,104,34,var(--tw-opacity,1));--green-10:rgb(0,77,23,var(--tw-opacity,1));--green-11:rgb(0,46,12,var(--tw-opacity,1));--green-12:rgb(0,0,0,var(--tw-opacity,1));--teal-0:rgb(242,255,250,var(--tw-opacity,1));--teal-1:rgb(202,255,234,var(--tw-opacity,1));--teal-2:rgb(162,250,216,var(--tw-opacity,1));--teal-3:rgb(121,240,196,var(--tw-opacity,1));--teal-4:rgb(81,226,175,var(--tw-opacity,1));--teal-5:rgb(42,208,153,var(--tw-opacity,1));--teal-6:rgb(16,185,129,var(--tw-opacity,1));--teal-7:rgb(2,168,113,var(--tw-opacity,1));--teal-8:rgb(0,146,95,var(--tw-opacity,1));--teal-9:rgb(0,119,75,var(--tw-opacity,1));--teal-10:rgb(0,89,54,var(--tw-opacity,1));--teal-11:rgb(0,53,32,var(--tw-opacity,1));--teal-12:rgb(0,13,8,var(--tw-opacity,1));--cyan-0:rgb(242,254,255,var(--tw-opacity,1));--cyan-1:rgb(202,249,255,var(--tw-opacity,1));--cyan-2:rgb(162,240,254,var(--tw-opacity,1));--cyan-3:rgb(121,229,247,var(--tw-opacity,1));--cyan-4:rgb(88,214,235,var(--tw-opacity,1));--cyan-5:rgb(61,197,219,var(--tw-opacity,1));--cyan-6:rgb(38,176,199,var(--tw-opacity,1));--cyan-7:rgb(21,156,179,var(--tw-opacity,1));--cyan-8:rgb(8,133,154,var(--tw-opacity,1));--cyan-9:rgb(0,108,126,var(--tw-opacity,1));--cyan-10:rgb(0,79,93,var(--tw-opacity,1));--cyan-11:rgb(0,47,53,var(--tw-opacity,1));--cyan-12:rgb(0,12,13,var(--tw-opacity,1));--blue-0:rgb(242,249,255,var(--tw-opacity,1));--blue-1:rgb(202,229,255,var(--tw-opacity,1));--blue-2:rgb(162,209,255,var(--tw-opacity,1));--blue-3:rgb(121,189,255,var(--tw-opacity,1));--blue-4:rgb(81,168,248,var(--tw-opacity,1));--blue-5:rgb(51,147,234,var(--tw-opacity,1));--blue-6:rgb(28,126,214,var(--tw-opacity,1));--blue-7:rgb(11,107,193,var(--tw-opacity,1));--blue-8:rgb(0,87,167,var(--tw-opacity,1));--blue-9:rgb(0,68,134,var(--tw-opacity,1));--blue-10:rgb(0,47,94,var(--tw-opacity,1));--blue-11:rgb(0,27,53,var(--tw-opacity,1));--blue-12:rgb(0,7,13,var(--tw-opacity,1));--indigo-0:rgb(242,245,255,var(--tw-opacity,1));--indigo-1:rgb(202,216,255,var(--tw-opacity,1));--indigo-2:rgb(162,189,255,var(--tw-opacity,1));--indigo-3:rgb(121,163,255,var(--tw-opacity,1));--indigo-4:rgb(84,140,255,var(--tw-opacity,1));--indigo-5:rgb(58,119,252,var(--tw-opacity,1));--indigo-6:rgb(37,99,235,var(--tw-opacity,1));--indigo-7:rgb(17,78,212,var(--tw-opacity,1));--indigo-8:rgb(3,59,174,var(--tw-opacity,1));--indigo-9:rgb(0,42,134,var(--tw-opacity,1));--indigo-10:rgb(0,27,94,var(--tw-opacity,1));--indigo-11:rgb(0,14,53,var(--tw-opacity,1));--indigo-12:rgb(0,3,13,var(--tw-opacity,1));--violet-0:rgb(250,242,255,var(--tw-opacity,1));--violet-1:rgb(233,202,255,var(--tw-opacity,1));--violet-2:rgb(217,162,255,var(--tw-opacity,1));--violet-3:rgb(200,124,255,var(--tw-opacity,1));--violet-4:rgb(182,95,255,var(--tw-opacity,1));--violet-5:rgb(165,71,250,var(--tw-opacity,1));--violet-6:rgb(147,51,234,var(--tw-opacity,1));--violet-7:rgb(124,30,210,var(--tw-opacity,1));--violet-8:rgb(102,14,174,var(--tw-opacity,1));--violet-9:rgb(78,3,134,var(--tw-opacity,1));--violet-10:rgb(55,0,94,var(--tw-opacity,1));--violet-11:rgb(31,0,53,var(--tw-opacity,1));--violet-12:rgb(8,0,13,var(--tw-opacity,1));--magenta-0:rgb(253,242,255,var(--tw-opacity,1));--magenta-1:rgb(246,203,255,var(--tw-opacity,1));--magenta-2:rgb(236,167,252,var(--tw-opacity,1));--magenta-3:rgb(224,135,245,var(--tw-opacity,1));--magenta-4:rgb(209,107,234,var(--tw-opacity,1));--magenta-5:rgb(193,83,219,var(--tw-opacity,1));--magenta-6:rgb(174,62,201,var(--tw-opacity,1));--magenta-7:rgb(152,42,179,var(--tw-opacity,1));--magenta-8:rgb(129,27,153,var(--tw-opacity,1));--magenta-9:rgb(103,14,124,var(--tw-opacity,1));--magenta-10:rgb(74,6,91,var(--tw-opacity,1));--magenta-11:rgb(44,1,53,var(--tw-opacity,1));--magenta-12:rgb(11,0,13,var(--tw-opacity,1));--pink-0:rgb(255,242,246,var(--tw-opacity,1));--pink-1:rgb(255,202,220,var(--tw-opacity,1));--pink-2:rgb(255,162,195,var(--tw-opacity,1));--pink-3:rgb(255,127,171,var(--tw-opacity,1));--pink-4:rgb(246,97,149,var(--tw-opacity,1));--pink-5:rgb(232,72,128,var(--tw-opacity,1));--pink-6:rgb(214,51,108,var(--tw-opacity,1));--pink-7:rgb(192,32,88,var(--tw-opacity,1));--pink-8:rgb(165,16,68,var(--tw-opacity,1));--pink-9:rgb(134,5,50,var(--tw-opacity,1));--pink-10:rgb(94,0,34,var(--tw-opacity,1));--pink-11:rgb(53,0,18,var(--tw-opacity,1));--pink-12:rgb(13,0,4,var(--tw-opacity,1));--theme-0:var(--blue-0);--theme-1:var(--blue-1);--theme-2:var(--blue-2);--theme-3:var(--blue-3);--theme-4:var(--blue-4);--theme-5:var(--blue-5);--theme-6:var(--blue-6);--theme-7:var(--blue-7);--theme-8:var(--blue-8);--theme-9:var(--blue-9);--theme-10:var(--blue-10);--theme-11:var(--blue-11);--theme-12:var(--blue-12);--complement-0:var(--indigo-0);--complement-1:var(--indigo-1);--complement-2:var(--indigo-2);--complement-3:var(--indigo-3);--complement-4:var(--indigo-4);--complement-5:var(--indigo-5);--complement-6:var(--indigo-6);--complement-7:var(--indigo-7);--complement-8:var(--indigo-8);--complement-9:var(--indigo-9);--complement-10:var(--indigo-10);--complement-11:var(--indigo-11);--complement-12:var(--indigo-12)}*{accent-color:var(--theme-6)}.theme-gray{--theme-0:var(--gray-0);--theme-1:var(--gray-1);--theme-2:var(--gray-2);--theme-3:var(--gray-3);--theme-4:var(--gray-4);--theme-5:var(--gray-5);--theme-6:var(--gray-6);--theme-7:var(--gray-7);--theme-8:var(--gray-8);--theme-9:var(--gray-9);--theme-10:var(--gray-10);--theme-11:var(--gray-11);--theme-12:var(--gray-12)}.theme-red{--theme-0:var(--red-0);--theme-1:var(--red-1);--theme-2:var(--red-2);--theme-3:var(--red-3);--theme-4:var(--red-4);--theme-5:var(--red-5);--theme-6:var(--red-6);--theme-7:var(--red-7);--theme-8:var(--red-8);--theme-9:var(--red-9);--theme-10:var(--red-10);--theme-11:var(--red-11);--theme-12:var(--red-12)}.theme-orange{--theme-0:var(--orange-0);--theme-1:var(--orange-1);--theme-2:var(--orange-2);--theme-3:var(--orange-3);--theme-4:var(--orange-4);--theme-5:var(--orange-5);--theme-6:var(--orange-6);--theme-7:var(--orange-7);--theme-8:var(--orange-8);--theme-9:var(--orange-9);--theme-10:var(--orange-10);--theme-11:var(--orange-11);--theme-12:var(--orange-12)}.theme-gold{--theme-0:var(--gold-0);--theme-1:var(--gold-1);--theme-2:var(--gold-2);--theme-3:var(--gold-3);--theme-4:var(--gold-4);--theme-5:var(--gold-5);--theme-6:var(--gold-6);--theme-7:var(--gold-7);--theme-8:var(--gold-8);--theme-9:var(--gold-9);--theme-10:var(--gold-10);--theme-11:var(--gold-11);--theme-12:var(--gold-12)}.theme-yellow{--theme-0:var(--yellow-0);--theme-1:var(--yellow-1);--theme-2:var(--yellow-2);--theme-3:var(--yellow-3);--theme-4:var(--yellow-4);--theme-5:var(--yellow-5);--theme-6:var(--yellow-6);--theme-7:var(--yellow-7);--theme-8:var(--yellow-8);--theme-9:var(--yellow-9);--theme-10:var(--yellow-10);--theme-11:var(--yellow-11);--theme-12:var(--yellow-12)}.theme-lime{--theme-0:var(--lime-0);--theme-1:var(--lime-1);--theme-2:var(--lime-2);--theme-3:var(--lime-3);--theme-4:var(--lime-4);--theme-5:var(--lime-5);--theme-6:var(--lime-6);--theme-7:var(--lime-7);--theme-8:var(--lime-8);--theme-9:var(--lime-9);--theme-10:var(--lime-10);--theme-11:var(--lime-11);--theme-12:var(--lime-12)}.theme-green{--theme-0:var(--green-0);--theme-1:var(--green-1);--theme-2:var(--green-2);--theme-3:var(--green-3);--theme-4:var(--green-4);--theme-5:var(--green-5);--theme-6:var(--green-6);--theme-7:var(--green-7);--theme-8:var(--green-8);--theme-9:var(--green-9);--theme-10:var(--green-10);--theme-11:var(--green-11);--theme-12:var(--green-12)}.theme-teal{--theme-0:var(--teal-0);--theme-1:var(--teal-1);--theme-2:var(--teal-2);--theme-3:var(--teal-3);--theme-4:var(--teal-4);--theme-5:var(--teal-5);--theme-6:var(--teal-6);--theme-7:var(--teal-7);--theme-8:var(--teal-8);--theme-9:var(--teal-9);--theme-10:var(--teal-10);--theme-11:var(--teal-11);--theme-12:var(--teal-12)}.theme-cyan{--theme-0:var(--cyan-0);--theme-1:var(--cyan-1);--theme-2:var(--cyan-2);--theme-3:var(--cyan-3);--theme-4:var(--cyan-4);--theme-5:var(--cyan-5);--theme-6:var(--cyan-6);--theme-7:var(--cyan-7);--theme-8:var(--cyan-8);--theme-9:var(--cyan-9);--theme-10:var(--cyan-10);--theme-11:var(--cyan-11);--theme-12:var(--cyan-12)}.theme-blue{--theme-0:var(--blue-0);--theme-1:var(--blue-1);--theme-2:var(--blue-2);--theme-3:var(--blue-3);--theme-4:var(--blue-4);--theme-5:var(--blue-5);--theme-6:var(--blue-6);--theme-7:var(--blue-7);--theme-8:var(--blue-8);--theme-9:var(--blue-9);--theme-10:var(--blue-10);--theme-11:var(--blue-11);--theme-12:var(--blue-12)}.theme-indigo{--theme-0:var(--indigo-0);--theme-1:var(--indigo-1);--theme-2:var(--indigo-2);--theme-3:var(--indigo-3);--theme-4:var(--indigo-4);--theme-5:var(--indigo-5);--theme-6:var(--indigo-6);--theme-7:var(--indigo-7);--theme-8:var(--indigo-8);--theme-9:var(--indigo-9);--theme-10:var(--indigo-10);--theme-11:var(--indigo-11);--theme-12:var(--indigo-12)}.theme-violet{--theme-0:var(--violet-0);--theme-1:var(--violet-1);--theme-2:var(--violet-2);--theme-3:var(--violet-3);--theme-4:var(--violet-4);--theme-5:var(--violet-5);--theme-6:var(--violet-6);--theme-7:var(--violet-7);--theme-8:var(--violet-8);--theme-9:var(--violet-9);--theme-10:var(--violet-10);--theme-11:var(--violet-11);--theme-12:var(--violet-12)}.theme-magenta{--theme-0:var(--magenta-0);--theme-1:var(--magenta-1);--theme-2:var(--magenta-2);--theme-3:var(--magenta-3);--theme-4:var(--magenta-4);--theme-5:var(--magenta-5);--theme-6:var(--magenta-6);--theme-7:var(--magenta-7);--theme-8:var(--magenta-8);--theme-9:var(--magenta-9);--theme-10:var(--magenta-10);--theme-11:var(--magenta-11);--theme-12:var(--magenta-12)}.theme-pink{--theme-0:var(--pink-0);--theme-1:var(--pink-1);--theme-2:var(--pink-2);--theme-3:var(--pink-3);--theme-4:var(--pink-4);--theme-5:var(--pink-5);--theme-6:var(--pink-6);--theme-7:var(--pink-7);--theme-8:var(--pink-8);--theme-9:var(--pink-9);--theme-10:var(--pink-10);--theme-11:var(--pink-11);--theme-12:var(--pink-12)}.complement-gray{--complement-0:var(--gray-0);--complement-1:var(--gray-1);--complement-2:var(--gray-2);--complement-3:var(--gray-3);--complement-4:var(--gray-4);--complement-5:var(--gray-5);--complement-6:var(--gray-6);--complement-7:var(--gray-7);--complement-8:var(--gray-8);--complement-9:var(--gray-9);--complement-10:var(--gray-10);--complement-11:var(--gray-11);--complement-12:var(--gray-12)}.complement-red{--complement-0:var(--red-0);--complement-1:var(--red-1);--complement-2:var(--red-2);--complement-3:var(--red-3);--complement-4:var(--red-4);--complement-5:var(--red-5);--complement-6:var(--red-6);--complement-7:var(--red-7);--complement-8:var(--red-8);--complement-9:var(--red-9);--complement-10:var(--red-10);--complement-11:var(--red-11);--complement-12:var(--red-12)}.complement-orange{--complement-0:var(--orange-0);--complement-1:var(--orange-1);--complement-2:var(--orange-2);--complement-3:var(--orange-3);--complement-4:var(--orange-4);--complement-5:var(--orange-5);--complement-6:var(--orange-6);--complement-7:var(--orange-7);--complement-8:var(--orange-8);--complement-9:var(--orange-9);--complement-10:var(--orange-10);--complement-11:var(--orange-11);--complement-12:var(--orange-12)}.complement-gold{--complement-0:var(--gold-0);--complement-1:var(--gold-1);--complement-2:var(--gold-2);--complement-3:var(--gold-3);--complement-4:var(--gold-4);--complement-5:var(--gold-5);--complement-6:var(--gold-6);--complement-7:var(--gold-7);--complement-8:var(--gold-8);--complement-9:var(--gold-9);--complement-10:var(--gold-10);--complement-11:var(--gold-11);--complement-12:var(--gold-12)}.complement-yellow{--complement-0:var(--yellow-0);--complement-1:var(--yellow-1);--complement-2:var(--yellow-2);--complement-3:var(--yellow-3);--complement-4:var(--yellow-4);--complement-5:var(--yellow-5);--complement-6:var(--yellow-6);--complement-7:var(--yellow-7);--complement-8:var(--yellow-8);--complement-9:var(--yellow-9);--complement-10:var(--yellow-10);--complement-11:var(--yellow-11);--complement-12:var(--yellow-12)}.complement-lime{--complement-0:var(--lime-0);--complement-1:var(--lime-1);--complement-2:var(--lime-2);--complement-3:var(--lime-3);--complement-4:var(--lime-4);--complement-5:var(--lime-5);--complement-6:var(--lime-6);--complement-7:var(--lime-7);--complement-8:var(--lime-8);--complement-9:var(--lime-9);--complement-10:var(--lime-10);--complement-11:var(--lime-11);--complement-12:var(--lime-12)}.complement-green{--complement-0:var(--green-0);--complement-1:var(--green-1);--complement-2:var(--green-2);--complement-3:var(--green-3);--complement-4:var(--green-4);--complement-5:var(--green-5);--complement-6:var(--green-6);--complement-7:var(--green-7);--complement-8:var(--green-8);--complement-9:var(--green-9);--complement-10:var(--green-10);--complement-11:var(--green-11);--complement-12:var(--green-12)}.complement-teal{--complement-0:var(--teal-0);--complement-1:var(--teal-1);--complement-2:var(--teal-2);--complement-3:var(--teal-3);--complement-4:var(--teal-4);--complement-5:var(--teal-5);--complement-6:var(--teal-6);--complement-7:var(--teal-7);--complement-8:var(--teal-8);--complement-9:var(--teal-9);--complement-10:var(--teal-10);--complement-11:var(--teal-11);--complement-12:var(--teal-12)}.complement-cyan{--complement-0:var(--cyan-0);--complement-1:var(--cyan-1);--complement-2:var(--cyan-2);--complement-3:var(--cyan-3);--complement-4:var(--cyan-4);--complement-5:var(--cyan-5);--complement-6:var(--cyan-6);--complement-7:var(--cyan-7);--complement-8:var(--cyan-8);--complement-9:var(--cyan-9);--complement-10:var(--cyan-10);--complement-11:var(--cyan-11);--complement-12:var(--cyan-12)}.complement-blue{--complement-0:var(--blue-0);--complement-1:var(--blue-1);--complement-2:var(--blue-2);--complement-3:var(--blue-3);--complement-4:var(--blue-4);--complement-5:var(--blue-5);--complement-6:var(--blue-6);--complement-7:var(--blue-7);--complement-8:var(--blue-8);--complement-9:var(--blue-9);--complement-10:var(--blue-10);--complement-11:var(--blue-11);--complement-12:var(--blue-12)}.complement-indigo{--complement-0:var(--indigo-0);--complement-1:var(--indigo-1);--complement-2:var(--indigo-2);--complement-3:var(--indigo-3);--complement-4:var(--indigo-4);--complement-5:var(--indigo-5);--complement-6:var(--indigo-6);--complement-7:var(--indigo-7);--complement-8:var(--indigo-8);--complement-9:var(--indigo-9);--complement-10:var(--indigo-10);--complement-11:var(--indigo-11);--complement-12:var(--indigo-12)}.complement-violet{--complement-0:var(--violet-0);--complement-1:var(--violet-1);--complement-2:var(--violet-2);--complement-3:var(--violet-3);--complement-4:var(--violet-4);--complement-5:var(--violet-5);--complement-6:var(--violet-6);--complement-7:var(--violet-7);--complement-8:var(--violet-8);--complement-9:var(--violet-9);--complement-10:var(--violet-10);--complement-11:var(--violet-11);--complement-12:var(--violet-12)}.complement-magenta{--complement-0:var(--magenta-0);--complement-1:var(--magenta-1);--complement-2:var(--magenta-2);--complement-3:var(--magenta-3);--complement-4:var(--magenta-4);--complement-5:var(--magenta-5);--complement-6:var(--magenta-6);--complement-7:var(--magenta-7);--complement-8:var(--magenta-8);--complement-9:var(--magenta-9);--complement-10:var(--magenta-10);--complement-11:var(--magenta-11);--complement-12:var(--magenta-12)}.complement-pink{--complement-0:var(--pink-0);--complement-1:var(--pink-1);--complement-2:var(--pink-2);--complement-3:var(--pink-3);--complement-4:var(--pink-4);--complement-5:var(--pink-5);--complement-6:var(--pink-6);--complement-7:var(--pink-7);--complement-8:var(--pink-8);--complement-9:var(--pink-9);--complement-10:var(--pink-10);--complement-11:var(--pink-11);--complement-12:var(--pink-12)}}@layer midwest.responsive{html{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto;font-size:.625rem!important;font-variant-numeric:tabular-nums;letter-spacing:.02em;scroll-behavior:smooth;scroll-padding:4rem}@media (min-width:400px){html{font-size:.6875rem!important}}@media (min-width:600px){html{font-size:.75rem!important}}@media (min-width:800px){html{font-size:.8125rem!important}}@media (min-width:1000px){html{font-size:.875rem!important}}@media (min-width:1200px){html{font-size:.9375rem}}@media (min-width:1400px){html{font-size:1rem}}}@layer midwest.dark-mode{html{background-color:var(--gray-0);color:var(--gray-10)}.dark html{background-color:var(--gray-12);color:var(--gray-2)}html.dark{background-color:var(--gray-12)!important;color:var(--gray-2)!important}h1,h2,h3,h4,h5,h6,label,p{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dark h1,.dark h2,.dark h3,.dark h4,.dark h5,.dark h6,.dark label,.dark p{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}p{color:var(--gray-10)}.dark p{color:var(--gray-2)}}@layer midwest.typography{h1{font-size:3.75rem}h1,h2{font-weight:700;letter-spacing:.025em;line-height:1}h2{font-size:3rem}h3{font-size:2.25rem;line-height:2.5rem;line-height:1}h3,h4{font-weight:700;letter-spacing:.025em}h4{font-size:1.875rem;line-height:2.25rem;line-height:1}h5{font-size:1.5rem;letter-spacing:.025em;line-height:2rem;line-height:1}h5,h6,label{font-weight:700}h6,label{font-size:1.25rem;letter-spacing:.05em;line-height:1.75rem;line-height:1;text-transform:uppercase}p{font-size:1.125rem;line-height:1.75rem;line-height:1.375}}@layer midwest.badge{.midwest-badge{background:var(--theme-7,var(--gray-7));border:1px solid var(--theme-7,var(--gray-7));border-radius:1.5rem;color:var(--theme-0,var(--gray-0));display:inline-flex;font-size:.875rem;font-weight:700;letter-spacing:.05em;line-height:1.25rem;line-height:1.375;padding:2px .75em;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.midwest-badge.has-support{gap:.5rem;padding:2px .75em 2px 2px}.midwest-badge.has-support>.support{background:var(--theme-0,var(--gray-0));border-bottom-left-radius:1.5rem;border-top-left-radius:1.5rem;color:var(--theme-12,var(--gray-12));padding:0 .25rem 0 .5rem}.midwest-badge.theme-lime,.midwest-badge.theme-yellow,:is(.theme-yellow,.theme-lime) .midwest-badge{background:var(--theme-6,var(--gray-6));border:1px solid var(--theme-6,var(--gray-6));color:var(--theme-11,var(--gray-11))}.midwest-badge.size-sm{font-size:.75rem;line-height:1rem}.midwest-badge.size-lg{font-size:1rem;line-height:1.5rem}}@layer midwest.card{.midwest-card{container-type:inline-size;container-name:midwest-card;--border:1px solid var(--gray-1);--background:var(--white);--background-active:var(--theme-0);--flipped-background:var(--white);--flipped-min-height:var(--flipped-min-height,20rem);--flipped-transition:none;--border-radius:0.5rem;--padding:2rem;--min-height:10rem;--card-width:auto;-webkit-appearance:none;border-radius:var(--border-radius);display:block;height:auto}.midwest-card,.midwest-card>.wrap{-moz-appearance:none;appearance:none;background:var(--background)}.midwest-card>.wrap{-webkit-appearance:none!important;border:var(--border)!important;border-radius:var(--border-radius);color:inherit;display:grid;font-size:inherit;grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto;height:100%;min-height:var(--min-height);outline:none;padding:0;text-align:inherit;text-decoration:none;width:var(--card-width)}.midwest-card>.wrap footer,.midwest-card>.wrap header{border-bottom:var(--border)!important;border-radius:var(--border-radius) var(--border-radius) 0 0;grid-area:header!important;max-width:calc(var(--card-width) - 2px);padding:1rem var(--padding);width:calc(var(--card-width) - 2px)}.midwest-card>.wrap footer.flex,.midwest-card>.wrap header.flex{align-items:center;gap:1rem;justify-content:space-between}.midwest-card>.wrap footer.flush,.midwest-card>.wrap header.flush{border-bottom:0!important;padding-bottom:0}.midwest-card>.wrap footer.sticky,.midwest-card>.wrap header.sticky{position:sticky;top:0;z-index:999999}.midwest-card>.wrap :is(.wrap,.front,.back) :not(.wrap,.front,.back),.midwest-card>.wrap section{grid-area:section;max-width:calc(var(--card-width) - var(--padding)*2)}.midwest-card>.wrap :is(.wrap,.front,.back) :not(.wrap,.front,.back).flush,.midwest-card>.wrap section.flush{grid-column:1/span 3;grid-row:2/span 3;max-width:100%!important;padding:1rem;width:100%!important}.midwest-card>.wrap footer{border-bottom:0!important;border-radius:0 0 var(--border-radius) var(--border-radius);border-top:var(--border)!important;grid-area:footer!important}.midwest-card.horizontal>.wrap{grid-auto-flow:row;overflow:hidden}.midwest-card.horizontal>.wrap,.midwest-card.horizontal>.wrap>.back,.midwest-card.horizontal>.wrap>.front{grid-template-areas:"header . . ." "header . . ." "header . section ." "header . . ." "footer footer footer footer";grid-template-columns:var(--header-width,auto) var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.horizontal header{border-bottom:0!important;border-radius:var(--border-radius) 0 0 var(--border-radius);width:100%}.midwest-card.horizontal header.flush{padding:0!important}.midwest-card.horizontal section{margin:auto;width:100%}.midwest-card.flippable{background:#0000;perspective:3000px}.midwest-card.flippable.flip-ready>.wrap{transition:all .5s var(--ease,ease-in-out) 0s,background-color 0s ease 0s}.midwest-card.flippable>.wrap{background:var(--background);display:block}.midwest-card.flippable>.wrap>.back,.midwest-card.flippable>.wrap>.front{display:grid;grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto;height:auto;min-height:var(--min-height);padding:0}.midwest-card.flippable>.wrap>.front{-webkit-backface-visibility:hidden;backface-visibility:hidden;height:100%;opacity:1;z-index:1}.midwest-card.flippable>.wrap>.back{height:-moz-min-content;height:min-content;left:0;opacity:0;overflow-y:none;pointer-events:none;position:absolute;top:0;transform:rotateY(180deg);width:100%;z-index:0}.midwest-card.flippable>.wrap>.back *{-webkit-backface-visibility:hidden;backface-visibility:hidden}.midwest-card.flippable>.wrap>.back section{height:calc(100% + var(--padding))}.midwest-card.flippable.horizontal.flippable>.wrap>.back,.midwest-card.flippable.horizontal.flippable>.wrap>.front{grid-template-areas:"header . . ." "header . . ." "header . section ." "header . . ." "footer footer footer footer";grid-template-columns:var(--header-width,auto) var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.flippable.flip-ready>.wrap>.front{transition:min-height .35s linear 0s,opacity .15s linear .3s!important}.midwest-card.flippable.flip-ready>.wrap>.back{transition:min-height .35s linear 0s,opacity .15s linear 0s!important}.midwest-card.flippable.flipped{--background:var(--flipped-background,#fff)!important;--min-height:var(--flipped-min-height)!important;z-index:1}.midwest-card.flippable.flipped>.wrap{min-height:var(--min-height);transform:rotateY(180deg)}.midwest-card.flippable.flipped>.wrap>.back,.midwest-card.flippable.flipped>.wrap>.front{min-height:var(--min-height)}.midwest-card.flippable.flipped>.wrap>.front{opacity:0;pointer-events:none;transition:min-height .35s linear 0s,opacity .15s linear 0s!important}.midwest-card.flippable.flipped>.wrap>.back{opacity:1;overflow-y:initial;pointer-events:auto;transition:min-height .35s linear 0s,opacity .15s linear .3s!important}:is(.dark) .midwest-card{--border:1px solid var(--gray-9);--background:var(--gray-11);--background-active:var(--gray-11);--flipped-background:var(--gray-11)}@media screen and (prefers-reduced-motion:reduce){.midwest-card.flippable.flip-ready>.wrap{transition:none}.midwest-card.flippable.flip-ready.flipped>.wrap>.front,.midwest-card.flippable.flip-ready>.wrap>.back,.midwest-card.flippable.flip-ready>.wrap>.front{transition:none!important}}@container midwest-card (max-width: 350px){.midwest-card>.wrap{--padding:1rem!important}.midwest-card>.wrap footer.flex,.midwest-card>.wrap header.flex{flex-direction:column}.midwest-card.horizontal>.wrap,.midwest-card.horizontal>.wrap .back,.midwest-card.horizontal>.wrap .front{grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.horizontal>header{border-radius:var(--border-radius) var(--border-radius) 0 0}}}@layer midwest.icon{.midwest-icon{fill:currentColor;box-sizing:initial!important;color:currentColor;contain:strict;content-visibility:auto;display:inline-block;font-size:1rem;height:1em;width:1em}.midwest-icon>.icon-inner,.midwest-icon>.icon-inner>svg{display:block;height:100%;width:100%}}@layer midwest.grid{.midwest-grid{display:flex;display:grid;flex-wrap:wrap;position:relative}@layer midwest.card{.midwest-card>.wrap footer.midwest-grid,.midwest-card>.wrap header.midwest-grid{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer.midwest-grid,.midwest-card>.wrap header.midwest-grid{flex-direction:column}}}.midwest-grid{--grid-width:200px;--grid-gap:2rem;grid-gap:var(--grid-gap);grid-template-columns:repeat(auto-fit,minmax(var(--grid-width),1fr))}.midwest-grid.padding-match-gap{padding:var(--grid-gap)}}@layer midwest.layout{.midwest-layout{container-type:inline-size;container-name:midwest-layout;--layout-grid-gap:1rem;--layout-padding:2rem;--layout-width:calc(100% - var(--layout-grid-gap)*2);--xs-layout:420px;--sm-layout:800px;--md-layout:1024px;--lg-layout:1200px;display:grid;position:relative}.midwest-layout>.wrapper{grid-gap:var(--layout-grid-gap,2rem);display:grid;grid-template-columns:var(--layout,1fr);margin:0 auto;max-width:var(--md-layout);min-height:0;min-width:0;padding:var(--layout-padding) 0;width:var(--layout-width)}.midwest-layout>.wrapper>*{min-width:0}.midwest-layout.size-xs>.wrapper{max-width:var(--xs-layout)}.midwest-layout.size-sm>.wrapper{max-width:var(--sm-layout)}.midwest-layout.size-lg>.wrapper{max-width:var(--lg-layout)}.midwest-layout.size-full>.wrapper{max-width:100%}.midwest-layout.size-flush>.wrapper{max-width:100%;width:100%}.midwest-layout.padding-none{--layout-padding:0;--layout-grid-gap:0}.midwest-layout.padding-xs{--layout-padding:0.5rem;--layout-grid-gap:0.25rem}.midwest-layout.padding-sm{--layout-padding:1rem;--layout-grid-gap:0.5rem}.midwest-layout.padding-lg{--layout-padding:3rem;--layout-grid-gap:6rem}.midwest-layout.has-nav>.wrapper{padding-bottom:0}.midwest-layout.has-nav>.wrapper>nav{margin-top:calc(var(--layout-padding)/2)}.midwest-layout[class*=-flipped] aside{order:9999}@container midwest-layout (min-width: 700px){.type-default>.wrapper{--layout:1fr!important}.type-one-third>.wrapper{--layout:1fr 2fr!important}.type-one-third-flipped>.wrapper{--layout:2fr 1fr!important}.type-sidebar>.wrapper{--layout:1fr 4fr!important}.type-sidebar-flipped>.wrapper{--layout:4fr 1fr!important}.type-locked-sidebar>.wrapper{--layout:var(--layout-sidebar-width,16rem) 1fr!important}.type-locked-sidebar-flipped>.wrapper{--layout:1fr var(--layout-sidebar-width,16rem)!important}.type-supporting-content>.wrapper{--layout:4fr 6fr!important}.type-supporting-content-flipped>.wrapper{--layout:6fr 4fr!important}.type-half>.wrapper{--layout:1fr 1fr!important}}}@layer midwest.prose{.midwest-prose{display:block;text-align:left}.dark .midwest-prose a,.midwest-prose a{color:var(--theme-6)}.midwest-prose>*{margin-bottom:.125em!important}.midwest-prose>h1+p,.midwest-prose>h2+p,.midwest-prose>h3+p,.midwest-prose>h4+p,.midwest-prose>h5+p,.midwest-prose>h6+p{margin-top:.5rem!important}.midwest-prose>p+h1,.midwest-prose>p+h2,.midwest-prose>p+h3,.midwest-prose>p+h4,.midwest-prose>p+h5,.midwest-prose>p+h6{margin-top:2rem!important}.midwest-prose>:last-child{margin-bottom:0!important}.midwest-prose>.midwest-button,.midwest-prose>dl{margin-top:1rem!important}blockquote{border-color:var(--theme-6)}blockquote p{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dark blockquote p{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.midwest-prose[clamp]{-webkit-line-clamp:var(--clamp,3);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}}@layer midwest.input{.midwest-input :is(input,textarea){--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);border-color:var(--gray-1);border-radius:.375rem;border-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:block;width:100%}.midwest-input :is(input,textarea):focus{--tw-ring-color:var(--theme-6);border-color:var(--theme-6)}.dark .midwest-input :is(input,textarea){--tw-text-opacity:1;background-color:var(--gray-10);border-color:var(--gray-9);color:rgb(255 255 255/var(--tw-text-opacity))}.dark .midwest-input :is(input,textarea)::-moz-placeholder{color:var(--gray-4)}.dark .midwest-input :is(input,textarea)::placeholder{color:var(--gray-4)}.dark .midwest-input :is(input,textarea):focus{--tw-ring-color:var(--theme-7);border-color:var(--theme-7)}@media (min-width:640px){.midwest-input :is(input,textarea){font-size:1.125rem;line-height:1.75rem}}.midwest-input :is(input,textarea):disabled{background-color:var(--gray-1);border-color:var(--gray-2);color:var(--gray-6);cursor:not-allowed}.dark .midwest-input :is(input,textarea):disabled{background-color:var(--gray-12);border-color:var(--gray-10);color:var(--gray-6)}.midwest-input__bottom,.midwest-input__top{display:flex;flex-wrap:wrap;gap:.25rem;justify-content:space-between;width:100%}@layer midwest.card{.midwest-card>.wrap footer .midwest-input__bottom,.midwest-card>.wrap footer.midwest-input__top,.midwest-card>.wrap header .midwest-input__bottom,.midwest-card>.wrap header.midwest-input__top{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer .midwest-input__bottom,.midwest-card>.wrap footer.midwest-input__top,.midwest-card>.wrap header .midwest-input__bottom,.midwest-card>.wrap header.midwest-input__top{flex-direction:column}}}.midwest-input__top{margin-bottom:.25rem}.midwest-input__bottom{margin-top:.25rem}.midwest-input.has-error :is(input,textarea){border-color:var(--theme-6);color:var(--theme-8)}.dark .midwest-input.has-error :is(input,textarea){border-color:var(--theme-6);color:var(--theme-4)}.midwest-input.inline :is(input,textarea){--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;border-color:var(--gray-2);border-radius:0;border-width:0 0 2px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.midwest-input.inline :is(input,textarea):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(var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:var(--theme-6);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.midwest-input.type-hidden{display:contents}}@layer midwest.label{.midwest-label{align-items:center;color:var(--gray-12);display:flex;font-size:1rem;font-weight:700;gap:.5rem;letter-spacing:.05em;line-height:1.5rem}@layer midwest.card{.midwest-card>.wrap footer.midwest-label,.midwest-card>.wrap header.midwest-label{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer.midwest-label,.midwest-card>.wrap header.midwest-label{flex-direction:column}}}.dark .midwest-label{color:var(--gray-0)}.midwest-label.description{color:var(--gray-4);font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1rem;text-transform:none}.dark .midwest-label.description{color:var(--gray-4)}.midwest-label.error{color:var(--theme-6)}.midwest-label.error .midwest-icon{color:var(--theme-7);font-size:1.125rem;line-height:1.75rem}}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.pointer-events-none{pointer-events:none}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.bottom-0{bottom:0}.right-0{right:0}.top-0{top:0}.left-0{left:0}.z-10{z-index:10}.order-last{order:9999}.order-3{order:3}.col-span-full{grid-column:1/-1}.m-8{margin:2rem}.m-auto{margin:auto}.-m-3{margin:-.75rem}.-my-2{margin-bottom:-.5rem;margin-top:-.5rem}.mx-auto{margin-left:auto;margin-right:auto}.mb-0{margin-bottom:0}.mb-4{margin-bottom:1rem}.-mr-2{margin-right:-.5rem}.ml-2{margin-left:.5rem}.ml-8{margin-left:2rem}.mt-6{margin-top:1.5rem}.ml-3{margin-left:.75rem}.mt-5{margin-top:1.25rem}.mr-4{margin-right:1rem}.ml-4{margin-left:1rem}.mb-2{margin-bottom:.5rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.ml-5{margin-left:1.25rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-full{height:100%}.h-fit{height:-moz-fit-content;height:fit-content}.h-32{height:8rem}.h-48{height:12rem}.h-8{height:2rem}.h-6{height:1.5rem}.h-16{height:4rem}.h-5{height:1.25rem}.min-h-screen{min-height:100vh}.w-full{width:100%}.w-32{width:8rem}.w-36{width:9rem}.w-96{width:24rem}.w-auto{width:auto}.w-6{width:1.5rem}.w-5{width:1.25rem}.w-0{width:0}.min-w-full{min-width:100%}.max-w-6xl{max-width:72rem}.max-w-0{max-width:0}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.origin-top-right{transform-origin:top right}.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))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.place-content-center{place-content:center}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-4{gap:1rem}.gap-8{gap:2rem}.gap-y-8{row-gap:2rem}.gap-y-4{row-gap:1rem}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.space-x-10>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2.5rem*var(--tw-space-x-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.divide-y-2>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(2px*var(--tw-divide-y-reverse));border-top-width:calc(2px*(1 - var(--tw-divide-y-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-theme-8>:not([hidden])~:not([hidden]){border-color:var(--theme-8)}.divide-gray-2>:not([hidden])~:not([hidden]){border-color:var(--gray-2)}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.rounded-md{border-radius:.375rem}.rounded{border-radius:.25rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-transparent{border-color:#0000}.border-theme-0{border-color:var(--theme-0)}.border-theme-1{border-color:var(--theme-1)}.border-theme-2{border-color:var(--theme-2)}.border-theme-3{border-color:var(--theme-3)}.border-theme-4{border-color:var(--theme-4)}.border-theme-5{border-color:var(--theme-5)}.border-theme-6{border-color:var(--theme-6)}.border-theme-7{border-color:var(--theme-7)}.border-theme-8{border-color:var(--theme-8)}.border-theme-9{border-color:var(--theme-9)}.border-theme-10{border-color:var(--theme-10)}.border-theme-11{border-color:var(--theme-11)}.border-theme-12{border-color:var(--theme-12)}.border-gray-2{border-color:var(--gray-2)}.border-gray-3{border-color:var(--gray-3)}.bg-theme-0{background-color:var(--theme-0)}.bg-theme-6{background-color:var(--theme-6)}.bg-theme-1{background-color:var(--theme-1)}.bg-theme-2{background-color:var(--theme-2)}.bg-theme-3{background-color:var(--theme-3)}.bg-theme-4{background-color:var(--theme-4)}.bg-theme-5{background-color:var(--theme-5)}.bg-theme-7{background-color:var(--theme-7)}.bg-theme-8{background-color:var(--theme-8)}.bg-theme-9{background-color:var(--theme-9)}.bg-theme-10{background-color:var(--theme-10)}.bg-theme-11{background-color:var(--theme-11)}.bg-theme-12{background-color:var(--theme-12)}.bg-complement-0{background-color:var(--complement-0)}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bg-complement-1{background-color:var(--complement-1)}.bg-complement-2{background-color:var(--complement-2)}.bg-complement-3{background-color:var(--complement-3)}.bg-complement-4{background-color:var(--complement-4)}.bg-complement-5{background-color:var(--complement-5)}.bg-complement-6{background-color:var(--complement-6)}.bg-complement-7{background-color:var(--complement-7)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-complement-8{background-color:var(--complement-8)}.bg-complement-9{background-color:var(--complement-9)}.bg-complement-10{background-color:var(--complement-10)}.bg-complement-11{background-color:var(--complement-11)}.bg-complement-12{background-color:var(--complement-12)}.bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--tw-gradient-stops))}.bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--tw-gradient-stops))}.from-theme-6{--tw-gradient-from:var(--theme-6);--tw-gradient-to:#fff0;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.to-complement-6{--tw-gradient-to:var(--complement-6)}.fill-gray-0{fill:var(--gray-0)}.fill-theme-8{fill:var(--theme-8)}.fill-theme-2{fill:var(--theme-2)}.fill-theme-4{fill:var(--theme-4)}.fill-theme-6{fill:var(--theme-6)}.fill-theme-10{fill:var(--theme-10)}.fill-theme-3{fill:var(--theme-3)}.fill-theme-5{fill:var(--theme-5)}.fill-complement-6{fill:var(--complement-6)}.fill-complement-5{fill:var(--complement-5)}.stroke-gray-1{stroke:var(--gray-1)}.stroke-theme-12{stroke:var(--theme-12)}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.p-2{padding:.5rem}.p-8{padding:2rem}.p-3{padding:.75rem}.p-1{padding:.25rem}.p-4{padding:1rem}.px-4{padding-left:1rem;padding-right:1rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-0{padding-bottom:0;padding-top:0}.pl-4{padding-left:1rem}.pr-8{padding-right:2rem}.pt-5{padding-top:1.25rem}.pb-6{padding-bottom:1.5rem}.pb-4{padding-bottom:1rem}.pt-6{padding-top:1.5rem}.pl-8{padding-left:2rem}.pr-3{padding-right:.75rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-sm{font-size:.875rem;line-height:1.25rem}.text-6xl{font-size:3.75rem;line-height:1}.text-base{font-size:1rem;line-height:1.5rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-xs{font-size:.75rem;line-height:1rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.font-medium{font-weight:500}.font-bold{font-weight:700}.font-semibold{font-weight:600}.capitalize{text-transform:capitalize}.leading-6{line-height:1.5rem}.text-theme-7{color:var(--theme-7)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-theme-12{color:var(--theme-12)}.text-theme-0{color:var(--theme-0)}.text-complement-12{color:var(--complement-12)}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-theme-1{color:var(--theme-1)}.text-theme-2{color:var(--theme-2)}.text-theme-3{color:var(--theme-3)}.text-theme-4{color:var(--theme-4)}.text-theme-5{color:var(--theme-5)}.text-complement-0{color:var(--complement-0)}.text-theme-6{color:var(--theme-6)}.text-theme-8{color:var(--theme-8)}.text-theme-9{color:var(--theme-9)}.text-theme-10{color:var(--theme-10)}.text-theme-11{color:var(--theme-11)}.text-gray-5{color:var(--gray-5)}.text-gray-6{color:var(--gray-6)}.text-gray-3{color:var(--gray-3)}.text-gray-12{color:var(--gray-12)}.text-gray-4{color:var(--gray-4)}.text-gray-9{color:var(--gray-9)}.text-gray-7{color:var(--gray-7)}.underline{text-decoration-line:underline}.no-underline{text-decoration-line:none}.placeholder-gray-5::-moz-placeholder{color:var(--gray-5)}.placeholder-gray-5::placeholder{color:var(--gray-5)}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-lg,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.outline-theme-0{outline-color:var(--theme-0)}.outline-theme-1{outline-color:var(--theme-1)}.outline-theme-2{outline-color:var(--theme-2)}.outline-theme-3{outline-color:var(--theme-3)}.outline-theme-4{outline-color:var(--theme-4)}.outline-theme-5{outline-color:var(--theme-5)}.outline-theme-6{outline-color:var(--theme-6)}.outline-theme-7{outline-color:var(--theme-7)}.outline-theme-8{outline-color:var(--theme-8)}.outline-theme-9{outline-color:var(--theme-9)}.outline-theme-10{outline-color:var(--theme-10)}.outline-theme-11{outline-color:var(--theme-11)}.outline-theme-12{outline-color:var(--theme-12)}.ring-1{--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:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgb(0 0 0/var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity:0.05}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.focus-within\:text-gray-6:focus-within{color:var(--gray-6)}.hover\:bg-theme-1:hover{background-color:var(--theme-1)}.hover\:bg-theme-6:hover{background-color:var(--theme-6)}.hover\:bg-gray-1:hover{background-color:var(--gray-1)}.hover\:bg-theme-8:hover{background-color:var(--theme-8)}.hover\:bg-theme-7:hover{background-color:var(--theme-7)}.hover\:text-gray-6:hover{color:var(--gray-6)}.hover\:text-gray-12:hover{color:var(--gray-12)}.hover\:text-gray-8:hover{color:var(--gray-8)}.hover\:text-theme-6:hover{color:var(--theme-6)}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:text-gray-5:hover{color:var(--gray-5)}.hover\:text-theme-9:hover{color:var(--theme-9)}.focus\:border-transparent:focus{border-color:#0000}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.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)}.focus\:ring-0:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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(var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-inset:focus{--tw-ring-inset:inset}.focus\:ring-theme-6:focus{--tw-ring-color:var(--theme-6)}.focus\:ring-theme-5:focus{--tw-ring-color:var(--theme-5)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.group:hover .group-hover\:text-gray-4{color:var(--gray-4)}.group:hover .group-hover\:text-gray-5{color:var(--gray-5)}.group:hover .group-hover\:text-gray-9{color:var(--gray-9)}.dark .dark\:border-gray-9{border-color:var(--gray-9)}.dark .dark\:bg-theme-11{background-color:var(--theme-11)}.dark .dark\:bg-gray-11{background-color:var(--gray-11)}.dark .dark\:bg-gray-12{background-color:var(--gray-12)}.dark .dark\:text-theme-5{color:var(--theme-5)}.dark .dark\:text-gray-1{color:var(--gray-1)}.dark .dark\:placeholder-gray-2::-moz-placeholder{color:var(--gray-2)}.dark .dark\:placeholder-gray-2::placeholder{color:var(--gray-2)}.dark .dark\:hover\:bg-theme-10:hover{background-color:var(--theme-10)}@media (min-width:640px){.sm\:mt-1{margin-top:.25rem}.sm\:mr-6{margin-right:1.5rem}.sm\:mt-0{margin-top:0}.sm\:block{display:block}.sm\:hidden{display:none}.sm\:h-10{height:2.5rem}.sm\:flex-row{flex-direction:row}.sm\:flex-wrap{flex-wrap:wrap}.sm\:justify-end{justify-content:flex-end}.sm\:rounded-lg{border-radius:.5rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media (min-width:768px){.md\:ml-0{margin-left:0}.md\:ml-6{margin-left:1.5rem}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:flex-1{flex:1 1 0%}.md\:justify-start{justify-content:flex-start}.md\:space-x-10>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2.5rem*var(--tw-space-x-reverse))}}@media (min-width:1024px){.lg\:hidden{display:none}.lg\:w-0{width:0}.lg\:flex-1{flex:1 1 0%}.lg\:border-t{border-top-width:1px}.lg\:border-none{border-style:none}.lg\:border-gray-2{border-color:var(--gray-2)}.lg\:px-8{padding-left:2rem;padding-right:2rem}}
|
|
2
|
+
/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,select:focus,textarea:focus{--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);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}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}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .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}[multiple]{background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#2563eb;display:inline-block;flex-shrink:0;height:1rem;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{--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:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}[type=checkbox]:checked,[type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:#0000}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=checkbox]:indeterminate,[type=radio]:checked:focus,[type=radio]:checked:hover{background-color:currentColor;border-color:#0000}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:#0000}[type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,::backdrop,:after,:before{--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-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:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }}@layer tailwindcss.components{.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where([class~=lead]):not(:where([class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose :where(a):not(:where([class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.prose :where(strong):not(:where([class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}.prose :where(ol>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(hr):not(:where([class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}.prose :where(blockquote):not(:where([class~=not-prose] *)){border-left-color:var(--tw-prose-quote-borders);border-left-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose :where(h1 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.prose :where(h2 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.prose :where(h3 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.prose :where(h4 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose :where(figcaption):not(:where([class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose :where(code):not(:where([class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(h1 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding:.8571429em 1.1428571em}.prose :where(pre code):not(:where([class~=not-prose] *)){background-color:initial;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.prose :where(pre code):not(:where([class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}.prose :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.prose :where(thead th):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}.prose :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose] *)){vertical-align:initial}.prose :where(tfoot):not(:where([class~=not-prose] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}.prose :where(tfoot td):not(:where([class~=not-prose] *)){vertical-align:top}.prose{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:#00000080;--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.prose :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.prose :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-sm :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-base :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-lg :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.prose-xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.prose-xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.prose-xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-2xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8333333em;margin-top:.8333333em}.prose-2xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-2xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-2xl :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-2xl :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}}@layer midwest.color-system{:root{--black:rgb(0,0,0,var(--tw-opacity,1));--white:rgb(255,255,255,var(--tw-opacity,1));--gray-0:rgb(246,246,247,var(--tw-opacity,1));--gray-1:rgb(216,219,221,var(--tw-opacity,1));--gray-2:rgb(187,191,195,var(--tw-opacity,1));--gray-3:rgb(158,163,169,var(--tw-opacity,1));--gray-4:rgb(129,135,142,var(--tw-opacity,1));--gray-5:rgb(101,108,115,var(--tw-opacity,1));--gray-6:rgb(73,80,87,var(--tw-opacity,1));--gray-7:rgb(61,67,74,var(--tw-opacity,1));--gray-8:rgb(48,55,61,var(--tw-opacity,1));--gray-9:rgb(37,42,48,var(--tw-opacity,1));--gray-10:rgb(25,29,34,var(--tw-opacity,1));--gray-11:rgb(14,17,19,var(--tw-opacity,1));--gray-12:rgb(3,4,5,var(--tw-opacity,1));--red-0:rgb(255,242,242,var(--tw-opacity,1));--red-1:rgb(255,202,202,var(--tw-opacity,1));--red-2:rgb(255,162,162,var(--tw-opacity,1));--red-3:rgb(255,121,121,var(--tw-opacity,1));--red-4:rgb(252,86,86,var(--tw-opacity,1));--red-5:rgb(238,60,60,var(--tw-opacity,1));--red-6:rgb(220,38,38,var(--tw-opacity,1));--red-7:rgb(198,19,19,var(--tw-opacity,1));--red-8:rgb(171,5,5,var(--tw-opacity,1));--red-9:rgb(134,0,0,var(--tw-opacity,1));--red-10:rgb(94,0,0,var(--tw-opacity,1));--red-11:rgb(53,0,0,var(--tw-opacity,1));--red-12:rgb(13,0,0,var(--tw-opacity,1));--orange-0:rgb(255,246,242,var(--tw-opacity,1));--orange-1:rgb(255,219,202,var(--tw-opacity,1));--orange-2:rgb(255,193,162,var(--tw-opacity,1));--orange-3:rgb(255,169,121,var(--tw-opacity,1));--orange-4:rgb(255,146,81,var(--tw-opacity,1));--orange-5:rgb(255,124,40,var(--tw-opacity,1));--orange-6:rgb(247,103,7,var(--tw-opacity,1));--orange-7:rgb(215,83,0,var(--tw-opacity,1));--orange-8:rgb(174,65,0,var(--tw-opacity,1));--orange-9:rgb(134,48,0,var(--tw-opacity,1));--orange-10:rgb(94,32,0,var(--tw-opacity,1));--orange-11:rgb(53,17,0,var(--tw-opacity,1));--orange-12:rgb(13,4,0,var(--tw-opacity,1));--gold-0:rgb(255,252,242,var(--tw-opacity,1));--gold-1:rgb(255,241,202,var(--tw-opacity,1));--gold-2:rgb(255,229,162,var(--tw-opacity,1));--gold-3:rgb(255,214,121,var(--tw-opacity,1));--gold-4:rgb(255,198,81,var(--tw-opacity,1));--gold-5:rgb(255,179,40,var(--tw-opacity,1));--gold-6:rgb(245,159,0,var(--tw-opacity,1));--gold-7:rgb(215,139,0,var(--tw-opacity,1));--gold-8:rgb(174,117,0,var(--tw-opacity,1));--gold-9:rgb(134,93,0,var(--tw-opacity,1));--gold-10:rgb(94,67,0,var(--tw-opacity,1));--gold-11:rgb(53,40,0,var(--tw-opacity,1));--gold-12:rgb(13,10,0,var(--tw-opacity,1));--yellow-0:rgb(255,255,242,var(--tw-opacity,1));--yellow-1:rgb(255,253,202,var(--tw-opacity,1));--yellow-2:rgb(255,247,162,var(--tw-opacity,1));--yellow-3:rgb(255,239,121,var(--tw-opacity,1));--yellow-4:rgb(255,228,81,var(--tw-opacity,1));--yellow-5:rgb(255,213,46,var(--tw-opacity,1));--yellow-6:rgb(252,196,25,var(--tw-opacity,1));--yellow-7:rgb(215,173,5,var(--tw-opacity,1));--yellow-8:rgb(174,147,0,var(--tw-opacity,1));--yellow-9:rgb(134,118,0,var(--tw-opacity,1));--yellow-10:rgb(94,86,0,var(--tw-opacity,1));--yellow-11:rgb(53,51,0,var(--tw-opacity,1));--yellow-12:rgb(13,13,0,var(--tw-opacity,1));--lime-0:rgb(250,255,242,var(--tw-opacity,1));--lime-1:rgb(232,255,202,var(--tw-opacity,1));--lime-2:rgb(213,255,162,var(--tw-opacity,1));--lime-3:rgb(193,249,121,var(--tw-opacity,1));--lime-4:rgb(173,238,82,var(--tw-opacity,1));--lime-5:rgb(152,222,54,var(--tw-opacity,1));--lime-6:rgb(130,201,30,var(--tw-opacity,1));--lime-7:rgb(112,181,13,var(--tw-opacity,1));--lime-8:rgb(92,157,1,var(--tw-opacity,1));--lime-9:rgb(72,128,0,var(--tw-opacity,1));--lime-10:rgb(51,94,0,var(--tw-opacity,1));--lime-11:rgb(30,53,0,var(--tw-opacity,1));--lime-12:rgb(7,13,0,var(--tw-opacity,1));--green-0:rgb(242,254,245,var(--tw-opacity,1));--green-1:rgb(202,248,214,var(--tw-opacity,1));--green-2:rgb(162,239,184,var(--tw-opacity,1));--green-3:rgb(121,225,155,var(--tw-opacity,1));--green-4:rgb(81,208,127,var(--tw-opacity,1));--green-5:rgb(49,188,100,var(--tw-opacity,1));--green-6:rgb(22,163,74,var(--tw-opacity,1));--green-7:rgb(9,147,60,var(--tw-opacity,1));--green-8:rgb(0,127,46,var(--tw-opacity,1));--green-9:rgb(0,104,34,var(--tw-opacity,1));--green-10:rgb(0,77,23,var(--tw-opacity,1));--green-11:rgb(0,46,12,var(--tw-opacity,1));--green-12:rgb(0,0,0,var(--tw-opacity,1));--teal-0:rgb(242,255,250,var(--tw-opacity,1));--teal-1:rgb(202,255,234,var(--tw-opacity,1));--teal-2:rgb(162,250,216,var(--tw-opacity,1));--teal-3:rgb(121,240,196,var(--tw-opacity,1));--teal-4:rgb(81,226,175,var(--tw-opacity,1));--teal-5:rgb(42,208,153,var(--tw-opacity,1));--teal-6:rgb(16,185,129,var(--tw-opacity,1));--teal-7:rgb(2,168,113,var(--tw-opacity,1));--teal-8:rgb(0,146,95,var(--tw-opacity,1));--teal-9:rgb(0,119,75,var(--tw-opacity,1));--teal-10:rgb(0,89,54,var(--tw-opacity,1));--teal-11:rgb(0,53,32,var(--tw-opacity,1));--teal-12:rgb(0,13,8,var(--tw-opacity,1));--cyan-0:rgb(242,254,255,var(--tw-opacity,1));--cyan-1:rgb(202,249,255,var(--tw-opacity,1));--cyan-2:rgb(162,240,254,var(--tw-opacity,1));--cyan-3:rgb(121,229,247,var(--tw-opacity,1));--cyan-4:rgb(88,214,235,var(--tw-opacity,1));--cyan-5:rgb(61,197,219,var(--tw-opacity,1));--cyan-6:rgb(38,176,199,var(--tw-opacity,1));--cyan-7:rgb(21,156,179,var(--tw-opacity,1));--cyan-8:rgb(8,133,154,var(--tw-opacity,1));--cyan-9:rgb(0,108,126,var(--tw-opacity,1));--cyan-10:rgb(0,79,93,var(--tw-opacity,1));--cyan-11:rgb(0,47,53,var(--tw-opacity,1));--cyan-12:rgb(0,12,13,var(--tw-opacity,1));--blue-0:rgb(242,249,255,var(--tw-opacity,1));--blue-1:rgb(202,229,255,var(--tw-opacity,1));--blue-2:rgb(162,209,255,var(--tw-opacity,1));--blue-3:rgb(121,189,255,var(--tw-opacity,1));--blue-4:rgb(81,168,248,var(--tw-opacity,1));--blue-5:rgb(51,147,234,var(--tw-opacity,1));--blue-6:rgb(28,126,214,var(--tw-opacity,1));--blue-7:rgb(11,107,193,var(--tw-opacity,1));--blue-8:rgb(0,87,167,var(--tw-opacity,1));--blue-9:rgb(0,68,134,var(--tw-opacity,1));--blue-10:rgb(0,47,94,var(--tw-opacity,1));--blue-11:rgb(0,27,53,var(--tw-opacity,1));--blue-12:rgb(0,7,13,var(--tw-opacity,1));--indigo-0:rgb(242,245,255,var(--tw-opacity,1));--indigo-1:rgb(202,216,255,var(--tw-opacity,1));--indigo-2:rgb(162,189,255,var(--tw-opacity,1));--indigo-3:rgb(121,163,255,var(--tw-opacity,1));--indigo-4:rgb(84,140,255,var(--tw-opacity,1));--indigo-5:rgb(58,119,252,var(--tw-opacity,1));--indigo-6:rgb(37,99,235,var(--tw-opacity,1));--indigo-7:rgb(17,78,212,var(--tw-opacity,1));--indigo-8:rgb(3,59,174,var(--tw-opacity,1));--indigo-9:rgb(0,42,134,var(--tw-opacity,1));--indigo-10:rgb(0,27,94,var(--tw-opacity,1));--indigo-11:rgb(0,14,53,var(--tw-opacity,1));--indigo-12:rgb(0,3,13,var(--tw-opacity,1));--violet-0:rgb(250,242,255,var(--tw-opacity,1));--violet-1:rgb(233,202,255,var(--tw-opacity,1));--violet-2:rgb(217,162,255,var(--tw-opacity,1));--violet-3:rgb(200,124,255,var(--tw-opacity,1));--violet-4:rgb(182,95,255,var(--tw-opacity,1));--violet-5:rgb(165,71,250,var(--tw-opacity,1));--violet-6:rgb(147,51,234,var(--tw-opacity,1));--violet-7:rgb(124,30,210,var(--tw-opacity,1));--violet-8:rgb(102,14,174,var(--tw-opacity,1));--violet-9:rgb(78,3,134,var(--tw-opacity,1));--violet-10:rgb(55,0,94,var(--tw-opacity,1));--violet-11:rgb(31,0,53,var(--tw-opacity,1));--violet-12:rgb(8,0,13,var(--tw-opacity,1));--magenta-0:rgb(253,242,255,var(--tw-opacity,1));--magenta-1:rgb(246,203,255,var(--tw-opacity,1));--magenta-2:rgb(236,167,252,var(--tw-opacity,1));--magenta-3:rgb(224,135,245,var(--tw-opacity,1));--magenta-4:rgb(209,107,234,var(--tw-opacity,1));--magenta-5:rgb(193,83,219,var(--tw-opacity,1));--magenta-6:rgb(174,62,201,var(--tw-opacity,1));--magenta-7:rgb(152,42,179,var(--tw-opacity,1));--magenta-8:rgb(129,27,153,var(--tw-opacity,1));--magenta-9:rgb(103,14,124,var(--tw-opacity,1));--magenta-10:rgb(74,6,91,var(--tw-opacity,1));--magenta-11:rgb(44,1,53,var(--tw-opacity,1));--magenta-12:rgb(11,0,13,var(--tw-opacity,1));--pink-0:rgb(255,242,246,var(--tw-opacity,1));--pink-1:rgb(255,202,220,var(--tw-opacity,1));--pink-2:rgb(255,162,195,var(--tw-opacity,1));--pink-3:rgb(255,127,171,var(--tw-opacity,1));--pink-4:rgb(246,97,149,var(--tw-opacity,1));--pink-5:rgb(232,72,128,var(--tw-opacity,1));--pink-6:rgb(214,51,108,var(--tw-opacity,1));--pink-7:rgb(192,32,88,var(--tw-opacity,1));--pink-8:rgb(165,16,68,var(--tw-opacity,1));--pink-9:rgb(134,5,50,var(--tw-opacity,1));--pink-10:rgb(94,0,34,var(--tw-opacity,1));--pink-11:rgb(53,0,18,var(--tw-opacity,1));--pink-12:rgb(13,0,4,var(--tw-opacity,1));--theme-0:var(--blue-0);--theme-1:var(--blue-1);--theme-2:var(--blue-2);--theme-3:var(--blue-3);--theme-4:var(--blue-4);--theme-5:var(--blue-5);--theme-6:var(--blue-6);--theme-7:var(--blue-7);--theme-8:var(--blue-8);--theme-9:var(--blue-9);--theme-10:var(--blue-10);--theme-11:var(--blue-11);--theme-12:var(--blue-12);--complement-0:var(--indigo-0);--complement-1:var(--indigo-1);--complement-2:var(--indigo-2);--complement-3:var(--indigo-3);--complement-4:var(--indigo-4);--complement-5:var(--indigo-5);--complement-6:var(--indigo-6);--complement-7:var(--indigo-7);--complement-8:var(--indigo-8);--complement-9:var(--indigo-9);--complement-10:var(--indigo-10);--complement-11:var(--indigo-11);--complement-12:var(--indigo-12)}*{accent-color:var(--theme-6)}.theme-gray{--theme-0:var(--gray-0);--theme-1:var(--gray-1);--theme-2:var(--gray-2);--theme-3:var(--gray-3);--theme-4:var(--gray-4);--theme-5:var(--gray-5);--theme-6:var(--gray-6);--theme-7:var(--gray-7);--theme-8:var(--gray-8);--theme-9:var(--gray-9);--theme-10:var(--gray-10);--theme-11:var(--gray-11);--theme-12:var(--gray-12)}.theme-red{--theme-0:var(--red-0);--theme-1:var(--red-1);--theme-2:var(--red-2);--theme-3:var(--red-3);--theme-4:var(--red-4);--theme-5:var(--red-5);--theme-6:var(--red-6);--theme-7:var(--red-7);--theme-8:var(--red-8);--theme-9:var(--red-9);--theme-10:var(--red-10);--theme-11:var(--red-11);--theme-12:var(--red-12)}.theme-orange{--theme-0:var(--orange-0);--theme-1:var(--orange-1);--theme-2:var(--orange-2);--theme-3:var(--orange-3);--theme-4:var(--orange-4);--theme-5:var(--orange-5);--theme-6:var(--orange-6);--theme-7:var(--orange-7);--theme-8:var(--orange-8);--theme-9:var(--orange-9);--theme-10:var(--orange-10);--theme-11:var(--orange-11);--theme-12:var(--orange-12)}.theme-gold{--theme-0:var(--gold-0);--theme-1:var(--gold-1);--theme-2:var(--gold-2);--theme-3:var(--gold-3);--theme-4:var(--gold-4);--theme-5:var(--gold-5);--theme-6:var(--gold-6);--theme-7:var(--gold-7);--theme-8:var(--gold-8);--theme-9:var(--gold-9);--theme-10:var(--gold-10);--theme-11:var(--gold-11);--theme-12:var(--gold-12)}.theme-yellow{--theme-0:var(--yellow-0);--theme-1:var(--yellow-1);--theme-2:var(--yellow-2);--theme-3:var(--yellow-3);--theme-4:var(--yellow-4);--theme-5:var(--yellow-5);--theme-6:var(--yellow-6);--theme-7:var(--yellow-7);--theme-8:var(--yellow-8);--theme-9:var(--yellow-9);--theme-10:var(--yellow-10);--theme-11:var(--yellow-11);--theme-12:var(--yellow-12)}.theme-lime{--theme-0:var(--lime-0);--theme-1:var(--lime-1);--theme-2:var(--lime-2);--theme-3:var(--lime-3);--theme-4:var(--lime-4);--theme-5:var(--lime-5);--theme-6:var(--lime-6);--theme-7:var(--lime-7);--theme-8:var(--lime-8);--theme-9:var(--lime-9);--theme-10:var(--lime-10);--theme-11:var(--lime-11);--theme-12:var(--lime-12)}.theme-green{--theme-0:var(--green-0);--theme-1:var(--green-1);--theme-2:var(--green-2);--theme-3:var(--green-3);--theme-4:var(--green-4);--theme-5:var(--green-5);--theme-6:var(--green-6);--theme-7:var(--green-7);--theme-8:var(--green-8);--theme-9:var(--green-9);--theme-10:var(--green-10);--theme-11:var(--green-11);--theme-12:var(--green-12)}.theme-teal{--theme-0:var(--teal-0);--theme-1:var(--teal-1);--theme-2:var(--teal-2);--theme-3:var(--teal-3);--theme-4:var(--teal-4);--theme-5:var(--teal-5);--theme-6:var(--teal-6);--theme-7:var(--teal-7);--theme-8:var(--teal-8);--theme-9:var(--teal-9);--theme-10:var(--teal-10);--theme-11:var(--teal-11);--theme-12:var(--teal-12)}.theme-cyan{--theme-0:var(--cyan-0);--theme-1:var(--cyan-1);--theme-2:var(--cyan-2);--theme-3:var(--cyan-3);--theme-4:var(--cyan-4);--theme-5:var(--cyan-5);--theme-6:var(--cyan-6);--theme-7:var(--cyan-7);--theme-8:var(--cyan-8);--theme-9:var(--cyan-9);--theme-10:var(--cyan-10);--theme-11:var(--cyan-11);--theme-12:var(--cyan-12)}.theme-blue{--theme-0:var(--blue-0);--theme-1:var(--blue-1);--theme-2:var(--blue-2);--theme-3:var(--blue-3);--theme-4:var(--blue-4);--theme-5:var(--blue-5);--theme-6:var(--blue-6);--theme-7:var(--blue-7);--theme-8:var(--blue-8);--theme-9:var(--blue-9);--theme-10:var(--blue-10);--theme-11:var(--blue-11);--theme-12:var(--blue-12)}.theme-indigo{--theme-0:var(--indigo-0);--theme-1:var(--indigo-1);--theme-2:var(--indigo-2);--theme-3:var(--indigo-3);--theme-4:var(--indigo-4);--theme-5:var(--indigo-5);--theme-6:var(--indigo-6);--theme-7:var(--indigo-7);--theme-8:var(--indigo-8);--theme-9:var(--indigo-9);--theme-10:var(--indigo-10);--theme-11:var(--indigo-11);--theme-12:var(--indigo-12)}.theme-violet{--theme-0:var(--violet-0);--theme-1:var(--violet-1);--theme-2:var(--violet-2);--theme-3:var(--violet-3);--theme-4:var(--violet-4);--theme-5:var(--violet-5);--theme-6:var(--violet-6);--theme-7:var(--violet-7);--theme-8:var(--violet-8);--theme-9:var(--violet-9);--theme-10:var(--violet-10);--theme-11:var(--violet-11);--theme-12:var(--violet-12)}.theme-magenta{--theme-0:var(--magenta-0);--theme-1:var(--magenta-1);--theme-2:var(--magenta-2);--theme-3:var(--magenta-3);--theme-4:var(--magenta-4);--theme-5:var(--magenta-5);--theme-6:var(--magenta-6);--theme-7:var(--magenta-7);--theme-8:var(--magenta-8);--theme-9:var(--magenta-9);--theme-10:var(--magenta-10);--theme-11:var(--magenta-11);--theme-12:var(--magenta-12)}.theme-pink{--theme-0:var(--pink-0);--theme-1:var(--pink-1);--theme-2:var(--pink-2);--theme-3:var(--pink-3);--theme-4:var(--pink-4);--theme-5:var(--pink-5);--theme-6:var(--pink-6);--theme-7:var(--pink-7);--theme-8:var(--pink-8);--theme-9:var(--pink-9);--theme-10:var(--pink-10);--theme-11:var(--pink-11);--theme-12:var(--pink-12)}.complement-gray{--complement-0:var(--gray-0);--complement-1:var(--gray-1);--complement-2:var(--gray-2);--complement-3:var(--gray-3);--complement-4:var(--gray-4);--complement-5:var(--gray-5);--complement-6:var(--gray-6);--complement-7:var(--gray-7);--complement-8:var(--gray-8);--complement-9:var(--gray-9);--complement-10:var(--gray-10);--complement-11:var(--gray-11);--complement-12:var(--gray-12)}.complement-red{--complement-0:var(--red-0);--complement-1:var(--red-1);--complement-2:var(--red-2);--complement-3:var(--red-3);--complement-4:var(--red-4);--complement-5:var(--red-5);--complement-6:var(--red-6);--complement-7:var(--red-7);--complement-8:var(--red-8);--complement-9:var(--red-9);--complement-10:var(--red-10);--complement-11:var(--red-11);--complement-12:var(--red-12)}.complement-orange{--complement-0:var(--orange-0);--complement-1:var(--orange-1);--complement-2:var(--orange-2);--complement-3:var(--orange-3);--complement-4:var(--orange-4);--complement-5:var(--orange-5);--complement-6:var(--orange-6);--complement-7:var(--orange-7);--complement-8:var(--orange-8);--complement-9:var(--orange-9);--complement-10:var(--orange-10);--complement-11:var(--orange-11);--complement-12:var(--orange-12)}.complement-gold{--complement-0:var(--gold-0);--complement-1:var(--gold-1);--complement-2:var(--gold-2);--complement-3:var(--gold-3);--complement-4:var(--gold-4);--complement-5:var(--gold-5);--complement-6:var(--gold-6);--complement-7:var(--gold-7);--complement-8:var(--gold-8);--complement-9:var(--gold-9);--complement-10:var(--gold-10);--complement-11:var(--gold-11);--complement-12:var(--gold-12)}.complement-yellow{--complement-0:var(--yellow-0);--complement-1:var(--yellow-1);--complement-2:var(--yellow-2);--complement-3:var(--yellow-3);--complement-4:var(--yellow-4);--complement-5:var(--yellow-5);--complement-6:var(--yellow-6);--complement-7:var(--yellow-7);--complement-8:var(--yellow-8);--complement-9:var(--yellow-9);--complement-10:var(--yellow-10);--complement-11:var(--yellow-11);--complement-12:var(--yellow-12)}.complement-lime{--complement-0:var(--lime-0);--complement-1:var(--lime-1);--complement-2:var(--lime-2);--complement-3:var(--lime-3);--complement-4:var(--lime-4);--complement-5:var(--lime-5);--complement-6:var(--lime-6);--complement-7:var(--lime-7);--complement-8:var(--lime-8);--complement-9:var(--lime-9);--complement-10:var(--lime-10);--complement-11:var(--lime-11);--complement-12:var(--lime-12)}.complement-green{--complement-0:var(--green-0);--complement-1:var(--green-1);--complement-2:var(--green-2);--complement-3:var(--green-3);--complement-4:var(--green-4);--complement-5:var(--green-5);--complement-6:var(--green-6);--complement-7:var(--green-7);--complement-8:var(--green-8);--complement-9:var(--green-9);--complement-10:var(--green-10);--complement-11:var(--green-11);--complement-12:var(--green-12)}.complement-teal{--complement-0:var(--teal-0);--complement-1:var(--teal-1);--complement-2:var(--teal-2);--complement-3:var(--teal-3);--complement-4:var(--teal-4);--complement-5:var(--teal-5);--complement-6:var(--teal-6);--complement-7:var(--teal-7);--complement-8:var(--teal-8);--complement-9:var(--teal-9);--complement-10:var(--teal-10);--complement-11:var(--teal-11);--complement-12:var(--teal-12)}.complement-cyan{--complement-0:var(--cyan-0);--complement-1:var(--cyan-1);--complement-2:var(--cyan-2);--complement-3:var(--cyan-3);--complement-4:var(--cyan-4);--complement-5:var(--cyan-5);--complement-6:var(--cyan-6);--complement-7:var(--cyan-7);--complement-8:var(--cyan-8);--complement-9:var(--cyan-9);--complement-10:var(--cyan-10);--complement-11:var(--cyan-11);--complement-12:var(--cyan-12)}.complement-blue{--complement-0:var(--blue-0);--complement-1:var(--blue-1);--complement-2:var(--blue-2);--complement-3:var(--blue-3);--complement-4:var(--blue-4);--complement-5:var(--blue-5);--complement-6:var(--blue-6);--complement-7:var(--blue-7);--complement-8:var(--blue-8);--complement-9:var(--blue-9);--complement-10:var(--blue-10);--complement-11:var(--blue-11);--complement-12:var(--blue-12)}.complement-indigo{--complement-0:var(--indigo-0);--complement-1:var(--indigo-1);--complement-2:var(--indigo-2);--complement-3:var(--indigo-3);--complement-4:var(--indigo-4);--complement-5:var(--indigo-5);--complement-6:var(--indigo-6);--complement-7:var(--indigo-7);--complement-8:var(--indigo-8);--complement-9:var(--indigo-9);--complement-10:var(--indigo-10);--complement-11:var(--indigo-11);--complement-12:var(--indigo-12)}.complement-violet{--complement-0:var(--violet-0);--complement-1:var(--violet-1);--complement-2:var(--violet-2);--complement-3:var(--violet-3);--complement-4:var(--violet-4);--complement-5:var(--violet-5);--complement-6:var(--violet-6);--complement-7:var(--violet-7);--complement-8:var(--violet-8);--complement-9:var(--violet-9);--complement-10:var(--violet-10);--complement-11:var(--violet-11);--complement-12:var(--violet-12)}.complement-magenta{--complement-0:var(--magenta-0);--complement-1:var(--magenta-1);--complement-2:var(--magenta-2);--complement-3:var(--magenta-3);--complement-4:var(--magenta-4);--complement-5:var(--magenta-5);--complement-6:var(--magenta-6);--complement-7:var(--magenta-7);--complement-8:var(--magenta-8);--complement-9:var(--magenta-9);--complement-10:var(--magenta-10);--complement-11:var(--magenta-11);--complement-12:var(--magenta-12)}.complement-pink{--complement-0:var(--pink-0);--complement-1:var(--pink-1);--complement-2:var(--pink-2);--complement-3:var(--pink-3);--complement-4:var(--pink-4);--complement-5:var(--pink-5);--complement-6:var(--pink-6);--complement-7:var(--pink-7);--complement-8:var(--pink-8);--complement-9:var(--pink-9);--complement-10:var(--pink-10);--complement-11:var(--pink-11);--complement-12:var(--pink-12)}}@layer midwest.responsive{html{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto;font-size:.625rem!important;font-variant-numeric:tabular-nums;letter-spacing:.02em;scroll-behavior:smooth;scroll-padding:4rem}@media (min-width:400px){html{font-size:.6875rem!important}}@media (min-width:600px){html{font-size:.75rem!important}}@media (min-width:800px){html{font-size:.8125rem!important}}@media (min-width:1000px){html{font-size:.875rem!important}}@media (min-width:1200px){html{font-size:.9375rem}}@media (min-width:1400px){html{font-size:1rem}}}@layer midwest.dark-mode{html{background-color:var(--gray-0);color:var(--gray-10)}.dark html{background-color:var(--gray-12);color:var(--gray-2)}html.dark{background-color:var(--gray-12)!important;color:var(--gray-2)!important}h1,h2,h3,h4,h5,h6,label,p{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dark h1,.dark h2,.dark h3,.dark h4,.dark h5,.dark h6,.dark label,.dark p{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}p{color:var(--gray-10)}.dark p{color:var(--gray-2)}}@layer midwest.typography{h1{font-size:3.75rem}h1,h2{font-weight:700;letter-spacing:.025em;line-height:1}h2{font-size:3rem}h3{font-size:2.25rem;line-height:2.5rem;line-height:1}h3,h4{font-weight:700;letter-spacing:.025em}h4{font-size:1.875rem;line-height:2.25rem;line-height:1}h5{font-size:1.5rem;letter-spacing:.025em;line-height:2rem;line-height:1}h5,h6,label{font-weight:700}h6,label{font-size:1.25rem;letter-spacing:.05em;line-height:1.75rem;line-height:1;text-transform:uppercase}p{font-size:1.125rem;line-height:1.75rem;line-height:1.375}}@layer midwest.badge{.midwest-badge{background:var(--theme-7,var(--gray-7));border:1px solid var(--theme-7,var(--gray-7));border-radius:1.5rem;color:var(--theme-0,var(--gray-0));display:inline-flex;font-size:.875rem;font-weight:700;letter-spacing:.05em;line-height:1.25rem;line-height:1.375;padding:2px .75em;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.midwest-badge.has-support{gap:.5rem;padding:2px .75em 2px 2px}.midwest-badge.has-support>.support{background:var(--theme-0,var(--gray-0));border-bottom-left-radius:1.5rem;border-top-left-radius:1.5rem;color:var(--theme-12,var(--gray-12));padding:0 .25rem 0 .5rem}.midwest-badge.theme-lime,.midwest-badge.theme-yellow,:is(.theme-yellow,.theme-lime) .midwest-badge{background:var(--theme-6,var(--gray-6));border:1px solid var(--theme-6,var(--gray-6));color:var(--theme-11,var(--gray-11))}.midwest-badge.size-sm{font-size:.75rem;line-height:1rem}.midwest-badge.size-lg{font-size:1rem;line-height:1.5rem}}@layer midwest.card{.midwest-card{container-type:inline-size;container-name:midwest-card;--border:1px solid var(--gray-1);--background:var(--white);--background-active:var(--theme-0);--flipped-background:var(--white);--flipped-min-height:var(--flipped-min-height,20rem);--flipped-transition:none;--border-radius:0.5rem;--padding:2rem;--min-height:10rem;--card-width:auto;-webkit-appearance:none;border-radius:var(--border-radius);display:block;height:auto}.midwest-card,.midwest-card>.wrap{-moz-appearance:none;appearance:none;background:var(--background)}.midwest-card>.wrap{-webkit-appearance:none!important;border:var(--border)!important;border-radius:var(--border-radius);color:inherit;display:grid;font-size:inherit;grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto;height:100%;min-height:var(--min-height);outline:none;padding:0;text-align:inherit;text-decoration:none;width:var(--card-width)}.midwest-card>.wrap footer,.midwest-card>.wrap header{border-bottom:var(--border)!important;border-radius:var(--border-radius) var(--border-radius) 0 0;grid-area:header!important;max-width:calc(var(--card-width) - 2px);padding:1rem var(--padding);width:calc(var(--card-width) - 2px)}.midwest-card>.wrap footer.flex,.midwest-card>.wrap header.flex{align-items:center;gap:1rem;justify-content:space-between}.midwest-card>.wrap footer.flush,.midwest-card>.wrap header.flush{border-bottom:0!important;padding-bottom:0}.midwest-card>.wrap footer.sticky,.midwest-card>.wrap header.sticky{position:sticky;top:0;z-index:999999}.midwest-card>.wrap :is(.wrap,.front,.back) :not(.wrap,.front,.back),.midwest-card>.wrap section{grid-area:section;max-width:calc(var(--card-width) - var(--padding)*2)}.midwest-card>.wrap :is(.wrap,.front,.back) :not(.wrap,.front,.back).flush,.midwest-card>.wrap section.flush{grid-column:1/span 3;grid-row:2/span 3;max-width:100%!important;padding:1rem;width:100%!important}.midwest-card>.wrap footer{border-bottom:0!important;border-radius:0 0 var(--border-radius) var(--border-radius);border-top:var(--border)!important;grid-area:footer!important}.midwest-card.horizontal>.wrap{grid-auto-flow:row;overflow:hidden}.midwest-card.horizontal>.wrap,.midwest-card.horizontal>.wrap>.back,.midwest-card.horizontal>.wrap>.front{grid-template-areas:"header . . ." "header . . ." "header . section ." "header . . ." "footer footer footer footer";grid-template-columns:var(--header-width,auto) var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.horizontal header{border-bottom:0!important;border-radius:var(--border-radius) 0 0 var(--border-radius);width:100%}.midwest-card.horizontal header.flush{padding:0!important}.midwest-card.horizontal section{margin:auto;width:100%}.midwest-card.flippable{background:#0000;perspective:3000px}.midwest-card.flippable.flip-ready>.wrap{transition:all .5s var(--ease,ease-in-out) 0s,background-color 0s ease 0s}.midwest-card.flippable>.wrap{background:var(--background);display:block}.midwest-card.flippable>.wrap>.back,.midwest-card.flippable>.wrap>.front{display:grid;grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto;height:auto;min-height:var(--min-height);padding:0}.midwest-card.flippable>.wrap>.front{-webkit-backface-visibility:hidden;backface-visibility:hidden;height:100%;opacity:1;z-index:1}.midwest-card.flippable>.wrap>.back{height:-moz-min-content;height:min-content;left:0;opacity:0;overflow-y:none;pointer-events:none;position:absolute;top:0;transform:rotateY(180deg);width:100%;z-index:0}.midwest-card.flippable>.wrap>.back *{-webkit-backface-visibility:hidden;backface-visibility:hidden}.midwest-card.flippable>.wrap>.back section{height:calc(100% + var(--padding))}.midwest-card.flippable.horizontal.flippable>.wrap>.back,.midwest-card.flippable.horizontal.flippable>.wrap>.front{grid-template-areas:"header . . ." "header . . ." "header . section ." "header . . ." "footer footer footer footer";grid-template-columns:var(--header-width,auto) var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.flippable.flip-ready>.wrap>.front{transition:min-height .35s linear 0s,opacity .15s linear .3s!important}.midwest-card.flippable.flip-ready>.wrap>.back{transition:min-height .35s linear 0s,opacity .15s linear 0s!important}.midwest-card.flippable.flipped{--background:var(--flipped-background,#fff)!important;--min-height:var(--flipped-min-height)!important;z-index:1}.midwest-card.flippable.flipped>.wrap{min-height:var(--min-height);transform:rotateY(180deg)}.midwest-card.flippable.flipped>.wrap>.back,.midwest-card.flippable.flipped>.wrap>.front{min-height:var(--min-height)}.midwest-card.flippable.flipped>.wrap>.front{opacity:0;pointer-events:none;transition:min-height .35s linear 0s,opacity .15s linear 0s!important}.midwest-card.flippable.flipped>.wrap>.back{opacity:1;overflow-y:initial;pointer-events:auto;transition:min-height .35s linear 0s,opacity .15s linear .3s!important}:is(.dark) .midwest-card{--border:1px solid var(--gray-9);--background:var(--gray-11);--background-active:var(--gray-11);--flipped-background:var(--gray-11)}@media screen and (prefers-reduced-motion:reduce){.midwest-card.flippable.flip-ready>.wrap{transition:none}.midwest-card.flippable.flip-ready.flipped>.wrap>.front,.midwest-card.flippable.flip-ready>.wrap>.back,.midwest-card.flippable.flip-ready>.wrap>.front{transition:none!important}}@container midwest-card (max-width: 350px){.midwest-card>.wrap{--padding:1rem!important}.midwest-card>.wrap footer.flex,.midwest-card>.wrap header.flex{flex-direction:column}.midwest-card.horizontal>.wrap,.midwest-card.horizontal>.wrap .back,.midwest-card.horizontal>.wrap .front{grid-template-areas:"header header header" ". . ." ". section ." ". . ." "footer footer footer";grid-template-columns:var(--padding) 1fr var(--padding);grid-template-rows:auto var(--padding) 1fr var(--padding) auto}.midwest-card.horizontal>header{border-radius:var(--border-radius) var(--border-radius) 0 0}}}@layer midwest.icon{.midwest-icon{fill:currentColor;box-sizing:initial!important;color:currentColor;contain:strict;content-visibility:auto;display:inline-block;font-size:1rem;height:1em;width:1em}.midwest-icon>.icon-inner,.midwest-icon>.icon-inner>svg{display:block;height:100%;width:100%}}@layer midwest.grid{.midwest-grid{display:flex;display:grid;flex-wrap:wrap;position:relative}@layer midwest.card{.midwest-card>.wrap footer.midwest-grid,.midwest-card>.wrap header.midwest-grid{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer.midwest-grid,.midwest-card>.wrap header.midwest-grid{flex-direction:column}}}.midwest-grid{--grid-width:200px;--grid-gap:2rem;grid-gap:var(--grid-gap);grid-template-columns:repeat(auto-fit,minmax(var(--grid-width),1fr))}.midwest-grid.padding-match-gap{padding:var(--grid-gap)}}@layer midwest.layout{.midwest-layout{container-type:inline-size;container-name:midwest-layout;--layout-grid-gap:1rem;--layout-padding:2rem;--layout-width:calc(100% - var(--layout-grid-gap)*2);--xs-layout:420px;--sm-layout:800px;--md-layout:1024px;--lg-layout:1200px;display:grid;position:relative}.midwest-layout>.wrapper{grid-gap:var(--layout-grid-gap,2rem);display:grid;grid-template-columns:var(--layout,1fr);margin:0 auto;max-width:var(--md-layout);min-height:0;min-width:0;padding:var(--layout-padding) 0;width:var(--layout-width)}.midwest-layout>.wrapper>*{min-width:0}.midwest-layout.size-xs>.wrapper{max-width:var(--xs-layout)}.midwest-layout.size-sm>.wrapper{max-width:var(--sm-layout)}.midwest-layout.size-lg>.wrapper{max-width:var(--lg-layout)}.midwest-layout.size-full>.wrapper{max-width:100%}.midwest-layout.size-flush>.wrapper{max-width:100%;width:100%}.midwest-layout.padding-none{--layout-padding:0;--layout-grid-gap:0}.midwest-layout.padding-xs{--layout-padding:0.5rem;--layout-grid-gap:0.25rem}.midwest-layout.padding-sm{--layout-padding:1rem;--layout-grid-gap:0.5rem}.midwest-layout.padding-lg{--layout-padding:3rem;--layout-grid-gap:6rem}.midwest-layout.has-nav>.wrapper{padding-bottom:0}.midwest-layout.has-nav>.wrapper>nav{margin-top:calc(var(--layout-padding)/2)}.midwest-layout[class*=-flipped] aside{order:9999}@container midwest-layout (min-width: 700px){.type-default>.wrapper{--layout:1fr!important}.type-one-third>.wrapper{--layout:1fr 2fr!important}.type-one-third-flipped>.wrapper{--layout:2fr 1fr!important}.type-sidebar>.wrapper{--layout:1fr 4fr!important}.type-sidebar-flipped>.wrapper{--layout:4fr 1fr!important}.type-locked-sidebar>.wrapper{--layout:var(--layout-sidebar-width,16rem) 1fr!important}.type-locked-sidebar-flipped>.wrapper{--layout:1fr var(--layout-sidebar-width,16rem)!important}.type-supporting-content>.wrapper{--layout:4fr 6fr!important}.type-supporting-content-flipped>.wrapper{--layout:6fr 4fr!important}.type-half>.wrapper{--layout:1fr 1fr!important}}}@layer midwest.prose{.midwest-prose{display:block;text-align:left}.dark .midwest-prose a,.midwest-prose a{color:var(--theme-6)}.midwest-prose>*{margin-bottom:.125em!important}.midwest-prose>h1+p,.midwest-prose>h2+p,.midwest-prose>h3+p,.midwest-prose>h4+p,.midwest-prose>h5+p,.midwest-prose>h6+p{margin-top:.5rem!important}.midwest-prose>p+h1,.midwest-prose>p+h2,.midwest-prose>p+h3,.midwest-prose>p+h4,.midwest-prose>p+h5,.midwest-prose>p+h6{margin-top:2rem!important}.midwest-prose>:last-child{margin-bottom:0!important}.midwest-prose>.midwest-button,.midwest-prose>dl{margin-top:1rem!important}blockquote{border-color:var(--theme-6)}blockquote p{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dark blockquote p{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.midwest-prose[clamp]{-webkit-line-clamp:var(--clamp,3);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}}@layer midwest.input{.midwest-input :is(input,textarea){--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);border-color:var(--gray-1);border-radius:.375rem;border-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:block;width:100%}.midwest-input :is(input,textarea):focus{--tw-ring-color:var(--theme-6);border-color:var(--theme-6)}.dark .midwest-input :is(input,textarea){--tw-text-opacity:1;background-color:var(--gray-10);border-color:var(--gray-9);color:rgb(255 255 255/var(--tw-text-opacity))}.dark .midwest-input :is(input,textarea)::-moz-placeholder{color:var(--gray-4)}.dark .midwest-input :is(input,textarea)::placeholder{color:var(--gray-4)}.dark .midwest-input :is(input,textarea):focus{--tw-ring-color:var(--theme-7);border-color:var(--theme-7)}@media (min-width:640px){.midwest-input :is(input,textarea){font-size:1.125rem;line-height:1.75rem}}.midwest-input :is(input,textarea):disabled{background-color:var(--gray-1);border-color:var(--gray-2);color:var(--gray-6);cursor:not-allowed}.dark .midwest-input :is(input,textarea):disabled{background-color:var(--gray-12);border-color:var(--gray-10);color:var(--gray-6)}.midwest-input__bottom,.midwest-input__top{display:flex;flex-wrap:wrap;gap:.25rem;justify-content:space-between;width:100%}@layer midwest.card{.midwest-card>.wrap footer .midwest-input__bottom,.midwest-card>.wrap footer.midwest-input__top,.midwest-card>.wrap header .midwest-input__bottom,.midwest-card>.wrap header.midwest-input__top{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer .midwest-input__bottom,.midwest-card>.wrap footer.midwest-input__top,.midwest-card>.wrap header .midwest-input__bottom,.midwest-card>.wrap header.midwest-input__top{flex-direction:column}}}.midwest-input__top{margin-bottom:.25rem}.midwest-input__bottom{margin-top:.25rem}.midwest-input.has-error :is(input,textarea){border-color:var(--theme-6);color:var(--theme-8)}.dark .midwest-input.has-error :is(input,textarea){border-color:var(--theme-6);color:var(--theme-4)}.midwest-input.inline :is(input,textarea){--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;border-color:var(--gray-2);border-radius:0;border-width:0 0 2px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.midwest-input.inline :is(input,textarea):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(var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:var(--theme-6);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.midwest-input.type-hidden{display:contents}}@layer midwest.label{.midwest-label{align-items:center;color:var(--gray-12);display:flex;font-size:1rem;font-weight:700;gap:.5rem;letter-spacing:.05em;line-height:1.5rem}@layer midwest.card{.midwest-card>.wrap footer.midwest-label,.midwest-card>.wrap header.midwest-label{align-items:center;gap:1rem;justify-content:space-between}@container midwest-card (max-width: 350px){.midwest-card>.wrap footer.midwest-label,.midwest-card>.wrap header.midwest-label{flex-direction:column}}}.dark .midwest-label{color:var(--gray-0)}.midwest-label.description{color:var(--gray-4);font-size:.75rem;font-weight:400;letter-spacing:0;line-height:1rem;text-transform:none}.dark .midwest-label.description{color:var(--gray-4)}.midwest-label.error{color:var(--theme-6)}.midwest-label.error .midwest-icon{color:var(--theme-7);font-size:1.125rem;line-height:1.75rem}}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.pointer-events-none{pointer-events:none}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.bottom-0{bottom:0}.right-0{right:0}.top-0{top:0}.left-0{left:0}.z-10{z-index:10}.order-last{order:9999}.order-3{order:3}.col-span-full{grid-column:1/-1}.m-8{margin:2rem}.m-auto{margin:auto}.-m-3{margin:-.75rem}.-my-2{margin-bottom:-.5rem;margin-top:-.5rem}.mx-auto{margin-left:auto;margin-right:auto}.mb-0{margin-bottom:0}.mb-4{margin-bottom:1rem}.-mr-2{margin-right:-.5rem}.ml-2{margin-left:.5rem}.ml-8{margin-left:2rem}.mt-6{margin-top:1.5rem}.ml-3{margin-left:.75rem}.mt-5{margin-top:1.25rem}.mr-4{margin-right:1rem}.ml-4{margin-left:1rem}.mb-2{margin-bottom:.5rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.ml-5{margin-left:1.25rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-full{height:100%}.h-fit{height:-moz-fit-content;height:fit-content}.h-32{height:8rem}.h-48{height:12rem}.h-8{height:2rem}.h-6{height:1.5rem}.h-16{height:4rem}.h-5{height:1.25rem}.min-h-screen{min-height:100vh}.w-full{width:100%}.w-32{width:8rem}.w-36{width:9rem}.w-96{width:24rem}.w-auto{width:auto}.w-6{width:1.5rem}.w-5{width:1.25rem}.w-0{width:0}.min-w-full{min-width:100%}.max-w-6xl{max-width:72rem}.max-w-0{max-width:0}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.origin-top-right{transform-origin:top right}.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))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.place-content-center{place-content:center}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-4{gap:1rem}.gap-8{gap:2rem}.gap-y-8{row-gap:2rem}.gap-y-4{row-gap:1rem}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.space-x-10>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2.5rem*var(--tw-space-x-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.divide-y-2>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(2px*var(--tw-divide-y-reverse));border-top-width:calc(2px*(1 - var(--tw-divide-y-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-theme-8>:not([hidden])~:not([hidden]){border-color:var(--theme-8)}.divide-gray-2>:not([hidden])~:not([hidden]){border-color:var(--gray-2)}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.rounded-md{border-radius:.375rem}.rounded{border-radius:.25rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-transparent{border-color:#0000}.border-theme-0{border-color:var(--theme-0)}.border-theme-1{border-color:var(--theme-1)}.border-theme-2{border-color:var(--theme-2)}.border-theme-3{border-color:var(--theme-3)}.border-theme-4{border-color:var(--theme-4)}.border-theme-5{border-color:var(--theme-5)}.border-theme-6{border-color:var(--theme-6)}.border-theme-7{border-color:var(--theme-7)}.border-theme-8{border-color:var(--theme-8)}.border-theme-9{border-color:var(--theme-9)}.border-theme-10{border-color:var(--theme-10)}.border-theme-11{border-color:var(--theme-11)}.border-theme-12{border-color:var(--theme-12)}.border-gray-2{border-color:var(--gray-2)}.border-gray-3{border-color:var(--gray-3)}.bg-theme-0{background-color:var(--theme-0)}.bg-theme-6{background-color:var(--theme-6)}.bg-theme-1{background-color:var(--theme-1)}.bg-theme-2{background-color:var(--theme-2)}.bg-theme-3{background-color:var(--theme-3)}.bg-theme-4{background-color:var(--theme-4)}.bg-theme-5{background-color:var(--theme-5)}.bg-theme-7{background-color:var(--theme-7)}.bg-theme-8{background-color:var(--theme-8)}.bg-theme-9{background-color:var(--theme-9)}.bg-theme-10{background-color:var(--theme-10)}.bg-theme-11{background-color:var(--theme-11)}.bg-theme-12{background-color:var(--theme-12)}.bg-complement-0{background-color:var(--complement-0)}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bg-complement-1{background-color:var(--complement-1)}.bg-complement-2{background-color:var(--complement-2)}.bg-complement-3{background-color:var(--complement-3)}.bg-complement-4{background-color:var(--complement-4)}.bg-complement-5{background-color:var(--complement-5)}.bg-complement-6{background-color:var(--complement-6)}.bg-complement-7{background-color:var(--complement-7)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-complement-8{background-color:var(--complement-8)}.bg-complement-9{background-color:var(--complement-9)}.bg-complement-10{background-color:var(--complement-10)}.bg-complement-11{background-color:var(--complement-11)}.bg-complement-12{background-color:var(--complement-12)}.bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--tw-gradient-stops))}.bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--tw-gradient-stops))}.from-theme-6{--tw-gradient-from:var(--theme-6);--tw-gradient-to:#fff0;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.to-complement-6{--tw-gradient-to:var(--complement-6)}.fill-gray-0{fill:var(--gray-0)}.fill-theme-8{fill:var(--theme-8)}.fill-theme-2{fill:var(--theme-2)}.fill-theme-4{fill:var(--theme-4)}.fill-theme-6{fill:var(--theme-6)}.fill-theme-10{fill:var(--theme-10)}.fill-theme-3{fill:var(--theme-3)}.fill-theme-5{fill:var(--theme-5)}.fill-complement-6{fill:var(--complement-6)}.fill-complement-5{fill:var(--complement-5)}.stroke-gray-1{stroke:var(--gray-1)}.stroke-theme-12{stroke:var(--theme-12)}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.p-2{padding:.5rem}.p-8{padding:2rem}.p-3{padding:.75rem}.p-1{padding:.25rem}.p-4{padding:1rem}.px-4{padding-left:1rem;padding-right:1rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-0{padding-bottom:0;padding-top:0}.pl-4{padding-left:1rem}.pr-8{padding-right:2rem}.pt-5{padding-top:1.25rem}.pb-6{padding-bottom:1.5rem}.pb-4{padding-bottom:1rem}.pt-6{padding-top:1.5rem}.pl-8{padding-left:2rem}.pr-3{padding-right:.75rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-sm{font-size:.875rem;line-height:1.25rem}.text-6xl{font-size:3.75rem;line-height:1}.text-base{font-size:1rem;line-height:1.5rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-xs{font-size:.75rem;line-height:1rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.font-medium{font-weight:500}.font-bold{font-weight:700}.font-semibold{font-weight:600}.capitalize{text-transform:capitalize}.leading-6{line-height:1.5rem}.text-theme-7{color:var(--theme-7)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-theme-12{color:var(--theme-12)}.text-theme-0{color:var(--theme-0)}.text-complement-12{color:var(--complement-12)}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-theme-1{color:var(--theme-1)}.text-theme-2{color:var(--theme-2)}.text-theme-3{color:var(--theme-3)}.text-theme-4{color:var(--theme-4)}.text-theme-5{color:var(--theme-5)}.text-complement-0{color:var(--complement-0)}.text-theme-6{color:var(--theme-6)}.text-theme-8{color:var(--theme-8)}.text-theme-9{color:var(--theme-9)}.text-theme-10{color:var(--theme-10)}.text-theme-11{color:var(--theme-11)}.text-gray-5{color:var(--gray-5)}.text-gray-6{color:var(--gray-6)}.text-gray-3{color:var(--gray-3)}.text-gray-12{color:var(--gray-12)}.text-gray-4{color:var(--gray-4)}.text-gray-9{color:var(--gray-9)}.text-gray-7{color:var(--gray-7)}.underline{text-decoration-line:underline}.no-underline{text-decoration-line:none}.placeholder-gray-5::-moz-placeholder{color:var(--gray-5)}.placeholder-gray-5::placeholder{color:var(--gray-5)}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-lg,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.outline-theme-0{outline-color:var(--theme-0)}.outline-theme-1{outline-color:var(--theme-1)}.outline-theme-2{outline-color:var(--theme-2)}.outline-theme-3{outline-color:var(--theme-3)}.outline-theme-4{outline-color:var(--theme-4)}.outline-theme-5{outline-color:var(--theme-5)}.outline-theme-6{outline-color:var(--theme-6)}.outline-theme-7{outline-color:var(--theme-7)}.outline-theme-8{outline-color:var(--theme-8)}.outline-theme-9{outline-color:var(--theme-9)}.outline-theme-10{outline-color:var(--theme-10)}.outline-theme-11{outline-color:var(--theme-11)}.outline-theme-12{outline-color:var(--theme-12)}.ring-1{--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:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgb(0 0 0/var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity:0.05}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.focus-within\:text-gray-6:focus-within{color:var(--gray-6)}.hover\:bg-theme-1:hover{background-color:var(--theme-1)}.hover\:bg-theme-6:hover{background-color:var(--theme-6)}.hover\:bg-gray-1:hover{background-color:var(--gray-1)}.hover\:bg-theme-8:hover{background-color:var(--theme-8)}.hover\:bg-theme-7:hover{background-color:var(--theme-7)}.hover\:text-gray-6:hover{color:var(--gray-6)}.hover\:text-gray-12:hover{color:var(--gray-12)}.hover\:text-gray-8:hover{color:var(--gray-8)}.hover\:text-theme-6:hover{color:var(--theme-6)}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:text-gray-5:hover{color:var(--gray-5)}.hover\:text-theme-9:hover{color:var(--theme-9)}.focus\:border-transparent:focus{border-color:#0000}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.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)}.focus\:ring-0:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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(var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-inset:focus{--tw-ring-inset:inset}.focus\:ring-theme-6:focus{--tw-ring-color:var(--theme-6)}.focus\:ring-theme-5:focus{--tw-ring-color:var(--theme-5)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.group:hover .group-hover\:text-gray-4{color:var(--gray-4)}.group:hover .group-hover\:text-gray-5{color:var(--gray-5)}.group:hover .group-hover\:text-gray-9{color:var(--gray-9)}.dark .dark\:border-gray-9{border-color:var(--gray-9)}.dark .dark\:bg-theme-11{background-color:var(--theme-11)}.dark .dark\:bg-gray-11{background-color:var(--gray-11)}.dark .dark\:bg-gray-12{background-color:var(--gray-12)}.dark .dark\:text-theme-5{color:var(--theme-5)}.dark .dark\:text-gray-1{color:var(--gray-1)}.dark .dark\:placeholder-gray-2::-moz-placeholder{color:var(--gray-2)}.dark .dark\:placeholder-gray-2::placeholder{color:var(--gray-2)}.dark .dark\:hover\:bg-theme-10:hover{background-color:var(--theme-10)}@media (min-width:640px){.sm\:mt-1{margin-top:.25rem}.sm\:mr-6{margin-right:1.5rem}.sm\:mt-0{margin-top:0}.sm\:block{display:block}.sm\:hidden{display:none}.sm\:h-10{height:2.5rem}.sm\:flex-row{flex-direction:row}.sm\:flex-wrap{flex-wrap:wrap}.sm\:justify-end{justify-content:flex-end}.sm\:rounded-lg{border-radius:.5rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media (min-width:768px){.md\:ml-0{margin-left:0}.md\:ml-6{margin-left:1.5rem}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:flex-1{flex:1 1 0%}.md\:justify-start{justify-content:flex-start}.md\:space-x-10>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2.5rem*var(--tw-space-x-reverse))}}@media (min-width:1024px){.lg\:hidden{display:none}.lg\:w-0{width:0}.lg\:flex-1{flex:1 1 0%}.lg\:border-t{border-top-width:1px}.lg\:border-none{border-style:none}.lg\:border-gray-2{border-color:var(--gray-2)}.lg\:px-8{padding-left:2rem;padding-right:2rem}}
|
package/package.json
CHANGED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { Controller } from "@hotwired/stimulus";
|
|
2
|
-
|
|
3
|
-
class Card extends Controller {
|
|
4
|
-
#originalHeight;
|
|
5
|
-
#backHeight;
|
|
6
|
-
connect() {
|
|
7
|
-
this.applyReady();
|
|
8
|
-
}
|
|
9
|
-
get flippable() {
|
|
10
|
-
return this.element.classList.contains("flippable");
|
|
11
|
-
}
|
|
12
|
-
async applyReady() {
|
|
13
|
-
if (this.flippable) {
|
|
14
|
-
this.#originalHeight = this.element.querySelector(".front").offsetHeight;
|
|
15
|
-
this.#backHeight = this.element.querySelector(".back").offsetHeight;
|
|
16
|
-
this.element.style.setProperty("--min-height", `${this.#originalHeight}px`);
|
|
17
|
-
this.element.style.setProperty("--flipped-min-height", `${this.#backHeight}px`);
|
|
18
|
-
this.element.classList.add("flip-ready");
|
|
19
|
-
window.addEventListener("resize", (event => {
|
|
20
|
-
this.#originalHeight = this.element.querySelector(".front").offsetHeight;
|
|
21
|
-
this.#backHeight = this.element.querySelector(".back").offsetHeight;
|
|
22
|
-
this.element.style.setProperty("--min-height", `${this.#originalHeight}px`);
|
|
23
|
-
this.element.style.setProperty("--flipped-min-height", `${this.#backHeight}px`);
|
|
24
|
-
}));
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
flip() {
|
|
28
|
-
this.element.classList.toggle("flipped");
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
function registerMidwestControllers(application) {
|
|
33
|
-
application.register("midwest-card", Card);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export { Card, registerMidwestControllers };
|