@uoguelph/react-components 1.0.0-rc.9 → 1.1.0
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/accordion-button.js +1 -1
- package/dist/alert-footer.js +1 -1
- package/dist/alert-message.js +1 -1
- package/dist/alert-title.js +4 -4
- package/dist/blockquote-author.d.ts +2 -0
- package/dist/blockquote-author.js +30 -0
- package/dist/blockquote-content.d.ts +2 -0
- package/dist/blockquote-content.js +54 -0
- package/dist/blockquote-context.d.ts +2 -0
- package/dist/blockquote-context.js +5 -0
- package/dist/blockquote.js +11 -40
- package/dist/button.js +8 -77
- package/dist/card-content.js +1 -1
- package/dist/card-footer.js +1 -1
- package/dist/carousel.js +18 -18
- package/dist/checkbox.js +24 -36
- package/dist/components/alert/alert-title.d.ts +1 -1
- package/dist/components/blockquote/blockquote-author.d.ts +7 -0
- package/dist/components/blockquote/blockquote-content.d.ts +10 -0
- package/dist/components/blockquote/blockquote-context.d.ts +5 -0
- package/dist/components/blockquote/blockquote.d.ts +3 -1
- package/dist/components/button/button.d.ts +2 -2
- package/dist/components/checkbox/checkbox.d.ts +2 -2
- package/dist/components/container/container.d.ts +6 -10
- package/dist/components/info/info.d.ts +1 -1
- package/dist/components/media-caption/media-caption.d.ts +1 -1
- package/dist/components/statistics/statistics-context.d.ts +6 -0
- package/dist/components/statistics/statistics-item-image.d.ts +31 -0
- package/dist/components/statistics/statistics-item-represents.d.ts +9 -0
- package/dist/components/statistics/statistics-item-value.d.ts +9 -0
- package/dist/components/statistics/statistics-item.d.ts +9 -0
- package/dist/components/statistics/statistics.d.ts +13 -0
- package/dist/components/story/story-background-image.d.ts +28 -0
- package/dist/components/story/story-background.d.ts +6 -0
- package/dist/components/story/story-body.d.ts +6 -0
- package/dist/components/story/story-footer.d.ts +6 -0
- package/dist/components/story/story-foreground-content.d.ts +6 -0
- package/dist/components/story/story-foreground-image.d.ts +28 -0
- package/dist/components/story/story-foreground.d.ts +6 -0
- package/dist/components/story/story.d.ts +13 -0
- package/dist/contact.js +1 -1
- package/dist/container.js +14 -20
- package/dist/divider.js +2 -2
- package/dist/embedded-video-modal-button.js +6 -6
- package/dist/embedded-video.js +13 -13
- package/dist/index.css +1 -1
- package/dist/info.js +2 -2
- package/dist/media-caption.js +4 -4
- package/dist/modal.js +1 -1
- package/dist/navigation-link.js +1 -1
- package/dist/statistics-context.d.ts +2 -0
- package/dist/statistics-context.js +5 -0
- package/dist/statistics-item-image.d.ts +2 -0
- package/dist/statistics-item-image.js +19 -0
- package/dist/statistics-item-represents.d.ts +2 -0
- package/dist/statistics-item-represents.js +13 -0
- package/dist/statistics-item-value.d.ts +2 -0
- package/dist/statistics-item-value.js +13 -0
- package/dist/statistics-item.d.ts +2 -0
- package/dist/statistics-item.js +61 -0
- package/dist/statistics.d.ts +2 -0
- package/dist/statistics.js +93 -0
- package/dist/story-background-image.d.ts +2 -0
- package/dist/story-background-image.js +18 -0
- package/dist/story-background.d.ts +2 -0
- package/dist/story-background.js +9 -0
- package/dist/story-body.d.ts +2 -0
- package/dist/story-body.js +12 -0
- package/dist/story-footer.d.ts +2 -0
- package/dist/story-footer.js +16 -0
- package/dist/story-foreground-content.d.ts +2 -0
- package/dist/story-foreground-content.js +12 -0
- package/dist/story-foreground-image.d.ts +2 -0
- package/dist/story-foreground-image.js +24 -0
- package/dist/story-foreground.d.ts +2 -0
- package/dist/story-foreground.js +12 -0
- package/dist/story.d.ts +2 -0
- package/dist/story.js +23 -0
- package/dist/text-input.js +1 -1
- package/dist/utils/use-resize-observer.d.ts +1 -0
- package/dist/utils/use-window-size.d.ts +4 -0
- package/package.json +3 -3
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
import { ComponentPropsWithoutRef, ElementType, PropsWithChildren } from 'react';
|
|
2
2
|
declare const defaultElement = "div";
|
|
3
|
-
type
|
|
4
|
-
as?: T;
|
|
5
|
-
};
|
|
6
|
-
type ContainerPropsBase = {
|
|
3
|
+
export type ContainerProps<T extends ElementType = typeof defaultElement> = PropsWithChildren<{
|
|
7
4
|
/**
|
|
8
|
-
*
|
|
5
|
+
* The element to render as.
|
|
9
6
|
*
|
|
10
|
-
* @default
|
|
7
|
+
* @default 'div'
|
|
11
8
|
*/
|
|
12
|
-
|
|
9
|
+
as?: T;
|
|
13
10
|
/** Additional classes to apply to the container */
|
|
14
11
|
className?: string;
|
|
15
|
-
}
|
|
16
|
-
export type ContainerProps<T extends ElementType = typeof defaultElement> = PropsWithChildren<ContainerPropsAs<T> & ComponentPropsWithoutRef<T> & ContainerPropsBase>;
|
|
12
|
+
} & ComponentPropsWithoutRef<T>>;
|
|
17
13
|
/** The Container component is a layout component that wraps content and applies padding and max-width styles. */
|
|
18
|
-
export declare function Container<T extends ElementType = typeof defaultElement>({ as,
|
|
14
|
+
export declare function Container<T extends ElementType = typeof defaultElement>({ as, children, className, ...rest }: ContainerProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
19
15
|
export declare namespace Container {
|
|
20
16
|
var displayName: string;
|
|
21
17
|
}
|
|
@@ -5,7 +5,7 @@ export type InfoProps = PropsWithChildren<{
|
|
|
5
5
|
*
|
|
6
6
|
* @default 'red'
|
|
7
7
|
*/
|
|
8
|
-
color?: 'red' | 'yellow' | 'blue' | 'green' | 'light
|
|
8
|
+
color?: 'red' | 'yellow' | 'blue' | 'green' | 'grey-light' | 'grey-dark' | 'black' | 'white';
|
|
9
9
|
}>;
|
|
10
10
|
export declare function Info({ children, color }: InfoProps): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export declare namespace Info {
|
|
@@ -13,7 +13,7 @@ type MediaCaptionPropsAs<T extends MediaCaptionElementType> = {
|
|
|
13
13
|
type MediaCaptionPropsBase = {
|
|
14
14
|
size?: 'small' | 'medium' | 'large';
|
|
15
15
|
position?: 'left' | 'right' | 'above';
|
|
16
|
-
background?: 'none' | 'light
|
|
16
|
+
background?: 'none' | 'grey-light' | 'grey-dark';
|
|
17
17
|
className?: string;
|
|
18
18
|
mediaClassName?: string;
|
|
19
19
|
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ComponentPropsWithoutRef, ElementType } from 'react';
|
|
2
|
+
declare const defaultElement = "img";
|
|
3
|
+
type StatisticsItemImageElementType = ElementType<{
|
|
4
|
+
src: string;
|
|
5
|
+
alt: string;
|
|
6
|
+
width?: string;
|
|
7
|
+
height?: string;
|
|
8
|
+
}, 'img'>;
|
|
9
|
+
export type StatisticsItemImageProps<T extends StatisticsItemImageElementType = typeof defaultElement> = {
|
|
10
|
+
/**
|
|
11
|
+
* The element to render the image as
|
|
12
|
+
*
|
|
13
|
+
* @default 'img'
|
|
14
|
+
*/
|
|
15
|
+
as?: T;
|
|
16
|
+
/** The source URL of the image */
|
|
17
|
+
src: string;
|
|
18
|
+
/** An accessible description of the image, used primarily for screen readers */
|
|
19
|
+
alt: string;
|
|
20
|
+
/** The width of the image in pixels */
|
|
21
|
+
width?: string;
|
|
22
|
+
/** The height of the image in pixels */
|
|
23
|
+
height?: string;
|
|
24
|
+
/** Additional classes to apply to the image */
|
|
25
|
+
className?: string;
|
|
26
|
+
} & ComponentPropsWithoutRef<T>;
|
|
27
|
+
export declare function StatisticsItemImage<T extends StatisticsItemImageElementType = typeof defaultElement>({ as, src, alt, width, height, className, ...rest }: StatisticsItemImageProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
export declare namespace StatisticsItemImage {
|
|
29
|
+
var displayName: string;
|
|
30
|
+
}
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type StatisticsItemRepresentsProps = PropsWithChildren<{
|
|
3
|
+
/** Additional classes to apply to the item. */
|
|
4
|
+
className?: string;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function StatisticsItemRepresents({ children, className }: StatisticsItemRepresentsProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare namespace StatisticsItemRepresents {
|
|
8
|
+
var displayName: string;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type StatisticsItemValueProps = PropsWithChildren<{
|
|
3
|
+
/** Additional classes to apply to the item. */
|
|
4
|
+
className?: string;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function StatisticsItemValue({ children, className }: StatisticsItemValueProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare namespace StatisticsItemValue {
|
|
8
|
+
var displayName: string;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type StatisticsItemProps = PropsWithChildren<{
|
|
3
|
+
/** Additional classes to apply to the item. */
|
|
4
|
+
className?: string;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function StatisticsItem({ children, className }: StatisticsItemProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare namespace StatisticsItem {
|
|
8
|
+
var displayName: string;
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type StatisticsProps = PropsWithChildren<{
|
|
3
|
+
variant: 'solid-colors-full' | 'solid-colors-no-gap' | 'solid-colors' | 'light-grey' | 'left-border';
|
|
4
|
+
}>;
|
|
5
|
+
/** The Statistic component is used to display a list of statistics in a grid layout. */
|
|
6
|
+
export declare function Statistics({ children, variant }: StatisticsProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare namespace Statistics {
|
|
8
|
+
var displayName: string;
|
|
9
|
+
}
|
|
10
|
+
export { StatisticsItem } from './statistics-item';
|
|
11
|
+
export { StatisticsItemImage } from './statistics-item-image';
|
|
12
|
+
export { StatisticsItemRepresents } from './statistics-item-represents';
|
|
13
|
+
export { StatisticsItemValue } from './statistics-item-value';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ComponentPropsWithoutRef, ElementType } from 'react';
|
|
2
|
+
declare const defaultElement = "img";
|
|
3
|
+
type StoryBackgroundImageElementType = ElementType<{
|
|
4
|
+
src: string;
|
|
5
|
+
alt: string;
|
|
6
|
+
width?: string;
|
|
7
|
+
height?: string;
|
|
8
|
+
}, 'img'>;
|
|
9
|
+
export type StoryBackgroundImageProps<T extends StoryBackgroundImageElementType = typeof defaultElement> = {
|
|
10
|
+
/**
|
|
11
|
+
* The element to render the image as
|
|
12
|
+
*
|
|
13
|
+
* @default 'img'
|
|
14
|
+
*/
|
|
15
|
+
as?: T;
|
|
16
|
+
/** The source URL of the image */
|
|
17
|
+
src: string;
|
|
18
|
+
/** An accessible description of the image, used primarily for screen readers */
|
|
19
|
+
alt: string;
|
|
20
|
+
/** The width of the image in pixels */
|
|
21
|
+
width?: string;
|
|
22
|
+
/** The height of the image in pixels */
|
|
23
|
+
height?: string;
|
|
24
|
+
/** Additional classes to apply to the component. */
|
|
25
|
+
className?: string;
|
|
26
|
+
} & ComponentPropsWithoutRef<T>;
|
|
27
|
+
export declare function StoryBackgroundImage<T extends StoryBackgroundImageElementType = typeof defaultElement>({ as, src, alt, width, height, className, ...rest }: StoryBackgroundImageProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type StoryBackgroundProps = PropsWithChildren<{
|
|
3
|
+
/** Additional classes to apply to the component. */
|
|
4
|
+
className?: string;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function StoryBackground({ children, className }: StoryBackgroundProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type StoryBodyProps = PropsWithChildren<{
|
|
3
|
+
/** Additional classes to apply to the component. */
|
|
4
|
+
className?: string;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function StoryBody({ children, className }: StoryBodyProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type StoryFooterProps = PropsWithChildren<{
|
|
3
|
+
/** Additional classes to apply to the component. */
|
|
4
|
+
className?: string;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function StoryFooter({ children, className }: StoryFooterProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type StoryForegroundContentProps = PropsWithChildren<{
|
|
3
|
+
/** Additional classes to apply to the component. */
|
|
4
|
+
className?: string;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function StoryForegroundContent({ children, className }: StoryForegroundContentProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ComponentPropsWithoutRef, ElementType } from 'react';
|
|
2
|
+
declare const defaultElement = "img";
|
|
3
|
+
type StoryForegroundImageElementType = ElementType<{
|
|
4
|
+
src: string;
|
|
5
|
+
alt: string;
|
|
6
|
+
width?: string;
|
|
7
|
+
height?: string;
|
|
8
|
+
}, 'img'>;
|
|
9
|
+
export type StoryForegroundImageProps<T extends StoryForegroundImageElementType = typeof defaultElement> = {
|
|
10
|
+
/**
|
|
11
|
+
* The element to render the image as
|
|
12
|
+
*
|
|
13
|
+
* @default 'img'
|
|
14
|
+
*/
|
|
15
|
+
as?: T;
|
|
16
|
+
/** The source URL of the image */
|
|
17
|
+
src: string;
|
|
18
|
+
/** An accessible description of the image, used primarily for screen readers */
|
|
19
|
+
alt: string;
|
|
20
|
+
/** The width of the image in pixels */
|
|
21
|
+
width?: string;
|
|
22
|
+
/** The height of the image in pixels */
|
|
23
|
+
height?: string;
|
|
24
|
+
/** Additional classes to apply to the component. */
|
|
25
|
+
className?: string;
|
|
26
|
+
} & ComponentPropsWithoutRef<T>;
|
|
27
|
+
export declare function StoryForegroundImage<T extends StoryForegroundImageElementType = typeof defaultElement>({ as, src, alt, width, height, className, ...rest }: StoryForegroundImageProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type StoryForegroundProps = PropsWithChildren<{
|
|
3
|
+
/** Additional classes to apply to the component. */
|
|
4
|
+
className?: string;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function StoryForeground({ children, className }: StoryForegroundProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type StoryProps = PropsWithChildren<{
|
|
3
|
+
/** Additional classes to apply to the component. */
|
|
4
|
+
className?: string;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function Story({ children, className }: StoryProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export { StoryBackground } from './story-background';
|
|
8
|
+
export { StoryBackgroundImage } from './story-background-image';
|
|
9
|
+
export { StoryBody } from './story-body';
|
|
10
|
+
export { StoryFooter } from './story-footer';
|
|
11
|
+
export { StoryForeground } from './story-foreground';
|
|
12
|
+
export { StoryForegroundContent } from './story-foreground-content';
|
|
13
|
+
export { StoryForegroundImage } from './story-foreground-image';
|
package/dist/contact.js
CHANGED
|
@@ -5,7 +5,7 @@ import { ContactName as i } from "./contact-name.js";
|
|
|
5
5
|
import { ContactPhone as u } from "./contact-phone.js";
|
|
6
6
|
import { ContactTitle as s } from "./contact-title.js";
|
|
7
7
|
function c({ children: o, className: t }) {
|
|
8
|
-
const e = a("uog:bg-light-
|
|
8
|
+
const e = a("uog:bg-grey-light-bg uog:mb-2 uog:flex uog:flex-col uog:p-4 uog:text-body-copy", t);
|
|
9
9
|
return /* @__PURE__ */ r("div", { className: e, children: o });
|
|
10
10
|
}
|
|
11
11
|
c.displayName = "Contact";
|
package/dist/container.js
CHANGED
|
@@ -1,25 +1,19 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { twMerge as
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
centered: o = !1,
|
|
8
|
-
children: e,
|
|
1
|
+
import { jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { twMerge as s } from "tailwind-merge";
|
|
3
|
+
const u = "div";
|
|
4
|
+
function i({
|
|
5
|
+
as: o,
|
|
6
|
+
children: t,
|
|
9
7
|
className: n,
|
|
10
|
-
...
|
|
8
|
+
...e
|
|
11
9
|
}) {
|
|
12
|
-
const a =
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
});
|
|
20
|
-
return /* @__PURE__ */ i(a, { ...r, className: u(m({ centered: o }), n), children: e });
|
|
10
|
+
const a = o ?? u, m = s(
|
|
11
|
+
"uog:max-w-[--tw-max-content-width] uog:container uog:px-4 uog:pt-2 uog:pb-4 uog:mx-auto",
|
|
12
|
+
n
|
|
13
|
+
);
|
|
14
|
+
return /* @__PURE__ */ r(a, { ...e, className: m, children: t });
|
|
21
15
|
}
|
|
22
|
-
|
|
16
|
+
i.displayName = "Container";
|
|
23
17
|
export {
|
|
24
|
-
|
|
18
|
+
i as Container
|
|
25
19
|
};
|
package/dist/divider.js
CHANGED
|
@@ -18,9 +18,9 @@ const i = () => {
|
|
|
18
18
|
}), { base: s, red: r, yellow: a, black: c, hr: d } = e();
|
|
19
19
|
return /* @__PURE__ */ l(g, { children: [
|
|
20
20
|
/* @__PURE__ */ l("div", { className: s(), children: [
|
|
21
|
-
/* @__PURE__ */ o("div", { className: c() }),
|
|
22
21
|
/* @__PURE__ */ o("div", { className: r() }),
|
|
23
|
-
/* @__PURE__ */ o("div", { className: a() })
|
|
22
|
+
/* @__PURE__ */ o("div", { className: a() }),
|
|
23
|
+
/* @__PURE__ */ o("div", { className: c() })
|
|
24
24
|
] }),
|
|
25
25
|
/* @__PURE__ */ o("hr", { className: d() })
|
|
26
26
|
] });
|
|
@@ -4,12 +4,12 @@ import { FontAwesomeIcon as s } from "@fortawesome/react-fontawesome";
|
|
|
4
4
|
import { useContext as m } from "react";
|
|
5
5
|
import { twMerge as l } from "tailwind-merge";
|
|
6
6
|
import { Button as a } from "./button.js";
|
|
7
|
-
import { EmbeddedVideoContext as
|
|
8
|
-
function
|
|
9
|
-
const o = m(
|
|
7
|
+
import { EmbeddedVideoContext as f } from "./embedded-video-context.js";
|
|
8
|
+
function g({ type: e, children: u, className: r }) {
|
|
9
|
+
const o = m(f);
|
|
10
10
|
if (e === "play-button") {
|
|
11
11
|
const n = l(
|
|
12
|
-
"uog:flex uog:aspect-square uog:w-24 uog:items-center uog:justify-center uog:rounded-full uog:bg-
|
|
12
|
+
"uog:flex uog:aspect-square uog:w-24 uog:items-center uog:justify-center uog:rounded-full uog:bg-red uog:text-4xl uog:text-white uog:transition-colors uog:hover:bg-red-focus uog:focus:bg-red-focus",
|
|
13
13
|
r
|
|
14
14
|
);
|
|
15
15
|
return /* @__PURE__ */ d("button", { type: "button", className: n, onClick: () => o == null ? void 0 : o.setModalOpen(!0), children: [
|
|
@@ -19,7 +19,7 @@ function p({ type: e, children: u, className: r }) {
|
|
|
19
19
|
}
|
|
20
20
|
return /* @__PURE__ */ t(a, { type: "button", color: e, className: r, onClick: () => o == null ? void 0 : o.setModalOpen(!0), children: u });
|
|
21
21
|
}
|
|
22
|
-
|
|
22
|
+
g.displayName = "EmbeddedVideoModalButton";
|
|
23
23
|
export {
|
|
24
|
-
|
|
24
|
+
g as EmbeddedVideoModalButton
|
|
25
25
|
};
|
package/dist/embedded-video.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as c, Fragment as p, jsx as n } from "react/jsx-runtime";
|
|
2
2
|
import { useState as w } from "react";
|
|
3
3
|
import { twMerge as f } from "tailwind-merge";
|
|
4
4
|
import { tv as g } from "tailwind-variants";
|
|
@@ -43,15 +43,15 @@ function N(l) {
|
|
|
43
43
|
}
|
|
44
44
|
return { type: e, id: t };
|
|
45
45
|
}
|
|
46
|
-
function
|
|
46
|
+
function m({ src: l, title: e, transcript: t, className: o }) {
|
|
47
47
|
const { id: d, type: i } = N(l), r = g({
|
|
48
48
|
slots: {
|
|
49
49
|
base: f("uog:flex uog:flex-col", o),
|
|
50
50
|
iframe: "uog:w-full uog:h-full uog:aspect-video",
|
|
51
51
|
transcriptButton: "uog:p-3 uog:w-full"
|
|
52
52
|
}
|
|
53
|
-
}), { base:
|
|
54
|
-
return /* @__PURE__ */
|
|
53
|
+
}), { base: a, iframe: u, transcriptButton: s } = r();
|
|
54
|
+
return /* @__PURE__ */ c("div", { className: a(), children: [
|
|
55
55
|
i === "youtube" && d && /* @__PURE__ */ n(
|
|
56
56
|
"iframe",
|
|
57
57
|
{
|
|
@@ -70,36 +70,36 @@ function c({ src: l, title: e, transcript: t, className: o }) {
|
|
|
70
70
|
title: e ?? "Vimeo Embedded Video Player"
|
|
71
71
|
}
|
|
72
72
|
),
|
|
73
|
-
t && /* @__PURE__ */ n(h, { as: "a", color: "
|
|
73
|
+
t && /* @__PURE__ */ n(h, { as: "a", color: "black", className: s(), href: t, download: !0, children: "Download Transcript" })
|
|
74
74
|
] });
|
|
75
75
|
}
|
|
76
76
|
function E({ src: l, title: e, transcript: t, className: o, children: d }) {
|
|
77
77
|
const [i, r] = w(!1);
|
|
78
78
|
if (d) {
|
|
79
|
-
const
|
|
79
|
+
const a = g({
|
|
80
80
|
slots: {
|
|
81
|
-
container: "uog:bg-dark-
|
|
81
|
+
container: "uog:bg-grey-dark-bg uog:flex uog:w-screen uog:max-w-6xl uog:lg:max-w-7xl uog:flex-col uog:gap-4 uog:p-4 uog:text-grey-dark-contrast",
|
|
82
82
|
video: "uog:w-full",
|
|
83
83
|
title: "uog:text-xl uog:font-bold"
|
|
84
84
|
}
|
|
85
|
-
}), { container: u, video:
|
|
86
|
-
return /* @__PURE__ */
|
|
85
|
+
}), { container: u, video: s, title: v } = a();
|
|
86
|
+
return /* @__PURE__ */ c(p, { children: [
|
|
87
87
|
/* @__PURE__ */ n(y.Provider, { value: { modalOpen: i, setModalOpen: r }, children: d }),
|
|
88
|
-
/* @__PURE__ */ n(x, { open: i, onClose: () => r(!1), children: /* @__PURE__ */
|
|
88
|
+
/* @__PURE__ */ n(x, { open: i, onClose: () => r(!1), children: /* @__PURE__ */ c("div", { className: `uofg-embedded-video-container ${u()}`, children: [
|
|
89
89
|
/* @__PURE__ */ n("span", { className: `uofg-embedded-video-title ${v()}`, children: e }),
|
|
90
90
|
/* @__PURE__ */ n(
|
|
91
|
-
|
|
91
|
+
m,
|
|
92
92
|
{
|
|
93
93
|
src: l,
|
|
94
94
|
title: e,
|
|
95
95
|
transcript: t,
|
|
96
|
-
className: `uofg-embedded-video ${f(
|
|
96
|
+
className: `uofg-embedded-video ${f(s(), o)}`
|
|
97
97
|
}
|
|
98
98
|
)
|
|
99
99
|
] }) })
|
|
100
100
|
] });
|
|
101
101
|
}
|
|
102
|
-
return /* @__PURE__ */ n(
|
|
102
|
+
return /* @__PURE__ */ n(m, { src: l, title: e, transcript: t, className: `uofg-embedded-video ${o}` });
|
|
103
103
|
}
|
|
104
104
|
E.displayName = "EmbeddedVideo";
|
|
105
105
|
export {
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tailwindcss v4.0.11 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--uog-font-serif:"Bitter",ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;--uog-color-black:#000;--uog-color-white:#fff;--uog-spacing:.4rem;--uog-container-6xl:72rem;--uog-container-7xl:80rem;--uog-text-sm:1.4rem;--uog-text-sm--line-height:1.4;--uog-text-base:1.6rem;--uog-text-base--line-height:1.4;--uog-text-lg:1.8rem;--uog-text-lg--line-height:1.4;--uog-text-xl:2rem;--uog-text-xl--line-height:1.4;--uog-text-2xl:2.5rem;--uog-text-2xl--line-height:1.4;--uog-text-3xl:3rem;--uog-text-3xl--line-height:1.4;--uog-text-4xl:4rem;--uog-text-4xl--line-height:1.4;--uog-text-6xl:6rem;--uog-text-6xl--line-height:1.6;--uog-font-weight-light:300;--uog-font-weight-normal:400;--uog-font-weight-medium:500;--uog-font-weight-bold:700;--uog-radius-sm:.25rem;--uog-radius-md:.375rem;--uog-ease-out:cubic-bezier(0,0,.2,1);--uog-ease-in-out:cubic-bezier(.4,0,.2,1);--uog-animate-spin:spin 1s linear infinite;--uog-blur-sm:8px;--uog-aspect-video:16/9;--uog-default-transition-duration:.15s;--uog-default-transition-timing-function:cubic-bezier(.4,0,.2,1);--uog-color-white-focus:#ddd;--uog-color-white-contrast:#000;--uog-color-black-focus:#444;--uog-color-black-contrast:#fff;--uog-color-red:#e51937;--uog-color-red-focus:#b3142c;--uog-color-red-contrast:#fff;--uog-color-yellow:#ffc429;--uog-color-yellow-focus:#ffe299;--uog-color-yellow-contrast:#000;--uog-color-blue:#187bb4;--uog-color-blue-focus:#135f8b;--uog-color-blue-on-light:#1775ab;--uog-color-blue-contrast:#fff;--uog-color-green:#318738;--uog-color-green-focus:#27682c;--uog-color-green-contrast:#fff;--uog-color-light-grey:#d8d8d8;--uog-color-light-grey-focus:#bfbfbf;--uog-color-light-grey-contrast:#000;--uog-color-light-grey-bg:#f5f5f5;--uog-color-dark-grey:#747676;--uog-color-dark-grey-focus:#63625f;--uog-color-dark-grey-contrast:#fff;--uog-color-dark-grey-bg:#222;--uog-color-body-copy:#555;--uog-color-body-copy-on-dark:#ccc;--uog-color-body-copy-bold:#333;--uog-color-body-copy-link:#187bb4;--uog-color-body-copy-link-on-light:#166ea2;--uog-color-body-copy-link-on-dark:#1d93d7;--uog-animate-fade-in:fade .25s ease-in-out 1 normal forwards}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}body{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;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root{--tw-max-content-width:137rem;font-size:62.5%}body{margin:0;padding:0;font-size:1.6rem}@keyframes fade{0%{opacity:0}to{opacity:1}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}}@layer components;@layer utilities{.uog\:pointer-events-none{pointer-events:none}.uog\:invisible{visibility:hidden}.uog\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:absolute{position:absolute}.uog\:fixed{position:fixed}.uog\:relative{position:relative}.uog\:inset-0{inset:calc(var(--uog-spacing)*0)}.uog\:top-0{top:calc(var(--uog-spacing)*0)}.uog\:top-1\/2{top:50%}.uog\:right-0{right:calc(var(--uog-spacing)*0)}.uog\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:left-0{left:calc(var(--uog-spacing)*0)}.uog\:left-1\/2{left:50%}.uog\:z-0{z-index:0}.uog\:z-10{z-index:10}.uog\:z-20{z-index:20}.uog\:z-50{z-index:50}.uog\:col-start-1{grid-column-start:1}.uog\:col-start-2{grid-column-start:2}.uog\:row-start-1{grid-row-start:1}.uog\:container{width:100%}@media (width>=40rem){.uog\:container{max-width:40rem}}@media (width>=48rem){.uog\:container{max-width:48rem}}@media (width>=64rem){.uog\:container{max-width:64rem}}@media (width>=80rem){.uog\:container{max-width:80rem}}@media (width>=96rem){.uog\:container{max-width:96rem}}.uog\:mx-auto{margin-inline:auto}.uog\:my-2{margin-block:calc(var(--uog-spacing)*2)}.uog\:my-7{margin-block:calc(var(--uog-spacing)*7)}.uog\:mt-3\.75{margin-top:calc(var(--uog-spacing)*3.75)}.uog\:mt-7\.5{margin-top:calc(var(--uog-spacing)*7.5)}.uog\:mr-\[0\.3em\]{margin-right:.3em}.uog\:mr-auto{margin-right:auto}.uog\:mb-0{margin-bottom:calc(var(--uog-spacing)*0)}.uog\:mb-1{margin-bottom:calc(var(--uog-spacing)*1)}.uog\:mb-2{margin-bottom:calc(var(--uog-spacing)*2)}.uog\:mb-3\.75{margin-bottom:calc(var(--uog-spacing)*3.75)}.uog\:mb-4{margin-bottom:calc(var(--uog-spacing)*4)}.uog\:ml-4{margin-left:calc(var(--uog-spacing)*4)}.uog\:ml-\[0\.25em\]{margin-left:.25em}.uog\:ml-auto{margin-left:auto}.uog\:block{display:block}.uog\:contents{display:contents}.uog\:flex{display:flex}.uog\:grid{display:grid}.uog\:hidden{display:none}.uog\:inline-block{display:inline-block}.uog\:inline-flex{display:inline-flex}.uog\:aspect-\[16\/9\]{aspect-ratio:16/9}.uog\:aspect-square{aspect-ratio:1}.uog\:aspect-video{aspect-ratio:var(--uog-aspect-video)}.uog\:size-4{width:calc(var(--uog-spacing)*4);height:calc(var(--uog-spacing)*4)}.uog\:h-1{height:calc(var(--uog-spacing)*1)}.uog\:h-2{height:calc(var(--uog-spacing)*2)}.uog\:h-5{height:calc(var(--uog-spacing)*5)}.uog\:h-9{height:calc(var(--uog-spacing)*9)}.uog\:h-16{height:calc(var(--uog-spacing)*16)}.uog\:h-\[\.75em\]{height:.75em}.uog\:h-\[1\.5em\]{height:1.5em}.uog\:h-\[1em\]{height:1em}.uog\:h-auto{height:auto}.uog\:h-fit{height:fit-content}.uog\:h-full{height:100%}.uog\:max-h-\[80vh\]{max-height:80vh}.uog\:max-h-\[calc\(85vh-14rem\)\]{max-height:calc(85vh - 14rem)}.uog\:min-h-\[7rem\]{min-height:7rem}.uog\:min-h-\[50rem\]{min-height:50rem}.uog\:w-2{width:calc(var(--uog-spacing)*2)}.uog\:w-3\/4{width:75%}.uog\:w-5{width:calc(var(--uog-spacing)*5)}.uog\:w-16{width:calc(var(--uog-spacing)*16)}.uog\:w-24{width:calc(var(--uog-spacing)*24)}.uog\:w-\[1em\]{width:1em}.uog\:w-fit{width:fit-content}.uog\:w-full{width:100%}.uog\:w-screen{width:100vw}.uog\:max-w-6xl{max-width:var(--uog-container-6xl)}.uog\:max-w-\[--tw-max-content-width\]{max-width:--tw-max-content-width}.uog\:flex-1{flex:1}.uog\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:rotate-90{rotate:90deg}.uog\:animate-fade-in{animation:var(--uog-animate-fade-in)}.uog\:animate-spin{animation:var(--uog-animate-spin)}.uog\:cursor-not-allowed{cursor:not-allowed}.uog\:cursor-pointer{cursor:pointer}.uog\:list-inside{list-style-position:inside}.uog\:list-\[circle\]{list-style-type:circle}.uog\:list-\[lower-alpha\]{list-style-type:lower-alpha}.uog\:list-\[lower-roman\]{list-style-type:lower-roman}.uog\:list-\[square\]{list-style-type:square}.uog\:list-decimal{list-style-type:decimal}.uog\:list-disc{list-style-type:disc}.uog\:grid-cols-\[1fr_1fr\]{grid-template-columns:1fr 1fr}.uog\:grid-cols-\[1fr_2fr\]{grid-template-columns:1fr 2fr}.uog\:grid-cols-\[1fr_4fr\]{grid-template-columns:1fr 4fr}.uog\:grid-cols-\[2fr_1fr\]{grid-template-columns:2fr 1fr}.uog\:grid-cols-\[4fr_1fr\]{grid-template-columns:4fr 1fr}.uog\:grid-cols-\[repeat\(var\(--items\)\,calc\(100\%\/var\(--display\)\)\)\]{grid-template-columns:repeat(var(--items),calc(100%/var(--display)))}.uog\:flex-col{flex-direction:column}.uog\:flex-col-reverse{flex-direction:column-reverse}.uog\:flex-row{flex-direction:row}.uog\:flex-row-reverse{flex-direction:row-reverse}.uog\:flex-wrap{flex-wrap:wrap}.uog\:items-center{align-items:center}.uog\:items-end{align-items:flex-end}.uog\:items-start{align-items:flex-start}.uog\:justify-between{justify-content:space-between}.uog\:justify-center{justify-content:center}.uog\:justify-end{justify-content:flex-end}.uog\:justify-start{justify-content:flex-start}.uog\:gap-0\.5{gap:calc(var(--uog-spacing)*.5)}.uog\:gap-1{gap:calc(var(--uog-spacing)*1)}.uog\:gap-2{gap:calc(var(--uog-spacing)*2)}.uog\:gap-4{gap:calc(var(--uog-spacing)*4)}.uog\:gap-5{gap:calc(var(--uog-spacing)*5)}.uog\:gap-\[1em\]{gap:1em}.uog\:overflow-hidden{overflow:hidden}.uog\:overflow-x-hidden{overflow-x:hidden}.uog\:rounded{border-radius:.25rem}.uog\:rounded-full{border-radius:3.40282e38px}.uog\:rounded-md{border-radius:var(--uog-radius-md)}.uog\:rounded-t-sm{border-top-left-radius:var(--uog-radius-sm);border-top-right-radius:var(--uog-radius-sm)}.uog\:border{border-style:var(--tw-border-style);border-width:1px}.uog\:border-0{border-style:var(--tw-border-style);border-width:0}.uog\:border-2{border-style:var(--tw-border-style);border-width:2px}.uog\:border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.uog\:border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.uog\:border-b-4{border-bottom-style:var(--tw-border-style);border-bottom-width:4px}.uog\:border-l-4{border-left-style:var(--tw-border-style);border-left-width:4px}.uog\:border-black{border-color:var(--uog-color-black)}.uog\:border-blue{border-color:var(--uog-color-blue)}.uog\:border-dark-grey{border-color:var(--uog-color-dark-grey)}.uog\:border-green{border-color:var(--uog-color-green)}.uog\:border-light-grey{border-color:var(--uog-color-light-grey)}.uog\:border-red{border-color:var(--uog-color-red)}.uog\:border-white{border-color:var(--uog-color-white)}.uog\:border-white\/40{border-color:color-mix(in oklab,var(--uog-color-white)40%,transparent)}.uog\:border-yellow{border-color:var(--uog-color-yellow)}.uog\:border-l-black{border-left-color:var(--uog-color-black)}.uog\:border-l-blue{border-left-color:var(--uog-color-blue)}.uog\:border-l-dark-grey{border-left-color:var(--uog-color-dark-grey)}.uog\:border-l-green{border-left-color:var(--uog-color-green)}.uog\:border-l-light-grey{border-left-color:var(--uog-color-light-grey)}.uog\:border-l-red{border-left-color:var(--uog-color-red)}.uog\:border-l-white{border-left-color:var(--uog-color-white)}.uog\:border-l-yellow{border-left-color:var(--uog-color-yellow)}.uog\:bg-black{background-color:var(--uog-color-black)}.uog\:bg-black\/30{background-color:color-mix(in oklab,var(--uog-color-black)30%,transparent)}.uog\:bg-black\/40{background-color:color-mix(in oklab,var(--uog-color-black)40%,transparent)}.uog\:bg-black\/60{background-color:color-mix(in oklab,var(--uog-color-black)60%,transparent)}.uog\:bg-blue{background-color:var(--uog-color-blue)}.uog\:bg-dark-grey{background-color:var(--uog-color-dark-grey)}.uog\:bg-dark-grey-bg{background-color:var(--uog-color-dark-grey-bg)}.uog\:bg-green{background-color:var(--uog-color-green)}.uog\:bg-light-grey{background-color:var(--uog-color-light-grey)}.uog\:bg-light-grey-bg{background-color:var(--uog-color-light-grey-bg)}.uog\:bg-red{background-color:var(--uog-color-red)}.uog\:bg-transparent{background-color:#0000}.uog\:bg-white{background-color:var(--uog-color-white)}.uog\:bg-white\/60{background-color:color-mix(in oklab,var(--uog-color-white)60%,transparent)}.uog\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-l{--tw-gradient-position:to left in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-radial{--tw-gradient-position:in oklab;background-image:radial-gradient(var(--tw-gradient-stops))}.uog\:from-black\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-black)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:from-white\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-white)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:via-black\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-black)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-white\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-white)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-30\%{--tw-gradient-via-position:30%}.uog\:to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:fill-black{fill:var(--uog-color-black)}.uog\:object-cover{object-fit:cover}.uog\:p-0{padding:calc(var(--uog-spacing)*0)}.uog\:p-1{padding:calc(var(--uog-spacing)*1)}.uog\:p-1\.5{padding:calc(var(--uog-spacing)*1.5)}.uog\:p-2\.5{padding:calc(var(--uog-spacing)*2.5)}.uog\:p-3{padding:calc(var(--uog-spacing)*3)}.uog\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:p-5{padding:calc(var(--uog-spacing)*5)}.uog\:p-6{padding:calc(var(--uog-spacing)*6)}.uog\:p-7{padding:calc(var(--uog-spacing)*7)}.uog\:px-0{padding-inline:calc(var(--uog-spacing)*0)}.uog\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:px-5{padding-inline:calc(var(--uog-spacing)*5)}.uog\:px-6{padding-inline:calc(var(--uog-spacing)*6)}.uog\:py-0{padding-block:calc(var(--uog-spacing)*0)}.uog\:py-2{padding-block:calc(var(--uog-spacing)*2)}.uog\:py-3{padding-block:calc(var(--uog-spacing)*3)}.uog\:py-4{padding-block:calc(var(--uog-spacing)*4)}.uog\:pt-2{padding-top:calc(var(--uog-spacing)*2)}.uog\:pt-8{padding-top:calc(var(--uog-spacing)*8)}.uog\:pb-4{padding-bottom:calc(var(--uog-spacing)*4)}.uog\:pl-4{padding-left:calc(var(--uog-spacing)*4)}.uog\:pl-5{padding-left:calc(var(--uog-spacing)*5)}.uog\:text-center{text-align:center}.uog\:text-left{text-align:left}.uog\:font-serif{font-family:var(--uog-font-serif)}.uog\:text-2xl{font-size:var(--uog-text-2xl);line-height:var(--tw-leading,var(--uog-text-2xl--line-height))}.uog\:text-3xl{font-size:var(--uog-text-3xl);line-height:var(--tw-leading,var(--uog-text-3xl--line-height))}.uog\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}.uog\:text-base{font-size:var(--uog-text-base);line-height:var(--tw-leading,var(--uog-text-base--line-height))}.uog\:text-lg{font-size:var(--uog-text-lg);line-height:var(--tw-leading,var(--uog-text-lg--line-height))}.uog\:text-sm{font-size:var(--uog-text-sm);line-height:var(--tw-leading,var(--uog-text-sm--line-height))}.uog\:text-xl{font-size:var(--uog-text-xl);line-height:var(--tw-leading,var(--uog-text-xl--line-height))}.uog\:text-\[1\.5rem\]{font-size:1.5rem}.uog\:text-\[4rem\]{font-size:4rem}.uog\:text-\[6rem\]{font-size:6rem}.uog\:text-\[8rem\]{font-size:8rem}.uog\:text-\[14rem\]{font-size:14rem}.uog\:text-\[18rem\]{font-size:18rem}.uog\:leading-\[1\.4\]{--tw-leading:1.4;line-height:1.4}.uog\:leading-\[1\.6\]{--tw-leading:1.6;line-height:1.6}.uog\:font-bold{--tw-font-weight:var(--uog-font-weight-bold);font-weight:var(--uog-font-weight-bold)}.uog\:font-light{--tw-font-weight:var(--uog-font-weight-light);font-weight:var(--uog-font-weight-light)}.uog\:font-medium{--tw-font-weight:var(--uog-font-weight-medium);font-weight:var(--uog-font-weight-medium)}.uog\:font-normal{--tw-font-weight:var(--uog-font-weight-normal);font-weight:var(--uog-font-weight-normal)}.uog\:text-black{color:var(--uog-color-black)}.uog\:text-black-contrast{color:var(--uog-color-black-contrast)}.uog\:text-blue{color:var(--uog-color-blue)}.uog\:text-blue-contrast{color:var(--uog-color-blue-contrast)}.uog\:text-blue-on-light{color:var(--uog-color-blue-on-light)}.uog\:text-body-copy{color:var(--uog-color-body-copy)}.uog\:text-body-copy-bold{color:var(--uog-color-body-copy-bold)}.uog\:text-body-copy-link{color:var(--uog-color-body-copy-link)}.uog\:text-body-copy-link-on-dark{color:var(--uog-color-body-copy-link-on-dark)}.uog\:text-body-copy-link-on-light{color:var(--uog-color-body-copy-link-on-light)}.uog\:text-body-copy-on-dark{color:var(--uog-color-body-copy-on-dark)}.uog\:text-dark-grey{color:var(--uog-color-dark-grey)}.uog\:text-dark-grey-contrast{color:var(--uog-color-dark-grey-contrast)}.uog\:text-green{color:var(--uog-color-green)}.uog\:text-green-contrast{color:var(--uog-color-green-contrast)}.uog\:text-light-grey{color:var(--uog-color-light-grey)}.uog\:text-light-grey-contrast{color:var(--uog-color-light-grey-contrast)}.uog\:text-red{color:var(--uog-color-red)}.uog\:text-red-contrast{color:var(--uog-color-red-contrast)}.uog\:text-white{color:var(--uog-color-white)}.uog\:text-white-contrast{color:var(--uog-color-white-contrast)}.uog\:text-yellow{color:var(--uog-color-yellow)}.uog\:text-yellow-contrast{color:var(--uog-color-yellow-contrast)}.uog\:italic{font-style:italic}.uog\:no-underline{text-decoration-line:none}.uog\:underline{text-decoration-line:underline}.uog\:decoration-current{text-decoration-color:currentColor}.uog\:decoration-transparent{text-decoration-color:#0000}.uog\:decoration-1{text-decoration-thickness:1px}.uog\:opacity-0{opacity:0}.uog\:opacity-50{opacity:.5}.uog\:opacity-60{opacity:.6}.uog\:shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:blur-sm{--tw-blur:blur(var(--uog-blur-sm));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.uog\:transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-\[transform\,color\,opacity\,visibility\]{transition-property:transform,color,opacity,visibility;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:duration-200{--tw-duration:.2s;transition-duration:.2s}.uog\:duration-300{--tw-duration:.3s;transition-duration:.3s}.uog\:ease-in-out{--tw-ease:var(--uog-ease-in-out);transition-timing-function:var(--uog-ease-in-out)}.uog\:ease-out{--tw-ease:var(--uog-ease-out);transition-timing-function:var(--uog-ease-out)}@media (hover:hover){.uog\:group-hover\:scale-110:is(:where(.uog\:group):hover *){--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.uog\:group-hover\:bg-yellow:is(:where(.uog\:group):hover *){background-color:var(--uog-color-yellow)}}.uog\:group-ui-checked\:opacity-100:is(:where(.uog\:group)[data-headlessui-state~=checked] *),.uog\:group-ui-checked\:opacity-100:is(:where([data-headlessui-state~=checked]) :where(.uog\:group) *){opacity:1}.uog\:group-hocus-visible\:bg-yellow:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){background-color:var(--uog-color-yellow)}.uog\:group-hocus-visible\:text-blue-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-blue-contrast)}.uog\:group-hocus-visible\:text-yellow-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-yellow-contrast)}.uog\:focus-within\:border-blue:focus-within{border-color:var(--uog-color-blue)}@media (hover:hover){.uog\:hover\:bg-red:hover{background-color:var(--uog-color-red)}.uog\:hover\:bg-red\/30:hover{background-color:color-mix(in oklab,var(--uog-color-red)30%,transparent)}.uog\:hover\:decoration-transparent:hover{text-decoration-color:#0000}}.uog\:focus\:bg-red\/30:focus{background-color:color-mix(in oklab,var(--uog-color-red)30%,transparent)}.uog\:focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.uog\:focus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:text-black:focus-visible{color:var(--uog-color-black)}.uog\:focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus-visible\:ring-black:focus-visible{--tw-ring-color:var(--uog-color-black)}.uog\:focus-visible\:ring-blue:focus-visible{--tw-ring-color:var(--uog-color-blue)}.uog\:focus-visible\:ring-body-copy-link:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link)}.uog\:focus-visible\:ring-body-copy-link-on-light:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link-on-light)}.uog\:focus-visible\:ring-dark-grey:focus-visible{--tw-ring-color:var(--uog-color-dark-grey)}.uog\:focus-visible\:ring-green:focus-visible{--tw-ring-color:var(--uog-color-green)}.uog\:focus-visible\:ring-light-grey:focus-visible{--tw-ring-color:var(--uog-color-light-grey)}.uog\:focus-visible\:ring-red:focus-visible{--tw-ring-color:var(--uog-color-red)}.uog\:focus-visible\:ring-white:focus-visible{--tw-ring-color:var(--uog-color-white)}.uog\:focus-visible\:ring-yellow:focus-visible{--tw-ring-color:var(--uog-color-yellow)}.uog\:focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.uog\:focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.uog\:has-\[strong\]\:text-body-copy-bold:has(:is(strong)){color:var(--uog-color-body-copy-bold)}.uog\:data-\[closed\]\:opacity-0[data-closed]{opacity:0}@media (width>=40rem){.uog\:sm\:px-16{padding-inline:calc(var(--uog-spacing)*16)}.uog\:sm\:text-6xl{font-size:var(--uog-text-6xl);line-height:var(--tw-leading,var(--uog-text-6xl--line-height))}}@media (width>=48rem){.uog\:md\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:md\:absolute{position:absolute}.uog\:md\:z-20{z-index:20}.uog\:md\:block{display:block}.uog\:md\:contents{display:contents}.uog\:md\:grid{display:grid}.uog\:md\:aspect-\[2\.625\]{aspect-ratio:2.625}.uog\:md\:w-1\/3{width:33.3333%}.uog\:md\:w-9{width:calc(var(--uog-spacing)*9)}.uog\:md\:flex-row{flex-direction:row}.uog\:md\:rounded-full{border-radius:3.40282e38px}.uog\:md\:bg-black\/70{background-color:color-mix(in oklab,var(--uog-color-black)70%,transparent)}.uog\:md\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:md\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:md\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}}@media (width>=64rem){.uog\:lg\:absolute{position:absolute}.uog\:lg\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:lg\:left-1\/2{left:50%}.uog\:lg\:container{width:100%}@media (width>=40rem){.uog\:lg\:container{max-width:40rem}}@media (width>=48rem){.uog\:lg\:container{max-width:48rem}}.uog\:lg\:container{max-width:64rem}@media (width>=80rem){.uog\:lg\:container{max-width:80rem}}@media (width>=96rem){.uog\:lg\:container{max-width:96rem}}.uog\:lg\:mx-auto{margin-inline:auto}.uog\:lg\:ml-auto{margin-left:auto}.uog\:lg\:max-w-7xl{max-width:var(--uog-container-7xl)}.uog\:lg\:max-w-\[50\%\]{max-width:50%}.uog\:lg\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:lg\:items-center{align-items:center}.uog\:lg\:items-end{align-items:flex-end}.uog\:lg\:bg-black\/80{background-color:color-mix(in oklab,var(--uog-color-black)80%,transparent)}.uog\:lg\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:lg\:text-center{text-align:center}.uog\:lg\:text-right{text-align:right}.uog\:lg\:backdrop-blur{--tw-backdrop-blur:blur(8px);-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,)}}.uog\:ui-checked\:bg-black[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-black{background-color:var(--uog-color-black)}.uog\:ui-checked\:bg-blue[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-blue{background-color:var(--uog-color-blue)}.uog\:ui-checked\:bg-dark-grey[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-dark-grey{background-color:var(--uog-color-dark-grey)}.uog\:ui-checked\:bg-green[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-green{background-color:var(--uog-color-green)}.uog\:ui-checked\:bg-light-grey[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-light-grey{background-color:var(--uog-color-light-grey)}.uog\:ui-checked\:bg-red[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-red{background-color:var(--uog-color-red)}.uog\:ui-checked\:bg-white[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-white{background-color:var(--uog-color-white)}.uog\:ui-checked\:bg-yellow[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:hocus-visible\:-translate-x-1:hover,.uog\:hocus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:translate-x-1:hover,.uog\:hocus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:bg-black:hover,.uog\:hocus-visible\:bg-black:focus-visible{background-color:var(--uog-color-black)}.uog\:hocus-visible\:bg-black-focus:hover,.uog\:hocus-visible\:bg-black-focus:focus-visible{background-color:var(--uog-color-black-focus)}.uog\:hocus-visible\:bg-blue:hover,.uog\:hocus-visible\:bg-blue:focus-visible{background-color:var(--uog-color-blue)}.uog\:hocus-visible\:bg-blue-focus:hover,.uog\:hocus-visible\:bg-blue-focus:focus-visible{background-color:var(--uog-color-blue-focus)}.uog\:hocus-visible\:bg-dark-grey:hover,.uog\:hocus-visible\:bg-dark-grey:focus-visible{background-color:var(--uog-color-dark-grey)}.uog\:hocus-visible\:bg-dark-grey-focus:hover,.uog\:hocus-visible\:bg-dark-grey-focus:focus-visible{background-color:var(--uog-color-dark-grey-focus)}.uog\:hocus-visible\:bg-green:hover,.uog\:hocus-visible\:bg-green:focus-visible{background-color:var(--uog-color-green)}.uog\:hocus-visible\:bg-green-focus:hover,.uog\:hocus-visible\:bg-green-focus:focus-visible{background-color:var(--uog-color-green-focus)}.uog\:hocus-visible\:bg-light-grey:hover,.uog\:hocus-visible\:bg-light-grey:focus-visible{background-color:var(--uog-color-light-grey)}.uog\:hocus-visible\:bg-light-grey-focus:hover,.uog\:hocus-visible\:bg-light-grey-focus:focus-visible{background-color:var(--uog-color-light-grey-focus)}.uog\:hocus-visible\:bg-red:hover,.uog\:hocus-visible\:bg-red:focus-visible{background-color:var(--uog-color-red)}.uog\:hocus-visible\:bg-red-focus:hover,.uog\:hocus-visible\:bg-red-focus:focus-visible{background-color:var(--uog-color-red-focus)}.uog\:hocus-visible\:bg-white:hover,.uog\:hocus-visible\:bg-white:focus-visible{background-color:var(--uog-color-white)}.uog\:hocus-visible\:bg-white-focus:hover,.uog\:hocus-visible\:bg-white-focus:focus-visible{background-color:var(--uog-color-white-focus)}.uog\:hocus-visible\:bg-yellow:hover,.uog\:hocus-visible\:bg-yellow:focus-visible{background-color:var(--uog-color-yellow)}.uog\:hocus-visible\:bg-yellow-focus:hover,.uog\:hocus-visible\:bg-yellow-focus:focus-visible{background-color:var(--uog-color-yellow-focus)}.uog\:hocus-visible\:text-black:hover,.uog\:hocus-visible\:text-black:focus-visible{color:var(--uog-color-black)}.uog\:hocus-visible\:text-black-contrast:hover,.uog\:hocus-visible\:text-black-contrast:focus-visible{color:var(--uog-color-black-contrast)}.uog\:hocus-visible\:text-blue-contrast:hover,.uog\:hocus-visible\:text-blue-contrast:focus-visible{color:var(--uog-color-blue-contrast)}.uog\:hocus-visible\:text-dark-grey-contrast:hover,.uog\:hocus-visible\:text-dark-grey-contrast:focus-visible{color:var(--uog-color-dark-grey-contrast)}.uog\:hocus-visible\:text-green-contrast:hover,.uog\:hocus-visible\:text-green-contrast:focus-visible{color:var(--uog-color-green-contrast)}.uog\:hocus-visible\:text-light-grey-contrast:hover,.uog\:hocus-visible\:text-light-grey-contrast:focus-visible{color:var(--uog-color-light-grey-contrast)}.uog\:hocus-visible\:text-red-contrast:hover,.uog\:hocus-visible\:text-red-contrast:focus-visible{color:var(--uog-color-red-contrast)}.uog\:hocus-visible\:text-white-contrast:hover,.uog\:hocus-visible\:text-white-contrast:focus-visible{color:var(--uog-color-white-contrast)}.uog\:hocus-visible\:text-yellow-contrast:hover,.uog\:hocus-visible\:text-yellow-contrast:focus-visible{color:var(--uog-color-yellow-contrast)}.uog\:hocus-visible\:decoration-black:hover,.uog\:hocus-visible\:decoration-black:focus-visible{-webkit-text-decoration-color:var(--uog-color-black);text-decoration-color:var(--uog-color-black)}.uog\:hocus-visible\:decoration-transparent:hover,.uog\:hocus-visible\:decoration-transparent:focus-visible{text-decoration-color:#0000}.uog\:\[\&_p\:last-child\]\:mb-0 p:last-child{margin-bottom:calc(var(--uog-spacing)*0)}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}
|
|
1
|
+
/*! tailwindcss v4.0.11 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--uog-font-serif:"Bitter",ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;--uog-color-black:#000;--uog-color-white:#fff;--uog-spacing:.4rem;--uog-container-6xl:72rem;--uog-container-7xl:80rem;--uog-text-sm:1.4rem;--uog-text-sm--line-height:1.4;--uog-text-base:1.6rem;--uog-text-base--line-height:1.4;--uog-text-lg:1.8rem;--uog-text-lg--line-height:1.4;--uog-text-xl:2rem;--uog-text-xl--line-height:1.4;--uog-text-2xl:2.5rem;--uog-text-2xl--line-height:1.4;--uog-text-3xl:3rem;--uog-text-3xl--line-height:1.4;--uog-text-4xl:4rem;--uog-text-4xl--line-height:1.4;--uog-text-6xl:6rem;--uog-text-6xl--line-height:1.6;--uog-font-weight-light:300;--uog-font-weight-normal:400;--uog-font-weight-medium:500;--uog-font-weight-bold:700;--uog-leading-tight:1.25;--uog-radius-sm:.25rem;--uog-radius-md:.375rem;--uog-ease-out:cubic-bezier(0,0,.2,1);--uog-ease-in-out:cubic-bezier(.4,0,.2,1);--uog-animate-spin:spin 1s linear infinite;--uog-blur-sm:8px;--uog-aspect-video:16/9;--uog-default-transition-duration:.15s;--uog-default-transition-timing-function:cubic-bezier(.4,0,.2,1);--uog-color-white-contrast:#000;--uog-color-black-focus:#444;--uog-color-black-on-light:#000;--uog-color-black-contrast:#fff;--uog-color-red:#e51937;--uog-color-red-focus:#b3142c;--uog-color-red-contrast:#fff;--uog-color-yellow:#ffc429;--uog-color-yellow-focus:#ffe299;--uog-color-yellow-contrast:#000;--uog-color-blue:#187bb4;--uog-color-blue-focus:#135f8b;--uog-color-blue-on-light:#1775ab;--uog-color-blue-contrast:#fff;--uog-color-green:#318738;--uog-color-green-focus:#27682c;--uog-color-green-contrast:#fff;--uog-color-grey-light:#d8d8d8;--uog-color-grey-light-contrast:#000;--uog-color-grey-light-bg:#f5f5f5;--uog-color-grey-dark:#747676;--uog-color-grey-dark-contrast:#fff;--uog-color-grey-dark-bg:#222;--uog-color-body-copy:#555;--uog-color-body-copy-on-dark:#ccc;--uog-color-body-copy-bold:#333;--uog-color-body-copy-link:#187bb4;--uog-color-body-copy-link-on-light:#166ea2;--uog-color-body-copy-link-on-dark:#1d93d7;--uog-animate-fade-in:fade .25s ease-in-out 1 normal forwards}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}body{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;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root{--tw-max-content-width:137rem;font-size:62.5%}body{margin:0;padding:0;font-size:1.6rem}@keyframes fade{0%{opacity:0}to{opacity:1}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}}@layer components;@layer utilities{.uog\:pointer-events-none{pointer-events:none}.uog\:invisible{visibility:hidden}.uog\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:absolute{position:absolute}.uog\:fixed{position:fixed}.uog\:relative{position:relative}.uog\:inset-0{inset:calc(var(--uog-spacing)*0)}.uog\:top-0{top:calc(var(--uog-spacing)*0)}.uog\:top-1\/2{top:50%}.uog\:right-0{right:calc(var(--uog-spacing)*0)}.uog\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:left-0{left:calc(var(--uog-spacing)*0)}.uog\:left-1\/2{left:50%}.uog\:z-0{z-index:0}.uog\:z-10{z-index:10}.uog\:z-20{z-index:20}.uog\:z-50{z-index:50}.uog\:col-start-1{grid-column-start:1}.uog\:col-start-2{grid-column-start:2}.uog\:row-start-1{grid-row-start:1}.uog\:container{width:100%}@media (width>=40rem){.uog\:container{max-width:40rem}}@media (width>=48rem){.uog\:container{max-width:48rem}}@media (width>=64rem){.uog\:container{max-width:64rem}}@media (width>=80rem){.uog\:container{max-width:80rem}}@media (width>=96rem){.uog\:container{max-width:96rem}}.uog\:mx-auto{margin-inline:auto}.uog\:my-2{margin-block:calc(var(--uog-spacing)*2)}.uog\:my-4{margin-block:calc(var(--uog-spacing)*4)}.uog\:my-7{margin-block:calc(var(--uog-spacing)*7)}.uog\:mt-3\.75{margin-top:calc(var(--uog-spacing)*3.75)}.uog\:mt-7\.5{margin-top:calc(var(--uog-spacing)*7.5)}.uog\:mr-\[0\.3em\]{margin-right:.3em}.uog\:mr-auto{margin-right:auto}.uog\:mb-0{margin-bottom:calc(var(--uog-spacing)*0)}.uog\:mb-1{margin-bottom:calc(var(--uog-spacing)*1)}.uog\:mb-2{margin-bottom:calc(var(--uog-spacing)*2)}.uog\:mb-3\.75{margin-bottom:calc(var(--uog-spacing)*3.75)}.uog\:mb-4{margin-bottom:calc(var(--uog-spacing)*4)}.uog\:ml-4{margin-left:calc(var(--uog-spacing)*4)}.uog\:ml-\[0\.25em\]{margin-left:.25em}.uog\:ml-auto{margin-left:auto}.uog\:block{display:block}.uog\:contents{display:contents}.uog\:flex{display:flex}.uog\:grid{display:grid}.uog\:hidden{display:none}.uog\:inline-block{display:inline-block}.uog\:inline-flex{display:inline-flex}.uog\:aspect-\[16\/9\]{aspect-ratio:16/9}.uog\:aspect-square{aspect-ratio:1}.uog\:aspect-video{aspect-ratio:var(--uog-aspect-video)}.uog\:size-4{width:calc(var(--uog-spacing)*4);height:calc(var(--uog-spacing)*4)}.uog\:h-1{height:calc(var(--uog-spacing)*1)}.uog\:h-2{height:calc(var(--uog-spacing)*2)}.uog\:h-5{height:calc(var(--uog-spacing)*5)}.uog\:h-9{height:calc(var(--uog-spacing)*9)}.uog\:h-16{height:calc(var(--uog-spacing)*16)}.uog\:h-\[\.75em\]{height:.75em}.uog\:h-\[1\.5em\]{height:1.5em}.uog\:h-\[1em\]{height:1em}.uog\:h-auto{height:auto}.uog\:h-fit{height:fit-content}.uog\:h-full{height:100%}.uog\:max-h-\[80vh\]{max-height:80vh}.uog\:max-h-\[calc\(85vh-14rem\)\]{max-height:calc(85vh - 14rem)}.uog\:max-h-full{max-height:100%}.uog\:min-h-\[7rem\]{min-height:7rem}.uog\:min-h-\[50rem\]{min-height:50rem}.uog\:w-2{width:calc(var(--uog-spacing)*2)}.uog\:w-3\/4{width:75%}.uog\:w-5{width:calc(var(--uog-spacing)*5)}.uog\:w-16{width:calc(var(--uog-spacing)*16)}.uog\:w-24{width:calc(var(--uog-spacing)*24)}.uog\:w-\[1em\]{width:1em}.uog\:w-fit{width:fit-content}.uog\:w-full{width:100%}.uog\:w-screen{width:100vw}.uog\:max-w-6xl{max-width:var(--uog-container-6xl)}.uog\:max-w-\[--tw-max-content-width\]{max-width:--tw-max-content-width}.uog\:flex-1{flex:1}.uog\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:rotate-90{rotate:90deg}.uog\:animate-fade-in{animation:var(--uog-animate-fade-in)}.uog\:animate-spin{animation:var(--uog-animate-spin)}.uog\:cursor-not-allowed{cursor:not-allowed}.uog\:cursor-pointer{cursor:pointer}.uog\:list-inside{list-style-position:inside}.uog\:list-\[circle\]{list-style-type:circle}.uog\:list-\[lower-alpha\]{list-style-type:lower-alpha}.uog\:list-\[lower-roman\]{list-style-type:lower-roman}.uog\:list-\[square\]{list-style-type:square}.uog\:list-decimal{list-style-type:decimal}.uog\:list-disc{list-style-type:disc}.uog\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.uog\:grid-cols-\[1fr_1fr\]{grid-template-columns:1fr 1fr}.uog\:grid-cols-\[1fr_2fr\]{grid-template-columns:1fr 2fr}.uog\:grid-cols-\[1fr_4fr\]{grid-template-columns:1fr 4fr}.uog\:grid-cols-\[2fr_1fr\]{grid-template-columns:2fr 1fr}.uog\:grid-cols-\[4fr_1fr\]{grid-template-columns:4fr 1fr}.uog\:grid-cols-\[repeat\(var\(--items\)\,calc\(100\%\/var\(--display\)\)\)\]{grid-template-columns:repeat(var(--items),calc(100%/var(--display)))}.uog\:flex-col{flex-direction:column}.uog\:flex-col-reverse{flex-direction:column-reverse}.uog\:flex-row{flex-direction:row}.uog\:flex-row-reverse{flex-direction:row-reverse}.uog\:flex-wrap{flex-wrap:wrap}.uog\:items-center{align-items:center}.uog\:items-end{align-items:flex-end}.uog\:items-start{align-items:flex-start}.uog\:justify-around{justify-content:space-around}.uog\:justify-between{justify-content:space-between}.uog\:justify-center{justify-content:center}.uog\:justify-end{justify-content:flex-end}.uog\:justify-start{justify-content:flex-start}.uog\:gap-0\.5{gap:calc(var(--uog-spacing)*.5)}.uog\:gap-1{gap:calc(var(--uog-spacing)*1)}.uog\:gap-2{gap:calc(var(--uog-spacing)*2)}.uog\:gap-4{gap:calc(var(--uog-spacing)*4)}.uog\:gap-5{gap:calc(var(--uog-spacing)*5)}.uog\:gap-6{gap:calc(var(--uog-spacing)*6)}.uog\:gap-\[1em\]{gap:1em}.uog\:overflow-hidden{overflow:hidden}.uog\:overflow-x-hidden{overflow-x:hidden}.uog\:rounded{border-radius:.25rem}.uog\:rounded-full{border-radius:3.40282e38px}.uog\:rounded-md{border-radius:var(--uog-radius-md)}.uog\:rounded-t-sm{border-top-left-radius:var(--uog-radius-sm);border-top-right-radius:var(--uog-radius-sm)}.uog\:border{border-style:var(--tw-border-style);border-width:1px}.uog\:border-0{border-style:var(--tw-border-style);border-width:0}.uog\:border-2{border-style:var(--tw-border-style);border-width:2px}.uog\:border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.uog\:border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.uog\:border-b-4{border-bottom-style:var(--tw-border-style);border-bottom-width:4px}.uog\:border-l-3{border-left-style:var(--tw-border-style);border-left-width:3px}.uog\:border-l-4{border-left-style:var(--tw-border-style);border-left-width:4px}.uog\:border-l-8{border-left-style:var(--tw-border-style);border-left-width:8px}.uog\:border-black{border-color:var(--uog-color-black)}.uog\:border-blue{border-color:var(--uog-color-blue)}.uog\:border-green{border-color:var(--uog-color-green)}.uog\:border-grey-light{border-color:var(--uog-color-grey-light)}.uog\:border-red{border-color:var(--uog-color-red)}.uog\:border-white{border-color:var(--uog-color-white)}.uog\:border-white\/40{border-color:color-mix(in oklab,var(--uog-color-white)40%,transparent)}.uog\:border-yellow{border-color:var(--uog-color-yellow)}.uog\:border-l-black{border-left-color:var(--uog-color-black)}.uog\:border-l-blue{border-left-color:var(--uog-color-blue)}.uog\:border-l-green{border-left-color:var(--uog-color-green)}.uog\:border-l-grey-dark{border-left-color:var(--uog-color-grey-dark)}.uog\:border-l-grey-light{border-left-color:var(--uog-color-grey-light)}.uog\:border-l-red{border-left-color:var(--uog-color-red)}.uog\:border-l-white{border-left-color:var(--uog-color-white)}.uog\:border-l-yellow{border-left-color:var(--uog-color-yellow)}.uog\:bg-black{background-color:var(--uog-color-black)}.uog\:bg-black\/40{background-color:color-mix(in oklab,var(--uog-color-black)40%,transparent)}.uog\:bg-black\/60{background-color:color-mix(in oklab,var(--uog-color-black)60%,transparent)}.uog\:bg-blue{background-color:var(--uog-color-blue)}.uog\:bg-green{background-color:var(--uog-color-green)}.uog\:bg-grey-dark{background-color:var(--uog-color-grey-dark)}.uog\:bg-grey-dark-bg{background-color:var(--uog-color-grey-dark-bg)}.uog\:bg-grey-light{background-color:var(--uog-color-grey-light)}.uog\:bg-grey-light-bg{background-color:var(--uog-color-grey-light-bg)}.uog\:bg-red{background-color:var(--uog-color-red)}.uog\:bg-transparent{background-color:#0000}.uog\:bg-white{background-color:var(--uog-color-white)}.uog\:bg-white\/60{background-color:color-mix(in oklab,var(--uog-color-white)60%,transparent)}.uog\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-l{--tw-gradient-position:to left in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-radial{--tw-gradient-position:in oklab;background-image:radial-gradient(var(--tw-gradient-stops))}.uog\:from-black\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-black)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:from-white\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-white)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:via-black\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-black)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-white\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-white)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-30\%{--tw-gradient-via-position:30%}.uog\:to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:fill-black{fill:var(--uog-color-black)}.uog\:object-cover{object-fit:cover}.uog\:p-0{padding:calc(var(--uog-spacing)*0)}.uog\:p-1{padding:calc(var(--uog-spacing)*1)}.uog\:p-1\.5{padding:calc(var(--uog-spacing)*1.5)}.uog\:p-2{padding:calc(var(--uog-spacing)*2)}.uog\:p-2\.5{padding:calc(var(--uog-spacing)*2.5)}.uog\:p-3{padding:calc(var(--uog-spacing)*3)}.uog\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:p-5{padding:calc(var(--uog-spacing)*5)}.uog\:p-6{padding:calc(var(--uog-spacing)*6)}.uog\:p-7{padding:calc(var(--uog-spacing)*7)}.uog\:px-0{padding-inline:calc(var(--uog-spacing)*0)}.uog\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:px-5{padding-inline:calc(var(--uog-spacing)*5)}.uog\:px-6{padding-inline:calc(var(--uog-spacing)*6)}.uog\:px-8{padding-inline:calc(var(--uog-spacing)*8)}.uog\:py-0{padding-block:calc(var(--uog-spacing)*0)}.uog\:py-2{padding-block:calc(var(--uog-spacing)*2)}.uog\:py-3{padding-block:calc(var(--uog-spacing)*3)}.uog\:py-4{padding-block:calc(var(--uog-spacing)*4)}.uog\:pt-0{padding-top:calc(var(--uog-spacing)*0)}.uog\:pt-2{padding-top:calc(var(--uog-spacing)*2)}.uog\:pt-8{padding-top:calc(var(--uog-spacing)*8)}.uog\:pb-0{padding-bottom:calc(var(--uog-spacing)*0)}.uog\:pb-4{padding-bottom:calc(var(--uog-spacing)*4)}.uog\:pl-4{padding-left:calc(var(--uog-spacing)*4)}.uog\:pl-5{padding-left:calc(var(--uog-spacing)*5)}.uog\:text-center{text-align:center}.uog\:text-left{text-align:left}.uog\:font-serif{font-family:var(--uog-font-serif)}.uog\:text-2xl{font-size:var(--uog-text-2xl);line-height:var(--tw-leading,var(--uog-text-2xl--line-height))}.uog\:text-3xl{font-size:var(--uog-text-3xl);line-height:var(--tw-leading,var(--uog-text-3xl--line-height))}.uog\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}.uog\:text-base{font-size:var(--uog-text-base);line-height:var(--tw-leading,var(--uog-text-base--line-height))}.uog\:text-lg{font-size:var(--uog-text-lg);line-height:var(--tw-leading,var(--uog-text-lg--line-height))}.uog\:text-sm{font-size:var(--uog-text-sm);line-height:var(--tw-leading,var(--uog-text-sm--line-height))}.uog\:text-xl{font-size:var(--uog-text-xl);line-height:var(--tw-leading,var(--uog-text-xl--line-height))}.uog\:text-\[1\.5rem\]{font-size:1.5rem}.uog\:text-\[4rem\]{font-size:4rem}.uog\:text-\[6rem\]{font-size:6rem}.uog\:text-\[8rem\]{font-size:8rem}.uog\:text-\[14rem\]{font-size:14rem}.uog\:text-\[18rem\]{font-size:18rem}.uog\:leading-\[1\.4\]{--tw-leading:1.4;line-height:1.4}.uog\:leading-\[1\.6\]{--tw-leading:1.6;line-height:1.6}.uog\:leading-tight{--tw-leading:var(--uog-leading-tight);line-height:var(--uog-leading-tight)}.uog\:font-bold{--tw-font-weight:var(--uog-font-weight-bold);font-weight:var(--uog-font-weight-bold)}.uog\:font-light{--tw-font-weight:var(--uog-font-weight-light);font-weight:var(--uog-font-weight-light)}.uog\:font-medium{--tw-font-weight:var(--uog-font-weight-medium);font-weight:var(--uog-font-weight-medium)}.uog\:font-normal{--tw-font-weight:var(--uog-font-weight-normal);font-weight:var(--uog-font-weight-normal)}.uog\:text-black{color:var(--uog-color-black)}.uog\:text-black-contrast{color:var(--uog-color-black-contrast)}.uog\:text-black-on-light{color:var(--uog-color-black-on-light)}.uog\:text-blue{color:var(--uog-color-blue)}.uog\:text-blue-contrast{color:var(--uog-color-blue-contrast)}.uog\:text-blue-on-light{color:var(--uog-color-blue-on-light)}.uog\:text-body-copy{color:var(--uog-color-body-copy)}.uog\:text-body-copy-bold{color:var(--uog-color-body-copy-bold)}.uog\:text-body-copy-link{color:var(--uog-color-body-copy-link)}.uog\:text-body-copy-link-on-dark{color:var(--uog-color-body-copy-link-on-dark)}.uog\:text-body-copy-link-on-light{color:var(--uog-color-body-copy-link-on-light)}.uog\:text-body-copy-on-dark{color:var(--uog-color-body-copy-on-dark)}.uog\:text-green{color:var(--uog-color-green)}.uog\:text-green-contrast{color:var(--uog-color-green-contrast)}.uog\:text-grey-dark{color:var(--uog-color-grey-dark)}.uog\:text-grey-dark-contrast{color:var(--uog-color-grey-dark-contrast)}.uog\:text-grey-light-contrast{color:var(--uog-color-grey-light-contrast)}.uog\:text-red{color:var(--uog-color-red)}.uog\:text-red-contrast{color:var(--uog-color-red-contrast)}.uog\:text-white{color:var(--uog-color-white)}.uog\:text-white-contrast{color:var(--uog-color-white-contrast)}.uog\:text-yellow{color:var(--uog-color-yellow)}.uog\:text-yellow-contrast{color:var(--uog-color-yellow-contrast)}.uog\:italic{font-style:italic}.uog\:not-italic{font-style:normal}.uog\:no-underline{text-decoration-line:none}.uog\:underline{text-decoration-line:underline}.uog\:decoration-current{text-decoration-color:currentColor}.uog\:decoration-transparent{text-decoration-color:#0000}.uog\:decoration-1{text-decoration-thickness:1px}.uog\:opacity-0{opacity:0}.uog\:opacity-50{opacity:.5}.uog\:opacity-60{opacity:.6}.uog\:shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:blur-sm{--tw-blur:blur(var(--uog-blur-sm));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.uog\:brightness-50{--tw-brightness:brightness(50%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.uog\:transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-\[transform\,color\,opacity\,visibility\]{transition-property:transform,color,opacity,visibility;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:duration-200{--tw-duration:.2s;transition-duration:.2s}.uog\:duration-300{--tw-duration:.3s;transition-duration:.3s}.uog\:ease-in-out{--tw-ease:var(--uog-ease-in-out);transition-timing-function:var(--uog-ease-in-out)}.uog\:ease-out{--tw-ease:var(--uog-ease-out);transition-timing-function:var(--uog-ease-out)}@media (hover:hover){.uog\:group-hover\:scale-110:is(:where(.uog\:group):hover *){--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.uog\:group-hover\:bg-yellow:is(:where(.uog\:group):hover *){background-color:var(--uog-color-yellow)}}.uog\:group-ui-checked\:opacity-100:is(:where(.uog\:group)[data-headlessui-state~=checked] *),.uog\:group-ui-checked\:opacity-100:is(:where([data-headlessui-state~=checked]) :where(.uog\:group) *){opacity:1}.uog\:group-hocus-visible\:bg-yellow:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){background-color:var(--uog-color-yellow)}.uog\:group-hocus-visible\:text-blue-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-blue-contrast)}.uog\:group-hocus-visible\:text-yellow-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-yellow-contrast)}.uog\:before\:absolute:before{content:var(--tw-content);position:absolute}.uog\:before\:top-0:before{content:var(--tw-content);top:calc(var(--uog-spacing)*0)}.uog\:before\:right-full:before{content:var(--tw-content);right:100%}.uog\:before\:z-\[-1\]:before{content:var(--tw-content);z-index:-1}.uog\:before\:h-full:before{content:var(--tw-content);height:100%}.uog\:before\:w-\[calc\(\(100vw-var\(--statistic-bg-width\)\)\/2\)\]:before{content:var(--tw-content);width:calc((100vw - var(--statistic-bg-width))/2)}.uog\:before\:bg-inherit:before{content:var(--tw-content);background-color:inherit}.uog\:after\:absolute:after{content:var(--tw-content);position:absolute}.uog\:after\:top-0:after{content:var(--tw-content);top:calc(var(--uog-spacing)*0)}.uog\:after\:left-full:after{content:var(--tw-content);left:100%}.uog\:after\:z-\[-1\]:after{content:var(--tw-content);z-index:-1}.uog\:after\:h-full:after{content:var(--tw-content);height:100%}.uog\:after\:w-\[calc\(\(100vw-var\(--statistic-bg-width\)\)\/2\)\]:after{content:var(--tw-content);width:calc((100vw - var(--statistic-bg-width))/2)}.uog\:after\:bg-inherit:after{content:var(--tw-content);background-color:inherit}.uog\:first\:before\:z-0:first-child:before,.uog\:last\:after\:z-0:last-child:after{content:var(--tw-content);z-index:0}.uog\:focus-within\:border-blue:focus-within{border-color:var(--uog-color-blue)}@media (hover:hover){.uog\:hover\:bg-red:hover{background-color:var(--uog-color-red)}.uog\:hover\:bg-red-focus:hover{background-color:var(--uog-color-red-focus)}.uog\:hover\:decoration-transparent:hover{text-decoration-color:#0000}}.uog\:focus\:bg-red-focus:focus{background-color:var(--uog-color-red-focus)}.uog\:focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.uog\:focus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus-visible\:ring-black:focus-visible{--tw-ring-color:var(--uog-color-black)}.uog\:focus-visible\:ring-blue:focus-visible{--tw-ring-color:var(--uog-color-blue)}.uog\:focus-visible\:ring-body-copy-link:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link)}.uog\:focus-visible\:ring-body-copy-link-on-light:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link-on-light)}.uog\:focus-visible\:ring-green:focus-visible{--tw-ring-color:var(--uog-color-green)}.uog\:focus-visible\:ring-red:focus-visible{--tw-ring-color:var(--uog-color-red)}.uog\:focus-visible\:ring-white:focus-visible{--tw-ring-color:var(--uog-color-white)}.uog\:focus-visible\:ring-yellow:focus-visible{--tw-ring-color:var(--uog-color-yellow)}.uog\:focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.uog\:focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.uog\:has-\[strong\]\:text-body-copy-bold:has(:is(strong)){color:var(--uog-color-body-copy-bold)}.uog\:data-\[closed\]\:opacity-0[data-closed]{opacity:0}.uog\:nth-\[2n\]\:border-red:nth-child(2n){border-color:var(--uog-color-red)}.uog\:nth-\[2n\]\:bg-red:nth-child(2n){background-color:var(--uog-color-red)}.uog\:nth-\[2n\]\:text-red-contrast:nth-child(2n){color:var(--uog-color-red-contrast)}.uog\:nth-\[3n\]\:border-yellow:nth-child(3n){border-color:var(--uog-color-yellow)}.uog\:nth-\[3n\]\:bg-yellow:nth-child(3n){background-color:var(--uog-color-yellow)}.uog\:nth-\[3n\]\:text-yellow-contrast:nth-child(3n){color:var(--uog-color-yellow-contrast)}.uog\:nth-\[4n\]\:border-blue:nth-child(4n){border-color:var(--uog-color-blue)}.uog\:nth-\[4n\]\:bg-blue:nth-child(4n){background-color:var(--uog-color-blue)}.uog\:nth-\[4n\]\:text-blue-contrast:nth-child(4n){color:var(--uog-color-blue-contrast)}@media (width>=40rem){.uog\:sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.uog\:sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.uog\:sm\:flex-row{flex-direction:row}.uog\:sm\:px-16{padding-inline:calc(var(--uog-spacing)*16)}.uog\:sm\:text-6xl{font-size:var(--uog-text-6xl);line-height:var(--tw-leading,var(--uog-text-6xl--line-height))}.uog\:sm\:before\:content-\[\"\"\]:before,.uog\:sm\:after\:content-\[\"\"\]:after{--tw-content:"";content:var(--tw-content)}}@media (width>=48rem){.uog\:md\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:md\:absolute{position:absolute}.uog\:md\:z-20{z-index:20}.uog\:md\:block{display:block}.uog\:md\:contents{display:contents}.uog\:md\:grid{display:grid}.uog\:md\:aspect-\[2\.625\]{aspect-ratio:2.625}.uog\:md\:w-1\/3{width:33.3333%}.uog\:md\:w-9{width:calc(var(--uog-spacing)*9)}.uog\:md\:flex-row{flex-direction:row}.uog\:md\:rounded-full{border-radius:3.40282e38px}.uog\:md\:bg-black\/70{background-color:color-mix(in oklab,var(--uog-color-black)70%,transparent)}.uog\:md\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:md\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:md\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}}@media (width>=64rem){.uog\:lg\:absolute{position:absolute}.uog\:lg\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:lg\:left-1\/2{left:50%}.uog\:lg\:container{width:100%}@media (width>=40rem){.uog\:lg\:container{max-width:40rem}}@media (width>=48rem){.uog\:lg\:container{max-width:48rem}}.uog\:lg\:container{max-width:64rem}@media (width>=80rem){.uog\:lg\:container{max-width:80rem}}@media (width>=96rem){.uog\:lg\:container{max-width:96rem}}.uog\:lg\:mx-auto{margin-inline:auto}.uog\:lg\:mt-auto{margin-top:auto}.uog\:lg\:ml-auto{margin-left:auto}.uog\:lg\:w-1\/2{width:50%}.uog\:lg\:max-w-7xl{max-width:var(--uog-container-7xl)}.uog\:lg\:max-w-\[50\%\]{max-width:50%}.uog\:lg\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.uog\:lg\:flex-row{flex-direction:row}.uog\:lg\:items-center{align-items:center}.uog\:lg\:items-end{align-items:flex-end}.uog\:lg\:bg-black\/80{background-color:color-mix(in oklab,var(--uog-color-black)80%,transparent)}.uog\:lg\:p-0{padding:calc(var(--uog-spacing)*0)}.uog\:lg\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:lg\:text-center{text-align:center}.uog\:lg\:text-right{text-align:right}.uog\:lg\:backdrop-blur{--tw-backdrop-blur:blur(8px);-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,)}}.uog\:ui-checked\:bg-black[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-black{background-color:var(--uog-color-black)}.uog\:ui-checked\:bg-blue[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-blue{background-color:var(--uog-color-blue)}.uog\:ui-checked\:bg-green[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-green{background-color:var(--uog-color-green)}.uog\:ui-checked\:bg-white[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-white{background-color:var(--uog-color-white)}.uog\:ui-checked\:bg-yellow[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:hocus-visible\:-translate-x-1:hover,.uog\:hocus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:translate-x-1:hover,.uog\:hocus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:bg-black:hover,.uog\:hocus-visible\:bg-black:focus-visible{background-color:var(--uog-color-black)}.uog\:hocus-visible\:bg-black-focus:hover,.uog\:hocus-visible\:bg-black-focus:focus-visible{background-color:var(--uog-color-black-focus)}.uog\:hocus-visible\:bg-blue:hover,.uog\:hocus-visible\:bg-blue:focus-visible{background-color:var(--uog-color-blue)}.uog\:hocus-visible\:bg-blue-focus:hover,.uog\:hocus-visible\:bg-blue-focus:focus-visible{background-color:var(--uog-color-blue-focus)}.uog\:hocus-visible\:bg-green:hover,.uog\:hocus-visible\:bg-green:focus-visible{background-color:var(--uog-color-green)}.uog\:hocus-visible\:bg-green-focus:hover,.uog\:hocus-visible\:bg-green-focus:focus-visible{background-color:var(--uog-color-green-focus)}.uog\:hocus-visible\:bg-grey-light:hover,.uog\:hocus-visible\:bg-grey-light:focus-visible{background-color:var(--uog-color-grey-light)}.uog\:hocus-visible\:bg-red:hover,.uog\:hocus-visible\:bg-red:focus-visible{background-color:var(--uog-color-red)}.uog\:hocus-visible\:bg-red-focus:hover,.uog\:hocus-visible\:bg-red-focus:focus-visible{background-color:var(--uog-color-red-focus)}.uog\:hocus-visible\:bg-yellow:hover,.uog\:hocus-visible\:bg-yellow:focus-visible{background-color:var(--uog-color-yellow)}.uog\:hocus-visible\:bg-yellow-focus:hover,.uog\:hocus-visible\:bg-yellow-focus:focus-visible{background-color:var(--uog-color-yellow-focus)}.uog\:hocus-visible\:text-black-contrast:hover,.uog\:hocus-visible\:text-black-contrast:focus-visible{color:var(--uog-color-black-contrast)}.uog\:hocus-visible\:text-blue-contrast:hover,.uog\:hocus-visible\:text-blue-contrast:focus-visible{color:var(--uog-color-blue-contrast)}.uog\:hocus-visible\:text-blue-focus:hover,.uog\:hocus-visible\:text-blue-focus:focus-visible{color:var(--uog-color-blue-focus)}.uog\:hocus-visible\:text-green-contrast:hover,.uog\:hocus-visible\:text-green-contrast:focus-visible{color:var(--uog-color-green-contrast)}.uog\:hocus-visible\:text-red-contrast:hover,.uog\:hocus-visible\:text-red-contrast:focus-visible{color:var(--uog-color-red-contrast)}.uog\:hocus-visible\:text-yellow-contrast:hover,.uog\:hocus-visible\:text-yellow-contrast:focus-visible{color:var(--uog-color-yellow-contrast)}.uog\:hocus-visible\:decoration-black:hover,.uog\:hocus-visible\:decoration-black:focus-visible{-webkit-text-decoration-color:var(--uog-color-black);text-decoration-color:var(--uog-color-black)}.uog\:hocus-visible\:decoration-transparent:hover,.uog\:hocus-visible\:decoration-transparent:focus-visible{text-decoration-color:#0000}.uog\:\[\&_p\:last-child\]\:mb-0 p:last-child{margin-bottom:calc(var(--uog-spacing)*0)}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}
|
package/dist/info.js
CHANGED
|
@@ -9,8 +9,8 @@ function u({ children: r, color: o = "red" }) {
|
|
|
9
9
|
yellow: "uog:border-l-yellow",
|
|
10
10
|
blue: "uog:border-l-blue",
|
|
11
11
|
green: "uog:border-l-green",
|
|
12
|
-
"light
|
|
13
|
-
"dark
|
|
12
|
+
"grey-light": "uog:border-l-grey-light",
|
|
13
|
+
"grey-dark": "uog:border-l-grey-dark",
|
|
14
14
|
black: "uog:border-l-black",
|
|
15
15
|
white: "uog:border-l-white"
|
|
16
16
|
}
|