/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

*,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}[type='text'], input:where(:not([type])), [type='email'], [type='url'], [type='password'], [type='number'], [type='date'], [type='datetime-local'], [type='month'], [type='search'], [type='tel'], [type='time'], [type='week'], [multiple], textarea, select { appearance: none;
background-color: #fff;
border-color: #6b7280;
border-width: 1px;
border-radius: 0;
padding-top: 0.5rem;
padding-right: 0.75rem;
padding-bottom: 0.5rem;
padding-left: 0.75rem;
font-size: 1rem;
line-height: 1.5rem;
--un-shadow: 0 0 #0000; }
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus { outline: 2px solid transparent;
outline-offset: 2px;
--un-ring-inset: var(--un-empty,/*!*/ /*!*/);
--un-ring-offset-width: 0px;
--un-ring-offset-color: #fff;
--un-ring-color: #2563eb;
--un-ring-offset-shadow: var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);
--un-ring-shadow: var(--un-ring-inset) 0 0 0 calc(1px + var(--un-ring-offset-width)) var(--un-ring-color);
box-shadow: var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);
border-color: #2563eb; }
input::placeholder, textarea::placeholder { color: #6b7280;
opacity: 1; }
::-webkit-datetime-edit-fields-wrapper { padding: 0; }
::-webkit-date-and-time-value { min-height: 1.5em; }
::-webkit-date-and-time-value { text-align: inherit; }
::-webkit-datetime-edit { display: inline-flex; }
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field { padding-top: 0;
padding-bottom: 0; }
select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
background-position: right 0.5rem center;
background-repeat: no-repeat;
background-size: 1.5em 1.5em;
padding-right: 2.5rem;
print-color-adjust: exact; }
[multiple] { background-image: initial;
background-position: initial;
background-repeat: unset;
background-size: initial;
padding-right: 0.75rem;
print-color-adjust: unset; }
[type='checkbox'], [type='radio'] { appearance: none;
padding: 0;
print-color-adjust: exact;
display: inline-block;
vertical-align: middle;
background-origin: border-box;
user-select: none;
flex-shrink: 0;
height: 1rem;
width: 1rem;
color: #2563eb;
background-color: #fff;
border-color: #6b7280;
border-width: 1px;
--un-shadow: 0 0 #0000; }
[type='checkbox'] { border-radius: 0; }
[type='radio'] { border-radius: 100%; }
[type='checkbox']:focus, [type='radio']:focus { outline: 2px solid transparent;
outline-offset: 2px;
--un-ring-inset: var(--un-empty,/*!*/ /*!*/);
--un-ring-offset-width: 2px;
--un-ring-offset-color: #fff;
--un-ring-color: #2563eb;
--un-ring-offset-shadow: var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);
--un-ring-shadow: var(--un-ring-inset) 0 0 0 calc(2px + var(--un-ring-offset-width)) var(--un-ring-color);
box-shadow: var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow); }
[type='checkbox']:checked, [type='radio']:checked { border-color: transparent;
background-color: currentColor;
background-size: 100% 100%;
background-position: center;
background-repeat: no-repeat; }
[type='checkbox']:checked { background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e"); }
[type='radio']:checked { background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); }
[type='checkbox']:checked:hover, [type='checkbox']:checked:focus, [type='radio']:checked:hover, [type='radio']:checked:focus { border-color: transparent;
background-color: currentColor; }
[type='checkbox']:indeterminate { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
border-color: transparent;
background-color: currentColor;
background-size: 100% 100%;
background-position: center;
background-repeat: no-repeat; }
[type='checkbox']:indeterminate:hover, [type='checkbox']:indeterminate:focus { border-color: transparent;
background-color: currentColor; }
[type='file'] { background: unset;
border-color: inherit;
border-width: 0;
border-radius: 0;
padding: 0;
font-size: unset;
line-height: inherit; }
[type='file']:focus { outline: 1px solid ButtonText , 1px auto -webkit-focus-ring-color; }/* cyrillic-ext */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firacode/v22/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sJV37Nv7g.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firacode/v22/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sJVT7Nv7g.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firacode/v22/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sJVz7Nv7g.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firacode/v22/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sJVP7Nv7g.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firacode/v22/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sJV77Nv7g.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firacode/v22/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sJVD7Ng.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtgK_7SodY.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtgIv7SodY.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtgKv7SodY.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtgJf7SodY.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtgKP7SodY.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtgJv7S.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondvHk_fUWZA.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondvHmvfUWZA.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondvHkvfUWZA.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondvHnffUWZA.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondvHkPfUWZA.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondvHnvfU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxsAUi-qJCY.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxsAXC-q.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wq_FQft1dw.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wq_Gwft.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwXjeu.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwaPGR_p.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Lobster';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lobster/v30/neILzCirqoswsqX9zo-mM5Ez.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Lobster';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lobster/v30/neILzCirqoswsqX9zoamM5Ez.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Lobster';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lobster/v30/neILzCirqoswsqX9zo2mM5Ez.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Lobster';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lobster/v30/neILzCirqoswsqX9zoymM5Ez.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lobster';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lobster/v30/neILzCirqoswsqX9zoKmMw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787weuxJMkq1umA.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787weuxJFkq1umA.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* math */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787weuxI9kq1umA.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0330, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2034-2037, U+2057, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2102, U+210A-210E, U+2110-2112, U+2115, U+2119-211D, U+2124, U+2128, U+212C-212D, U+212F-2131, U+2133-2138, U+213C-2140, U+2145-2149, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B6, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787weuxIvkq1umA.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8B1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA88, U+1FA90-1FABD, U+1FABF-1FAC5, U+1FACE-1FADB, U+1FAE0-1FAE8, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787weuxJOkq1umA.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787weuxJPkq1umA.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787weuxJBkq0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvXDTbtPY_Q.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvXDYbtPY_Q.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvXDZbtPY_Q.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvXDXbtM.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.bg-blue-100{--un-bg-opacity:1;background-color:rgb(219 234 254 / var(--un-bg-opacity));}
.bg-blue-200{--un-bg-opacity:1;background-color:rgb(191 219 254 / var(--un-bg-opacity));}
.bg-blue-300{--un-bg-opacity:1;background-color:rgb(147 197 253 / var(--un-bg-opacity));}
.bg-blue-400{--un-bg-opacity:1;background-color:rgb(96 165 250 / var(--un-bg-opacity));}
.bg-blue-50{--un-bg-opacity:1;background-color:rgb(239 246 255 / var(--un-bg-opacity));}
.bg-blue-500{--un-bg-opacity:1;background-color:rgb(59 130 246 / var(--un-bg-opacity));}
.bg-blue-600{--un-bg-opacity:1;background-color:rgb(37 99 235 / var(--un-bg-opacity));}
.bg-blue-700{--un-bg-opacity:1;background-color:rgb(29 78 216 / var(--un-bg-opacity));}
.bg-blue-800{--un-bg-opacity:1;background-color:rgb(30 64 175 / var(--un-bg-opacity));}
.bg-blue-900{--un-bg-opacity:1;background-color:rgb(30 58 138 / var(--un-bg-opacity));}
.bg-blue-950{--un-bg-opacity:1;background-color:rgb(23 37 84 / var(--un-bg-opacity));}
.bg-green-100{--un-bg-opacity:1;background-color:rgb(220 252 231 / var(--un-bg-opacity));}
.bg-green-200{--un-bg-opacity:1;background-color:rgb(187 247 208 / var(--un-bg-opacity));}
.bg-green-300{--un-bg-opacity:1;background-color:rgb(134 239 172 / var(--un-bg-opacity));}
.bg-green-400{--un-bg-opacity:1;background-color:rgb(74 222 128 / var(--un-bg-opacity));}
.bg-green-50{--un-bg-opacity:1;background-color:rgb(240 253 244 / var(--un-bg-opacity));}
.bg-green-500{--un-bg-opacity:1;background-color:rgb(34 197 94 / var(--un-bg-opacity));}
.bg-green-600{--un-bg-opacity:1;background-color:rgb(22 163 74 / var(--un-bg-opacity));}
.bg-green-700{--un-bg-opacity:1;background-color:rgb(21 128 61 / var(--un-bg-opacity));}
.bg-green-800{--un-bg-opacity:1;background-color:rgb(22 101 52 / var(--un-bg-opacity));}
.bg-green-900{--un-bg-opacity:1;background-color:rgb(20 83 45 / var(--un-bg-opacity));}
.bg-green-950{--un-bg-opacity:1;background-color:rgb(5 46 22 / var(--un-bg-opacity));}
.bg-monochrome-100{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-100) / var(--un-bg-opacity));}
.bg-monochrome-200{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-200) / var(--un-bg-opacity));}
.bg-monochrome-300{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-300) / var(--un-bg-opacity));}
.bg-monochrome-400{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-400) / var(--un-bg-opacity));}
.bg-monochrome-50{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-50) / var(--un-bg-opacity));}
.bg-monochrome-500{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-500) / var(--un-bg-opacity));}
.bg-monochrome-600{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-600) / var(--un-bg-opacity));}
.bg-monochrome-700{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-700) / var(--un-bg-opacity));}
.bg-monochrome-800{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-800) / var(--un-bg-opacity));}
.bg-monochrome-900{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-900) / var(--un-bg-opacity));}
.bg-monochrome-950{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-950) / var(--un-bg-opacity));}
.bg-pink-100{--un-bg-opacity:1;background-color:rgb(252 231 243 / var(--un-bg-opacity));}
.bg-pink-200{--un-bg-opacity:1;background-color:rgb(251 207 232 / var(--un-bg-opacity));}
.bg-pink-300{--un-bg-opacity:1;background-color:rgb(249 168 212 / var(--un-bg-opacity));}
.bg-pink-400{--un-bg-opacity:1;background-color:rgb(244 114 182 / var(--un-bg-opacity));}
.bg-pink-50{--un-bg-opacity:1;background-color:rgb(253 242 248 / var(--un-bg-opacity));}
.bg-pink-500{--un-bg-opacity:1;background-color:rgb(236 72 153 / var(--un-bg-opacity));}
.bg-pink-600{--un-bg-opacity:1;background-color:rgb(219 39 119 / var(--un-bg-opacity));}
.bg-pink-700{--un-bg-opacity:1;background-color:rgb(190 24 93 / var(--un-bg-opacity));}
.bg-pink-800{--un-bg-opacity:1;background-color:rgb(157 23 77 / var(--un-bg-opacity));}
.bg-pink-900{--un-bg-opacity:1;background-color:rgb(131 24 67 / var(--un-bg-opacity));}
.bg-pink-950{--un-bg-opacity:1;background-color:rgb(80 7 36 / var(--un-bg-opacity));}
.bg-primary-100{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-100) / var(--un-bg-opacity));}
.bg-primary-200{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-200) / var(--un-bg-opacity));}
.bg-primary-300{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-300) / var(--un-bg-opacity));}
.bg-primary-400{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-400) / var(--un-bg-opacity));}
.bg-primary-50{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-50) / var(--un-bg-opacity));}
.bg-primary-500{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-500) / var(--un-bg-opacity));}
.bg-primary-600{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-600) / var(--un-bg-opacity));}
.bg-primary-700{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-700) / var(--un-bg-opacity));}
.bg-primary-800{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-800) / var(--un-bg-opacity));}
.bg-primary-900{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-900) / var(--un-bg-opacity));}
.bg-primary-950{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-950) / var(--un-bg-opacity));}
.bg-secondary-100{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-100) / var(--un-bg-opacity));}
.bg-secondary-200{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-200) / var(--un-bg-opacity));}
.bg-secondary-300{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-300) / var(--un-bg-opacity));}
.bg-secondary-400{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-400) / var(--un-bg-opacity));}
.bg-secondary-50{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-50) / var(--un-bg-opacity));}
.bg-secondary-500{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-500) / var(--un-bg-opacity));}
.bg-secondary-600{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-600) / var(--un-bg-opacity));}
.bg-secondary-700{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-700) / var(--un-bg-opacity));}
.bg-secondary-800{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-800) / var(--un-bg-opacity));}
.bg-secondary-900{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-900) / var(--un-bg-opacity));}
.bg-secondary-950{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-950) / var(--un-bg-opacity));}
.bg-selection-100{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-100) / var(--un-bg-opacity));}
.bg-selection-200{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-200) / var(--un-bg-opacity));}
.bg-selection-300{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-300) / var(--un-bg-opacity));}
.bg-selection-400{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-400) / var(--un-bg-opacity));}
.bg-selection-50{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-50) / var(--un-bg-opacity));}
.bg-selection-500{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-500) / var(--un-bg-opacity));}
.bg-selection-600{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-600) / var(--un-bg-opacity));}
.bg-selection-700{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-700) / var(--un-bg-opacity));}
.bg-selection-800{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-800) / var(--un-bg-opacity));}
.bg-selection-900{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-900) / var(--un-bg-opacity));}
.bg-selection-950{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-950) / var(--un-bg-opacity));}
.bg-yellow-100{--un-bg-opacity:1;background-color:rgb(254 249 195 / var(--un-bg-opacity));}
.bg-yellow-200{--un-bg-opacity:1;background-color:rgb(254 240 138 / var(--un-bg-opacity));}
.bg-yellow-300{--un-bg-opacity:1;background-color:rgb(253 224 71 / var(--un-bg-opacity));}
.bg-yellow-400{--un-bg-opacity:1;background-color:rgb(250 204 21 / var(--un-bg-opacity));}
.bg-yellow-50{--un-bg-opacity:1;background-color:rgb(254 252 232 / var(--un-bg-opacity));}
.bg-yellow-500{--un-bg-opacity:1;background-color:rgb(234 179 8 / var(--un-bg-opacity));}
.bg-yellow-600{--un-bg-opacity:1;background-color:rgb(202 138 4 / var(--un-bg-opacity));}
.bg-yellow-700{--un-bg-opacity:1;background-color:rgb(161 98 7 / var(--un-bg-opacity));}
.bg-yellow-800{--un-bg-opacity:1;background-color:rgb(133 77 14 / var(--un-bg-opacity));}
.bg-yellow-900{--un-bg-opacity:1;background-color:rgb(113 63 18 / var(--un-bg-opacity));}
.bg-yellow-950{--un-bg-opacity:1;background-color:rgb(66 32 6 / var(--un-bg-opacity));}
.text-blue-100{--un-text-opacity:1;color:rgb(219 234 254 / var(--un-text-opacity));}
.text-blue-200{--un-text-opacity:1;color:rgb(191 219 254 / var(--un-text-opacity));}
.text-blue-300{--un-text-opacity:1;color:rgb(147 197 253 / var(--un-text-opacity));}
.text-blue-400{--un-text-opacity:1;color:rgb(96 165 250 / var(--un-text-opacity));}
.text-blue-50{--un-text-opacity:1;color:rgb(239 246 255 / var(--un-text-opacity));}
.text-blue-500{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity));}
.text-blue-600{--un-text-opacity:1;color:rgb(37 99 235 / var(--un-text-opacity));}
.text-blue-700{--un-text-opacity:1;color:rgb(29 78 216 / var(--un-text-opacity));}
.text-blue-800{--un-text-opacity:1;color:rgb(30 64 175 / var(--un-text-opacity));}
.text-blue-900{--un-text-opacity:1;color:rgb(30 58 138 / var(--un-text-opacity));}
.text-blue-950{--un-text-opacity:1;color:rgb(23 37 84 / var(--un-text-opacity));}
.text-green-100{--un-text-opacity:1;color:rgb(220 252 231 / var(--un-text-opacity));}
.text-green-200{--un-text-opacity:1;color:rgb(187 247 208 / var(--un-text-opacity));}
.text-green-300{--un-text-opacity:1;color:rgb(134 239 172 / var(--un-text-opacity));}
.text-green-400{--un-text-opacity:1;color:rgb(74 222 128 / var(--un-text-opacity));}
.text-green-50{--un-text-opacity:1;color:rgb(240 253 244 / var(--un-text-opacity));}
.text-green-500{--un-text-opacity:1;color:rgb(34 197 94 / var(--un-text-opacity));}
.text-green-600{--un-text-opacity:1;color:rgb(22 163 74 / var(--un-text-opacity));}
.text-green-700{--un-text-opacity:1;color:rgb(21 128 61 / var(--un-text-opacity));}
.text-green-800{--un-text-opacity:1;color:rgb(22 101 52 / var(--un-text-opacity));}
.text-green-900{--un-text-opacity:1;color:rgb(20 83 45 / var(--un-text-opacity));}
.text-green-950{--un-text-opacity:1;color:rgb(5 46 22 / var(--un-text-opacity));}
.text-monochrome-100{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-100) / var(--un-text-opacity));}
.text-monochrome-200{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-200) / var(--un-text-opacity));}
.text-monochrome-300{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-300) / var(--un-text-opacity));}
.text-monochrome-400{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-400) / var(--un-text-opacity));}
.text-monochrome-50{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-50) / var(--un-text-opacity));}
.text-monochrome-500{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-500) / var(--un-text-opacity));}
.text-monochrome-600{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-600) / var(--un-text-opacity));}
.text-monochrome-700{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-700) / var(--un-text-opacity));}
.text-monochrome-800{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-800) / var(--un-text-opacity));}
.text-monochrome-900{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-900) / var(--un-text-opacity));}
.text-monochrome-950{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-950) / var(--un-text-opacity));}
.text-pink-100{--un-text-opacity:1;color:rgb(252 231 243 / var(--un-text-opacity));}
.text-pink-200{--un-text-opacity:1;color:rgb(251 207 232 / var(--un-text-opacity));}
.text-pink-300{--un-text-opacity:1;color:rgb(249 168 212 / var(--un-text-opacity));}
.text-pink-400{--un-text-opacity:1;color:rgb(244 114 182 / var(--un-text-opacity));}
.text-pink-50{--un-text-opacity:1;color:rgb(253 242 248 / var(--un-text-opacity));}
.text-pink-500{--un-text-opacity:1;color:rgb(236 72 153 / var(--un-text-opacity));}
.text-pink-600{--un-text-opacity:1;color:rgb(219 39 119 / var(--un-text-opacity));}
.text-pink-700{--un-text-opacity:1;color:rgb(190 24 93 / var(--un-text-opacity));}
.text-pink-800{--un-text-opacity:1;color:rgb(157 23 77 / var(--un-text-opacity));}
.text-pink-900{--un-text-opacity:1;color:rgb(131 24 67 / var(--un-text-opacity));}
.text-pink-950{--un-text-opacity:1;color:rgb(80 7 36 / var(--un-text-opacity));}
.text-primary-100{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-100) / var(--un-text-opacity));}
.text-primary-200{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-200) / var(--un-text-opacity));}
.text-primary-300{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-300) / var(--un-text-opacity));}
.text-primary-400{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-400) / var(--un-text-opacity));}
.text-primary-50{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-50) / var(--un-text-opacity));}
.text-primary-500{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-500) / var(--un-text-opacity));}
.text-primary-600{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-600) / var(--un-text-opacity));}
.text-primary-700{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-700) / var(--un-text-opacity));}
.text-primary-800{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-800) / var(--un-text-opacity));}
.text-primary-900{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-900) / var(--un-text-opacity));}
.text-primary-950{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-950) / var(--un-text-opacity));}
.text-secondary-100{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-100) / var(--un-text-opacity));}
.text-secondary-200{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-200) / var(--un-text-opacity));}
.text-secondary-300{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-300) / var(--un-text-opacity));}
.text-secondary-400{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-400) / var(--un-text-opacity));}
.text-secondary-50{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-50) / var(--un-text-opacity));}
.text-secondary-500{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-500) / var(--un-text-opacity));}
.text-secondary-600{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-600) / var(--un-text-opacity));}
.text-secondary-700{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-700) / var(--un-text-opacity));}
.text-secondary-800{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-800) / var(--un-text-opacity));}
.text-secondary-900{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-900) / var(--un-text-opacity));}
.text-secondary-950{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-950) / var(--un-text-opacity));}
.text-selection-100{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-100) / var(--un-text-opacity));}
.text-selection-200{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-200) / var(--un-text-opacity));}
.text-selection-300{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-300) / var(--un-text-opacity));}
.text-selection-400{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-400) / var(--un-text-opacity));}
.text-selection-50{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-50) / var(--un-text-opacity));}
.text-selection-500{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-500) / var(--un-text-opacity));}
.text-selection-600{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-600) / var(--un-text-opacity));}
.text-selection-700{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-700) / var(--un-text-opacity));}
.text-selection-800{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-800) / var(--un-text-opacity));}
.text-selection-900{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-900) / var(--un-text-opacity));}
.text-selection-950{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-950) / var(--un-text-opacity));}
.text-yellow-100{--un-text-opacity:1;color:rgb(254 249 195 / var(--un-text-opacity));}
.text-yellow-200{--un-text-opacity:1;color:rgb(254 240 138 / var(--un-text-opacity));}
.text-yellow-300{--un-text-opacity:1;color:rgb(253 224 71 / var(--un-text-opacity));}
.text-yellow-400{--un-text-opacity:1;color:rgb(250 204 21 / var(--un-text-opacity));}
.text-yellow-50{--un-text-opacity:1;color:rgb(254 252 232 / var(--un-text-opacity));}
.text-yellow-500{--un-text-opacity:1;color:rgb(234 179 8 / var(--un-text-opacity));}
.text-yellow-600{--un-text-opacity:1;color:rgb(202 138 4 / var(--un-text-opacity));}
.text-yellow-700{--un-text-opacity:1;color:rgb(161 98 7 / var(--un-text-opacity));}
.text-yellow-800{--un-text-opacity:1;color:rgb(133 77 14 / var(--un-text-opacity));}
.text-yellow-900{--un-text-opacity:1;color:rgb(113 63 18 / var(--un-text-opacity));}
.text-yellow-950{--un-text-opacity:1;color:rgb(66 32 6 / var(--un-text-opacity));}
.outline-blue-100{--un-outline-color-opacity:1;outline-color:rgb(219 234 254 / var(--un-outline-color-opacity));}
.outline-blue-200{--un-outline-color-opacity:1;outline-color:rgb(191 219 254 / var(--un-outline-color-opacity));}
.outline-blue-300{--un-outline-color-opacity:1;outline-color:rgb(147 197 253 / var(--un-outline-color-opacity));}
.outline-blue-400{--un-outline-color-opacity:1;outline-color:rgb(96 165 250 / var(--un-outline-color-opacity));}
.outline-blue-50{--un-outline-color-opacity:1;outline-color:rgb(239 246 255 / var(--un-outline-color-opacity));}
.outline-blue-500{--un-outline-color-opacity:1;outline-color:rgb(59 130 246 / var(--un-outline-color-opacity));}
.outline-blue-600{--un-outline-color-opacity:1;outline-color:rgb(37 99 235 / var(--un-outline-color-opacity));}
.outline-blue-700{--un-outline-color-opacity:1;outline-color:rgb(29 78 216 / var(--un-outline-color-opacity));}
.outline-blue-800{--un-outline-color-opacity:1;outline-color:rgb(30 64 175 / var(--un-outline-color-opacity));}
.outline-blue-900{--un-outline-color-opacity:1;outline-color:rgb(30 58 138 / var(--un-outline-color-opacity));}
.outline-blue-950{--un-outline-color-opacity:1;outline-color:rgb(23 37 84 / var(--un-outline-color-opacity));}
.outline-green-100{--un-outline-color-opacity:1;outline-color:rgb(220 252 231 / var(--un-outline-color-opacity));}
.outline-green-200{--un-outline-color-opacity:1;outline-color:rgb(187 247 208 / var(--un-outline-color-opacity));}
.outline-green-300{--un-outline-color-opacity:1;outline-color:rgb(134 239 172 / var(--un-outline-color-opacity));}
.outline-green-400{--un-outline-color-opacity:1;outline-color:rgb(74 222 128 / var(--un-outline-color-opacity));}
.outline-green-50{--un-outline-color-opacity:1;outline-color:rgb(240 253 244 / var(--un-outline-color-opacity));}
.outline-green-500{--un-outline-color-opacity:1;outline-color:rgb(34 197 94 / var(--un-outline-color-opacity));}
.outline-green-600{--un-outline-color-opacity:1;outline-color:rgb(22 163 74 / var(--un-outline-color-opacity));}
.outline-green-700{--un-outline-color-opacity:1;outline-color:rgb(21 128 61 / var(--un-outline-color-opacity));}
.outline-green-800{--un-outline-color-opacity:1;outline-color:rgb(22 101 52 / var(--un-outline-color-opacity));}
.outline-green-900{--un-outline-color-opacity:1;outline-color:rgb(20 83 45 / var(--un-outline-color-opacity));}
.outline-green-950{--un-outline-color-opacity:1;outline-color:rgb(5 46 22 / var(--un-outline-color-opacity));}
.outline-monochrome-100{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-100) / var(--un-outline-color-opacity));}
.outline-monochrome-200{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-200) / var(--un-outline-color-opacity));}
.outline-monochrome-300{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-300) / var(--un-outline-color-opacity));}
.outline-monochrome-400{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-400) / var(--un-outline-color-opacity));}
.outline-monochrome-50{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-50) / var(--un-outline-color-opacity));}
.outline-monochrome-500{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-500) / var(--un-outline-color-opacity));}
.outline-monochrome-600{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-600) / var(--un-outline-color-opacity));}
.outline-monochrome-700{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-700) / var(--un-outline-color-opacity));}
.outline-monochrome-800{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-800) / var(--un-outline-color-opacity));}
.outline-monochrome-900{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-900) / var(--un-outline-color-opacity));}
.outline-monochrome-950{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-950) / var(--un-outline-color-opacity));}
.outline-pink-100{--un-outline-color-opacity:1;outline-color:rgb(252 231 243 / var(--un-outline-color-opacity));}
.outline-pink-200{--un-outline-color-opacity:1;outline-color:rgb(251 207 232 / var(--un-outline-color-opacity));}
.outline-pink-300{--un-outline-color-opacity:1;outline-color:rgb(249 168 212 / var(--un-outline-color-opacity));}
.outline-pink-400{--un-outline-color-opacity:1;outline-color:rgb(244 114 182 / var(--un-outline-color-opacity));}
.outline-pink-50{--un-outline-color-opacity:1;outline-color:rgb(253 242 248 / var(--un-outline-color-opacity));}
.outline-pink-500{--un-outline-color-opacity:1;outline-color:rgb(236 72 153 / var(--un-outline-color-opacity));}
.outline-pink-600{--un-outline-color-opacity:1;outline-color:rgb(219 39 119 / var(--un-outline-color-opacity));}
.outline-pink-700{--un-outline-color-opacity:1;outline-color:rgb(190 24 93 / var(--un-outline-color-opacity));}
.outline-pink-800{--un-outline-color-opacity:1;outline-color:rgb(157 23 77 / var(--un-outline-color-opacity));}
.outline-pink-900{--un-outline-color-opacity:1;outline-color:rgb(131 24 67 / var(--un-outline-color-opacity));}
.outline-pink-950{--un-outline-color-opacity:1;outline-color:rgb(80 7 36 / var(--un-outline-color-opacity));}
.outline-primary-100{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-100) / var(--un-outline-color-opacity));}
.outline-primary-200{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-200) / var(--un-outline-color-opacity));}
.outline-primary-300{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-300) / var(--un-outline-color-opacity));}
.outline-primary-400{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-400) / var(--un-outline-color-opacity));}
.outline-primary-50{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-50) / var(--un-outline-color-opacity));}
.outline-primary-500{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-500) / var(--un-outline-color-opacity));}
.outline-primary-600{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-600) / var(--un-outline-color-opacity));}
.outline-primary-700{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-700) / var(--un-outline-color-opacity));}
.outline-primary-800{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-800) / var(--un-outline-color-opacity));}
.outline-primary-900{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-900) / var(--un-outline-color-opacity));}
.outline-primary-950{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-950) / var(--un-outline-color-opacity));}
.outline-secondary-100{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-100) / var(--un-outline-color-opacity));}
.outline-secondary-200{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-200) / var(--un-outline-color-opacity));}
.outline-secondary-300{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-300) / var(--un-outline-color-opacity));}
.outline-secondary-400{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-400) / var(--un-outline-color-opacity));}
.outline-secondary-50{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-50) / var(--un-outline-color-opacity));}
.outline-secondary-500{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-500) / var(--un-outline-color-opacity));}
.outline-secondary-600{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-600) / var(--un-outline-color-opacity));}
.outline-secondary-700{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-700) / var(--un-outline-color-opacity));}
.outline-secondary-800{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-800) / var(--un-outline-color-opacity));}
.outline-secondary-900{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-900) / var(--un-outline-color-opacity));}
.outline-secondary-950{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-950) / var(--un-outline-color-opacity));}
.outline-selection-100{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-100) / var(--un-outline-color-opacity));}
.outline-selection-200{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-200) / var(--un-outline-color-opacity));}
.outline-selection-300{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-300) / var(--un-outline-color-opacity));}
.outline-selection-400{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-400) / var(--un-outline-color-opacity));}
.outline-selection-50{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-50) / var(--un-outline-color-opacity));}
.outline-selection-500{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-500) / var(--un-outline-color-opacity));}
.outline-selection-600{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-600) / var(--un-outline-color-opacity));}
.outline-selection-700{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-700) / var(--un-outline-color-opacity));}
.outline-selection-800{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-800) / var(--un-outline-color-opacity));}
.outline-selection-900{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-900) / var(--un-outline-color-opacity));}
.outline-selection-950{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-950) / var(--un-outline-color-opacity));}
.outline-yellow-100{--un-outline-color-opacity:1;outline-color:rgb(254 249 195 / var(--un-outline-color-opacity));}
.outline-yellow-200{--un-outline-color-opacity:1;outline-color:rgb(254 240 138 / var(--un-outline-color-opacity));}
.outline-yellow-300{--un-outline-color-opacity:1;outline-color:rgb(253 224 71 / var(--un-outline-color-opacity));}
.outline-yellow-400{--un-outline-color-opacity:1;outline-color:rgb(250 204 21 / var(--un-outline-color-opacity));}
.outline-yellow-50{--un-outline-color-opacity:1;outline-color:rgb(254 252 232 / var(--un-outline-color-opacity));}
.outline-yellow-500{--un-outline-color-opacity:1;outline-color:rgb(234 179 8 / var(--un-outline-color-opacity));}
.outline-yellow-600{--un-outline-color-opacity:1;outline-color:rgb(202 138 4 / var(--un-outline-color-opacity));}
.outline-yellow-700{--un-outline-color-opacity:1;outline-color:rgb(161 98 7 / var(--un-outline-color-opacity));}
.outline-yellow-800{--un-outline-color-opacity:1;outline-color:rgb(133 77 14 / var(--un-outline-color-opacity));}
.outline-yellow-900{--un-outline-color-opacity:1;outline-color:rgb(113 63 18 / var(--un-outline-color-opacity));}
.outline-yellow-950{--un-outline-color-opacity:1;outline-color:rgb(66 32 6 / var(--un-outline-color-opacity));}
.blue{--un-preset-theme-colors-primary-50:239 246 255;--un-preset-theme-colors-primary-100:219 234 254;--un-preset-theme-colors-primary-200:191 219 254;--un-preset-theme-colors-primary-300:147 197 253;--un-preset-theme-colors-primary-400:96 165 250;--un-preset-theme-colors-primary-500:59 130 246;--un-preset-theme-colors-primary-600:37 99 235;--un-preset-theme-colors-primary-700:29 78 216;--un-preset-theme-colors-primary-800:30 64 175;--un-preset-theme-colors-primary-900:30 58 138;--un-preset-theme-colors-primary-950:23 37 84;--un-preset-theme-colors-secondary-50:250 245 255;--un-preset-theme-colors-secondary-100:243 232 255;--un-preset-theme-colors-secondary-200:233 213 255;--un-preset-theme-colors-secondary-300:216 180 254;--un-preset-theme-colors-secondary-400:192 132 252;--un-preset-theme-colors-secondary-500:168 85 247;--un-preset-theme-colors-secondary-600:147 51 234;--un-preset-theme-colors-secondary-700:126 34 206;--un-preset-theme-colors-secondary-800:107 33 168;--un-preset-theme-colors-secondary-900:88 28 135;--un-preset-theme-colors-secondary-950:59 7 100;--un-preset-theme-colors-monochrome-50:248 250 252;--un-preset-theme-colors-monochrome-100:241 245 249;--un-preset-theme-colors-monochrome-200:226 232 240;--un-preset-theme-colors-monochrome-300:203 213 225;--un-preset-theme-colors-monochrome-400:148 163 184;--un-preset-theme-colors-monochrome-500:100 116 139;--un-preset-theme-colors-monochrome-600:71 85 105;--un-preset-theme-colors-monochrome-700:51 65 85;--un-preset-theme-colors-monochrome-800:30 41 59;--un-preset-theme-colors-monochrome-900:15 23 42;--un-preset-theme-colors-monochrome-950:2 6 23;--un-preset-theme-colors-selection-50:255 251 235;--un-preset-theme-colors-selection-100:254 243 199;--un-preset-theme-colors-selection-200:253 230 138;--un-preset-theme-colors-selection-300:252 211 77;--un-preset-theme-colors-selection-400:251 191 36;--un-preset-theme-colors-selection-500:245 158 11;--un-preset-theme-colors-selection-600:217 119 6;--un-preset-theme-colors-selection-700:180 83 9;--un-preset-theme-colors-selection-800:146 64 14;--un-preset-theme-colors-selection-900:120 53 15;--un-preset-theme-colors-selection-950:69 26 3;}
.green{--un-preset-theme-colors-primary-50:240 253 244;--un-preset-theme-colors-primary-100:220 252 231;--un-preset-theme-colors-primary-200:187 247 208;--un-preset-theme-colors-primary-300:134 239 172;--un-preset-theme-colors-primary-400:74 222 128;--un-preset-theme-colors-primary-500:34 197 94;--un-preset-theme-colors-primary-600:22 163 74;--un-preset-theme-colors-primary-700:21 128 61;--un-preset-theme-colors-primary-800:22 101 52;--un-preset-theme-colors-primary-900:20 83 45;--un-preset-theme-colors-primary-950:5 46 22;--un-preset-theme-colors-secondary-50:255 247 237;--un-preset-theme-colors-secondary-100:255 237 213;--un-preset-theme-colors-secondary-200:254 215 170;--un-preset-theme-colors-secondary-300:253 186 116;--un-preset-theme-colors-secondary-400:251 146 60;--un-preset-theme-colors-secondary-500:249 115 22;--un-preset-theme-colors-secondary-600:234 88 12;--un-preset-theme-colors-secondary-700:194 65 12;--un-preset-theme-colors-secondary-800:154 52 18;--un-preset-theme-colors-secondary-900:124 45 18;--un-preset-theme-colors-secondary-950:67 20 7;--un-preset-theme-colors-monochrome-50:249 250 251;--un-preset-theme-colors-monochrome-100:243 244 246;--un-preset-theme-colors-monochrome-200:229 231 235;--un-preset-theme-colors-monochrome-300:209 213 219;--un-preset-theme-colors-monochrome-400:156 163 175;--un-preset-theme-colors-monochrome-500:107 114 128;--un-preset-theme-colors-monochrome-600:75 85 99;--un-preset-theme-colors-monochrome-700:55 65 81;--un-preset-theme-colors-monochrome-800:31 41 55;--un-preset-theme-colors-monochrome-900:17 24 39;--un-preset-theme-colors-monochrome-950:3 7 18;--un-preset-theme-colors-selection-50:239 246 255;--un-preset-theme-colors-selection-100:219 234 254;--un-preset-theme-colors-selection-200:191 219 254;--un-preset-theme-colors-selection-300:147 197 253;--un-preset-theme-colors-selection-400:96 165 250;--un-preset-theme-colors-selection-500:59 130 246;--un-preset-theme-colors-selection-600:37 99 235;--un-preset-theme-colors-selection-700:29 78 216;--un-preset-theme-colors-selection-800:30 64 175;--un-preset-theme-colors-selection-900:30 58 138;--un-preset-theme-colors-selection-950:23 37 84;}
.pink{--un-preset-theme-colors-primary-50:253 242 248;--un-preset-theme-colors-primary-100:252 231 243;--un-preset-theme-colors-primary-200:251 207 232;--un-preset-theme-colors-primary-300:249 168 212;--un-preset-theme-colors-primary-400:244 114 182;--un-preset-theme-colors-primary-500:236 72 153;--un-preset-theme-colors-primary-600:219 39 119;--un-preset-theme-colors-primary-700:190 24 93;--un-preset-theme-colors-primary-800:157 23 77;--un-preset-theme-colors-primary-900:131 24 67;--un-preset-theme-colors-primary-950:80 7 36;--un-preset-theme-colors-secondary-50:255 241 242;--un-preset-theme-colors-secondary-100:255 228 230;--un-preset-theme-colors-secondary-200:254 205 211;--un-preset-theme-colors-secondary-300:253 164 175;--un-preset-theme-colors-secondary-400:251 113 133;--un-preset-theme-colors-secondary-500:244 63 94;--un-preset-theme-colors-secondary-600:225 29 72;--un-preset-theme-colors-secondary-700:190 18 60;--un-preset-theme-colors-secondary-800:159 18 57;--un-preset-theme-colors-secondary-900:136 19 55;--un-preset-theme-colors-secondary-950:76 5 25;--un-preset-theme-colors-monochrome-50:250 250 249;--un-preset-theme-colors-monochrome-100:245 245 244;--un-preset-theme-colors-monochrome-200:231 229 228;--un-preset-theme-colors-monochrome-300:214 211 209;--un-preset-theme-colors-monochrome-400:168 162 158;--un-preset-theme-colors-monochrome-500:120 113 108;--un-preset-theme-colors-monochrome-600:87 83 78;--un-preset-theme-colors-monochrome-700:68 64 60;--un-preset-theme-colors-monochrome-800:41 37 36;--un-preset-theme-colors-monochrome-900:28 25 23;--un-preset-theme-colors-monochrome-950:12 10 9;--un-preset-theme-colors-selection-50:239 246 255;--un-preset-theme-colors-selection-100:219 234 254;--un-preset-theme-colors-selection-200:191 219 254;--un-preset-theme-colors-selection-300:147 197 253;--un-preset-theme-colors-selection-400:96 165 250;--un-preset-theme-colors-selection-500:59 130 246;--un-preset-theme-colors-selection-600:37 99 235;--un-preset-theme-colors-selection-700:29 78 216;--un-preset-theme-colors-selection-800:30 64 175;--un-preset-theme-colors-selection-900:30 58 138;--un-preset-theme-colors-selection-950:23 37 84;}
.yellow{--un-preset-theme-colors-primary-50:254 252 232;--un-preset-theme-colors-primary-100:254 249 195;--un-preset-theme-colors-primary-200:254 240 138;--un-preset-theme-colors-primary-300:253 224 71;--un-preset-theme-colors-primary-400:250 204 21;--un-preset-theme-colors-primary-500:234 179 8;--un-preset-theme-colors-primary-600:202 138 4;--un-preset-theme-colors-primary-700:161 98 7;--un-preset-theme-colors-primary-800:133 77 14;--un-preset-theme-colors-primary-900:113 63 18;--un-preset-theme-colors-primary-950:66 32 6;--un-preset-theme-colors-secondary-50:253 242 248;--un-preset-theme-colors-secondary-100:252 231 243;--un-preset-theme-colors-secondary-200:251 207 232;--un-preset-theme-colors-secondary-300:249 168 212;--un-preset-theme-colors-secondary-400:244 114 182;--un-preset-theme-colors-secondary-500:236 72 153;--un-preset-theme-colors-secondary-600:219 39 119;--un-preset-theme-colors-secondary-700:190 24 93;--un-preset-theme-colors-secondary-800:157 23 77;--un-preset-theme-colors-secondary-900:131 24 67;--un-preset-theme-colors-secondary-950:80 7 36;--un-preset-theme-colors-monochrome-50:250 250 249;--un-preset-theme-colors-monochrome-100:245 245 244;--un-preset-theme-colors-monochrome-200:231 229 228;--un-preset-theme-colors-monochrome-300:214 211 209;--un-preset-theme-colors-monochrome-400:168 162 158;--un-preset-theme-colors-monochrome-500:120 113 108;--un-preset-theme-colors-monochrome-600:87 83 78;--un-preset-theme-colors-monochrome-700:68 64 60;--un-preset-theme-colors-monochrome-800:41 37 36;--un-preset-theme-colors-monochrome-900:28 25 23;--un-preset-theme-colors-monochrome-950:12 10 9;--un-preset-theme-colors-selection-50:239 246 255;--un-preset-theme-colors-selection-100:219 234 254;--un-preset-theme-colors-selection-200:191 219 254;--un-preset-theme-colors-selection-300:147 197 253;--un-preset-theme-colors-selection-400:96 165 250;--un-preset-theme-colors-selection-500:59 130 246;--un-preset-theme-colors-selection-600:37 99 235;--un-preset-theme-colors-selection-700:29 78 216;--un-preset-theme-colors-selection-800:30 64 175;--un-preset-theme-colors-selection-900:30 58 138;--un-preset-theme-colors-selection-950:23 37 84;}
.grid-area-down{grid-area:down;}
.grid-area-left{grid-area:left;}
.grid-area-right{grid-area:right;}
.grid-area-up{grid-area:up;}.bg-blue-100{--un-bg-opacity:1;background-color:rgb(219 234 254 / var(--un-bg-opacity));}.bg-blue-200{--un-bg-opacity:1;background-color:rgb(191 219 254 / var(--un-bg-opacity));}.bg-blue-300{--un-bg-opacity:1;background-color:rgb(147 197 253 / var(--un-bg-opacity));}.bg-blue-400{--un-bg-opacity:1;background-color:rgb(96 165 250 / var(--un-bg-opacity));}.bg-blue-50{--un-bg-opacity:1;background-color:rgb(239 246 255 / var(--un-bg-opacity));}.bg-blue-500{--un-bg-opacity:1;background-color:rgb(59 130 246 / var(--un-bg-opacity));}.bg-blue-600{--un-bg-opacity:1;background-color:rgb(37 99 235 / var(--un-bg-opacity));}.bg-blue-700{--un-bg-opacity:1;background-color:rgb(29 78 216 / var(--un-bg-opacity));}.bg-blue-800{--un-bg-opacity:1;background-color:rgb(30 64 175 / var(--un-bg-opacity));}.bg-blue-900{--un-bg-opacity:1;background-color:rgb(30 58 138 / var(--un-bg-opacity));}.bg-blue-950{--un-bg-opacity:1;background-color:rgb(23 37 84 / var(--un-bg-opacity));}.bg-green-100{--un-bg-opacity:1;background-color:rgb(220 252 231 / var(--un-bg-opacity));}.bg-green-200{--un-bg-opacity:1;background-color:rgb(187 247 208 / var(--un-bg-opacity));}.bg-green-300{--un-bg-opacity:1;background-color:rgb(134 239 172 / var(--un-bg-opacity));}.bg-green-400{--un-bg-opacity:1;background-color:rgb(74 222 128 / var(--un-bg-opacity));}.bg-green-50{--un-bg-opacity:1;background-color:rgb(240 253 244 / var(--un-bg-opacity));}.bg-green-500{--un-bg-opacity:1;background-color:rgb(34 197 94 / var(--un-bg-opacity));}.bg-green-600{--un-bg-opacity:1;background-color:rgb(22 163 74 / var(--un-bg-opacity));}.bg-green-700{--un-bg-opacity:1;background-color:rgb(21 128 61 / var(--un-bg-opacity));}.bg-green-800{--un-bg-opacity:1;background-color:rgb(22 101 52 / var(--un-bg-opacity));}.bg-green-900{--un-bg-opacity:1;background-color:rgb(20 83 45 / var(--un-bg-opacity));}.bg-green-950{--un-bg-opacity:1;background-color:rgb(5 46 22 / var(--un-bg-opacity));}.bg-monochrome-100{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-100) / var(--un-bg-opacity));}.bg-monochrome-200{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-200) / var(--un-bg-opacity));}.bg-monochrome-300{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-300) / var(--un-bg-opacity));}.bg-monochrome-400{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-400) / var(--un-bg-opacity));}.bg-monochrome-50{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-50) / var(--un-bg-opacity));}.bg-monochrome-500{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-500) / var(--un-bg-opacity));}.bg-monochrome-600{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-600) / var(--un-bg-opacity));}.bg-monochrome-700{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-700) / var(--un-bg-opacity));}.bg-monochrome-800{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-800) / var(--un-bg-opacity));}.bg-monochrome-900{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-900) / var(--un-bg-opacity));}.bg-monochrome-950{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-monochrome-950) / var(--un-bg-opacity));}.bg-pink-100{--un-bg-opacity:1;background-color:rgb(252 231 243 / var(--un-bg-opacity));}.bg-pink-200{--un-bg-opacity:1;background-color:rgb(251 207 232 / var(--un-bg-opacity));}.bg-pink-300{--un-bg-opacity:1;background-color:rgb(249 168 212 / var(--un-bg-opacity));}.bg-pink-400{--un-bg-opacity:1;background-color:rgb(244 114 182 / var(--un-bg-opacity));}.bg-pink-50{--un-bg-opacity:1;background-color:rgb(253 242 248 / var(--un-bg-opacity));}.bg-pink-500{--un-bg-opacity:1;background-color:rgb(236 72 153 / var(--un-bg-opacity));}.bg-pink-600{--un-bg-opacity:1;background-color:rgb(219 39 119 / var(--un-bg-opacity));}.bg-pink-700{--un-bg-opacity:1;background-color:rgb(190 24 93 / var(--un-bg-opacity));}.bg-pink-800{--un-bg-opacity:1;background-color:rgb(157 23 77 / var(--un-bg-opacity));}.bg-pink-900{--un-bg-opacity:1;background-color:rgb(131 24 67 / var(--un-bg-opacity));}.bg-pink-950{--un-bg-opacity:1;background-color:rgb(80 7 36 / var(--un-bg-opacity));}.bg-primary-100{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-100) / var(--un-bg-opacity));}.bg-primary-200{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-200) / var(--un-bg-opacity));}.bg-primary-300{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-300) / var(--un-bg-opacity));}.bg-primary-400{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-400) / var(--un-bg-opacity));}.bg-primary-50{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-50) / var(--un-bg-opacity));}.bg-primary-500{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-500) / var(--un-bg-opacity));}.bg-primary-600{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-600) / var(--un-bg-opacity));}.bg-primary-700{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-700) / var(--un-bg-opacity));}.bg-primary-800{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-800) / var(--un-bg-opacity));}.bg-primary-900{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-900) / var(--un-bg-opacity));}.bg-primary-950{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-primary-950) / var(--un-bg-opacity));}.bg-secondary-100{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-100) / var(--un-bg-opacity));}.bg-secondary-200{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-200) / var(--un-bg-opacity));}.bg-secondary-300{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-300) / var(--un-bg-opacity));}.bg-secondary-400{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-400) / var(--un-bg-opacity));}.bg-secondary-50{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-50) / var(--un-bg-opacity));}.bg-secondary-500{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-500) / var(--un-bg-opacity));}.bg-secondary-600{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-600) / var(--un-bg-opacity));}.bg-secondary-700{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-700) / var(--un-bg-opacity));}.bg-secondary-800{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-800) / var(--un-bg-opacity));}.bg-secondary-900{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-900) / var(--un-bg-opacity));}.bg-secondary-950{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-secondary-950) / var(--un-bg-opacity));}.bg-selection-100{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-100) / var(--un-bg-opacity));}.bg-selection-200{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-200) / var(--un-bg-opacity));}.bg-selection-300{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-300) / var(--un-bg-opacity));}.bg-selection-400{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-400) / var(--un-bg-opacity));}.bg-selection-50{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-50) / var(--un-bg-opacity));}.bg-selection-500{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-500) / var(--un-bg-opacity));}.bg-selection-600{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-600) / var(--un-bg-opacity));}.bg-selection-700{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-700) / var(--un-bg-opacity));}.bg-selection-800{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-800) / var(--un-bg-opacity));}.bg-selection-900{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-900) / var(--un-bg-opacity));}.bg-selection-950{--un-bg-opacity:1;background-color:rgb(var(--un-preset-theme-colors-selection-950) / var(--un-bg-opacity));}.bg-yellow-100{--un-bg-opacity:1;background-color:rgb(254 249 195 / var(--un-bg-opacity));}.bg-yellow-200{--un-bg-opacity:1;background-color:rgb(254 240 138 / var(--un-bg-opacity));}.bg-yellow-300{--un-bg-opacity:1;background-color:rgb(253 224 71 / var(--un-bg-opacity));}.bg-yellow-400{--un-bg-opacity:1;background-color:rgb(250 204 21 / var(--un-bg-opacity));}.bg-yellow-50{--un-bg-opacity:1;background-color:rgb(254 252 232 / var(--un-bg-opacity));}.bg-yellow-500{--un-bg-opacity:1;background-color:rgb(234 179 8 / var(--un-bg-opacity));}.bg-yellow-600{--un-bg-opacity:1;background-color:rgb(202 138 4 / var(--un-bg-opacity));}.bg-yellow-700{--un-bg-opacity:1;background-color:rgb(161 98 7 / var(--un-bg-opacity));}.bg-yellow-800{--un-bg-opacity:1;background-color:rgb(133 77 14 / var(--un-bg-opacity));}.bg-yellow-900{--un-bg-opacity:1;background-color:rgb(113 63 18 / var(--un-bg-opacity));}.bg-yellow-950{--un-bg-opacity:1;background-color:rgb(66 32 6 / var(--un-bg-opacity));}.text-blue-100{--un-text-opacity:1;color:rgb(219 234 254 / var(--un-text-opacity));}.text-blue-200{--un-text-opacity:1;color:rgb(191 219 254 / var(--un-text-opacity));}.text-blue-300{--un-text-opacity:1;color:rgb(147 197 253 / var(--un-text-opacity));}.text-blue-400{--un-text-opacity:1;color:rgb(96 165 250 / var(--un-text-opacity));}.text-blue-50{--un-text-opacity:1;color:rgb(239 246 255 / var(--un-text-opacity));}.text-blue-500{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity));}.text-blue-600{--un-text-opacity:1;color:rgb(37 99 235 / var(--un-text-opacity));}.text-blue-700{--un-text-opacity:1;color:rgb(29 78 216 / var(--un-text-opacity));}.text-blue-800{--un-text-opacity:1;color:rgb(30 64 175 / var(--un-text-opacity));}.text-blue-900{--un-text-opacity:1;color:rgb(30 58 138 / var(--un-text-opacity));}.text-blue-950{--un-text-opacity:1;color:rgb(23 37 84 / var(--un-text-opacity));}.text-green-100{--un-text-opacity:1;color:rgb(220 252 231 / var(--un-text-opacity));}.text-green-200{--un-text-opacity:1;color:rgb(187 247 208 / var(--un-text-opacity));}.text-green-300{--un-text-opacity:1;color:rgb(134 239 172 / var(--un-text-opacity));}.text-green-400{--un-text-opacity:1;color:rgb(74 222 128 / var(--un-text-opacity));}.text-green-50{--un-text-opacity:1;color:rgb(240 253 244 / var(--un-text-opacity));}.text-green-500{--un-text-opacity:1;color:rgb(34 197 94 / var(--un-text-opacity));}.text-green-600{--un-text-opacity:1;color:rgb(22 163 74 / var(--un-text-opacity));}.text-green-700{--un-text-opacity:1;color:rgb(21 128 61 / var(--un-text-opacity));}.text-green-800{--un-text-opacity:1;color:rgb(22 101 52 / var(--un-text-opacity));}.text-green-900{--un-text-opacity:1;color:rgb(20 83 45 / var(--un-text-opacity));}.text-green-950{--un-text-opacity:1;color:rgb(5 46 22 / var(--un-text-opacity));}.text-monochrome-100{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-100) / var(--un-text-opacity));}.text-monochrome-200{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-200) / var(--un-text-opacity));}.text-monochrome-300{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-300) / var(--un-text-opacity));}.text-monochrome-400{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-400) / var(--un-text-opacity));}.text-monochrome-50{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-50) / var(--un-text-opacity));}.text-monochrome-500{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-500) / var(--un-text-opacity));}.text-monochrome-600{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-600) / var(--un-text-opacity));}.text-monochrome-700{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-700) / var(--un-text-opacity));}.text-monochrome-800{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-800) / var(--un-text-opacity));}.text-monochrome-900{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-900) / var(--un-text-opacity));}.text-monochrome-950{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-monochrome-950) / var(--un-text-opacity));}.text-pink-100{--un-text-opacity:1;color:rgb(252 231 243 / var(--un-text-opacity));}.text-pink-200{--un-text-opacity:1;color:rgb(251 207 232 / var(--un-text-opacity));}.text-pink-300{--un-text-opacity:1;color:rgb(249 168 212 / var(--un-text-opacity));}.text-pink-400{--un-text-opacity:1;color:rgb(244 114 182 / var(--un-text-opacity));}.text-pink-50{--un-text-opacity:1;color:rgb(253 242 248 / var(--un-text-opacity));}.text-pink-500{--un-text-opacity:1;color:rgb(236 72 153 / var(--un-text-opacity));}.text-pink-600{--un-text-opacity:1;color:rgb(219 39 119 / var(--un-text-opacity));}.text-pink-700{--un-text-opacity:1;color:rgb(190 24 93 / var(--un-text-opacity));}.text-pink-800{--un-text-opacity:1;color:rgb(157 23 77 / var(--un-text-opacity));}.text-pink-900{--un-text-opacity:1;color:rgb(131 24 67 / var(--un-text-opacity));}.text-pink-950{--un-text-opacity:1;color:rgb(80 7 36 / var(--un-text-opacity));}.text-primary-100{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-100) / var(--un-text-opacity));}.text-primary-200{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-200) / var(--un-text-opacity));}.text-primary-300{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-300) / var(--un-text-opacity));}.text-primary-400{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-400) / var(--un-text-opacity));}.text-primary-50{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-50) / var(--un-text-opacity));}.text-primary-500{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-500) / var(--un-text-opacity));}.text-primary-600{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-600) / var(--un-text-opacity));}.text-primary-700{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-700) / var(--un-text-opacity));}.text-primary-800{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-800) / var(--un-text-opacity));}.text-primary-900{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-900) / var(--un-text-opacity));}.text-primary-950{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-primary-950) / var(--un-text-opacity));}.text-secondary-100{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-100) / var(--un-text-opacity));}.text-secondary-200{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-200) / var(--un-text-opacity));}.text-secondary-300{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-300) / var(--un-text-opacity));}.text-secondary-400{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-400) / var(--un-text-opacity));}.text-secondary-50{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-50) / var(--un-text-opacity));}.text-secondary-500{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-500) / var(--un-text-opacity));}.text-secondary-600{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-600) / var(--un-text-opacity));}.text-secondary-700{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-700) / var(--un-text-opacity));}.text-secondary-800{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-800) / var(--un-text-opacity));}.text-secondary-900{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-900) / var(--un-text-opacity));}.text-secondary-950{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-secondary-950) / var(--un-text-opacity));}.text-selection-100{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-100) / var(--un-text-opacity));}.text-selection-200{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-200) / var(--un-text-opacity));}.text-selection-300{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-300) / var(--un-text-opacity));}.text-selection-400{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-400) / var(--un-text-opacity));}.text-selection-50{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-50) / var(--un-text-opacity));}.text-selection-500{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-500) / var(--un-text-opacity));}.text-selection-600{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-600) / var(--un-text-opacity));}.text-selection-700{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-700) / var(--un-text-opacity));}.text-selection-800{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-800) / var(--un-text-opacity));}.text-selection-900{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-900) / var(--un-text-opacity));}.text-selection-950{--un-text-opacity:1;color:rgb(var(--un-preset-theme-colors-selection-950) / var(--un-text-opacity));}.text-yellow-100{--un-text-opacity:1;color:rgb(254 249 195 / var(--un-text-opacity));}.text-yellow-200{--un-text-opacity:1;color:rgb(254 240 138 / var(--un-text-opacity));}.text-yellow-300{--un-text-opacity:1;color:rgb(253 224 71 / var(--un-text-opacity));}.text-yellow-400{--un-text-opacity:1;color:rgb(250 204 21 / var(--un-text-opacity));}.text-yellow-50{--un-text-opacity:1;color:rgb(254 252 232 / var(--un-text-opacity));}.text-yellow-500{--un-text-opacity:1;color:rgb(234 179 8 / var(--un-text-opacity));}.text-yellow-600{--un-text-opacity:1;color:rgb(202 138 4 / var(--un-text-opacity));}.text-yellow-700{--un-text-opacity:1;color:rgb(161 98 7 / var(--un-text-opacity));}.text-yellow-800{--un-text-opacity:1;color:rgb(133 77 14 / var(--un-text-opacity));}.text-yellow-900{--un-text-opacity:1;color:rgb(113 63 18 / var(--un-text-opacity));}.text-yellow-950{--un-text-opacity:1;color:rgb(66 32 6 / var(--un-text-opacity));}.outline-blue-100{--un-outline-color-opacity:1;outline-color:rgb(219 234 254 / var(--un-outline-color-opacity));}.outline-blue-200{--un-outline-color-opacity:1;outline-color:rgb(191 219 254 / var(--un-outline-color-opacity));}.outline-blue-300{--un-outline-color-opacity:1;outline-color:rgb(147 197 253 / var(--un-outline-color-opacity));}.outline-blue-400{--un-outline-color-opacity:1;outline-color:rgb(96 165 250 / var(--un-outline-color-opacity));}.outline-blue-50{--un-outline-color-opacity:1;outline-color:rgb(239 246 255 / var(--un-outline-color-opacity));}.outline-blue-500{--un-outline-color-opacity:1;outline-color:rgb(59 130 246 / var(--un-outline-color-opacity));}.outline-blue-600{--un-outline-color-opacity:1;outline-color:rgb(37 99 235 / var(--un-outline-color-opacity));}.outline-blue-700{--un-outline-color-opacity:1;outline-color:rgb(29 78 216 / var(--un-outline-color-opacity));}.outline-blue-800{--un-outline-color-opacity:1;outline-color:rgb(30 64 175 / var(--un-outline-color-opacity));}.outline-blue-900{--un-outline-color-opacity:1;outline-color:rgb(30 58 138 / var(--un-outline-color-opacity));}.outline-blue-950{--un-outline-color-opacity:1;outline-color:rgb(23 37 84 / var(--un-outline-color-opacity));}.outline-green-100{--un-outline-color-opacity:1;outline-color:rgb(220 252 231 / var(--un-outline-color-opacity));}.outline-green-200{--un-outline-color-opacity:1;outline-color:rgb(187 247 208 / var(--un-outline-color-opacity));}.outline-green-300{--un-outline-color-opacity:1;outline-color:rgb(134 239 172 / var(--un-outline-color-opacity));}.outline-green-400{--un-outline-color-opacity:1;outline-color:rgb(74 222 128 / var(--un-outline-color-opacity));}.outline-green-50{--un-outline-color-opacity:1;outline-color:rgb(240 253 244 / var(--un-outline-color-opacity));}.outline-green-500{--un-outline-color-opacity:1;outline-color:rgb(34 197 94 / var(--un-outline-color-opacity));}.outline-green-600{--un-outline-color-opacity:1;outline-color:rgb(22 163 74 / var(--un-outline-color-opacity));}.outline-green-700{--un-outline-color-opacity:1;outline-color:rgb(21 128 61 / var(--un-outline-color-opacity));}.outline-green-800{--un-outline-color-opacity:1;outline-color:rgb(22 101 52 / var(--un-outline-color-opacity));}.outline-green-900{--un-outline-color-opacity:1;outline-color:rgb(20 83 45 / var(--un-outline-color-opacity));}.outline-green-950{--un-outline-color-opacity:1;outline-color:rgb(5 46 22 / var(--un-outline-color-opacity));}.outline-monochrome-100{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-100) / var(--un-outline-color-opacity));}.outline-monochrome-200{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-200) / var(--un-outline-color-opacity));}.outline-monochrome-300{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-300) / var(--un-outline-color-opacity));}.outline-monochrome-400{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-400) / var(--un-outline-color-opacity));}.outline-monochrome-50{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-50) / var(--un-outline-color-opacity));}.outline-monochrome-500{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-500) / var(--un-outline-color-opacity));}.outline-monochrome-600{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-600) / var(--un-outline-color-opacity));}.outline-monochrome-700{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-700) / var(--un-outline-color-opacity));}.outline-monochrome-800{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-800) / var(--un-outline-color-opacity));}.outline-monochrome-900{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-900) / var(--un-outline-color-opacity));}.outline-monochrome-950{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-monochrome-950) / var(--un-outline-color-opacity));}.outline-pink-100{--un-outline-color-opacity:1;outline-color:rgb(252 231 243 / var(--un-outline-color-opacity));}.outline-pink-200{--un-outline-color-opacity:1;outline-color:rgb(251 207 232 / var(--un-outline-color-opacity));}.outline-pink-300{--un-outline-color-opacity:1;outline-color:rgb(249 168 212 / var(--un-outline-color-opacity));}.outline-pink-400{--un-outline-color-opacity:1;outline-color:rgb(244 114 182 / var(--un-outline-color-opacity));}.outline-pink-50{--un-outline-color-opacity:1;outline-color:rgb(253 242 248 / var(--un-outline-color-opacity));}.outline-pink-500{--un-outline-color-opacity:1;outline-color:rgb(236 72 153 / var(--un-outline-color-opacity));}.outline-pink-600{--un-outline-color-opacity:1;outline-color:rgb(219 39 119 / var(--un-outline-color-opacity));}.outline-pink-700{--un-outline-color-opacity:1;outline-color:rgb(190 24 93 / var(--un-outline-color-opacity));}.outline-pink-800{--un-outline-color-opacity:1;outline-color:rgb(157 23 77 / var(--un-outline-color-opacity));}.outline-pink-900{--un-outline-color-opacity:1;outline-color:rgb(131 24 67 / var(--un-outline-color-opacity));}.outline-pink-950{--un-outline-color-opacity:1;outline-color:rgb(80 7 36 / var(--un-outline-color-opacity));}.outline-primary-100{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-100) / var(--un-outline-color-opacity));}.outline-primary-200{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-200) / var(--un-outline-color-opacity));}.outline-primary-300{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-300) / var(--un-outline-color-opacity));}.outline-primary-400{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-400) / var(--un-outline-color-opacity));}.outline-primary-50{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-50) / var(--un-outline-color-opacity));}.outline-primary-500{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-500) / var(--un-outline-color-opacity));}.outline-primary-600{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-600) / var(--un-outline-color-opacity));}.outline-primary-700{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-700) / var(--un-outline-color-opacity));}.outline-primary-800{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-800) / var(--un-outline-color-opacity));}.outline-primary-900{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-900) / var(--un-outline-color-opacity));}.outline-primary-950{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-primary-950) / var(--un-outline-color-opacity));}.outline-secondary-100{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-100) / var(--un-outline-color-opacity));}.outline-secondary-200{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-200) / var(--un-outline-color-opacity));}.outline-secondary-300{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-300) / var(--un-outline-color-opacity));}.outline-secondary-400{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-400) / var(--un-outline-color-opacity));}.outline-secondary-50{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-50) / var(--un-outline-color-opacity));}.outline-secondary-500{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-500) / var(--un-outline-color-opacity));}.outline-secondary-600{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-600) / var(--un-outline-color-opacity));}.outline-secondary-700{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-700) / var(--un-outline-color-opacity));}.outline-secondary-800{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-800) / var(--un-outline-color-opacity));}.outline-secondary-900{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-900) / var(--un-outline-color-opacity));}.outline-secondary-950{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-secondary-950) / var(--un-outline-color-opacity));}.outline-selection-100{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-100) / var(--un-outline-color-opacity));}.outline-selection-200{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-200) / var(--un-outline-color-opacity));}.outline-selection-300{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-300) / var(--un-outline-color-opacity));}.outline-selection-400{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-400) / var(--un-outline-color-opacity));}.outline-selection-50{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-50) / var(--un-outline-color-opacity));}.outline-selection-500{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-500) / var(--un-outline-color-opacity));}.outline-selection-600{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-600) / var(--un-outline-color-opacity));}.outline-selection-700{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-700) / var(--un-outline-color-opacity));}.outline-selection-800{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-800) / var(--un-outline-color-opacity));}.outline-selection-900{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-900) / var(--un-outline-color-opacity));}.outline-selection-950{--un-outline-color-opacity:1;outline-color:rgb(var(--un-preset-theme-colors-selection-950) / var(--un-outline-color-opacity));}.outline-yellow-100{--un-outline-color-opacity:1;outline-color:rgb(254 249 195 / var(--un-outline-color-opacity));}.outline-yellow-200{--un-outline-color-opacity:1;outline-color:rgb(254 240 138 / var(--un-outline-color-opacity));}.outline-yellow-300{--un-outline-color-opacity:1;outline-color:rgb(253 224 71 / var(--un-outline-color-opacity));}.outline-yellow-400{--un-outline-color-opacity:1;outline-color:rgb(250 204 21 / var(--un-outline-color-opacity));}.outline-yellow-50{--un-outline-color-opacity:1;outline-color:rgb(254 252 232 / var(--un-outline-color-opacity));}.outline-yellow-500{--un-outline-color-opacity:1;outline-color:rgb(234 179 8 / var(--un-outline-color-opacity));}.outline-yellow-600{--un-outline-color-opacity:1;outline-color:rgb(202 138 4 / var(--un-outline-color-opacity));}.outline-yellow-700{--un-outline-color-opacity:1;outline-color:rgb(161 98 7 / var(--un-outline-color-opacity));}.outline-yellow-800{--un-outline-color-opacity:1;outline-color:rgb(133 77 14 / var(--un-outline-color-opacity));}.outline-yellow-900{--un-outline-color-opacity:1;outline-color:rgb(113 63 18 / var(--un-outline-color-opacity));}.outline-yellow-950{--un-outline-color-opacity:1;outline-color:rgb(66 32 6 / var(--un-outline-color-opacity));}.grid-area-down{grid-area:down;}.grid-area-left{grid-area:left;}.grid-area-right{grid-area:right;}.grid-area-up{grid-area:up;}