/* You can add global styles to this file, and also import other style files */

:root {
  /* Universal colors */
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  /* Brand primary (#0397D7) */
  --primary-h: 198;
  --primary-s: 97%;
  --primary-l: 43%;
  --primary-100: hsl(var(--primary-h), var(--primary-s), 95%);
  --primary-300: hsl(var(--primary-h), var(--primary-s), 88%);
  --primary-500: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --primary-700: hsl(var(--primary-h), var(--primary-s), 30%);
  /* WCAG primary */
  --primary-500-wcag: hsl(204, 100%, 40%);
  --primary-500-wcag-text: hsl(204, 100%, 36%);
  /* Brand secondary (#EF8A1E) */
  --secondary-h: 31;
  --secondary-s: 87%;
  --secondary-l: 53%;
  --secondary-h-wcag: 24;
  --secondary-100: hsl(var(--secondary-h), var(--secondary-s), 96%);
  --secondary-300: hsl(var(--secondary-h), var(--secondary-s), 88%);
  --secondary-500: hsl(
            var(--secondary-h),
            var(--secondary-s),
            var(--secondary-l)
    );
  --secondary-700: hsl(var(--secondary-h), 98%, 34%);
  /* WCAG secondary */
  --secondary-500-wcag: hsl(var(--secondary-h-wcag), 98%, 38%);
  /* Neutral colors for Typography */
  --typography-100: hsl(var(--primary-h), 30%, 40%);
  --typography-200: hsl(var(--primary-h), 30%, 32%);
  --typography-300: hsl(var(--primary-h), 30%, 24%);
  --typography-400: hsl(var(--primary-h), 30%, 16%);
  /* Neutral colors for Surface */
  --surface-50: hsl(var(--primary-h), 20%, 98%);
  --surface-100: hsl(var(--primary-h), 30%, 96%);
  --surface-200: hsl(var(--primary-h), 30%, 90%);
  --surface-300: hsl(var(--primary-h), 30%, 84%);
  --surface-400: hsl(var(--primary-h), 20%, 76%);
  --surface-500: hsl(var(--primary-h), 20%, 40%);
  --surface-700: hsl(var(--primary-h), 10%, 35%);
  /* Red */
  --red-100: hsl(2, 60%, 97%);
  --red-300: hsl(2, 60%, 90%);
  --red-500: hsl(2, 50%, 49%);
  --red-700: hsl(2, 50%, 42%);
  /* Blue */
  --blue-100: hsl(210, 80%, 96%);
  --blue-300: hsl(210, 80%, 89%);
  --blue-500: hsl(210, 70%, 44%);
  --blue-700: hsl(210, 70%, 37%);
  /* Green */
  --green-100: hsl(120, 40%, 94%);
  --green-300: hsl(120, 40%, 87%);
  --green-500: hsl(120, 40%, 35%);
  --green-700: hsl(120, 40%, 28%);
  /* Orange */
  --orange-100: hsl(30, 90%, 96%);
  --orange-300: hsl(30, 90%, 89%);
  --orange-500: hsl(30, 97%, 32%);
  --orange-700: hsl(30, 97%, 24%);
  /* Additional colors for styling HTML elements, tags */
  --anchor-100: hsl(206, 80%, 38%);
  --mark-100: hsl(50, 96%, 86%);
  --del-100: hsl(0, 90%, 96%);
  --ins-100: hsl(100, 90%, 94%);
  --code-100: hsl(220, 0%, 97%);
  /* Inversion colors for switching to dark theme */
  --black_constant: var(--black);
  --white_constant: var(--white);
  --white_to_surface_100: var(--white);
  --white_to_surface_200: var(--white);
  --white_to_surface_300: var(--white);
  --white_to_surface_400: var(--white);
  --surface_100_to_black: var(--surface-100);
  --surface_100_to_surface_200: var(--surface-100);
  --surface_200_to_surface_300: var(--surface-200);
}

/* @media (prefers-color-scheme: dark)  */

.dark:root {
  /* Brand primary */
  --primary-h: 198;
  --primary-s: 97%;
  --primary-l: 43%;
  --primary-100: hsl(var(--primary-h), var(--primary-s), 12%);
  --primary-300: hsl(var(--primary-h), var(--primary-s), 24%);
  --primary-500: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --primary-700: hsl(var(--primary-h), var(--primary-s), 50%);
  /* WCAG primary */
  --primary-500-wcag: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --primary-500-wcag-text: hsl(
            var(--primary-h),
            var(--primary-s),
            var(--primary-l)
    );
  /* Brand secondary */
  --secondary-h: 31;
  --secondary-s: 87%;
  --secondary-l: 53%;
  --secondary-100: hsl(var(--secondary-h), var(--secondary-s), 15%);
  --secondary-300: hsl(var(--secondary-h), var(--secondary-s), 30%);
  --secondary-500: hsl(
            var(--secondary-h),
            var(--secondary-s),
            var(--secondary-l)
    );
  --secondary-700: hsl(var(--secondary-h), var(--secondary-s), 58%);
  /* WCAG secondary */
  --secondary-500-wcag: hsl(var(--secondary-h), 97%, 43%);
  /* Neutral colors for Typography */
  --typography-100: hsl(var(--primary-h), 12%, 60%);
  --typography-200: hsl(var(--primary-h), 12%, 68%);
  --typography-300: hsl(var(--primary-h), 12%, 76%);
  --typography-400: hsl(var(--primary-h), 12%, 84%);
  /* Neutral colors for Surface */
  --surface-50: hsl(var(--primary-h), 12%, 16%);
  --surface-100: hsl(var(--primary-h), 12%, 20%);
  --surface-200: hsl(var(--primary-h), 12%, 24%);
  --surface-300: hsl(var(--primary-h), 12%, 28%);
  --surface-400: hsl(var(--primary-h), 12%, 32%);
  --surface-500: hsl(var(--primary-h), 12%, 64%);
  --surface-700: hsl(var(--primary-h), 12%, 72%);
  /* Red */
  --red-100: hsl(2, 80%, 10%);
  --red-300: hsl(2, 80%, 20%);
  --red-500: hsl(2, 60%, 62%);
  --red-700: hsl(2, 60%, 72%);
  /* Blue */
  --blue-100: hsl(210, 88%, 10%);
  --blue-300: hsl(210, 88%, 20%);
  --blue-500: hsl(210, 40%, 56%);
  --blue-700: hsl(210, 40%, 66%);
  /* Green */
  --green-100: hsl(120, 90%, 6%);
  --green-300: hsl(120, 90%, 16%);
  --green-500: hsl(120, 20%, 50%);
  --green-700: hsl(120, 20%, 60%);
  /* Orange */
  --orange-100: hsl(30, 60%, 10%);
  --orange-300: hsl(30, 60%, 20%);
  --orange-500: hsl(30, 60%, 54%);
  --orange-700: hsl(30, 60%, 64%);
  /* Additional colors for styling HTML elements, tags */
  --anchor-100: hsl(206, 60%, 70%);
  --mark-100: hsl(50, 70%, 80%);
  --del-100: hsl(0, 70%, 82%);
  --ins-100: hsl(100, 30%, 80%);
  --code-100: hsl(220, 12%, 14%);
  /* Inversion colors for switching to dark theme */
  --black: hsl(var(--primary-h), 12%, 92%);
  --white: hsl(var(--primary-h), 12%, 12%);
  --black_constant: hsl(var(--primary-h), 12%, 8%);
  --white_constant: hsl(var(--primary-h), 12%, 92%);
  --white_to_surface_100: var(--surface-100);
  --white_to_surface_200: var(--surface-200);
  --white_to_surface_300: var(--surface-300);
  --white_to_surface_400: var(--surface-400);
  --surface_100_to_black: var(--black);
  --surface_100_to_surface_200: var(--surface-200);
  --surface_200_to_surface_300: var(--surface-300);
}

