@invopop/popui 0.0.64 → 0.0.66
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.
- package/dist/BaseButton.svelte +14 -6
- package/dist/BaseButton.svelte.d.ts +1 -0
- package/dist/BaseDropdown.svelte +16 -2
- package/dist/BaseDropdown.svelte.d.ts +1 -0
- package/dist/CompanySelector.svelte +10 -27
- package/dist/DrawerContextItem.svelte +3 -3
- package/dist/DrawerContextWorkspace.svelte +2 -2
- package/dist/DropdownSelect.svelte +3 -3
- package/dist/MenuItemCollapsible.svelte +37 -0
- package/dist/MenuItemCollapsible.svelte.d.ts +24 -0
- package/dist/popui.css +1 -1
- package/package.json +2 -2
package/dist/BaseButton.svelte
CHANGED
|
@@ -16,6 +16,7 @@ export let big = false;
|
|
|
16
16
|
export let dangerIcon = false;
|
|
17
17
|
export let shortcut = false;
|
|
18
18
|
export let fullwidth = false;
|
|
19
|
+
export let notification = false;
|
|
19
20
|
let resolvedIcon;
|
|
20
21
|
$: {
|
|
21
22
|
resolveIcon(icon).then((icon2) => {
|
|
@@ -93,13 +94,20 @@ function handleClick(event) {
|
|
|
93
94
|
>
|
|
94
95
|
<span class="{overlayClasses} absolute inset-0" />
|
|
95
96
|
{#if resolvedIcon}
|
|
96
|
-
|
|
97
|
-
|
|
97
|
+
<div class="relative">
|
|
98
|
+
{#if shortcut}
|
|
99
|
+
<ShortcutWrapper>
|
|
100
|
+
<Icon src={resolvedIcon} theme={iconTheme} class="{iconStyles} h-4 w-4 z-10" />
|
|
101
|
+
</ShortcutWrapper>
|
|
102
|
+
{:else}
|
|
98
103
|
<Icon src={resolvedIcon} theme={iconTheme} class="{iconStyles} h-4 w-4 z-10" />
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
104
|
+
{/if}
|
|
105
|
+
{#if notification}
|
|
106
|
+
<span
|
|
107
|
+
class="absolute top-0 right-0 -mt-0.5 -mr-0.5 w-1.5 h-1.5 bg-danger-500 rounded-full z-20"
|
|
108
|
+
/>
|
|
109
|
+
{/if}
|
|
110
|
+
</div>
|
|
103
111
|
{/if}
|
|
104
112
|
{#if $$slots.default}
|
|
105
113
|
<span class="z-10"><slot /></span>
|
package/dist/BaseDropdown.svelte
CHANGED
|
@@ -1,13 +1,27 @@
|
|
|
1
|
-
<script>import { offset, flip, shift } from "svelte-floating-ui/dom";
|
|
1
|
+
<script>import { offset, flip, shift, size } from "svelte-floating-ui/dom";
|
|
2
2
|
import { createFloatingActions } from "svelte-floating-ui";
|
|
3
3
|
import { clickOutside } from "./clickOutside.js";
|
|
4
4
|
export let isOpen = false;
|
|
5
5
|
export let fullWidth = false;
|
|
6
6
|
export let placement = "bottom-end";
|
|
7
|
+
export let matchParentWidth = false;
|
|
8
|
+
const middleware = [offset(6), flip(), shift()];
|
|
9
|
+
if (matchParentWidth) {
|
|
10
|
+
middleware.push(
|
|
11
|
+
size({
|
|
12
|
+
apply({ rects, elements }) {
|
|
13
|
+
Object.assign(elements.floating.style, {
|
|
14
|
+
minWidth: `${rects.reference.width}px`,
|
|
15
|
+
maxWidth: `${rects.reference.width}px`
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
})
|
|
19
|
+
);
|
|
20
|
+
}
|
|
7
21
|
const [floatingRef, floatingContent] = createFloatingActions({
|
|
8
22
|
strategy: "absolute",
|
|
9
23
|
placement,
|
|
10
|
-
middleware
|
|
24
|
+
middleware
|
|
11
25
|
});
|
|
12
26
|
let closedFromClickOutside = false;
|
|
13
27
|
export const toggle = () => {
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
<script>import
|
|
2
|
-
import ProfileAvatar from "./ProfileAvatar.svelte";
|
|
1
|
+
<script>import ProfileAvatar from "./ProfileAvatar.svelte";
|
|
3
2
|
import BaseDropdown from "./BaseDropdown.svelte";
|
|
4
3
|
import DrawerContextWorkspace from "./DrawerContextWorkspace.svelte";
|
|
5
4
|
import { createEventDispatcher } from "svelte";
|
|
6
|
-
import clsx from "clsx";
|
|
7
5
|
import { DoubleArrow } from "@invopop/ui-icons";
|
|
6
|
+
import MenuItemCollapsible from "./MenuItemCollapsible.svelte";
|
|
8
7
|
const dispatch = createEventDispatcher();
|
|
9
8
|
export let companies = [];
|
|
10
9
|
export let selectedCompany = null;
|
|
@@ -30,13 +29,6 @@ $:
|
|
|
30
29
|
sandbox: c.sandbox
|
|
31
30
|
}))
|
|
32
31
|
];
|
|
33
|
-
$:
|
|
34
|
-
styles = clsx(
|
|
35
|
-
{ "p-1": collapsed },
|
|
36
|
-
{ "space-x-2 w-full p-[7px]": !collapsed },
|
|
37
|
-
{ "border-white-30 bg-white-10": isOpen },
|
|
38
|
-
{ "border-transparent hover:bg-white-5": !isOpen }
|
|
39
|
-
);
|
|
40
32
|
function selectCompany(event) {
|
|
41
33
|
companyDropdown.toggle();
|
|
42
34
|
if (event.detail === "add") {
|
|
@@ -54,25 +46,16 @@ function selectCompany(event) {
|
|
|
54
46
|
placement="bottom-start"
|
|
55
47
|
fullWidth={!collapsed}
|
|
56
48
|
>
|
|
57
|
-
<
|
|
49
|
+
<MenuItemCollapsible
|
|
58
50
|
slot="trigger"
|
|
51
|
+
{collapsed}
|
|
59
52
|
title={name}
|
|
60
|
-
|
|
53
|
+
subtitle={isSandbox ? 'Sandbox' : ''}
|
|
54
|
+
icon={collapsed ? undefined : DoubleArrow}
|
|
55
|
+
active={isOpen}
|
|
56
|
+
bold
|
|
61
57
|
>
|
|
62
|
-
<
|
|
63
|
-
|
|
64
|
-
{#if !collapsed}
|
|
65
|
-
<div>
|
|
66
|
-
<div class="whitespace-nowrap max-w-[140px] truncate tracking-tight">{name}</div>
|
|
67
|
-
{#if isSandbox}
|
|
68
|
-
<div class="text-sm font-medium text-yellow-600">Sandbox</div>
|
|
69
|
-
{/if}
|
|
70
|
-
</div>
|
|
71
|
-
{/if}
|
|
72
|
-
</span>
|
|
73
|
-
{#if !collapsed}
|
|
74
|
-
<Icon src={DoubleArrow} class="h-4 w-4 text-white-40 mt-px" />
|
|
75
|
-
{/if}
|
|
76
|
-
</span>
|
|
58
|
+
<ProfileAvatar {name} {picture} {country} dark large />
|
|
59
|
+
</MenuItemCollapsible>
|
|
77
60
|
<DrawerContextWorkspace {items} on:click={selectCompany} />
|
|
78
61
|
</BaseDropdown>
|
|
@@ -18,7 +18,7 @@ $:
|
|
|
18
18
|
$:
|
|
19
19
|
styles = clsx(
|
|
20
20
|
{ "py-1 space-x-3": workspace },
|
|
21
|
-
{ "py-1.5 space-x-
|
|
21
|
+
{ "py-1.5 space-x-1": !workspace },
|
|
22
22
|
{ "px-1.5": hasIcon },
|
|
23
23
|
{ "px-2": !hasIcon },
|
|
24
24
|
{ "bg-workspace-accent-100": item.selected && !multiple },
|
|
@@ -29,7 +29,7 @@ $:
|
|
|
29
29
|
{ "text-danger-500": item.destructive },
|
|
30
30
|
{ "text-neutral-800": !item.destructive },
|
|
31
31
|
{ "tracking-tight max-w-[200px]": workspace },
|
|
32
|
-
{ "tracking-normal
|
|
32
|
+
{ "tracking-normal": !workspace }
|
|
33
33
|
);
|
|
34
34
|
onMount(() => {
|
|
35
35
|
if (!scrollIfSelected)
|
|
@@ -60,7 +60,7 @@ onMount(() => {
|
|
|
60
60
|
class="w-4 h-4 {item.destructive ? 'text-danger-500' : 'text-neutral-500'}"
|
|
61
61
|
/>
|
|
62
62
|
{/if}
|
|
63
|
-
<div class="whitespace-nowrap flex-1 text-left flex flex-col" title={item.label}>
|
|
63
|
+
<div class="whitespace-nowrap flex-1 text-left flex flex-col truncate" title={item.label}>
|
|
64
64
|
<span class="flex items-center space-x-1.5">
|
|
65
65
|
{#if item.color}
|
|
66
66
|
<TagStatus status={item.color} dot />
|
|
@@ -51,7 +51,7 @@ $:
|
|
|
51
51
|
{#if liveOpen}
|
|
52
52
|
<div transition:slide class="max-h-[475px] overflow-auto">
|
|
53
53
|
{#if !liveItems.length}
|
|
54
|
-
<div class="h-[182px]">
|
|
54
|
+
<div class="h-[182px] overflow-x-hidden">
|
|
55
55
|
<EmptyStateIcon
|
|
56
56
|
icon={Sidebar}
|
|
57
57
|
title="No workspaces here"
|
|
@@ -89,7 +89,7 @@ $:
|
|
|
89
89
|
{#if sandboxOpen}
|
|
90
90
|
<div transition:slide class="max-h-[475px] overflow-auto">
|
|
91
91
|
{#if !sandboxItems.length}
|
|
92
|
-
<div class="h-[182px]">
|
|
92
|
+
<div class="h-[182px] overflow-x-hidden">
|
|
93
93
|
<EmptyStateIcon
|
|
94
94
|
icon={Sidebar}
|
|
95
95
|
title="No workspaces here"
|
|
@@ -14,7 +14,7 @@ export let options = [];
|
|
|
14
14
|
export let placeholder = "";
|
|
15
15
|
export let multiple = false;
|
|
16
16
|
export let fullWidth = false;
|
|
17
|
-
export let widthClass = "w-
|
|
17
|
+
export let widthClass = "min-w-[160px] max-w-[420px]";
|
|
18
18
|
let selectDropdown;
|
|
19
19
|
let resolvedIcon;
|
|
20
20
|
let isOpen = false;
|
|
@@ -56,7 +56,7 @@ function handleSelected(e) {
|
|
|
56
56
|
|
|
57
57
|
<BaseDropdown bind:isOpen placement="bottom-start" {fullWidth} bind:this={selectDropdown}>
|
|
58
58
|
<div
|
|
59
|
-
class="{styles} dropdown-select flex items-center border hover:border-neutral-300 rounded-md py-1.25 pl-2 gap-1 bg-white whitespace-nowrap"
|
|
59
|
+
class="{styles} dropdown-select max-w-[420px] flex items-center border hover:border-neutral-300 rounded-md py-1.25 pl-2 gap-1 bg-white whitespace-nowrap"
|
|
60
60
|
slot="trigger"
|
|
61
61
|
>
|
|
62
62
|
{#if resolvedIcon && !selectedColor}
|
|
@@ -65,7 +65,7 @@ function handleSelected(e) {
|
|
|
65
65
|
{#if selectedColor}
|
|
66
66
|
<TagStatus dot status={selectedColor} />
|
|
67
67
|
{/if}
|
|
68
|
-
<span class="w-full pr-8 text-neutral-800 placeholder-neutral-800 text-base">
|
|
68
|
+
<span class="w-full pr-8 text-neutral-800 placeholder-neutral-800 text-base truncate">
|
|
69
69
|
{selectedLabel}
|
|
70
70
|
</span>
|
|
71
71
|
</div>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<script>import { Icon } from "@steeze-ui/svelte-icon";
|
|
2
|
+
import clsx from "clsx";
|
|
3
|
+
export let collapsed = false;
|
|
4
|
+
export let title = "";
|
|
5
|
+
export let subtitle = "";
|
|
6
|
+
export let active = false;
|
|
7
|
+
export let bold = false;
|
|
8
|
+
export let icon = void 0;
|
|
9
|
+
$:
|
|
10
|
+
styles = clsx(
|
|
11
|
+
{ "p-1": collapsed },
|
|
12
|
+
{ "space-x-2 w-full p-[7px]": !collapsed },
|
|
13
|
+
{ "border-white-30 bg-white-10": active },
|
|
14
|
+
{ "border-transparent hover:bg-white-5": !active },
|
|
15
|
+
{ "font-semibold": bold }
|
|
16
|
+
);
|
|
17
|
+
</script>
|
|
18
|
+
|
|
19
|
+
<span
|
|
20
|
+
{title}
|
|
21
|
+
class="{styles} text-white text-base flex items-center justify-between border rounded"
|
|
22
|
+
>
|
|
23
|
+
<span class:space-x-2={!collapsed} class="flex items-center">
|
|
24
|
+
<slot />
|
|
25
|
+
{#if !collapsed}
|
|
26
|
+
<div>
|
|
27
|
+
<div class="whitespace-nowrap max-w-[140px] truncate tracking-tight">{title}</div>
|
|
28
|
+
{#if subtitle}
|
|
29
|
+
<div class="text-sm font-medium text-yellow-600">{subtitle}</div>
|
|
30
|
+
{/if}
|
|
31
|
+
</div>
|
|
32
|
+
{/if}
|
|
33
|
+
</span>
|
|
34
|
+
{#if icon}
|
|
35
|
+
<Icon src={icon} class="h-4 w-4 text-white-40 mt-px" />
|
|
36
|
+
{/if}
|
|
37
|
+
</span>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
import { type IconSource } from '@steeze-ui/svelte-icon';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
collapsed?: boolean | undefined;
|
|
6
|
+
title?: string | undefined;
|
|
7
|
+
subtitle?: string | undefined;
|
|
8
|
+
active?: boolean | undefined;
|
|
9
|
+
bold?: boolean | undefined;
|
|
10
|
+
icon?: IconSource | undefined;
|
|
11
|
+
};
|
|
12
|
+
events: {
|
|
13
|
+
[evt: string]: CustomEvent<any>;
|
|
14
|
+
};
|
|
15
|
+
slots: {
|
|
16
|
+
default: {};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export type MenuItemCollapsibleProps = typeof __propDef.props;
|
|
20
|
+
export type MenuItemCollapsibleEvents = typeof __propDef.events;
|
|
21
|
+
export type MenuItemCollapsibleSlots = typeof __propDef.slots;
|
|
22
|
+
export default class MenuItemCollapsible extends SvelteComponent<MenuItemCollapsibleProps, MenuItemCollapsibleEvents, MenuItemCollapsibleSlots> {
|
|
23
|
+
}
|
|
24
|
+
export {};
|
package/dist/popui.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
*,: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-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(0,101,183,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(0,101,183,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.16 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Inter,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}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:CommitMono,ui-monospace,Menlo,Monaco,Consolas,Ubuntu Mono,Roboto Mono,DejaVu Sans Mono,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-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}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.popui-avatar{position:relative;display:flex;height:1.25rem;width:1.25rem;align-items:center;justify-content:center;border-radius:.25rem;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1));font-family:Inter,sans-serif;font-weight:600;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-avatar--large{height:2rem!important;width:2rem!important}.popui-avatar--initial{border-width:1px;--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1))}.popui-admin-page__breadcrumbs{display:flex;align-items:center;justify-content:flex-start;gap:.25rem;font-size:16px;line-height:24px}.popui-admin-page__breadcrumbs>li:after{content:url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.5 2L5.6466 10H4.5L6.3534 2H7.5Z" fill="%23D1D5DB"/></svg>');display:inline-block;margin-left:4px;vertical-align:middle}.popui-admin-page__breadcrumbs>li{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.popui-button{position:relative;display:flex;align-items:center;justify-content:center;gap:.25rem;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));padding:.25rem .5rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;font-weight:500;letter-spacing:-.07px}.popui-button:disabled{pointer-events:none;opacity:.3}.popui-button--transparent{border-width:0}.popui-button--danger{--tw-bg-opacity:1;background-color:rgb(201 45 69/var(--tw-bg-opacity,1))}.popui-button--danger,.popui-button--primary{border-width:0;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.popui-button--primary{background-color:var(--workspace-accent-color,#169958)}.popui-button--secondary{border-width:0;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.popui-button--small{font-size:12px;line-height:16px}.popui-button:hover{box-shadow:inset 0 0 0 1000px rgba(0,0,0,.16)}.popui-button:active{box-shadow:inset 0 0 0 1000px rgba(0,0,0,.32)}.popui-checkbox-wrapper{display:flex;align-items:center;gap:.5rem}.popui-checkbox-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;color:#2563eb;background-color:#fff;border-color:#6b7280;--tw-shadow:0 0 #0000;border-radius:0}.popui-checkbox-input:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-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)}.popui-checkbox-input:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%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 0'/%3E%3C/svg%3E")}@media (forced-colors:active) {.popui-checkbox-input:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.popui-checkbox-input:checked:focus,.popui-checkbox-input:checked:hover{border-color:transparent;background-color:currentColor}.popui-checkbox-input: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");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media (forced-colors:active) {.popui-checkbox-input:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.popui-checkbox-input:indeterminate:focus,.popui-checkbox-input:indeterminate:hover{border-color:transparent;background-color:currentColor}.popui-checkbox-input{height:1rem;width:1rem;border-radius:.25rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));color:var(--workspace-accent-color,#169958)}.popui-checkbox-input:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-checkbox-input:hover+label{--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-checkbox-input:focus{color:var(--workspace-accent-color,#169958);--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);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.popui-checkbox-label{font-family:Inter,sans-serif;font-size:14px;line-height:20px;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-checkbox-label:hover{--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-desc-list>div>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-desc-list dd{font-size:14px;line-height:20px;font-weight:500;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-desc-list dd>.prose{font-weight:400}.popui-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow:0 0 #0000;border-radius:100%}.popui-radio:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-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)}.popui-radio:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}@media (forced-colors:active) {.popui-radio:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.popui-radio:checked:focus,.popui-radio:checked:hover{border-color:transparent;background-color:currentColor}.popui-radio{height:1.25rem;width:1.25rem;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));color:var(--workspace-accent-color,#169958)}.popui-radio:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-radio: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);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.popui-radio:hover+label{--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-radio-wrapper{display:block;cursor:pointer;border-radius:.5rem;border-width:1px;text-align:left;width:100%}.popui-radio-wrapper:has(:checked){border-color:var(--workspace-accent-color,#169958)}.popui-radio-wrapper:has(input:not(:checked)){--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1))}.popui-radio-wrapper:has(:checked){--tw-shadow:0px 0px 0px 2px color-mix(in lab,transparent 88%,var(--workspace-accent-color,#169958));--tw-shadow-colored:0px 0px 0px 2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.popui-radio-wrapper__inner{display:flex;align-items:flex-start;justify-content:space-between;padding:.5rem .5rem .5rem .75rem}.popui-radio-label__wrapper{display:flex;flex-direction:column}.popui-radio-label__wrapper>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.125rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.125rem*var(--tw-space-y-reverse))}.popui-radio-label{font-size:14px;line-height:20px;font-weight:500;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-radio-label:hover+input{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-radio-description{font-size:12px;line-height:16px;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-image{height:100%;border-radius:.25rem;-o-object-fit:cover;object-fit:cover;width:100%}.popui-input-text-wrapper{display:flex;flex-direction:column}.popui-input-text-wrapper>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-input-text{border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));padding:.375rem .625rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;letter-spacing:-.07px;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));caret-color:var(--workspace-accent-color,#169958);outline:2px solid transparent;outline-offset:2px;width:100%}.popui-input-text::-moz-placeholder{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-input-text::placeholder{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-input-text: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);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.popui-input-text:hover:enabled{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-input-text:not(.popui-input--error):focus{border-color:var(--workspace-accent-color,#169958);--tw-shadow:0px 0px 0px 2px color-mix(in lab,transparent 88%,var(--workspace-accent-color,#169958));--tw-shadow-colored:0px 0px 0px 2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.popui-input-text--error{border-color:rgba(201,45,69,.4)!important;--tw-text-opacity:1!important;color:rgb(201 45 69/var(--tw-text-opacity,1))!important;caret-color:#c92d45!important;outline:2px solid transparent!important;outline-offset:2px!important}.popui-desc-list dt,.popui-label{font-family:Inter,sans-serif;font-size:12px;line-height:16px;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-error{display:flex;align-items:center}.popui-error>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.25rem*var(--tw-space-x-reverse));margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))}.popui-error{background-size:16px 16px;background-position:0;background-repeat:no-repeat;padding-left:20px;font-size:12px;line-height:16px;color:rgb(201 45 69/var(--tw-text-opacity,1));background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0M5MkQ0NSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNOCAxNC41YTYuNSA2LjUgMCAxIDAgMC0xMyA2LjUgNi41IDAgMCAwIDAgMTNtMC01LjE1YS42LjYgMCAwIDEtLjYtLjZ2LTRhLjYuNiAwIDAgMSAxLjIgMHY0YS42LjYgMCAwIDEtLjYuNk04Ljc1IDExYS43NS43NSAwIDEgMS0xLjUgMCAuNzUuNzUgMCAwIDEgMS41IDAiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==")}.popui-error,.popui-paragraph{font-family:Inter,sans-serif;--tw-text-opacity:1}.popui-paragraph{font-size:14px;line-height:20px;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-title{font-size:1.5rem;line-height:2rem;font-weight:600;color:rgb(0 0 0/var(--tw-text-opacity,1))}.popui-subtitle,.popui-title{font-family:Inter,sans-serif;--tw-text-opacity:1}.popui-subtitle{font-size:14px;line-height:20px;font-weight:500;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-info{display:flex;align-items:center;gap:.25rem;font-family:Inter,sans-serif;font-size:12px;line-height:16px;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-info-text{flex:1 1 0%}mark,p>code,pre{display:inline-flex;border-radius:.25rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1));padding:.125rem .25rem;font-family:Inter,sans-serif;font-size:12px;line-height:16px;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}pre{overflow-x:auto}.popui-description{font-family:Inter,sans-serif;font-size:12px;line-height:16px;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-popover-wrapper{position:relative;display:inline-block}.popui-popover-list{position:absolute;left:0;top:1.75rem;z-index:10;display:none;width:100%;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1));padding:.25rem}[popover]:popover-open+.popui-popover-list{display:block}.popui-popover-list{width:100%}.popui-popover-list-item{border-radius:.25rem;padding:.375rem .5rem .375rem .375rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;font-weight:500;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));width:100%}.popui-popover-list-item>button{z-index:10;display:flex;cursor:pointer;align-items:center}.popui-popover-list-item>button>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.popui-popover-list-item>button{white-space:nowrap}.popui-popover-list-item:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.popui-popover-wrapper__right{justify-content:flex-end}.popui-popover-list__stretch{width:-moz-fit-content;width:fit-content}.popui-popover-list__right{left:unset!important;right:0}.popui-popover-list-item__text-left{display:flex;align-items:center;justify-content:flex-start;gap:.375rem}[popover]{inset:unset;width:auto;height:auto;padding:0;background:transparent;border:none;position:fixed;top:0;right:0;pointer-events:none;overlay:none}[popover]:popover-open+.popover-menu{display:block!important}.popui-select-wrapper{display:flex;flex-direction:column}.popui-select-wrapper>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-select{border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));padding:.375rem 2.25rem .375rem .5rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;letter-spacing:-.07px;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));outline:2px solid transparent;outline-offset:2px;width:100%}.popui-select:disabled{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1))}.popui-select{appearance:none;-webkit-appearance:none;-moz-appearance:none;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0ibm9uZSI+PHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiB4PSIyIiB5PSIyIiBmaWxsPSIjRjNGNEY2IiByeD0iNCIvPjxwYXRoIHN0cm9rZT0iIzAzMDcxMiIgc3Ryb2tlLXdpZHRoPSIxLjEiIGQ9Im02LjUgOC4yNSAzLjUgMy41IDMuNS0zLjUiLz48L3N2Zz4=");background-repeat:no-repeat;background-position:center right 6px}.popui-select:hover:enabled{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-select: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);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.popui-select:not(.popui-input--error):focus{border-color:var(--workspace-accent-color,#169958);--tw-shadow:0px 0px 0px 2px color-mix(in lab,transparent 88%,var(--workspace-accent-color,#169958));--tw-shadow-colored:0px 0px 0px 2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.popui-textarea-wrapper{display:flex;flex-direction:column}.popui-textarea-wrapper>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-textarea{border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));padding:.375rem .625rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;letter-spacing:-.07px;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));caret-color:var(--workspace-accent-color,#169958);outline:2px solid transparent;outline-offset:2px;width:100%}.popui-textarea::-moz-placeholder{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-textarea::placeholder{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-textarea:disabled{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1))}.popui-textarea--monospaced{font-family:CommitMono,ui-monospace,Menlo,Monaco,Consolas,Ubuntu Mono,Roboto Mono,DejaVu Sans Mono,monospace!important}.popui-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);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.popui-textarea:hover:enabled{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-textarea:not(.popui-input--error):focus{border-color:var(--workspace-accent-color,#169958);--tw-shadow:0px 0px 0px 2px color-mix(in lab,transparent 88%,var(--workspace-accent-color,#169958));--tw-shadow-colored:0px 0px 0px 2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}div[contenteditable=true] .tag{display:inline-flex;padding:2px 4px;justify-content:center;align-items:center;gap:4px;border-radius:4px;border:1px solid #e5e7eb;background:#f9fafb;pointer-events:none;color:#030712;font-family:Inter;font-size:12px;font-style:normal;font-weight:500;line-height:16px}.popui-desc-list,.popui-form{width:400px}.popui-desc-list>:not([hidden])~:not([hidden]),.popui-form>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.popui-form__list-item{display:flex;align-items:center}.popui-form__list-item>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.75rem*var(--tw-space-x-reverse));margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)))}.popui-form__list-item{font-size:14px;line-height:20px;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-form__list-item>:nth-child(2){min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:600;flex:1 1 0%}.popui-fieldset{border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1));padding:1rem}.popui-fieldset-legend{display:block;font-size:12px;line-height:16px;font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity,1))}@keyframes pulse{50%{opacity:.5}}.popui-svg-loading{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.popui-container-config{display:flex;flex-direction:column;gap:.5rem;padding:.125rem}.popui-form-section>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-prose{color:var(--tw-prose-body);max-width:65ch}.popui-prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.popui-prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.popui-prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);text-decoration:underline;font-weight:500}.popui-prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.popui-prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em}.popui-prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.popui-prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.popui-prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.popui-prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.popui-prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.popui-prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.popui-prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.popui-prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.popui-prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.popui-prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em}.popui-prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{font-weight:400;color:var(--tw-prose-counters)}.popui-prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.popui-prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.popui-prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.popui-prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-style:italic;color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"\201C""\201D""\2018""\2019";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em}.popui-prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.popui-prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.popui-prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.popui-prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:900;color:inherit}.popui-prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.popui-prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:800;color:inherit}.popui-prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.popui-prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.popui-prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.popui-prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.popui-prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.popui-prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-top:2em;margin-bottom:2em}.popui-prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.popui-prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-family:inherit;color:var(--tw-prose-kbd);box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);font-size:.875em;border-radius:.3125rem;padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;padding-inline-start:.375em}.popui-prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-weight:600;font-size:.875em}.popui-prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}.popui-prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.popui-prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.popui-prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.popui-prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding-top:.8571429em;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-inline-start:1.1428571em}.popui-prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.popui-prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}.popui-prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.popui-prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){width:100%;table-layout:auto;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.popui-prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.popui-prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;vertical-align:bottom;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em}.popui-prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.popui-prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.popui-prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.popui-prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.popui-prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.popui-prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.popui-prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.popui-prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.popui-prose{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:17 24 39;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.popui-prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.popui-prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.popui-prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.popui-prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.popui-prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.popui-prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.popui-prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.popui-prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.popui-prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.popui-prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.popui-prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.popui-prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.popui-prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.popui-prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.popui-prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.popui-prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.popui-prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.popui-prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.popui-prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.5714286em;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em}.popui-prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.popui-prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.popui-prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.popui-prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.popui-prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.popui-prose{--tw-prose-body:#030712;font-size:14px;line-height:20px;margin-left:auto;margin-right:auto}.popui-desc-list dd>.popui-prose{font-weight:400}.popui-divider-wrapper{margin-top:.5rem;margin-bottom:.5rem}.popui-divider{width:100%;border-bottom:1px solid transparent;-o-border-image:repeating-linear-gradient(90deg,#e5e7eb,#e5e7eb 3px,transparent 0,transparent 7px);border-image:repeating-linear-gradient(90deg,#e5e7eb,#e5e7eb 3px,transparent 0,transparent 7px);border-image-slice:1}.popui-admin-page__content .popui-divider-wrapper{margin-top:0!important;margin-bottom:1.25rem!important}.popui-admin-page__content>div:first-of-type .popui-divider-wrapper{display:none}.popui-admin-page-title{font-family:Inter,sans-serif;font-size:16px;line-height:24px;font-weight:500;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-admin-page-title__wrapper{display:flex;align-items:center;gap:.25rem}.popui-table{border-collapse:collapse;border-radius:.25rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1));font-family:Inter,sans-serif;font-size:14px;line-height:20px;flex:1 1 0%}.popui-table th{border-bottom-width:1px;--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1))}.popui-table td>div{display:flex;align-items:center;gap:.5rem}.popui-table td,.popui-table th{box-sizing:border-box;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1));padding:.5rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;font-weight:400;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1));text-align:left}.popui-table-cell__right{text-align:right!important}.popui-tags-wrapper{display:flex;flex-direction:column;gap:.25rem}.popui-tags{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem}.popui-tag{display:inline-flex;align-items:center;gap:.25rem;border-radius:.25rem;border-width:1px;border-color:rgba(2,144,98,.2);background-color:rgba(2,144,98,.1);padding:.25rem 5px .25rem .375rem;font-size:12px;line-height:16px;font-weight:500;--tw-numeric-figure:lining-nums;--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);--tw-text-opacity:1;color:rgb(2 144 98/var(--tw-text-opacity,1))}.popui-tag-button{color:rgba(2,144,98,.3)}.popui-tag-add-button{margin-top:.125rem}.popui-tag-add-input{display:flex;align-items:flex-start;gap:.5rem;width:100%}.popui-upload_file{display:flex;height:3rem;align-items:center;gap:.5rem;border-radius:.5rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));padding:.25rem .75rem .25rem .25rem}.popui-upload_file-image{display:flex;width:2.5rem;align-items:center;justify-content:center;border-radius:.375rem}.popui-upload_file-text{font-size:14px;line-height:20px;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));flex:1 1 0%}.popui-upload_file-placeholder{display:flex;height:2.5rem;width:2.5rem;align-items:center;justify-content:center;border-radius:.375rem;border-width:1px;border-style:dashed;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1));background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzAzMDcxMiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMy4yNDkgMy4yNDljLS4xNy4xNy0uMy40NjUtLjMuOTgxdjcuNTZjLjAwMS40OTguMTIuNzkuMjgxLjk2M2w1LjE2Ni01LjE3NmEyLjI4IDIuMjggMCAwIDEgMy4yMjggMGwxLjQ0NiAxLjQ0NlY0LjIzYzAtLjUxNi0uMTI5LS44MTEtLjI5OS0uOTgxcy0uNDY1LS4yOTktLjk4MS0uMjk5SDQuMjNjLS41MTYgMC0uODEyLjEyOS0uOTgyLjI5OW04LjU0MSA5LjgyMUg0LjMyNmw0Ljc3OC00Ljc4N2ExLjI4IDEuMjggMCAwIDEgMS44MTIgMGwyLjE1NCAyLjE1NHYxLjM1M2MwIC41MTctLjEyOS44MTItLjI5OS45ODJzLS40NjUuMjk4LS45ODEuMjk4bTIuMjgtMS4yOFY0LjIzYzAtLjY3LS4xNjgtMS4yNjUtLjU5MS0xLjY4OC0uNDI0LS40MjQtMS4wMTktLjU5Mi0xLjY4OS0uNTkySDQuMjNjLS42NyAwLTEuMjY1LjE2OC0xLjY4OS41OTItLjQyMy40MjMtLjU5MSAxLjAxOC0uNTkxIDEuNjg4djcuNTZjMCAuNjcuMTY4IDEuMjY1LjU5MSAxLjY4OS40MjQuNDIzIDEuMDE5LjU5MSAxLjY4OS41OTFoNy41NmMuNjcgMCAxLjI2NS0uMTY4IDEuNjg5LS41OTEuNDIzLS40MjQuNTkxLTEuMDE4LjU5MS0xLjY4OU00Ljc3MiA1LjY2N2ExLjExNSAxLjExNSAwIDEgMSAxLjU3NiAxLjU3NyAxLjExNSAxLjExNSAwIDAgMS0xLjU3Ni0xLjU3NyIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9zdmc+");background-repeat:no-repeat;background-position:50%}[x-cloak]{display:none!important}.flex-1{flex:1 1 0%}.text-left{text-align:left}.max-w-md{max-width:28rem}.uppercase{text-transform:uppercase}.w-full{width:100%}.text-danger{--tw-text-opacity:1;color:rgb(201 45 69/var(--tw-text-opacity,1))}.popui-admin-wrapper{height:100vh;padding:.25rem}.popui-admin-sidebar,.popui-admin-wrapper{display:flex;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1))}.popui-admin-sidebar{height:100%;width:240px;flex-direction:column;align-items:center;gap:1rem}.popui-admin-page{overflow-y:auto;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1));flex:1 1 0%}.popui-admin-sidebar__header{gap:.625rem;border-bottom-width:1px;--tw-border-opacity:1;border-color:rgb(249 250 251/var(--tw-border-opacity,1));padding:18px .75rem 18px 1rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;font-weight:600;--tw-text-opacity:1;color:rgb(17 44 37/var(--tw-text-opacity,1));width:100%}.popui-admin-page__header-actions,.popui-admin-sidebar__header{display:flex;align-items:center}.popui-admin-page__header-actions{gap:.5rem}.popui-admin-sidebar__content{display:flex;flex-direction:column;align-items:center;gap:1.25rem;padding:1rem;width:100%}.popui-admin-sidebar__section{display:flex;flex-direction:column;align-items:flex-start;gap:.5rem;width:100%}.popui-admin-sidebar__section>p{font-family:Inter,sans-serif;font-size:12px;line-height:16px;font-weight:500;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.popui-admin-sidebar__section>ul{display:flex;flex-direction:column;align-items:flex-start;gap:.5rem;width:100%}.popui-admin-sidebar__section>ul>li{width:100%}.popui-admin-sidebar__section a{display:flex;align-items:center;gap:.25rem;border-radius:.375rem;border-width:1px;border-color:transparent;padding:5px .5rem 5px .375rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;font-weight:500;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));width:100%}.popui-admin-sidebar__item-active,.popui-admin-sidebar__section a:hover{border-color:rgba(3,7,18,.1);background-color:rgba(3,7,18,.05);--tw-backdrop-blur:blur(20px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.popui-admin-page__header{display:flex;align-items:center;justify-content:space-between;border-bottom-width:1px;--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1));padding:15px 1rem 15px 1.5rem}.popui-admin-page__content{display:flex;flex-direction:column;align-items:center;gap:1.5rem;padding:1.5rem}.popui-admin-page__section{display:flex;align-items:flex-start;gap:1.5rem;width:100%}.popui-admin-page__section-title{display:flex;width:340px;flex-direction:column;align-items:flex-start;gap:.125rem}.popui-demo-wrapper{margin-bottom:1rem}.popui-demo-wrapper>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-demo-wrapper{border-width:1px;--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity,1));padding:1rem}.popui-demo-input{border-radius:.375rem;border-width:1px;padding:.375rem .625rem;width:100%}.popui-demo-label{margin-right:.5rem;display:inline-flex;align-items:center;gap:.5rem;white-space:nowrap;font-size:12px;line-height:16px}
|
|
1
|
+
*,: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-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(0,101,183,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(0,101,183,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.16 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Inter,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}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:CommitMono,ui-monospace,Menlo,Monaco,Consolas,Ubuntu Mono,Roboto Mono,DejaVu Sans Mono,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-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}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.popui-avatar{position:relative;display:flex;height:1.25rem;width:1.25rem;align-items:center;justify-content:center;border-radius:.25rem;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1));font-family:Inter,sans-serif;font-weight:600;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-avatar--large{height:2rem!important;width:2rem!important}.popui-avatar--initial{border-width:1px;--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1))}.popui-admin-page__breadcrumbs{display:none;align-items:center;justify-content:flex-start;gap:.25rem;font-size:16px;line-height:24px}@media (min-width:768px){.popui-admin-page__breadcrumbs{display:flex}}.popui-admin-page__breadcrumbs>li:after{content:url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.5 2L5.6466 10H4.5L6.3534 2H7.5Z" fill="%23D1D5DB"/></svg>');display:inline-block;margin-left:4px;vertical-align:middle}.popui-admin-page__breadcrumbs>li{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.popui-button{position:relative;display:flex;align-items:center;justify-content:center;gap:.25rem;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));padding:.25rem .5rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;font-weight:500;letter-spacing:-.07px}.popui-button:disabled{pointer-events:none;opacity:.3}.popui-button--transparent{border-width:0}.popui-button--danger{--tw-bg-opacity:1;background-color:rgb(201 45 69/var(--tw-bg-opacity,1))}.popui-button--danger,.popui-button--primary{border-width:0;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.popui-button--primary{background-color:var(--workspace-accent-color,#169958)}.popui-button--secondary{border-width:0;--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.popui-button--small{font-size:12px;line-height:16px}.popui-button:hover{box-shadow:inset 0 0 0 1000px rgba(0,0,0,.16)}.popui-button:active{box-shadow:inset 0 0 0 1000px rgba(0,0,0,.32)}.popui-checkbox-wrapper{display:flex;align-items:center;gap:.5rem}.popui-checkbox-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;color:#2563eb;background-color:#fff;border-color:#6b7280;--tw-shadow:0 0 #0000;border-radius:0}.popui-checkbox-input:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-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)}.popui-checkbox-input:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%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 0'/%3E%3C/svg%3E")}@media (forced-colors:active) {.popui-checkbox-input:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.popui-checkbox-input:checked:focus,.popui-checkbox-input:checked:hover{border-color:transparent;background-color:currentColor}.popui-checkbox-input: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");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media (forced-colors:active) {.popui-checkbox-input:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.popui-checkbox-input:indeterminate:focus,.popui-checkbox-input:indeterminate:hover{border-color:transparent;background-color:currentColor}.popui-checkbox-input{height:1rem;width:1rem;border-radius:.25rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));color:var(--workspace-accent-color,#169958)}.popui-checkbox-input:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-checkbox-input:hover+label{--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-checkbox-input:focus{color:var(--workspace-accent-color,#169958);--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);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.popui-checkbox-label{font-family:Inter,sans-serif;font-size:14px;line-height:20px;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-checkbox-label:hover{--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-switch__label{display:flex;align-items:center;gap:.5rem;font-size:14px;line-height:20px;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-switch__label:hover{--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-switch__wrapper{position:relative;display:inline-block;height:1.25rem;width:2rem}.popui-switch__wrapper input{height:0;width:0;opacity:0}.popui-switch__input{inset:0;cursor:pointer;border-radius:.375rem;background-color:rgb(209 213 219/var(--tw-bg-opacity,1))}.popui-switch__input,.popui-switch__input:before{position:absolute;--tw-bg-opacity:1;transition:.4s}.popui-switch__input:before{left:.125rem;bottom:.125rem;height:1rem;width:1rem;border-radius:.25rem;background-color:rgb(255 255 255/var(--tw-bg-opacity,1));content:""}input:checked+.popui-switch__input{background-color:var(--workspace-accent-color,#169958)}input:focus+.popui-switch__input{box-shadow:0 0 1px #169958}input:checked+.popui-switch__input:before{transform:translateX(12px)}.popui-desc-list>div>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-desc-list dd{font-size:14px;line-height:20px;font-weight:500;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-desc-list dd>.prose{font-weight:400}.popui-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow:0 0 #0000;border-radius:100%}.popui-radio:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-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)}.popui-radio:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}@media (forced-colors:active) {.popui-radio:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.popui-radio:checked:focus,.popui-radio:checked:hover{border-color:transparent;background-color:currentColor}.popui-radio{height:1.25rem;width:1.25rem;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));color:var(--workspace-accent-color,#169958)}.popui-radio:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-radio: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);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.popui-radio:hover+label{--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-radio-wrapper{display:block;cursor:pointer;border-radius:.5rem;border-width:1px;text-align:left;width:100%}.popui-radio-wrapper:has(:checked){border-color:var(--workspace-accent-color,#169958)}.popui-radio-wrapper:has(input:not(:checked)){--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1))}.popui-radio-wrapper:has(:checked){--tw-shadow:0px 0px 0px 2px color-mix(in lab,transparent 88%,var(--workspace-accent-color,#169958));--tw-shadow-colored:0px 0px 0px 2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.popui-radio-wrapper__inner{display:flex;align-items:flex-start;justify-content:space-between;padding:.5rem .5rem .5rem .75rem}.popui-radio-label__wrapper{display:flex;flex-direction:column}.popui-radio-label__wrapper>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.125rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.125rem*var(--tw-space-y-reverse))}.popui-radio-label{font-size:14px;line-height:20px;font-weight:500;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-radio-label:hover+input{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-radio-description{font-size:12px;line-height:16px;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-range__input{--c:#008852;width:100%;--_c:color-mix(in srgb,var(--c),#000 var(--p,0%));-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;cursor:pointer;overflow:hidden;margin-top:8px;margin-bottom:8px;border-radius:6px}.popui-range__input::-webkit-slider-thumb{height:12px;width:12px;background:var(--_c);border-radius:50%;border-image:linear-gradient(90deg,var(--_c) 50%,#f3f4f6 0) 0 1 /calc(50% - 2px) 100vw/0 100vw;-webkit-appearance:none;appearance:none;-webkit-transition:.3s;transition:.3s}.popui-range__input::-moz-range-thumb{height:12px;width:12px;background:var(--_c);border-radius:50%;border-image:linear-gradient(90deg,var(--_c) 50%,#f3f4f6 0) 0 1 /calc(50% - 2px) 100vw/0 100vw;-webkit-appearance:none;-moz-appearance:none;appearance:none;-moz-transition:.3s;transition:.3s}@supports not (color:color-mix(in srgb,red,red)){input{--_c:var(--c)}}.popui-range__input~datalist>option{color:var(--Neutral-Solid-40,#9ca3af);font-family:Inter;font-size:12px;font-style:normal;font-weight:500;line-height:16px;display:inline-block;width:calc((100% - 12px)/var(--list-length));text-align:center}.popui-range__input~datalist>option:first-child{width:calc((100% - 12px)/(var(--list-length)*2) + 6px);text-align:left}.popui-range__input~datalist>option:last-child{width:calc((100% - 12px)/(var(--list-length)*2) + 6px);text-align:right}.popui-image{height:100%;border-radius:.25rem;-o-object-fit:cover;object-fit:cover;width:100%}.popui-input-text-wrapper{display:flex;flex-direction:column}.popui-input-text-wrapper>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-input-text{border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));padding:.375rem .625rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;letter-spacing:-.07px;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));caret-color:var(--workspace-accent-color,#169958);outline:2px solid transparent;outline-offset:2px;width:100%}.popui-input-text::-moz-placeholder{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-input-text::placeholder{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-input-text: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);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.popui-input-text:hover:enabled{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-input-text:not(.popui-input--error):focus{border-color:var(--workspace-accent-color,#169958);--tw-shadow:0px 0px 0px 2px color-mix(in lab,transparent 88%,var(--workspace-accent-color,#169958));--tw-shadow-colored:0px 0px 0px 2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.popui-input-text--error{border-color:rgba(201,45,69,.4)!important;--tw-text-opacity:1!important;color:rgb(201 45 69/var(--tw-text-opacity,1))!important;caret-color:#c92d45!important;outline:2px solid transparent!important;outline-offset:2px!important}.popui-desc-list dt,.popui-label{font-family:Inter,sans-serif;font-size:12px;line-height:16px;font-weight:500;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-error{display:flex;align-items:center}.popui-error>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.25rem*var(--tw-space-x-reverse));margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))}.popui-error{background-size:16px 16px;background-position:0;background-repeat:no-repeat;padding-left:20px;font-size:12px;line-height:16px;color:rgb(201 45 69/var(--tw-text-opacity,1));background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0M5MkQ0NSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNOCAxNC41YTYuNSA2LjUgMCAxIDAgMC0xMyA2LjUgNi41IDAgMCAwIDAgMTNtMC01LjE1YS42LjYgMCAwIDEtLjYtLjZ2LTRhLjYuNiAwIDAgMSAxLjIgMHY0YS42LjYgMCAwIDEtLjYuNk04Ljc1IDExYS43NS43NSAwIDEgMS0xLjUgMCAuNzUuNzUgMCAwIDEgMS41IDAiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==")}.popui-error,.popui-paragraph{font-family:Inter,sans-serif;--tw-text-opacity:1}.popui-paragraph{font-size:14px;line-height:20px;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-title{font-size:1.5rem;line-height:2rem;font-weight:600;color:rgb(0 0 0/var(--tw-text-opacity,1))}.popui-subtitle,.popui-title{font-family:Inter,sans-serif;--tw-text-opacity:1}.popui-subtitle{font-size:14px;line-height:20px;font-weight:500;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-info{display:flex;align-items:center;gap:.25rem;font-family:Inter,sans-serif;font-size:12px;line-height:16px;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-info-text{flex:1 1 0%}mark,p>code,pre{display:inline-flex;border-radius:.25rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1));padding:.125rem .25rem;font-family:Inter,sans-serif;font-size:12px;line-height:16px;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}pre{overflow-x:auto}.popui-description{font-family:Inter,sans-serif;font-size:12px;line-height:16px;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-popover-wrapper{position:relative;display:inline-block}.popui-popover-list{position:absolute;left:0;top:1.75rem;z-index:10;display:none;width:100%;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1));padding:.25rem}[popover]:popover-open+.popui-popover-list{display:block}.popui-popover-list{width:100%}.popui-popover-list-item{border-radius:.25rem;padding:.375rem .5rem .375rem .375rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;font-weight:500;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));width:100%}.popui-popover-list-item>button{z-index:10;display:flex;cursor:pointer;align-items:center}.popui-popover-list-item>button>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.popui-popover-list-item>button{white-space:nowrap}.popui-popover-list-item:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.popui-popover-wrapper__right{justify-content:flex-end}.popui-popover-list__stretch{width:-moz-fit-content;width:fit-content}.popui-popover-list__right{left:unset!important;right:0}.popui-popover-list-item__text-left{display:flex;align-items:center;justify-content:flex-start;gap:.375rem}[popover]{inset:unset;width:auto;height:auto;padding:0;background:transparent;border:none;position:fixed;top:0;right:0;pointer-events:none;overlay:none}[popover]:popover-open+.popover-menu{display:block!important}.popui-select-wrapper{display:flex;flex-direction:column}.popui-select-wrapper>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-select{border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));padding:.375rem 2.25rem .375rem .5rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;letter-spacing:-.07px;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));outline:2px solid transparent;outline-offset:2px;width:100%}.popui-select:disabled{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1))}.popui-select{appearance:none;-webkit-appearance:none;-moz-appearance:none;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0ibm9uZSI+PHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiB4PSIyIiB5PSIyIiBmaWxsPSIjRjNGNEY2IiByeD0iNCIvPjxwYXRoIHN0cm9rZT0iIzAzMDcxMiIgc3Ryb2tlLXdpZHRoPSIxLjEiIGQ9Im02LjUgOC4yNSAzLjUgMy41IDMuNS0zLjUiLz48L3N2Zz4=");background-repeat:no-repeat;background-position:center right 6px}.popui-select:hover:enabled{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-select: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);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.popui-select:not(.popui-input--error):focus{border-color:var(--workspace-accent-color,#169958);--tw-shadow:0px 0px 0px 2px color-mix(in lab,transparent 88%,var(--workspace-accent-color,#169958));--tw-shadow-colored:0px 0px 0px 2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.popui-textarea-wrapper{display:flex;flex-direction:column}.popui-textarea-wrapper>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-textarea{border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));padding:.375rem .625rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;letter-spacing:-.07px;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));caret-color:var(--workspace-accent-color,#169958);outline:2px solid transparent;outline-offset:2px;width:100%}.popui-textarea::-moz-placeholder{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-textarea::placeholder{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.popui-textarea:disabled{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1))}.popui-textarea--monospaced{font-family:CommitMono,ui-monospace,Menlo,Monaco,Consolas,Ubuntu Mono,Roboto Mono,DejaVu Sans Mono,monospace!important}.popui-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);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.popui-textarea:hover:enabled{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.popui-textarea:not(.popui-input--error):focus{border-color:var(--workspace-accent-color,#169958);--tw-shadow:0px 0px 0px 2px color-mix(in lab,transparent 88%,var(--workspace-accent-color,#169958));--tw-shadow-colored:0px 0px 0px 2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}div[contenteditable=true] .tag{display:inline-flex;padding:2px 4px;justify-content:center;align-items:center;gap:4px;border-radius:4px;border:1px solid #e5e7eb;background:#f9fafb;pointer-events:none;color:#030712;font-family:Inter;font-size:12px;font-style:normal;font-weight:500;line-height:16px}.popui-desc-list,.popui-form{width:400px}.popui-desc-list>:not([hidden])~:not([hidden]),.popui-form>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.popui-form__list-item{display:flex;align-items:center}.popui-form__list-item>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.75rem*var(--tw-space-x-reverse));margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)))}.popui-form__list-item{font-size:14px;line-height:20px;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}.popui-form__list-item>:nth-child(2){min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:600;flex:1 1 0%}.popui-fieldset{position:relative}.popui-fieldset>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.popui-fieldset{border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));padding:2rem 1rem 1rem}.popui-fieldset-legend{position:absolute;top:1rem;font-size:12px;line-height:16px;font-weight:500;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}@keyframes pulse{50%{opacity:.5}}.popui-svg-loading{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.popui-container-config{display:flex;flex-direction:column;gap:.5rem;padding:.125rem}.popui-form-section>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-prose{color:var(--tw-prose-body);max-width:65ch}.popui-prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.popui-prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.popui-prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);text-decoration:underline;font-weight:500}.popui-prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.popui-prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em}.popui-prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.popui-prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.popui-prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.popui-prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.popui-prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.popui-prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.popui-prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.popui-prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.popui-prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.popui-prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em}.popui-prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{font-weight:400;color:var(--tw-prose-counters)}.popui-prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.popui-prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.popui-prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.popui-prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-style:italic;color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"\201C""\201D""\2018""\2019";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em}.popui-prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.popui-prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.popui-prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.popui-prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:900;color:inherit}.popui-prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.popui-prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:800;color:inherit}.popui-prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.popui-prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.popui-prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.popui-prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.popui-prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.popui-prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-top:2em;margin-bottom:2em}.popui-prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.popui-prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-family:inherit;color:var(--tw-prose-kbd);box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);font-size:.875em;border-radius:.3125rem;padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;padding-inline-start:.375em}.popui-prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-weight:600;font-size:.875em}.popui-prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}.popui-prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.popui-prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.popui-prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.popui-prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.popui-prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding-top:.8571429em;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-inline-start:1.1428571em}.popui-prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.popui-prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}.popui-prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.popui-prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){width:100%;table-layout:auto;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.popui-prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.popui-prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;vertical-align:bottom;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em}.popui-prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.popui-prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.popui-prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.popui-prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.popui-prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.popui-prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.popui-prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.popui-prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.popui-prose{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:17 24 39;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.popui-prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.popui-prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.popui-prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.popui-prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.popui-prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.popui-prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.popui-prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.popui-prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.popui-prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.popui-prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.popui-prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.popui-prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.popui-prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.popui-prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.popui-prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.popui-prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.popui-prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.popui-prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.popui-prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.5714286em;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em}.popui-prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.popui-prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.popui-prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.popui-prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.popui-prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.popui-prose{--tw-prose-body:#030712;font-size:14px;line-height:20px;margin-left:auto;margin-right:auto}.popui-desc-list dd>.popui-prose{font-weight:400}.popui-divider-wrapper{margin-top:.5rem;margin-bottom:.5rem}.popui-divider{width:100%;border-bottom:1px solid transparent;-o-border-image:repeating-linear-gradient(90deg,#e5e7eb,#e5e7eb 3px,transparent 0,transparent 7px);border-image:repeating-linear-gradient(90deg,#e5e7eb,#e5e7eb 3px,transparent 0,transparent 7px);border-image-slice:1}.popui-admin-page__content .popui-divider-wrapper{margin-top:0!important;margin-bottom:1.25rem!important}.popui-admin-page__content>div:first-of-type .popui-divider-wrapper{display:none}.popui-admin-page-title{font-family:Inter,sans-serif;font-size:14px;line-height:20px;font-weight:500;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1))}@media (min-width:768px){.popui-admin-page-title{font-size:16px;line-height:24px}}.popui-admin-page-title__wrapper{display:flex;align-items:center;gap:.25rem}.popui-admin-page-title__wrapper>button{margin-right:.5rem;display:block;padding:5px}@media (min-width:768px){.popui-admin-page-title__wrapper>button{display:none}}.popui-table{border-collapse:collapse;border-radius:.25rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1));font-family:Inter,sans-serif;font-size:14px;line-height:20px;flex:1 1 0%}.popui-table th{border-bottom-width:1px;--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1))}.popui-table td>div{display:flex;align-items:center;gap:.5rem}.popui-table td,.popui-table th{box-sizing:border-box;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1));padding:.5rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;font-weight:400;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1));text-align:left}.popui-table-cell__right{text-align:right!important}.popui-tags-wrapper{display:flex;flex-direction:column;gap:.25rem}.popui-tags{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem}.popui-tag{display:inline-flex;align-items:center;gap:.25rem;border-radius:.25rem;border-width:1px;border-color:rgba(2,144,98,.2);background-color:rgba(2,144,98,.1);padding:.25rem 5px .25rem .375rem;font-size:12px;line-height:16px;font-weight:500;--tw-numeric-figure:lining-nums;--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);--tw-text-opacity:1;color:rgb(2 144 98/var(--tw-text-opacity,1))}.popui-tag-button{color:rgba(2,144,98,.3)}.popui-tag-add-button{margin-top:.125rem}.popui-tag-add-input{display:flex;align-items:flex-start;gap:.5rem;width:100%}.popui-upload_file{display:flex;height:3rem;align-items:center;gap:.5rem;border-radius:.5rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));padding:.25rem .75rem .25rem .25rem}.popui-upload_file-image{display:flex;width:2.5rem;align-items:center;justify-content:center;border-radius:.375rem}.popui-upload_file-text{font-size:14px;line-height:20px;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));flex:1 1 0%}.popui-upload_file-placeholder{display:flex;height:2.5rem;width:2.5rem;align-items:center;justify-content:center;border-radius:.375rem;border-width:1px;border-style:dashed;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1));background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzAzMDcxMiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMy4yNDkgMy4yNDljLS4xNy4xNy0uMy40NjUtLjMuOTgxdjcuNTZjLjAwMS40OTguMTIuNzkuMjgxLjk2M2w1LjE2Ni01LjE3NmEyLjI4IDIuMjggMCAwIDEgMy4yMjggMGwxLjQ0NiAxLjQ0NlY0LjIzYzAtLjUxNi0uMTI5LS44MTEtLjI5OS0uOTgxcy0uNDY1LS4yOTktLjk4MS0uMjk5SDQuMjNjLS41MTYgMC0uODEyLjEyOS0uOTgyLjI5OW04LjU0MSA5LjgyMUg0LjMyNmw0Ljc3OC00Ljc4N2ExLjI4IDEuMjggMCAwIDEgMS44MTIgMGwyLjE1NCAyLjE1NHYxLjM1M2MwIC41MTctLjEyOS44MTItLjI5OS45ODJzLS40NjUuMjk4LS45ODEuMjk4bTIuMjgtMS4yOFY0LjIzYzAtLjY3LS4xNjgtMS4yNjUtLjU5MS0xLjY4OC0uNDI0LS40MjQtMS4wMTktLjU5Mi0xLjY4OS0uNTkySDQuMjNjLS42NyAwLTEuMjY1LjE2OC0xLjY4OS41OTItLjQyMy40MjMtLjU5MSAxLjAxOC0uNTkxIDEuNjg4djcuNTZjMCAuNjcuMTY4IDEuMjY1LjU5MSAxLjY4OS40MjQuNDIzIDEuMDE5LjU5MSAxLjY4OS41OTFoNy41NmMuNjcgMCAxLjI2NS0uMTY4IDEuNjg5LS41OTEuNDIzLS40MjQuNTkxLTEuMDE4LjU5MS0xLjY4OU00Ljc3MiA1LjY2N2ExLjExNSAxLjExNSAwIDEgMSAxLjU3NiAxLjU3NyAxLjExNSAxLjExNSAwIDAgMS0xLjU3Ni0xLjU3NyIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9zdmc+");background-repeat:no-repeat;background-position:50%}[x-cloak]{display:none!important}.flex-1{flex:1 1 0%}.text-left{text-align:left}.max-w-md{max-width:28rem}.uppercase{text-transform:uppercase}.w-full{width:100%}.text-danger{--tw-text-opacity:1;color:rgb(201 45 69/var(--tw-text-opacity,1))}.popui-admin-wrapper{height:100vh;padding:.25rem}.popui-admin-sidebar,.popui-admin-wrapper{display:flex;--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1))}.popui-admin-sidebar{visibility:hidden;height:100%;width:0;flex-direction:column;align-items:center;gap:1rem;transition-property:width;transition-duration:.3s;transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:768px){.popui-admin-sidebar{visibility:visible;width:240px}}.popui-admin-sidebar.menu--active{visibility:visible;width:240px}.popui-admin-sidebar__mobile{display:block}@media (min-width:768px){.popui-admin-sidebar__mobile{display:none}}.popui-admin-sidebar__mobile>div{position:absolute;top:50px;left:26px;z-index:50;border-radius:.25rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1));--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1));padding:.5rem;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.popui-admin-page{overflow-y:auto;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1));flex:1 1 0%}.popui-admin-page.menu--active>*{pointer-events:none;opacity:.3}.popui-admin-sidebar__header{gap:.625rem;white-space:nowrap;border-bottom-width:1px;--tw-border-opacity:1;border-color:rgb(249 250 251/var(--tw-border-opacity,1));padding:18px .75rem 18px 1rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;font-weight:600;--tw-text-opacity:1;color:rgb(17 44 37/var(--tw-text-opacity,1));width:100%}.popui-admin-page__header-actions,.popui-admin-sidebar__header{display:flex;align-items:center}.popui-admin-page__header-actions{gap:.5rem}.popui-admin-sidebar__content{display:flex;flex-direction:column;align-items:center;gap:1.25rem;padding:1rem;width:100%}.popui-admin-sidebar__section{display:flex;flex-direction:column;align-items:flex-start;gap:.5rem;width:100%}.popui-admin-sidebar__section>p{font-family:Inter,sans-serif;font-size:12px;line-height:16px;font-weight:500;--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.popui-admin-sidebar__section>ul{display:flex;flex-direction:column;align-items:flex-start;gap:.5rem;width:100%}.popui-admin-sidebar__section>ul>li{width:100%}.popui-admin-sidebar__section a{display:flex;align-items:center;gap:.25rem;border-radius:.375rem;border-width:1px;border-color:transparent;padding:5px .5rem 5px .375rem;font-family:Inter,sans-serif;font-size:14px;line-height:20px;font-weight:500;--tw-text-opacity:1;color:rgb(3 7 18/var(--tw-text-opacity,1));width:100%}.popui-admin-sidebar__item-active,.popui-admin-sidebar__section a:hover{border-color:rgba(3,7,18,.1);background-color:rgba(3,7,18,.05);--tw-backdrop-blur:blur(20px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.popui-admin-page__header{display:flex;align-items:center;justify-content:space-between;border-bottom-width:1px;--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1));padding:15px 1rem 15px 1.5rem}.popui-admin-page__content{display:flex;flex-direction:column;align-items:center;gap:1.5rem;padding:1.5rem}.popui-admin-page__section{display:flex;flex-direction:column;align-items:flex-start;gap:1.5rem;width:100%}@media (min-width:1024px){.popui-admin-page__section{flex-direction:row}}.popui-admin-page__section-title{width:340px;gap:.125rem}.popui-admin-page__section-content,.popui-admin-page__section-title{display:flex;flex-direction:column;align-items:flex-start}.popui-admin-page__section-content>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-demo-wrapper{margin-bottom:1rem}.popui-demo-wrapper>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.popui-demo-wrapper{border-width:1px;--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity,1));padding:1rem}.popui-demo-input{border-radius:.375rem;border-width:1px;padding:.375rem .625rem;width:100%}.popui-demo-label{margin-right:.5rem;display:inline-flex;align-items:center;gap:.5rem;white-space:nowrap;font-size:12px;line-height:16px}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@invopop/popui",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.66",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite dev",
|
|
7
7
|
"build": "vite build && npm run package",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"dependencies": {
|
|
84
84
|
"@beyonk/svelte-datepicker": "^13.0.3",
|
|
85
85
|
"@floating-ui/core": "^1.5.1",
|
|
86
|
-
"@invopop/ui-icons": "0.0.
|
|
86
|
+
"@invopop/ui-icons": "0.0.55",
|
|
87
87
|
"@steeze-ui/heroicons": "^2.2.3",
|
|
88
88
|
"@steeze-ui/svelte-icon": "^1.5.0",
|
|
89
89
|
"@twind/core": "^1.1.3",
|