cats-ui-lib 2.2.5 → 2.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2771,7 +2771,7 @@ class CustomDatePickerComponent {
2771
2771
  useExisting: forwardRef(() => CustomDatePickerComponent),
2772
2772
  multi: true,
2773
2773
  },
2774
- ], usesOnChanges: true, ngImport: i0, template: "<div class=\"date-picker-wrapper\" id=\"custom-date\">\n <!-- Label -->\n @if (label) {\n <label class=\"date-label\">{{ label }}</label>\n }\n\n <!-- Input Trigger -->\n @if (showTrigger) {\n <div\n class=\"date-input\"\n [class.is-open]=\"isOpen\"\n [class.has-value]=\"displayValue\"\n (click)=\"toggleCalendar()\"\n >\n <span class=\"date-input-text\" [class.custom-placeholder]=\"!displayValue\">\n {{ displayValue || config.placeholder || \"Select date\" }}\n </span>\n\n <svg\n class=\"calendar-icon\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"2\"\n >\n <rect x=\"3\" y=\"4\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\"></rect>\n <line x1=\"16\" y1=\"2\" x2=\"16\" y2=\"6\"></line>\n <line x1=\"8\" y1=\"2\" x2=\"8\" y2=\"6\"></line>\n <line x1=\"3\" y1=\"10\" x2=\"21\" y2=\"10\"></line>\n </svg>\n\n <!-- @if (displayValue) {\n <span class=\"clear-btn\" (click)=\"$event.stopPropagation(); clearDate()\">\n <img src=\"images/x.svg\" alt=\"\" />\n </span>\n } -->\n </div>\n }\n\n <!-- Calendar Dropdown -->\n @if (!showTrigger || isOpen) {\n <div\n catsOutsideClick\n (clickOutSide)=\"isOpen = false\"\n id=\"date-input-container\"\n class=\"calendar-dropdown sp-16 br-8\"\n [ngClass]=\"{ 'month-year-view': calenderView != 'day' }\"\n >\n <div class=\"calendar-header sm-b-12\">\n <div class=\"nav-btn br-4\" (click)=\"prevMonth()\" type=\"button\">\n <img src=\"images/chevron-left.svg\" alt=\"\" />\n </div>\n <div class=\"month-year body-medium\">\n @if (mode === \"dual\") {\n @if (calenderView == \"day\" || activeCalendar != \"secondary\") {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"openView('primary', 'month')\">{{\n currentMonthName\n }}</span>\n <span class=\"year\" (click)=\"openView('primary', 'year')\">{{\n currentYear\n }}</span>\n </div>\n }\n\n @if (calenderView == \"day\" || activeCalendar != \"primary\") {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"openView('secondary', 'month')\">{{\n monthNames[currentMonth2]\n }}</span>\n <span class=\"year\" (click)=\"openView('secondary', 'year')\">{{\n currentYear2\n }}</span>\n </div>\n }\n } @else {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"calenderView = 'month'\">{{\n currentMonthName\n }}</span>\n <span class=\"year\" (click)=\"calenderView = 'year'\">{{\n currentYear\n }}</span>\n </div>\n }\n </div>\n <div class=\"nav-btn br-4\" (click)=\"nextMonth()\" type=\"button\">\n <img src=\"images/chevron-right.svg\" alt=\"\" />\n </div>\n </div>\n\n @if (calenderView == \"month\") {\n <div class=\"month-grid\">\n @for (month of monthNames; track month) {\n <span\n class=\"month\"\n (click)=\"selectMonth(month)\"\n [ngClass]=\"{ selected: month == activeMonthName }\"\n >{{ month }}</span\n >\n }\n </div>\n } @else if (calenderView == \"year\") {\n <div class=\"year-selector\">\n <span class=\"navigation-button pointer\" (click)=\"previousYearRange()\">\n <img src=\"images/chevron-left.svg\" alt=\"\" />\n </span>\n <div class=\"year-grid\">\n @for (year of yearRange; track year) {\n <span\n class=\"year\"\n (click)=\"selectYear(year)\"\n [ngClass]=\"{ selected: year == activeYearValue }\"\n >{{ year }}</span\n >\n }\n </div>\n <span class=\"navigation-button pointer\" (click)=\"nextYearRange()\">\n <img src=\"images/chevron-right.svg\" alt=\"\" />\n </span>\n </div>\n } @else {\n <!-- Weekday Headers -->\n <div class=\"day_wrapper\">\n @if (mode === \"dual\") {\n <div class=\"dual-calendar\">\n <div class=\"calendar-panel\">\n <custom-calendar-grid\n [month]=\"currentMonth\"\n [year]=\"currentYear\"\n [calendarDays]=\"calendarDays\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'primary')\"\n ></custom-calendar-grid>\n </div>\n\n <div class=\"calendar-panel\">\n <custom-calendar-grid\n [month]=\"currentMonth2\"\n [year]=\"currentYear2\"\n [calendarDays]=\"calendarDays2\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'secondary')\"\n ></custom-calendar-grid>\n </div>\n </div>\n } @else {\n <custom-calendar-grid\n [month]=\"currentMonth\"\n [year]=\"currentYear\"\n [calendarDays]=\"calendarDays\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'primary')\"\n ></custom-calendar-grid>\n }\n </div>\n\n <!-- Footer -->\n <div\n class=\"calendar-footer sm-b-16\"\n [ngClass]=\"{ 'dual-calendar': config.mode === 'dual' }\"\n >\n <!-- SINGLE MODE footer -->\n @if (mode === \"single\" && showDateLabel) {\n <div class=\"calendar-footer-wrapper\">\n <div class=\"footer-row label-row\">\n <span class=\"footer-label body-large sp-x-12\">Date</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempDisplayValue\n }}</span>\n @if (tempDate) {\n <img\n (click)=\"cancelDate('single')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"singleTimeInSeconds\"\n (timeChange)=\"onSingleTimeChange($event)\"\n ></cats-time-input>\n }\n }\n\n <!-- RANGE MODE footer -->\n @if (mode === \"range\" || mode === \"dual\") {\n <div\n class=\"calendar-footer-wrapper\"\n [ngStyle]=\"{ width: mode === 'dual' ? '50%' : '100%' }\"\n >\n <div class=\"footer-row label-row\">\n <span class=\"footer-label body-large sp-x-12\">From</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempFromDisplay\n }}</span>\n @if (tempFrom) {\n <img\n (click)=\"cancelDate('from')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"fromTimeInSeconds\"\n (timeChange)=\"onFromTimeChange($event)\"\n ></cats-time-input>\n }\n </div>\n <div\n class=\"dual-calendar-border-top\"\n [ngClass]=\"{ 'calendar-footer-wrapper': time, 'sp-t-12': time }\"\n [ngStyle]=\"{ width: mode === 'dual' ? '50%' : '100%' }\"\n >\n <div class=\"footer-row label-row\" [class.muted]=\"!tempTo\">\n <span class=\"footer-label body-large sp-x-12\">To</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempToDisplay\n }}</span>\n @if (tempTo) {\n <img\n (click)=\"cancelDate('to')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"toTimeInSeconds\"\n (timeChange)=\"onToTimeChange($event)\"\n ></cats-time-input>\n }\n </div>\n }\n </div>\n <!-- Action Buttons -->\n <div class=\"footer-actions\">\n <button\n class=\"btn-cancel footer-btn body-medium\"\n (click)=\"onCancel()\"\n type=\"button\"\n >\n Cancel\n </button>\n <button\n class=\"btn-apply footer-btn body-medium\"\n (click)=\"onApply()\"\n type=\"button\"\n [disabled]=\"!canApply\"\n >\n Apply\n </button>\n </div>\n }\n </div>\n }\n</div>\n", styles: [":root{--blue-100: #eaf3fd;--box-shadow: #0a0d1208;--box-shadow-200: #0a0d1214;--canvas-shadow: #00000014;--chunk-shadow: #0a0d120d;--text-heading-primary: #040d17;--text-heading-secondary: #434a51;--text-heading-inverse: #ffffff;--text-body-primary: #434a51;--text-body-secondary: #81858a;--text-body-muted: #c0c2c5;--text-body-inversed: #ffffff;--text-link-default: #2680ea;--text-link-hover: #1c60af;--text-link-muted: #c8dff9;--text-link-inverse: #5ca0ef;--surface-background-canvas: #ffffff;--surface-background-default: #f0f0f0;--surface-background-subtle: #e6e7e8;--surface-background-blue: #f7fafe;--surface-contextual-green: #f7fbf7;--surface-contextual-red: #fdf7f7;--surface-contextual-yellow: #fffdf5;--surface-decorative-sage-green: #f3fcf9;--surface-decorative-amber-brown: #f9f1f1;--surface-decorative-teal: #eafafb;--surface-decorative-pink: #f9ebf5;--surface-decorative-orange: #fffbf5;--surface-decorative-purple: #f4f0fa;--surface-decorative-blue: #f7fafe;--surface-action-default: #2680ea;--surface-action-hover: #1c60af;--surface-action-muted: #e6e7e8;--border-core-default: #dadbdc;--border-core-muted: #e6e7e8;--border-core-strong: #c0c2c5;--border-core-inverted: #81858a;--border-interaction-default: #dfecfc;--border-interaction-focus: #2680ea;--border-semantics-red: #f7dfdf;--border-semantics-green: #cde2ce;--border-semantics-yellow: #ffefc1;--border-decorative-purple: #d9c9ed;--border-decorative-orange: #ffe5bf;--border-decorative-pink: #eec2e0;--border-decorative-teal: #b0edee;--border-decorative-amber-brown: #e5c1c5;--border-decorative-sage-green: #a8e9d2;--icons-main-primary: #040d17;--icons-main-secondary: #434a51;--icons-main-hover: #2680ea;--icons-main-muted: #c0c2c5;--icons-main-inverse: #ffffff;--semantics-success-subtle: #6aaa6d;--semantics-success-default: #388e3c;--semantics-success-strong: #2a6a2d;--semantics-error-subtle: #d45e5e;--semantics-error-default: #ff0000;--semantics-error-strong: #941e1e;--semantics-warning-subtle: #ffd145;--semantics-warning-default: #ffc107;--semantics-warning-strong: #bf9105;--accent-orange-subtle: #ffb240;--accent-orange-default: #ff9800;--accent-orange-strong: #bf7200;--accent-teal-subtle: #6adedf;--accent-teal-default: #2ac7c9;--accent-teal-strong: #23a4a6;--accent-purple-subtle: #976dcd;--accent-purple-default: #8656c5;--accent-purple-strong: #733fb7;--accent-amber-brown-subtle: #deafb4;--accent-amber-brown-default: #cf8a91;--accent-amber-brown-strong: #c77880;--accent-sage-green-subtle: #33c994;--accent-sage-green-default: #29a277;--accent-sage-green-dark: #1f7a5a;--accent-pink-subtle: #d772b9;--accent-pink-default: #d058ab;--accent-pink-dark: #c83d9e}html{font-size:12px}.pointer{cursor:pointer}.d-none{display:none}.textTruncate{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}button.cats-btn{border:calc(.0833333333rem / var(--scale)) solid transparent;padding:0 calc(2.3333333333rem / var(--scale));height:calc(4.6666666667rem / var(--scale));min-width:calc(11.8333333333rem / var(--scale));display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:calc(1rem / var(--scale));border-radius:calc(.6666666667rem / var(--scale));font-size:var(--fs-18);line-height:\"\";font-weight:600;cursor:pointer}button.cats-btn:focus-visible{outline:none;border:0}button.cats-btn i-feather.icon{display:flex}button.cats-btn.primary_btn{background-color:var(--text-link-default);color:var(--surface-background-canvas)}button.cats-btn.secondary_btn{background-color:var(--surface-background-subtle);color:var(--text-body-primary)}button.cats-btn.outline_btn{background-color:var(--surface-background-canvas);color:var(--text-body-primary);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-strong)}button.cats-btn.disable{pointer-events:none;opacity:.6}button.cats-btn.fill_lightBlue_btn{background-color:var(--surface-background-blue);color:var(--text-link-default)}button.cats-btn.disable_fill_lightBlue_btn{background-color:var(--surface-background-blue);color:var(--text-link-muted);pointer-events:none}button.cats-btn.bg_logic_btn{background-color:var(--surface-background-canvas);color:var(--text-body-primary);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default)}button.cats-btn.no_outline_btn{background-color:var(--surface-background-blue);color:var(--text-link-default);outline:none}button.cats-btn .close_outline_btn{background-color:var(--surface-background-blue);border:calc(.0833333333rem / var(--scale)) solid var(--surface-background-blue);color:var(--text-link-default)}.default-tooltip-class{position:relative;display:inline-block;padding:calc(.6666666667rem / var(--scale)) calc(1rem / var(--scale));background:var(--surface-background-canvas);border-radius:calc(.6666666667rem / var(--scale));font-size:var(--fs-14);line-height:calc(2rem / var(--scale));font-weight:400;color:var(--text-body-primary);box-shadow:0 calc(.3333333333rem / var(--scale)) calc(1.25rem / var(--scale)) #00000026}.default-tooltip-class:before{content:\"\";position:absolute;top:calc(-.8333333333rem / var(--scale));left:50%;width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));background:var(--surface-background-canvas);transform:rotate(-135deg);box-shadow:calc(.3333333333rem / var(--scale)) calc(.3333333333rem / var(--scale)) calc(.5rem / var(--scale)) #0000001a;border-radius:calc(.1666666667rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-muted);border-top:0;border-left:0}.display-large{font-size:calc(4.6666666667rem / var(--scale));line-height:calc(6.6666666667rem / var(--scale));font-weight:500}.display-large-emphasized{font-size:calc(4.6666666667rem / var(--scale));line-height:calc(6.6666666667rem / var(--scale));font-weight:600}.display-medium{font-size:calc(4rem / var(--scale));line-height:calc(4.6666666667rem / var(--scale));font-weight:500}.display-medium-emphasized{font-size:calc(4rem / var(--scale));line-height:calc(4.6666666667rem / var(--scale));font-weight:600}.heading-extra-large{font-size:calc(3rem / var(--scale));line-height:calc(3.3333333333rem / var(--scale));font-weight:500}.heading-extra-large-emphasized{font-size:calc(3rem / var(--scale));line-height:calc(3.3333333333rem / var(--scale));font-weight:600}.heading-large{font-size:calc(2rem / var(--scale));line-height:calc(2.6666666667rem / var(--scale));font-weight:500}.heading-large-emphasized{font-size:calc(2rem / var(--scale));line-height:calc(2.6666666667rem / var(--scale));font-weight:600}.heading-medium{font-size:calc(1.6666666667rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:500}.heading-medium-emphasized{font-size:calc(1.6666666667rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:600}.heading-small{font-size:calc(1.5rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:500}.heading-small-emphasized{font-size:calc(1.5rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:600}.body-large{font-size:calc(1.3333333333rem / var(--scale));line-height:calc(2rem / var(--scale));font-weight:400}.body-large-emphasized{font-size:calc(1.3333333333rem / var(--scale));line-height:calc(2rem / var(--scale));font-weight:500}.body-medium{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:400}.body-medium-emphasized{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.body-small{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:400}.meta-regular{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.meta-regular-emphasized{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:600}.interaction-medium{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.interaction-small{font-size:calc(1rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.system-utility-regular{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:500}.system-utility-regular-emphasized{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:600}.system-utility-small{font-size:calc(.8333333333rem / var(--scale));line-height:calc(1rem / var(--scale));font-weight:500}.font-weight-regular{font-weight:400}.font-weight-medium{font-weight:500}.font-weight-semibold{font-weight:600}.sp-0{padding:calc(0rem / var(--scale))}.sp-2{padding:calc(.1666666667rem / var(--scale))}.sp-4{padding:calc(.3333333333rem / var(--scale))}.sp-8{padding:calc(.6666666667rem / var(--scale))}.sp-12{padding:calc(1rem / var(--scale))}.sp-16{padding:calc(1.3333333333rem / var(--scale))}.sp-24{padding:calc(2rem / var(--scale))}.sp-36{padding:calc(3rem / var(--scale))}.sp-40{padding:calc(3.3333333333rem / var(--scale))}.sm-0{margin:calc(0rem / var(--scale))}.sm-2{margin:calc(.1666666667rem / var(--scale))}.sm-4{margin:calc(.3333333333rem / var(--scale))}.sm-8{margin:calc(.6666666667rem / var(--scale))}.sm-12{margin:calc(1rem / var(--scale))}.sm-16{margin:calc(1.3333333333rem / var(--scale))}.sm-24{margin:calc(2rem / var(--scale))}.sm-36{margin:calc(3rem / var(--scale))}.sm-40{margin:calc(3.3333333333rem / var(--scale))}.sp-t-0{padding-top:calc(0rem / var(--scale))}.sp-t-2{padding-top:calc(.1666666667rem / var(--scale))}.sp-t-4{padding-top:calc(.3333333333rem / var(--scale))}.sp-t-8{padding-top:calc(.6666666667rem / var(--scale))}.sp-t-12{padding-top:calc(1rem / var(--scale))}.sp-t-16{padding-top:calc(1.3333333333rem / var(--scale))}.sp-t-24{padding-top:calc(2rem / var(--scale))}.sp-t-36{padding-top:calc(3rem / var(--scale))}.sp-t-40{padding-top:calc(3.3333333333rem / var(--scale))}.sp-b-0{padding-bottom:calc(0rem / var(--scale))}.sp-b-2{padding-bottom:calc(.1666666667rem / var(--scale))}.sp-b-4{padding-bottom:calc(.3333333333rem / var(--scale))}.sp-b-8{padding-bottom:calc(.6666666667rem / var(--scale))}.sp-b-12{padding-bottom:calc(1rem / var(--scale))}.sp-b-16{padding-bottom:calc(1.3333333333rem / var(--scale))}.sp-b-24{padding-bottom:calc(2rem / var(--scale))}.sp-b-36{padding-bottom:calc(3rem / var(--scale))}.sp-b-40{padding-bottom:calc(3.3333333333rem / var(--scale))}.sp-l-0{padding-left:calc(0rem / var(--scale))}.sp-l-2{padding-left:calc(.1666666667rem / var(--scale))}.sp-l-4{padding-left:calc(.3333333333rem / var(--scale))}.sp-l-8{padding-left:calc(.6666666667rem / var(--scale))}.sp-l-12{padding-left:calc(1rem / var(--scale))}.sp-l-16{padding-left:calc(1.3333333333rem / var(--scale))}.sp-l-24{padding-left:calc(2rem / var(--scale))}.sp-l-36{padding-left:calc(3rem / var(--scale))}.sp-l-40{padding-left:calc(3.3333333333rem / var(--scale))}.sp-r-0{padding-right:calc(0rem / var(--scale))}.sp-r-2{padding-right:calc(.1666666667rem / var(--scale))}.sp-r-4{padding-right:calc(.3333333333rem / var(--scale))}.sp-r-8{padding-right:calc(.6666666667rem / var(--scale))}.sp-r-12{padding-right:calc(1rem / var(--scale))}.sp-r-16{padding-right:calc(1.3333333333rem / var(--scale))}.sp-r-24{padding-right:calc(2rem / var(--scale))}.sp-r-36{padding-right:calc(3rem / var(--scale))}.sp-r-40{padding-right:calc(3.3333333333rem / var(--scale))}.sm-t-0{margin-top:calc(0rem / var(--scale))}.sm-t-2{margin-top:calc(.1666666667rem / var(--scale))}.sm-t-4{margin-top:calc(.3333333333rem / var(--scale))}.sm-t-8{margin-top:calc(.6666666667rem / var(--scale))}.sm-t-12{margin-top:calc(1rem / var(--scale))}.sm-t-16{margin-top:calc(1.3333333333rem / var(--scale))}.sm-t-24{margin-top:calc(2rem / var(--scale))}.sm-t-36{margin-top:calc(3rem / var(--scale))}.sm-t-40{margin-top:calc(3.3333333333rem / var(--scale))}.sm-b-0{margin-bottom:calc(0rem / var(--scale))}.sm-b-2{margin-bottom:calc(.1666666667rem / var(--scale))}.sm-b-4{margin-bottom:calc(.3333333333rem / var(--scale))}.sm-b-8{margin-bottom:calc(.6666666667rem / var(--scale))}.sm-b-12{margin-bottom:calc(1rem / var(--scale))}.sm-b-16{margin-bottom:calc(1.3333333333rem / var(--scale))}.sm-b-24{margin-bottom:calc(2rem / var(--scale))}.sm-b-36{margin-bottom:calc(3rem / var(--scale))}.sm-b-40{margin-bottom:calc(3.3333333333rem / var(--scale))}.sm-l-0{margin-left:calc(0rem / var(--scale))}.sm-l-2{margin-left:calc(.1666666667rem / var(--scale))}.sm-l-4{margin-left:calc(.3333333333rem / var(--scale))}.sm-l-8{margin-left:calc(.6666666667rem / var(--scale))}.sm-l-12{margin-left:calc(1rem / var(--scale))}.sm-l-16{margin-left:calc(1.3333333333rem / var(--scale))}.sm-l-24{margin-left:calc(2rem / var(--scale))}.sm-l-36{margin-left:calc(3rem / var(--scale))}.sm-l-40{margin-left:calc(3.3333333333rem / var(--scale))}.sm-r-0{margin-right:calc(0rem / var(--scale))}.sm-r-2{margin-right:calc(.1666666667rem / var(--scale))}.sm-r-4{margin-right:calc(.3333333333rem / var(--scale))}.sm-r-8{margin-right:calc(.6666666667rem / var(--scale))}.sm-r-12{margin-right:calc(1rem / var(--scale))}.sm-r-16{margin-right:calc(1.3333333333rem / var(--scale))}.sm-r-24{margin-right:calc(2rem / var(--scale))}.sm-r-36{margin-right:calc(3rem / var(--scale))}.sm-r-40{margin-right:calc(3.3333333333rem / var(--scale))}.sp-x-0{padding-left:calc(0rem / var(--scale));padding-right:calc(0rem / var(--scale))}.sp-x-2{padding-left:calc(.1666666667rem / var(--scale));padding-right:calc(.1666666667rem / var(--scale))}.sp-x-4{padding-left:calc(.3333333333rem / var(--scale));padding-right:calc(.3333333333rem / var(--scale))}.sp-x-8{padding-left:calc(.6666666667rem / var(--scale));padding-right:calc(.6666666667rem / var(--scale))}.sp-x-12{padding-left:calc(1rem / var(--scale));padding-right:calc(1rem / var(--scale))}.sp-x-16{padding-left:calc(1.3333333333rem / var(--scale));padding-right:calc(1.3333333333rem / var(--scale))}.sp-x-24{padding-left:calc(2rem / var(--scale));padding-right:calc(2rem / var(--scale))}.sp-x-36{padding-left:calc(3rem / var(--scale));padding-right:calc(3rem / var(--scale))}.sp-x-40{padding-left:calc(3.3333333333rem / var(--scale));padding-right:calc(3.3333333333rem / var(--scale))}.sp-y-0{padding-top:calc(0rem / var(--scale));padding-bottom:calc(0rem / var(--scale))}.sp-y-2{padding-top:calc(.1666666667rem / var(--scale));padding-bottom:calc(.1666666667rem / var(--scale))}.sp-y-4{padding-top:calc(.3333333333rem / var(--scale));padding-bottom:calc(.3333333333rem / var(--scale))}.sp-y-8{padding-top:calc(.6666666667rem / var(--scale));padding-bottom:calc(.6666666667rem / var(--scale))}.sp-y-12{padding-top:calc(1rem / var(--scale));padding-bottom:calc(1rem / var(--scale))}.sp-y-16{padding-top:calc(1.3333333333rem / var(--scale));padding-bottom:calc(1.3333333333rem / var(--scale))}.sp-y-24{padding-top:calc(2rem / var(--scale));padding-bottom:calc(2rem / var(--scale))}.sp-y-36{padding-top:calc(3rem / var(--scale));padding-bottom:calc(3rem / var(--scale))}.sp-y-40{padding-top:calc(3.3333333333rem / var(--scale));padding-bottom:calc(3.3333333333rem / var(--scale))}.sm-x-0{margin-left:calc(0rem / var(--scale));margin-right:calc(0rem / var(--scale))}.sm-x-2{margin-left:calc(.1666666667rem / var(--scale));margin-right:calc(.1666666667rem / var(--scale))}.sm-x-4{margin-left:calc(.3333333333rem / var(--scale));margin-right:calc(.3333333333rem / var(--scale))}.sm-x-8{margin-left:calc(.6666666667rem / var(--scale));margin-right:calc(.6666666667rem / var(--scale))}.sm-x-12{margin-left:calc(1rem / var(--scale));margin-right:calc(1rem / var(--scale))}.sm-x-16{margin-left:calc(1.3333333333rem / var(--scale));margin-right:calc(1.3333333333rem / var(--scale))}.sm-x-24{margin-left:calc(2rem / var(--scale));margin-right:calc(2rem / var(--scale))}.sm-x-36{margin-left:calc(3rem / var(--scale));margin-right:calc(3rem / var(--scale))}.sm-x-40{margin-left:calc(3.3333333333rem / var(--scale));margin-right:calc(3.3333333333rem / var(--scale))}.sm-y-0{margin-top:calc(0rem / var(--scale));margin-bottom:calc(0rem / var(--scale))}.sm-y-2{margin-top:calc(.1666666667rem / var(--scale));margin-bottom:calc(.1666666667rem / var(--scale))}.sm-y-4{margin-top:calc(.3333333333rem / var(--scale));margin-bottom:calc(.3333333333rem / var(--scale))}.sm-y-8{margin-top:calc(.6666666667rem / var(--scale));margin-bottom:calc(.6666666667rem / var(--scale))}.sm-y-12{margin-top:calc(1rem / var(--scale));margin-bottom:calc(1rem / var(--scale))}.sm-y-16{margin-top:calc(1.3333333333rem / var(--scale));margin-bottom:calc(1.3333333333rem / var(--scale))}.sm-y-24{margin-top:calc(2rem / var(--scale));margin-bottom:calc(2rem / var(--scale))}.sm-y-36{margin-top:calc(3rem / var(--scale));margin-bottom:calc(3rem / var(--scale))}.sm-y-40{margin-top:calc(3.3333333333rem / var(--scale));margin-bottom:calc(3.3333333333rem / var(--scale))}.br-0{border-radius:calc(0rem / var(--scale))}.br-4{border-radius:calc(.3333333333rem / var(--scale))}.br-8{border-radius:calc(.6666666667rem / var(--scale))}.br-16{border-radius:calc(1.3333333333rem / var(--scale))}.br-24{border-radius:calc(2rem / var(--scale))}.br-36{border-radius:calc(3rem / var(--scale))}.br-200{border-radius:calc(16.6666666667rem / var(--scale))}.cats-checkbox-container,.cats-item,.cats-multiitem{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));font-size:var(--fs-16);line-height:calc(1.6666666667rem / var(--scale));font-weight:400;margin-bottom:calc(.6666666667rem / var(--scale));color:var(--text-heading-primary)}.cats-checkbox-container.disabled-option,.cats-item.disabled-option,.cats-multiitem.disabled-option{color:var(--text-body-muted);pointer-events:none}.cats-checkbox-container.disabled-option input[type=checkbox]:checked,.cats-item.disabled-option input[type=checkbox]:checked,.cats-multiitem.disabled-option input[type=checkbox]:checked{background-color:var(--surface-background-subtle);border-color:var(--border-core-default)}.cats-checkbox-container.disabled-option input[type=checkbox]:checked:after,.cats-item.disabled-option input[type=checkbox]:checked:after,.cats-multiitem.disabled-option input[type=checkbox]:checked:after{background-image:url(/images/check-disabled.svg)}.cats-checkbox-container.disabled-option::selection,.cats-item.disabled-option::selection,.cats-multiitem.disabled-option::selection{background-color:transparent}.cats-checkbox-container input[type=checkbox],.cats-item input[type=checkbox],.cats-multiitem input[type=checkbox]{appearance:none;-webkit-appearance:none;width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));min-width:calc(1.3333333333rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.3333333333rem / var(--scale));cursor:pointer;background-color:var(--surface-background-canvas);position:relative;transition:all .2s ease}.cats-checkbox-container input[type=checkbox]:after,.cats-item input[type=checkbox]:after,.cats-multiitem input[type=checkbox]:after{content:\"\";display:none;position:absolute;top:calc(-.0833333333rem / var(--scale));left:calc(-.0833333333rem / var(--scale));width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));background-size:auto;background-repeat:no-repeat;background-position:center}.cats-checkbox-container input[type=checkbox]:checked,.cats-item input[type=checkbox]:checked,.cats-multiitem input[type=checkbox]:checked{border-color:var(--border-interaction-focus);background-color:var(--surface-action-default)}.cats-checkbox-container input[type=checkbox]:checked:after,.cats-item input[type=checkbox]:checked:after,.cats-multiitem input[type=checkbox]:checked:after{display:block;background-image:url(/images/check-white.svg);background-size:calc(.6666666667rem / var(--scale)) calc(.5rem / var(--scale))}.cats-checkbox-container input[type=checkbox]:indeterminate,.cats-item input[type=checkbox]:indeterminate,.cats-multiitem input[type=checkbox]:indeterminate{border-color:var(--border-interaction-focus);background-color:var(--surface-background-canvas)}.cats-checkbox-container input[type=checkbox]:indeterminate:after,.cats-item input[type=checkbox]:indeterminate:after,.cats-multiitem input[type=checkbox]:indeterminate:after{display:block;top:0;background-image:url(/images/minus-blue.svg);background-size:calc(.5833333333rem / var(--scale)) calc(.0833333333rem / var(--scale))}.cats-checkbox-container input[type=checkbox]:disabled,.cats-item input[type=checkbox]:disabled,.cats-multiitem input[type=checkbox]:disabled{cursor:default;background-color:var(--surface-background-default);border-color:var(--border-core-muted)}.cats-checkbox-container input[type=checkbox]:disabled+span,.cats-item input[type=checkbox]:disabled+span,.cats-multiitem input[type=checkbox]:disabled+span{color:var(--text-body-muted)}.cats-checkbox-container input[type=checkbox]:checked:disabled,.cats-item input[type=checkbox]:checked:disabled,.cats-multiitem input[type=checkbox]:checked:disabled{background-color:var(--surface-background-default);border-color:var(--border-core-muted)}.cats-checkbox-container input[type=checkbox]:checked:disabled:after,.cats-item input[type=checkbox]:checked:disabled:after,.cats-multiitem input[type=checkbox]:checked:disabled:after{display:block;background-image:url(/images/check-disabled.svg)}:root{--fs-6: 6px;--fs-8: 8px;--fs-10: 10px;--fs-12: 12px;--fs-14: 14px;--fs-16: 16px;--fs-18: 18px;--fs-20: 20px;--fs-24: 24px;--fs-28: 28px;--fs-30: 30px;--fs-32: 32px;--fs-42: 42px;--fs-48: 48px;--img-w: 28px;--scale: 1}@media only screen and (min-width: 1024px) and (max-width: 1280px){:root{--scale: 1.5;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}@media only screen and (min-width: 1360px) and (max-width: 1440px){:root{--scale: 1.33;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}@media only screen and (min-width: 1536px) and (max-width: 1919px){:root{--scale: 1.25;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0;font-family:Open Sans,sans-serif}body{font-size:100%}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}h1,h2,h3,h4,h5,h6,ul,ol p{margin:0;padding:0;text-wrap:pretty}ul[role=list],ol[role=list],ul{list-style:none}img,picture{max-width:100%;display:block}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-thumb{background:var(--border-core-default);border-radius:8px}input,select,textarea{outline:none;box-shadow:none}.date-picker-wrapper{position:relative;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;flex-wrap:nowrap;gap:calc(.5rem / var(--scale));font-family:Inter,-apple-system,sans-serif}.date-picker-wrapper .date-label{font-size:var(--fs-12);line-height:calc(1.3333333333rem / var(--scale));font-weight:500;color:#6b7280}.date-picker-wrapper .date-input{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));padding:0 calc(1rem / var(--scale));width:100%;height:calc(4rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.4166666667rem / var(--scale));background:var(--surface-background-canvas);cursor:pointer;min-width:calc(16.6666666667rem / var(--scale));transition:border-color .2s,box-shadow .2s;-webkit-user-select:none;user-select:none}.date-picker-wrapper .date-input:hover{border-color:var(--border-interaction-focus)}.date-picker-wrapper .date-input .calendar-icon{width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));color:#9ca3af;flex-shrink:0}.date-picker-wrapper .date-input .date-input-text{flex:1;font-size:var(--fs-16);line-height:calc(2rem / var(--scale));font-weight:500;color:var(--text-heading-secondary);background-color:var(--surface-background-canvas)}.date-picker-wrapper .date-input .date-input-text.custom-placeholder{color:#9ca3af;font-weight:400}.date-picker-wrapper .date-input .clear-btn{cursor:pointer;padding:calc(.1666666667rem / var(--scale)) calc(.4166666667rem / var(--scale));transition:background .15s}.date-picker-wrapper .date-input .clear-btn:hover{background:#f3f4f6}.date-picker-wrapper .calendar-dropdown{min-width:calc(30.6666666667rem / var(--scale));max-width:calc(60.6666666667rem / var(--scale));min-height:calc(34.5rem / var(--scale));position:absolute;top:calc(100% + .0833333333rem / var(--scale));left:0;z-index:1000;background:var(--surface-background-canvas);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);box-shadow:0 calc(.6666666667rem / var(--scale)) calc(1.3333333333rem / var(--scale)) calc(.6666666667rem / var(--scale)) var(--canvas-shadow);overflow:hidden;animation:dropIn .15s ease}.date-picker-wrapper .calendar-dropdown.open-top{top:auto;bottom:calc(100% + .0833333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown.month-year-view{width:calc(30.8333333333rem / var(--scale));min-height:calc(34.5rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;width:100%;height:calc(2.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;flex:1;margin:0 calc(7.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper{width:calc(7.3333333333rem / var(--scale));height:calc(1.6666666667rem / var(--scale));display:flex;flex-direction:row;justify-content:\"\";align-items:center;flex-wrap:nowrap;gap:calc(.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper .month{color:var(--text-heading-primary)}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper .year{color:var(--text-body-secondary)}.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn{display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;width:calc(2.6666666667rem / var(--scale));height:calc(2.6666666667rem / var(--scale));cursor:pointer;border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);box-shadow:0 calc(.0833333333rem / var(--scale)) calc(.1666666667rem / var(--scale)) 0 var(--chunk-shadow);background-color:var(--surface-background-canvas);transition:background .15s,color .15s}.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn i-feather,.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn img{width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-selector{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:calc(.4166666667rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(1rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-selector .year-grid{flex:1;border-top:none;padding-top:0;height:calc(27.25rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid,.date-picker-wrapper .calendar-dropdown .month-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:calc(.25rem / var(--scale));font-size:var(--fs-16);line-height:calc(2.3333333333rem / var(--scale));font-weight:500;height:calc(28.3333333333rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(1rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid .month,.date-picker-wrapper .calendar-dropdown .year-grid .year,.date-picker-wrapper .calendar-dropdown .month-grid .month,.date-picker-wrapper .calendar-dropdown .month-grid .year{display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;cursor:pointer;border-radius:calc(.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid .month:hover,.date-picker-wrapper .calendar-dropdown .year-grid .month.selected,.date-picker-wrapper .calendar-dropdown .year-grid .year:hover,.date-picker-wrapper .calendar-dropdown .year-grid .year.selected,.date-picker-wrapper .calendar-dropdown .month-grid .month:hover,.date-picker-wrapper .calendar-dropdown .month-grid .month.selected,.date-picker-wrapper .calendar-dropdown .month-grid .year:hover,.date-picker-wrapper .calendar-dropdown .month-grid .year.selected{color:var(--text-heading-inverse);background-color:var(--surface-action-default);transition:ease-in-out .2s}.date-picker-wrapper .calendar-dropdown .day_wrapper .dual-calendar{display:grid;grid-template-columns:1fr 1fr;gap:calc(2rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .day_wrapper .calendar-panel{display:flex;flex-direction:column}.date-picker-wrapper .calendar-dropdown .calendar-footer{display:flex;flex-direction:column;justify-content:\"\";align-items:\"\";flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer .calendar-footer-wrapper{border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));width:100%;padding-top:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:0;border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.6666666667rem / var(--scale));width:100%;height:calc(4rem / var(--scale));overflow:hidden}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row.label-row.muted{background:#f9fafb}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row.label-row.muted .footer-value{color:#9ca3af}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-label{color:var(--text-heading-primary);height:100%;display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;min-width:calc(5rem / var(--scale));border-right:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);background:var(--surface-background-default)}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper{width:100%;height:100%;display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:calc(.8333333333rem / var(--scale));flex:1}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper .footer-value{color:var(--text-heading-primary)}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper img{cursor:pointer}.date-picker-wrapper .calendar-dropdown .calendar-footer.dual-calendar{display:flex;flex-direction:row;justify-content:\"\";align-items:\"\";flex-wrap:nowrap;gap:calc(2rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer.dual-calendar .dual-calendar-border-top{display:flex;flex-direction:column;justify-content:\"\";align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .footer-actions{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;width:100%;height:calc(2.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .footer-actions .footer-btn{width:calc(7.5rem / var(--scale));height:100%;display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-cancel{border:calc(.0833333333rem / var(--scale)) solid var(--border-core-strong);border-radius:calc(.3333333333rem / var(--scale));background:var(--surface-background-canvas);color:var(--text-body-primary);cursor:pointer;transition:border-color .15s,background .15s}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-cancel:hover{border-color:#d1d5db;background:#f9fafb}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply{border:calc(.0833333333rem / var(--scale)) solid transparent;border-radius:calc(.3333333333rem / var(--scale));background:var(--surface-action-default);color:var(--text-heading-inverse);cursor:pointer;transition:background .15s}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply:hover:not(:disabled){background:#2563eb}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply:disabled{background:var(--surface-background-default);border-color:var(--border-core-strong);color:var(--text-body-muted);pointer-events:none}.date-picker-wrapper .calendar-dropdown:has(.dual-calendar):after{content:\"\";position:absolute;top:calc(1.3333333333rem / var(--scale));left:calc(30.3333333333rem / var(--scale));width:calc(.0833333333rem / var(--scale));height:83%;background-color:var(--border-core-default)}button{min-width:unset;height:unset}@keyframes dropIn{0%{opacity:0;transform:translateY(calc(-.5rem / var(--scale)))}to{opacity:1;transform:translateY(0)}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: CalendarGridComponent, selector: "custom-calendar-grid", inputs: ["month", "year", "calendarDays", "weekDays", "parent"], outputs: ["daySelected"] }, { kind: "component", type: TimeInputComponent, selector: "cats-time-input", outputs: ["timeChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: OutsideClickDirective, selector: "[catsOutsideClick]", outputs: ["clickOutSide"] }] });
2774
+ ], usesOnChanges: true, ngImport: i0, template: "<div class=\"date-picker-wrapper\" id=\"custom-date\" catsOutsideClick\n (clickOutSide)=\"isOpen = false\">\n <!-- Label -->\n @if (label) {\n <label class=\"date-label\">{{ label }}</label>\n }\n\n <!-- Input Trigger -->\n @if (showTrigger) {\n <div\n class=\"date-input\"\n [class.is-open]=\"isOpen\"\n [class.has-value]=\"displayValue\"\n (click)=\"toggleCalendar()\"\n >\n <span class=\"date-input-text\" [class.custom-placeholder]=\"!displayValue\">\n {{ displayValue || config.placeholder || \"Select date\" }}\n </span>\n\n <svg\n class=\"calendar-icon\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"2\"\n >\n <rect x=\"3\" y=\"4\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\"></rect>\n <line x1=\"16\" y1=\"2\" x2=\"16\" y2=\"6\"></line>\n <line x1=\"8\" y1=\"2\" x2=\"8\" y2=\"6\"></line>\n <line x1=\"3\" y1=\"10\" x2=\"21\" y2=\"10\"></line>\n </svg>\n\n <!-- @if (displayValue) {\n <span class=\"clear-btn\" (click)=\"$event.stopPropagation(); clearDate()\">\n <img src=\"images/x.svg\" alt=\"\" />\n </span>\n } -->\n </div>\n }\n\n <!-- Calendar Dropdown -->\n @if (!showTrigger || isOpen) {\n <div\n id=\"date-input-container\"\n class=\"calendar-dropdown sp-16 br-8\"\n [ngClass]=\"{ 'month-year-view': calenderView != 'day' }\"\n >\n <div class=\"calendar-header sm-b-12\">\n <div class=\"nav-btn br-4\" (click)=\"prevMonth()\" type=\"button\">\n <img src=\"images/chevron-left.svg\" alt=\"\" />\n </div>\n <div class=\"month-year body-medium\">\n @if (mode === \"dual\") {\n @if (calenderView == \"day\" || activeCalendar != \"secondary\") {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"openView('primary', 'month')\">{{\n currentMonthName\n }}</span>\n <span class=\"year\" (click)=\"openView('primary', 'year')\">{{\n currentYear\n }}</span>\n </div>\n }\n\n @if (calenderView == \"day\" || activeCalendar != \"primary\") {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"openView('secondary', 'month')\">{{\n monthNames[currentMonth2]\n }}</span>\n <span class=\"year\" (click)=\"openView('secondary', 'year')\">{{\n currentYear2\n }}</span>\n </div>\n }\n } @else {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"calenderView = 'month'\">{{\n currentMonthName\n }}</span>\n <span class=\"year\" (click)=\"calenderView = 'year'\">{{\n currentYear\n }}</span>\n </div>\n }\n </div>\n <div class=\"nav-btn br-4\" (click)=\"nextMonth()\" type=\"button\">\n <img src=\"images/chevron-right.svg\" alt=\"\" />\n </div>\n </div>\n\n @if (calenderView == \"month\") {\n <div class=\"month-grid\">\n @for (month of monthNames; track month) {\n <span\n class=\"month\"\n (click)=\"selectMonth(month)\"\n [ngClass]=\"{ selected: month == activeMonthName }\"\n >{{ month }}</span\n >\n }\n </div>\n } @else if (calenderView == \"year\") {\n <div class=\"year-selector\">\n <span class=\"navigation-button pointer\" (click)=\"previousYearRange()\">\n <img src=\"images/chevron-left.svg\" alt=\"\" />\n </span>\n <div class=\"year-grid\">\n @for (year of yearRange; track year) {\n <span\n class=\"year\"\n (click)=\"selectYear(year)\"\n [ngClass]=\"{ selected: year == activeYearValue }\"\n >{{ year }}</span\n >\n }\n </div>\n <span class=\"navigation-button pointer\" (click)=\"nextYearRange()\">\n <img src=\"images/chevron-right.svg\" alt=\"\" />\n </span>\n </div>\n } @else {\n <!-- Weekday Headers -->\n <div class=\"day_wrapper\">\n @if (mode === \"dual\") {\n <div class=\"dual-calendar\">\n <div class=\"calendar-panel\">\n <custom-calendar-grid\n [month]=\"currentMonth\"\n [year]=\"currentYear\"\n [calendarDays]=\"calendarDays\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'primary')\"\n ></custom-calendar-grid>\n </div>\n\n <div class=\"calendar-panel\">\n <custom-calendar-grid\n [month]=\"currentMonth2\"\n [year]=\"currentYear2\"\n [calendarDays]=\"calendarDays2\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'secondary')\"\n ></custom-calendar-grid>\n </div>\n </div>\n } @else {\n <custom-calendar-grid\n [month]=\"currentMonth\"\n [year]=\"currentYear\"\n [calendarDays]=\"calendarDays\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'primary')\"\n ></custom-calendar-grid>\n }\n </div>\n\n <!-- Footer -->\n <div\n class=\"calendar-footer sm-b-16\"\n [ngClass]=\"{ 'dual-calendar': config.mode === 'dual' }\"\n >\n <!-- SINGLE MODE footer -->\n @if (mode === \"single\" && showDateLabel) {\n <div class=\"calendar-footer-wrapper\">\n <div class=\"footer-row label-row\">\n <span class=\"footer-label body-large sp-x-12\">Date</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempDisplayValue\n }}</span>\n @if (tempDate) {\n <img\n (click)=\"cancelDate('single')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"singleTimeInSeconds\"\n (timeChange)=\"onSingleTimeChange($event)\"\n ></cats-time-input>\n }\n }\n\n <!-- RANGE MODE footer -->\n @if (mode === \"range\" || mode === \"dual\") {\n <div\n class=\"calendar-footer-wrapper\"\n [ngStyle]=\"{ width: mode === 'dual' ? '50%' : '100%' }\"\n >\n <div class=\"footer-row label-row\">\n <span class=\"footer-label body-large sp-x-12\">From</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempFromDisplay\n }}</span>\n @if (tempFrom) {\n <img\n (click)=\"cancelDate('from')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"fromTimeInSeconds\"\n (timeChange)=\"onFromTimeChange($event)\"\n ></cats-time-input>\n }\n </div>\n <div\n class=\"dual-calendar-border-top\"\n [ngClass]=\"{ 'calendar-footer-wrapper': time, 'sp-t-12': time }\"\n [ngStyle]=\"{ width: mode === 'dual' ? '50%' : '100%' }\"\n >\n <div class=\"footer-row label-row\" [class.muted]=\"!tempTo\">\n <span class=\"footer-label body-large sp-x-12\">To</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempToDisplay\n }}</span>\n @if (tempTo) {\n <img\n (click)=\"cancelDate('to')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"toTimeInSeconds\"\n (timeChange)=\"onToTimeChange($event)\"\n ></cats-time-input>\n }\n </div>\n }\n </div>\n <!-- Action Buttons -->\n <div class=\"footer-actions\">\n <button\n class=\"btn-cancel footer-btn body-medium\"\n (click)=\"onCancel()\"\n type=\"button\"\n >\n Cancel\n </button>\n <button\n class=\"btn-apply footer-btn body-medium\"\n (click)=\"onApply()\"\n type=\"button\"\n [disabled]=\"!canApply\"\n >\n Apply\n </button>\n </div>\n }\n </div>\n }\n</div>\n", styles: [":root{--blue-100: #eaf3fd;--box-shadow: #0a0d1208;--box-shadow-200: #0a0d1214;--canvas-shadow: #00000014;--chunk-shadow: #0a0d120d;--text-heading-primary: #040d17;--text-heading-secondary: #434a51;--text-heading-inverse: #ffffff;--text-body-primary: #434a51;--text-body-secondary: #81858a;--text-body-muted: #c0c2c5;--text-body-inversed: #ffffff;--text-link-default: #2680ea;--text-link-hover: #1c60af;--text-link-muted: #c8dff9;--text-link-inverse: #5ca0ef;--surface-background-canvas: #ffffff;--surface-background-default: #f0f0f0;--surface-background-subtle: #e6e7e8;--surface-background-blue: #f7fafe;--surface-contextual-green: #f7fbf7;--surface-contextual-red: #fdf7f7;--surface-contextual-yellow: #fffdf5;--surface-decorative-sage-green: #f3fcf9;--surface-decorative-amber-brown: #f9f1f1;--surface-decorative-teal: #eafafb;--surface-decorative-pink: #f9ebf5;--surface-decorative-orange: #fffbf5;--surface-decorative-purple: #f4f0fa;--surface-decorative-blue: #f7fafe;--surface-action-default: #2680ea;--surface-action-hover: #1c60af;--surface-action-muted: #e6e7e8;--border-core-default: #dadbdc;--border-core-muted: #e6e7e8;--border-core-strong: #c0c2c5;--border-core-inverted: #81858a;--border-interaction-default: #dfecfc;--border-interaction-focus: #2680ea;--border-semantics-red: #f7dfdf;--border-semantics-green: #cde2ce;--border-semantics-yellow: #ffefc1;--border-decorative-purple: #d9c9ed;--border-decorative-orange: #ffe5bf;--border-decorative-pink: #eec2e0;--border-decorative-teal: #b0edee;--border-decorative-amber-brown: #e5c1c5;--border-decorative-sage-green: #a8e9d2;--icons-main-primary: #040d17;--icons-main-secondary: #434a51;--icons-main-hover: #2680ea;--icons-main-muted: #c0c2c5;--icons-main-inverse: #ffffff;--semantics-success-subtle: #6aaa6d;--semantics-success-default: #388e3c;--semantics-success-strong: #2a6a2d;--semantics-error-subtle: #d45e5e;--semantics-error-default: #ff0000;--semantics-error-strong: #941e1e;--semantics-warning-subtle: #ffd145;--semantics-warning-default: #ffc107;--semantics-warning-strong: #bf9105;--accent-orange-subtle: #ffb240;--accent-orange-default: #ff9800;--accent-orange-strong: #bf7200;--accent-teal-subtle: #6adedf;--accent-teal-default: #2ac7c9;--accent-teal-strong: #23a4a6;--accent-purple-subtle: #976dcd;--accent-purple-default: #8656c5;--accent-purple-strong: #733fb7;--accent-amber-brown-subtle: #deafb4;--accent-amber-brown-default: #cf8a91;--accent-amber-brown-strong: #c77880;--accent-sage-green-subtle: #33c994;--accent-sage-green-default: #29a277;--accent-sage-green-dark: #1f7a5a;--accent-pink-subtle: #d772b9;--accent-pink-default: #d058ab;--accent-pink-dark: #c83d9e}html{font-size:12px}.pointer{cursor:pointer}.d-none{display:none}.textTruncate{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}button.cats-btn{border:calc(.0833333333rem / var(--scale)) solid transparent;padding:0 calc(2.3333333333rem / var(--scale));height:calc(4.6666666667rem / var(--scale));min-width:calc(11.8333333333rem / var(--scale));display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:calc(1rem / var(--scale));border-radius:calc(.6666666667rem / var(--scale));font-size:var(--fs-18);line-height:\"\";font-weight:600;cursor:pointer}button.cats-btn:focus-visible{outline:none;border:0}button.cats-btn i-feather.icon{display:flex}button.cats-btn.primary_btn{background-color:var(--text-link-default);color:var(--surface-background-canvas)}button.cats-btn.secondary_btn{background-color:var(--surface-background-subtle);color:var(--text-body-primary)}button.cats-btn.outline_btn{background-color:var(--surface-background-canvas);color:var(--text-body-primary);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-strong)}button.cats-btn.disable{pointer-events:none;opacity:.6}button.cats-btn.fill_lightBlue_btn{background-color:var(--surface-background-blue);color:var(--text-link-default)}button.cats-btn.disable_fill_lightBlue_btn{background-color:var(--surface-background-blue);color:var(--text-link-muted);pointer-events:none}button.cats-btn.bg_logic_btn{background-color:var(--surface-background-canvas);color:var(--text-body-primary);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default)}button.cats-btn.no_outline_btn{background-color:var(--surface-background-blue);color:var(--text-link-default);outline:none}button.cats-btn .close_outline_btn{background-color:var(--surface-background-blue);border:calc(.0833333333rem / var(--scale)) solid var(--surface-background-blue);color:var(--text-link-default)}.default-tooltip-class{position:relative;display:inline-block;padding:calc(.6666666667rem / var(--scale)) calc(1rem / var(--scale));background:var(--surface-background-canvas);border-radius:calc(.6666666667rem / var(--scale));font-size:var(--fs-14);line-height:calc(2rem / var(--scale));font-weight:400;color:var(--text-body-primary);box-shadow:0 calc(.3333333333rem / var(--scale)) calc(1.25rem / var(--scale)) #00000026}.default-tooltip-class:before{content:\"\";position:absolute;top:calc(-.8333333333rem / var(--scale));left:50%;width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));background:var(--surface-background-canvas);transform:rotate(-135deg);box-shadow:calc(.3333333333rem / var(--scale)) calc(.3333333333rem / var(--scale)) calc(.5rem / var(--scale)) #0000001a;border-radius:calc(.1666666667rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-muted);border-top:0;border-left:0}.display-large{font-size:calc(4.6666666667rem / var(--scale));line-height:calc(6.6666666667rem / var(--scale));font-weight:500}.display-large-emphasized{font-size:calc(4.6666666667rem / var(--scale));line-height:calc(6.6666666667rem / var(--scale));font-weight:600}.display-medium{font-size:calc(4rem / var(--scale));line-height:calc(4.6666666667rem / var(--scale));font-weight:500}.display-medium-emphasized{font-size:calc(4rem / var(--scale));line-height:calc(4.6666666667rem / var(--scale));font-weight:600}.heading-extra-large{font-size:calc(3rem / var(--scale));line-height:calc(3.3333333333rem / var(--scale));font-weight:500}.heading-extra-large-emphasized{font-size:calc(3rem / var(--scale));line-height:calc(3.3333333333rem / var(--scale));font-weight:600}.heading-large{font-size:calc(2rem / var(--scale));line-height:calc(2.6666666667rem / var(--scale));font-weight:500}.heading-large-emphasized{font-size:calc(2rem / var(--scale));line-height:calc(2.6666666667rem / var(--scale));font-weight:600}.heading-medium{font-size:calc(1.6666666667rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:500}.heading-medium-emphasized{font-size:calc(1.6666666667rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:600}.heading-small{font-size:calc(1.5rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:500}.heading-small-emphasized{font-size:calc(1.5rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:600}.body-large{font-size:calc(1.3333333333rem / var(--scale));line-height:calc(2rem / var(--scale));font-weight:400}.body-large-emphasized{font-size:calc(1.3333333333rem / var(--scale));line-height:calc(2rem / var(--scale));font-weight:500}.body-medium{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:400}.body-medium-emphasized{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.body-small{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:400}.meta-regular{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.meta-regular-emphasized{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:600}.interaction-medium{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.interaction-small{font-size:calc(1rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.system-utility-regular{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:500}.system-utility-regular-emphasized{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:600}.system-utility-small{font-size:calc(.8333333333rem / var(--scale));line-height:calc(1rem / var(--scale));font-weight:500}.font-weight-regular{font-weight:400}.font-weight-medium{font-weight:500}.font-weight-semibold{font-weight:600}.sp-0{padding:calc(0rem / var(--scale))}.sp-2{padding:calc(.1666666667rem / var(--scale))}.sp-4{padding:calc(.3333333333rem / var(--scale))}.sp-8{padding:calc(.6666666667rem / var(--scale))}.sp-12{padding:calc(1rem / var(--scale))}.sp-16{padding:calc(1.3333333333rem / var(--scale))}.sp-24{padding:calc(2rem / var(--scale))}.sp-36{padding:calc(3rem / var(--scale))}.sp-40{padding:calc(3.3333333333rem / var(--scale))}.sm-0{margin:calc(0rem / var(--scale))}.sm-2{margin:calc(.1666666667rem / var(--scale))}.sm-4{margin:calc(.3333333333rem / var(--scale))}.sm-8{margin:calc(.6666666667rem / var(--scale))}.sm-12{margin:calc(1rem / var(--scale))}.sm-16{margin:calc(1.3333333333rem / var(--scale))}.sm-24{margin:calc(2rem / var(--scale))}.sm-36{margin:calc(3rem / var(--scale))}.sm-40{margin:calc(3.3333333333rem / var(--scale))}.sp-t-0{padding-top:calc(0rem / var(--scale))}.sp-t-2{padding-top:calc(.1666666667rem / var(--scale))}.sp-t-4{padding-top:calc(.3333333333rem / var(--scale))}.sp-t-8{padding-top:calc(.6666666667rem / var(--scale))}.sp-t-12{padding-top:calc(1rem / var(--scale))}.sp-t-16{padding-top:calc(1.3333333333rem / var(--scale))}.sp-t-24{padding-top:calc(2rem / var(--scale))}.sp-t-36{padding-top:calc(3rem / var(--scale))}.sp-t-40{padding-top:calc(3.3333333333rem / var(--scale))}.sp-b-0{padding-bottom:calc(0rem / var(--scale))}.sp-b-2{padding-bottom:calc(.1666666667rem / var(--scale))}.sp-b-4{padding-bottom:calc(.3333333333rem / var(--scale))}.sp-b-8{padding-bottom:calc(.6666666667rem / var(--scale))}.sp-b-12{padding-bottom:calc(1rem / var(--scale))}.sp-b-16{padding-bottom:calc(1.3333333333rem / var(--scale))}.sp-b-24{padding-bottom:calc(2rem / var(--scale))}.sp-b-36{padding-bottom:calc(3rem / var(--scale))}.sp-b-40{padding-bottom:calc(3.3333333333rem / var(--scale))}.sp-l-0{padding-left:calc(0rem / var(--scale))}.sp-l-2{padding-left:calc(.1666666667rem / var(--scale))}.sp-l-4{padding-left:calc(.3333333333rem / var(--scale))}.sp-l-8{padding-left:calc(.6666666667rem / var(--scale))}.sp-l-12{padding-left:calc(1rem / var(--scale))}.sp-l-16{padding-left:calc(1.3333333333rem / var(--scale))}.sp-l-24{padding-left:calc(2rem / var(--scale))}.sp-l-36{padding-left:calc(3rem / var(--scale))}.sp-l-40{padding-left:calc(3.3333333333rem / var(--scale))}.sp-r-0{padding-right:calc(0rem / var(--scale))}.sp-r-2{padding-right:calc(.1666666667rem / var(--scale))}.sp-r-4{padding-right:calc(.3333333333rem / var(--scale))}.sp-r-8{padding-right:calc(.6666666667rem / var(--scale))}.sp-r-12{padding-right:calc(1rem / var(--scale))}.sp-r-16{padding-right:calc(1.3333333333rem / var(--scale))}.sp-r-24{padding-right:calc(2rem / var(--scale))}.sp-r-36{padding-right:calc(3rem / var(--scale))}.sp-r-40{padding-right:calc(3.3333333333rem / var(--scale))}.sm-t-0{margin-top:calc(0rem / var(--scale))}.sm-t-2{margin-top:calc(.1666666667rem / var(--scale))}.sm-t-4{margin-top:calc(.3333333333rem / var(--scale))}.sm-t-8{margin-top:calc(.6666666667rem / var(--scale))}.sm-t-12{margin-top:calc(1rem / var(--scale))}.sm-t-16{margin-top:calc(1.3333333333rem / var(--scale))}.sm-t-24{margin-top:calc(2rem / var(--scale))}.sm-t-36{margin-top:calc(3rem / var(--scale))}.sm-t-40{margin-top:calc(3.3333333333rem / var(--scale))}.sm-b-0{margin-bottom:calc(0rem / var(--scale))}.sm-b-2{margin-bottom:calc(.1666666667rem / var(--scale))}.sm-b-4{margin-bottom:calc(.3333333333rem / var(--scale))}.sm-b-8{margin-bottom:calc(.6666666667rem / var(--scale))}.sm-b-12{margin-bottom:calc(1rem / var(--scale))}.sm-b-16{margin-bottom:calc(1.3333333333rem / var(--scale))}.sm-b-24{margin-bottom:calc(2rem / var(--scale))}.sm-b-36{margin-bottom:calc(3rem / var(--scale))}.sm-b-40{margin-bottom:calc(3.3333333333rem / var(--scale))}.sm-l-0{margin-left:calc(0rem / var(--scale))}.sm-l-2{margin-left:calc(.1666666667rem / var(--scale))}.sm-l-4{margin-left:calc(.3333333333rem / var(--scale))}.sm-l-8{margin-left:calc(.6666666667rem / var(--scale))}.sm-l-12{margin-left:calc(1rem / var(--scale))}.sm-l-16{margin-left:calc(1.3333333333rem / var(--scale))}.sm-l-24{margin-left:calc(2rem / var(--scale))}.sm-l-36{margin-left:calc(3rem / var(--scale))}.sm-l-40{margin-left:calc(3.3333333333rem / var(--scale))}.sm-r-0{margin-right:calc(0rem / var(--scale))}.sm-r-2{margin-right:calc(.1666666667rem / var(--scale))}.sm-r-4{margin-right:calc(.3333333333rem / var(--scale))}.sm-r-8{margin-right:calc(.6666666667rem / var(--scale))}.sm-r-12{margin-right:calc(1rem / var(--scale))}.sm-r-16{margin-right:calc(1.3333333333rem / var(--scale))}.sm-r-24{margin-right:calc(2rem / var(--scale))}.sm-r-36{margin-right:calc(3rem / var(--scale))}.sm-r-40{margin-right:calc(3.3333333333rem / var(--scale))}.sp-x-0{padding-left:calc(0rem / var(--scale));padding-right:calc(0rem / var(--scale))}.sp-x-2{padding-left:calc(.1666666667rem / var(--scale));padding-right:calc(.1666666667rem / var(--scale))}.sp-x-4{padding-left:calc(.3333333333rem / var(--scale));padding-right:calc(.3333333333rem / var(--scale))}.sp-x-8{padding-left:calc(.6666666667rem / var(--scale));padding-right:calc(.6666666667rem / var(--scale))}.sp-x-12{padding-left:calc(1rem / var(--scale));padding-right:calc(1rem / var(--scale))}.sp-x-16{padding-left:calc(1.3333333333rem / var(--scale));padding-right:calc(1.3333333333rem / var(--scale))}.sp-x-24{padding-left:calc(2rem / var(--scale));padding-right:calc(2rem / var(--scale))}.sp-x-36{padding-left:calc(3rem / var(--scale));padding-right:calc(3rem / var(--scale))}.sp-x-40{padding-left:calc(3.3333333333rem / var(--scale));padding-right:calc(3.3333333333rem / var(--scale))}.sp-y-0{padding-top:calc(0rem / var(--scale));padding-bottom:calc(0rem / var(--scale))}.sp-y-2{padding-top:calc(.1666666667rem / var(--scale));padding-bottom:calc(.1666666667rem / var(--scale))}.sp-y-4{padding-top:calc(.3333333333rem / var(--scale));padding-bottom:calc(.3333333333rem / var(--scale))}.sp-y-8{padding-top:calc(.6666666667rem / var(--scale));padding-bottom:calc(.6666666667rem / var(--scale))}.sp-y-12{padding-top:calc(1rem / var(--scale));padding-bottom:calc(1rem / var(--scale))}.sp-y-16{padding-top:calc(1.3333333333rem / var(--scale));padding-bottom:calc(1.3333333333rem / var(--scale))}.sp-y-24{padding-top:calc(2rem / var(--scale));padding-bottom:calc(2rem / var(--scale))}.sp-y-36{padding-top:calc(3rem / var(--scale));padding-bottom:calc(3rem / var(--scale))}.sp-y-40{padding-top:calc(3.3333333333rem / var(--scale));padding-bottom:calc(3.3333333333rem / var(--scale))}.sm-x-0{margin-left:calc(0rem / var(--scale));margin-right:calc(0rem / var(--scale))}.sm-x-2{margin-left:calc(.1666666667rem / var(--scale));margin-right:calc(.1666666667rem / var(--scale))}.sm-x-4{margin-left:calc(.3333333333rem / var(--scale));margin-right:calc(.3333333333rem / var(--scale))}.sm-x-8{margin-left:calc(.6666666667rem / var(--scale));margin-right:calc(.6666666667rem / var(--scale))}.sm-x-12{margin-left:calc(1rem / var(--scale));margin-right:calc(1rem / var(--scale))}.sm-x-16{margin-left:calc(1.3333333333rem / var(--scale));margin-right:calc(1.3333333333rem / var(--scale))}.sm-x-24{margin-left:calc(2rem / var(--scale));margin-right:calc(2rem / var(--scale))}.sm-x-36{margin-left:calc(3rem / var(--scale));margin-right:calc(3rem / var(--scale))}.sm-x-40{margin-left:calc(3.3333333333rem / var(--scale));margin-right:calc(3.3333333333rem / var(--scale))}.sm-y-0{margin-top:calc(0rem / var(--scale));margin-bottom:calc(0rem / var(--scale))}.sm-y-2{margin-top:calc(.1666666667rem / var(--scale));margin-bottom:calc(.1666666667rem / var(--scale))}.sm-y-4{margin-top:calc(.3333333333rem / var(--scale));margin-bottom:calc(.3333333333rem / var(--scale))}.sm-y-8{margin-top:calc(.6666666667rem / var(--scale));margin-bottom:calc(.6666666667rem / var(--scale))}.sm-y-12{margin-top:calc(1rem / var(--scale));margin-bottom:calc(1rem / var(--scale))}.sm-y-16{margin-top:calc(1.3333333333rem / var(--scale));margin-bottom:calc(1.3333333333rem / var(--scale))}.sm-y-24{margin-top:calc(2rem / var(--scale));margin-bottom:calc(2rem / var(--scale))}.sm-y-36{margin-top:calc(3rem / var(--scale));margin-bottom:calc(3rem / var(--scale))}.sm-y-40{margin-top:calc(3.3333333333rem / var(--scale));margin-bottom:calc(3.3333333333rem / var(--scale))}.br-0{border-radius:calc(0rem / var(--scale))}.br-4{border-radius:calc(.3333333333rem / var(--scale))}.br-8{border-radius:calc(.6666666667rem / var(--scale))}.br-16{border-radius:calc(1.3333333333rem / var(--scale))}.br-24{border-radius:calc(2rem / var(--scale))}.br-36{border-radius:calc(3rem / var(--scale))}.br-200{border-radius:calc(16.6666666667rem / var(--scale))}.cats-checkbox-container,.cats-item,.cats-multiitem{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));font-size:var(--fs-16);line-height:calc(1.6666666667rem / var(--scale));font-weight:400;margin-bottom:calc(.6666666667rem / var(--scale));color:var(--text-heading-primary)}.cats-checkbox-container.disabled-option,.cats-item.disabled-option,.cats-multiitem.disabled-option{color:var(--text-body-muted);pointer-events:none}.cats-checkbox-container.disabled-option input[type=checkbox]:checked,.cats-item.disabled-option input[type=checkbox]:checked,.cats-multiitem.disabled-option input[type=checkbox]:checked{background-color:var(--surface-background-subtle);border-color:var(--border-core-default)}.cats-checkbox-container.disabled-option input[type=checkbox]:checked:after,.cats-item.disabled-option input[type=checkbox]:checked:after,.cats-multiitem.disabled-option input[type=checkbox]:checked:after{background-image:url(/images/check-disabled.svg)}.cats-checkbox-container.disabled-option::selection,.cats-item.disabled-option::selection,.cats-multiitem.disabled-option::selection{background-color:transparent}.cats-checkbox-container input[type=checkbox],.cats-item input[type=checkbox],.cats-multiitem input[type=checkbox]{appearance:none;-webkit-appearance:none;width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));min-width:calc(1.3333333333rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.3333333333rem / var(--scale));cursor:pointer;background-color:var(--surface-background-canvas);position:relative;transition:all .2s ease}.cats-checkbox-container input[type=checkbox]:after,.cats-item input[type=checkbox]:after,.cats-multiitem input[type=checkbox]:after{content:\"\";display:none;position:absolute;top:calc(-.0833333333rem / var(--scale));left:calc(-.0833333333rem / var(--scale));width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));background-size:auto;background-repeat:no-repeat;background-position:center}.cats-checkbox-container input[type=checkbox]:checked,.cats-item input[type=checkbox]:checked,.cats-multiitem input[type=checkbox]:checked{border-color:var(--border-interaction-focus);background-color:var(--surface-action-default)}.cats-checkbox-container input[type=checkbox]:checked:after,.cats-item input[type=checkbox]:checked:after,.cats-multiitem input[type=checkbox]:checked:after{display:block;background-image:url(/images/check-white.svg);background-size:calc(.6666666667rem / var(--scale)) calc(.5rem / var(--scale))}.cats-checkbox-container input[type=checkbox]:indeterminate,.cats-item input[type=checkbox]:indeterminate,.cats-multiitem input[type=checkbox]:indeterminate{border-color:var(--border-interaction-focus);background-color:var(--surface-background-canvas)}.cats-checkbox-container input[type=checkbox]:indeterminate:after,.cats-item input[type=checkbox]:indeterminate:after,.cats-multiitem input[type=checkbox]:indeterminate:after{display:block;top:0;background-image:url(/images/minus-blue.svg);background-size:calc(.5833333333rem / var(--scale)) calc(.0833333333rem / var(--scale))}.cats-checkbox-container input[type=checkbox]:disabled,.cats-item input[type=checkbox]:disabled,.cats-multiitem input[type=checkbox]:disabled{cursor:default;background-color:var(--surface-background-default);border-color:var(--border-core-muted)}.cats-checkbox-container input[type=checkbox]:disabled+span,.cats-item input[type=checkbox]:disabled+span,.cats-multiitem input[type=checkbox]:disabled+span{color:var(--text-body-muted)}.cats-checkbox-container input[type=checkbox]:checked:disabled,.cats-item input[type=checkbox]:checked:disabled,.cats-multiitem input[type=checkbox]:checked:disabled{background-color:var(--surface-background-default);border-color:var(--border-core-muted)}.cats-checkbox-container input[type=checkbox]:checked:disabled:after,.cats-item input[type=checkbox]:checked:disabled:after,.cats-multiitem input[type=checkbox]:checked:disabled:after{display:block;background-image:url(/images/check-disabled.svg)}:root{--fs-6: 6px;--fs-8: 8px;--fs-10: 10px;--fs-12: 12px;--fs-14: 14px;--fs-16: 16px;--fs-18: 18px;--fs-20: 20px;--fs-24: 24px;--fs-28: 28px;--fs-30: 30px;--fs-32: 32px;--fs-42: 42px;--fs-48: 48px;--img-w: 28px;--scale: 1}@media only screen and (min-width: 1024px) and (max-width: 1280px){:root{--scale: 1.5;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}@media only screen and (min-width: 1360px) and (max-width: 1440px){:root{--scale: 1.33;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}@media only screen and (min-width: 1536px) and (max-width: 1919px){:root{--scale: 1.25;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0;font-family:Open Sans,sans-serif}body{font-size:100%}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}h1,h2,h3,h4,h5,h6,ul,ol p{margin:0;padding:0;text-wrap:pretty}ul[role=list],ol[role=list],ul{list-style:none}img,picture{max-width:100%;display:block}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-thumb{background:var(--border-core-default);border-radius:8px}input,select,textarea{outline:none;box-shadow:none}.date-picker-wrapper{position:relative;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;flex-wrap:nowrap;gap:calc(.5rem / var(--scale));font-family:Inter,-apple-system,sans-serif}.date-picker-wrapper .date-label{font-size:var(--fs-12);line-height:calc(1.3333333333rem / var(--scale));font-weight:500;color:#6b7280}.date-picker-wrapper .date-input{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));padding:0 calc(1rem / var(--scale));width:100%;height:calc(4rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.4166666667rem / var(--scale));background:var(--surface-background-canvas);cursor:pointer;min-width:calc(16.6666666667rem / var(--scale));transition:border-color .2s,box-shadow .2s;-webkit-user-select:none;user-select:none}.date-picker-wrapper .date-input:hover{border-color:var(--border-interaction-focus)}.date-picker-wrapper .date-input .calendar-icon{width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));color:#9ca3af;flex-shrink:0}.date-picker-wrapper .date-input .date-input-text{flex:1;font-size:var(--fs-16);line-height:calc(2rem / var(--scale));font-weight:500;color:var(--text-heading-secondary);background-color:var(--surface-background-canvas)}.date-picker-wrapper .date-input .date-input-text.custom-placeholder{color:#9ca3af;font-weight:400}.date-picker-wrapper .date-input .clear-btn{cursor:pointer;padding:calc(.1666666667rem / var(--scale)) calc(.4166666667rem / var(--scale));transition:background .15s}.date-picker-wrapper .date-input .clear-btn:hover{background:#f3f4f6}.date-picker-wrapper .calendar-dropdown{min-width:calc(30.6666666667rem / var(--scale));max-width:calc(60.6666666667rem / var(--scale));min-height:calc(34.5rem / var(--scale));position:absolute;top:calc(100% + .0833333333rem / var(--scale));left:0;z-index:1000;background:var(--surface-background-canvas);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);box-shadow:0 calc(.6666666667rem / var(--scale)) calc(1.3333333333rem / var(--scale)) calc(.6666666667rem / var(--scale)) var(--canvas-shadow);overflow:hidden;animation:dropIn .15s ease}.date-picker-wrapper .calendar-dropdown.open-top{top:auto;bottom:calc(100% + .0833333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown.month-year-view{width:calc(30.8333333333rem / var(--scale));min-height:calc(34.5rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;width:100%;height:calc(2.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;flex:1;margin:0 calc(7.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper{width:calc(7.3333333333rem / var(--scale));height:calc(1.6666666667rem / var(--scale));display:flex;flex-direction:row;justify-content:\"\";align-items:center;flex-wrap:nowrap;gap:calc(.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper .month{color:var(--text-heading-primary)}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper .year{color:var(--text-body-secondary)}.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn{display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;width:calc(2.6666666667rem / var(--scale));height:calc(2.6666666667rem / var(--scale));cursor:pointer;border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);box-shadow:0 calc(.0833333333rem / var(--scale)) calc(.1666666667rem / var(--scale)) 0 var(--chunk-shadow);background-color:var(--surface-background-canvas);transition:background .15s,color .15s}.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn i-feather,.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn img{width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-selector{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:calc(.4166666667rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(1rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-selector .year-grid{flex:1;border-top:none;padding-top:0;height:calc(27.25rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid,.date-picker-wrapper .calendar-dropdown .month-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:calc(.25rem / var(--scale));font-size:var(--fs-16);line-height:calc(2.3333333333rem / var(--scale));font-weight:500;height:calc(28.3333333333rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(1rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid .month,.date-picker-wrapper .calendar-dropdown .year-grid .year,.date-picker-wrapper .calendar-dropdown .month-grid .month,.date-picker-wrapper .calendar-dropdown .month-grid .year{display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;cursor:pointer;border-radius:calc(.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid .month:hover,.date-picker-wrapper .calendar-dropdown .year-grid .month.selected,.date-picker-wrapper .calendar-dropdown .year-grid .year:hover,.date-picker-wrapper .calendar-dropdown .year-grid .year.selected,.date-picker-wrapper .calendar-dropdown .month-grid .month:hover,.date-picker-wrapper .calendar-dropdown .month-grid .month.selected,.date-picker-wrapper .calendar-dropdown .month-grid .year:hover,.date-picker-wrapper .calendar-dropdown .month-grid .year.selected{color:var(--text-heading-inverse);background-color:var(--surface-action-default);transition:ease-in-out .2s}.date-picker-wrapper .calendar-dropdown .day_wrapper .dual-calendar{display:grid;grid-template-columns:1fr 1fr;gap:calc(2rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .day_wrapper .calendar-panel{display:flex;flex-direction:column}.date-picker-wrapper .calendar-dropdown .calendar-footer{display:flex;flex-direction:column;justify-content:\"\";align-items:\"\";flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer .calendar-footer-wrapper{border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));width:100%;padding-top:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:0;border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.6666666667rem / var(--scale));width:100%;height:calc(4rem / var(--scale));overflow:hidden}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row.label-row.muted{background:#f9fafb}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row.label-row.muted .footer-value{color:#9ca3af}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-label{color:var(--text-heading-primary);height:100%;display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;min-width:calc(5rem / var(--scale));border-right:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);background:var(--surface-background-default)}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper{width:100%;height:100%;display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:calc(.8333333333rem / var(--scale));flex:1}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper .footer-value{color:var(--text-heading-primary)}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper img{cursor:pointer}.date-picker-wrapper .calendar-dropdown .calendar-footer.dual-calendar{display:flex;flex-direction:row;justify-content:\"\";align-items:\"\";flex-wrap:nowrap;gap:calc(2rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer.dual-calendar .dual-calendar-border-top{display:flex;flex-direction:column;justify-content:\"\";align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .footer-actions{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;width:100%;height:calc(2.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .footer-actions .footer-btn{width:calc(7.5rem / var(--scale));height:100%;display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-cancel{border:calc(.0833333333rem / var(--scale)) solid var(--border-core-strong);border-radius:calc(.3333333333rem / var(--scale));background:var(--surface-background-canvas);color:var(--text-body-primary);cursor:pointer;transition:border-color .15s,background .15s}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-cancel:hover{border-color:#d1d5db;background:#f9fafb}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply{border:calc(.0833333333rem / var(--scale)) solid transparent;border-radius:calc(.3333333333rem / var(--scale));background:var(--surface-action-default);color:var(--text-heading-inverse);cursor:pointer;transition:background .15s}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply:hover:not(:disabled){background:#2563eb}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply:disabled{background:var(--surface-background-default);border-color:var(--border-core-strong);color:var(--text-body-muted);pointer-events:none}.date-picker-wrapper .calendar-dropdown:has(.dual-calendar):after{content:\"\";position:absolute;top:calc(1.3333333333rem / var(--scale));left:calc(30.3333333333rem / var(--scale));width:calc(.0833333333rem / var(--scale));height:83%;background-color:var(--border-core-default)}button{min-width:unset;height:unset}@keyframes dropIn{0%{opacity:0;transform:translateY(calc(-.5rem / var(--scale)))}to{opacity:1;transform:translateY(0)}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: CalendarGridComponent, selector: "custom-calendar-grid", inputs: ["month", "year", "calendarDays", "weekDays", "parent"], outputs: ["daySelected"] }, { kind: "component", type: TimeInputComponent, selector: "cats-time-input", outputs: ["timeChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: OutsideClickDirective, selector: "[catsOutsideClick]", outputs: ["clickOutSide"] }] });
2775
2775
  }
