/*
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: ;}.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;}}.\!relative{position:relative !important;}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.before\:absolute::before{position:absolute;}.-right-3px{right:-3px;}.-top-5px{top:-5px;}.\!top-50\%{top:50% !important;}.bottom-0,.bottom-0px{bottom:0;}.bottom-5px{bottom:5px;}.left-\[50\%\],.left-50\%{left:50%;}.left-\[82\%\]{left:82%;}.left-0,.left-0px{left:0;}.left-20px{left:20px;}.right-\[-8px\]{right:-8px;}.right-0{right:0;}.right-4{right:1rem;}.top-\[46px\]{top:46px;}.top-\[50\%\],.top-50\%{top:50%;}.top-0,.top-0px{top:0;}.top-4{top:1rem;}.before\:left-\[50\%\]::before{left:50%;}.before\:top-0::before{top:0;}.-z-10{z-index:-10;}.z-1000{z-index:1000;}.z-1300{z-index:1300;}.z-1330{z-index:1330;}.z-1400{z-index:1400;}.z-1440{z-index:1440;}.z-20{z-index:20;}.z-30{z-index:30;}.order-last{order:9999;}.grid{display:grid;}.col-span-0{grid-column:span 0/span 0;}.col-span-1{grid-column:span 1/span 1;}.col-span-2{grid-column:span 2/span 2;}.col-span-3{grid-column:span 3/span 3;}.col-span-4{grid-column:span 4/span 4;}.col-span-5{grid-column:span 5/span 5;}.col-span-6{grid-column:span 6/span 6;}.col-span-7{grid-column:span 7/span 7;}.row-span-2{grid-row:span 2/span 2;}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}.grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr));}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr));}.grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr));}.clear-both{clear:both;}.mx-auto{margin-left:auto;margin-right:auto;}.my-2{margin-top:0.5rem;margin-bottom:0.5rem;}.my-8px{margin-top:8px;margin-bottom:8px;}.\!mb-0px{margin-bottom:0 !important;}.\!mb-40px{margin-bottom:40px !important;}.\!mb-50px{margin-bottom:50px !important;}.\!mt-16px{margin-top:16px !important;}.\!mt-50px{margin-top:50px !important;}.mb-10{margin-bottom:2.5rem;}.mb-100{margin-bottom:25rem;}.mb-15px{margin-bottom:15px;}.mb-16px{margin-bottom:16px;}.mb-20px{margin-bottom:20px;}.mb-35px{margin-bottom:35px;}.mb-38px{margin-bottom:38px;}.mb-4{margin-bottom:1rem;}.mb-40px{margin-bottom:40px;}.mb-6{margin-bottom:1.5rem;}.mb-8px{margin-bottom:8px;}.ml-100{margin-left:25rem;}.ml-30{margin-left:7.5rem;}.mr-0{margin-right:0;}.mr-100{margin-right:25rem;}.mr-10px{margin-right:10px;}.mr-2{margin-right:0.5rem;}.mr-3{margin-right:0.75rem;}.mr-30{margin-right:7.5rem;}.mr-30px{margin-right:30px;}.mr-4{margin-right:1rem;}.mt-10px{margin-top:10px;}.mt-12px{margin-top:12px;}.mt-14px{margin-top:14px;}.mt-16px{margin-top:16px;}.mt-2{margin-top:0.5rem;}.mt-20{margin-top:5rem;}.mt-20px{margin-top:20px;}.mt-24px{margin-top:24px;}.mt-30px{margin-top:30px;}.mt-32px{margin-top:32px;}.mt-4{margin-top:1rem;}.mt-46px{margin-top:46px;}.mt-6{margin-top:1.5rem;}.mt-6px{margin-top:6px;}.block{display:block;}.inline-block{display:inline-block;}.list-item{display:list-item;}.\!hidden{display:none !important;}.hidden{display:none;}.aspect-\[66\/88\]{aspect-ratio:66/88;}.\!w-800px{width:800px !important;}.\!w-auto{width:auto !important;}.\!w-full{width:100% !important;}.h-\[1px\]{height:1px;}.h-\[23px\]{height:23px;}.h-\[250px\],.h-250px{height:250px;}.h-\[33px\]{height:33px;}.h-0px{height:0;}.h-14{height:3.5rem;}.h-151px{height:151px;}.h-200px{height:200px;}.h-20px{height:20px;}.h-30{height:7.5rem;}.h-300px{height:300px;}.h-30px{height:30px;}.h-311px{height:311px;}.h-320px{height:320px;}.h-34px{height:34px;}.h-360px{height:360px;}.h-4{height:1rem;}.h-45px{height:45px;}.h-5{height:1.25rem;}.h-6{height:1.5rem;}.h-60px{height:60px;}.h-650px{height:650px;}.h-80px{height:80px;}.h-90px{height:90px;}.h-auto{height:auto;}.h-full{height:100%;}.h-max{height:max-content;}.max-h-full{max-height:100%;}.max-w-120px{max-width:120px;}.max-w-170px{max-width:170px;}.max-w-250px{max-width:250px;}.max-w-270px{max-width:270px;}.max-w-550px{max-width:550px;}.max-w-70px{max-width:70px;}.max-w-full{max-width:100%;}.max-w-md{max-width:28rem;}.min-h-\[88px\]{min-height:88px;}.min-h-200px{min-height:200px;}.min-w-\[66px\]{min-width:66px;}.min-w-120px{min-width:120px;}.min-w-20px{min-width:20px;}.min-w-230px{min-width:230px;}.w-\[23px\]{width:23px;}.w-\[53\.92\%\]{width:53.92%;}.w-0{width:0;}.w-100\%,.w-full{width:100%;}.w-120px{width:120px;}.w-129px{width:129px;}.w-14{width:3.5rem;}.w-154px{width:154px;}.w-155px{width:155px;}.w-16{width:4rem;}.w-20{width:5rem;}.w-200px{width:200px;}.w-20px{width:20px;}.w-24{width:6rem;}.w-25px{width:25px;}.w-30{width:7.5rem;}.w-30px{width:30px;}.w-311px{width:311px;}.w-34px{width:34px;}.w-4{width:1rem;}.w-400px{width:400px;}.w-440px{width:440px;}.w-45px{width:45px;}.w-5{width:1.25rem;}.w-52px{width:52px;}.w-550px{width:550px;}.w-6{width:1.5rem;}.w-60px{width:60px;}.w-80px{width:80px;}.w-90px{width:90px;}.w-max{width:max-content;}.before\:h-full::before{height:100%;}.before\:w-\[1px\]::before{width:1px;}.\!flex{display:flex !important;}.flex{display:flex;}.flex-1{flex:1 1 0%;}.flex-shrink-0,.shrink-0{flex-shrink:0;}.flex-row{flex-direction:row;}.flex-col{flex-direction:column;}.flex-wrap{flex-wrap:wrap;}.table-column{display:table-column;}.-transform-translate-x-50\%,.-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));}.-transform-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));}.transform-translate-x-23px{--un-translate-x:23px;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-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));}.before\:translate-x--1\/2::before{--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));}.cursor-pointer{cursor:pointer;}.hover\:cursor-pointer:hover{cursor:pointer;}.columns-1{columns:1;}.items-start{align-items:flex-start;}.items-end{align-items:flex-end;}.items-center{align-items:center;}.justify-start{justify-content:flex-start;}.justify-end{justify-content:flex-end;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.gap-1{gap:0.25rem;}.gap-10px{gap:10px;}.gap-16px{gap:16px;}.gap-2{gap:0.5rem;}.gap-2\.5{gap:0.625rem;}.gap-20px{gap:20px;}.gap-3{gap:0.75rem;}.gap-30px{gap:30px;}.gap-4{gap:1rem;}.gap-5px{gap:5px;}.gap-6{gap:1.5rem;}.gap-6px{gap:6px;}.gap-8px{gap:8px;}.gap-x-5{column-gap:1.25rem;}.gap-y-6{row-gap:1.5rem;}.overflow-hidden{overflow:hidden;}.overflow-scroll{overflow:scroll;}.overflow-visible{overflow:visible;}.overflow-y-scroll{overflow-y:scroll;}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.whitespace-nowrap{white-space:nowrap;}.break-words{overflow-wrap:break-word;}.break-all{word-break:break-all;}.border,.border-1,.border-1px{border-width:1px;}.border-0,.border-0px{border-width:0;}.border-b,.border-b-1{border-bottom-width:1px;}.border-b-3{border-bottom-width:3px;}.border-r-1{border-right-width:1px;}.border-t-1px{border-top-width:1px;}.before\:border-r-\[2px\]::before{border-right-width:2px;}.border-t-width-0\.8px{border-top-width:0.8px;}.border-\[\#000\]{--un-border-opacity:1;border-color:rgba(0,0,0,var(--un-border-opacity));}.border-\[\#222\]{--un-border-opacity:1;border-color:rgba(34,34,34,var(--un-border-opacity));}.border-\[\#333\]{--un-border-opacity:1;border-color:rgba(51,51,51,var(--un-border-opacity));}.border-\[\#979797\]{--un-border-opacity:1;border-color:rgba(151,151,151,var(--un-border-opacity));}.border-\[\#e6e6e6\]{--un-border-opacity:1;border-color:rgba(230,230,230,var(--un-border-opacity));}.border-\[\#fff\]{--un-border-opacity:1;border-color:rgba(255,255,255,var(--un-border-opacity));}.border-\[rgba\(165\,100\,249\,0\.19\)\]{--un-border-opacity:0.19;border-color:rgba(165,100,249,var(--un-border-opacity));}.border-\[rgba\(244\,146\,0\,0\.19\)\]{--un-border-opacity:0.19;border-color:rgba(244,146,0,var(--un-border-opacity));}.border-\[rgba\(32\,183\,175\,0\.19\)\]{--un-border-opacity:0.19;border-color:rgba(32,183,175,var(--un-border-opacity));}.before\:border-slate-5::before{--un-border-opacity:1;border-color:rgba(100,116,139,var(--un-border-opacity));}.border-r-\[\#e6e6e6\]{--un-border-opacity:1;--un-border-right-opacity:var(--un-border-opacity);border-right-color:rgba(230,230,230,var(--un-border-right-opacity));}.border-t-\[\#979797\]{--un-border-opacity:1;--un-border-top-opacity:var(--un-border-opacity);border-top-color:rgba(151,151,151,var(--un-border-top-opacity));}.border-t-\[\#fff\]{--un-border-opacity:1;--un-border-top-opacity:var(--un-border-opacity);border-top-color:rgba(255,255,255,var(--un-border-top-opacity));}.\!rounded-26px{border-radius:26px !important;}.rounded{border-radius:0.25rem;}.rounded-\[32px\]{border-radius:32px;}.rounded-\[4px\]{border-radius:4px;}.rounded-\[50\%\]{border-radius:50%;}.rounded-10px{border-radius:10px;}.rounded-2xl{border-radius:1rem;}.rounded-35px{border-radius:35px;}.rounded-3px{border-radius:3px;}.rounded-45px{border-radius:45px;}.rounded-5px{border-radius:5px;}.rounded-6px{border-radius:6px;}.rounded-9px{border-radius:9px;}.rounded-full{border-radius:9999px;}.rounded-lg{border-radius:0.5rem;}.rounded-none{border-radius:0;}.rounded-xl{border-radius:0.75rem;}.rounded-b-26px{border-bottom-left-radius:26px;border-bottom-right-radius:26px;}.rounded-t-26px{border-top-left-radius:26px;border-top-right-radius:26px;}.border-solid{border-style:solid;}.before\:border-dashed::before{border-style:dashed;}.border-b-solid{border-bottom-style:solid;}.border-r-solid{border-right-style:solid;}.border-t-solid{border-top-style:solid;}.last\:border-b-none:last-child{border-bottom-style:none;}.\!bg-\[\#f5f5f5\]{--un-bg-opacity:1 !important;background-color:rgba(245,245,245,var(--un-bg-opacity)) !important;}.\!bg-transparent{background-color:transparent !important;}.bg-\[\#2e60fe\]{--un-bg-opacity:1;background-color:rgba(46,96,254,var(--un-bg-opacity));}.bg-\[\#2F5FFF\]{--un-bg-opacity:1;background-color:rgba(47,95,255,var(--un-bg-opacity));}.bg-\[\#d9d9d9\]{--un-bg-opacity:1;background-color:rgba(217,217,217,var(--un-bg-opacity));}.bg-\[\#e6e6e6\]{--un-bg-opacity:1;background-color:rgba(230,230,230,var(--un-bg-opacity));}.bg-\[\#eee\]{--un-bg-opacity:1;background-color:rgba(238,238,238,var(--un-bg-opacity));}.bg-\[\#f2f3f5\]{--un-bg-opacity:1;background-color:rgba(242,243,245,var(--un-bg-opacity));}.bg-\[\#f7f7f7\]{--un-bg-opacity:1;background-color:rgba(247,247,247,var(--un-bg-opacity));}.bg-\[\#fff\],.bg-\[\#ffffff\],.bg-white{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity));}.bg-\[rgba\(0\,0\,0\,0\.6\)\]{--un-bg-opacity:0.6;background-color:rgba(0,0,0,var(--un-bg-opacity));}.bg-\[rgba\(0\,0\,0\,0\.7\)\]{--un-bg-opacity:0.7;background-color:rgba(0,0,0,var(--un-bg-opacity));}.bg-\[rgba\(0\,0\,0\,0\.8\)\]{--un-bg-opacity:0.8;background-color:rgba(0,0,0,var(--un-bg-opacity));}.bg-\[rgba\(165\,100\,249\,0\.08\)\]{--un-bg-opacity:0.08;background-color:rgba(165,100,249,var(--un-bg-opacity));}.bg-\[rgba\(244\,146\,0\,0\.08\)\]{--un-bg-opacity:0.08;background-color:rgba(244,146,0,var(--un-bg-opacity));}.bg-\[rgba\(244\,4\,0\,0\.08\)\]{--un-bg-opacity:0.08;background-color:rgba(244,4,0,var(--un-bg-opacity));}.bg-\[rgba\(255\,1\,54\,1\)\]{--un-bg-opacity:1;background-color:rgba(255,1,54,var(--un-bg-opacity));}.bg-\[rgba\(255\,255\,255\,0\.25\)\]{--un-bg-opacity:0.25;background-color:rgba(255,255,255,var(--un-bg-opacity));}.bg-\[rgba\(32\,183\,175\,0\.08\)\]{--un-bg-opacity:0.08;background-color:rgba(32,183,175,var(--un-bg-opacity));}.bg-amber{--un-bg-opacity:1;background-color:rgba(251,191,36,var(--un-bg-opacity));}.bg-gray-1,.bg-gray-100{--un-bg-opacity:1;background-color:rgba(243,244,246,var(--un-bg-opacity));}.bg-slate-1{--un-bg-opacity:1;background-color:rgba(241,245,249,var(--un-bg-opacity));}.bg-slate-5{--un-bg-opacity:1;background-color:rgba(100,116,139,var(--un-bg-opacity));}.bg-transparent{background-color:transparent;}.hover\:bg-gray:hover{--un-bg-opacity:1;background-color:rgba(156,163,175,var(--un-bg-opacity));}.hover\:bg-transparent:hover{background-color:transparent;}.focus\:bg-gray-200:focus{--un-bg-opacity:1;background-color:rgba(229,231,235,var(--un-bg-opacity));}.hover\:bg-opacity-20:hover{--un-bg-opacity:0.2;}.fill-\[\#222222\]{--un-fill-opacity:1;fill:rgba(34,34,34,var(--un-fill-opacity));}.fill-\[\#848484\]{--un-fill-opacity:1;fill:rgba(132,132,132,var(--un-fill-opacity));}.hover\:fill-\[\#ff4135\]:hover{--un-fill-opacity:1;fill:rgba(255,65,53,var(--un-fill-opacity));}.object-cover{object-fit:cover;}.object-contain{object-fit:contain;}.p-1{padding:0.25rem;}.p-10px{padding:10px;}.p-12px{padding:12px;}.p-16px{padding:16px;}.p-2{padding:0.5rem;}.p-20px{padding:20px;}.p-32px{padding:32px;}.p-4{padding:1rem;}.p-5{padding:1.25rem;}.p-5px{padding:5px;}.p-6{padding:1.5rem;}.pa-0{padding:0;}.px-10px{padding-left:10px;padding-right:10px;}.px-15\.5px{padding-left:15.5px;padding-right:15.5px;}.px-15px{padding-left:15px;padding-right:15px;}.px-16px{padding-left:16px;padding-right:16px;}.px-2{padding-left:0.5rem;padding-right:0.5rem;}.px-2\.5{padding-left:0.625rem;padding-right:0.625rem;}.px-20px{padding-left:20px;padding-right:20px;}.px-3{padding-left:0.75rem;padding-right:0.75rem;}.px-30px{padding-left:30px;padding-right:30px;}.px-4{padding-left:1rem;padding-right:1rem;}.px-50px{padding-left:50px;padding-right:50px;}.px-6{padding-left:1.5rem;padding-right:1.5rem;}.py-1{padding-top:0.25rem;padding-bottom:0.25rem;}.py-15px{padding-top:15px;padding-bottom:15px;}.py-2{padding-top:0.5rem;padding-bottom:0.5rem;}.py-2\.5{padding-top:0.625rem;padding-bottom:0.625rem;}.py-20px{padding-top:20px;padding-bottom:20px;}.py-4{padding-top:1rem;padding-bottom:1rem;}.py-5{padding-top:1.25rem;padding-bottom:1.25rem;}.py-6{padding-top:1.5rem;padding-bottom:1.5rem;}.py-80px{padding-top:80px;padding-bottom:80px;}.py-8px{padding-top:8px;padding-bottom:8px;}.\!pr-35px{padding-right:35px !important;}.\!pr-40px{padding-right:40px !important;}.\!pt-15px{padding-top:15px !important;}.pb-1{padding-bottom:0.25rem;}.pb-10{padding-bottom:2.5rem;}.pb-2{padding-bottom:0.5rem;}.pb-20px{padding-bottom:20px;}.pb-22px{padding-bottom:22px;}.pb-4{padding-bottom:1rem;}.pb-45{padding-bottom:11.25rem;}.pb-6{padding-bottom:1.5rem;}.pl-16px{padding-left:16px;}.pl-2{padding-left:0.5rem;}.pl-4{padding-left:1rem;}.pl-50{padding-left:12.5rem;}.pl-6{padding-left:1.5rem;}.pr-1{padding-right:0.25rem;}.pr-10{padding-right:2.5rem;}.pr-12px{padding-right:12px;}.pr-15px{padding-right:15px;}.pr-2{padding-right:0.5rem;}.pr-20px{padding-right:20px;}.pr-4{padding-right:1rem;}.pt-0px{padding-top:0;}.pt-1{padding-top:0.25rem;}.pt-110px{padding-top:110px;}.pt-12px{padding-top:12px;}.pt-14px{padding-top:14px;}.pt-15px{padding-top:15px;}.pt-2{padding-top:0.5rem;}.pt-30{padding-top:7.5rem;}.pt-4{padding-top:1rem;}.pt-6{padding-top:1.5rem;}.pt-77px{padding-top:77px;}.text-center{text-align:center;}.\!text-left{text-align:left !important;}.text-left{text-align:left;}.text-right{text-align:right;}.text-wrap{text-wrap:wrap;}.text-nowrap{text-wrap:nowrap;}.align-top{vertical-align:top;}.\!text-16px{font-size:16px !important;}.\!text-24px{font-size:24px !important;}.\!text-25px{font-size:25px !important;}.text-\[13px\],.text-13px{font-size:13px;}.text-\[14px\],.text-14px{font-size:14px;}.text-\[18px\],.text-18px{font-size:18px;}.text-\[42px\]{font-size:42px;}.text-10\.5px{font-size:10.5px;}.text-12px{font-size:12px;}.text-140px{font-size:140px;}.text-15px{font-size:15px;}.text-16px{font-size:16px;}.text-20px{font-size:20px;}.text-2xl{font-size:1.5rem;line-height:2rem;}.text-base{font-size:1rem;line-height:1.5rem;}.text-lg{font-size:1.125rem;line-height:1.75rem;}.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;}.font-200{font-weight:200;}.font-500,.font-medium{font-weight:500;}.font-700,.font-bold{font-weight:700;}.font-normal{font-weight:400;}.font-semibold{font-weight:600;}.\!leading-40px{line-height:40px !important;}.leading-\[100\%\]{line-height:100%;}.leading-\[24px\]{line-height:24px;}.leading-\[42px\]{line-height:42px;}.leading-12px{line-height:12px;}.leading-20px{line-height:20px;}.leading-22px{line-height:22px;}.leading-23px{line-height:23px;}.leading-normal{line-height:1.5;}.hover\:color-\[\#ff4135\]:hover{--un-text-opacity:1;color:rgba(255,65,53,var(--un-text-opacity));}.text-\[\#000\],.text-\#000{--un-text-opacity:1;color:rgba(0,0,0,var(--un-text-opacity));}.text-\[\#15eb71\]{--un-text-opacity:1;color:rgba(21,235,113,var(--un-text-opacity));}.text-\[\#1f1f1f\]{--un-text-opacity:1;color:rgba(31,31,31,var(--un-text-opacity));}.text-\[\#212529\]{--un-text-opacity:1;color:rgba(33,37,41,var(--un-text-opacity));}.text-\[\#222\],.text-\[rgb\(34\,34\,34\)\]{--un-text-opacity:1;color:rgba(34,34,34,var(--un-text-opacity));}.text-\[\#333\]{--un-text-opacity:1;color:rgba(51,51,51,var(--un-text-opacity));}.text-\[\#5acb7a\]{--un-text-opacity:1;color:rgba(90,203,122,var(--un-text-opacity));}.text-\[\#67C23A\]{--un-text-opacity:1;color:rgba(103,194,58,var(--un-text-opacity));}.text-\[\#848484\]{--un-text-opacity:1;color:rgba(132,132,132,var(--un-text-opacity));}.text-\[\#868686\]{--un-text-opacity:1;color:rgba(134,134,134,var(--un-text-opacity));}.text-\[\#f56c6c\]{--un-text-opacity:1;color:rgba(245,108,108,var(--un-text-opacity));}.text-\[\#ff4135\]{--un-text-opacity:1;color:rgba(255,65,53,var(--un-text-opacity));}.text-\[\#fff\],.text-white{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}.text-gray-500{--un-text-opacity:1;color:rgba(107,114,128,var(--un-text-opacity));}.text-gray-600{--un-text-opacity:1;color:rgba(75,85,99,var(--un-text-opacity));}.text-gray-900{--un-text-opacity:1;color:rgba(17,24,39,var(--un-text-opacity));}.hover\:text-\[\#222\]:hover{--un-text-opacity:1;color:rgba(34,34,34,var(--un-text-opacity));}.hover\:text-\[\#ff4135\]:hover{--un-text-opacity:1;color:rgba(255,65,53,var(--un-text-opacity));}.text-opacity-90{--un-text-opacity:0.9;}.line-through{text-decoration-line:line-through;}.underline{text-decoration-line:underline;}.hover\:underline:hover{text-decoration-line:underline;}.underline-offset-5{text-underline-offset:5px;}.tab{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}.active-tab:active{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}.\!opacity-\[0\.3\]{opacity:0.3 !important;}.\!opacity-\[100\]{opacity:100 !important;}.\!opacity-100,.group:hover .group-hover\:\!opacity-100{opacity:1 !important;}.opacity-\[0\.18\]{opacity:0.18;}.opacity-0{opacity:0;}.filter{filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.\!transition-duration-400{transition-duration:400ms !important;}.duration-500{transition-duration:500ms;}.before\:content-\[\'\'\]::before{content:'';}.last\:before\:content-none:last-child::before{content:none;}@media (min-width: 768px){.md\:absolute{position:absolute;}.md\:grid{display:grid;}.md\:col-span-2{grid-column:span 2/span 2;}.md\:col-span-4{grid-column:span 4/span 4;}.md\:col-span-5{grid-column:span 5/span 5;}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.md\:mb-2{margin-bottom:0.5rem;}.md\:mt-0{margin-top:0;}.md\:mt-4{margin-top:1rem;}.md\:mt-6{margin-top:1.5rem;}.md\:block{display:block;}.md\:\!hidden{display:none !important;}.md\:hidden{display:none;}.md\:\!w-\[48\%\]{width:48% !important;}.md\:\!w-114px{width:114px !important;}.md\:h-\[auto\]{height:auto;}.md\:h-311px{height:311px;}.md\:h-400px{height:400px;}.md\:max-w-\[160px\]{max-width:160px;}.md\:max-w-600px{max-width:600px;}.md\:max-w-auto{max-width:auto;}.md\:w-50\%{width:50%;}.md\:w-max{width:max-content;}.md\:flex{display:flex;}.md\:flex-row{flex-direction:row;}.md\:flex-nowrap{flex-wrap:nowrap;}.md\:transform-translate-y-10\%{--un-translate-y:10%;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));}.md\:columns-3{columns:3;}.md\:justify-center{justify-content:center;}.md\:gap-0{gap:0;}.md\:gap-2{gap:0.5rem;}.md\:gap-4{gap:1rem;}.md\:gap-5{gap:1.25rem;}.md\:border{border-width:1px;}.md\:rounded-2xl{border-radius:1rem;}.md\:bg-white{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity));}.md\:p-10{padding:2.5rem;}.md\:px-4{padding-left:1rem;padding-right:1rem;}.md\:px-6{padding-left:1.5rem;padding-right:1.5rem;}.md\:py-0{padding-top:0;padding-bottom:0;}.md\:py-4{padding-top:1rem;padding-bottom:1rem;}.md\:pb-0{padding-bottom:0;}.md\:pb-4{padding-bottom:1rem;}.md\:pb-6{padding-bottom:1.5rem;}.md\:pl-6{padding-left:1.5rem;}.md\:pr-0{padding-right:0;}.md\:pt-4{padding-top:1rem;}.md\:pt-6{padding-top:1.5rem;}.md\:text-center{text-align:center;}.md\:text-left{text-align:left;}.md\:\!text-\[16px\]{font-size:16px !important;}.md\:text-\[15px\]{font-size:15px;}.md\:text-base{font-size:1rem;line-height:1.5rem;}.md\:text-sm{font-size:0.875rem;line-height:1.25rem;}.md\:leading-\[35px\]{line-height:35px;}}@media (min-width: 1280px){.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.xl\:block{display:block;}}
