/*
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)
2. [UnoCSS]: allow to override the default border color with css var `--un-default-border-color`
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: var(--un-default-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 */
  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-feature-settings: inherit; /* 1 */
  font-variation-settings: 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 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(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 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(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: ;}.\[\&\.disabled\]\:pointer-events-none.disabled,.pointer-events-none{pointer-events:none;}.\!sticky{position:sticky !important;}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.static{position:static;}.inset-0{inset:0;}.inset-x-0{left:0;right:0;}.inset-y-0{top:0;bottom:0;}.bottom-0{bottom:0;}.left-0{left:0;}.left-4{left:1rem;}.left-50\%{left:50%;}.right-0{right:0;}.right-100\%{right:100%;}.right-4{right:1rem;}.top-0{top:0;}.top-100\%{top:100%;}.top-4{top:1rem;}.top-40\%{top:40%;}.top-50\%{top:50%;}.z-10{z-index:10;}.z-100{z-index:100;}.z-20{z-index:20;}.z-50{z-index:50;}.grid{display:grid;}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr));}.mx-auto{margin-left:auto;margin-right:auto;}.my-6{margin-top:1.5rem;margin-bottom:1.5rem;}.my-8{margin-top:2rem;margin-bottom:2rem;}.\!mt-0{margin-top:0 !important;}.\!mt-20{margin-top:5rem !important;}.mb-14{margin-bottom:3.5rem;}.mb-2{margin-bottom:0.5rem;}.mb-3{margin-bottom:0.75rem;}.mb-4{margin-bottom:1rem;}.mb-6{margin-bottom:1.5rem;}.mb-8{margin-bottom:2rem;}.mb-9{margin-bottom:2.25rem;}.ml-auto{margin-left:auto;}.mr-2{margin-right:0.5rem;}.mt-1{margin-top:0.25rem;}.mt-10{margin-top:2.5rem;}.mt-12{margin-top:3rem;}.mt-16{margin-top:4rem;}.mt-2{margin-top:0.5rem;}.mt-20{margin-top:5rem;}.mt-3{margin-top:0.75rem;}.mt-4{margin-top:1rem;}.mt-5{margin-top:1.25rem;}.mt-6{margin-top:1.5rem;}.mt-8{margin-top:2rem;}.mt-auto{margin-top:auto;}.\[\&\:has\(\.k-dropdown\.active\)\>\.hover-slot\]\:block:has(.k-dropdown.active)>.hover-slot,.\[\&\:hover\>\.hover-slot\]\:block:hover>.hover-slot,.\[\&\.img-empty\]\:block.img-empty,.active .\[\.active_\&\]\:block,.active>.\[\.active\>\&\]\:block,.block,.peer:checked~.peer-checked\:\[\&\>div\]\:block>div,.group:hover .group-hover\:block{display:block;}.inline-block{display:inline-block;}.hidden{display:none;}.empty\:\!hidden:empty{display:none !important;}.empty\:hidden:empty{display:none;}.aspect-\[15\/7\]{aspect-ratio:15/7;}.aspect-16\/9{aspect-ratio:16/9;}.aspect-2\/1{aspect-ratio:2/1;}.aspect-20\/9{aspect-ratio:20/9;}.aspect-3\/2{aspect-ratio:3/2;}.aspect-square{aspect-ratio:1/1;}.\!h-160{height:40rem !important;}.\!h-180{height:45rem !important;}.\!h-4{height:1rem !important;}.\!h-5{height:1.25rem !important;}.\!h-6{height:1.5rem !important;}.\!h-auto{height:auto !important;}.\!h-full{height:100% !important;}.\!w-128{width:32rem !important;}.\!w-24{width:6rem !important;}.\!w-4{width:1rem !important;}.\!w-40{width:10rem !important;}.\!w-45{width:11.25rem !important;}.\!w-5{width:1.25rem !important;}.\!w-55{width:13.75rem !important;}.\!w-6{width:1.5rem !important;}.\!w-full{width:100% !important;}.\[\&_\.dropdown\]\:w-auto .dropdown{width:auto;}.\[\&_tr\]\:h-10 tr,.\[\&_tr\>td\]\:h-10 tr>td,.h-10{height:2.5rem;}.\[\&\.pad\]\:w-200.pad{width:50rem;}.\[\&\.phone\]\:w-100.phone,.w-100{width:25rem;}.h-10\.5{height:2.625rem;}.h-11{height:2.75rem;}.h-12{height:3rem;}.h-16{height:4rem;}.h-18{height:4.5rem;}.h-2{height:0.5rem;}.h-20{height:5rem;}.h-3\.5{height:0.875rem;}.h-4{height:1rem;}.h-40{height:10rem;}.h-5{height:1.25rem;}.h-5\.8{height:1.45rem;}.h-50{height:12.5rem;}.h-58{height:14.5rem;}.h-6{height:1.5rem;}.h-7{height:1.75rem;}.h-70{height:17.5rem;}.h-8{height:2rem;}.h-auto{height:auto;}.h-fit,.service .\[\.service_\&\]\:h-fit{height:fit-content;}.h-full{height:100%;}.h-max{height:max-content;}.max-h-100\%{max-height:100%;}.max-h-52{max-height:13rem;}.max-w-20{max-width:5rem;}.max-w-90{max-width:22.5rem;}.min-h-24px{min-height:24px;}.min-h-285px{min-height:285px;}.min-h-70vh{min-height:70vh;}.min-h-full{min-height:100%;}.min-w-30{min-width:7.5rem;}.service .\[\.service_\&\]\:w-fit,.w-fit{width:fit-content;}.w-1{width:0.25rem;}.w-10{width:2.5rem;}.w-10\.5{width:2.625rem;}.w-11{width:2.75rem;}.w-12{width:3rem;}.w-18{width:4.5rem;}.w-192{width:48rem;}.w-2{width:0.5rem;}.w-20{width:5rem;}.w-220{width:55rem;}.w-24{width:6rem;}.w-242\.5{width:60.625rem;}.w-3\.5{width:0.875rem;}.w-35{width:8.75rem;}.w-4{width:1rem;}.w-40{width:10rem;}.w-5{width:1.25rem;}.w-5\.8{width:1.45rem;}.w-52{width:13rem;}.w-530px{width:530px;}.w-55{width:13.75rem;}.w-58{width:14.5rem;}.w-60{width:15rem;}.w-62{width:15.5rem;}.w-66{width:16.5rem;}.w-7{width:1.75rem;}.w-8{width:2rem;}.w-80{width:20rem;}.w-90{width:22.5rem;}.w-full{width:100%;}.w-max{width:max-content;}.peer:has(:checked)~.peer-has-\[\:checked\]\:flex,.flex{display:flex;}.flex-1{flex:1 1 0%;}.shrink-0{flex-shrink:0;}.grow-2{flex-grow:2;}.flex-row{flex-direction:row;}.flex-col{flex-direction:column;}.flex-wrap{flex-wrap:wrap;}.origin-top-left{transform-origin:top left;}.-translate-x-50\%{--un-translate-x:-50%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.-translate-y-50\%{--un-translate-y:-50%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.translate-x-100\%{--un-translate-x:100%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.hover\:translate-x-0:hover{--un-translate-x:0;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.active .\[\.active_\&\]\:rotate-180,.peer:checked~.peer-checked\:rotate-180,.group:hover .group-hover\:rotate-180{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:180deg;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.rotate-0{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:0;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.transform{transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite;}.cursor-pointer{cursor:pointer;}.\[\&\.disabled\]\:cursor-not-allowed.disabled{cursor:not-allowed;}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed;}.select-none{-webkit-user-select:none;user-select:none;}.items-start{align-items:flex-start;}.items-center{align-items:center;}.self-stretch{align-self:stretch;}.justify-start{justify-content:flex-start;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.gap-1{gap:0.25rem;}.gap-14{gap:3.5rem;}.gap-2{gap:0.5rem;}.gap-2\.5{gap:0.625rem;}.gap-4{gap:1rem;}.gap-6{gap:1.5rem;}.gap-8{gap:2rem;}.space-y-1>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(0.25rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(0.25rem * var(--un-space-y-reverse));}.space-y-2>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(0.5rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(0.5rem * var(--un-space-y-reverse));}.space-y-4>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(1rem * var(--un-space-y-reverse));}.space-y-6>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(1.5rem * var(--un-space-y-reverse));}.space-y-8>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(2rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(2rem * var(--un-space-y-reverse));}.overflow-auto{overflow:auto;}.overflow-hidden,.scrollable .\[\.scrollable_\&\]\:overflow-hidden{overflow:hidden;}.overflow-y-auto{overflow-y:auto;}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.\[\&_\.ctnbox\]\:border .ctnbox,.border{border-width:1px;}.border-4{border-width:4px;}.\[\&_tr\:not\(\:last-child\)\]\:border-b tr:not(:last-child),.border-b{border-bottom-width:1px;}.\!border-\[\#2296f3\],.\!border-\[\#2296F3\]{--un-border-opacity:1 !important;border-color:rgba(34,150,243,var(--un-border-opacity)) !important;}.\!border-\[\#e0e0e0\]{--un-border-opacity:1 !important;border-color:rgba(224,224,224,var(--un-border-opacity)) !important;}.\[\&_tr\]\:border-\[\#e0e0e0\] tr{--un-border-opacity:1;border-color:rgba(224,224,224,var(--un-border-opacity));}.\[\&\.active_\.ctnbox\]\:border-\[\#2296F3\].active .ctnbox,.\[\&\.active\]\:border-\[\#2296F3\].active,.\[\&\.overDrop\]\:border-\[\#2296F3\].overDrop,.border-\[\#2296F3\],.peer:checked~.peer-checked\:border-\[\#2296f3\]{--un-border-opacity:1;border-color:rgba(34,150,243,var(--un-border-opacity));}.\[\&\\\[disabled\\\]\]\:border-\[\#999999\]\[disabled\]{--un-border-opacity:1;border-color:rgba(153,153,153,var(--un-border-opacity));}.active .\[\.active_\&\]\:border-white{--un-border-opacity:1;border-color:rgba(255,255,255,var(--un-border-opacity));}.border-\[\#8CA6B1\]{--un-border-opacity:1;border-color:rgba(140,166,177,var(--un-border-opacity));}.border-\[\#d1d5db\]{--un-border-opacity:1;border-color:rgba(209,213,219,var(--un-border-opacity));}.border-\[\#DCDFE6\]{--un-border-opacity:1;border-color:rgba(220,223,230,var(--un-border-opacity));}.border-\[\#e4e7ed\]{--un-border-opacity:1;border-color:rgba(228,231,237,var(--un-border-opacity));}.border-\[\#eaeaea\]{--un-border-opacity:1;border-color:rgba(234,234,234,var(--un-border-opacity));}.border-\[\#ebebeb\]{--un-border-opacity:1;border-color:rgba(235,235,235,var(--un-border-opacity));}.border-\[rgba\(159\,167\,183\,0\.35\)\]{--un-border-opacity:0.35;border-color:rgba(159,167,183,var(--un-border-opacity));}.border-transparent{border-color:transparent;}.error .\[\.error_\&\]\:border-\[\#ff4511\]{--un-border-opacity:1;border-color:rgba(255,69,17,var(--un-border-opacity));}.hover\:border-\[\#2296f3\]:hover{--un-border-opacity:1;border-color:rgba(34,150,243,var(--un-border-opacity));}.hover\:border-\[\#2296F3\]:hover{--un-border-opacity:1;border-color:rgba(34,150,243,var(--un-border-opacity));}.hover\:border-gray-200:hover{--un-border-opacity:1;border-color:rgba(229,231,235,var(--un-border-opacity));}.focus\:border-\[\#2296F3\]:focus{--un-border-opacity:1;border-color:rgba(34,150,243,var(--un-border-opacity));}.\[\&\:not\(\:last-child\)\]\:border-b-\[\#e5e7eb\]:not(:last-child){--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgba(229,231,235,var(--un-border-bottom-opacity));}.border-b-\[rgb\(236\,236\,236\)\]{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgba(236,236,236,var(--un-border-bottom-opacity));}.\!rounded-full{border-radius:9999px !important;}.rounded{border-radius:0.25rem;}.rounded-2xl{border-radius:1rem;}.rounded-full{border-radius:9999px;}.rounded-lg{border-radius:0.5rem;}.rounded-md{border-radius:0.375rem;}.rounded-sm{border-radius:0.125rem;}.rounded-xl{border-radius:0.75rem;}.rounded-r-0{border-top-right-radius:0;border-bottom-right-radius:0;}.border-dashed{border-style:dashed;}.\!bg-white{--un-bg-opacity:1 !important;background-color:rgba(255,255,255,var(--un-bg-opacity)) !important;}.\[\&_th\]\:bg-\[\#b9dcf8\] th{--un-bg-opacity:1;background-color:rgba(185,220,248,var(--un-bg-opacity));}.\[\&\.active\]\:\!bg-\[\#2296F3\].active{--un-bg-opacity:1 !important;background-color:rgba(34,150,243,var(--un-bg-opacity)) !important;}.\[\&\.active\]\:\!bg-blue-500.active{--un-bg-opacity:1 !important;background-color:rgba(59,130,246,var(--un-bg-opacity)) !important;}.\[\&\.active\]\:bg-\[\#dfeffe\].active,.bg-\[\#dfeffe\]{--un-bg-opacity:1;background-color:rgba(223,239,254,var(--un-bg-opacity));}.\[\&\.active\]\:bg-\[\#f4f9ff\].active,.bg-\[\#f4f9ff\],.bg-\[\#F4F9FF\]{--un-bg-opacity:1;background-color:rgba(244,249,255,var(--un-bg-opacity));}.\[\&\.active\]\:bg-white.active,.bg-white{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity));}.\[\&\.overDrop\]\:bg-\[\#f9f9f9\].overDrop,.bg-\[\#f9f9f9\]{--un-bg-opacity:1;background-color:rgba(249,249,249,var(--un-bg-opacity));}.active .\[\.active_\&\]\:bg-\[\#2296F3\],.active .\[\.active_\&\]\:bg-\#2296f3,.bg-\[\#2296f3\],.bg-\[\#2296F3\],.peer:checked~.peer-checked\:bg-\[\#2296f3\]{--un-bg-opacity:1;background-color:rgba(34,150,243,var(--un-bg-opacity));}.bg-\[\#303133\]{--un-bg-opacity:1;background-color:rgba(48,49,51,var(--un-bg-opacity));}.bg-\[\#50bc76\]{--un-bg-opacity:1;background-color:rgba(80,188,118,var(--un-bg-opacity));}.bg-\[\#9FA7B7\]{--un-bg-opacity:1;background-color:rgba(159,167,183,var(--un-bg-opacity));}.bg-\[\#dcedff\]{--un-bg-opacity:1;background-color:rgba(220,237,255,var(--un-bg-opacity));}.bg-\[\#E4F0FC\]{--un-bg-opacity:1;background-color:rgba(228,240,252,var(--un-bg-opacity));}.bg-\[\#e5e7eb\]{--un-bg-opacity:1;background-color:rgba(229,231,235,var(--un-bg-opacity));}.bg-\[\#EBEEF5\]{--un-bg-opacity:1;background-color:rgba(235,238,245,var(--un-bg-opacity));}.bg-\[\#ecf2f8\]{--un-bg-opacity:1;background-color:rgba(236,242,248,var(--un-bg-opacity));}.bg-\[\#f0ca22\]{--un-bg-opacity:1;background-color:rgba(240,202,34,var(--un-bg-opacity));}.bg-\[\#F0F9EB\]{--un-bg-opacity:1;background-color:rgba(240,249,235,var(--un-bg-opacity));}.bg-\[\#f1f2f4\]{--un-bg-opacity:1;background-color:rgba(241,242,244,var(--un-bg-opacity));}.bg-\[\#f7f9fb\]{--un-bg-opacity:1;background-color:rgba(247,249,251,var(--un-bg-opacity));}.bg-\[\#ff7148\]{--un-bg-opacity:1;background-color:rgba(255,113,72,var(--un-bg-opacity));}.bg-black\/50{background-color:rgba(0,0,0,0.5);}.bg-white\/90{background-color:rgba(255,255,255,0.9);}.hover\:\!bg-\[rgb\(34\,150\,243\,0\.1\)\]:hover{--un-bg-opacity:0.1 !important;background-color:rgba(34,150,243,var(--un-bg-opacity)) !important;}.hover\:bg-\[\#1E86E0\]:hover{--un-bg-opacity:1;background-color:rgba(30,134,224,var(--un-bg-opacity));}.hover\:bg-\[\#e8f4ff\]:hover{--un-bg-opacity:1;background-color:rgba(232,244,255,var(--un-bg-opacity));}.hover\:bg-\[\#f3f4f6\]:hover{--un-bg-opacity:1;background-color:rgba(243,244,246,var(--un-bg-opacity));}.hover\:bg-\[\#f4f9ff\]:hover{--un-bg-opacity:1;background-color:rgba(244,249,255,var(--un-bg-opacity));}.hover\:bg-\[\#F4F9FF\]:hover{--un-bg-opacity:1;background-color:rgba(244,249,255,var(--un-bg-opacity));}.hover\:bg-\[\#f9f9f9\]:hover{--un-bg-opacity:1;background-color:rgba(249,249,249,var(--un-bg-opacity));}.hover\:bg-\[\#FFEEE9\]:hover{--un-bg-opacity:1;background-color:rgba(255,238,233,var(--un-bg-opacity));}.hover\:bg-\[rgba\(0\,0\,0\,0\.01\)\]:hover{--un-bg-opacity:0.01;background-color:rgba(0,0,0,var(--un-bg-opacity));}.hover\:bg-gray-100:hover{--un-bg-opacity:1;background-color:rgba(243,244,246,var(--un-bg-opacity));}.hover\:bg-white:hover{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity));}.bg-\[url\(\/_start\/assets\/empty_state_human\.svg\)\]{--un-url:url(/_start/assets/empty_state_human.svg);background-image:var(--un-url);}.bg-right-bottom{background-position:right bottom;}.bg-no-repeat{background-repeat:no-repeat;}.\!fill-\[\#2296f3\]{--un-fill-opacity:1 !important;fill:rgba(34,150,243,var(--un-fill-opacity)) !important;}.\[\&_\.k-icon\]\:fill-\[\#666666\] .k-icon{--un-fill-opacity:1;fill:rgba(102,102,102,var(--un-fill-opacity));}.\[\&\.active\]\:fill-\[\#2296f3\].active,.\[\&\.active\]\:fill-\[\#2296F3\].active,.fill-\[\#2296F3\]{--un-fill-opacity:1;fill:rgba(34,150,243,var(--un-fill-opacity));}.active .\[\.active_\&_\.k-icon\]\:\!fill-\[\#ECECEC\] .k-icon{--un-fill-opacity:1 !important;fill:rgba(236,236,236,var(--un-fill-opacity)) !important;}.fill-\[\#303133\]{--un-fill-opacity:1;fill:rgba(48,49,51,var(--un-fill-opacity));}.fill-\[\#4693F7\]{--un-fill-opacity:1;fill:rgba(70,147,247,var(--un-fill-opacity));}.fill-\[\#606266\]{--un-fill-opacity:1;fill:rgba(96,98,102,var(--un-fill-opacity));}.fill-\[\#8ba5b0\]{--un-fill-opacity:1;fill:rgba(139,165,176,var(--un-fill-opacity));}.fill-\[\#aeb0b1\]{--un-fill-opacity:1;fill:rgba(174,176,177,var(--un-fill-opacity));}.fill-\[\#E6A23C\]{--un-fill-opacity:1;fill:rgba(230,162,60,var(--un-fill-opacity));}.fill-\[\#FF7148\]{--un-fill-opacity:1;fill:rgba(255,113,72,var(--un-fill-opacity));}.fill-white{--un-fill-opacity:1;fill:rgba(255,255,255,var(--un-fill-opacity));}.hover\:\[\&_\.k-icon\]\:fill-\[\#2296F3\] .k-icon:hover{--un-fill-opacity:1;fill:rgba(34,150,243,var(--un-fill-opacity));}.hover\:fill-\[\#2296f3\]:hover{--un-fill-opacity:1;fill:rgba(34,150,243,var(--un-fill-opacity));}.hover\:fill-\[\#2296F3\]:hover{--un-fill-opacity:1;fill:rgba(34,150,243,var(--un-fill-opacity));}.object-cover{object-fit:cover;}.\!object-contain{object-fit:contain !important;}.object-contain,.service .\[\.service_\&\]\:object-contain{object-fit:contain;}.object-left-top{object-position:left top;}.object-top{object-position:top;}.\[\&_\.content\]\:p-0 .content{padding:0;}.p-1{padding:0.25rem;}.p-2{padding:0.5rem;}.p-3{padding:0.75rem;}.p-4{padding:1rem;}.p-6{padding:1.5rem;}.p-8{padding:2rem;}.\!px-10{padding-left:2.5rem !important;padding-right:2.5rem !important;}.\[\&_\.app-cover\]\:py-5 .app-cover,.py-5{padding-top:1.25rem;padding-bottom:1.25rem;}.\[\&_\.tab-btn\]\:\!py-3 .tab-btn{padding-top:0.75rem !important;padding-bottom:0.75rem !important;}.\[\&_td\]\:px-2 td,.px-2{padding-left:0.5rem;padding-right:0.5rem;}.\[\&_td\]\:px-4 td,.\[\&_th\]\:px-4 th,.px-4{padding-left:1rem;padding-right:1rem;}.\[\&_td\]\:py-2 td,.\[\&_th\]\:py-2 th,.py-2{padding-top:0.5rem;padding-bottom:0.5rem;}.px-0{padding-left:0;padding-right:0;}.px-1{padding-left:0.25rem;padding-right:0.25rem;}.px-16{padding-left:4rem;padding-right:4rem;}.px-3{padding-left:0.75rem;padding-right:0.75rem;}.px-5{padding-left:1.25rem;padding-right:1.25rem;}.px-6{padding-left:1.5rem;padding-right:1.5rem;}.px-8{padding-left:2rem;padding-right:2rem;}.py-0\.5{padding-top:0.125rem;padding-bottom:0.125rem;}.py-1{padding-top:0.25rem;padding-bottom:0.25rem;}.py-16{padding-top:4rem;padding-bottom:4rem;}.py-2\.5{padding-top:0.625rem;padding-bottom:0.625rem;}.py-3{padding-top:0.75rem;padding-bottom:0.75rem;}.py-4{padding-top:1rem;padding-bottom:1rem;}.py-6{padding-top:1.5rem;padding-bottom:1.5rem;}.py-8{padding-top:2rem;padding-bottom:2rem;}.k-icon~.\[\.k-icon\~\&\]\:pl-10{padding-left:2.5rem;}.pb-3{padding-bottom:0.75rem;}.pb-4{padding-bottom:1rem;}.pb-6{padding-bottom:1.5rem;}.pr-1{padding-right:0.25rem;}.pt-0{padding-top:0;}.pt-14{padding-top:3.5rem;}.pt-6{padding-top:1.5rem;}.\[\&\.center\]\:text-center.center,.text-center{text-align:center;}.\[\&_th\]\:text-left th{text-align:left;}.text-nowrap{text-wrap:nowrap;}.text-12px{font-size:12px;}.text-14px{font-size:14px;}.text-2xl{font-size:1.5rem;line-height:2rem;}.text-3xl{font-size:1.875rem;line-height:2.25rem;}.text-4{font-size:1rem;}.text-4xl{font-size:2.25rem;line-height:2.5rem;}.text-5xl{font-size:3rem;line-height:1;}.text-base{font-size:1rem;line-height:1.5rem;}.text-sm{font-size:0.875rem;line-height:1.25rem;}.text-xl{font-size:1.25rem;line-height:1.75rem;}.text-xs{font-size:0.75rem;line-height:1rem;}.\[\&\.active\]\:font-medium.active,.font-medium{font-weight:500;}.font-300{font-weight:300;}.font-bold{font-weight:700;}.font-semibold{font-weight:600;}.leading-\[22px\]{line-height:22px;}.leading-4{line-height:1rem;}.\!text-\[\#2296f3\],.\!text-\[\#2296F3\]{--un-text-opacity:1 !important;color:rgba(34,150,243,var(--un-text-opacity)) !important;}.\[\&_td\:nth-child\(3\)\]\:text-\[\#2296f3\] td:nth-child(3),.\[\&\.active\]\:text-\[\#2296f3\].active,.\[\&\.active\]\:text-\[\#2296F3\].active,.text-\[\#2296F3\]{--un-text-opacity:1;color:rgba(34,150,243,var(--un-text-opacity));}.\[\&_td\]\:text-\[\#606266\] td,.text-\[\#606266\]{--un-text-opacity:1;color:rgba(96,98,102,var(--un-text-opacity));}.\[\&_th\]\:text-\[\#192845\] th,.text-\[\#192845\]{--un-text-opacity:1;color:rgba(25,40,69,var(--un-text-opacity));}.\[\&\.active\]\:text-white.active,.active .\[\.active_\&\]\:text-white,.text-white{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}.\[\&\.disabled\]\:text-gray-400.disabled{--un-text-opacity:1;color:rgba(156,163,175,var(--un-text-opacity));}.\[\&\.selected\]\:text-\[\#303133\].selected,.\[\&\.selected\]\:text-\#303133.selected,.active .\[\.active_\&\]\:text-\[\#303133\],.text-\[\#303133\]{--un-text-opacity:1;color:rgba(48,49,51,var(--un-text-opacity));}.active .\[\.active_\&\]\:text-\[\#ECECEC\]{--un-text-opacity:1;color:rgba(236,236,236,var(--un-text-opacity));}.text-\[\#616265\]{--un-text-opacity:1;color:rgba(97,98,101,var(--un-text-opacity));}.text-\[\#646a73\]{--un-text-opacity:1;color:rgba(100,106,115,var(--un-text-opacity));}.text-\[\#646c7d\],.text-\[\#646C7D\]{--un-text-opacity:1;color:rgba(100,108,125,var(--un-text-opacity));}.text-\[\#666666\]{--un-text-opacity:1;color:rgba(102,102,102,var(--un-text-opacity));}.text-\[\#67C23A\]{--un-text-opacity:1;color:rgba(103,194,58,var(--un-text-opacity));}.text-\[\#8ba5b0\]{--un-text-opacity:1;color:rgba(139,165,176,var(--un-text-opacity));}.text-\[\#9fa7b7\]{--un-text-opacity:1;color:rgba(159,167,183,var(--un-text-opacity));}.text-\[\#b0b0b0\]{--un-text-opacity:1;color:rgba(176,176,176,var(--un-text-opacity));}.text-\[\#E6A23C\]{--un-text-opacity:1;color:rgba(230,162,60,var(--un-text-opacity));}.text-\[\#FF7148\]{--un-text-opacity:1;color:rgba(255,113,72,var(--un-text-opacity));}.text-\#333333{--un-text-opacity:1;color:rgba(51,51,51,var(--un-text-opacity));}.text-gray-600{--un-text-opacity:1;color:rgba(75,85,99,var(--un-text-opacity));}.text-red{--un-text-opacity:1;color:rgba(248,113,113,var(--un-text-opacity));}.hover\:text-\[\#2296f3\]:hover{--un-text-opacity:1;color:rgba(34,150,243,var(--un-text-opacity));}.hover\:text-\[\#2296F3\]:hover{--un-text-opacity:1;color:rgba(34,150,243,var(--un-text-opacity));}.group:hover .group-hover\:underline{text-decoration-line:underline;}.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgba(0,0,0,0.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgba(0,0,0,0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0_4px_40px_0px_rgba\(119\,190\,241\,0\.24\)\]{--un-shadow:0 4px 40px 0px var(--un-shadow-color, rgba(119,190,241,0.24));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0px_0px_12px_0px_rgba\(0\,0\,0\,0\.12\)\]{--un-shadow:0px 0px 12px 0px var(--un-shadow-color, rgba(0,0,0,0.12));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0px_4px_10px_0px_rgba\(159\,167\,183\,0\.2\)\]{--un-shadow:0px 4px 10px 0px var(--un-shadow-color, rgba(159,167,183,0.2));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0px_4px_15px_0px_\#9FA7B733\]{--un-shadow:0px 4px 15px 0px var(--un-shadow-color, rgba(159,167,183,0.2));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0px_4px_15px_0px_rgba\(159\,167\,183\,0\.35\)\]{--un-shadow:0px 4px 15px 0px var(--un-shadow-color, rgba(159,167,183,0.35));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-\[0px_4px_10px_0px_rgba\(159\,167\,183\,0\.2\)\]:hover{--un-shadow:0px 4px 10px 0px var(--un-shadow-color, rgba(159,167,183,0.2));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-\[0px_4px_15px_0px_rgba\(159\,167\,183\,0\.35\)\]:hover{--un-shadow:0px 4px 15px 0px var(--un-shadow-color, rgba(159,167,183,0.35));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.outline-none{outline:2px solid transparent;outline-offset:2px;}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.duration-300{transition-duration:300ms;}@media (min-width: 768px){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}}@media (min-width: 1024px){.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}}@media (min-width: 1280px){.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}}@media (min-width: 1536px){.\32 xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr));}}