2776
2776
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.17", ngImport: i0, type: CustomDatePickerComponent, decorators: [{
2777
2777
  type: Component,
@@ -2787,7 +2787,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.17", ngImpo
2787
2787
  TimeInputComponent,
2788
2788
  FormsModule,
2789
2789
  OutsideClickDirective,
2790
- ], template: "<div class=\"date-picker-wrapper\" id=\"custom-date\">\n <!-- Label -->\n @if (label) {\n <label class=\"date-label\">{{ label }}</label>\n }\n\n <!-- Input Trigger -->\n @if (showTrigger) {\n <div\n class=\"date-input\"\n [class.is-open]=\"isOpen\"\n [class.has-value]=\"displayValue\"\n (click)=\"toggleCalendar()\"\n >\n <span class=\"date-input-text\" [class.custom-placeholder]=\"!displayValue\">\n {{ displayValue || config.placeholder || \"Select date\" }}\n </span>\n\n <svg\n class=\"calendar-icon\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"2\"\n >\n <rect x=\"3\" y=\"4\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\"></rect>\n <line x1=\"16\" y1=\"2\" x2=\"16\" y2=\"6\"></line>\n <line x1=\"8\" y1=\"2\" x2=\"8\" y2=\"6\"></line>\n <line x1=\"3\" y1=\"10\" x2=\"21\" y2=\"10\"></line>\n </svg>\n\n <!-- @if (displayValue) {\n <span class=\"clear-btn\" (click)=\"$event.stopPropagation(); clearDate()\">\n <img src=\"images/x.svg\" alt=\"\" />\n </span>\n } -->\n </div>\n }\n\n <!-- Calendar Dropdown -->\n @if (!showTrigger || isOpen) {\n <div\n catsOutsideClick\n (clickOutSide)=\"isOpen = false\"\n id=\"date-input-container\"\n class=\"calendar-dropdown sp-16 br-8\"\n [ngClass]=\"{ 'month-year-view': calenderView != 'day' }\"\n >\n <div class=\"calendar-header sm-b-12\">\n <div class=\"nav-btn br-4\" (click)=\"prevMonth()\" type=\"button\">\n <img src=\"images/chevron-left.svg\" alt=\"\" />\n </div>\n <div class=\"month-year body-medium\">\n @if (mode === \"dual\") {\n @if (calenderView == \"day\" || activeCalendar != \"secondary\") {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"openView('primary', 'month')\">{{\n currentMonthName\n }}</span>\n <span class=\"year\" (click)=\"openView('primary', 'year')\">{{\n currentYear\n }}</span>\n </div>\n }\n\n @if (calenderView == \"day\" || activeCalendar != \"primary\") {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"openView('secondary', 'month')\">{{\n monthNames[currentMonth2]\n }}</span>\n <span class=\"year\" (click)=\"openView('secondary', 'year')\">{{\n currentYear2\n }}</span>\n </div>\n }\n } @else {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"calenderView = 'month'\">{{\n currentMonthName\n }}</span>\n <span class=\"year\" (click)=\"calenderView = 'year'\">{{\n currentYear\n }}</span>\n </div>\n }\n </div>\n <div class=\"nav-btn br-4\" (click)=\"nextMonth()\" type=\"button\">\n <img src=\"images/chevron-right.svg\" alt=\"\" />\n </div>\n </div>\n\n @if (calenderView == \"month\") {\n <div class=\"month-grid\">\n @for (month of monthNames; track month) {\n <span\n class=\"month\"\n (click)=\"selectMonth(month)\"\n [ngClass]=\"{ selected: month == activeMonthName }\"\n >{{ month }}</span\n >\n }\n </div>\n } @else if (calenderView == \"year\") {\n <div class=\"year-selector\">\n <span class=\"navigation-button pointer\" (click)=\"previousYearRange()\">\n <img src=\"images/chevron-left.svg\" alt=\"\" />\n </span>\n <div class=\"year-grid\">\n @for (year of yearRange; track year) {\n <span\n class=\"year\"\n (click)=\"selectYear(year)\"\n [ngClass]=\"{ selected: year == activeYearValue }\"\n >{{ year }}</span\n >\n }\n </div>\n <span class=\"navigation-button pointer\" (click)=\"nextYearRange()\">\n <img src=\"images/chevron-right.svg\" alt=\"\" />\n </span>\n </div>\n } @else {\n <!-- Weekday Headers -->\n <div class=\"day_wrapper\">\n @if (mode === \"dual\") {\n <div class=\"dual-calendar\">\n <div class=\"calendar-panel\">\n <custom-calendar-grid\n [month]=\"currentMonth\"\n [year]=\"currentYear\"\n [calendarDays]=\"calendarDays\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'primary')\"\n ></custom-calendar-grid>\n </div>\n\n <div class=\"calendar-panel\">\n <custom-calendar-grid\n [month]=\"currentMonth2\"\n [year]=\"currentYear2\"\n [calendarDays]=\"calendarDays2\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'secondary')\"\n ></custom-calendar-grid>\n </div>\n </div>\n } @else {\n <custom-calendar-grid\n [month]=\"currentMonth\"\n [year]=\"currentYear\"\n [calendarDays]=\"calendarDays\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'primary')\"\n ></custom-calendar-grid>\n }\n </div>\n\n <!-- Footer -->\n <div\n class=\"calendar-footer sm-b-16\"\n [ngClass]=\"{ 'dual-calendar': config.mode === 'dual' }\"\n >\n <!-- SINGLE MODE footer -->\n @if (mode === \"single\" && showDateLabel) {\n <div class=\"calendar-footer-wrapper\">\n <div class=\"footer-row label-row\">\n <span class=\"footer-label body-large sp-x-12\">Date</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempDisplayValue\n }}</span>\n @if (tempDate) {\n <img\n (click)=\"cancelDate('single')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"singleTimeInSeconds\"\n (timeChange)=\"onSingleTimeChange($event)\"\n ></cats-time-input>\n }\n }\n\n <!-- RANGE MODE footer -->\n @if (mode === \"range\" || mode === \"dual\") {\n <div\n class=\"calendar-footer-wrapper\"\n [ngStyle]=\"{ width: mode === 'dual' ? '50%' : '100%' }\"\n >\n <div class=\"footer-row label-row\">\n <span class=\"footer-label body-large sp-x-12\">From</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempFromDisplay\n }}</span>\n @if (tempFrom) {\n <img\n (click)=\"cancelDate('from')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"fromTimeInSeconds\"\n (timeChange)=\"onFromTimeChange($event)\"\n ></cats-time-input>\n }\n </div>\n <div\n class=\"dual-calendar-border-top\"\n [ngClass]=\"{ 'calendar-footer-wrapper': time, 'sp-t-12': time }\"\n [ngStyle]=\"{ width: mode === 'dual' ? '50%' : '100%' }\"\n >\n <div class=\"footer-row label-row\" [class.muted]=\"!tempTo\">\n <span class=\"footer-label body-large sp-x-12\">To</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempToDisplay\n }}</span>\n @if (tempTo) {\n <img\n (click)=\"cancelDate('to')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"toTimeInSeconds\"\n (timeChange)=\"onToTimeChange($event)\"\n ></cats-time-input>\n }\n </div>\n }\n </div>\n <!-- Action Buttons -->\n <div class=\"footer-actions\">\n <button\n class=\"btn-cancel footer-btn body-medium\"\n (click)=\"onCancel()\"\n type=\"button\"\n >\n Cancel\n </button>\n <button\n class=\"btn-apply footer-btn body-medium\"\n (click)=\"onApply()\"\n type=\"button\"\n [disabled]=\"!canApply\"\n >\n Apply\n </button>\n </div>\n }\n </div>\n }\n</div>\n", styles: [":root{--blue-100: #eaf3fd;--box-shadow: #0a0d1208;--box-shadow-200: #0a0d1214;--canvas-shadow: #00000014;--chunk-shadow: #0a0d120d;--text-heading-primary: #040d17;--text-heading-secondary: #434a51;--text-heading-inverse: #ffffff;--text-body-primary: #434a51;--text-body-secondary: #81858a;--text-body-muted: #c0c2c5;--text-body-inversed: #ffffff;--text-link-default: #2680ea;--text-link-hover: #1c60af;--text-link-muted: #c8dff9;--text-link-inverse: #5ca0ef;--surface-background-canvas: #ffffff;--surface-background-default: #f0f0f0;--surface-background-subtle: #e6e7e8;--surface-background-blue: #f7fafe;--surface-contextual-green: #f7fbf7;--surface-contextual-red: #fdf7f7;--surface-contextual-yellow: #fffdf5;--surface-decorative-sage-green: #f3fcf9;--surface-decorative-amber-brown: #f9f1f1;--surface-decorative-teal: #eafafb;--surface-decorative-pink: #f9ebf5;--surface-decorative-orange: #fffbf5;--surface-decorative-purple: #f4f0fa;--surface-decorative-blue: #f7fafe;--surface-action-default: #2680ea;--surface-action-hover: #1c60af;--surface-action-muted: #e6e7e8;--border-core-default: #dadbdc;--border-core-muted: #e6e7e8;--border-core-strong: #c0c2c5;--border-core-inverted: #81858a;--border-interaction-default: #dfecfc;--border-interaction-focus: #2680ea;--border-semantics-red: #f7dfdf;--border-semantics-green: #cde2ce;--border-semantics-yellow: #ffefc1;--border-decorative-purple: #d9c9ed;--border-decorative-orange: #ffe5bf;--border-decorative-pink: #eec2e0;--border-decorative-teal: #b0edee;--border-decorative-amber-brown: #e5c1c5;--border-decorative-sage-green: #a8e9d2;--icons-main-primary: #040d17;--icons-main-secondary: #434a51;--icons-main-hover: #2680ea;--icons-main-muted: #c0c2c5;--icons-main-inverse: #ffffff;--semantics-success-subtle: #6aaa6d;--semantics-success-default: #388e3c;--semantics-success-strong: #2a6a2d;--semantics-error-subtle: #d45e5e;--semantics-error-default: #ff0000;--semantics-error-strong: #941e1e;--semantics-warning-subtle: #ffd145;--semantics-warning-default: #ffc107;--semantics-warning-strong: #bf9105;--accent-orange-subtle: #ffb240;--accent-orange-default: #ff9800;--accent-orange-strong: #bf7200;--accent-teal-subtle: #6adedf;--accent-teal-default: #2ac7c9;--accent-teal-strong: #23a4a6;--accent-purple-subtle: #976dcd;--accent-purple-default: #8656c5;--accent-purple-strong: #733fb7;--accent-amber-brown-subtle: #deafb4;--accent-amber-brown-default: #cf8a91;--accent-amber-brown-strong: #c77880;--accent-sage-green-subtle: #33c994;--accent-sage-green-default: #29a277;--accent-sage-green-dark: #1f7a5a;--accent-pink-subtle: #d772b9;--accent-pink-default: #d058ab;--accent-pink-dark: #c83d9e}html{font-size:12px}.pointer{cursor:pointer}.d-none{display:none}.textTruncate{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}button.cats-btn{border:calc(.0833333333rem / var(--scale)) solid transparent;padding:0 calc(2.3333333333rem / var(--scale));height:calc(4.6666666667rem / var(--scale));min-width:calc(11.8333333333rem / var(--scale));display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:calc(1rem / var(--scale));border-radius:calc(.6666666667rem / var(--scale));font-size:var(--fs-18);line-height:\"\";font-weight:600;cursor:pointer}button.cats-btn:focus-visible{outline:none;border:0}button.cats-btn i-feather.icon{display:flex}button.cats-btn.primary_btn{background-color:var(--text-link-default);color:var(--surface-background-canvas)}button.cats-btn.secondary_btn{background-color:var(--surface-background-subtle);color:var(--text-body-primary)}button.cats-btn.outline_btn{background-color:var(--surface-background-canvas);color:var(--text-body-primary);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-strong)}button.cats-btn.disable{pointer-events:none;opacity:.6}button.cats-btn.fill_lightBlue_btn{background-color:var(--surface-background-blue);color:var(--text-link-default)}button.cats-btn.disable_fill_lightBlue_btn{background-color:var(--surface-background-blue);color:var(--text-link-muted);pointer-events:none}button.cats-btn.bg_logic_btn{background-color:var(--surface-background-canvas);color:var(--text-body-primary);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default)}button.cats-btn.no_outline_btn{background-color:var(--surface-background-blue);color:var(--text-link-default);outline:none}button.cats-btn .close_outline_btn{background-color:var(--surface-background-blue);border:calc(.0833333333rem / var(--scale)) solid var(--surface-background-blue);color:var(--text-link-default)}.default-tooltip-class{position:relative;display:inline-block;padding:calc(.6666666667rem / var(--scale)) calc(1rem / var(--scale));background:var(--surface-background-canvas);border-radius:calc(.6666666667rem / var(--scale));font-size:var(--fs-14);line-height:calc(2rem / var(--scale));font-weight:400;color:var(--text-body-primary);box-shadow:0 calc(.3333333333rem / var(--scale)) calc(1.25rem / var(--scale)) #00000026}.default-tooltip-class:before{content:\"\";position:absolute;top:calc(-.8333333333rem / var(--scale));left:50%;width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));background:var(--surface-background-canvas);transform:rotate(-135deg);box-shadow:calc(.3333333333rem / var(--scale)) calc(.3333333333rem / var(--scale)) calc(.5rem / var(--scale)) #0000001a;border-radius:calc(.1666666667rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-muted);border-top:0;border-left:0}.display-large{font-size:calc(4.6666666667rem / var(--scale));line-height:calc(6.6666666667rem / var(--scale));font-weight:500}.display-large-emphasized{font-size:calc(4.6666666667rem / var(--scale));line-height:calc(6.6666666667rem / var(--scale));font-weight:600}.display-medium{font-size:calc(4rem / var(--scale));line-height:calc(4.6666666667rem / var(--scale));font-weight:500}.display-medium-emphasized{font-size:calc(4rem / var(--scale));line-height:calc(4.6666666667rem / var(--scale));font-weight:600}.heading-extra-large{font-size:calc(3rem / var(--scale));line-height:calc(3.3333333333rem / var(--scale));font-weight:500}.heading-extra-large-emphasized{font-size:calc(3rem / var(--scale));line-height:calc(3.3333333333rem / var(--scale));font-weight:600}.heading-large{font-size:calc(2rem / var(--scale));line-height:calc(2.6666666667rem / var(--scale));font-weight:500}.heading-large-emphasized{font-size:calc(2rem / var(--scale));line-height:calc(2.6666666667rem / var(--scale));font-weight:600}.heading-medium{font-size:calc(1.6666666667rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:500}.heading-medium-emphasized{font-size:calc(1.6666666667rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:600}.heading-small{font-size:calc(1.5rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:500}.heading-small-emphasized{font-size:calc(1.5rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:600}.body-large{font-size:calc(1.3333333333rem / var(--scale));line-height:calc(2rem / var(--scale));font-weight:400}.body-large-emphasized{font-size:calc(1.3333333333rem / var(--scale));line-height:calc(2rem / var(--scale));font-weight:500}.body-medium{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:400}.body-medium-emphasized{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.body-small{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:400}.meta-regular{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.meta-regular-emphasized{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:600}.interaction-medium{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.interaction-small{font-size:calc(1rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.system-utility-regular{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:500}.system-utility-regular-emphasized{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:600}.system-utility-small{font-size:calc(.8333333333rem / var(--scale));line-height:calc(1rem / var(--scale));font-weight:500}.font-weight-regular{font-weight:400}.font-weight-medium{font-weight:500}.font-weight-semibold{font-weight:600}.sp-0{padding:calc(0rem / var(--scale))}.sp-2{padding:calc(.1666666667rem / var(--scale))}.sp-4{padding:calc(.3333333333rem / var(--scale))}.sp-8{padding:calc(.6666666667rem / var(--scale))}.sp-12{padding:calc(1rem / var(--scale))}.sp-16{padding:calc(1.3333333333rem / var(--scale))}.sp-24{padding:calc(2rem / var(--scale))}.sp-36{padding:calc(3rem / var(--scale))}.sp-40{padding:calc(3.3333333333rem / var(--scale))}.sm-0{margin:calc(0rem / var(--scale))}.sm-2{margin:calc(.1666666667rem / var(--scale))}.sm-4{margin:calc(.3333333333rem / var(--scale))}.sm-8{margin:calc(.6666666667rem / var(--scale))}.sm-12{margin:calc(1rem / var(--scale))}.sm-16{margin:calc(1.3333333333rem / var(--scale))}.sm-24{margin:calc(2rem / var(--scale))}.sm-36{margin:calc(3rem / var(--scale))}.sm-40{margin:calc(3.3333333333rem / var(--scale))}.sp-t-0{padding-top:calc(0rem / var(--scale))}.sp-t-2{padding-top:calc(.1666666667rem / var(--scale))}.sp-t-4{padding-top:calc(.3333333333rem / var(--scale))}.sp-t-8{padding-top:calc(.6666666667rem / var(--scale))}.sp-t-12{padding-top:calc(1rem / var(--scale))}.sp-t-16{padding-top:calc(1.3333333333rem / var(--scale))}.sp-t-24{padding-top:calc(2rem / var(--scale))}.sp-t-36{padding-top:calc(3rem / var(--scale))}.sp-t-40{padding-top:calc(3.3333333333rem / var(--scale))}.sp-b-0{padding-bottom:calc(0rem / var(--scale))}.sp-b-2{padding-bottom:calc(.1666666667rem / var(--scale))}.sp-b-4{padding-bottom:calc(.3333333333rem / var(--scale))}.sp-b-8{padding-bottom:calc(.6666666667rem / var(--scale))}.sp-b-12{padding-bottom:calc(1rem / var(--scale))}.sp-b-16{padding-bottom:calc(1.3333333333rem / var(--scale))}.sp-b-24{padding-bottom:calc(2rem / var(--scale))}.sp-b-36{padding-bottom:calc(3rem / var(--scale))}.sp-b-40{padding-bottom:calc(3.3333333333rem / var(--scale))}.sp-l-0{padding-left:calc(0rem / var(--scale))}.sp-l-2{padding-left:calc(.1666666667rem / var(--scale))}.sp-l-4{padding-left:calc(.3333333333rem / var(--scale))}.sp-l-8{padding-left:calc(.6666666667rem / var(--scale))}.sp-l-12{padding-left:calc(1rem / var(--scale))}.sp-l-16{padding-left:calc(1.3333333333rem / var(--scale))}.sp-l-24{padding-left:calc(2rem / var(--scale))}.sp-l-36{padding-left:calc(3rem / var(--scale))}.sp-l-40{padding-left:calc(3.3333333333rem / var(--scale))}.sp-r-0{padding-right:calc(0rem / var(--scale))}.sp-r-2{padding-right:calc(.1666666667rem / var(--scale))}.sp-r-4{padding-right:calc(.3333333333rem / var(--scale))}.sp-r-8{padding-right:calc(.6666666667rem / var(--scale))}.sp-r-12{padding-right:calc(1rem / var(--scale))}.sp-r-16{padding-right:calc(1.3333333333rem / var(--scale))}.sp-r-24{padding-right:calc(2rem / var(--scale))}.sp-r-36{padding-right:calc(3rem / var(--scale))}.sp-r-40{padding-right:calc(3.3333333333rem / var(--scale))}.sm-t-0{margin-top:calc(0rem / var(--scale))}.sm-t-2{margin-top:calc(.1666666667rem / var(--scale))}.sm-t-4{margin-top:calc(.3333333333rem / var(--scale))}.sm-t-8{margin-top:calc(.6666666667rem / var(--scale))}.sm-t-12{margin-top:calc(1rem / var(--scale))}.sm-t-16{margin-top:calc(1.3333333333rem / var(--scale))}.sm-t-24{margin-top:calc(2rem / var(--scale))}.sm-t-36{margin-top:calc(3rem / var(--scale))}.sm-t-40{margin-top:calc(3.3333333333rem / var(--scale))}.sm-b-0{margin-bottom:calc(0rem / var(--scale))}.sm-b-2{margin-bottom:calc(.1666666667rem / var(--scale))}.sm-b-4{margin-bottom:calc(.3333333333rem / var(--scale))}.sm-b-8{margin-bottom:calc(.6666666667rem / var(--scale))}.sm-b-12{margin-bottom:calc(1rem / var(--scale))}.sm-b-16{margin-bottom:calc(1.3333333333rem / var(--scale))}.sm-b-24{margin-bottom:calc(2rem / var(--scale))}.sm-b-36{margin-bottom:calc(3rem / var(--scale))}.sm-b-40{margin-bottom:calc(3.3333333333rem / var(--scale))}.sm-l-0{margin-left:calc(0rem / var(--scale))}.sm-l-2{margin-left:calc(.1666666667rem / var(--scale))}.sm-l-4{margin-left:calc(.3333333333rem / var(--scale))}.sm-l-8{margin-left:calc(.6666666667rem / var(--scale))}.sm-l-12{margin-left:calc(1rem / var(--scale))}.sm-l-16{margin-left:calc(1.3333333333rem / var(--scale))}.sm-l-24{margin-left:calc(2rem / var(--scale))}.sm-l-36{margin-left:calc(3rem / var(--scale))}.sm-l-40{margin-left:calc(3.3333333333rem / var(--scale))}.sm-r-0{margin-right:calc(0rem / var(--scale))}.sm-r-2{margin-right:calc(.1666666667rem / var(--scale))}.sm-r-4{margin-right:calc(.3333333333rem / var(--scale))}.sm-r-8{margin-right:calc(.6666666667rem / var(--scale))}.sm-r-12{margin-right:calc(1rem / var(--scale))}.sm-r-16{margin-right:calc(1.3333333333rem / var(--scale))}.sm-r-24{margin-right:calc(2rem / var(--scale))}.sm-r-36{margin-right:calc(3rem / var(--scale))}.sm-r-40{margin-right:calc(3.3333333333rem / var(--scale))}.sp-x-0{padding-left:calc(0rem / var(--scale));padding-right:calc(0rem / var(--scale))}.sp-x-2{padding-left:calc(.1666666667rem / var(--scale));padding-right:calc(.1666666667rem / var(--scale))}.sp-x-4{padding-left:calc(.3333333333rem / var(--scale));padding-right:calc(.3333333333rem / var(--scale))}.sp-x-8{padding-left:calc(.6666666667rem / var(--scale));padding-right:calc(.6666666667rem / var(--scale))}.sp-x-12{padding-left:calc(1rem / var(--scale));padding-right:calc(1rem / var(--scale))}.sp-x-16{padding-left:calc(1.3333333333rem / var(--scale));padding-right:calc(1.3333333333rem / var(--scale))}.sp-x-24{padding-left:calc(2rem / var(--scale));padding-right:calc(2rem / var(--scale))}.sp-x-36{padding-left:calc(3rem / var(--scale));padding-right:calc(3rem / var(--scale))}.sp-x-40{padding-left:calc(3.3333333333rem / var(--scale));padding-right:calc(3.3333333333rem / var(--scale))}.sp-y-0{padding-top:calc(0rem / var(--scale));padding-bottom:calc(0rem / var(--scale))}.sp-y-2{padding-top:calc(.1666666667rem / var(--scale));padding-bottom:calc(.1666666667rem / var(--scale))}.sp-y-4{padding-top:calc(.3333333333rem / var(--scale));padding-bottom:calc(.3333333333rem / var(--scale))}.sp-y-8{padding-top:calc(.6666666667rem / var(--scale));padding-bottom:calc(.6666666667rem / var(--scale))}.sp-y-12{padding-top:calc(1rem / var(--scale));padding-bottom:calc(1rem / var(--scale))}.sp-y-16{padding-top:calc(1.3333333333rem / var(--scale));padding-bottom:calc(1.3333333333rem / var(--scale))}.sp-y-24{padding-top:calc(2rem / var(--scale));padding-bottom:calc(2rem / var(--scale))}.sp-y-36{padding-top:calc(3rem / var(--scale));padding-bottom:calc(3rem / var(--scale))}.sp-y-40{padding-top:calc(3.3333333333rem / var(--scale));padding-bottom:calc(3.3333333333rem / var(--scale))}.sm-x-0{margin-left:calc(0rem / var(--scale));margin-right:calc(0rem / var(--scale))}.sm-x-2{margin-left:calc(.1666666667rem / var(--scale));margin-right:calc(.1666666667rem / var(--scale))}.sm-x-4{margin-left:calc(.3333333333rem / var(--scale));margin-right:calc(.3333333333rem / var(--scale))}.sm-x-8{margin-left:calc(.6666666667rem / var(--scale));margin-right:calc(.6666666667rem / var(--scale))}.sm-x-12{margin-left:calc(1rem / var(--scale));margin-right:calc(1rem / var(--scale))}.sm-x-16{margin-left:calc(1.3333333333rem / var(--scale));margin-right:calc(1.3333333333rem / var(--scale))}.sm-x-24{margin-left:calc(2rem / var(--scale));margin-right:calc(2rem / var(--scale))}.sm-x-36{margin-left:calc(3rem / var(--scale));margin-right:calc(3rem / var(--scale))}.sm-x-40{margin-left:calc(3.3333333333rem / var(--scale));margin-right:calc(3.3333333333rem / var(--scale))}.sm-y-0{margin-top:calc(0rem / var(--scale));margin-bottom:calc(0rem / var(--scale))}.sm-y-2{margin-top:calc(.1666666667rem / var(--scale));margin-bottom:calc(.1666666667rem / var(--scale))}.sm-y-4{margin-top:calc(.3333333333rem / var(--scale));margin-bottom:calc(.3333333333rem / var(--scale))}.sm-y-8{margin-top:calc(.6666666667rem / var(--scale));margin-bottom:calc(.6666666667rem / var(--scale))}.sm-y-12{margin-top:calc(1rem / var(--scale));margin-bottom:calc(1rem / var(--scale))}.sm-y-16{margin-top:calc(1.3333333333rem / var(--scale));margin-bottom:calc(1.3333333333rem / var(--scale))}.sm-y-24{margin-top:calc(2rem / var(--scale));margin-bottom:calc(2rem / var(--scale))}.sm-y-36{margin-top:calc(3rem / var(--scale));margin-bottom:calc(3rem / var(--scale))}.sm-y-40{margin-top:calc(3.3333333333rem / var(--scale));margin-bottom:calc(3.3333333333rem / var(--scale))}.br-0{border-radius:calc(0rem / var(--scale))}.br-4{border-radius:calc(.3333333333rem / var(--scale))}.br-8{border-radius:calc(.6666666667rem / var(--scale))}.br-16{border-radius:calc(1.3333333333rem / var(--scale))}.br-24{border-radius:calc(2rem / var(--scale))}.br-36{border-radius:calc(3rem / var(--scale))}.br-200{border-radius:calc(16.6666666667rem / var(--scale))}.cats-checkbox-container,.cats-item,.cats-multiitem{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));font-size:var(--fs-16);line-height:calc(1.6666666667rem / var(--scale));font-weight:400;margin-bottom:calc(.6666666667rem / var(--scale));color:var(--text-heading-primary)}.cats-checkbox-container.disabled-option,.cats-item.disabled-option,.cats-multiitem.disabled-option{color:var(--text-body-muted);pointer-events:none}.cats-checkbox-container.disabled-option input[type=checkbox]:checked,.cats-item.disabled-option input[type=checkbox]:checked,.cats-multiitem.disabled-option input[type=checkbox]:checked{background-color:var(--surface-background-subtle);border-color:var(--border-core-default)}.cats-checkbox-container.disabled-option input[type=checkbox]:checked:after,.cats-item.disabled-option input[type=checkbox]:checked:after,.cats-multiitem.disabled-option input[type=checkbox]:checked:after{background-image:url(/images/check-disabled.svg)}.cats-checkbox-container.disabled-option::selection,.cats-item.disabled-option::selection,.cats-multiitem.disabled-option::selection{background-color:transparent}.cats-checkbox-container input[type=checkbox],.cats-item input[type=checkbox],.cats-multiitem input[type=checkbox]{appearance:none;-webkit-appearance:none;width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));min-width:calc(1.3333333333rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.3333333333rem / var(--scale));cursor:pointer;background-color:var(--surface-background-canvas);position:relative;transition:all .2s ease}.cats-checkbox-container input[type=checkbox]:after,.cats-item input[type=checkbox]:after,.cats-multiitem input[type=checkbox]:after{content:\"\";display:none;position:absolute;top:calc(-.0833333333rem / var(--scale));left:calc(-.0833333333rem / var(--scale));width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));background-size:auto;background-repeat:no-repeat;background-position:center}.cats-checkbox-container input[type=checkbox]:checked,.cats-item input[type=checkbox]:checked,.cats-multiitem input[type=checkbox]:checked{border-color:var(--border-interaction-focus);background-color:var(--surface-action-default)}.cats-checkbox-container input[type=checkbox]:checked:after,.cats-item input[type=checkbox]:checked:after,.cats-multiitem input[type=checkbox]:checked:after{display:block;background-image:url(/images/check-white.svg);background-size:calc(.6666666667rem / var(--scale)) calc(.5rem / var(--scale))}.cats-checkbox-container input[type=checkbox]:indeterminate,.cats-item input[type=checkbox]:indeterminate,.cats-multiitem input[type=checkbox]:indeterminate{border-color:var(--border-interaction-focus);background-color:var(--surface-background-canvas)}.cats-checkbox-container input[type=checkbox]:indeterminate:after,.cats-item input[type=checkbox]:indeterminate:after,.cats-multiitem input[type=checkbox]:indeterminate:after{display:block;top:0;background-image:url(/images/minus-blue.svg);background-size:calc(.5833333333rem / var(--scale)) calc(.0833333333rem / var(--scale))}.cats-checkbox-container input[type=checkbox]:disabled,.cats-item input[type=checkbox]:disabled,.cats-multiitem input[type=checkbox]:disabled{cursor:default;background-color:var(--surface-background-default);border-color:var(--border-core-muted)}.cats-checkbox-container input[type=checkbox]:disabled+span,.cats-item input[type=checkbox]:disabled+span,.cats-multiitem input[type=checkbox]:disabled+span{color:var(--text-body-muted)}.cats-checkbox-container input[type=checkbox]:checked:disabled,.cats-item input[type=checkbox]:checked:disabled,.cats-multiitem input[type=checkbox]:checked:disabled{background-color:var(--surface-background-default);border-color:var(--border-core-muted)}.cats-checkbox-container input[type=checkbox]:checked:disabled:after,.cats-item input[type=checkbox]:checked:disabled:after,.cats-multiitem input[type=checkbox]:checked:disabled:after{display:block;background-image:url(/images/check-disabled.svg)}:root{--fs-6: 6px;--fs-8: 8px;--fs-10: 10px;--fs-12: 12px;--fs-14: 14px;--fs-16: 16px;--fs-18: 18px;--fs-20: 20px;--fs-24: 24px;--fs-28: 28px;--fs-30: 30px;--fs-32: 32px;--fs-42: 42px;--fs-48: 48px;--img-w: 28px;--scale: 1}@media only screen and (min-width: 1024px) and (max-width: 1280px){:root{--scale: 1.5;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}@media only screen and (min-width: 1360px) and (max-width: 1440px){:root{--scale: 1.33;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}@media only screen and (min-width: 1536px) and (max-width: 1919px){:root{--scale: 1.25;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0;font-family:Open Sans,sans-serif}body{font-size:100%}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}h1,h2,h3,h4,h5,h6,ul,ol p{margin:0;padding:0;text-wrap:pretty}ul[role=list],ol[role=list],ul{list-style:none}img,picture{max-width:100%;display:block}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-thumb{background:var(--border-core-default);border-radius:8px}input,select,textarea{outline:none;box-shadow:none}.date-picker-wrapper{position:relative;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;flex-wrap:nowrap;gap:calc(.5rem / var(--scale));font-family:Inter,-apple-system,sans-serif}.date-picker-wrapper .date-label{font-size:var(--fs-12);line-height:calc(1.3333333333rem / var(--scale));font-weight:500;color:#6b7280}.date-picker-wrapper .date-input{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));padding:0 calc(1rem / var(--scale));width:100%;height:calc(4rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.4166666667rem / var(--scale));background:var(--surface-background-canvas);cursor:pointer;min-width:calc(16.6666666667rem / var(--scale));transition:border-color .2s,box-shadow .2s;-webkit-user-select:none;user-select:none}.date-picker-wrapper .date-input:hover{border-color:var(--border-interaction-focus)}.date-picker-wrapper .date-input .calendar-icon{width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));color:#9ca3af;flex-shrink:0}.date-picker-wrapper .date-input .date-input-text{flex:1;font-size:var(--fs-16);line-height:calc(2rem / var(--scale));font-weight:500;color:var(--text-heading-secondary);background-color:var(--surface-background-canvas)}.date-picker-wrapper .date-input .date-input-text.custom-placeholder{color:#9ca3af;font-weight:400}.date-picker-wrapper .date-input .clear-btn{cursor:pointer;padding:calc(.1666666667rem / var(--scale)) calc(.4166666667rem / var(--scale));transition:background .15s}.date-picker-wrapper .date-input .clear-btn:hover{background:#f3f4f6}.date-picker-wrapper .calendar-dropdown{min-width:calc(30.6666666667rem / var(--scale));max-width:calc(60.6666666667rem / var(--scale));min-height:calc(34.5rem / var(--scale));position:absolute;top:calc(100% + .0833333333rem / var(--scale));left:0;z-index:1000;background:var(--surface-background-canvas);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);box-shadow:0 calc(.6666666667rem / var(--scale)) calc(1.3333333333rem / var(--scale)) calc(.6666666667rem / var(--scale)) var(--canvas-shadow);overflow:hidden;animation:dropIn .15s ease}.date-picker-wrapper .calendar-dropdown.open-top{top:auto;bottom:calc(100% + .0833333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown.month-year-view{width:calc(30.8333333333rem / var(--scale));min-height:calc(34.5rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;width:100%;height:calc(2.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;flex:1;margin:0 calc(7.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper{width:calc(7.3333333333rem / var(--scale));height:calc(1.6666666667rem / var(--scale));display:flex;flex-direction:row;justify-content:\"\";align-items:center;flex-wrap:nowrap;gap:calc(.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper .month{color:var(--text-heading-primary)}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper .year{color:var(--text-body-secondary)}.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn{display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;width:calc(2.6666666667rem / var(--scale));height:calc(2.6666666667rem / var(--scale));cursor:pointer;border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);box-shadow:0 calc(.0833333333rem / var(--scale)) calc(.1666666667rem / var(--scale)) 0 var(--chunk-shadow);background-color:var(--surface-background-canvas);transition:background .15s,color .15s}.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn i-feather,.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn img{width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-selector{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:calc(.4166666667rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(1rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-selector .year-grid{flex:1;border-top:none;padding-top:0;height:calc(27.25rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid,.date-picker-wrapper .calendar-dropdown .month-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:calc(.25rem / var(--scale));font-size:var(--fs-16);line-height:calc(2.3333333333rem / var(--scale));font-weight:500;height:calc(28.3333333333rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(1rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid .month,.date-picker-wrapper .calendar-dropdown .year-grid .year,.date-picker-wrapper .calendar-dropdown .month-grid .month,.date-picker-wrapper .calendar-dropdown .month-grid .year{display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;cursor:pointer;border-radius:calc(.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid .month:hover,.date-picker-wrapper .calendar-dropdown .year-grid .month.selected,.date-picker-wrapper .calendar-dropdown .year-grid .year:hover,.date-picker-wrapper .calendar-dropdown .year-grid .year.selected,.date-picker-wrapper .calendar-dropdown .month-grid .month:hover,.date-picker-wrapper .calendar-dropdown .month-grid .month.selected,.date-picker-wrapper .calendar-dropdown .month-grid .year:hover,.date-picker-wrapper .calendar-dropdown .month-grid .year.selected{color:var(--text-heading-inverse);background-color:var(--surface-action-default);transition:ease-in-out .2s}.date-picker-wrapper .calendar-dropdown .day_wrapper .dual-calendar{display:grid;grid-template-columns:1fr 1fr;gap:calc(2rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .day_wrapper .calendar-panel{display:flex;flex-direction:column}.date-picker-wrapper .calendar-dropdown .calendar-footer{display:flex;flex-direction:column;justify-content:\"\";align-items:\"\";flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer .calendar-footer-wrapper{border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));width:100%;padding-top:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:0;border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.6666666667rem / var(--scale));width:100%;height:calc(4rem / var(--scale));overflow:hidden}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row.label-row.muted{background:#f9fafb}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row.label-row.muted .footer-value{color:#9ca3af}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-label{color:var(--text-heading-primary);height:100%;display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;min-width:calc(5rem / var(--scale));border-right:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);background:var(--surface-background-default)}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper{width:100%;height:100%;display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:calc(.8333333333rem / var(--scale));flex:1}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper .footer-value{color:var(--text-heading-primary)}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper img{cursor:pointer}.date-picker-wrapper .calendar-dropdown .calendar-footer.dual-calendar{display:flex;flex-direction:row;justify-content:\"\";align-items:\"\";flex-wrap:nowrap;gap:calc(2rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer.dual-calendar .dual-calendar-border-top{display:flex;flex-direction:column;justify-content:\"\";align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .footer-actions{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;width:100%;height:calc(2.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .footer-actions .footer-btn{width:calc(7.5rem / var(--scale));height:100%;display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-cancel{border:calc(.0833333333rem / var(--scale)) solid var(--border-core-strong);border-radius:calc(.3333333333rem / var(--scale));background:var(--surface-background-canvas);color:var(--text-body-primary);cursor:pointer;transition:border-color .15s,background .15s}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-cancel:hover{border-color:#d1d5db;background:#f9fafb}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply{border:calc(.0833333333rem / var(--scale)) solid transparent;border-radius:calc(.3333333333rem / var(--scale));background:var(--surface-action-default);color:var(--text-heading-inverse);cursor:pointer;transition:background .15s}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply:hover:not(:disabled){background:#2563eb}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply:disabled{background:var(--surface-background-default);border-color:var(--border-core-strong);color:var(--text-body-muted);pointer-events:none}.date-picker-wrapper .calendar-dropdown:has(.dual-calendar):after{content:\"\";position:absolute;top:calc(1.3333333333rem / var(--scale));left:calc(30.3333333333rem / var(--scale));width:calc(.0833333333rem / var(--scale));height:83%;background-color:var(--border-core-default)}button{min-width:unset;height:unset}@keyframes dropIn{0%{opacity:0;transform:translateY(calc(-.5rem / var(--scale)))}to{opacity:1;transform:translateY(0)}}\n"] }]
2790
+ ], template: "<div class=\"date-picker-wrapper\" id=\"custom-date\" catsOutsideClick\n (clickOutSide)=\"isOpen = false\">\n <!-- Label -->\n @if (label) {\n <label class=\"date-label\">{{ label }}</label>\n }\n\n <!-- Input Trigger -->\n @if (showTrigger) {\n <div\n class=\"date-input\"\n [class.is-open]=\"isOpen\"\n [class.has-value]=\"displayValue\"\n (click)=\"toggleCalendar()\"\n >\n <span class=\"date-input-text\" [class.custom-placeholder]=\"!displayValue\">\n {{ displayValue || config.placeholder || \"Select date\" }}\n </span>\n\n <svg\n class=\"calendar-icon\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"2\"\n >\n <rect x=\"3\" y=\"4\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\"></rect>\n <line x1=\"16\" y1=\"2\" x2=\"16\" y2=\"6\"></line>\n <line x1=\"8\" y1=\"2\" x2=\"8\" y2=\"6\"></line>\n <line x1=\"3\" y1=\"10\" x2=\"21\" y2=\"10\"></line>\n </svg>\n\n <!-- @if (displayValue) {\n <span class=\"clear-btn\" (click)=\"$event.stopPropagation(); clearDate()\">\n <img src=\"images/x.svg\" alt=\"\" />\n </span>\n } -->\n </div>\n }\n\n <!-- Calendar Dropdown -->\n @if (!showTrigger || isOpen) {\n <div\n id=\"date-input-container\"\n class=\"calendar-dropdown sp-16 br-8\"\n [ngClass]=\"{ 'month-year-view': calenderView != 'day' }\"\n >\n <div class=\"calendar-header sm-b-12\">\n <div class=\"nav-btn br-4\" (click)=\"prevMonth()\" type=\"button\">\n <img src=\"images/chevron-left.svg\" alt=\"\" />\n </div>\n <div class=\"month-year body-medium\">\n @if (mode === \"dual\") {\n @if (calenderView == \"day\" || activeCalendar != \"secondary\") {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"openView('primary', 'month')\">{{\n currentMonthName\n }}</span>\n <span class=\"year\" (click)=\"openView('primary', 'year')\">{{\n currentYear\n }}</span>\n </div>\n }\n\n @if (calenderView == \"day\" || activeCalendar != \"primary\") {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"openView('secondary', 'month')\">{{\n monthNames[currentMonth2]\n }}</span>\n <span class=\"year\" (click)=\"openView('secondary', 'year')\">{{\n currentYear2\n }}</span>\n </div>\n }\n } @else {\n <div class=\"month-year-wrapper\">\n <span class=\"month\" (click)=\"calenderView = 'month'\">{{\n currentMonthName\n }}</span>\n <span class=\"year\" (click)=\"calenderView = 'year'\">{{\n currentYear\n }}</span>\n </div>\n }\n </div>\n <div class=\"nav-btn br-4\" (click)=\"nextMonth()\" type=\"button\">\n <img src=\"images/chevron-right.svg\" alt=\"\" />\n </div>\n </div>\n\n @if (calenderView == \"month\") {\n <div class=\"month-grid\">\n @for (month of monthNames; track month) {\n <span\n class=\"month\"\n (click)=\"selectMonth(month)\"\n [ngClass]=\"{ selected: month == activeMonthName }\"\n >{{ month }}</span\n >\n }\n </div>\n } @else if (calenderView == \"year\") {\n <div class=\"year-selector\">\n <span class=\"navigation-button pointer\" (click)=\"previousYearRange()\">\n <img src=\"images/chevron-left.svg\" alt=\"\" />\n </span>\n <div class=\"year-grid\">\n @for (year of yearRange; track year) {\n <span\n class=\"year\"\n (click)=\"selectYear(year)\"\n [ngClass]=\"{ selected: year == activeYearValue }\"\n >{{ year }}</span\n >\n }\n </div>\n <span class=\"navigation-button pointer\" (click)=\"nextYearRange()\">\n <img src=\"images/chevron-right.svg\" alt=\"\" />\n </span>\n </div>\n } @else {\n <!-- Weekday Headers -->\n <div class=\"day_wrapper\">\n @if (mode === \"dual\") {\n <div class=\"dual-calendar\">\n <div class=\"calendar-panel\">\n <custom-calendar-grid\n [month]=\"currentMonth\"\n [year]=\"currentYear\"\n [calendarDays]=\"calendarDays\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'primary')\"\n ></custom-calendar-grid>\n </div>\n\n <div class=\"calendar-panel\">\n <custom-calendar-grid\n [month]=\"currentMonth2\"\n [year]=\"currentYear2\"\n [calendarDays]=\"calendarDays2\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'secondary')\"\n ></custom-calendar-grid>\n </div>\n </div>\n } @else {\n <custom-calendar-grid\n [month]=\"currentMonth\"\n [year]=\"currentYear\"\n [calendarDays]=\"calendarDays\"\n [weekDays]=\"weekDays\"\n [parent]=\"this\"\n (daySelected)=\"onDaySelected($event, 'primary')\"\n ></custom-calendar-grid>\n }\n </div>\n\n <!-- Footer -->\n <div\n class=\"calendar-footer sm-b-16\"\n [ngClass]=\"{ 'dual-calendar': config.mode === 'dual' }\"\n >\n <!-- SINGLE MODE footer -->\n @if (mode === \"single\" && showDateLabel) {\n <div class=\"calendar-footer-wrapper\">\n <div class=\"footer-row label-row\">\n <span class=\"footer-label body-large sp-x-12\">Date</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempDisplayValue\n }}</span>\n @if (tempDate) {\n <img\n (click)=\"cancelDate('single')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"singleTimeInSeconds\"\n (timeChange)=\"onSingleTimeChange($event)\"\n ></cats-time-input>\n }\n }\n\n <!-- RANGE MODE footer -->\n @if (mode === \"range\" || mode === \"dual\") {\n <div\n class=\"calendar-footer-wrapper\"\n [ngStyle]=\"{ width: mode === 'dual' ? '50%' : '100%' }\"\n >\n <div class=\"footer-row label-row\">\n <span class=\"footer-label body-large sp-x-12\">From</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempFromDisplay\n }}</span>\n @if (tempFrom) {\n <img\n (click)=\"cancelDate('from')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"fromTimeInSeconds\"\n (timeChange)=\"onFromTimeChange($event)\"\n ></cats-time-input>\n }\n </div>\n <div\n class=\"dual-calendar-border-top\"\n [ngClass]=\"{ 'calendar-footer-wrapper': time, 'sp-t-12': time }\"\n [ngStyle]=\"{ width: mode === 'dual' ? '50%' : '100%' }\"\n >\n <div class=\"footer-row label-row\" [class.muted]=\"!tempTo\">\n <span class=\"footer-label body-large sp-x-12\">To</span>\n <div class=\"footer-value-wrapper sp-x-12\">\n <span class=\"footer-value body-large\">{{\n tempToDisplay\n }}</span>\n @if (tempTo) {\n <img\n (click)=\"cancelDate('to')\"\n src=\"images/x-cancel-btn.svg\"\n alt=\"\"\n />\n }\n </div>\n </div>\n @if (time) {\n <cats-time-input\n [(ngModel)]=\"toTimeInSeconds\"\n (timeChange)=\"onToTimeChange($event)\"\n ></cats-time-input>\n }\n </div>\n }\n </div>\n <!-- Action Buttons -->\n <div class=\"footer-actions\">\n <button\n class=\"btn-cancel footer-btn body-medium\"\n (click)=\"onCancel()\"\n type=\"button\"\n >\n Cancel\n </button>\n <button\n class=\"btn-apply footer-btn body-medium\"\n (click)=\"onApply()\"\n type=\"button\"\n [disabled]=\"!canApply\"\n >\n Apply\n </button>\n </div>\n }\n </div>\n }\n</div>\n", styles: [":root{--blue-100: #eaf3fd;--box-shadow: #0a0d1208;--box-shadow-200: #0a0d1214;--canvas-shadow: #00000014;--chunk-shadow: #0a0d120d;--text-heading-primary: #040d17;--text-heading-secondary: #434a51;--text-heading-inverse: #ffffff;--text-body-primary: #434a51;--text-body-secondary: #81858a;--text-body-muted: #c0c2c5;--text-body-inversed: #ffffff;--text-link-default: #2680ea;--text-link-hover: #1c60af;--text-link-muted: #c8dff9;--text-link-inverse: #5ca0ef;--surface-background-canvas: #ffffff;--surface-background-default: #f0f0f0;--surface-background-subtle: #e6e7e8;--surface-background-blue: #f7fafe;--surface-contextual-green: #f7fbf7;--surface-contextual-red: #fdf7f7;--surface-contextual-yellow: #fffdf5;--surface-decorative-sage-green: #f3fcf9;--surface-decorative-amber-brown: #f9f1f1;--surface-decorative-teal: #eafafb;--surface-decorative-pink: #f9ebf5;--surface-decorative-orange: #fffbf5;--surface-decorative-purple: #f4f0fa;--surface-decorative-blue: #f7fafe;--surface-action-default: #2680ea;--surface-action-hover: #1c60af;--surface-action-muted: #e6e7e8;--border-core-default: #dadbdc;--border-core-muted: #e6e7e8;--border-core-strong: #c0c2c5;--border-core-inverted: #81858a;--border-interaction-default: #dfecfc;--border-interaction-focus: #2680ea;--border-semantics-red: #f7dfdf;--border-semantics-green: #cde2ce;--border-semantics-yellow: #ffefc1;--border-decorative-purple: #d9c9ed;--border-decorative-orange: #ffe5bf;--border-decorative-pink: #eec2e0;--border-decorative-teal: #b0edee;--border-decorative-amber-brown: #e5c1c5;--border-decorative-sage-green: #a8e9d2;--icons-main-primary: #040d17;--icons-main-secondary: #434a51;--icons-main-hover: #2680ea;--icons-main-muted: #c0c2c5;--icons-main-inverse: #ffffff;--semantics-success-subtle: #6aaa6d;--semantics-success-default: #388e3c;--semantics-success-strong: #2a6a2d;--semantics-error-subtle: #d45e5e;--semantics-error-default: #ff0000;--semantics-error-strong: #941e1e;--semantics-warning-subtle: #ffd145;--semantics-warning-default: #ffc107;--semantics-warning-strong: #bf9105;--accent-orange-subtle: #ffb240;--accent-orange-default: #ff9800;--accent-orange-strong: #bf7200;--accent-teal-subtle: #6adedf;--accent-teal-default: #2ac7c9;--accent-teal-strong: #23a4a6;--accent-purple-subtle: #976dcd;--accent-purple-default: #8656c5;--accent-purple-strong: #733fb7;--accent-amber-brown-subtle: #deafb4;--accent-amber-brown-default: #cf8a91;--accent-amber-brown-strong: #c77880;--accent-sage-green-subtle: #33c994;--accent-sage-green-default: #29a277;--accent-sage-green-dark: #1f7a5a;--accent-pink-subtle: #d772b9;--accent-pink-default: #d058ab;--accent-pink-dark: #c83d9e}html{font-size:12px}.pointer{cursor:pointer}.d-none{display:none}.textTruncate{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}button.cats-btn{border:calc(.0833333333rem / var(--scale)) solid transparent;padding:0 calc(2.3333333333rem / var(--scale));height:calc(4.6666666667rem / var(--scale));min-width:calc(11.8333333333rem / var(--scale));display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:calc(1rem / var(--scale));border-radius:calc(.6666666667rem / var(--scale));font-size:var(--fs-18);line-height:\"\";font-weight:600;cursor:pointer}button.cats-btn:focus-visible{outline:none;border:0}button.cats-btn i-feather.icon{display:flex}button.cats-btn.primary_btn{background-color:var(--text-link-default);color:var(--surface-background-canvas)}button.cats-btn.secondary_btn{background-color:var(--surface-background-subtle);color:var(--text-body-primary)}button.cats-btn.outline_btn{background-color:var(--surface-background-canvas);color:var(--text-body-primary);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-strong)}button.cats-btn.disable{pointer-events:none;opacity:.6}button.cats-btn.fill_lightBlue_btn{background-color:var(--surface-background-blue);color:var(--text-link-default)}button.cats-btn.disable_fill_lightBlue_btn{background-color:var(--surface-background-blue);color:var(--text-link-muted);pointer-events:none}button.cats-btn.bg_logic_btn{background-color:var(--surface-background-canvas);color:var(--text-body-primary);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default)}button.cats-btn.no_outline_btn{background-color:var(--surface-background-blue);color:var(--text-link-default);outline:none}button.cats-btn .close_outline_btn{background-color:var(--surface-background-blue);border:calc(.0833333333rem / var(--scale)) solid var(--surface-background-blue);color:var(--text-link-default)}.default-tooltip-class{position:relative;display:inline-block;padding:calc(.6666666667rem / var(--scale)) calc(1rem / var(--scale));background:var(--surface-background-canvas);border-radius:calc(.6666666667rem / var(--scale));font-size:var(--fs-14);line-height:calc(2rem / var(--scale));font-weight:400;color:var(--text-body-primary);box-shadow:0 calc(.3333333333rem / var(--scale)) calc(1.25rem / var(--scale)) #00000026}.default-tooltip-class:before{content:\"\";position:absolute;top:calc(-.8333333333rem / var(--scale));left:50%;width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));background:var(--surface-background-canvas);transform:rotate(-135deg);box-shadow:calc(.3333333333rem / var(--scale)) calc(.3333333333rem / var(--scale)) calc(.5rem / var(--scale)) #0000001a;border-radius:calc(.1666666667rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-muted);border-top:0;border-left:0}.display-large{font-size:calc(4.6666666667rem / var(--scale));line-height:calc(6.6666666667rem / var(--scale));font-weight:500}.display-large-emphasized{font-size:calc(4.6666666667rem / var(--scale));line-height:calc(6.6666666667rem / var(--scale));font-weight:600}.display-medium{font-size:calc(4rem / var(--scale));line-height:calc(4.6666666667rem / var(--scale));font-weight:500}.display-medium-emphasized{font-size:calc(4rem / var(--scale));line-height:calc(4.6666666667rem / var(--scale));font-weight:600}.heading-extra-large{font-size:calc(3rem / var(--scale));line-height:calc(3.3333333333rem / var(--scale));font-weight:500}.heading-extra-large-emphasized{font-size:calc(3rem / var(--scale));line-height:calc(3.3333333333rem / var(--scale));font-weight:600}.heading-large{font-size:calc(2rem / var(--scale));line-height:calc(2.6666666667rem / var(--scale));font-weight:500}.heading-large-emphasized{font-size:calc(2rem / var(--scale));line-height:calc(2.6666666667rem / var(--scale));font-weight:600}.heading-medium{font-size:calc(1.6666666667rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:500}.heading-medium-emphasized{font-size:calc(1.6666666667rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:600}.heading-small{font-size:calc(1.5rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:500}.heading-small-emphasized{font-size:calc(1.5rem / var(--scale));line-height:calc(2.3333333333rem / var(--scale));font-weight:600}.body-large{font-size:calc(1.3333333333rem / var(--scale));line-height:calc(2rem / var(--scale));font-weight:400}.body-large-emphasized{font-size:calc(1.3333333333rem / var(--scale));line-height:calc(2rem / var(--scale));font-weight:500}.body-medium{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:400}.body-medium-emphasized{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.body-small{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:400}.meta-regular{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.meta-regular-emphasized{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:600}.interaction-medium{font-size:calc(1.1666666667rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.interaction-small{font-size:calc(1rem / var(--scale));line-height:calc(1.6666666667rem / var(--scale));font-weight:500}.system-utility-regular{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:500}.system-utility-regular-emphasized{font-size:calc(1rem / var(--scale));line-height:calc(1.5rem / var(--scale));font-weight:600}.system-utility-small{font-size:calc(.8333333333rem / var(--scale));line-height:calc(1rem / var(--scale));font-weight:500}.font-weight-regular{font-weight:400}.font-weight-medium{font-weight:500}.font-weight-semibold{font-weight:600}.sp-0{padding:calc(0rem / var(--scale))}.sp-2{padding:calc(.1666666667rem / var(--scale))}.sp-4{padding:calc(.3333333333rem / var(--scale))}.sp-8{padding:calc(.6666666667rem / var(--scale))}.sp-12{padding:calc(1rem / var(--scale))}.sp-16{padding:calc(1.3333333333rem / var(--scale))}.sp-24{padding:calc(2rem / var(--scale))}.sp-36{padding:calc(3rem / var(--scale))}.sp-40{padding:calc(3.3333333333rem / var(--scale))}.sm-0{margin:calc(0rem / var(--scale))}.sm-2{margin:calc(.1666666667rem / var(--scale))}.sm-4{margin:calc(.3333333333rem / var(--scale))}.sm-8{margin:calc(.6666666667rem / var(--scale))}.sm-12{margin:calc(1rem / var(--scale))}.sm-16{margin:calc(1.3333333333rem / var(--scale))}.sm-24{margin:calc(2rem / var(--scale))}.sm-36{margin:calc(3rem / var(--scale))}.sm-40{margin:calc(3.3333333333rem / var(--scale))}.sp-t-0{padding-top:calc(0rem / var(--scale))}.sp-t-2{padding-top:calc(.1666666667rem / var(--scale))}.sp-t-4{padding-top:calc(.3333333333rem / var(--scale))}.sp-t-8{padding-top:calc(.6666666667rem / var(--scale))}.sp-t-12{padding-top:calc(1rem / var(--scale))}.sp-t-16{padding-top:calc(1.3333333333rem / var(--scale))}.sp-t-24{padding-top:calc(2rem / var(--scale))}.sp-t-36{padding-top:calc(3rem / var(--scale))}.sp-t-40{padding-top:calc(3.3333333333rem / var(--scale))}.sp-b-0{padding-bottom:calc(0rem / var(--scale))}.sp-b-2{padding-bottom:calc(.1666666667rem / var(--scale))}.sp-b-4{padding-bottom:calc(.3333333333rem / var(--scale))}.sp-b-8{padding-bottom:calc(.6666666667rem / var(--scale))}.sp-b-12{padding-bottom:calc(1rem / var(--scale))}.sp-b-16{padding-bottom:calc(1.3333333333rem / var(--scale))}.sp-b-24{padding-bottom:calc(2rem / var(--scale))}.sp-b-36{padding-bottom:calc(3rem / var(--scale))}.sp-b-40{padding-bottom:calc(3.3333333333rem / var(--scale))}.sp-l-0{padding-left:calc(0rem / var(--scale))}.sp-l-2{padding-left:calc(.1666666667rem / var(--scale))}.sp-l-4{padding-left:calc(.3333333333rem / var(--scale))}.sp-l-8{padding-left:calc(.6666666667rem / var(--scale))}.sp-l-12{padding-left:calc(1rem / var(--scale))}.sp-l-16{padding-left:calc(1.3333333333rem / var(--scale))}.sp-l-24{padding-left:calc(2rem / var(--scale))}.sp-l-36{padding-left:calc(3rem / var(--scale))}.sp-l-40{padding-left:calc(3.3333333333rem / var(--scale))}.sp-r-0{padding-right:calc(0rem / var(--scale))}.sp-r-2{padding-right:calc(.1666666667rem / var(--scale))}.sp-r-4{padding-right:calc(.3333333333rem / var(--scale))}.sp-r-8{padding-right:calc(.6666666667rem / var(--scale))}.sp-r-12{padding-right:calc(1rem / var(--scale))}.sp-r-16{padding-right:calc(1.3333333333rem / var(--scale))}.sp-r-24{padding-right:calc(2rem / var(--scale))}.sp-r-36{padding-right:calc(3rem / var(--scale))}.sp-r-40{padding-right:calc(3.3333333333rem / var(--scale))}.sm-t-0{margin-top:calc(0rem / var(--scale))}.sm-t-2{margin-top:calc(.1666666667rem / var(--scale))}.sm-t-4{margin-top:calc(.3333333333rem / var(--scale))}.sm-t-8{margin-top:calc(.6666666667rem / var(--scale))}.sm-t-12{margin-top:calc(1rem / var(--scale))}.sm-t-16{margin-top:calc(1.3333333333rem / var(--scale))}.sm-t-24{margin-top:calc(2rem / var(--scale))}.sm-t-36{margin-top:calc(3rem / var(--scale))}.sm-t-40{margin-top:calc(3.3333333333rem / var(--scale))}.sm-b-0{margin-bottom:calc(0rem / var(--scale))}.sm-b-2{margin-bottom:calc(.1666666667rem / var(--scale))}.sm-b-4{margin-bottom:calc(.3333333333rem / var(--scale))}.sm-b-8{margin-bottom:calc(.6666666667rem / var(--scale))}.sm-b-12{margin-bottom:calc(1rem / var(--scale))}.sm-b-16{margin-bottom:calc(1.3333333333rem / var(--scale))}.sm-b-24{margin-bottom:calc(2rem / var(--scale))}.sm-b-36{margin-bottom:calc(3rem / var(--scale))}.sm-b-40{margin-bottom:calc(3.3333333333rem / var(--scale))}.sm-l-0{margin-left:calc(0rem / var(--scale))}.sm-l-2{margin-left:calc(.1666666667rem / var(--scale))}.sm-l-4{margin-left:calc(.3333333333rem / var(--scale))}.sm-l-8{margin-left:calc(.6666666667rem / var(--scale))}.sm-l-12{margin-left:calc(1rem / var(--scale))}.sm-l-16{margin-left:calc(1.3333333333rem / var(--scale))}.sm-l-24{margin-left:calc(2rem / var(--scale))}.sm-l-36{margin-left:calc(3rem / var(--scale))}.sm-l-40{margin-left:calc(3.3333333333rem / var(--scale))}.sm-r-0{margin-right:calc(0rem / var(--scale))}.sm-r-2{margin-right:calc(.1666666667rem / var(--scale))}.sm-r-4{margin-right:calc(.3333333333rem / var(--scale))}.sm-r-8{margin-right:calc(.6666666667rem / var(--scale))}.sm-r-12{margin-right:calc(1rem / var(--scale))}.sm-r-16{margin-right:calc(1.3333333333rem / var(--scale))}.sm-r-24{margin-right:calc(2rem / var(--scale))}.sm-r-36{margin-right:calc(3rem / var(--scale))}.sm-r-40{margin-right:calc(3.3333333333rem / var(--scale))}.sp-x-0{padding-left:calc(0rem / var(--scale));padding-right:calc(0rem / var(--scale))}.sp-x-2{padding-left:calc(.1666666667rem / var(--scale));padding-right:calc(.1666666667rem / var(--scale))}.sp-x-4{padding-left:calc(.3333333333rem / var(--scale));padding-right:calc(.3333333333rem / var(--scale))}.sp-x-8{padding-left:calc(.6666666667rem / var(--scale));padding-right:calc(.6666666667rem / var(--scale))}.sp-x-12{padding-left:calc(1rem / var(--scale));padding-right:calc(1rem / var(--scale))}.sp-x-16{padding-left:calc(1.3333333333rem / var(--scale));padding-right:calc(1.3333333333rem / var(--scale))}.sp-x-24{padding-left:calc(2rem / var(--scale));padding-right:calc(2rem / var(--scale))}.sp-x-36{padding-left:calc(3rem / var(--scale));padding-right:calc(3rem / var(--scale))}.sp-x-40{padding-left:calc(3.3333333333rem / var(--scale));padding-right:calc(3.3333333333rem / var(--scale))}.sp-y-0{padding-top:calc(0rem / var(--scale));padding-bottom:calc(0rem / var(--scale))}.sp-y-2{padding-top:calc(.1666666667rem / var(--scale));padding-bottom:calc(.1666666667rem / var(--scale))}.sp-y-4{padding-top:calc(.3333333333rem / var(--scale));padding-bottom:calc(.3333333333rem / var(--scale))}.sp-y-8{padding-top:calc(.6666666667rem / var(--scale));padding-bottom:calc(.6666666667rem / var(--scale))}.sp-y-12{padding-top:calc(1rem / var(--scale));padding-bottom:calc(1rem / var(--scale))}.sp-y-16{padding-top:calc(1.3333333333rem / var(--scale));padding-bottom:calc(1.3333333333rem / var(--scale))}.sp-y-24{padding-top:calc(2rem / var(--scale));padding-bottom:calc(2rem / var(--scale))}.sp-y-36{padding-top:calc(3rem / var(--scale));padding-bottom:calc(3rem / var(--scale))}.sp-y-40{padding-top:calc(3.3333333333rem / var(--scale));padding-bottom:calc(3.3333333333rem / var(--scale))}.sm-x-0{margin-left:calc(0rem / var(--scale));margin-right:calc(0rem / var(--scale))}.sm-x-2{margin-left:calc(.1666666667rem / var(--scale));margin-right:calc(.1666666667rem / var(--scale))}.sm-x-4{margin-left:calc(.3333333333rem / var(--scale));margin-right:calc(.3333333333rem / var(--scale))}.sm-x-8{margin-left:calc(.6666666667rem / var(--scale));margin-right:calc(.6666666667rem / var(--scale))}.sm-x-12{margin-left:calc(1rem / var(--scale));margin-right:calc(1rem / var(--scale))}.sm-x-16{margin-left:calc(1.3333333333rem / var(--scale));margin-right:calc(1.3333333333rem / var(--scale))}.sm-x-24{margin-left:calc(2rem / var(--scale));margin-right:calc(2rem / var(--scale))}.sm-x-36{margin-left:calc(3rem / var(--scale));margin-right:calc(3rem / var(--scale))}.sm-x-40{margin-left:calc(3.3333333333rem / var(--scale));margin-right:calc(3.3333333333rem / var(--scale))}.sm-y-0{margin-top:calc(0rem / var(--scale));margin-bottom:calc(0rem / var(--scale))}.sm-y-2{margin-top:calc(.1666666667rem / var(--scale));margin-bottom:calc(.1666666667rem / var(--scale))}.sm-y-4{margin-top:calc(.3333333333rem / var(--scale));margin-bottom:calc(.3333333333rem / var(--scale))}.sm-y-8{margin-top:calc(.6666666667rem / var(--scale));margin-bottom:calc(.6666666667rem / var(--scale))}.sm-y-12{margin-top:calc(1rem / var(--scale));margin-bottom:calc(1rem / var(--scale))}.sm-y-16{margin-top:calc(1.3333333333rem / var(--scale));margin-bottom:calc(1.3333333333rem / var(--scale))}.sm-y-24{margin-top:calc(2rem / var(--scale));margin-bottom:calc(2rem / var(--scale))}.sm-y-36{margin-top:calc(3rem / var(--scale));margin-bottom:calc(3rem / var(--scale))}.sm-y-40{margin-top:calc(3.3333333333rem / var(--scale));margin-bottom:calc(3.3333333333rem / var(--scale))}.br-0{border-radius:calc(0rem / var(--scale))}.br-4{border-radius:calc(.3333333333rem / var(--scale))}.br-8{border-radius:calc(.6666666667rem / var(--scale))}.br-16{border-radius:calc(1.3333333333rem / var(--scale))}.br-24{border-radius:calc(2rem / var(--scale))}.br-36{border-radius:calc(3rem / var(--scale))}.br-200{border-radius:calc(16.6666666667rem / var(--scale))}.cats-checkbox-container,.cats-item,.cats-multiitem{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));font-size:var(--fs-16);line-height:calc(1.6666666667rem / var(--scale));font-weight:400;margin-bottom:calc(.6666666667rem / var(--scale));color:var(--text-heading-primary)}.cats-checkbox-container.disabled-option,.cats-item.disabled-option,.cats-multiitem.disabled-option{color:var(--text-body-muted);pointer-events:none}.cats-checkbox-container.disabled-option input[type=checkbox]:checked,.cats-item.disabled-option input[type=checkbox]:checked,.cats-multiitem.disabled-option input[type=checkbox]:checked{background-color:var(--surface-background-subtle);border-color:var(--border-core-default)}.cats-checkbox-container.disabled-option input[type=checkbox]:checked:after,.cats-item.disabled-option input[type=checkbox]:checked:after,.cats-multiitem.disabled-option input[type=checkbox]:checked:after{background-image:url(/images/check-disabled.svg)}.cats-checkbox-container.disabled-option::selection,.cats-item.disabled-option::selection,.cats-multiitem.disabled-option::selection{background-color:transparent}.cats-checkbox-container input[type=checkbox],.cats-item input[type=checkbox],.cats-multiitem input[type=checkbox]{appearance:none;-webkit-appearance:none;width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));min-width:calc(1.3333333333rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.3333333333rem / var(--scale));cursor:pointer;background-color:var(--surface-background-canvas);position:relative;transition:all .2s ease}.cats-checkbox-container input[type=checkbox]:after,.cats-item input[type=checkbox]:after,.cats-multiitem input[type=checkbox]:after{content:\"\";display:none;position:absolute;top:calc(-.0833333333rem / var(--scale));left:calc(-.0833333333rem / var(--scale));width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));background-size:auto;background-repeat:no-repeat;background-position:center}.cats-checkbox-container input[type=checkbox]:checked,.cats-item input[type=checkbox]:checked,.cats-multiitem input[type=checkbox]:checked{border-color:var(--border-interaction-focus);background-color:var(--surface-action-default)}.cats-checkbox-container input[type=checkbox]:checked:after,.cats-item input[type=checkbox]:checked:after,.cats-multiitem input[type=checkbox]:checked:after{display:block;background-image:url(/images/check-white.svg);background-size:calc(.6666666667rem / var(--scale)) calc(.5rem / var(--scale))}.cats-checkbox-container input[type=checkbox]:indeterminate,.cats-item input[type=checkbox]:indeterminate,.cats-multiitem input[type=checkbox]:indeterminate{border-color:var(--border-interaction-focus);background-color:var(--surface-background-canvas)}.cats-checkbox-container input[type=checkbox]:indeterminate:after,.cats-item input[type=checkbox]:indeterminate:after,.cats-multiitem input[type=checkbox]:indeterminate:after{display:block;top:0;background-image:url(/images/minus-blue.svg);background-size:calc(.5833333333rem / var(--scale)) calc(.0833333333rem / var(--scale))}.cats-checkbox-container input[type=checkbox]:disabled,.cats-item input[type=checkbox]:disabled,.cats-multiitem input[type=checkbox]:disabled{cursor:default;background-color:var(--surface-background-default);border-color:var(--border-core-muted)}.cats-checkbox-container input[type=checkbox]:disabled+span,.cats-item input[type=checkbox]:disabled+span,.cats-multiitem input[type=checkbox]:disabled+span{color:var(--text-body-muted)}.cats-checkbox-container input[type=checkbox]:checked:disabled,.cats-item input[type=checkbox]:checked:disabled,.cats-multiitem input[type=checkbox]:checked:disabled{background-color:var(--surface-background-default);border-color:var(--border-core-muted)}.cats-checkbox-container input[type=checkbox]:checked:disabled:after,.cats-item input[type=checkbox]:checked:disabled:after,.cats-multiitem input[type=checkbox]:checked:disabled:after{display:block;background-image:url(/images/check-disabled.svg)}:root{--fs-6: 6px;--fs-8: 8px;--fs-10: 10px;--fs-12: 12px;--fs-14: 14px;--fs-16: 16px;--fs-18: 18px;--fs-20: 20px;--fs-24: 24px;--fs-28: 28px;--fs-30: 30px;--fs-32: 32px;--fs-42: 42px;--fs-48: 48px;--img-w: 28px;--scale: 1}@media only screen and (min-width: 1024px) and (max-width: 1280px){:root{--scale: 1.5;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}@media only screen and (min-width: 1360px) and (max-width: 1440px){:root{--scale: 1.33;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}@media only screen and (min-width: 1536px) and (max-width: 1919px){:root{--scale: 1.25;--fs-6: calc(6px / var(--scale));--fs-8: calc(8px / var(--scale));--fs-10: calc(10px / var(--scale));--fs-12: calc(12px / var(--scale));--fs-14: calc(14px / var(--scale));--fs-16: calc(16px / var(--scale));--fs-18: calc(18px / var(--scale));--fs-20: calc(20px / var(--scale));--fs-24: calc(24px / var(--scale));--fs-28: calc(28px / var(--scale));--fs-30: calc(30px / var(--scale));--fs-32: calc(32px / var(--scale));--fs-42: calc(42px / var(--scale));--fs-48: calc(48px / var(--scale))}}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0;font-family:Open Sans,sans-serif}body{font-size:100%}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}h1,h2,h3,h4,h5,h6,ul,ol p{margin:0;padding:0;text-wrap:pretty}ul[role=list],ol[role=list],ul{list-style:none}img,picture{max-width:100%;display:block}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-thumb{background:var(--border-core-default);border-radius:8px}input,select,textarea{outline:none;box-shadow:none}.date-picker-wrapper{position:relative;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;flex-wrap:nowrap;gap:calc(.5rem / var(--scale));font-family:Inter,-apple-system,sans-serif}.date-picker-wrapper .date-label{font-size:var(--fs-12);line-height:calc(1.3333333333rem / var(--scale));font-weight:500;color:#6b7280}.date-picker-wrapper .date-input{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));padding:0 calc(1rem / var(--scale));width:100%;height:calc(4rem / var(--scale));border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.4166666667rem / var(--scale));background:var(--surface-background-canvas);cursor:pointer;min-width:calc(16.6666666667rem / var(--scale));transition:border-color .2s,box-shadow .2s;-webkit-user-select:none;user-select:none}.date-picker-wrapper .date-input:hover{border-color:var(--border-interaction-focus)}.date-picker-wrapper .date-input .calendar-icon{width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale));color:#9ca3af;flex-shrink:0}.date-picker-wrapper .date-input .date-input-text{flex:1;font-size:var(--fs-16);line-height:calc(2rem / var(--scale));font-weight:500;color:var(--text-heading-secondary);background-color:var(--surface-background-canvas)}.date-picker-wrapper .date-input .date-input-text.custom-placeholder{color:#9ca3af;font-weight:400}.date-picker-wrapper .date-input .clear-btn{cursor:pointer;padding:calc(.1666666667rem / var(--scale)) calc(.4166666667rem / var(--scale));transition:background .15s}.date-picker-wrapper .date-input .clear-btn:hover{background:#f3f4f6}.date-picker-wrapper .calendar-dropdown{min-width:calc(30.6666666667rem / var(--scale));max-width:calc(60.6666666667rem / var(--scale));min-height:calc(34.5rem / var(--scale));position:absolute;top:calc(100% + .0833333333rem / var(--scale));left:0;z-index:1000;background:var(--surface-background-canvas);border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);box-shadow:0 calc(.6666666667rem / var(--scale)) calc(1.3333333333rem / var(--scale)) calc(.6666666667rem / var(--scale)) var(--canvas-shadow);overflow:hidden;animation:dropIn .15s ease}.date-picker-wrapper .calendar-dropdown.open-top{top:auto;bottom:calc(100% + .0833333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown.month-year-view{width:calc(30.8333333333rem / var(--scale));min-height:calc(34.5rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;width:100%;height:calc(2.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;flex:1;margin:0 calc(7.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper{width:calc(7.3333333333rem / var(--scale));height:calc(1.6666666667rem / var(--scale));display:flex;flex-direction:row;justify-content:\"\";align-items:center;flex-wrap:nowrap;gap:calc(.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper .month{color:var(--text-heading-primary)}.date-picker-wrapper .calendar-dropdown .calendar-header .month-year .month-year-wrapper .year{color:var(--text-body-secondary)}.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn{display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;width:calc(2.6666666667rem / var(--scale));height:calc(2.6666666667rem / var(--scale));cursor:pointer;border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);box-shadow:0 calc(.0833333333rem / var(--scale)) calc(.1666666667rem / var(--scale)) 0 var(--chunk-shadow);background-color:var(--surface-background-canvas);transition:background .15s,color .15s}.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn i-feather,.date-picker-wrapper .calendar-dropdown .calendar-header .nav-btn img{width:calc(1.3333333333rem / var(--scale));height:calc(1.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-selector{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:calc(.4166666667rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(1rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-selector .year-grid{flex:1;border-top:none;padding-top:0;height:calc(27.25rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid,.date-picker-wrapper .calendar-dropdown .month-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:calc(.25rem / var(--scale));font-size:var(--fs-16);line-height:calc(2.3333333333rem / var(--scale));font-weight:500;height:calc(28.3333333333rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(1rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid .month,.date-picker-wrapper .calendar-dropdown .year-grid .year,.date-picker-wrapper .calendar-dropdown .month-grid .month,.date-picker-wrapper .calendar-dropdown .month-grid .year{display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;cursor:pointer;border-radius:calc(.3333333333rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .year-grid .month:hover,.date-picker-wrapper .calendar-dropdown .year-grid .month.selected,.date-picker-wrapper .calendar-dropdown .year-grid .year:hover,.date-picker-wrapper .calendar-dropdown .year-grid .year.selected,.date-picker-wrapper .calendar-dropdown .month-grid .month:hover,.date-picker-wrapper .calendar-dropdown .month-grid .month.selected,.date-picker-wrapper .calendar-dropdown .month-grid .year:hover,.date-picker-wrapper .calendar-dropdown .month-grid .year.selected{color:var(--text-heading-inverse);background-color:var(--surface-action-default);transition:ease-in-out .2s}.date-picker-wrapper .calendar-dropdown .day_wrapper .dual-calendar{display:grid;grid-template-columns:1fr 1fr;gap:calc(2rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .day_wrapper .calendar-panel{display:flex;flex-direction:column}.date-picker-wrapper .calendar-dropdown .calendar-footer{display:flex;flex-direction:column;justify-content:\"\";align-items:\"\";flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer .calendar-footer-wrapper{border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));width:100%;padding-top:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;gap:0;border:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);border-radius:calc(.6666666667rem / var(--scale));width:100%;height:calc(4rem / var(--scale));overflow:hidden}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row.label-row.muted{background:#f9fafb}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row.label-row.muted .footer-value{color:#9ca3af}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-label{color:var(--text-heading-primary);height:100%;display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0;min-width:calc(5rem / var(--scale));border-right:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);background:var(--surface-background-default)}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper{width:100%;height:100%;display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:calc(.8333333333rem / var(--scale));flex:1}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper .footer-value{color:var(--text-heading-primary)}.date-picker-wrapper .calendar-dropdown .calendar-footer .footer-row .footer-value-wrapper img{cursor:pointer}.date-picker-wrapper .calendar-dropdown .calendar-footer.dual-calendar{display:flex;flex-direction:row;justify-content:\"\";align-items:\"\";flex-wrap:nowrap;gap:calc(2rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .calendar-footer.dual-calendar .dual-calendar-border-top{display:flex;flex-direction:column;justify-content:\"\";align-items:center;flex-wrap:nowrap;gap:calc(.6666666667rem / var(--scale));border-top:calc(.0833333333rem / var(--scale)) solid var(--border-core-default);padding-top:calc(.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .footer-actions{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;gap:0;width:100%;height:calc(2.6666666667rem / var(--scale))}.date-picker-wrapper .calendar-dropdown .footer-actions .footer-btn{width:calc(7.5rem / var(--scale));height:100%;display:flex;flex-direction:row;justify-content:center;align-items:center;flex-wrap:nowrap;gap:0}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-cancel{border:calc(.0833333333rem / var(--scale)) solid var(--border-core-strong);border-radius:calc(.3333333333rem / var(--scale));background:var(--surface-background-canvas);color:var(--text-body-primary);cursor:pointer;transition:border-color .15s,background .15s}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-cancel:hover{border-color:#d1d5db;background:#f9fafb}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply{border:calc(.0833333333rem / var(--scale)) solid transparent;border-radius:calc(.3333333333rem / var(--scale));background:var(--surface-action-default);color:var(--text-heading-inverse);cursor:pointer;transition:background .15s}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply:hover:not(:disabled){background:#2563eb}.date-picker-wrapper .calendar-dropdown .footer-actions .btn-apply:disabled{background:var(--surface-background-default);border-color:var(--border-core-strong);color:var(--text-body-muted);pointer-events:none}.date-picker-wrapper .calendar-dropdown:has(.dual-calendar):after{content:\"\";position:absolute;top:calc(1.3333333333rem / var(--scale));left:calc(30.3333333333rem / var(--scale));width:calc(.0833333333rem / var(--scale));height:83%;background-color:var(--border-core-default)}button{min-width:unset;height:unset}@keyframes dropIn{0%{opacity:0;transform:translateY(calc(-.5rem / var(--scale)))}to{opacity:1;transform:translateY(0)}}\n"] }]
2791
2791
  }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { config: [{
2792
2792
  type: Input
2793
2793
  }], label: [{