@charset "UTF-8";/*
Please read: https://github.com/unocss/unocss/blob/main/packages/reset/tailwind-compat.md
*/

/*
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`
*/

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

/*
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-text-size-adjust: 100%;
       text-size-adjust: 100%; /* 2 */
  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 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
}

/*
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 {
  line-height: inherit; /* 2 */
  margin: 0; /* 1 */
}

/*
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 {
  border-top-width: 1px; /* 3 */
  color: inherit; /* 2 */
  height: 0; /* 1 */
}

/*
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; 移除，讓 UnoCSS 類別能正常工作 */
  /* font-weight: inherit; 移除，讓 UnoCSS 類別能正常工作 */
}

/*
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,pre,samp {
  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: -.25em;
}

sup {
  top: -.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 {
  border-collapse: collapse; /* 3 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 1 */
}

/*
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 {
  color: inherit; /* 1 */
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: 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.
*/

[type=button],[type=reset],[type=submit],button {
  -webkit-appearance: button; /* 1 */
  /*will affect the button style of most component libraries, so disable it*/
  /*https://github.com/unocss/unocss/issues/2127*/
  /*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,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

menu,ol,ul {
  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 {
  color: #9ca3af; /* 2 */
  opacity: 1; /* 1 */
}

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

/*
Set the default cursor for buttons.
*/

[role=button],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.
*/