.dark input[type="radio"]:checked {
  background-image: url("data:image/svg+xml,<svg width='8' height='8' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='8' cy='8' r='5' stroke='black' stroke-width='2'/></svg>");
}

.dark input[type="checkbox"]:indeterminate::before {
  content: url("data:image/svg+xml,<svg width='12' height='12' viewBox='0 2 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 8a1 1 0 011-1h14a1 1 0 110 2H1a1 1 0 01-1-1z' fill='black'/></svg>");
}

.dark input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,<svg width='4' height='4' viewBox='-2 -4 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5.43431 11.7643L0.234305 6.53442C-0.0781016 6.22021 -0.0781016 5.71077 0.234305 5.39654L1.36565 4.25865C1.67806 3.94442 2.18462 3.94442 2.49703 4.25865L6 7.78174L13.503 0.235652C13.8154 -0.0785507 14.3219 -0.0785507 14.6344 0.235652L15.7657 1.37353C16.0781 1.68774 16.0781 2.19718 15.7657 2.51141L6.56569 11.7644C6.25325 12.0786 5.74672 12.0786 5.43431 11.7643V11.7643Z' fill='black'/></svg>");
}

/* Fix for displaying the native calendar in dark mode (does not work in Firefox though) */

.dark input {
  color-scheme: dark;
}

/* ! tailwindcss v3.0.24 | MIT License | https://tailwindcss.com */

/*
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 */
}

::before,
::after {
  --tw-content: '';
}

/*
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 */
  -o-tab-size: 4;
     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]) {
  -webkit-text-decoration: underline dotted;
          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 */
  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::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

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;
}

/*
Ensure the default browser behavior of the `hidden` attribute.
*/

[hidden] {
  display: none;
}

@font-face {
  font-family: 'Manrope-VariableFont_wght';

  src: url(./fonts/Manrope-VariableFont_wght.woff2) format('woff2');

  font-weight: 200 900;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope-VariableFont_wght', sans-serif;
  background-color: var(--surface-50);
  font-weight: 500;
  color: var(--typography-300);
}

.dark body {
  background-color: var(--black_constant);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  color: var(--typography-400);
}

h1 {
  font-size: 1.875rem;
  line-height: 2.5rem;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  letter-spacing: -0.025em;
}

h4 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

h5 {
  font-size: 1rem;
  line-height: 1.5rem;
}