audio,canvas,embed,iframe,img,object,svg,video {
  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 {
  height: auto;
  max-width: 100%;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
html {
  height: 100%;
  scroll-behavior: smooth;

  /* https://stackoverflow.com/questions/63637410/is-it-possible-to-get-scroll-margin-top-to-work-in-safari */
  /* scroll-padding-top: 180px;
  @screen lt-tablet {
    scroll-padding-top: 100px;
  } */
}

body {
  color: #363644;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  font-family:
    Noto Sans TC,Microsoft YaHei,WenQuanYi Micro Hei,sans-serif;
  line-height: 1.5;
  min-height: 100%;
}
#__nuxt {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
}
img {
  font-style: italic; /* For alt text */
}

a {
  color: #9b9b9b;
}
a:hover {
  color: #36bbd9;
}

button {
  background: transparent;
}

/* 
    主色票
*/
/* 選擇 勾選動畫*/
@keyframes checkAnimate {
  0% {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.fade-enter-active,.fade-leave-active {
  transition: all .3s;
}

.fade-enter-to,.fade-leave-from {
  opacity: 1;
}

.fade-enter-from,.fade-leave-to {
  opacity: 0;
}

.up-enter-active,.up-leave-active {
  transition: all .5s;
}

.up-enter-to,.up-leave-from {
  opacity: 1;
  transform: translateY(0);
}

.up-enter-from,.up-leave-to {
  opacity: 0;
  transform: translateY(-110%);
}

.down-enter-active,.down-leave-active {
  transition: all .5s;
}

.down-enter-to,.down-leave-from {
  opacity: 1;
  transform: translateY(0);
}

.down-enter-from,.down-leave-to {
  opacity: 0;
  transform: translateY(110%);
}

.downRoom-enter-active,.downRoom-leave-active {
  display: block !important;
  transition: all .5s;
}

.downRoom-enter-to,.downRoom-leave-from {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

.downRoom-enter-from,.downRoom-leave-to {
  display: block !important;
  opacity: 1;
  transform: translateY(64px);
}

.left-enter-active,.left-leave-active {
  transform: translateX(-50%);
  transition: all .5s;
}

.left-enter-to,.left-leave-from {
  opacity: 1;
  transform: translateX(-50%);
}

.left-enter-from,.left-leave-to {
  opacity: 0;
  transform: translateX(-110%);
}

.right-enter-active,.right-leave-active {
  transition: all .5s;
}

.right-enter-to,.right-leave-from {
  opacity: 1;
  transform: translateX(0);
}

.right-enter-from,.right-leave-to {
  opacity: 0;
  transform: translateX(110%);
}

.height-enter-active,.height-leave-active {
  transition: all .3s;
}

.height-enter-to,.height-leave-from {
  opacity: 1;
  transform: scaleY() 100%;
}

.height-enter-from,.height-leave-to {
  opacity: 0;
  transform: scaleY(0);
}

.fade-down-enter-active,.fade-down-leave-active {
  transition: all .3s;
}

.fade-down-enter-from,.fade-down-leave-to {
  opacity: 0;
  transform: translateY(100%);
}

.bg-light-80 {
  background-color:rgb(255 255 255 / 0.8);
}

.bg-dark-80 {
  background-color:rgb(62 68 89 / 0.7);
}

.text-prewrap {
  white-space:pre-wrap;overflow-wrap:break-word;text-align:center;
}

.ty-text-24 {
  font-size:24px;font-weight:700;
}

.text-light {
  --un-text-opacity:1;color:rgb(246 246 246 / var(--un-text-opacity));
} *,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}.container{width:100%;}.ratio-box-content{position:absolute;inset:0;width:100%;height:auto;}.image-init{display:block;width:100%;height:100%;object-fit:cover;object-position:center;}.text-prewrap-center,[text-prewrap-center=""]{white-space:pre-wrap;overflow-wrap:break-word;text-align:center;}.text-prewrap-left{white-space:pre-wrap;overflow-wrap:break-word;text-align:left;}.body-mask-bg{--un-bg-opacity:.5;background-color:rgba(0, 0, 0, var(--un-bg-opacity));--un-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);}.body-mask-out-transition{background-color:transparent !important;--un-backdrop-blur:blur(0px) !important;-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia) !important;backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia) !important;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;transition-duration:100ms;}@media (min-width: 332px){.container{max-width:332px;}}@media (min-width: 375px){.container{max-width:375px;}}@media (min-width: 576px){.container{max-width:576px;}}@media (min-width: 767px){.container{max-width:767px;}}@media (min-width: 1024px){.container{max-width:1024px;}}@media (min-width: 1200px){.container{max-width:1200px;}}@media (min-width: 1440px){.container{max-width:1440px;}}@media (min-width: 1920px){.container{max-width:1920px;}}.\[-webkit-box-orient\:vertical\]{-webkit-box-orient:vertical;}.\[-webkit-line-clamp\:4\]{-webkit-line-clamp:4;}.\[display\:-webkit-box\]{display:-webkit-box;}.\!pointer-events-auto{pointer-events:auto !important;}.pointer-events-none{pointer-events:none;}.pointer-events-initial{pointer-events:initial;}.\!visible{visibility:visible !important;}.visible{visibility:visible;}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.sticky{position:sticky;}.before\:absolute::before{position:absolute;}.after\:absolute::after{position:absolute;}.static{position:static;}.inset-0{inset:0;}.bottom-\[-2px\]{bottom:-2px;}.bottom-\[10px\]{bottom:10px;}.bottom-\[70px\]{bottom:70px;}.bottom-0{bottom:0;}.left-\[10px\]{left:10px;}.left-0{left:0;}.left-1\/2,.left-50\%{left:50%;}.left-100\%,.left-full{left:100%;}.right-\[10px\]{right:10px;}.right-\[12px\]{right:12px;}.right-\[20px\]{right:20px;}.right-0{right:0;}.right-1{right:0.25rem;}.right-2{right:0.5rem;}.right-2\.5{right:0.625rem;}.right-30px{right:30px;}.right-6px{right:6px;}.top-\[-8px\]{top:-8px;}.top-\[12px\]{top:12px;}.top-\[calc\(100\%\+8px\)\]{top:calc(100% + 8px);}.top-0{top:0;}.top-1{top:0.25rem;}.top-1\/2{top:50%;}.top-100\%{top:100%;}.top-15px{top:15px;}.top-2{top:0.5rem;}.top-2\.5{top:0.625rem;}.top-30px{top:30px;}.top-6px{top:6px;}[top~="\35 2px"]{top:52px;}.before\:left-0::before{left:0;}.before\:right-10::before{right:2.5rem;}.before\:top--1::before{top:-0.25rem;}.after\:bottom-0::after{bottom:0;}.after\:left-0::after{left:0;}.after\:right-\[-12px\]::after{right:-12px;}.after\:right-0::after{right:0;}.after\:top-\[50\%\]::after{top:50%;}.after\:top-0::after{top:0;}.\!z-13500{z-index:13500 !important;}.z-\[1000\]{z-index:1000;}.z-\[99999999\]{z-index:99999999;}.z-0{z-index:0;}.z-1{z-index:1;}.z-100{z-index:100;}.z-1001{z-index:1001;}.z-101{z-index:101;}.z-105{z-index:105;}.z-106{z-index:106;}.z-113{z-index:113;}.z-13001{z-index:13001;}.z-2{z-index:2;}.z-2000{z-index:2000;}.after\:z-1::after{z-index:1;}.order-1{order:1;}.grid,[grid=""],[grid~="\~"]{display:grid;}.auto-cols-max,.grid-auto-cols-max{grid-auto-columns:max-content;}.grid-auto-cols-13{grid-auto-columns:3.25rem;}.grid-auto-cols-40{grid-auto-columns:10rem;}.grid-auto-rows-\[max-content\]{grid-auto-rows:max-content;}.grid-flow-col{grid-auto-flow:column;}.grid-cols-\[180px_1fr\]{grid-template-columns:180px 1fr;}.grid-cols-\[22px_1fr_22px\]{grid-template-columns:22px 1fr 22px;}.grid-cols-\[40px_1fr\]{grid-template-columns:40px 1fr;}.grid-cols-\[repeat\(2\,minmax\(370px\,370px\)\)\]{grid-template-columns:repeat(2,minmax(370px,370px));}.grid-cols-\[repeat\(3\,minmax\(max-content\,1fr\)\)\]{grid-template-columns:repeat(3,minmax(max-content,1fr));}.grid-cols-\[repeat\(4\,minmax\(max-content\,1fr\)\)\]{grid-template-columns:repeat(4,minmax(max-content,1fr));}[grid~="cols-\[1fr_320px\]"]{grid-template-columns:1fr 320px;}[grid~="cols-\[repeat\(6\,auto\)\]"]{grid-template-columns:repeat(6,auto);}[grid~="cols-\[repeat\(auto-fit\,minmax\(0px\,max-content\)\)\]"]{grid-template-columns:repeat(auto-fit,minmax(0px,max-content));}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}.grid-cols-2,[grid-cols-2=""],[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-7{grid-template-columns:repeat(7,minmax(0,1fr));}.grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr));}[grid~="cols-4"]{grid-template-columns:repeat(4,minmax(0,1fr));}.grid-area-\[ccv\]{grid-area:ccv;}.grid-area-\[comment\]{grid-area:comment;}.grid-area-\[left\]{grid-area:left;}.grid-area-\[meta\]{grid-area:meta;}.grid-area-\[month\]{grid-area:month;}.grid-area-\[num\]{grid-area:num;}.grid-area-\[photo\]{grid-area:photo;}.grid-area-\[right\]{grid-area:right;}.grid-area-\[title\]{grid-area:title;}.grid-area-\[year\]{grid-area:year;}.grid-areas-\[left_title_right\]{grid-template-areas:"left title right";}.grid-areas-\[num_empty1\]-\[month_year\]-\[ccv_empty2\]{grid-template-areas:"num empty1" "month year" "ccv empty2";}.grid-areas-\[photo_meta\]-\[comment_comment\]{grid-template-areas:"photo meta" "comment comment";}.m-\[auto\]{margin:auto;}.m-0{margin:0;}.m-1{margin:0.25rem;}.mx--4{margin-left:-1rem;margin-right:-1rem;}.mx-\[4px\]{margin-left:4px;margin-right:4px;}.mx-0{margin-left:0;margin-right:0;}.mx-1{margin-left:0.25rem;margin-right:0.25rem;}.mx-16px{margin-left:16px;margin-right:16px;}.mx-2{margin-left:0.5rem;margin-right:0.5rem;}.mx-auto,[mx-auto=""]{margin-left:auto;margin-right:auto;}.my-\[20px\]{margin-top:20px;margin-bottom:20px;}.my-\[24px\],.my-24px{margin-top:24px;margin-bottom:24px;}.my-\[40px\],.my-40px{margin-top:40px;margin-bottom:40px;}.my-\[8px\],.my-8px{margin-top:8px;margin-bottom:8px;}.my-10{margin-top:2.5rem;margin-bottom:2.5rem;}.my-4,[my-4=""]{margin-top:1rem;margin-bottom:1rem;}.my-6{margin-top:1.5rem;margin-bottom:1.5rem;}.\!mb-\[8px\]{margin-bottom:8px !important;}.\[\&\:not\(\:last-child\)\]\:mb-\[10px\]:not(:last-child),.mb-\[10px\]{margin-bottom:10px;}.\[\&\>\.menu-collapse-group\]\:mb-2>.menu-collapse-group,.mb-2{margin-bottom:0.5rem;}.mb-\[16px\]{margin-bottom:16px;}.mb-\[20px\]{margin-bottom:20px;}.mb-\[24px\],.mb-24px{margin-bottom:24px;}.mb-\[32px\]{margin-bottom:32px;}.mb-\[40px\],.mb-40px{margin-bottom:40px;}.mb-\[4px\]{margin-bottom:4px;}.mb-\[60px\]{margin-bottom:60px;}.mb-\[80px\]{margin-bottom:80px;}.mb-\[8px\],.mb-8px{margin-bottom:8px;}.mb-1{margin-bottom:0.25rem;}.mb-10{margin-bottom:2.5rem;}.mb-12px{margin-bottom:12px;}.mb-18px{margin-bottom:18px;}.mb-2\.5{margin-bottom:0.625rem;}.mb-3{margin-bottom:0.75rem;}.mb-3\.5{margin-bottom:0.875rem;}.mb-4{margin-bottom:1rem;}.mb-5{margin-bottom:1.25rem;}.mb-6{margin-bottom:1.5rem;}.mb-8{margin-bottom:2rem;}.ml-1{margin-left:0.25rem;}.ml-2{margin-left:0.5rem;}.ml-3{margin-left:0.75rem;}.ml-4{margin-left:1rem;}.ml-4px{margin-left:4px;}.ml-5{margin-left:1.25rem;}.ml-6{margin-left:1.5rem;}.ml-6px{margin-left:6px;}.ml-8{margin-left:2rem;}.ml-8px{margin-left:8px;}.ml-auto{margin-left:auto;}.mr-\[24px\]{margin-right:24px;}.mr-\[4px\]{margin-right:4px;}.mr-\[8px\],.mr-8px{margin-right:8px;}.mr-\[var\(--menu-item-gap\)\]{margin-right:var(--menu-item-gap);}.mr-0{margin-right:0;}.mr-0\.5{margin-right:0.125rem;}.mr-1{margin-right:0.25rem;}.mr-1\.5{margin-right:0.375rem;}.mr-12px{margin-right:12px;}.mr-2{margin-right:0.5rem;}.mr-20px{margin-right:20px;}.mr-3{margin-right:0.75rem;}.mr-4{margin-right:1rem;}.mr-6{margin-right:1.5rem;}.mr-6px,.not-last\:mr-6px:not(:last-child){margin-right:6px;}.mr-9{margin-right:2.25rem;}.mt-\[0px\]{margin-top:0px;}.mt-\[16px\]{margin-top:16px;}.mt-\[24px\],.mt-24px{margin-top:24px;}.mt-\[32px\],.mt-32px{margin-top:32px;}.mt-\[40px\],.mt-40px{margin-top:40px;}.mt-\[48px\]{margin-top:48px;}.mt-\[60px\]{margin-top:60px;}.mt-\[8px\],.mt-8px{margin-top:8px;}.mt-0,.mt-0px{margin-top:0;}.mt-0\.5{margin-top:0.125rem;}.mt-0\.5rem,.mt-2{margin-top:0.5rem;}.mt-1{margin-top:0.25rem;}.mt-10{margin-top:2.5rem;}.mt-12px{margin-top:12px;}.mt-20px{margin-top:20px;}.mt-3{margin-top:0.75rem;}.mt-3px{margin-top:3px;}.mt-4{margin-top:1rem;}.mt-4px{margin-top:4px;}.mt-5{margin-top:1.25rem;}.mt-6{margin-top:1.5rem;}.mt-7px{margin-top:7px;}.not-last-of-type\:mb-16:not(:last-of-type){margin-bottom:4rem;}.after\:ml-1::after{margin-left:0.25rem;}.block{display:block;}.before\:block::before{display:block;}.inline-block{display:inline-block;}.contents{display:contents;}.\!hidden{display:none !important;}.\[\&\:last-child\>\.section-divider\]\:hidden:last-child>.section-divider,.hidden,[hidden=""]{display:none;}.\!h-14{height:3.5rem !important;}.\!h-21{height:5.25rem !important;}.\!h-28{height:7rem !important;}.\!h-37{height:9.25rem !important;}.\!h-42{height:10.5rem !important;}.\!h-full{height:100% !important;}.\!min-w-286px{min-width:286px !important;}.\!w-12px{width:12px !important;}.\!w-full{width:100% !important;}.h-\[10px\]{height:10px;}.h-\[144px\]{height:144px;}.h-\[14px\]{height:14px;}.h-\[16px\]{height:16px;}.h-\[180px\]{height:180px;}.h-\[18px\]{height:18px;}.h-\[198px\]{height:198px;}.h-\[1px\],.h-px{height:1px;}.h-\[202px\]{height:202px;}.h-\[20px\],.h-20px{height:20px;}.h-\[220px\]{height:220px;}.h-\[226px\]{height:226px;}.h-\[228px\]{height:228px;}.h-\[238px\]{height:238px;}.h-\[240px\]{height:240px;}.h-\[24px\],.h-24px{height:24px;}.h-\[28px\]{height:28px;}.h-\[2px\],.h-2px{height:2px;}.h-\[32px\]{height:32px;}.h-\[34px\]{height:34px;}.h-\[356px\]{height:356px;}.h-\[360px\]{height:360px;}.h-\[460px\]{height:460px;}.h-\[48px\]{height:48px;}.h-\[540px\]{height:540px;}.h-\[56px\]{height:56px;}.h-\[5px\]{height:5px;}.h-\[60px\]{height:60px;}.h-\[76px\]{height:76px;}.h-\[84px\],.h-84px{height:84px;}.h-\[8px\],.h-8px{height:8px;}.h-\[calc\(100\%-60px\)\]{height:calc(100% - 60px);}.h-\[max-content\],.h-max{height:max-content;}.h-0{height:0;}.h-10{height:2.5rem;}.h-100\%,.h-full{height:100%;}.h-110px{height:110px;}.h-113{height:28.25rem;}.h-12{height:3rem;}.h-140px{height:140px;}.h-15{height:3.75rem;}.h-18{height:4.5rem;}.h-2,.h2{height:0.5rem;}.h-22{height:5.5rem;}.h-22px{height:22px;}.h-34{height:8.5rem;}.h-35px{height:35px;}.h-382px{height:382px;}.h-406px{height:406px;}.h-536px{height:536px;}.h-6{height:1.5rem;}.h-60vh{height:60vh;}.h-64px{height:64px;}.h-68px{height:68px;}.h-6px{height:6px;}.h-7\.5{height:1.875rem;}.h-8{height:2rem;}.h-9{height:2.25rem;}.h-auto{height:auto;}.h1{height:0.25rem;}.h3{height:0.75rem;}.h4{height:1rem;}.h428,[h428=""]{height:107rem;}.h5{height:1.25rem;}.max-h-\[1140px\]{max-height:1140px;}.max-h-\[120px\]{max-height:120px;}.max-h-\[16px\]{max-height:16px;}.max-h-\[252px\]{max-height:252px;}.max-h-\[360px\]{max-height:360px;}.max-h-\[80px\]{max-height:80px;}.max-h-\[879px\]{max-height:879px;}.max-h-\[966px\]{max-height:966px;}.max-h-100\%,.max-h-full{max-height:100%;}.max-h-200px{max-height:200px;}.max-h-80vh{max-height:80vh;}.max-w-\[1076px\]{max-width:1076px;}.max-w-\[108px\]{max-width:108px;}.max-w-\[1120px\]{max-width:1120px;}.max-w-\[1200px\]{max-width:1200px;}.max-w-\[120px\]{max-width:120px;}.max-w-\[16px\]{max-width:16px;}.max-w-\[185px\]{max-width:185px;}.max-w-\[213px\]{max-width:213px;}.max-w-\[214px\]{max-width:214px;}.max-w-\[232px\]{max-width:232px;}.max-w-\[271\.75px\]{max-width:271.75px;}.max-w-\[312px\]{max-width:312px;}.max-w-\[320px\],.max-w-320px{max-width:320px;}.max-w-\[322px\]{max-width:322px;}.max-w-\[337\.33px\]{max-width:337.33px;}.max-w-\[343px\]{max-width:343px;}.max-w-\[346px\]{max-width:346px;}.max-w-\[358px\]{max-width:358px;}.max-w-\[360px\]{max-width:360px;}.max-w-\[394px\]{max-width:394px;}.max-w-\[400px\]{max-width:400px;}.max-w-\[410px\]{max-width:410px;}.max-w-\[420px\]{max-width:420px;}.max-w-\[588px\]{max-width:588px;}.max-w-\[600px\]{max-width:600px;}.max-w-\[605px\]{max-width:605px;}.max-w-\[660px\]{max-width:660px;}.max-w-\[739px\]{max-width:739px;}.max-w-\[760px\]{max-width:760px;}.max-w-\[788px\]{max-width:788px;}.max-w-\[800px\]{max-width:800px;}.max-w-\[80px\]{max-width:80px;}.max-w-\[879px\]{max-width:879px;}.max-w-\[960px\]{max-width:960px;}.max-w-\[980px\]{max-width:980px;}.max-w-\[992px\]{max-width:992px;}.max-w-full{max-width:100%;}.min-h-\[152px\]{min-height:152px;}.min-h-\[16px\]{min-height:16px;}.min-h-\[1px\]{min-height:1px;}.min-h-\[310px\]{min-height:310px;}.min-h-\[366px\]{min-height:366px;}.min-h-0{min-height:0;}.min-h-12{min-height:3rem;}.min-h-216px{min-height:216px;}.min-h-312px{min-height:312px;}.min-h-40vh{min-height:40vh;}.min-h-screen{min-height:100vh;}.min-w-\[16px\]{min-width:16px;}.min-w-\[214px\]{min-width:214px;}.min-w-\[284px\]{min-width:284px;}.min-w-\[322px\]{min-width:322px;}.min-w-\[410px\]{min-width:410px;}.min-w-\[440px\]{min-width:440px;}.min-w-\[640px\]{min-width:640px;}.min-w-0{min-width:0;}.min-w-1\/5{min-width:20%;}.min-w-11{min-width:2.75rem;}.min-w-175px{min-width:175px;}.min-w-20{min-width:5rem;}.min-w-22{min-width:5.5rem;}.min-w-28{min-width:7rem;}.min-w-30{min-width:7.5rem;}.w-\[140px\]{width:140px;}.w-\[144px\]{width:144px;}.w-\[14px\]{width:14px;}.w-\[16px\]{width:16px;}.w-\[185px\]{width:185px;}.w-\[18px\],.w-18px{width:18px;}.w-\[204px\]{width:204px;}.w-\[20px\],.w-20px{width:20px;}.w-\[212px\]{width:212px;}.w-\[214px\]{width:214px;}.w-\[24px\],.w-24px{width:24px;}.w-\[32px\]{width:32px;}.w-\[380px\]{width:380px;}.w-\[480px\]{width:480px;}.w-\[48px\]{width:48px;}.w-\[50\%\],.w-1\/2{width:50%;}.w-\[5px\]{width:5px;}.w-\[60px\]{width:60px;}.w-\[660px\]{width:660px;}.w-\[85px\]{width:85px;}.w-\[87px\]{width:87px;}.w-\[8px\]{width:8px;}.w-\[calc\(100\%-140px\)\]{width:calc(100% - 140px);}.w-\[calc\(100\%-460px\)\]{width:calc(100% - 460px);}.w-\[calc\(100\%-7px\)\]{width:calc(100% - 7px);}.w-\[max-content\],.w-max{width:max-content;}.w-\[min-content\]{width:min-content;}.w-0{width:0;}.w-1\/3{width:33.3333333333%;}.w-100\%,.w-full,[w-full=""]{width:100%;}.w-10px{width:10px;}.w-110px{width:110px;}.w-12{width:3rem;}.w-145px{width:145px;}.w-15{width:3.75rem;}.w-1px{width:1px;}.w-268px{width:268px;}.w-26px{width:26px;}.w-27{width:6.75rem;}.w-29{width:7.25rem;}.w-33{width:8.25rem;}.w-37{width:9.25rem;}.w-4{width:1rem;}.w-436px{width:436px;}.w-45{width:11.25rem;}.w-5{width:1.25rem;}.w-6{width:1.5rem;}.w-6px{width:6px;}.w-7\.5{width:1.875rem;}.w-74{width:18.5rem;}.w-9{width:2.25rem;}.w-auto{width:auto;}.w-fit{width:fit-content;}.before\:h-100\%::before{height:100%;}.before\:w-1::before{width:0.25rem;}.after\:h-\[16px\]::after{height:16px;}.after\:h-\[1px\]::after{height:1px;}.after\:h-full::after{height:100%;}.after\:w-\[1px\]::after{width:1px;}.after\:w-full::after{width:100%;}.flex,[flex=""],[flex~="\~"]{display:flex;}.flex-inline,.inline-flex{display:inline-flex;}.flex-\[0_0_234px\]{flex:0 0 234px;}.flex-\[1_1_1px\]{flex:1 1 1px;}.flex-1,[flex~="\31 "]{flex:1 1 0%;}.flex-shrink-0,.shrink-0{flex-shrink:0;}.grow{flex-grow:1;}.flex-row{flex-direction:row;}.flex-row-reverse{flex-direction:row-reverse;}.flex-col,[flex~="col"]{flex-direction:column;}.flex-wrap{flex-wrap:wrap;}.table,[table=""]{display:table;}.border-collapse{border-collapse:collapse;}.transform-origin-left{transform-origin:left;}.transform-origin-right{transform-origin:right;}.-translate-x-1\/2,.translate-x--1\/2,.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));}.-translate-y-1\/2,.translate-y--1\/2,.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));}.translate-x-0{--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));}.translate-x-1\/2{--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-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));}.translate-y--100\%{--un-translate-y:-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));}.translate-y-\[-20px\]{--un-translate-y:-20px;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-\[-6px\]{--un-translate-y:-6px;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-0{--un-translate-y: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));}.translate-y-100\%{--un-translate-y: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));}.translate-y-6px{--un-translate-y:6px;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));}.after\:translate-x--100\%::after{--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));}.after\:translate-y-\[-50\%\]::after{--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));}.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-270{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:270deg;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-360{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:360deg;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-45{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:45deg;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-90{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:90deg;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\:rotate-45::before{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:45deg;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\>\.notify-close\]\:scale-150:hover>.notify-close{--un-scale-x:1.5;--un-scale-y:1.5;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));}.scale-0{--un-scale-x:0;--un-scale-y: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));}.scale-100{--un-scale-x:1;--un-scale-y:1;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));}.scale-130{--un-scale-x:1.3;--un-scale-y:1.3;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\:\[\&\>\.upload-action\]\:scale-150>.upload-action:hover{--un-scale-x:1.5;--un-scale-y:1.5;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\:scale-102:hover{--un-scale-x:1.02;--un-scale-y:1.02;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\:scale-110:hover{--un-scale-x:1.1;--un-scale-y:1.1;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));}.scale-x-0{--un-scale-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));}.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 loading-circle{
          0% { transform: rotate(0) }
          100% { transform: rotate(360deg) }
        }@keyframes skeleton{
          0% { transform: translateX(-100%) }
          100% { transform: translateX(100%) }
        }@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.animate-loading-circle{animation:loading-circle 1s linear 1;}.animate-spin{animation:spin 1s linear infinite;}.after\:animate-skeleton::after{animation:skeleton 1s linear 1;}.animate-duration-1000{animation-duration:1000ms;}.after\:animate-duration-1200::after{animation-duration:1200ms;}.animate-ease{animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);}.animate-iteration-count-infinite{animation-iteration-count:infinite;}.after\:animate-iteration-count-infinite::after{animation-iteration-count:infinite;}.cursor-auto{cursor:auto;}.cursor-default{cursor:default;}.cursor-pointer{cursor:pointer;}.\[\&\[data-p-disabled\=true\]\]\:cursor-not-allowed[data-p-disabled=true],.cursor-not-allowed{cursor:not-allowed;}.\!disabled\:cursor-not-allowed:disabled{cursor:not-allowed !important;}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed;}.select-none{-webkit-user-select:none;user-select:none;}.resize{resize:both;}.snap-end{scroll-snap-align:end;}.list-decimal{list-style-type:decimal;}.list-disc{list-style-type:disc;}.list-outside{list-style-position:outside;}.list-inside{list-style-position:inside;}.list-none{list-style-type:none;}.appearance-none{-webkit-appearance:none;appearance:none;}[columns~="\34 "]{columns:4;}.place-content-center{place-content:center;}.place-items-center{place-items:center;}.flex-items-start,.grid-items-start,.items-start,[grid~="items-start"]{align-items:flex-start;}.flex-items-end,.items-end{align-items:flex-end;}.flex-items-center,.items-center,[flex~="items-center"],[items-center=""]{align-items:center;}.self-end{align-self:flex-end;}.self-center{align-self:center;}.self-stretch{align-self:stretch;}.\!justify-start{justify-content:flex-start !important;}.justify-start{justify-content:flex-start;}.justify-end{justify-content:flex-end;}.grid-justify-center,.justify-center,[flex~="justify-center"],[grid~="justify-center"],[justify-center=""]{justify-content:center;}.\!justify-between{justify-content:space-between !important;}.flex-justify-between,.justify-between,[flex~="justify-between"]{justify-content:space-between;}.justify-around{justify-content:space-around;}.justify-self-start{justify-self:start;}.flex-gap-2,.gap-2,.grid-gap-2,[grid~="gap-2"]{gap:0.5rem;}.gap-\[10px\]{gap:10px;}.gap-\[12px\],.gap-12px{gap:12px;}.gap-\[16px\],.grid-gap-\[16px\]{gap:16px;}.gap-\[20px_16px\],[grid~="gap-\[20px_16px\]"]{gap:20px 16px;}.gap-\[20px\],.gap-20px{gap:20px;}.gap-\[22px\]{gap:22px;}.gap-\[24px\],.gap-24px,[grid~="gap-24px"]{gap:24px;}.gap-\[33\.6px\]{gap:33.6px;}.gap-\[3px\]{gap:3px;}.gap-\[40px\]{gap:40px;}.gap-\[4px\]{gap:4px;}.gap-\[60px\]{gap:60px;}.gap-\[6px\]{gap:6px;}.gap-\[8px\]{gap:8px;}.gap-\[var\(--menu-item-gap\)\]{gap:var(--menu-item-gap);}.gap-0{gap:0;}.gap-0\.5{gap:0.125rem;}.gap-1,.grid-gap-1,[grid~="gap-1"]{gap:0.25rem;}.gap-10,.grid-gap-10,[grid~="gap-10"]{gap:2.5rem;}.gap-3,.grid-gap-3{gap:0.75rem;}.gap-3\.5{gap:0.875rem;}.gap-32px{gap:32px;}.gap-35px,[grid~="gap-35px"]{gap:35px;}.gap-4,.grid-gap-4,[grid~="gap-4"]{gap:1rem;}.gap-5\.5{gap:1.375rem;}.gap-6,.grid-gap-6,[grid~="gap-6"]{gap:1.5rem;}.grid-gap-5{gap:1.25rem;}.gap-x-\[8px\]{column-gap:8px;}.gap-x-3{column-gap:0.75rem;}.gap-x-4,.grid-gap-x-4,[grid~="gap-x-4"]{column-gap:1rem;}.gap-x-6{column-gap:1.5rem;}.gap-y-\[8px\]{row-gap:8px;}.gap-y-4{row-gap:1rem;}.gap-y-5,[grid~="gap-y-5"]{row-gap:1.25rem;}.grid-gap-y-3{row-gap:0.75rem;}.space-x-1>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.25rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.25rem * var(--un-space-x-reverse));}.space-x-14px>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(14px * calc(1 - var(--un-space-x-reverse)));margin-right:calc(14px * var(--un-space-x-reverse));}.space-x-20px>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(20px * calc(1 - var(--un-space-x-reverse)));margin-right:calc(20px * var(--un-space-x-reverse));}.space-x-3>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.75rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.75rem * var(--un-space-x-reverse));}.space-x-5>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(1.25rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(1.25rem * var(--un-space-x-reverse));}.space-x-8>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(2rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(2rem * var(--un-space-x-reverse));}.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));}.overflow-auto{overflow:auto;}.overflow-hidden{overflow:hidden;}.overflow-x-auto{overflow-x:auto;}.overflow-y-auto{overflow-y:auto;}.scroll-smooth{scroll-behavior:smooth;}.text-truncate,.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.text-ellipsis{text-overflow:ellipsis;}.whitespace-nowrap{white-space:nowrap;}.whitespace-pre-wrap{white-space:pre-wrap;}.break-words{overflow-wrap:break-word;}.break-all{word-break:break-all;}.b,.border,.border-1,.border-1px,[border~="\~"]{border-width:1px;}.border-0{border-width:0px;}.border-2{border-width:2px;}.border-3{border-width:3px;}.border-4,.border-4px{border-width:4px;}.border-5{border-width:5px;}.\[\&\>\.menu-group\+\.menu-group\]\:border-t-1>.menu-group+.menu-group,.border-t-1,.border-t-1px{border-top-width:1px;}.b-b-1,.border-b,.border-b-1{border-bottom-width:1px;}.border-b-3{border-bottom-width:3px;}.border-\[var\(--status-color\)\]{border-color:var(--status-color);}.border-color-\#09A447{--un-border-opacity:1;border-color:rgb(9 164 71 / var(--un-border-opacity));}.border-color-secondary-30{--un-border-opacity:1;border-color:rgb(255 167 40 / var(--un-border-opacity));}.border-grey-10{--un-border-opacity:1;border-color:rgb(244 244 244 / var(--un-border-opacity));}.border-grey-20{--un-border-opacity:1;border-color:rgb(218 220 221 / var(--un-border-opacity));}.border-grey-30{--un-border-opacity:1;border-color:rgb(174 174 181 / var(--un-border-opacity));}.border-old-disabled{--un-border-opacity:1;border-color:rgb(229 229 229 / var(--un-border-opacity));}.border-primary-10{--un-border-opacity:1;border-color:rgb(235 248 251 / var(--un-border-opacity));}.border-primary-20{--un-border-opacity:1;border-color:rgb(155 221 236 / var(--un-border-opacity));}.border-primary-30,[border~="primary-30"]{--un-border-opacity:1;border-color:rgb(54 187 217 / var(--un-border-opacity));}.border-secondary-20{--un-border-opacity:1;border-color:rgb(255 211 148 / var(--un-border-opacity));}.border-secondary-40{--un-border-opacity:1;border-color:rgb(234 135 19 / var(--un-border-opacity));}.border-transparent{border-color:transparent;}.focus-within\:border-\[var\(--input-focus-color\)\]:focus-within{border-color:var(--input-focus-color);}.\!active\:border-primary-40:active{--un-border-opacity:1 !important;border-color:rgb(0 97 127 / var(--un-border-opacity)) !important;}.active\:border-primary-20:active{--un-border-opacity:1;border-color:rgb(155 221 236 / var(--un-border-opacity));}.active\:border-primary-40:active{--un-border-opacity:1;border-color:rgb(0 97 127 / var(--un-border-opacity));}.after\:border-grey-10::after{--un-border-opacity:1;border-color:rgb(244 244 244 / var(--un-border-opacity));}.\[\&\>\.menu-group\+\.menu-group\]\:border-t-\#f4f4f4>.menu-group+.menu-group{--un-border-opacity:1;--un-border-top-opacity:var(--un-border-opacity);border-top-color:rgb(244 244 244 / var(--un-border-top-opacity));}.b-b-grey-10{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgb(244 244 244 / var(--un-border-bottom-opacity));}.border-b-primary-30{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgb(54 187 217 / var(--un-border-bottom-opacity));}.\!rounded-\[4px\]{border-radius:4px !important;}.border-rd-\[12px\],.rounded-\[12px\],.rounded-12px{border-radius:12px;}.rounded-\[0_0_8px_8px\]{border-radius:0 0 8px 8px;}.rounded-\[100\%\]{border-radius:100%;}.rounded-\[100px\],.rounded-100px{border-radius:100px;}.rounded-\[10px\]{border-radius:10px;}.rounded-\[15px\]{border-radius:15px;}.rounded-\[20px\],.rounded-20px{border-radius:20px;}.rounded-\[3px\]{border-radius:3px;}.rounded-\[4px\],.rounded-4px{border-radius:4px;}.rounded-\[50px\]{border-radius:50px;}.rounded-\[6px\],.rounded-6px{border-radius:6px;}.rounded-\[8px_8px_0_0\]{border-radius:8px 8px 0 0;}.rounded-\[8px\],.rounded-8px{border-radius:8px;}.rounded-0\.5{border-radius:0.125rem;}.rounded-1{border-radius:0.25rem;}.rounded-100{border-radius:25rem;}.rounded-2{border-radius:0.5rem;}.rounded-2px{border-radius:2px;}.rounded-3{border-radius:0.75rem;}.rounded-4{border-radius:1rem;}.rounded-5{border-radius:1.25rem;}.rounded-50\%{border-radius:50%;}.rounded-5px{border-radius:5px;}.rounded-full,[rounded-full=""]{border-radius:9999px;}.rounded-none{border-radius:0;}.before\:rounded-2::before{border-radius:0.5rem;}.rounded-bl-\[16px\]{border-bottom-left-radius:16px;}.rounded-br-\[16px\]{border-bottom-right-radius:16px;}.rounded-tl-\[2px\]{border-top-left-radius:2px;}.rounded-tr-\[2px\]{border-top-right-radius:2px;}.\!border-none{border-style:none !important;}.border-dashed{border-style:dashed;}.border-dotted{border-style:dotted;}.border-double{border-style:double;}.border-groove{border-style:groove;}.border-inset{border-style:inset;}.border-none{border-style:none;}.border-outset{border-style:outset;}.border-ridge{border-style:ridge;}.border-solid,[border~="solid"]{border-style:solid;}.after\:border-solid::after{border-style:solid;}.\[\&\>\.menu-group\+\.menu-group\]\:border-t-solid>.menu-group+.menu-group{border-top-style:solid;}.b-b-solid{border-bottom-style:solid;}.\!bg-primary-30{--un-bg-opacity:1 !important;background-color:rgb(54 187 217 / var(--un-bg-opacity)) !important;}.\[\&\[data-p-disabled\=true\]\]\:bg-gray-100[data-p-disabled=true]{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity));}.\[\&\[data-p-highlight\=true\]\]\:bg-primary-30[data-p-highlight=true],.bg-primary-30{--un-bg-opacity:1;background-color:rgb(54 187 217 / var(--un-bg-opacity));}.bg-\[\#000000\],.bg-\#000{--un-bg-opacity:1;background-color:rgb(0 0 0 / var(--un-bg-opacity));}.bg-\[\#00c300\]{--un-bg-opacity:1;background-color:rgb(0 195 0 / var(--un-bg-opacity));}.bg-\[\#ff0022\]{--un-bg-opacity:1;background-color:rgb(255 0 34 / 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-\#F6FFEE{--un-bg-opacity:1;background-color:rgb(246 255 238 / var(--un-bg-opacity));}.bg-\#ffeeee{--un-bg-opacity:1;background-color:rgb(255 238 238 / var(--un-bg-opacity));}.bg-\#FFF,.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity));}.bg-black,.bg-form-focus{--un-bg-opacity:1;background-color:rgb(54 54 68 / var(--un-bg-opacity));}.bg-error-1,[bg-error-1=""]{--un-bg-opacity:1;background-color:rgb(255 89 90 / var(--un-bg-opacity));}.bg-grey-10{--un-bg-opacity:1;background-color:rgb(244 244 244 / var(--un-bg-opacity));}.bg-grey-20,[bg-grey-20=""]{--un-bg-opacity:1;background-color:rgb(218 220 221 / var(--un-bg-opacity));}.bg-light{--un-bg-opacity:1;background-color:rgb(246 246 246 / var(--un-bg-opacity));}.bg-primary-10{--un-bg-opacity:1;background-color:rgb(235 248 251 / var(--un-bg-opacity));}.bg-primary-40{--un-bg-opacity:1;background-color:rgb(0 97 127 / var(--un-bg-opacity));}.bg-purple{--un-bg-opacity:1;background-color:rgb(95 107 186 / var(--un-bg-opacity));}.bg-red{--un-bg-opacity:1;background-color:rgb(248 113 113 / var(--un-bg-opacity));}.bg-red-1{--un-bg-opacity:1;background-color:rgb(201 48 44 / var(--un-bg-opacity));}.bg-secondary-10{--un-bg-opacity:1;background-color:rgb(255 244 228 / var(--un-bg-opacity));}.bg-secondary-30,[bg-secondary-30=""]{--un-bg-opacity:1;background-color:rgb(255 167 40 / var(--un-bg-opacity));}.bg-secondary-40{--un-bg-opacity:1;background-color:rgb(234 135 19 / var(--un-bg-opacity));}.bg-transparent{background-color:transparent;}.bg-yellow{--un-bg-opacity:1;background-color:rgb(250 204 21 / var(--un-bg-opacity));}.\[\&\[data-p-highlight\=true\]\]\:hover\:bg-primary-30:hover[data-p-highlight=true]{--un-bg-opacity:1;background-color:rgb(54 187 217 / var(--un-bg-opacity));}.hover\:after\:bg-primary-30:hover::after{--un-bg-opacity:1;background-color:rgb(54 187 217 / var(--un-bg-opacity));}.hover\:after\:bg-primary-40:hover::after{--un-bg-opacity:1;background-color:rgb(0 97 127 / var(--un-bg-opacity));}.hover\:bg-gray-100:hover{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity));}.hover\:bg-grey-10:hover{--un-bg-opacity:1;background-color:rgb(244 244 244 / var(--un-bg-opacity));}.hover\:bg-primary-10:hover{--un-bg-opacity:1;background-color:rgb(235 248 251 / var(--un-bg-opacity));}.hover\:bg-primary-30:hover{--un-bg-opacity:1;background-color:rgb(54 187 217 / var(--un-bg-opacity));}[hover~="bg-primary-30"]:hover{--un-bg-opacity:1;background-color:rgb(54 187 217 / var(--un-bg-opacity));}.\!active\:bg-primary-40:active{--un-bg-opacity:1 !important;background-color:rgb(0 97 127 / var(--un-bg-opacity)) !important;}.active\:bg-grey-10:active{--un-bg-opacity:1;background-color:rgb(244 244 244 / var(--un-bg-opacity));}.active\:bg-primary-20:active{--un-bg-opacity:1;background-color:rgb(155 221 236 / var(--un-bg-opacity));}.active\:bg-primary-40:active{--un-bg-opacity:1;background-color:rgb(0 97 127 / var(--un-bg-opacity));}.\!disabled\:bg-grey-10:disabled{--un-bg-opacity:1 !important;background-color:rgb(244 244 244 / var(--un-bg-opacity)) !important;}.before\:bg-primary-30::before{--un-bg-opacity:1;background-color:rgb(54 187 217 / var(--un-bg-opacity));}.before\:bg-white::before{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity));}.after\:bg-black::after{--un-bg-opacity:1;background-color:rgb(54 54 68 / var(--un-bg-opacity));}.after\:bg-grey-40::after{--un-bg-opacity:1;background-color:rgb(134 134 143 / var(--un-bg-opacity));}.after\:bg-primary-30::after{--un-bg-opacity:1;background-color:rgb(54 187 217 / var(--un-bg-opacity));}.after\:bg-primary-40::after{--un-bg-opacity:1;background-color:rgb(0 97 127 / var(--un-bg-opacity));}.bg-\[length\:48px\]{background-size:48px;}.bg-\[length\:97px\]{background-size:97px;}[to~="link"]{--un-gradient-to-position:100%;--un-gradient-to:rgb(155 155 155 / var(--un-to-opacity, 1)) var(--un-gradient-to-position);}.bg-cover,[bg~="cover"]{background-size:cover;}.bg-contain{background-size:contain;}.bg-bottom-right{background-position:bottom right;}.bg-center,[bg~="center"]{background-position:center;}.bg-no-repeat,[bg~="no-repeat"]{background-repeat:no-repeat;}.fill-current{fill:currentColor;}.\!object-cover{object-fit:cover !important;}.object-cover{object-fit:cover;}.object-contain{object-fit:contain;}.p-\[12px_16px\]{padding:12px 16px;}.p-\[12px_24px\]{padding:12px 24px;}.p-\[16px\],.p-16px{padding:16px;}.p-\[20px\],.p-20px,.pa-\[20px\]{padding:20px;}.p-\[24px_48px\]{padding:24px 48px;}.p-\[24px\]{padding:24px;}.p-\[32px\]{padding:32px;}.p-\[36px\]{padding:36px;}.p-\[8px_20px_20px\]{padding:8px 20px 20px;}.p-0{padding:0;}.p-1{padding:0.25rem;}.p-1px{padding:1px;}.p-2{padding:0.5rem;}.p-3{padding:0.75rem;}.p-4{padding:1rem;}.p-5{padding:1.25rem;}.p-6{padding:1.5rem;}[p~="\[14px_16px_10px\]"]{padding:14px 16px 10px;}.\!px-3{padding-left:0.75rem !important;padding-right:0.75rem !important;}.\!py-\[12px\]{padding-top:12px !important;padding-bottom:12px !important;}.\!py-2{padding-top:0.5rem !important;padding-bottom:0.5rem !important;}.p-x-12px,.px-\[12px\],.px-12px,[p~="x-12px"]{padding-left:12px;padding-right:12px;}.p-x-2\.5{padding-left:0.625rem;padding-right:0.625rem;}.p-x-20px{padding-left:20px;padding-right:20px;}.p-x-3,.px-3{padding-left:0.75rem;padding-right:0.75rem;}.p-x-4,.px,.px-1rem,.px-4,[px=""]{padding-left:1rem;padding-right:1rem;}.p-x-5,.px-5{padding-left:1.25rem;padding-right:1.25rem;}.p-x-6,.px-6{padding-left:1.5rem;padding-right:1.5rem;}.p-y-1\.5{padding-top:0.375rem;padding-bottom:0.375rem;}.p-y-15px{padding-top:15px;padding-bottom:15px;}.p-y-16px,.py-16px{padding-top:16px;padding-bottom:16px;}.p-y-2,.py-2{padding-top:0.5rem;padding-bottom:0.5rem;}.p-y-4,.py-4{padding-top:1rem;padding-bottom:1rem;}.p-y-8px,[p~="y-8px"]{padding-top:8px;padding-bottom:8px;}.px-\[10px\]{padding-left:10px;padding-right:10px;}.px-\[120px\]{padding-left:120px;padding-right:120px;}.px-\[24px\]{padding-left:24px;padding-right:24px;}.px-\[32px\]{padding-left:32px;padding-right:32px;}.px-\[33px\]{padding-left:33px;padding-right:33px;}.px-\[42px\]{padding-left:42px;padding-right:42px;}.px-\[4px\]{padding-left:4px;padding-right:4px;}.px-\[5px\]{padding-left:5px;padding-right:5px;}.px-\[6px\],.px-6px{padding-left:6px;padding-right:6px;}.px-\[7px\]{padding-left:7px;padding-right:7px;}.px-\[8px\]{padding-left:8px;padding-right:8px;}.px-0{padding-left:0;padding-right:0;}.px-10{padding-left:2.5rem;padding-right:2.5rem;}.px-2{padding-left:0.5rem;padding-right:0.5rem;}.py-\[12px\],.py-12px{padding-top:12px;padding-bottom:12px;}.py-\[24px\]{padding-top:24px;padding-bottom:24px;}.py-\[29px\]{padding-top:29px;padding-bottom:29px;}.py-\[2px\]{padding-top:2px;padding-bottom:2px;}.py-\[40px\]{padding-top:40px;padding-bottom:40px;}.py-\[48px\]{padding-top:48px;padding-bottom:48px;}.py-\[4px\]{padding-top:4px;padding-bottom:4px;}.py-0\.5{padding-top:0.125rem;padding-bottom:0.125rem;}.py-1{padding-top:0.25rem;padding-bottom:0.25rem;}.py-10{padding-top:2.5rem;padding-bottom:2.5rem;}.py-15{padding-top:3.75rem;padding-bottom:3.75rem;}.py-20{padding-top:5rem;padding-bottom:5rem;}.py-25{padding-top:6.25rem;padding-bottom:6.25rem;}.py-3{padding-top:0.75rem;padding-bottom:0.75rem;}.py-6{padding-top:1.5rem;padding-bottom:1.5rem;}.py-8{padding-top:2rem;padding-bottom:2rem;}.\!pl-\[12px\]{padding-left:12px !important;}.not-first\:pt-5:not(:first-child){padding-top:1.25rem;}.p-b-16{padding-bottom:4rem;}.p-t-8{padding-top:2rem;}.pb-\[10px\]{padding-bottom:10px;}.pb-\[12px\]{padding-bottom:12px;}.pb-\[168px\]{padding-bottom:168px;}.pb-\[20px\]{padding-bottom:20px;}.pb-\[24px\]{padding-bottom:24px;}.pb-\[32px\]{padding-bottom:32px;}.pb-\[40px\]{padding-bottom:40px;}.pb-\[60px\]{padding-bottom:60px;}.pb-1{padding-bottom:0.25rem;}.pb-10{padding-bottom:2.5rem;}.pb-15{padding-bottom:3.75rem;}.pb-2{padding-bottom:0.5rem;}.pb-25{padding-bottom:6.25rem;}.pb-3{padding-bottom:0.75rem;}.pb-4{padding-bottom:1rem;}.pb-5{padding-bottom:1.25rem;}.pb-6{padding-bottom:1.5rem;}.pb-8{padding-bottom:2rem;}.pb-85px{padding-bottom:85px;}.pl-\[20px\]{padding-left:20px;}.pl-\[24px\]{padding-left:24px;}.pl-\[5px\]{padding-left:5px;}.pl-1{padding-left:0.25rem;}.pl-1\.5em{padding-left:1.5em;}.pl-1\.8em{padding-left:1.8em;}.pl-10{padding-left:2.5rem;}.pl-2{padding-left:0.5rem;}.pl-4{padding-left:1rem;}.pl-6{padding-left:1.5rem;}.pl-8px{padding-left:8px;}.pr-\[20px\]{padding-right:20px;}.pr-\[24px\]{padding-right:24px;}.pr-\[40px\]{padding-right:40px;}.pr-2{padding-right:0.5rem;}.pr-4{padding-right:1rem;}.pt,.pt-4{padding-top:1rem;}.pt-\[100px\]{padding-top:100px;}.pt-\[144px\]{padding-top:144px;}.pt-\[15px\]{padding-top:15px;}.pt-\[16px\]{padding-top:16px;}.pt-\[20px\]{padding-top:20px;}.pt-\[24px\]{padding-top:24px;}.pt-\[34px\]{padding-top:34px;}.pt-\[40px\],.pt-40px{padding-top:40px;}.pt-\[4px\]{padding-top:4px;}.pt-1{padding-top:0.25rem;}.pt-10{padding-top:2.5rem;}.pt-15{padding-top:3.75rem;}.pt-16{padding-top:4rem;}.pt-2{padding-top:0.5rem;}.pt-25{padding-top:6.25rem;}.pt-3{padding-top:0.75rem;}.pt-30{padding-top:7.5rem;}.text-center{text-align:center;}.text-left{text-align:left;}.text-right{text-align:right;}.vertical-bottom{vertical-align:bottom;}.text-\[12px\],.text-12px,[text~="\[12px\]"]{font-size:12px;}.text-\[14px\],.text-14px,[text~="\[14px\]"]{font-size:14px;}.text-\[16px\],.text-16px{font-size:16px;}.text-\[20px\],.text-20px{font-size:20px;}.text-\[28px\],.text-28px{font-size:28px;}.text-10px{font-size:10px;}.text-15px{font-size:15px;}.text-17px{font-size:17px;}.text-sm{font-size:14px;line-height:1;}.\!font-400{font-weight:400 !important;}.\!font-700{font-weight:700 !important;}.\[\&\[data-p-highlight\=true\]\]\:font-bold[data-p-highlight=true],.font-bold{font-weight:700;}.font-200{font-weight:200;}.font-400,.font-normal{font-weight:400;}.font-500,.font-medium{font-weight:500;}.font-600{font-weight:600;}.\!leading-8{line-height:2rem !important;}.leading-\[1\.5\]{line-height:1.5;}.leading-\[24px\],.leading-24px{line-height:24px;}.leading-\[29\.96px\]{line-height:29.96px;}.leading-\[36px\]{line-height:36px;}.leading-10{line-height:2.5rem;}.leading-30px{line-height:30px;}.leading-40px{line-height:40px;}.line-height-6{line-height:1.5rem;}.tracking-0\.1em{letter-spacing:0.1em;}.font-\[350\]{font-family:350;}.color-\[\#FE7171\],.text-\#FE7171{--un-text-opacity:1;color:rgb(254 113 113 / var(--un-text-opacity));}.color-red-2{--un-text-opacity:1;color:rgb(235 87 87 / var(--un-text-opacity));}.\!text-dark{--un-text-opacity:1 !important;color:rgb(34 34 34 / var(--un-text-opacity)) !important;}.\[\&\[data-p-disabled\=true\]\]\:text-gray-400[data-p-disabled=true]{--un-text-opacity:1;color:rgb(156 163 175 / var(--un-text-opacity));}.\[\&\[data-p-highlight\=true\]\]\:text-white[data-p-highlight=true],.text-white{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity));}.text-\[\#041215\]{--un-text-opacity:1;color:rgb(4 18 21 / var(--un-text-opacity));}.text-\[\#363644\],.text-black,[text-black=""]{--un-text-opacity:1;color:rgb(54 54 68 / var(--un-text-opacity));}.text-\#09A447{--un-text-opacity:1;color:rgb(9 164 71 / var(--un-text-opacity));}.text-\#2B6100{--un-text-opacity:1;color:rgb(43 97 0 / var(--un-text-opacity));}.text-\#6b7280,.text-gray-500{--un-text-opacity:1;color:rgb(107 114 128 / var(--un-text-opacity));}.text-black-0-0{--un-text-opacity:1;color:rgb(0 0 0 / var(--un-text-opacity));}.text-dark{--un-text-opacity:1;color:rgb(34 34 34 / var(--un-text-opacity));}.text-error{--un-text-opacity:1;color:rgb(174 23 14 / var(--un-text-opacity));}.text-error-1,[text-error-1=""]{--un-text-opacity:1;color:rgb(255 89 90 / var(--un-text-opacity));}.text-grey-20{--un-text-opacity:1;color:rgb(218 220 221 / var(--un-text-opacity));}.text-grey-30{--un-text-opacity:1;color:rgb(174 174 181 / var(--un-text-opacity));}.text-grey-40{--un-text-opacity:1;color:rgb(134 134 143 / var(--un-text-opacity));}.text-light{--un-text-opacity:1;color:rgb(246 246 246 / var(--un-text-opacity));}.text-primary-30,[text-primary-30=""]{--un-text-opacity:1;color:rgb(54 187 217 / var(--un-text-opacity));}.text-primary-40{--un-text-opacity:1;color:rgb(0 97 127 / var(--un-text-opacity));}.text-red-500{--un-text-opacity:1;color:rgb(239 68 68 / var(--un-text-opacity));}.text-secondary-20{--un-text-opacity:1;color:rgb(255 211 148 / var(--un-text-opacity));}.text-secondary-30,[text-secondary-30=""]{--un-text-opacity:1;color:rgb(255 167 40 / var(--un-text-opacity));}.text-secondary-40{--un-text-opacity:1;color:rgb(234 135 19 / var(--un-text-opacity));}.text-transparent{color:transparent;}.hover\:text-primary-30:hover{--un-text-opacity:1;color:rgb(54 187 217 / var(--un-text-opacity));}.hover\:text-primary-40:hover{--un-text-opacity:1;color:rgb(0 97 127 / var(--un-text-opacity));}[hover~="text-white"]:hover{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity));}.active\:text-red:active{--un-text-opacity:1;color:rgb(248 113 113 / var(--un-text-opacity));}.\!disabled\:text-grey-30:disabled{--un-text-opacity:1 !important;color:rgb(174 174 181 / var(--un-text-opacity)) !important;}.disabled\:text-grey-30:disabled{--un-text-opacity:1;color:rgb(174 174 181 / var(--un-text-opacity));}.after\:text-\#ff595a::after{--un-text-opacity:1;color:rgb(255 89 90 / var(--un-text-opacity));}.text-inherit{color:inherit;}.line-through{text-decoration-line:line-through;}.underline,[underline=""]{text-decoration-line:underline;}.underline-offset-2,.underline-offset-2px{text-underline-offset:2px;}.underline-offset-4px{text-underline-offset:4px;}.opacity-\[0\.8\]{opacity:0.8;}.opacity-0{opacity:0;}.opacity-100{opacity:1;}.opacity-50{opacity:0.5;}[opacity~="\30 \.8"]{opacity:0.008;}.hover\:opacity-80:hover{opacity:0.8;}.disabled\:opacity-50:disabled{opacity:0.5;}.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[_0_4px_8px_rgba\(64\,102\,129\,0\.302\)\]{--un-shadow: 0 4px 8px rgba(64,102,129,0.302);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0_0_15px_-3px_rgba\(0\,0\,0\,0\.1\)\]{--un-shadow:0 0 15px -3px 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_2px_20px_0_\#1324581A\]{--un-shadow:0 2px 20px 0 var(--un-shadow-color, rgb(19 36 88 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0_2px_20px_0_rgba\(19\,36\,88\,0\.1\)\]{--un-shadow:0 2px 20px 0 var(--un-shadow-color, rgba(19, 36, 88, 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0_2px_4px_0_\#9b9b9b\]{--un-shadow:0 2px 4px 0 var(--un-shadow-color, rgb(155 155 155));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0_2px_4px_2px_\#eeeeee\]{--un-shadow:0 2px 4px 2px var(--un-shadow-color, rgb(238 238 238));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0_4px_5px_-2px_\#0000000D\,0px_10px_15px_-3px_\#0000001A\]{--un-shadow:0 4px 5px -2px #0000000D,0px 10px 15px -3px #0000001A;box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0_7px_12px_-3px_\#eeeeee\]{--un-shadow:0 7px 12px -3px var(--un-shadow-color, rgb(238 238 238));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0px_2px_20px_0px_\#1324581a\],.shadow-\[0px_2px_20px_0px_\#1324581A\]{--un-shadow:0px 2px 20px 0px var(--un-shadow-color, rgb(19 36 88 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0px_2px_4px_2px_\#E5E5E580\]{--un-shadow:0px 2px 4px 2px var(--un-shadow-color, rgb(229 229 229 / 0.5));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-lg{--un-shadow:var(--un-shadow-inset) 0 10px 15px -3px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 4px 6px -4px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.outline-1{outline-width:1px;}.hover\:outline-2:hover{outline-width:2px;}.focus\:outline-2:focus{outline-width:2px;}.active\:outline-1:active{outline-width:1px;}.\!outline-error{--un-outline-color-opacity:1 !important;outline-color:rgb(174 23 14 / var(--un-outline-color-opacity)) !important;}.outline-transparent{outline-color:transparent;}.hover\:outline-secondary-30:hover{--un-outline-color-opacity:1;outline-color:rgb(255 167 40 / var(--un-outline-color-opacity));}.focus\:outline-primary-40:focus{--un-outline-color-opacity:1;outline-color:rgb(0 97 127 / var(--un-outline-color-opacity));}.active\:outline-white:active{--un-outline-color-opacity:1;outline-color:rgb(255 255 255 / var(--un-outline-color-opacity));}.outline,.outline-solid{outline-style:solid;}.active\:outline:active{outline-style:solid;}.outline-none{outline:2px solid transparent;outline-offset:2px;}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px;}.backdrop-blur-\[8px\]{--un-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);}.blur{--un-blur:blur(8px);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,[transition~="\~"]{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-background-color{transition-property:background-color;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-border-color{transition-property:border-color;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.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-opacity{transition-property:opacity;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;}.transition-transform\,opacity{transition-property:transform,opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-width{transition-property:width;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.duration-150{transition-duration:150ms;}.duration-200,[transition~="duration-200"]{transition-duration:200ms;}.duration-300,[duration~="\33 00"],[transition~="duration-300"]{transition-duration:300ms;}[duration~="\30 \.2s"]{transition-duration:0.2s;}[duration~="\31 000"]{transition-duration:1000ms;}[duration~="\32 50"]{transition-duration:250ms;}.ease,.ease-in-out{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);}.ease-\[cubic-bezier\(0\.23\,1\,0\.32\,1\)\]{transition-timing-function:cubic-bezier(0.23,1,0.32,1);}.ease-\[cubic-bezier\(0\.44\,1\.82\,0\.55\,1\.74\)\],[transition~="ease-\[cubic-bezier\(0\.44\,1\.82\,0\.55\,1\.74\)\]"]{transition-timing-function:cubic-bezier(0.44,1.82,0.55,1.74);}.ease-\[cubic-bezier\(0\.46\,0\.03\,0\.52\,0\.96\)\]{transition-timing-function:cubic-bezier(0.46,0.03,0.52,0.96);}.ease-out{transition-timing-function:cubic-bezier(0, 0, 0.2, 1);}.after\:content-\[\'\'\]::after{content:'';}.after\:content-\[\'\*\'\]::after{content:'*';}.before\:content-empty::before{content:"";}.after\:content-empty::after{content:"";}.placeholder-grey-30::placeholder{--un-placeholder-opacity:1;color:rgb(174 174 181 / var(--un-placeholder-opacity));}.container-1160{width:100%;max-width:1160px;}.container-296{width:100%;max-width:296px;}.container-312px{width:100%;max-width:312px;}.container-343px{width:100%;max-width:343px;}.container-368{width:100%;max-width:368px;}.container-436px{width:100%;max-width:436px;}.container-634px{width:100%;max-width:634px;}.container-760,.container-760px{width:100%;max-width:760px;}.container-800,.container-800px{width:100%;max-width:800px;}.container-861{width:100%;max-width:861px;}.container-class\={width:100%;max-width:class=;}.square-1\.3em{width:1.3em;height:1.3em;}.square-10{width:10px;height:10px;}.square-100,.square-100px{width:100px;height:100px;}.square-100\%{width:100%;height:100%;}.square-11px{width:11px;height:11px;}.square-12{width:12px;height:12px;}.square-120{width:120px;height:120px;}.square-14{width:14px;height:14px;}.square-16,.square-16px{width:16px;height:16px;}.square-1em{width:1em;height:1em;}.square-20,.square-20px{width:20px;height:20px;}.square-22{width:22px;height:22px;}.square-24,.square-24px{width:24px;height:24px;}.square-26{width:26px;height:26px;}.square-276{width:276px;height:276px;}.square-32px{width:32px;height:32px;}.square-35{width:35px;height:35px;}.square-40px{width:40px;height:40px;}.square-44px{width:44px;height:44px;}.square-52px{width:52px;height:52px;}.square-56px{width:56px;height:56px;}.before\:square-10px::before{width:10px;height:10px;}.circle-16,.circle-16px{border-radius:50%;width:16px;height:16px;}.circle-160{border-radius:50%;width:160px;height:160px;}.circle-24{border-radius:50%;width:24px;height:24px;}.circle-26px{border-radius:50%;width:26px;height:26px;}.circle-40px{border-radius:50%;width:40px;height:40px;}.circle-4px{border-radius:50%;width:4px;height:4px;}.circle-52px{border-radius:50%;width:52px;height:52px;}.circle-56,.circle-56px{border-radius:50%;width:56px;height:56px;}.circle-6px{border-radius:50%;width:6px;height:6px;}.text-\[12\]-\[16\]-\[500\]{font-size:12px;line-height:16px;font-weight:500;}.text-\[12\]-\[18\]-\[400\],.ty-tiny,[ty-tiny=""]{font-size:12px;line-height:18px;font-weight:400;}.text-\[14\]-\[16\]-\[350\]{font-size:14px;line-height:16px;font-weight:350;}.text-\[14\]-\[19\]-\[350\]{font-size:14px;line-height:19px;font-weight:350;}.text-\[18\]-\[25\]-\[700\]{font-size:18px;line-height:25px;font-weight:700;}.\!ty-body-bold{font-size:16px !important;line-height:24px !important;font-weight:500 !important;}.\!ty-large{font-size:28px !important;line-height:36px !important;font-weight:500 !important;}.ty-body{font-size:16px;line-height:24px;font-weight:400;}.ty-body-bold,.ty-title-16,[ty-body-bold=""]{font-size:16px;line-height:24px;font-weight:500;}.ty-body-light{font-size:16px;line-height:24px;font-weight:300;}.ty-body-title{font-size:20px;line-height:28px;font-weight:500;}.ty-body-title-1{font-size:20px;line-height:150%;font-weight:700;}.ty-large,.ty-title-6{font-size:28px;line-height:36px;font-weight:500;}.ty-micro{font-size:10px;line-height:12px;font-weight:400;}.ty-micro-bold{font-size:10px;line-height:12px;font-weight:500;}.ty-small{font-size:14px;line-height:20px;font-weight:500;}.ty-small-1{font-size:14px;line-height:140%;font-weight:500;}.ty-small-light{font-size:14px;line-height:20px;font-weight:300;}.ty-text-16,[ty-text-16=""]{font-size:16px;line-height:22px;font-weight:300;}.ty-text-24{font-size:24px;font-weight:700;}.ty-text-24-1{font-size:24px;font-weight:400;}.ty-tiny-bold{font-size:12px;line-height:18px;font-weight:500;}.ty-title-0{font-size:60px;line-height:60px;font-weight:600;}.ty-title-1{font-size:40px;line-height:60px;font-weight:500;}.ty-title-2{font-size:32px;line-height:42px;font-weight:700;}.ty-title-4{font-size:72px;line-height:120%;font-weight:700;}.ty-title-4-1{font-size:72px;line-height:100%;font-weight:700;}.ty-title-5{font-size:40px;line-height:120%;font-weight:500;}.ty-title-5-1{font-size:40px;line-height:120%;font-weight:700;}.ty-title-6-1{font-size:28px;line-height:120%;font-weight:400;}.after\:background-\[linear-gradient\(90deg\,rgba\(255\,255\,255\,0\)\,rgba\(255\,255\,255\,0\.4\)\,rgba\(255\,255\,255\,0\)\)\]::after{background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,0.4),rgba(255,255,255,0));}.flex-center,[flex~="center"]{display:flex;justify-content:center;align-items:center;}.var-input_focus_color-form_focus{--input-focus-color:#363644;}.var-menu_item_gap-32px{--menu-item-gap:32px;}.var-status_color-form_border{--status-color:#dadcdd;}.var-status_color-form_invalid{--status-color:#ae170e;}.var-status_color-form_valid{--status-color:#36bbd9;}.transition-outline-color{transition-property:outline-color;}.scroll-hide {
          scrollbar-width: none !important;
          &::-webkit-scrollbar {
            display: none !important;
          }
        }
        
        .animate-body-mask-fade-in {
          animation: body-mask-fade-in 0.1s ease-in;
        }
        @keyframes body-mask-fade-in {
          from {
            background-color: rgba(0, 0, 0, 0);
          }
          to {
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
          }
        }
        .ratio-box-1-1{position:relative;width:100%;padding-top:calc((100% / 1) * 1);}.ratio-box-1160-291{position:relative;width:100%;padding-top:calc((100% / 1160) * 291);}.text-truncate-multi-line-2{word-break:break-all;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;}.bg-promo{background:linear-gradient(180deg,rgb(240,139,82),rgb(232,103,91));}.bg-blue-promo{background:linear-gradient(180deg,rgb(36,187,217),rgb(139,214,231));}.bg-line{background:repeating-linear-gradient(90deg,#AEAEB5 0 5px,#0000 0 7px);}.object-left{object-position:left;}.\!object-center{object-position:center !important;}.object-center{object-position:center;}.object-right{object-position:right;}.container-1135{width:100%;max-width:1135px;margin:0 auto;}@media (hover: hover) and (pointer: fine){.\@hover\:translate-y--10px:hover{--un-translate-y:-10px;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\:rotate-60deg:hover{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:60deg;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\:scale-120:hover{--un-scale-x:1.2;--un-scale-y:1.2;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\:border-\[var\(--input-focus-color\)\]:hover{border-color:var(--input-focus-color);}.\@hover\:border-primary-30:hover{--un-border-opacity:1;border-color:rgb(54 187 217 / var(--un-border-opacity));}.\@hover\:border-primary-40:hover{--un-border-opacity:1;border-color:rgb(0 97 127 / var(--un-border-opacity));}.\@hover\:border-b-primary-30:hover{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgb(54 187 217 / var(--un-border-bottom-opacity));}.\@hover\:border-none:hover{border-style:none;}.\@hover\:bg-grey-10:hover{--un-bg-opacity:1;background-color:rgb(244 244 244 / var(--un-bg-opacity));}.\@hover\:bg-primary-30:hover{--un-bg-opacity:1;background-color:rgb(54 187 217 / var(--un-bg-opacity));}.\@hover\:bg-primary-40:hover{--un-bg-opacity:1;background-color:rgb(0 97 127 / var(--un-bg-opacity));}.\@hover\:text-primary-30:hover{--un-text-opacity:1;color:rgb(54 187 217 / var(--un-text-opacity));}.\@hover\:text-primary-40:hover{--un-text-opacity:1;color:rgb(0 97 127 / var(--un-text-opacity));}.\@hover\:text-secondary-40:hover{--un-text-opacity:1;color:rgb(234 135 19 / var(--un-text-opacity));}.\@hover\:text-white:hover{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity));}.\@hover\:opacity-70:hover{opacity:0.7;}.\@hover\:opacity-80:hover{opacity:0.8;}.\@hover\:outline-1:hover{outline-width:1px;}.\@hover\:outline-white:hover{--un-outline-color-opacity:1;outline-color:rgb(255 255 255 / var(--un-outline-color-opacity));}.\@hover\:outline:hover{outline-style:solid;}}@media (max-width: 1439.9px){.lt-desktop_lg\:px-\[20px\]{padding-left:20px;padding-right:20px;}}@media (max-width: 1199.9px){[lt-desktop~="gap-20px"]{gap:20px;}.lt-desktop\:var-menu_item_gap-20px{--menu-item-gap:20px;}}@media (max-width: 1023.9px){.lt-tablet\:relative{position:relative;}.lt-tablet\:sticky{position:sticky;}.\!lt-tablet\:top-\[42px\]{top:42px !important;}.lt-tablet\:bottom-\[70px\]{bottom:70px;}.lt-tablet\:left--7{left:-1.75rem;}.lt-tablet\:left-1\/5{left:20%;}.lt-tablet\:left-4\/5{left:80%;}.lt-tablet\:right-\[20px\]{right:20px;}.lt-tablet\:top--12px{top:-12px;}.lt-tablet\:top-0{top:0;}.lt-tablet\:top-12px{top:12px;}.lt-tablet\:z-100{z-index:100;}.lt-tablet\:z-101{z-index:101;}.lt-tablet\:order-0{order:0;}.lt-tablet\:grid{display:grid;}.lt-tablet\:grid-cols-\[repeat\(2\,minmax\(100px\,1fr\)\)\]{grid-template-columns:repeat(2,minmax(100px,1fr));}.lt-tablet\:grid-cols-\[repeat\(3\,minmax\(100px\,1fr\)\)\]{grid-template-columns:repeat(3,minmax(100px,1fr));}[grid~="lt-tablet\:cols-\[1fr\]"]{grid-template-columns:1fr;}.lt-tablet\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}.lt-tablet\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.lt-tablet\:grid-areas-\[num_num\]-\[month_year\]-\[ccv_ccv\]{grid-template-areas:"num num" "month year" "ccv ccv";}.lt-tablet\:mx--4{margin-left:-1rem;margin-right:-1rem;}.lt-tablet\:mx-auto{margin-left:auto;margin-right:auto;}.lt-tablet\:mx-unset{margin-left:unset;margin-right:unset;}.lt-tablet\:my-5{margin-top:1.25rem;margin-bottom:1.25rem;}.lt-tablet\:my-6{margin-top:1.5rem;margin-bottom:1.5rem;}.\!lt-tablet\:mb-3{margin-bottom:0.75rem !important;}.lt-tablet\:mb-\[10px\]{margin-bottom:10px;}.lt-tablet\:mb-\[12px\]{margin-bottom:12px;}.lt-tablet\:mb-\[16px\]{margin-bottom:16px;}.lt-tablet\:mb-\[38px\]{margin-bottom:38px;}.lt-tablet\:mb-\[8px\]{margin-bottom:8px;}.lt-tablet\:mb-0{margin-bottom:0;}.lt-tablet\:mb-1{margin-bottom:0.25rem;}.lt-tablet\:mb-1\.5{margin-bottom:0.375rem;}.lt-tablet\:mb-10{margin-bottom:2.5rem;}.lt-tablet\:mb-2{margin-bottom:0.5rem;}.lt-tablet\:mb-3{margin-bottom:0.75rem;}.lt-tablet\:mb-4{margin-bottom:1rem;}.lt-tablet\:mb-6{margin-bottom:1.5rem;}.lt-tablet\:ml-0{margin-left:0;}.lt-tablet\:ml-2{margin-left:0.5rem;}.lt-tablet\:ml-4{margin-left:1rem;}.lt-tablet\:mr-3{margin-right:0.75rem;}.lt-tablet\:mr-4{margin-right:1rem;}.lt-tablet\:mr-5{margin-right:1.25rem;}.lt-tablet\:mr-auto{margin-right:auto;}.lt-tablet\:mt-\[24px\]{margin-top:24px;}.lt-tablet\:mt-0{margin-top:0;}.lt-tablet\:mt-1{margin-top:0.25rem;}.lt-tablet\:mt-2{margin-top:0.5rem;}.lt-tablet\:mt-4{margin-top:1rem;}.lt-tablet\:not-last-of-type\:mb-8:not(:last-of-type){margin-bottom:2rem;}.\!lt-tablet\:block{display:block !important;}.lt-tablet\:block{display:block;}.\!lt-tablet\:hidden{display:none !important;}.lt-tablet\:hidden{display:none;}.lt-tablet\:after\:hidden::after{display:none;}.\!lt-tablet\:w-\[max-content\]{width:max-content !important;}.lt-tablet\:h-\[120px\]{height:120px;}.lt-tablet\:h-\[166px\]{height:166px;}.lt-tablet\:h-\[168px\]{height:168px;}.lt-tablet\:h-\[36px\]{height:36px;}.lt-tablet\:h-\[458px\],.lt-tablet\:h-458px{height:458px;}.lt-tablet\:h-\[480px\]{height:480px;}.lt-tablet\:h-110px{height:110px;}.lt-tablet\:h-12{height:3rem;}.lt-tablet\:h-3{height:0.75rem;}.lt-tablet\:h-46px{height:46px;}.lt-tablet\:h-6{height:1.5rem;}.lt-tablet\:h-auto{height:auto;}.lt-tablet\:h-full{height:100%;}.lt-tablet\:max-h-full{max-height:100%;}.lt-tablet\:max-w-\[327px\]{max-width:327px;}.lt-tablet\:max-w-\[343px\]{max-width:343px;}.lt-tablet\:max-w-\[380px\]{max-width:380px;}.lt-tablet\:max-w-\[400px\]{max-width:400px;}.lt-tablet\:max-w-\[500px\]{max-width:500px;}.lt-tablet\:max-w-\[calc\(100\%-70px\)\]{max-width:calc(100% - 70px);}.lt-tablet\:max-w-full{max-width:100%;}.lt-tablet\:min-h-\[120px\]{min-height:120px;}.lt-tablet\:min-h-\[auto\]{min-height:auto;}.lt-tablet\:min-w-\[120px\]{min-width:120px;}.lt-tablet\:min-w-\[initial\]{min-width:initial;}.lt-tablet\:min-w-40{min-width:10rem;}.lt-tablet\:w-\[120px\]{width:120px;}.lt-tablet\:w-\[calc\(100\%-14px\)\]{width:calc(100% - 14px);}.lt-tablet\:w-100px{width:100px;}.lt-tablet\:w-12{width:3rem;}.lt-tablet\:w-296px{width:296px;}.lt-tablet\:w-3{width:0.75rem;}.lt-tablet\:w-6{width:1.5rem;}.lt-tablet\:w-auto{width:auto;}.lt-tablet\:w-full{width:100%;}.lt-tablet\:w-min{width:min-content;}.\!lt-tablet\:flex{display:flex !important;}.lt-tablet\:flex{display:flex;}.\!lt-tablet\:flex-inline{display:inline-flex !important;}.lt-tablet\:flex-1{flex:1 1 0%;}.lt-tablet\:flex-row{flex-direction:row;}.lt-tablet\:flex-row-reverse{flex-direction:row-reverse;}.lt-tablet\:flex-col{flex-direction:column;}.lt-tablet\:flex-col-reverse{flex-direction:column-reverse;}.lt-tablet\:flex-items-start,.lt-tablet\:items-start{align-items:flex-start;}.lt-tablet\:items-center{align-items:center;}.\!lt-tablet\:justify-start{justify-content:flex-start !important;}.lt-tablet\:flex-justify-start,.lt-tablet\:justify-start{justify-content:flex-start;}.lt-tablet\:justify-center{justify-content:center;}.lt-tablet\:justify-between{justify-content:space-between;}.lt-tablet\:gap-\[20px\]{gap:20px;}.lt-tablet\:gap-\[24px\]{gap:24px;}.lt-tablet\:gap-\[32px\]{gap:32px;}.lt-tablet\:gap-\[4px\]{gap:4px;}.lt-tablet\:gap-\[81px\]{gap:81px;}.lt-tablet\:gap-\[8px\]{gap:8px;}.lt-tablet\:gap-0{gap:0;}.lt-tablet\:gap-2{gap:0.5rem;}.lt-tablet\:gap-3{gap:0.75rem;}.lt-tablet\:gap-4{gap:1rem;}.lt-tablet\:gap-6{gap:1.5rem;}.\!lt-tablet\:gap-x-4{column-gap:1rem !important;}.lt-tablet\:gap-x-\[16px\]{column-gap:16px;}.lt-tablet\:gap-x-4{column-gap:1rem;}.lt-tablet\:gap-y-\[24px\]{row-gap:24px;}.lt-tablet\:gap-y-0{row-gap:0;}.lt-tablet\:gap-y-3{row-gap:0.75rem;}.lt-tablet\:space-x-3>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.75rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.75rem * var(--un-space-x-reverse));}.lt-tablet\:space-x-4>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(1rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(1rem * var(--un-space-x-reverse));}.lt-tablet\:border-0{border-width:0px;}.lt-tablet\:rounded-0{border-radius:0;}.lt-tablet\:p-\[16px\]{padding:16px;}.lt-tablet\:p-\[20px\]{padding:20px;}.lt-tablet\:p-2{padding:0.5rem;}.lt-tablet\:p-3{padding:0.75rem;}.lt-tablet\:p-5{padding:1.25rem;}.lt-tablet\:p-x-2\.5{padding-left:0.625rem;padding-right:0.625rem;}.lt-tablet\:p-x-3,.lt-tablet\:px-3{padding-left:0.75rem;padding-right:0.75rem;}.lt-tablet\:p-x-4,.lt-tablet\:px-4{padding-left:1rem;padding-right:1rem;}.lt-tablet\:p-y-0\.5{padding-top:0.125rem;padding-bottom:0.125rem;}.lt-tablet\:p-y-2\.5{padding-top:0.625rem;padding-bottom:0.625rem;}.lt-tablet\:p-y-3{padding-top:0.75rem;padding-bottom:0.75rem;}.lt-tablet\:p-y-4,.lt-tablet\:py-4{padding-top:1rem;padding-bottom:1rem;}.lt-tablet\:px-\[16px\]{padding-left:16px;padding-right:16px;}.lt-tablet\:px-\[20px\]{padding-left:20px;padding-right:20px;}.lt-tablet\:px-\[8px\]{padding-left:8px;padding-right:8px;}.lt-tablet\:px-7{padding-left:1.75rem;padding-right:1.75rem;}.lt-tablet\:py-\[0px\]{padding-top:0px;padding-bottom:0px;}.lt-tablet\:py-\[24px\]{padding-top:24px;padding-bottom:24px;}.lt-tablet\:py-0{padding-top:0;padding-bottom:0;}.lt-tablet\:py-6{padding-top:1.5rem;padding-bottom:1.5rem;}.\!lt-tablet\:pl-4{padding-left:1rem !important;}.\!lt-tablet\:pr-\[12px\]{padding-right:12px !important;}.lt-tablet\:p-b-10{padding-bottom:2.5rem;}.lt-tablet\:p-t-0,.lt-tablet\:pt-0{padding-top:0;}.lt-tablet\:pb-\[14px\]{padding-bottom:14px;}.lt-tablet\:pb-\[16px\]{padding-bottom:16px;}.lt-tablet\:pb-\[60px\]{padding-bottom:60px;}.lt-tablet\:pb-3{padding-bottom:0.75rem;}.lt-tablet\:pl-\[16px\]{padding-left:16px;}.lt-tablet\:pl-3{padding-left:0.75rem;}.lt-tablet\:pl-4{padding-left:1rem;}.lt-tablet\:pr-\[0px\]{padding-right:0px;}.lt-tablet\:pr-2{padding-right:0.5rem;}.lt-tablet\:pt-\[12px\]{padding-top:12px;}.lt-tablet\:pt-\[178px\]{padding-top:178px;}.lt-tablet\:pt-0\.5{padding-top:0.125rem;}.lt-tablet\:pt-3{padding-top:0.75rem;}.lt-tablet\:text-center{text-align:center;}.lt-tablet\:text-left{text-align:left;}.lt-tablet\:text-\[12px\],.lt-tablet\:text-12px{font-size:12px;}.lt-tablet\:text-14px{font-size:14px;}.lt-tablet\:font-400{font-weight:400;}.lt-tablet\:leading-\[1\.3\]{line-height:1.3;}.lt-tablet\:leading-18px{line-height:18px;}.lt-tablet\:leading-22px{line-height:22px;}.lt-tablet\:tracking-unset{letter-spacing:unset;}.lt-tablet\:text-black-0-0{--un-text-opacity:1;color:rgb(0 0 0 / var(--un-text-opacity));}.lt-tablet\:shadow-\[0px_2px_20px_0px_\#1324581A\]{--un-shadow:0px 2px 20px 0px var(--un-shadow-color, rgb(19 36 88 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}[container-class~="lt-tablet\:mx--4"]{width:100%;max-width:class-mx--4;}[container-class~="lt-tablet\:px-4"]{width:100%;max-width:class-px-4;}.lt-tablet\:square-100{width:100px;height:100px;}.lt-tablet\:square-240{width:240px;height:240px;}.lt-tablet\:square-24px{width:24px;height:24px;}.lt-tablet\:square-90,.lt-tablet\:square-90px{width:90px;height:90px;}.lt-tablet\:circle-100{border-radius:50%;width:100px;height:100px;}.lt-tablet\:circle-20px{border-radius:50%;width:20px;height:20px;}.lt-tablet\:circle-40{border-radius:50%;width:40px;height:40px;}.\!lt-tablet\:ty-body-title{font-size:20px !important;line-height:28px !important;font-weight:500 !important;}.lt-tablet\:ty-body{font-size:16px;line-height:24px;font-weight:400;}.lt-tablet\:ty-body-bold{font-size:16px;line-height:24px;font-weight:500;}.lt-tablet\:ty-body-title{font-size:20px;line-height:28px;font-weight:500;}.lt-tablet\:ty-large{font-size:28px;line-height:36px;font-weight:500;}.lt-tablet\:ty-small{font-size:14px;line-height:20px;font-weight:500;}.lt-tablet\:ty-small-light{font-size:14px;line-height:20px;font-weight:300;}.lt-tablet\:ty-text-16{font-size:16px;line-height:22px;font-weight:300;}.lt-tablet\:ty-tiny{font-size:12px;line-height:18px;font-weight:400;}.lt-tablet\:ty-title-4-2{font-size:64px;line-height:100%;font-weight:700;}.lt-tablet\:ty-title-5-1{font-size:40px;line-height:120%;font-weight:700;}.lt-tablet\:ty-title-6-1{font-size:28px;line-height:120%;font-weight:400;}}@media (max-width: 1023.9px){@media (max-width: 1023.9px){.lt-tablet\:lt-tablet\:\!right-0{right:0 !important;}}}@media (max-width: 766.9px){.lt-mobile_lg\:w-full{width:100%;}}@media (max-width: 575.9px){.lt-mobile\:absolute{position:absolute;}.lt-mobile\:right-\[14px\]{right:14px;}.lt-mobile\:top-1\/2{top:50%;}.lt-mobile\:grid-rows-\[repeat\(3\,max-content\)\]{grid-template-rows:repeat(3,max-content);}.lt-mobile\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}.lt-mobile\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.lt-mobile\:mr-1{margin-right:0.25rem;}.lt-mobile\:mt-\[32px\]{margin-top:32px;}.lt-mobile\:block{display:block;}.lt-mobile\:hidden{display:none;}.\!lt-mobile\:w-100\%{width:100% !important;}.lt-mobile\:h-\[112px\]{height:112px;}.lt-mobile\:h-100\%,.lt-mobile\:h-full{height:100%;}.lt-mobile\:max-h-\[initial\]{max-height:initial;}.lt-mobile\:max-w-\[327px\]{max-width:327px;}.lt-mobile\:max-w-86{max-width:21.5rem;}.lt-mobile\:w-full{width:100%;}.lt-mobile\:flex-col{flex-direction:column;}.lt-mobile\:-translate-y-1\/2{--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));}.lt-mobile\:items-start{align-items:flex-start;}.lt-mobile\:gap-\[24px\]{gap:24px;}.\!lt-mobile\:rounded-0{border-radius:0 !important;}.lt-mobile\:p-\[24px_20px\]{padding:24px 20px;}.lt-mobile\:py-\[14px\]{padding-top:14px;padding-bottom:14px;}.lt-mobile\:ty-body-title{font-size:20px;line-height:28px;font-weight:500;}.lt-mobile\:ratio-box-750-328{position:relative;width:100%;padding-top:calc((100% / 750) * 328);}}@media (min-width: 576px){.mobile\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.mobile\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.mobile\:flex-row{flex-direction:row;}}@media (min-width: 1024px){.tablet\:grid{display:grid;}.tablet\:grid-cols-\[1fr_320px\]{grid-template-columns:1fr 320px;}.tablet\:hidden{display:none;}.tablet\:flex{display:flex;}.tablet\:grid-gap-40px{gap:40px;}.tablet\:grid-items-start{align-items:flex-start;}.tablet\:text-link{--un-text-opacity:1;color:rgb(155 155 155 / var(--un-text-opacity));}.tablet\:hover\:text-primary-30:hover{--un-text-opacity:1;color:rgb(54 187 217 / var(--un-text-opacity));}} 
.scale-up-enter-from {
  opacity: 0;
  transform: scale(0);
}
.scale-up-enter-to {
  opacity: 1;
  transform: scale(1);
}
.scale-up-enter-active,.scale-up-leave-active {
  transition: transform var(--6c53ac8e);
}
.scale-up-leave-from {
  opacity: 1;
  transform: scale(1);
}
.scale-up-leave-to {
  opacity: 0;
  transform: scale(0);
}

.collapse[data-v-80845b0c] {
  border: 0 !important;
  padding: 0 !important;
}
.collapse-enter-active[data-v-80845b0c],.collapse-leave-active[data-v-80845b0c] {
  transition-duration: var(--duration);
  transition-property: max-width, max-height;
}

.fade-enter-active,.fade-leave-active {
  transition: opacity var(--3d632591);
}
.fade-enter-from,.fade-leave-to {
  opacity: 0;
}

/* 
    主色票
*/
/* 選擇 勾選動畫*/
@keyframes checkAnimate-89ec56e0 {
0% {
    transform: scale(0);
}
to {
    transform: scale(1);
}
}
.fade-enter-active[data-v-89ec56e0],.fade-leave-active[data-v-89ec56e0] {
  transition: all .3s;
}
.fade-enter-to[data-v-89ec56e0],.fade-leave-from[data-v-89ec56e0] {
  opacity: 1;
}
.fade-enter-from[data-v-89ec56e0],.fade-leave-to[data-v-89ec56e0] {
  opacity: 0;
}
.up-enter-active[data-v-89ec56e0],.up-leave-active[data-v-89ec56e0] {
  transition: all .5s;
}
.up-enter-to[data-v-89ec56e0],.up-leave-from[data-v-89ec56e0] {
  opacity: 1;
  transform: translateY(0);
}
.up-enter-from[data-v-89ec56e0],.up-leave-to[data-v-89ec56e0] {
  opacity: 0;
  transform: translateY(-110%);
}
.down-enter-active[data-v-89ec56e0],.down-leave-active[data-v-89ec56e0] {
  transition: all .5s;
}
.down-enter-to[data-v-89ec56e0],.down-leave-from[data-v-89ec56e0] {
  opacity: 1;
  transform: translateY(0);
}
.down-enter-from[data-v-89ec56e0],.down-leave-to[data-v-89ec56e0] {
  opacity: 0;
  transform: translateY(110%);
}
.downRoom-enter-active[data-v-89ec56e0],.downRoom-leave-active[data-v-89ec56e0] {
  display: block !important;
  transition: all .5s;
}
.downRoom-enter-to[data-v-89ec56e0],.downRoom-leave-from[data-v-89ec56e0] {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
.downRoom-enter-from[data-v-89ec56e0],.downRoom-leave-to[data-v-89ec56e0] {
  display: block !important;
  opacity: 1;
  transform: translateY(64px);
}
.left-enter-active[data-v-89ec56e0],.left-leave-active[data-v-89ec56e0] {
  transform: translateX(-50%);
  transition: all .5s;
}
.left-enter-to[data-v-89ec56e0],.left-leave-from[data-v-89ec56e0] {
  opacity: 1;
  transform: translateX(-50%);
}
.left-enter-from[data-v-89ec56e0],.left-leave-to[data-v-89ec56e0] {
  opacity: 0;
  transform: translateX(-110%);
}
.right-enter-active[data-v-89ec56e0],.right-leave-active[data-v-89ec56e0] {
  transition: all .5s;
}
.right-enter-to[data-v-89ec56e0],.right-leave-from[data-v-89ec56e0] {
  opacity: 1;
  transform: translateX(0);
}
.right-enter-from[data-v-89ec56e0],.right-leave-to[data-v-89ec56e0] {
  opacity: 0;
  transform: translateX(110%);
}
.height-enter-active[data-v-89ec56e0],.height-leave-active[data-v-89ec56e0] {
  transition: all .3s;
}
.height-enter-to[data-v-89ec56e0],.height-leave-from[data-v-89ec56e0] {
  opacity: 1;
  transform: scaleY() 100%;
}
.height-enter-from[data-v-89ec56e0],.height-leave-to[data-v-89ec56e0] {
  opacity: 0;
  transform: scaleY(0);
}
.fade-down-enter-active[data-v-89ec56e0],.fade-down-leave-active[data-v-89ec56e0] {
  transition: all .3s;
}
.fade-down-enter-from[data-v-89ec56e0],.fade-down-leave-to[data-v-89ec56e0] {
  opacity: 0;
  transform: translateY(100%);
}
.sk-cube-grid[data-v-89ec56e0] {
  height: 50px;
  margin: 100px auto;
  width: 50px;
}
.sk-cube-grid-platform .sk-cube[data-v-89ec56e0] {
  background-color: #36bbd9;
}
.sk-cube-grid-platform--brown .sk-cube[data-v-89ec56e0] {
  background-color: #c89348;
}
.sk-cube-grid .sk-cube[data-v-89ec56e0] {
  animation: sk-cubeGridScaleDelay-89ec56e0 1.3s ease-in-out infinite;
  float: left;
  height: 33%;
  width: 33%;
}
.sk-cube-grid .sk-cube1[data-v-89ec56e0] {
  animation-delay: .2s;
}
.sk-cube-grid .sk-cube2[data-v-89ec56e0] {
  animation-delay: .3s;
}
.sk-cube-grid .sk-cube3[data-v-89ec56e0] {
  animation-delay: .4s;
}
.sk-cube-grid .sk-cube4[data-v-89ec56e0] {
  animation-delay: .1s;
}
.sk-cube-grid .sk-cube5[data-v-89ec56e0] {
  animation-delay: .2s;
}
.sk-cube-grid .sk-cube6[data-v-89ec56e0] {
  animation-delay: .3s;
}
.sk-cube-grid .sk-cube7[data-v-89ec56e0] {
  animation-delay: 0s;
}
.sk-cube-grid .sk-cube8[data-v-89ec56e0] {
  animation-delay: .1s;
}
.sk-cube-grid .sk-cube9[data-v-89ec56e0] {
  animation-delay: .2s;
}
@keyframes sk-cubeGridScaleDelay-89ec56e0 {
0%,70%,to {
    transform: scaleX(1);
}
35% {
    transform: scale3D(0, 0, 1);
}
}
/* 
    主色票
*/
/* 選擇 勾選動畫*/
@keyframes checkAnimate-4a8e739f {
0% {
    transform: scale(0);
}
to {
    transform: scale(1);
}
}
.fade-enter-active[data-v-4a8e739f],.fade-leave-active[data-v-4a8e739f] {
  transition: all .3s;
}
.fade-enter-to[data-v-4a8e739f],.fade-leave-from[data-v-4a8e739f] {
  opacity: 1;
}
.fade-enter-from[data-v-4a8e739f],.fade-leave-to[data-v-4a8e739f] {
  opacity: 0;
}
.up-enter-active[data-v-4a8e739f],.up-leave-active[data-v-4a8e739f] {
  transition: all .5s;
}
.up-enter-to[data-v-4a8e739f],.up-leave-from[data-v-4a8e739f] {
  opacity: 1;
  transform: translateY(0);
}
.up-enter-from[data-v-4a8e739f],.up-leave-to[data-v-4a8e739f] {
  opacity: 0;
  transform: translateY(-110%);
}
.down-enter-active[data-v-4a8e739f],.down-leave-active[data-v-4a8e739f] {
  transition: all .5s;
}
.down-enter-to[data-v-4a8e739f],.down-leave-from[data-v-4a8e739f] {
  opacity: 1;
  transform: translateY(0);
}
.down-enter-from[data-v-4a8e739f],.down-leave-to[data-v-4a8e739f] {
  opacity: 0;
  transform: translateY(110%);
}
.downRoom-enter-active[data-v-4a8e739f],.downRoom-leave-active[data-v-4a8e739f] {
  display: block !important;
  transition: all .5s;
}
.downRoom-enter-to[data-v-4a8e739f],.downRoom-leave-from[data-v-4a8e739f] {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
.downRoom-enter-from[data-v-4a8e739f],.downRoom-leave-to[data-v-4a8e739f] {
  display: block !important;
  opacity: 1;
  transform: translateY(64px);
}
.left-enter-active[data-v-4a8e739f],.left-leave-active[data-v-4a8e739f] {
  transform: translateX(-50%);
  transition: all .5s;
}
.left-enter-to[data-v-4a8e739f],.left-leave-from[data-v-4a8e739f] {
  opacity: 1;
  transform: translateX(-50%);
}
.left-enter-from[data-v-4a8e739f],.left-leave-to[data-v-4a8e739f] {
  opacity: 0;
  transform: translateX(-110%);
}
.right-enter-active[data-v-4a8e739f],.right-leave-active[data-v-4a8e739f] {
  transition: all .5s;
}
.right-enter-to[data-v-4a8e739f],.right-leave-from[data-v-4a8e739f] {
  opacity: 1;
  transform: translateX(0);
}
.right-enter-from[data-v-4a8e739f],.right-leave-to[data-v-4a8e739f] {
  opacity: 0;
  transform: translateX(110%);
}
.height-enter-active[data-v-4a8e739f],.height-leave-active[data-v-4a8e739f] {
  transition: all .3s;
}
.height-enter-to[data-v-4a8e739f],.height-leave-from[data-v-4a8e739f] {
  opacity: 1;
  transform: scaleY() 100%;
}
.height-enter-from[data-v-4a8e739f],.height-leave-to[data-v-4a8e739f] {
  opacity: 0;
  transform: scaleY(0);
}
.fade-down-enter-active[data-v-4a8e739f],.fade-down-leave-active[data-v-4a8e739f] {
  transition: all .3s;
}
.fade-down-enter-from[data-v-4a8e739f],.fade-down-leave-to[data-v-4a8e739f] {
  opacity: 0;
  transform: translateY(100%);
}
.spinner[data-v-4a8e739f] {
  display: grid;
  font-size: 12px;
  gap: 5px;
  grid-auto-flow: column;
  height: 40px;
  place-items: center;
  text-align: center;
  width: 50px;
}
.spinner>div[data-v-4a8e739f] {
  animation: sk-stretchdelay-4a8e739f 1.2s ease-in-out infinite;
  background-color: #36bbd9;
  display: inline-block;
  height: 100%;
  width: 6px;
}
.spinner .rect2[data-v-4a8e739f] {
  animation-delay: -1.1s;
}
.spinner .rect3[data-v-4a8e739f] {
  animation-delay: -1s;
}
.spinner .rect4[data-v-4a8e739f] {
  animation-delay: -.9s;
}
.spinner .rect5[data-v-4a8e739f] {
  animation-delay: -.8s;
}
@keyframes sk-stretchdelay-4a8e739f {
0%,40%,to {
    transform: scaleY(.4);
    -webkit-transform: scaleY(.4);
}
20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
}
}
.zoom-in-top-height-enter-from,.zoom-in-top-height-leave-to {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.zoom-in-top-height-enter-active,.zoom-in-top-height-leave-active {
  overflow: hidden;
  transition:
    height .25s ease-in-out,opacity .25s ease-in-out;
}
.zoom-in-top-height-enter-to,.zoom-in-top-height-leave-from {
  height: 16px;
  opacity: 1;
}

.text {
  cursor: pointer;
}

/* 
    主色票
*/
/* 選擇 勾選動畫*/
@keyframes checkAnimate-b515c8e9 {
0% {
    transform: scale(0);
}
to {
    transform: scale(1);
}
}
.fade-enter-active[data-v-b515c8e9],.fade-leave-active[data-v-b515c8e9] {
  transition: all .3s;
}
.fade-enter-to[data-v-b515c8e9],.fade-leave-from[data-v-b515c8e9] {
  opacity: 1;
}
.fade-enter-from[data-v-b515c8e9],.fade-leave-to[data-v-b515c8e9] {
  opacity: 0;
}
.up-enter-active[data-v-b515c8e9],.up-leave-active[data-v-b515c8e9] {
  transition: all .5s;
}
.up-enter-to[data-v-b515c8e9],.up-leave-from[data-v-b515c8e9] {
  opacity: 1;
  transform: translateY(0);
}
.up-enter-from[data-v-b515c8e9],.up-leave-to[data-v-b515c8e9] {
  opacity: 0;
  transform: translateY(-110%);
}
.down-enter-active[data-v-b515c8e9],.down-leave-active[data-v-b515c8e9] {
  transition: all .5s;
}
.down-enter-to[data-v-b515c8e9],.down-leave-from[data-v-b515c8e9] {
  opacity: 1;
  transform: translateY(0);
}
.down-enter-from[data-v-b515c8e9],.down-leave-to[data-v-b515c8e9] {
  opacity: 0;
  transform: translateY(110%);
}
.downRoom-enter-active[data-v-b515c8e9],.downRoom-leave-active[data-v-b515c8e9] {
  display: block !important;
  transition: all .5s;
}
.downRoom-enter-to[data-v-b515c8e9],.downRoom-leave-from[data-v-b515c8e9] {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
.downRoom-enter-from[data-v-b515c8e9],.downRoom-leave-to[data-v-b515c8e9] {
  display: block !important;
  opacity: 1;
  transform: translateY(64px);
}
.left-enter-active[data-v-b515c8e9],.left-leave-active[data-v-b515c8e9] {
  transform: translateX(-50%);
  transition: all .5s;
}
.left-enter-to[data-v-b515c8e9],.left-leave-from[data-v-b515c8e9] {
  opacity: 1;
  transform: translateX(-50%);
}
.left-enter-from[data-v-b515c8e9],.left-leave-to[data-v-b515c8e9] {
  opacity: 0;
  transform: translateX(-110%);
}
.right-enter-active[data-v-b515c8e9],.right-leave-active[data-v-b515c8e9] {
  transition: all .5s;
}
.right-enter-to[data-v-b515c8e9],.right-leave-from[data-v-b515c8e9] {
  opacity: 1;
  transform: translateX(0);
}
.right-enter-from[data-v-b515c8e9],.right-leave-to[data-v-b515c8e9] {
  opacity: 0;
  transform: translateX(110%);
}
.height-enter-active[data-v-b515c8e9],.height-leave-active[data-v-b515c8e9] {
  transition: all .3s;
}
.height-enter-to[data-v-b515c8e9],.height-leave-from[data-v-b515c8e9] {
  opacity: 1;
  transform: scaleY() 100%;
}
.height-enter-from[data-v-b515c8e9],.height-leave-to[data-v-b515c8e9] {
  opacity: 0;
  transform: scaleY(0);
}
.fade-down-enter-active[data-v-b515c8e9],.fade-down-leave-active[data-v-b515c8e9] {
  transition: all .3s;
}
.fade-down-enter-from[data-v-b515c8e9],.fade-down-leave-to[data-v-b515c8e9] {
  opacity: 0;
  transform: translateY(100%);
}
.notice-list[data-v-b515c8e9] {
  border: 1px solid #ffa728;
  border-radius: 4px;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 8px;
}
.notice-list li[data-v-b515c8e9] {
  font-size: 12px;
  margin-bottom: 4px;
}
.notice-list ol[data-v-b515c8e9] {
  list-style: disc;
}
.notice-list span[data-v-b515c8e9] {
  align-items: center;
  border: 1px solid #ffa728;
  border-radius: 50%;
  color: #ffa728;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 16px;
  justify-content: center;
  line-height: 16px;
  margin-right: 12px;
  padding: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 16px;
}
/* 
    主色票
*/
/* 選擇 勾選動畫*/
@keyframes checkAnimate {
0% {
    transform: scale(0);
}
to {
    transform: scale(1);
}
}
.fade-enter-active,.fade-leave-active {
  transition: all .3s;
}
.fade-enter-to,.fade-leave-from {
  opacity: 1;
}
.fade-enter-from,.fade-leave-to {
  opacity: 0;
}
.up-enter-active,.up-leave-active {
  transition: all .5s;
}
.up-enter-to,.up-leave-from {
  opacity: 1;
  transform: translateY(0);
}
.up-enter-from,.up-leave-to {
  opacity: 0;
  transform: translateY(-110%);
}
.down-enter-active,.down-leave-active {
  transition: all .5s;
}
.down-enter-to,.down-leave-from {
  opacity: 1;
  transform: translateY(0);
}
.down-enter-from,.down-leave-to {
  opacity: 0;
  transform: translateY(110%);
}
.downRoom-enter-active,.downRoom-leave-active {
  display: block !important;
  transition: all .5s;
}
.downRoom-enter-to,.downRoom-leave-from {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
.downRoom-enter-from,.downRoom-leave-to {
  display: block !important;
  opacity: 1;
  transform: translateY(64px);
}
.left-enter-active,.left-leave-active {
  transform: translateX(-50%);
  transition: all .5s;
}
.left-enter-to,.left-leave-from {
  opacity: 1;
  transform: translateX(-50%);
}
.left-enter-from,.left-leave-to {
  opacity: 0;
  transform: translateX(-110%);
}
.right-enter-active,.right-leave-active {
  transition: all .5s;
}
.right-enter-to,.right-leave-from {
  opacity: 1;
  transform: translateX(0);
}
.right-enter-from,.right-leave-to {
  opacity: 0;
  transform: translateX(110%);
}
.height-enter-active,.height-leave-active {
  transition: all .3s;
}
.height-enter-to,.height-leave-from {
  opacity: 1;
  transform: scaleY() 100%;
}
.height-enter-from,.height-leave-to {
  opacity: 0;
  transform: scaleY(0);
}
.fade-down-enter-active,.fade-down-leave-active {
  transition: all .3s;
}
.fade-down-enter-from,.fade-down-leave-to {
  opacity: 0;
  transform: translateY(100%);
}
.toast-container {
  display: flex;
  flex-direction: column;
  height: 0;
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
}
.toast-group-enter-from,.toast-group-leave-to {
  opacity: 0;
  transform: translateY(-100%);
}
.toast-group-enter-to,.toast-group-leave-from {
  opacity: 1;
  transform: translateY(0);
}
.toast-group-enter-active,.toast-group-leave-active,.toast-group-move {
  transition: all .3s;
}
.toast-group-leave-active {
  position: absolute;
}
.toast-wrapper {
  max-width: 90vw;
  min-width: 334px;
}
.toast-container--bottom {
  align-items: center;
  bottom: 22px;
  justify-content: flex-end;
}
.toast-container--bottom .toast-group-enter-from,.toast-container--bottom .toast-group-leave-to {
  transform: translateY(100%);
}
.toast-container--bottom .toast-wrapper {
  margin-bottom: 10px;
}
.toast-container--top {
  align-items: center;
  justify-content: flex-start;
  top: 77px;
}
@media (max-width:1024px) {
.toast-container--top {
    top: 57px;
}
}
.toast-container--top .toast-wrapper:not(:last-child) {
  margin-bottom: 10px;
}
.toast-container--top .toast-group-enter-from,.toast-container--top .toast-group-leave-to {
  transform: translateY(-100%);
}.close-button[data-v-8ebdd35d] {
  align-items: center;
  background-color: #3e4459;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 32px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  transition: transform .3s ease;
  width: 32px;
  z-index: 1;
}
.close-button[data-v-8ebdd35d]:hover {
  transform: rotate(90deg);
}
.close-button .square-20[data-v-8ebdd35d] {
  color: #fff;
}
.price-increase-notice-popup__wrapper[data-v-8ebdd35d] {
  background-color: rgba(0,0,0,.5);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999999;
}
.price-increase-notice-popup__image-wrapper[data-v-8ebdd35d] {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
@media (max-width:576px) {
.price-increase-notice-popup__image-wrapper[data-v-8ebdd35d] {
    padding: 0 10px;
}
}
.price-increase-notice-popup__image-link[data-v-8ebdd35d] {
  border-radius: 15px;
  height: 436px;
  overflow: hidden;
  position: relative;
  width: 436px;
}
.price-increase-notice-popup__image-link a[data-v-8ebdd35d] {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.price-increase-notice-popup__image-link img[data-v-8ebdd35d] {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
@media (max-width:576px) {
.price-increase-notice-popup__image-link[data-v-8ebdd35d] {
    height: auto;
    max-height: 308px;
    max-width: 308px;
    width: 100%;
}
}.fade-enter-active[data-v-540be88a],.fade-leave-active[data-v-540be88a] {
  transition: opacity .3s ease;
}
.fade-enter-from[data-v-540be88a],.fade-leave-to[data-v-540be88a] {
  opacity: 0;
}
/* 
    主色票
*/
/* 選擇 勾選動畫*/
@keyframes checkAnimate-654088da {
0% {
    transform: scale(0);
}
to {
    transform: scale(1);
}
}
.fade-enter-active[data-v-654088da],.fade-leave-active[data-v-654088da] {
  transition: all .3s;
}
.fade-enter-to[data-v-654088da],.fade-leave-from[data-v-654088da] {
  opacity: 1;
}
.fade-enter-from[data-v-654088da],.fade-leave-to[data-v-654088da] {
  opacity: 0;
}
.up-enter-active[data-v-654088da],.up-leave-active[data-v-654088da] {
  transition: all .5s;
}
.up-enter-to[data-v-654088da],.up-leave-from[data-v-654088da] {
  opacity: 1;
  transform: translateY(0);
}
.up-enter-from[data-v-654088da],.up-leave-to[data-v-654088da] {
  opacity: 0;
  transform: translateY(-110%);
}
.down-enter-active[data-v-654088da],.down-leave-active[data-v-654088da] {
  transition: all .5s;
}
.down-enter-to[data-v-654088da],.down-leave-from[data-v-654088da] {
  opacity: 1;
  transform: translateY(0);
}
.down-enter-from[data-v-654088da],.down-leave-to[data-v-654088da] {
  opacity: 0;
  transform: translateY(110%);
}
.downRoom-enter-active[data-v-654088da],.downRoom-leave-active[data-v-654088da] {
  display: block !important;
  transition: all .5s;
}
.downRoom-enter-to[data-v-654088da],.downRoom-leave-from[data-v-654088da] {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
.downRoom-enter-from[data-v-654088da],.downRoom-leave-to[data-v-654088da] {
  display: block !important;
  opacity: 1;
  transform: translateY(64px);
}
.left-enter-active[data-v-654088da],.left-leave-active[data-v-654088da] {
  transform: translateX(-50%);
  transition: all .5s;
}
.left-enter-to[data-v-654088da],.left-leave-from[data-v-654088da] {
  opacity: 1;
  transform: translateX(-50%);
}
.left-enter-from[data-v-654088da],.left-leave-to[data-v-654088da] {
  opacity: 0;
  transform: translateX(-110%);
}
.right-enter-active[data-v-654088da],.right-leave-active[data-v-654088da] {
  transition: all .5s;
}
.right-enter-to[data-v-654088da],.right-leave-from[data-v-654088da] {
  opacity: 1;
  transform: translateX(0);
}
.right-enter-from[data-v-654088da],.right-leave-to[data-v-654088da] {
  opacity: 0;
  transform: translateX(110%);
}
.height-enter-active[data-v-654088da],.height-leave-active[data-v-654088da] {
  transition: all .3s;
}
.height-enter-to[data-v-654088da],.height-leave-from[data-v-654088da] {
  opacity: 1;
  transform: scaleY() 100%;
}
.height-enter-from[data-v-654088da],.height-leave-to[data-v-654088da] {
  opacity: 0;
  transform: scaleY(0);
}
.fade-down-enter-active[data-v-654088da],.fade-down-leave-active[data-v-654088da] {
  transition: all .3s;
}
.fade-down-enter-from[data-v-654088da],.fade-down-leave-to[data-v-654088da] {
  opacity: 0;
  transform: translateY(100%);
}
.error[data-v-654088da] {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  position: relative;
  width: 100%;
}
.error__404[data-v-654088da] {
  height: auto;
  max-width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.error__text[data-v-654088da] {
  color: #3e4459;
  font-size: 24px;
  font-weight: 600;
}
.error__bg-body[data-v-654088da] {
  bottom: 0;
  height: 300px;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
@media (max-width: 1023.9px) {
.error__bg-body[data-v-654088da] {
    height: 150px;
}
}
.error__bg-body .wave[data-v-654088da] {
  animation: wave-654088da 3s cubic-bezier(.36, .45, .63, .53) infinite;
  background: url(https://storage.googleapis.com/jackercleaning/assets/optImg/web/error/wave.svg) repeat-x;
  height: 198px;
  position: absolute;
  top: -198px;
  transform: translateZ(0);
  width: 6400px;
}
@media (max-width: 1023.9px) {
.error__bg-body .wave[data-v-654088da] {
    top: -88px;
}
}
.error__bg-body .wave[data-v-654088da]:nth-of-type(2) {
  animation: wave-654088da 6s cubic-bezier(.36, .45, .63, .53) -.125s infinite,swell-654088da 3s ease -1.25s infinite;
  opacity: 1;
  top: -175px;
}
@media (max-width: 1023.9px) {
.error__bg-body .wave[data-v-654088da]:nth-of-type(2) {
    top: -100px;
}
}
.error__wave-bg[data-v-654088da] {
  background: #52b6cc;
  bottom: 0;
  height: 5%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (max-width: 1023.9px) {
.error__wave-bg[data-v-654088da] {
    background-color: transparent;
}
}
@keyframes wave-654088da {
0% {
    margin-left: 0;
}
to {
    margin-left: -1600px;
}
}
@keyframes swell-654088da {
0%,to {
    transform: translate3d(0, -25px, 0);
}
50% {
    transform: translate3d(0, 5px, 0);
}
}