h6 {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

p, ins, del, summary, th, td, dd {
  font-weight: 500;
  color: var(--typography-300);
}

a {
  text-decoration-line: underline;
  color: var(--anchor-100);
}

a[role="menuitem"], nav ul li a {
  display: block;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 500;
  color: var(--typography-200);
  text-decoration-line: none;
}

small {
  font-size: 0.75rem;
  line-height: 1rem;
}

address {
  font-style: normal;
}

code, samp, kbd {
  border-radius: 0.125rem;
  padding: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

mark, del, ins {
  border-radius: 0.125rem;
  color: var(--black_constant);
  background-color: var(--mark-100);
}

mark {
  background-color: var(--mark-100);
}

del {
  background-color: var(--del-100);
  text-decoration-color: hsla(0, 30%, 50%, 0.5);
}

ins {
  background-color: var(--ins-100);
  text-decoration-color: hsla(100, 30%, 50%, 0.5);
  text-underline-offset: 4px;
}

code, samp {
  color: var(--black);
  background-color: var(--code-100);
}

kbd {
  border-radius: 0.125rem;
  border-width: 1px;
  border-color: var(--surface-200);
  background-color: var(--surface-50);
  padding: 0px;
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  color: var(--typography-200);
  box-shadow: 1px 1px 1px 0 rgb(0 0 0 / 0.1);
}

blockquote {
  border-radius: 0.125rem;
  border-left-width: 4px;
  border-style: solid;
  border-color: var(--primary-500);
  background-color: var(--white_to_surface_200);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

nav[aria-label="primary"]blockquote {
  --tw-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

hr {
  border-width: 0px;
  border-bottom-width: 1px;
  border-color: var(--surface-200);
}

button, ::-webkit-file-upload-button {
  white-space: nowrap;
  border-radius: 0.125rem;
  border-width: 1px;
  border-color: transparent;
  padding: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
  color: var(--typography-300);
}

/* WCAG complaint brand primary bg-color when the button has white text on it */

button[class~="bg-primary-500"] {
  background-color: var(--primary-500-wcag);
}

button[class~="text-primary-500"] {
  color: var(--primary-500-wcag-text);
}

button[class~="bg-secondary-500"] {
  background-color: var(--secondary-500-wcag);
}

button[class~="text-secondary-500"] {
  color: var(--secondary-500-wcag);
}

label, fieldset > legend {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--typography-300);
}

input, textarea, select {
  width: 100%;
  border-radius: 0.125rem;
  border-width: 1px;
  border-style: solid;
  border-color: var(--surface-400);
  background-color: var(--white);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-weight: 500;
  color: var(--typography-300);
}

select {
  -webkit-appearance: none;
  background-image: linear-gradient(45deg,transparent 50%,currentColor 50%),linear-gradient(135deg,currentColor 50%,transparent 50%);
  background-position: calc(100% - 20px) calc(1px + 50%),calc(100% - 16px) calc(1px + 50%);
  background-size: 4px 4px,4px 4px;
  background-repeat: no-repeat;
}

/* Checkbox & Radio - Default state */

input[type="checkbox"], input[type="radio"] {
  margin: 0px;
  display: flex;
  height: 1rem;
  width: 1rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex-direction: row;
  border-radius: 0.125rem;
  border-width: 2px;
  border-color: var(--surface-400);
  background-color: var(--white);
  background-origin: border-box;
  padding: 0px;
  vertical-align: middle;
  color: var(--primary-500);
}

/* Radio - Default state */

input[type="radio"] {
  border-radius: 9999px;
}

/* Checkbox & Radio - Selected state */

input[type="checkbox"]:checked, input[type="radio"]:checked {
  border-color: transparent;
  background-color: var(--primary-500);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Checkbox - Selected state */

input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,<svg width='4' height='4' viewBox='-2 -4 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5.43431 11.7643L0.234305 6.53442C-0.0781016 6.22021 -0.0781016 5.71077 0.234305 5.39654L1.36565 4.25865C1.67806 3.94442 2.18462 3.94442 2.49703 4.25865L6 7.78174L13.503 0.235652C13.8154 -0.0785507 14.3219 -0.0785507 14.6344 0.235652L15.7657 1.37353C16.0781 1.68774 16.0781 2.19718 15.7657 2.51141L6.56569 11.7644C6.25325 12.0786 5.74672 12.0786 5.43431 11.7643V11.7643Z' fill='white'/></svg>");
}

/* Checkbox - indeterminate state */

input[type="checkbox"]:indeterminate {
  border-color: transparent;
  background-color: var(--primary-500);
  padding: 0px;
}

input[type="checkbox"]:indeterminate::before {
  content: url("data:image/svg+xml,<svg width='12' height='12' viewBox='0 2 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 8a1 1 0 011-1h14a1 1 0 110 2H1a1 1 0 01-1-1z' fill='white'/></svg>");
  align-self: center;
}

/* Radio - Selected state */

input[type="radio"]:checked {
  background-image: url("data:image/svg+xml,<svg width='8' height='8' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='8' cy='8' r='5' stroke='white' stroke-width='2'/></svg>");
}

input[type="checkbox"][role="switch"] {
  position: relative;
  height: 1.25rem;
  width: 2.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  border-style: none;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

input[type="checkbox"][role="switch"]::before {
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  height: 1.25rem;
  width: 2.5rem;
  border-radius: 9999px;
  border-width: 1px;
  border-color: var(--surface-400);
  background-color: var(--white);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  --tw-content: '';
  content: var(--tw-content);
}

input[type="checkbox"][role="switch"]::after {
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  --tw-scale-x: .75;
  --tw-scale-y: .75;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--surface-400);
  font-size: 1.5rem;
  line-height: 1.25rem;
  color: var(--white);
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --tw-content: '×';
  content: var(--tw-content);
}

input[type="checkbox"][role="switch"]:checked::before {
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  height: 1.25rem;
  width: 2.5rem;
  border-radius: 9999px;
  border-style: none;
  background-color: var(--primary-500);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  --tw-content: '';
  content: var(--tw-content);
}

input[type="checkbox"][role="switch"]:checked::after {
  position: absolute;
  top: 0px;
  left: 1.25rem;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  --tw-scale-x: .75;
  --tw-scale-y: .75;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 9999px;
  background-color: var(--white);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 800;
  color: var(--primary-500);
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --tw-content: '';
  content: var(--tw-content);
  content: url("data:image/svg+xml,<svg width='12' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><path d='M0 11l2-2 5 5L18 3l2 2L7 18z' fill='slategray' /></svg>");
}

/* aria-invalid for various input types */

input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
  border-width: 1px;
  border-style: solid;
  border-color: var(--red-500);
  background-color: var(--red-100);
}

input[type="checkbox"][aria-invalid="true"], input[type="radio"][aria-invalid="true"] {
  border-width: 2px;
  border-style: solid;
  border-color: var(--red-500);
}

input[type="checkbox"][aria-invalid="true"]:checked, input[type="radio"][aria-invalid="true"]:checked {
  background-color: var(--red-500);
}

/* Toggle (created out of Radio - Segment buttons) */

.toggle-group input[type="radio"], ps-inputgroup[stylevariant$="square"] input[type="radio"], ps-inputgroup[stylevariant$="round"] input[type="radio"] {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 0px;
  border-color: transparent;
  background-color: transparent;
}

.toggle-group input[type="radio"] + label, ps-inputgroup[stylevariant$="square"] input[type="radio"] + label, ps-inputgroup[stylevariant$="round"] input[type="radio"] + label {
  display: flex;
  cursor: pointer;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--typography-200);
}

ps-inputgroup[stylevariant$="round"] input[type="radio"] + label {
  border-radius: 9999px;
}

.toggle-group input[type="radio"]:checked,
    ps-inputgroup[stylevariant$="square"] input[type="radio"]:checked,
    ps-inputgroup[stylevariant$="round"] input[type="radio"]:checked {
  background-image: none !important;
}

.toggle-group input[type="radio"]:checked + label, ps-inputgroup[stylevariant$="square"] input[type="radio"]:checked + label, ps-inputgroup[stylevariant$="round"] input[type="radio"]:checked + label {
  background-color: var(--white_to_surface_200);
  font-weight: 600;
  color: var(--typography-300);
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: var(--surface-300);
}

input[type="checkbox"] ~ label, input[type="radio"] ~ label {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--typography-300);
}

textarea {
  resize: none;
}

input::-moz-placeholder {
  color: var(--typography-100);
  opacity: 0.75;
}

input::placeholder {
  color: var(--typography-100);
  opacity: 0.75;
}

button:hover[class~="hover:bg-primary-700"],
    button:focus[class~="focus:bg-primary-700"] {
  background-color: var(--primary-700);
}

button:hover, button:focus, button:active, *[role="button"]:hover, *[role="button"]:focus, a[role="menuitem"]:hover, a[role="menuitem"]:focus, nav ul li a:hover, nav ul li a:focus, input[type="file"]:hover, input[type="file"]:focus, li[role="menuitem"]:hover, li[role="menuitem"]:focus, [role="tab"][aria-selected="true"], .active {
  background-color: var(--primary-100);
  color: var(--primary-700);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

input:hover, input:focus, textarea:hover, textarea:focus, select:hover, select:focus {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus, textarea:focus {
  background-color: var(--white);
}

button:disabled, option:disabled, input:disabled, input[type="checkbox"]:disabled ~ label, input[type="radio"]:disabled ~ label {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

::-webkit-file-upload-button {
  background-color: var(--surface-100);
}

/* Progress */

progress {
  position: relative;
  height: 0.5rem;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.5rem;
  border-width: 0px;
  background-color: var(--white_to_surface_200);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

nav[aria-label="primary"]progress {
  --tw-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

progress::-webkit-progress-bar {
  border-radius: 0.5rem;
  background-color: transparent;
}

progress::-moz-progress-bar, progress:indeterminate::-moz-progress-bar {
  border-radius: 0.5rem;
  background-color: var(--primary-500);
}

progress:not([value]),
    progress:indeterminate {
  animation: progress-indeterminate 1.5s linear infinite;
  background: var(--white)
        linear-gradient(to right, var(--primary-500) 30%, var(--white) 30%) top
        left/150% 150% no-repeat;
}

@keyframes progress-indeterminate {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

progress:not([value]).spinner,
    progress:indeterminate.spinner {
  background: none;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

progress[value]::-webkit-progress-value {
  border-radius: 0.5rem;
  background-color: var(--primary-500);
}

progress[value]::after {
  content: attr(value) "%";
  position: absolute;
  border-radius: 9999px;
  background-color: var(--white);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

nav[aria-label="primary"]progress[value]::after {
  --tw-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

progress[value]::after {
  top: -80%;
  left: calc(50% - 2rem);
}

progress[value][data-label]::after {
  content: attr(data-label);
}

progress[value].spinner {
  background: none;
  animation: none;
  overflow: hidden;
}

progress[value].spinner::after {
  top: 45%;
}

.progress-circle {
  background: none;
  overflow: hidden;
  transform: rotate(-90deg);
}

progress[value].progress-circle::after {
  transform: rotate(90deg);
  position: absolute;
  top: 40%;
  left: 30%;
}

/* Tooltip */

[role="tooltip"] {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  margin-left: 0px;
  margin-right: 0px;
}

button + [role="tooltip"] {
  position: absolute;
  z-index: 40;
  display: none;
  max-width: 16rem;
  border-radius: 0.125rem;
  background-color: var(--typography-300);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--white);
}

button:hover + [role="tooltip"], button:focus + [role="tooltip"] {
  display: block;
  width: -moz-max-content;
  width: max-content;
  animation: scale-95-to-1 0.15s ease-in-out;
}

input[type="file"] {
  border-style: dashed;
  border-color: var(--surface-300);
  padding: 0px;
}

input[type="range"] {
  padding: 0px;
}

/* Dialog */

dialog {
  border-radius: 0.125rem;
  background-color: var(--white);
  padding: 0px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

nav[aria-label="primary"]dialog {
  --tw-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

dialog[open].right {
  margin-right: 0px;
  display: flex;
  height: 100%;
  max-height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 0px;
  animation: slideInRight 0.15s ease-in-out;
}

dialog[open].top {
  margin-top: 0px;
  display: flex;
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  border-radius: 0px;
  animation: slideDown 0.15s ease-in-out;
}

dialog[open].bottom {
  margin-bottom: 0px;
  display: flex;
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  border-radius: 0px;
  animation: slideUp 0.15s ease-in-out;
}

dialog[open].center {
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  width: 100%;
  flex-direction: column;
  animation: 0.15s ease-in-out zoomIn;
}

dialog[open].full {
  margin: 0px;
  display: flex;
  height: 100%;
  max-height: 100%;
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  border-radius: 0px;
  animation: 0.15s ease-in-out zoomIn;
}

dialog::backdrop {
  background-color: rgb(17 24 39 / 0.5);
}

[draggable="true"] {
  cursor: move;
}

/* Notification */

.notification-top-center {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 40;
  margin: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-name: slideDown;
  animation-duration: 150ms;
  animation-fill-mode: both;
}

*, ::before, ::after {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(147 197 253 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.invisible {
  visibility: hidden;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.right-\[8\%\] {
  right: 8%;
}

.bottom-\[5\%\] {
  bottom: 5%;
}

.top-\[0\.75rem\] {
  top: 0.75rem;
}

.left-\[0\.25rem\] {
  left: 0.25rem;
}

.top-0 {
  top: 0px;
}

.right-0 {
  right: 0px;
}

.top-\[1\%\] {
  top: 1%;
}

.left-\[50\%\] {
  left: 50%;
}

.top-\[100\%\] {
  top: 100%;
}

.left-0 {
  left: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.z-20 {
  z-index: 20;
}

.z-10 {
  z-index: 10;
}

.z-\[1\] {
  z-index: 1;
}

.z-0 {
  z-index: 0;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.order-first {
  order: -9999;
}

.order-last {
  order: 9999;
}

.m-4 {
  margin: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.ml-auto {
  margin-left: auto;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-\[-50\%\] {
  margin-left: -50%;
}

.ml-\[-12\%\] {
  margin-left: -12%;
}

.-mt-1 {
  margin-top: -0.25rem;
}

.mt-4 {
  margin-top: 1rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.mt-auto {
  margin-top: auto;
}

.mr-auto {
  margin-right: auto;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-full {
  height: 100%;
}

.h-10 {
  height: 2.5rem;
}

.h-screen {
  height: 100vh;
}

.h-4 {
  height: 1rem;
}

.h-\[calc\(100\%-1\.25rem\)\] {
  height: calc(100% - 1.25rem);
}

.h-2 {
  height: 0.5rem;
}

.h-3 {
  height: 0.75rem;
}

.h-6 {
  height: 1.5rem;
}

.h-80 {
  height: 20rem;
}

.h-5 {
  height: 1.25rem;
}

.h-8 {
  height: 2rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-32 {
  height: 8rem;
}

.max-h-64 {
  max-height: 16rem;
}

.max-h-full {
  max-height: 100%;
}

.w-full {
  width: 100%;
}

.w-16 {
  width: 4rem;
}

.w-screen {
  width: 100vw;
}

.w-4 {
  width: 1rem;
}

.w-2 {
  width: 0.5rem;
}

.w-3 {
  width: 0.75rem;
}

.w-6 {
  width: 1.5rem;
}

.w-1\/2 {
  width: 50%;
}

.w-5 {
  width: 1.25rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-32 {
  width: 8rem;
}

.min-w-max {
  min-width: -moz-max-content;
  min-width: max-content;
}

.max-w-max {
  max-width: -moz-max-content;
  max-width: max-content;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-\[6rem\] {
  max-width: 6rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-48 {
  max-width: 12rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-screen-sm {
  max-width: 640px;
}

.max-w-64 {
  max-width: 16rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.scale-75 {
  --tw-scale-x: .75;
  --tw-scale-y: .75;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.resize {
  resize: both;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-8 {
  gap: 2rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-y-1 {
  row-gap: 0.25rem;
}

.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-x-8 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-surface-100 > :not([hidden]) ~ :not([hidden]) {
  border-color: var(--surface-100);
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-normal {
  white-space: normal;
}

.break-all {
  word-break: break-all;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded-r-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.rounded-l-none {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.border-8 {
  border-width: 8px;
}

.border {
  border-width: 1px;
}

.border-4 {
  border-width: 4px;
}

.border-r {
  border-right-width: 1px;
}

.border-r-0 {
  border-right-width: 0px;
}

.border-l-0 {
  border-left-width: 0px;
}

.border-solid {
  border-style: solid;
}

.border-surface-300 {
  border-color: var(--surface-300);
}

.border-transparent {
  border-color: transparent;
}

.border-surface-400 {
  border-color: var(--surface-400);
}

.border-white {
  border-color: var(--white);
}

.border-surface-50 {
  border-color: var(--surface-50);
}

.border-primary-300 {
  border-color: var(--primary-300);
}

.border-primary-500 {
  border-color: var(--primary-500);
}

.border-secondary-300 {
  border-color: var(--secondary-300);
}

.border-secondary-500 {
  border-color: var(--secondary-500);
}

.border-surface-200 {
  border-color: var(--surface-200);
}

.border-red-300 {
  border-color: var(--red-300);
}

.border-red-500 {
  border-color: var(--red-500);
}

.border-green-300 {
  border-color: var(--green-300);
}

.border-green-500 {
  border-color: var(--green-500);
}

.border-blue-300 {
  border-color: var(--blue-300);
}

.border-blue-500 {
  border-color: var(--blue-500);
}

.border-orange-300 {
  border-color: var(--orange-300);
}

.border-orange-500 {
  border-color: var(--orange-500);
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  background-color: var(--white);
}

.bg-surface-200 {
  background-color: var(--surface-200);
}

.bg-surface-100 {
  background-color: var(--surface-100);
}

.bg-white_to_surface_200 {
  background-color: var(--white_to_surface_200);
}

.bg-green-100 {
  background-color: var(--green-100);
}

.bg-surface-500 {
  background-color: var(--surface-500);
}

.bg-primary-500 {
  background-color: var(--primary-500);
}

.bg-surface-700 {
  background-color: var(--surface-700);
}

.bg-red-100 {
  background-color: var(--red-100);
}

.bg-white_to_surface_100 {
  background-color: var(--white_to_surface_100);
}

.bg-surface_200_to_surface_300 {
  background-color: var(--surface_200_to_surface_300);
}

.bg-primary-100 {
  background-color: var(--primary-100);
}

.bg-primary-300 {
  background-color: var(--primary-300);
}

.bg-primary-700 {
  background-color: var(--primary-700);
}

.bg-secondary-100 {
  background-color: var(--secondary-100);
}

.bg-secondary-300 {
  background-color: var(--secondary-300);
}

.bg-secondary-500 {
  background-color: var(--secondary-500);
}

.bg-secondary-700 {
  background-color: var(--secondary-700);
}

.bg-surface-50 {
  background-color: var(--surface-50);
}

.bg-surface-300 {
  background-color: var(--surface-300);
}

.bg-blue-100 {
  background-color: var(--blue-100);
}

.bg-orange-100 {
  background-color: var(--orange-100);
}

.bg-red-300 {
  background-color: var(--red-300);
}

.bg-green-300 {
  background-color: var(--green-300);
}

.bg-blue-300 {
  background-color: var(--blue-300);
}

.bg-orange-300 {
  background-color: var(--orange-300);
}

.bg-red-500 {
  background-color: var(--red-500);
}

.bg-green-500 {
  background-color: var(--green-500);
}

.bg-blue-500 {
  background-color: var(--blue-500);
}

.bg-orange-500 {
  background-color: var(--orange-500);
}

.bg-red-700 {
  background-color: var(--red-700);
}

.bg-green-700 {
  background-color: var(--green-700);
}

.bg-blue-700 {
  background-color: var(--blue-700);
}

.bg-orange-700 {
  background-color: var(--orange-700);
}

.p-4 {
  padding: 1rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-0 {
  padding: 0px;
}

.p-2 {
  padding: 0.5rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pt-4 {
  padding-top: 1rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.leading-normal {
  line-height: 1.5;
}

.text-typography-100 {
  color: var(--typography-100);
}

.text-primary-500 {
  color: var(--primary-500);
}

.text-surface-300 {
  color: var(--surface-300);
}

.text-typography-200 {
  color: var(--typography-200);
}

.text-primary-700 {
  color: var(--primary-700);
}

.text-white {
  color: var(--white);
}

.text-red-500 {
  color: var(--red-500);
}

.text-typography-300 {
  color: var(--typography-300);
}

.text-secondary-500 {
  color: var(--secondary-500);
}

.text-secondary-700 {
  color: var(--secondary-700);
}

.text-surface-100 {
  color: var(--surface-100);
}

.text-red-100 {
  color: var(--red-100);
}

.text-green-100 {
  color: var(--green-100);
}

.text-blue-100 {
  color: var(--blue-100);
}

.text-orange-100 {
  color: var(--orange-100);
}

.text-green-500 {
  color: var(--green-500);
}

.text-blue-500 {
  color: var(--blue-500);
}

.text-orange-500 {
  color: var(--orange-500);
}

.text-typography-400 {
  color: var(--typography-400);
}

.text-surface-400 {
  color: var(--surface-400);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-0 {
  opacity: 0;
}

.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-inner {
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

/* Form */

.required::before {
  content: "*";
  margin-right: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: var(--red-500);
}

dt, .static-label {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--typography-100);
}

.category-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--typography-100);
}

/* Breadcrumbs */

@media (max-width: 32rem) {
  [aria-label="breadcrumbs"] li:not(:nth-child(2)):not(:last-child) {
    display: none;
  }
}

[aria-label="breadcrumbs"] button {
  padding: 0px;
  font-weight: 500;
  text-decoration-line: underline;
  color: var(--anchor-100);
}

[aria-label="breadcrumbs"] button:hover, [aria-label="breadcrumbs"] button:focus {
  background-color: transparent;
}

/* Details-Summary for Accordion */

details > summary {
  cursor: pointer;
  list-style-type: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

summary::before {
  margin-right: 1rem;
  display: flex;
}

summary::before,
.marker-right > summary::after {
  content: url("data:image/svg+xml,<svg width='16' height='16' viewBox='0 -4 20 20' fill='none' stroke='LightSlateGray' xmlns='http://www.w3.org/2000/svg'><path stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 6l8 8 8-8'/></svg>");
}

details[open] {
  background-color: var(--white);
}

details[open] summary::before,
details[open].marker-right summary::after {
  content: url("data:image/svg+xml,<svg width='16' height='16' viewBox='0 -4 20 20' fill='none' stroke='LightSlateGray' xmlns='http://www.w3.org/2000/svg'><path stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 14l8-8 8 8'/></svg>");
}

details[open] summary {
  border-bottom-width: 1px;
  border-style: solid;
  border-color: var(--primary-300);
  background-color: var(--primary-100);
  font-weight: 600;
}

details summary > div * {
  font-weight: 600;
}

details[open] summary ~ *,
details[open] summary ~ slot > * {
  animation: fade-slide-down 0.15s ease-in-out;
}

@keyframes fade-slide-down {
  0% {
    opacity: 0;
    margin-top: -1rem;
  }

  100% {
    opacity: 1;
    margin-top: 0rem;
  }
}

/* To display the markers to the right */

.marker-right > summary::before,
details[open].marker-right > summary::before {
  content: "";
  margin-right: 0px;
}

.marker-right > summary::after {
  margin-left: auto;
  padding-left: 1rem;
}

/* Tabs */

.tabs-top, .tabs-left {
  display: flex;
}

.tabs-top [role="tab"], .tabs-left [role="tab"] {
  color: var(--typography-100);
}

.tabs-left {
  text-align: left;
}

.tabs-top {
  flex-direction: column;
}

[role="tablist"] {
  z-index: 10;
  display: flex;
  flex-shrink: 0;
  flex-grow: 0;
  border-style: solid;
  border-color: var(--surface-200);
  background-color: var(--surface-50);
}

.tabs-top [role="tablist"] {
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom-width: 1px;
}

.tabs-left [role="tablist"] {
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  border-right-width: 1px;
}

[role="tab"][aria-selected="true"] {
  border-radius: 0px;
  background-color: var(--white_to_surface_100);
  font-weight: 600;
  color: var(--primary-700);
}

.tabs-top [role="tab"][aria-selected="true"] {
  border-width: 0px;
  border-bottom-width: 4px;
  border-style: solid;
  border-color: var(--primary-500);
  padding-bottom: 0.25rem;
}

.tabs-left [role="tab"][aria-selected="true"] {
  border-width: 0px;
  border-left-width: 4px;
  border-style: solid;
  border-color: var(--primary-500);
}

[role="tabpanel"] {
  width: 100%;
  flex-grow: 1;
}

.tabs-top [role="tabpanel"] {
  overflow-x: auto;
}

.tabs-left [role="tabpanel"] {
  overflow-y: auto;
}

/* Making left tabs responsive by shifting them to the top using tailwind.css 'sm' breakpoint */

@media (max-width: 640px) {
  .tabs-left {
    flex-direction: column;
  }

  .tabs-left [role="tablist"] {
    display: flex;
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom-width: 1px;
  }

  .tabs-left [role="tab"][aria-selected="true"] {
    border-width: 0px;
    border-bottom-width: 4px;
    border-color: var(--primary-500);
    padding-bottom: 0.25rem;
  }
}

/* Table */

table {
  border-collapse: separate;
  overflow: auto;
  text-align: left;
  font-weight: 500;
  border-spacing: 0;
}

table caption {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
}

thead, tfoot {
  white-space: nowrap;
  font-weight: 600;
}

thead th {
  border-top-width: 1px;
  border-color: var(--surface-200);
}

th, td {
  white-space: nowrap;
  border-width: 0px;
  border-bottom-width: 1px;
  border-color: var(--surface-200);
  background-color: var(--white);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  vertical-align: top;
}

table.borderless th, table.borderless td {
  border-style: none;
}

thead tr th, thead tr td {
  background-color: var(--surface-50);
}

th {
  font-weight: 600;
}

table.zebra-stripe > tbody th, table.zebra-stripe > tbody td {
  border-style: none;
}

table.zebra-stripe > tbody tr:nth-child(even) th, table.zebra-stripe > tbody tr:nth-child(even) td, ul.zebra-stripe > li:nth-child(even), ol.zebra-stripe > li:nth-child(even) {
  background-color: var(--surface-100);
}

tbody tr:hover th, tbody tr:hover td, table.zebra-stripe > tbody tr:hover th, table.zebra-stripe > tbody tr:hover td {
  background-color: var(--primary-100);
}

table.sticky-head-row thead {
  position: sticky;
  top: 0px;
  z-index: 10;
}

table.sticky-foot-row tfoot {
  position: sticky;
  bottom: 0px;
  z-index: 10;
  box-shadow: 0 -2px 1px 0 hsla(var(--primary-h), 20%, 28%, 0.05);
}

/* Sticky first col */

table.sticky-first-col tr th:nth-child(1), table.sticky-first-col tr td:nth-child(1) {
  position: sticky;
  left: 0px;
}

table.sticky-first-col thead tr th:nth-child(1)::after, table.sticky-first-col tbody tr td:nth-child(1)::after, table.sticky-first-col tfoot tr td:nth-child(1)::after {
  position: absolute;
  top: 0px;
  height: 100%;
  width: 0.25rem;
  content: "";
  right: -0.25rem;
  box-shadow: 0.5rem 0 0.25rem -0.5rem var(--surface-200) inset;
}

/* Sticky last col */

table.sticky-last-col tr th:nth-last-child(1), table.sticky-last-col tr td:nth-last-child(1) {
  position: sticky;
  right: 0px;
}

table.sticky-last-col thead tr th:nth-last-child(1)::before, table.sticky-last-col tbody tr td:nth-last-child(1)::before, table.sticky-last-col tfoot tr td:nth-last-child(1)::before {
  position: absolute;
  top: 0px;
  height: 100%;
  width: 0.25rem;
  content: "";
  left: -0.25rem;
  box-shadow: -0.5rem 0 0.25rem -0.5rem var(--surface-200) inset;
}

tbody tr.selected td, table.zebra-stripe > tbody tr.selected td {
  background-color: var(--primary-100);
}

/* Fix to prevent tooltip from being cropped off by the table cell below it */

tbody tr td:hover, tbody tr td:focus-within {
  z-index: 20;
}

/* Line clamp */

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Css Grid auto-fit columns */

.col-autofill-32 {
  grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
}

.col-autofill-40 {
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
}

.col-autofill-48 {
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
}

.col-autofill-64 {
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}

.col-autofit-32 {
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
}

.col-autofit-40 {
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.col-autofit-48 {
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.col-autofit-64 {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

/* Shadow */

nav[aria-label="primary"].shadow-sm {
  --tw-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.shadow-sm-1 {
  box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-1 {
  box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* --- */

/* Fixes for <ps-Components> */

/* --- */

/* Fixing spacing issue caused by [isslot] on buttons with top icon */

[isslot]:empty {
  display: none;
}

/* Fix for removing red asterisk for checkboxes and radios that are part of inputgroup */

ps-inputgroup ps-input label.required::before {
  content: "";
  margin-right: 0px;
}

/* Fixing input type=search full-width */

[type="search"] {
  -webkit-appearance: inherit;
     -moz-appearance: inherit;
          appearance: inherit;
}

/* Lists */

/* Bordered list  */

ol.bordered li:not(:last-child)::after, ul.bordered li:not(:last-child)::after {
  display: block;
  border-bottom-width: 1px;
  border-style: solid;
  border-color: var(--surface-200);
  content: "";
}

ol.bordered-gap-x-4 li:not(:last-child)::after, ul.bordered-gap-x-4 li:not(:last-child)::after {
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-bottom-width: 1px;
  border-style: solid;
  border-color: var(--surface-200);
  content: "";
  width: calc(100% - 2rem);
}

/* List Drag and Drop */

.drop-target-up {
  border-width: 0px;
  border-top-width: 2px;
  border-style: dashed;
  border-color: var(--surface-500);
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.drop-target-down {
  border-width: 0px;
  border-bottom-width: 2px;
  border-style: dashed;
  border-color: var(--surface-500);
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

/* Dialog for ps-contextmenu */

dialog.context-menu {
  position: relative;
  margin: 0px;
  margin-top: auto;
  background-color: transparent;
  padding: 0px;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  overflow: inherit;
  max-width: inherit;
  animation: slideUp 0.15s ease-in-out;
}

dialog.context-menu::backdrop {
  background-color: rgb(17 24 39 / 0.5);
}

@media only screen and (min-width: 640px) {
  dialog.context-menu::backdrop {
    background-color: transparent;
  }

  dialog.context-menu {
    animation: slideDown 0.15s ease-in-out;
  }
}

/* End of fixes for <ps-Components> */

/* Skip links: Skip to main */

.skipnav {
  position: absolute;
  z-index: 50;
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  top: -6rem;
}

.skipnav:focus, .skipnav:active {
  top: 0px;
  left: 0px;
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 0.125rem;
  background-color: var(--white_to_surface_200);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

/* Hide keyboard shortcuts */

.shortcut_hide nav kbd, .shortcut_hide kbd, .shortcut_hide ps-navmenuitem::part(kbd) {
  display: none;
}

/* Navigation drawer */

nav[aria-label="secondary"] {
  animation: slideInLeft 0.15s ease-in-out;
}

nav[aria-label="secondary"] button, ps-navmenuitem::part(button) {
  width: 100%;
  text-align: left;
  font-weight: 600;
}

nav[aria-label="secondary"] ul,
nav[aria-label="secondary"] ul li,
ps-navmenu::part(ul),
ps-navmenugroup::part(ul),
ps-navmenuitem::part(li) {
  background-color: inherit;
}

/* Branding styles for Navigation Bar */

nav[aria-label="primary"].brand_solid,
ps-appbar[color="brand_solid"],
ps-appdrawer[color="brand_solid"] {
  --branded-nav-text-color: var(--white);
  --branded-nav-bg-color: var(--primary-500-wcag);
  --branded-nav-bg-color-focus: var(--primary-700);
}

nav[aria-label="primary"].brand_soft,
ps-appbar[color="brand_soft"],
ps-appdrawer[color="brand_soft"] {
  --branded-nav-text-color: var(--primary-500-wcag);
  --branded-nav-bg-color: var(--primary-100);
  --branded-nav-bg-color-focus: var(--white);
}

nav[aria-label="primary"].surface_solid,
ps-appbar[color="surface_solid"],
ps-appdrawer[color="surface_solid"] {
  --branded-nav-text-color: var(--surface-100);
  --branded-nav-bg-color: var(--surface-700);
  --branded-nav-bg-color-focus: var(--typography-300);
}

nav[aria-label="primary"].surface_soft,
ps-appbar[color="surface_soft"],
ps-appdrawer[color="surface_soft"] {
  --branded-nav-text-color: var(--surface-700);
  --branded-nav-bg-color: var(--surface-100);
  --branded-nav-bg-color-focus: var(--white);
}

nav.branded {
  background-color: var(--branded-nav-bg-color);
}

nav.branded *,
nav.branded ps-button::part(button),
ps-appbar[color] ps-button::part(button),
ps-appdrawer[color] ps-navmenuitem::part(li),
ps-appdrawer[color] *::part(button) {
  color: var(--branded-nav-text-color);
  border: transparent;
}

nav.branded * button:hover,
nav.branded * button:focus,
nav.branded ps-button::part(button):hover,
nav.branded ps-button::part(button):focus,
ps-appbar[color] ps-button::part(button):hover,
ps-appbar[color] ps-button::part(button):focus,
ps-appdrawer[color] *::part(button):hover,
ps-appdrawer[color] *::part(button):focus {
  background-color: var(--branded-nav-bg-color-focus);
}

/* Styling for Company, Dealer in UAT mode */

ps-appbar[color="surface_solid"] p {
  color: var(--surface-100);
}

/* Reduce the font-size for headings inside the nav bar, and dialogs */

nav[aria-label="primary"] h1, dialog h1 {
  font-size: 1.5rem;
  line-height: 2rem;
}

/* Logo styling for solid background colors */

nav.brand_solid img[alt~="logo"],
nav.surface_solid img[alt~="logo"] {
  filter: brightness(100);
}

/* Loader & Spinner Animations */

/* Spinning loader (with animation) */

.spinner {
  border-top-color: var(--primary-500);
  animation: spinner 1.5s linear infinite;
  overflow: clip;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Bounce Spinner (with animation) */

/* Reference: https://tobiasahlin.com/spinkit/ */

.bounce {
  text-align: center;
}

.bounce > div {
  display: inline-block;
  border-radius: 9999px;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.bounce .bounce1 {
  animation-delay: -0.32s;
}

.bounce .bounce2 {
  animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {
  0%,
    80%,
    100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1rem);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(1rem);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slideUp {
  animation-name: slideUp;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slideDown {
  animation-name: slideDown;
}

@keyframes zoomOut {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes scale-95-to-1 {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.scale-95-to-1 {
  animation-name: scale-95-to-1;
}

/* ANIMATIONS :: Attention seekers */

/* Shake */

@keyframes shake {
  from,
    to {
    transform: translate3d(0, 0, 0);
  }

  10%,
    30%,
    50%,
    70%,
    90% {
    transform: translate3d(-0.25rem, 0, 0);
  }

  20%,
    40%,
    60%,
    80% {
    transform: translate3d(0.25rem, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

/* Swing */

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

.animated,
.animated-150 {
  animation-duration: 150ms;
  animation-fill-mode: both;
}

.animated-300 {
  animation-duration: 300ms;
  animation-fill-mode: both;
}

.animated-500 {
  animation-duration: 500ms;
  animation-fill-mode: both;
}

.animated-700 {
  animation-duration: 700ms;
  animation-fill-mode: both;
}

.animated-1000 {
  animation-duration: 1s;
  animation-fill-mode: both;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

@media (prefers-reduced-motion: reduce), (print) {
  .animated,
    .animated-500,
    .animated-700 {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}

.after\:left-0::after {
  content: var(--tw-content);
  left: 0px;
}

.after\:bottom-\[98\%\]::after {
  content: var(--tw-content);
  bottom: 98%;
}

.after\:left-\[50\%\]::after {
  content: var(--tw-content);
  left: 50%;
}

.after\:ml-\[-5px\]::after {
  content: var(--tw-content);
  margin-left: -5px;
}

.after\:h-full::after {
  content: var(--tw-content);
  height: 100%;
}

.after\:w-1::after {
  content: var(--tw-content);
  width: 0.25rem;
}

.after\:rounded-r::after {
  content: var(--tw-content);
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.after\:border-4::after {
  content: var(--tw-content);
  border-width: 4px;
}

.after\:border-solid::after {
  content: var(--tw-content);
  border-style: solid;
}

.after\:border-t-transparent::after {
  content: var(--tw-content);
  border-top-color: transparent;
}

.after\:border-r-transparent::after {
  content: var(--tw-content);
  border-right-color: transparent;
}

.after\:border-b-surface-700::after {
  content: var(--tw-content);
  border-bottom-color: var(--surface-700);
}

.after\:border-l-transparent::after {
  content: var(--tw-content);
  border-left-color: transparent;
}

.after\:bg-primary-500::after {
  content: var(--tw-content);
  background-color: var(--primary-500);
}

.after\:content-\[\'\'\]::after {
  --tw-content: '';
  content: var(--tw-content);
}

.hover\:border-primary-700:hover {
  border-color: var(--primary-700);
}

.hover\:border-secondary-700:hover {
  border-color: var(--secondary-700);
}

.hover\:border-red-700:hover {
  border-color: var(--red-700);
}

.hover\:border-green-700:hover {
  border-color: var(--green-700);
}

.hover\:border-blue-700:hover {
  border-color: var(--blue-700);
}

.hover\:border-orange-700:hover {
  border-color: var(--orange-700);
}

.hover\:bg-red-300:hover {
  background-color: var(--red-300);
}

.hover\:bg-primary-300:hover {
  background-color: var(--primary-300);
}

.hover\:bg-secondary-100:hover {
  background-color: var(--secondary-100);
}

.hover\:bg-secondary-300:hover {
  background-color: var(--secondary-300);
}

.hover\:bg-secondary-700:hover {
  background-color: var(--secondary-700);
}

.hover\:bg-red-100:hover {
  background-color: var(--red-100);
}

.hover\:bg-red-700:hover {
  background-color: var(--red-700);
}

.hover\:bg-green-100:hover {
  background-color: var(--green-100);
}

.hover\:bg-green-300:hover {
  background-color: var(--green-300);
}

.hover\:bg-green-700:hover {
  background-color: var(--green-700);
}

.hover\:bg-blue-100:hover {
  background-color: var(--blue-100);
}

.hover\:bg-blue-300:hover {
  background-color: var(--blue-300);
}

.hover\:bg-blue-700:hover {
  background-color: var(--blue-700);
}

.hover\:bg-orange-100:hover {
  background-color: var(--orange-100);
}

.hover\:bg-orange-300:hover {
  background-color: var(--orange-300);
}

.hover\:bg-orange-700:hover {
  background-color: var(--orange-700);
}

.hover\:text-red-700:hover {
  color: var(--red-700);
}

.hover\:text-white:hover {
  color: var(--white);
}

.hover\:text-primary-700:hover {
  color: var(--primary-700);
}

.hover\:text-secondary-700:hover {
  color: var(--secondary-700);
}

.hover\:text-red-100:hover {
  color: var(--red-100);
}

.hover\:text-green-100:hover {
  color: var(--green-100);
}

.hover\:text-green-700:hover {
  color: var(--green-700);
}

.hover\:text-blue-100:hover {
  color: var(--blue-100);
}

.hover\:text-blue-700:hover {
  color: var(--blue-700);
}

.hover\:text-orange-100:hover {
  color: var(--orange-100);
}

.hover\:text-orange-700:hover {
  color: var(--orange-700);
}

.focus\:border-primary-700:focus {
  border-color: var(--primary-700);
}

.focus\:border-secondary-700:focus {
  border-color: var(--secondary-700);
}

.focus\:border-red-700:focus {
  border-color: var(--red-700);
}

.focus\:border-green-700:focus {
  border-color: var(--green-700);
}

.focus\:border-blue-700:focus {
  border-color: var(--blue-700);
}

.focus\:border-orange-700:focus {
  border-color: var(--orange-700);
}

.focus\:bg-red-300:focus {
  background-color: var(--red-300);
}

.focus\:bg-primary-300:focus {
  background-color: var(--primary-300);
}

.focus\:bg-secondary-100:focus {
  background-color: var(--secondary-100);
}

.focus\:bg-secondary-300:focus {
  background-color: var(--secondary-300);
}

.focus\:bg-secondary-700:focus {
  background-color: var(--secondary-700);
}

.focus\:bg-red-100:focus {
  background-color: var(--red-100);
}

.focus\:bg-red-700:focus {
  background-color: var(--red-700);
}

.focus\:bg-green-100:focus {
  background-color: var(--green-100);
}

.focus\:bg-green-300:focus {
  background-color: var(--green-300);
}

.focus\:bg-green-700:focus {
  background-color: var(--green-700);
}

.focus\:bg-blue-100:focus {
  background-color: var(--blue-100);
}

.focus\:bg-blue-300:focus {
  background-color: var(--blue-300);
}

.focus\:bg-blue-700:focus {
  background-color: var(--blue-700);
}

.focus\:bg-orange-100:focus {
  background-color: var(--orange-100);
}

.focus\:bg-orange-300:focus {
  background-color: var(--orange-300);
}

.focus\:bg-orange-700:focus {
  background-color: var(--orange-700);
}

.focus\:text-red-700:focus {
  color: var(--red-700);
}

.focus\:text-white:focus {
  color: var(--white);
}

.focus\:text-primary-700:focus {
  color: var(--primary-700);
}

.focus\:text-secondary-700:focus {
  color: var(--secondary-700);
}

.focus\:text-red-100:focus {
  color: var(--red-100);
}

.focus\:text-green-100:focus {
  color: var(--green-100);
}

.focus\:text-green-700:focus {
  color: var(--green-700);
}

.focus\:text-blue-100:focus {
  color: var(--blue-100);
}

.focus\:text-blue-700:focus {
  color: var(--blue-700);
}

.focus\:text-orange-100:focus {
  color: var(--orange-100);
}

.focus\:text-orange-700:focus {
  color: var(--orange-700);
}

.group:hover .group-hover\:visible {
  visibility: visible;
}

@media print {
  .print\:hidden {
    display: none;
  }
}

@media (min-width: 640px) {
  .sm\:absolute {
    position: absolute;
  }

  .sm\:top-0 {
    top: 0px;
  }

  .sm\:order-none {
    order: 0;
  }

  .sm\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:h-auto {
    height: auto;
  }

  .sm\:w-3\/6 {
    width: 50%;
  }

  .sm\:flex-wrap {
    flex-wrap: wrap;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:gap-x-4 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 768px) {
  .md\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:max-w-screen-md {
    max-width: 768px;
  }

  .md\:max-w-md {
    max-width: 28rem;
  }

  .md\:max-w-xs {
    max-width: 20rem;
  }

  .md\:flex-shrink {
    flex-shrink: 1;
  }

  .md\:border-r {
    border-right-width: 1px;
  }

  .md\:border-surface-200 {
    border-color: var(--surface-200);
  }

  .md\:opacity-100 {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:hidden {
    display: none;
  }

  .lg\:max-w-md {
    max-width: 28rem;
  }
}

@media (min-width: 1280px) {
  .xl\:ml-4 {
    margin-left: 1rem;
  }

  .xl\:max-w-screen-md {
    max-width: 768px;
  }

  .xl\:pl-4 {
    padding-left: 1rem;
  }
}
